LibJS: Return a GC::Ref from the NumberToBigInt AO

All callers currently handle this without needing any further changes.
This commit is contained in:
Timothy Flynn 2024-11-24 09:50:02 -05:00 committed by Andreas Kling
commit 1675f40e29
Notes: github-actions[bot] 2024-11-25 12:34:34 +00:00
2 changed files with 3 additions and 3 deletions

View file

@ -35,6 +35,6 @@ private:
Crypto::SignedBigInteger m_big_integer;
};
ThrowCompletionOr<BigInt*> number_to_bigint(VM&, Value);
ThrowCompletionOr<GC::Ref<BigInt>> number_to_bigint(VM&, Value);
}