1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:17:35 +00:00

LibJS: Implement the NewClass opcode

This commit is contained in:
Ali Mohammad Pur 2022-02-11 22:38:21 +03:30 committed by Linus Groh
parent 8b27917603
commit d7c207beb9
4 changed files with 23 additions and 4 deletions

View file

@ -55,6 +55,8 @@ public:
InterpreterExecutionScope(Interpreter&);
~InterpreterExecutionScope();
Interpreter& interpreter() { return m_interpreter; }
private:
Interpreter& m_interpreter;
};