#include <v8.h>
Public Types | |
enum | Status { kUninstantiated , kInstantiating , kInstantiated , kEvaluating , kEvaluated , kErrored } |
typedef MaybeLocal< Module >(* | ResolveCallback) (Local< Context > context, Local< String > specifier, Local< Module > referrer) |
Public Member Functions | |
Status | GetStatus () const |
Local< Value > | GetException () const |
int | GetModuleRequestsLength () const |
Local< String > | GetModuleRequest (int i) const |
Location | GetModuleRequestLocation (int i) const |
int | GetIdentityHash () const |
bool | Instantiate (Local< Context > context, ResolveCallback callback) |
Maybe< bool > | InstantiateModule (Local< Context > context, ResolveCallback callback) |
MaybeLocal< Value > | Evaluate (Local< Context > context) |
Local< Value > | GetModuleNamespace () |
This is an unfinished experimental feature, and is only exposed here for internal testing purposes. DO NOT USE.
A compiled JavaScript module.
typedef MaybeLocal< Module >(* v8::Module::ResolveCallback) (Local< Context > context, Local< String > specifier, Local< Module > referrer) |
enum v8::Module::Status |
MaybeLocal< Value > v8::Module::Evaluate | ( | Local< Context > | context | ) |
ModuleEvaluation
Returns the completion value. TODO(neis): Be more precise or say nothing.
For a module in kErrored status, this returns the corresponding exception.
int v8::Module::GetIdentityHash | ( | ) | const |
Returns the identity hash for this object.
Returns the namespace object of this module. The module's status must be kEvaluated.
Returns the ith module specifier in this module. i must be < GetModuleRequestsLength() and >= 0.
Location v8::Module::GetModuleRequestLocation | ( | int | i | ) | const |
Returns the source location (line number and column number) of the ith module specifier's first occurrence in this module.
int v8::Module::GetModuleRequestsLength | ( | ) | const |
Returns the number of modules requested by this module.
Status v8::Module::GetStatus | ( | ) | const |
Returns the module's current status.
bool v8::Module::Instantiate | ( | Local< Context > | context, |
ResolveCallback | callback | ||
) |
ModuleDeclarationInstantiation
Returns an empty Maybe<bool> if an exception occurred during instantiation. (In the case where the callback throws an exception, that exception is propagated.)
Maybe< bool > v8::Module::InstantiateModule | ( | Local< Context > | context, |
ResolveCallback | callback | ||
) |