mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 05:17:35 +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:
parent
da45bd3fde
commit
5b2c0dfec0
1 changed files with 1 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue