mirror of
https://github.com/lightpanda-io/browser.git
synced 2025-10-29 15:13:28 +00:00
Merge pull request #814 from lightpanda-io/root_module_nested_modules
Allow root modules to imported modules
This commit is contained in:
@@ -728,7 +728,9 @@ pub fn Env(comptime State: type, comptime WebApis: type) type {
|
|||||||
if (try m.instantiate(v8_context, resolveModuleCallback) == false) {
|
if (try m.instantiate(v8_context, resolveModuleCallback) == false) {
|
||||||
return error.ModuleInstantiationError;
|
return error.ModuleInstantiationError;
|
||||||
}
|
}
|
||||||
|
const arena = self.context_arena;
|
||||||
|
const owned_url = try arena.dupe(u8, url);
|
||||||
|
try self.module_identifier.putNoClobber(arena, m.getIdentityHash(), owned_url);
|
||||||
_ = try m.evaluate(v8_context);
|
_ = try m.evaluate(v8_context);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user