diff options
author | Matthew Olsson <matthewcolsson@gmail.com> | 2020-06-10 11:01:00 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-06-13 12:43:22 +0200 |
commit | 39576b22385a2e6b6fc4fbf5e90e6b72157e9ee2 (patch) | |
tree | 780b45d855c52048c36a73adac9caaf49ff918e7 /Libraries/LibJS/Runtime/BooleanObject.h | |
parent | b4577ffcf31ef521dcf914d783403f5a57af96b5 (diff) | |
download | serenity-39576b22385a2e6b6fc4fbf5e90e6b72157e9ee2.zip |
LibJS: Add JSON.stringify
Diffstat (limited to 'Libraries/LibJS/Runtime/BooleanObject.h')
-rw-r--r-- | Libraries/LibJS/Runtime/BooleanObject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibJS/Runtime/BooleanObject.h b/Libraries/LibJS/Runtime/BooleanObject.h index c09a6b0f9d..4ecaaec3a5 100644 --- a/Libraries/LibJS/Runtime/BooleanObject.h +++ b/Libraries/LibJS/Runtime/BooleanObject.h @@ -43,7 +43,7 @@ public: private: virtual const char* class_name() const override { return "BooleanObject"; } - virtual bool is_boolean() const override { return true; } + virtual bool is_boolean_object() const override { return true; } bool m_value { false }; }; } |