1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:27:45 +00:00

LibJS: Convert reference deletion to ThrowCompletionOr

This commit is contained in:
Idan Horowitz 2021-11-02 18:38:51 +02:00 committed by Linus Groh
parent 330ac1e5ad
commit d73b258874
4 changed files with 10 additions and 14 deletions

View file

@ -131,7 +131,7 @@ public:
void put_value(GlobalObject&, Value);
Value get_value(GlobalObject&) const;
bool delete_(GlobalObject&);
ThrowCompletionOr<bool> delete_(GlobalObject&);
String to_string() const;