mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-12 12:32:21 +00:00
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.)
This commit is contained in:
parent
b7ce0680dd
commit
df3ff76815
Notes:
sideshowbarker
2024-07-19 02:18:10 +09:00
Author: https://github.com/awesomekling
Commit: df3ff76815
7 changed files with 11 additions and 11 deletions
|
@ -45,10 +45,10 @@ public:
|
|||
void push_interpreter(Interpreter&);
|
||||
void pop_interpreter(Interpreter&);
|
||||
|
||||
class InterpreterScope {
|
||||
class InterpreterExecutionScope {
|
||||
public:
|
||||
InterpreterScope(Interpreter&);
|
||||
~InterpreterScope();
|
||||
InterpreterExecutionScope(Interpreter&);
|
||||
~InterpreterExecutionScope();
|
||||
private:
|
||||
Interpreter& m_interpreter;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue