1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:17:44 +00:00

LibJS/JIT: Return result of SuperCallWithArgumentArray

test/language/expressions/optional-chaining/call-expression.js 💥️ -> 
test/language/expressions/super/call-expr-value.js             💥️ -> 
This commit is contained in:
Simon Wanner 2023-10-30 08:59:07 +01:00 committed by Andreas Kling
parent da45bd3fde
commit 5b2c0dfec0

View file

@ -1091,8 +1091,7 @@ void Compiler::compile_block_declaration_instantiation(Bytecode::Op::BlockDeclar
static Value cxx_super_call_with_argument_array(VM& vm, Value argument_array, bool is_synthetic)
{
TRY_OR_SET_EXCEPTION(Bytecode::super_call_with_argument_array(vm, argument_array, is_synthetic));
return {};
return TRY_OR_SET_EXCEPTION(Bytecode::super_call_with_argument_array(vm, argument_array, is_synthetic));
}
void Compiler::compile_super_call_with_argument_array(Bytecode::Op::SuperCallWithArgumentArray const& op)