LibJS: Convert internal_has_property() to ThrowCompletionOr

This commit is contained in:
Linus Groh 2021-09-29 18:08:06 +01:00
commit d9895ec12d
Notes: sideshowbarker 2024-07-18 03:35:30 +09:00
10 changed files with 32 additions and 32 deletions

View file

@ -1403,7 +1403,7 @@ public:
if (interface.extended_attributes.contains("CustomHasProperty")) {
generator.append(R"~~~(
virtual bool internal_has_property(JS::PropertyName const&) const override;
virtual JS::ThrowCompletionOr<bool> internal_has_property(JS::PropertyName const&) const override;
)~~~");
}