LibJS: Remove two unused members from ExecutionContext

This commit is contained in:
Andreas Kling 2024-05-31 15:12:33 +02:00
commit a3782782fa
Notes: sideshowbarker 2024-07-17 03:05:16 +09:00
15 changed files with 29 additions and 36 deletions

View file

@ -81,7 +81,7 @@ ThrowCompletionOr<Promise*> SyntheticModule::evaluate(VM& vm)
// FIXME: We don't have suspend yet.
// 2. Let moduleContext be a new ECMAScript code execution context.
auto module_context = ExecutionContext::create(vm.heap());
auto module_context = ExecutionContext::create();
// 3. Set the Function of moduleContext to null.
// Note: This is the default value.