summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Runtime/JSONObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibJS/Runtime/JSONObject.h')
-rw-r--r--Libraries/LibJS/Runtime/JSONObject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Libraries/LibJS/Runtime/JSONObject.h b/Libraries/LibJS/Runtime/JSONObject.h
index c9b8a488ef..7fc71c7f9d 100644
--- a/Libraries/LibJS/Runtime/JSONObject.h
+++ b/Libraries/LibJS/Runtime/JSONObject.h
@@ -56,8 +56,8 @@ private:
static Value parse_json_value(Interpreter&, const JsonValue&);
static Value internalize_json_property(Interpreter&, Object* holder, const PropertyName& name, Function& reviver);
- static Value stringify(Interpreter&);
- static Value parse(Interpreter&);
+ JS_DECLARE_NATIVE_FUNCTION(stringify);
+ JS_DECLARE_NATIVE_FUNCTION(parse);
};
}