mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 14:27:35 +00:00
LibJS: Forward BoundFunction::has_constructor() to bound target function
A BoundFunction only implements [[Construct]] (has_constructor() in LibJS) if its bound target function does.
This commit is contained in:
parent
7fc2807929
commit
72f5252826
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ public:
|
|||
virtual FunctionEnvironment* new_function_environment(Object* new_target) override;
|
||||
virtual const FlyString& name() const override { return m_name; }
|
||||
virtual bool is_strict_mode() const override { return m_bound_target_function->is_strict_mode(); }
|
||||
virtual bool has_constructor() const override { return true; }
|
||||
virtual bool has_constructor() const override { return m_bound_target_function->has_constructor(); }
|
||||
|
||||
FunctionObject& bound_target_function() const { return *m_bound_target_function; }
|
||||
Value bound_this() const { return m_bound_this; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue