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

LibJS: Add JSON.stringify function to the intrinsics

This is needed for some Web APIs.
This commit is contained in:
Linus Groh 2022-09-25 19:17:24 +01:00
parent b42b950688
commit 4e536eaf98
2 changed files with 4 additions and 0 deletions

View file

@ -55,6 +55,7 @@ public:
FunctionObject* array_prototype_values_function() const { return m_array_prototype_values_function; }
FunctionObject* date_constructor_now_function() const { return m_date_constructor_now_function; }
FunctionObject* json_parse_function() const { return m_json_parse_function; }
FunctionObject* json_stringify_function() const { return m_json_stringify_function; }
FunctionObject* object_prototype_to_string_function() const { return m_object_prototype_to_string_function; }
FunctionObject* throw_type_error_function() const { return m_throw_type_error_function; }
@ -149,6 +150,7 @@ private:
FunctionObject* m_array_prototype_values_function { nullptr };
FunctionObject* m_date_constructor_now_function { nullptr };
FunctionObject* m_json_parse_function { nullptr };
FunctionObject* m_json_stringify_function { nullptr };
FunctionObject* m_object_prototype_to_string_function { nullptr };
FunctionObject* m_throw_type_error_function { nullptr };