diff options
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/ArrayBufferConstructor.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/ArrayBufferConstructor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/ArrayBufferConstructor.h b/Userland/Libraries/LibJS/Runtime/ArrayBufferConstructor.h index 045425a46a..2e3eb81728 100644 --- a/Userland/Libraries/LibJS/Runtime/ArrayBufferConstructor.h +++ b/Userland/Libraries/LibJS/Runtime/ArrayBufferConstructor.h @@ -24,9 +24,9 @@ public: private: virtual bool has_constructor() const override { return true; } - JS_DECLARE_NATIVE_FUNCTION(is_view); + JS_DECLARE_OLD_NATIVE_FUNCTION(is_view); - JS_DECLARE_NATIVE_FUNCTION(symbol_species_getter); + JS_DECLARE_OLD_NATIVE_FUNCTION(symbol_species_getter); }; } |