1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:07:35 +00:00

LibJS: Mark two JS::Reference functions const

These two are inherently const, and the next commit needs to call them
on a const object, so let's just mark them const.
This commit is contained in:
Ali Mohammad Pur 2021-09-14 16:53:08 +04:30 committed by Linus Groh
parent fbb31b4519
commit f7a68ae998
2 changed files with 4 additions and 4 deletions

View file

@ -98,13 +98,13 @@ public:
}
void put_value(GlobalObject&, Value);
Value get_value(GlobalObject&, bool throw_if_undefined = true);
Value get_value(GlobalObject&, bool throw_if_undefined = true) const;
bool delete_(GlobalObject&);
String to_string() const;
private:
void throw_reference_error(GlobalObject&);
void throw_reference_error(GlobalObject&) const;
BaseType m_base_type { BaseType::Unresolvable };
union {