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

LibJS: Convert to_bigint_uint64() to ThrowCompletionOr

This commit is contained in:
Idan Horowitz 2021-10-16 22:01:10 +03:00 committed by Linus Groh
parent df181809fd
commit 51c33b3b35
3 changed files with 4 additions and 4 deletions

View file

@ -312,7 +312,7 @@ public:
Value to_number(GlobalObject&) const;
ThrowCompletionOr<BigInt*> to_bigint(GlobalObject&) const;
ThrowCompletionOr<i64> to_bigint_int64(GlobalObject&) const;
u64 to_bigint_uint64(GlobalObject&) const;
ThrowCompletionOr<u64> to_bigint_uint64(GlobalObject&) const;
double to_double(GlobalObject&) const;
StringOrSymbol to_property_key(GlobalObject&) const;
i32 to_i32(GlobalObject& global_object) const