diff options
author | 2022-08-17 21:44:00 -0700 | |
---|---|---|
committer | 2022-08-17 21:44:00 -0700 | |
commit | 8399d31af29867f972cc8def3ca136abd37153b4 (patch) | |
tree | 91c48b322dba1f30bde2c05d377a156a8149e464 /src | |
parent | 1d2b52d15c6210171bb4ce08477bce31de7c5548 (diff) | |
download | bun-8399d31af29867f972cc8def3ca136abd37153b4.tar.gz bun-8399d31af29867f972cc8def3ca136abd37153b4.tar.zst bun-8399d31af29867f972cc8def3ca136abd37153b4.zip |
Update ZigGlobalObject.cpp
Diffstat (limited to 'src')
-rw-r--r-- | src/bun.js/bindings/ZigGlobalObject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bun.js/bindings/ZigGlobalObject.cpp b/src/bun.js/bindings/ZigGlobalObject.cpp index c76931b87..4ca5a85df 100644 --- a/src/bun.js/bindings/ZigGlobalObject.cpp +++ b/src/bun.js/bindings/ZigGlobalObject.cpp @@ -2668,7 +2668,7 @@ JSC::JSObject* GlobalObject::moduleLoaderCreateImportMetaProperties(JSGlobalObje } JSC::Structure* structure = WebCore::getDOMStructure<Zig::ImportMetaObject>(vm, *reinterpret_cast<Zig::GlobalObject*>(globalObject)); - Zig::ImportMetaObject* metaProperties = Zig::ImportMetaObject::create(vm, globalObject, structure, view.isolatedCopy()); + Zig::ImportMetaObject* metaProperties = Zig::ImportMetaObject::create(vm, globalObject, structure); RETURN_IF_EXCEPTION(scope, nullptr); auto clientData = WebCore::clientData(vm); |