diff options
author | Andreas Kling <kling@serenityos.org> | 2020-09-21 13:36:32 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-09-21 14:35:12 +0200 |
commit | df3ff76815893104eb1c2686c4e51d70793c28f3 (patch) | |
tree | 258d19ed12f4949fe71d327ccd4c8fa1c8597ba8 /Applications/Spreadsheet/Workbook.h | |
parent | b7ce0680ddf1cb7135874eefa8ab5d75e9af2850 (diff) | |
download | serenity-df3ff76815893104eb1c2686c4e51d70793c28f3.zip |
LibJS: Rename InterpreterScope => InterpreterExecutionScope
To make it a little clearer what this is for. (This is an RAII helper
class for adding and removing an Interpreter to a VM's list of the
currently active (executing code) Interpreters.)
Diffstat (limited to 'Applications/Spreadsheet/Workbook.h')
-rw-r--r-- | Applications/Spreadsheet/Workbook.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/Spreadsheet/Workbook.h b/Applications/Spreadsheet/Workbook.h index 60b12748ca..c03fbfa5ab 100644 --- a/Applications/Spreadsheet/Workbook.h +++ b/Applications/Spreadsheet/Workbook.h @@ -66,7 +66,7 @@ public: private: NonnullRefPtrVector<Sheet> m_sheets; NonnullOwnPtr<JS::Interpreter> m_interpreter; - JS::VM::InterpreterScope m_interpreter_scope; + JS::VM::InterpreterExecutionScope m_interpreter_scope; WorkbookObject* m_workbook_object { nullptr }; String m_current_filename; |