pub type ModuleMetadataHook = Option<unsafe extern "C" fn(*mut JSContext, Handle<Value>, Handle<*mut JSObject>) -> bool>;
Expand description
The module metadata hook.
See: https://tc39.es/ecma262/#sec-hostgetimportmetaproperties
Populate the |metaObject| object returned when import.meta is evaluated in the context of the script or module with private value |privateValue|.
This is based on the spec’s HostGetImportMetaProperties hook but defines properties on the meta object directly rather than returning a list.
Aliased Type§
pub enum ModuleMetadataHook {
None,
Some(unsafe extern "C" fn(*mut JSContext, Handle<Value>, Handle<*mut JSObject>) -> bool),
}