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 +#include 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&); }; + }