diff options
Diffstat (limited to 'Libraries/LibJS/Runtime/SymbolConstructor.h')
-rw-r--r-- | Libraries/LibJS/Runtime/SymbolConstructor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Libraries/LibJS/Runtime/SymbolConstructor.h b/Libraries/LibJS/Runtime/SymbolConstructor.h index ced41de12e..5c7ee56aef 100644 --- a/Libraries/LibJS/Runtime/SymbolConstructor.h +++ b/Libraries/LibJS/Runtime/SymbolConstructor.h @@ -42,8 +42,8 @@ private: virtual bool has_constructor() const override { return true; } virtual const char* class_name() const override { return "SymbolConstructor"; } - static Value for_(Interpreter&); - static Value key_for(Interpreter&); + JS_DECLARE_NATIVE_FUNCTION(for_); + JS_DECLARE_NATIVE_FUNCTION(key_for); }; } |