diff options
Diffstat (limited to 'Libraries/LibJS/Runtime/BoundFunction.h')
-rw-r--r-- | Libraries/LibJS/Runtime/BoundFunction.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Libraries/LibJS/Runtime/BoundFunction.h b/Libraries/LibJS/Runtime/BoundFunction.h index e20d1a8a05..8d4c3a443c 100644 --- a/Libraries/LibJS/Runtime/BoundFunction.h +++ b/Libraries/LibJS/Runtime/BoundFunction.h @@ -59,8 +59,6 @@ public: virtual bool is_strict_mode() const override { return m_target_function->is_strict_mode(); } private: - virtual bool is_bound_function() const override { return true; } - Function* m_target_function = nullptr; Object* m_constructor_prototype = nullptr; FlyString m_name; |