mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:28:11 +00:00
LibJS: Reduce use of Interpreter in Reference
This commit is contained in:
parent
3df604ad12
commit
be055b3ddd
3 changed files with 21 additions and 21 deletions
|
@ -85,11 +85,11 @@ public:
|
|||
return m_global_variable;
|
||||
}
|
||||
|
||||
void put(Interpreter&, GlobalObject&, Value);
|
||||
Value get(Interpreter&, GlobalObject&);
|
||||
void put(GlobalObject&, Value);
|
||||
Value get(GlobalObject&);
|
||||
|
||||
private:
|
||||
void throw_reference_error(Interpreter&, GlobalObject&);
|
||||
void throw_reference_error(GlobalObject&);
|
||||
|
||||
Value m_base { js_undefined() };
|
||||
PropertyName m_name;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue