mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 10:22:05 -05:00
LibJS: Add missing has_constructor override to Generator Functions
This commit is contained in:
parent
e9eae9d880
commit
804d592303
1 changed files with 3 additions and 0 deletions
|
@ -21,6 +21,9 @@ public:
|
|||
|
||||
virtual Value call() override;
|
||||
virtual Value construct(FunctionObject& new_target) override;
|
||||
|
||||
private:
|
||||
bool has_constructor() const override { return true; }
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue