summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/JSONObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/JSONObject.h')
-rw-r--r--Userland/Libraries/LibJS/Runtime/JSONObject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/JSONObject.h b/Userland/Libraries/LibJS/Runtime/JSONObject.h
index 591d9bc801..6d717b22be 100644
--- a/Userland/Libraries/LibJS/Runtime/JSONObject.h
+++ b/Userland/Libraries/LibJS/Runtime/JSONObject.h
@@ -44,8 +44,8 @@ private:
static Array* parse_json_array(GlobalObject&, const JsonArray&);
static Value internalize_json_property(GlobalObject&, Object* holder, PropertyName const& name, FunctionObject& reviver);
- JS_DECLARE_NATIVE_FUNCTION(stringify);
- JS_DECLARE_NATIVE_FUNCTION(parse);
+ JS_DECLARE_OLD_NATIVE_FUNCTION(stringify);
+ JS_DECLARE_OLD_NATIVE_FUNCTION(parse);
};
}