1
Fork 0
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:
Andreas Kling 2020-09-29 16:45:24 +02:00
parent 3df604ad12
commit be055b3ddd
3 changed files with 21 additions and 21 deletions

View file

@ -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;