File tree 2 files changed +1
-2
lines changed
2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -701,7 +701,7 @@ Maybe<bool> InitializePrimordials(Local<Context> context) {
701
701
for (const char ** module = context_files; *module != nullptr ; module++) {
702
702
// Arguments must match the parameters specified in
703
703
// BuiltinLoader::LookupAndCompile().
704
- Local<Value> arguments[] = {context-> Global (), exports, primordials};
704
+ Local<Value> arguments[] = {exports, primordials};
705
705
MaybeLocal<Function> maybe_fn =
706
706
builtins::BuiltinLoader::LookupAndCompile (context, *module, nullptr );
707
707
Local<Function> fn;
Original file line number Diff line number Diff line change @@ -349,7 +349,6 @@ MaybeLocal<Function> BuiltinLoader::LookupAndCompile(
349
349
strlen (" internal/per_context/" )) == 0 ) {
350
350
// internal/per_context/*: global, exports, primordials
351
351
parameters = {
352
- FIXED_ONE_BYTE_STRING (isolate, " global" ),
353
352
FIXED_ONE_BYTE_STRING (isolate, " exports" ),
354
353
FIXED_ONE_BYTE_STRING (isolate, " primordials" ),
355
354
};
You can’t perform that action at this time.
0 commit comments