mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 01:37:35 +00:00
LibJS: Move AST node stack from VM to Interpreter
This commit is contained in:
parent
b3b8c01ebf
commit
1603623772
7 changed files with 29 additions and 19 deletions
|
@ -235,7 +235,7 @@ Value CallExpression::execute(Interpreter& interpreter, GlobalObject& global_obj
|
|||
}
|
||||
}
|
||||
|
||||
vm.call_frame().current_node = vm.current_node();
|
||||
vm.call_frame().current_node = interpreter.current_node();
|
||||
Object* new_object = nullptr;
|
||||
Value result;
|
||||
if (is<NewExpression>(*this)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue