mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibJS: Add Boolean constructor object
This commit is contained in:
parent
57bd194e5a
commit
edae926cb0
Notes:
sideshowbarker
2024-07-19 07:50:30 +09:00
Author: https://github.com/jack-karamanian
Commit: edae926cb0
Pull-request: https://github.com/SerenityOS/serenity/pull/1682
Reviewed-by: https://github.com/bgianfo
16 changed files with 400 additions and 0 deletions
|
@ -59,6 +59,7 @@ public:
|
|||
void put_native_property(const FlyString& property_name, AK::Function<Value(Interpreter&)> getter, AK::Function<void(Interpreter&, Value)> setter);
|
||||
|
||||
virtual bool is_array() const { return false; }
|
||||
virtual bool is_boolean() const { return false; }
|
||||
virtual bool is_date() const { return false; }
|
||||
virtual bool is_error() const { return false; }
|
||||
virtual bool is_function() const { return false; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue