summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/BigIntConstructor.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/BigIntConstructor.h')
-rw-r--r--Userland/Libraries/LibJS/Runtime/BigIntConstructor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/BigIntConstructor.h b/Userland/Libraries/LibJS/Runtime/BigIntConstructor.h
index ad8b510636..6f447642f1 100644
--- a/Userland/Libraries/LibJS/Runtime/BigIntConstructor.h
+++ b/Userland/Libraries/LibJS/Runtime/BigIntConstructor.h
@@ -24,8 +24,8 @@ public:
private:
virtual bool has_constructor() const override { return true; }
- JS_DECLARE_NATIVE_FUNCTION(as_int_n);
- JS_DECLARE_NATIVE_FUNCTION(as_uint_n);
+ JS_DECLARE_OLD_NATIVE_FUNCTION(as_int_n);
+ JS_DECLARE_OLD_NATIVE_FUNCTION(as_uint_n);
};
}