Merge pull request #814 from lightpanda-io/root_module_nested_modules

Allow root modules to imported modules
This commit is contained in:
Karl Seguin
2025-06-26 10:25:10 +08:00
committed by GitHub

View File

@@ -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);
} }