summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Runtime/BooleanConstructor.h
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibJS/Runtime/BooleanConstructor.h')
-rw-r--r--Libraries/LibJS/Runtime/BooleanConstructor.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Libraries/LibJS/Runtime/BooleanConstructor.h b/Libraries/LibJS/Runtime/BooleanConstructor.h
index ea98181b7c..22b559cd2b 100644
--- a/Libraries/LibJS/Runtime/BooleanConstructor.h
+++ b/Libraries/LibJS/Runtime/BooleanConstructor.h
@@ -32,7 +32,8 @@ namespace JS {
class BooleanConstructor final : public NativeFunction {
public:
- BooleanConstructor();
+ explicit BooleanConstructor(GlobalObject&);
+ virtual void initialize(Interpreter&, GlobalObject&) override;
virtual ~BooleanConstructor() override;
virtual Value call(Interpreter&) override;