diff --git a/Userland/Libraries/LibJS/Runtime/Completion.cpp b/Userland/Libraries/LibJS/Runtime/Completion.cpp index fd70754bbc..b29a1af86d 100644 --- a/Userland/Libraries/LibJS/Runtime/Completion.cpp +++ b/Userland/Libraries/LibJS/Runtime/Completion.cpp @@ -30,7 +30,6 @@ ThrowCompletionOr await(GlobalObject& global_object, Value value) Value result; // 3. Let fulfilledClosure be a new Abstract Closure with parameters (value) that captures asyncContext and performs the following steps when called: auto fulfilled_closure = [&async_context, &success, &result](VM& vm, GlobalObject& global_object) -> ThrowCompletionOr { - VERIFY(!vm.argument(0).is_undefined()); // a. Let prevContext be the running execution context. // b. Suspend prevContext. // FIXME: We don't have this concept yet.