SourceTextModule

external class SourceTextModule : Module(source)

This feature is only available with the --experimental-vm-modules command flag enabled.

The vm.SourceTextModule class provides the Source Text Module Record as defined in the ECMAScript specification.

Since

v9.6.0

Constructors

Link copied to clipboard
constructor(code: String, options: SourceTextModuleOptions = definedExternally)

Creates a new SourceTextModule instance.

Properties

Link copied to clipboard
Link copied to clipboard
var error: Any?

If the module.status is 'errored', this property contains the exception thrown by the module during evaluation. If the status is anything else, accessing this property will result in a thrown exception.

Link copied to clipboard

The identifier of the current module, as set in the constructor.

Link copied to clipboard

The requested import dependencies of this module. The returned array is frozen to disallow any changes to it.

Link copied to clipboard

The namespace object of the module. This is only available after linking (module.link()) has completed.

Link copied to clipboard

The current status of the module. Will be one of:

Functions

Link copied to clipboard
suspend fun evaluate(options: ModuleEvaluateOptions = definedExternally): Void
Link copied to clipboard
fun evaluateAsync(options: ModuleEvaluateOptions = definedExternally): Promise<Void>

Evaluate the module.

Link copied to clipboard

Iterates over the dependency graph and returns true if any module in its dependencies or this module itself contains top-level await expressions, otherwise returns false.

Link copied to clipboard

Returns whether the module itself contains any top-level await expressions.

Link copied to clipboard

Instantiate the module with the linked requested modules.

Link copied to clipboard
suspend fun link(linker: ModuleLinker): Void
Link copied to clipboard

Link module dependencies. This method must be called before evaluation, and can only be called once per module.

Link copied to clipboard

Link module dependencies. This method must be called before evaluation, and can only be called once per module.