mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-22 04:25:13 +00:00
LibJS: Fix BooleanPrototype build
This commit is contained in:
parent
e983c745f7
commit
cbecb23e1d
Notes:
sideshowbarker
2024-07-19 07:46:56 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/cbecb23e1d0
1 changed files with 2 additions and 1 deletions
|
@ -26,12 +26,13 @@
|
|||
|
||||
#include <AK/Function.h>
|
||||
#include <LibJS/Interpreter.h>
|
||||
#include <LibJS/Runtime/BooleanObject.h>
|
||||
#include <LibJS/Runtime/BooleanPrototype.h>
|
||||
#include <LibJS/Runtime/Error.h>
|
||||
|
||||
namespace JS {
|
||||
|
||||
BooleanPrototype::BooleanPrototype()
|
||||
: BooleanObject(false)
|
||||
{
|
||||
put_native_function("toString", to_string);
|
||||
put_native_function("valueOf", value_of);
|
||||
|
|
Loading…
Add table
Reference in a new issue