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 @@ -691,7 +691,7 @@ Maybe<bool> InitializePrimordials(Local<Context> context) {
691
691
for (const char ** module = context_files; *module != nullptr ; module++) {
692
692
// Arguments must match the parameters specified in
693
693
// BuiltinLoader::LookupAndCompile().
694
- Local<Value> arguments[] = {context-> Global (), exports, primordials};
694
+ Local<Value> arguments[] = {exports, primordials};
695
695
MaybeLocal<Function> maybe_fn =
696
696
builtins::BuiltinLoader::LookupAndCompile (context, *module, nullptr );
697
697
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