1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:37:36 +00:00

Spreadsheet: Use the LibJS bytecode VM

This commit is contained in:
Andreas Kling 2023-08-08 07:12:40 +02:00
parent acd366eddd
commit fcc72a787b
6 changed files with 38 additions and 35 deletions

View file

@ -44,8 +44,8 @@ public:
private:
Vector<NonnullRefPtr<Sheet>> m_sheets;
NonnullRefPtr<JS::VM> m_vm;
NonnullOwnPtr<JS::Interpreter> m_interpreter;
JS::VM::InterpreterExecutionScope m_interpreter_scope;
NonnullOwnPtr<JS::ExecutionContext> m_root_execution_context;
JS::GCPtr<WorkbookObject> m_workbook_object;
JS::ExecutionContext m_main_execution_context;
GUI::Window& m_parent_window;