summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/DateConstructor.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/DateConstructor.h')
-rw-r--r--Userland/Libraries/LibJS/Runtime/DateConstructor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/DateConstructor.h b/Userland/Libraries/LibJS/Runtime/DateConstructor.h
index 6718aebd31..d36a9f466f 100644
--- a/Userland/Libraries/LibJS/Runtime/DateConstructor.h
+++ b/Userland/Libraries/LibJS/Runtime/DateConstructor.h
@@ -24,9 +24,9 @@ public:
private:
virtual bool has_constructor() const override { return true; }
- JS_DECLARE_NATIVE_FUNCTION(now);
- JS_DECLARE_NATIVE_FUNCTION(parse);
- JS_DECLARE_NATIVE_FUNCTION(utc);
+ JS_DECLARE_OLD_NATIVE_FUNCTION(now);
+ JS_DECLARE_OLD_NATIVE_FUNCTION(parse);
+ JS_DECLARE_OLD_NATIVE_FUNCTION(utc);
};
}