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

LibJS: Add NumberObject and make to_object() on number values create it

This commit is contained in:
Andreas Kling 2020-04-04 23:13:13 +02:00
parent d4dfe7e525
commit 3a026a1ede
8 changed files with 184 additions and 0 deletions

View file

@ -137,6 +137,7 @@ public:
Object* error_prototype() { return m_error_prototype; }
Object* date_prototype() { return m_date_prototype; }
Object* function_prototype() { return m_function_prototype; }
Object* number_prototype() { return m_number_prototype; }
Exception* exception() { return m_exception; }
void clear_exception() { m_exception = nullptr; }
@ -170,6 +171,7 @@ private:
Object* m_error_prototype { nullptr };
Object* m_date_prototype { nullptr };
Object* m_function_prototype { nullptr };
Object* m_number_prototype { nullptr };
Exception* m_exception { nullptr };