summaryrefslogtreecommitdiff
path: root/Libraries
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries')
-rw-r--r--Libraries/LibJS/Runtime/BooleanPrototype.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/Libraries/LibJS/Runtime/BooleanPrototype.h b/Libraries/LibJS/Runtime/BooleanPrototype.h
index 4050767839..795a058cd3 100644
--- a/Libraries/LibJS/Runtime/BooleanPrototype.h
+++ b/Libraries/LibJS/Runtime/BooleanPrototype.h
@@ -26,10 +26,11 @@
#pragma once
-#include <LibJS/Runtime/BooleanObject.h>
+#include <LibJS/Runtime/Object.h>
namespace JS {
-class BooleanPrototype final : public BooleanObject {
+
+class BooleanPrototype final : public Object {
public:
BooleanPrototype();
virtual ~BooleanPrototype() override;
@@ -40,4 +41,5 @@ private:
static Value to_string(Interpreter&);
static Value value_of(Interpreter&);
};
+
}