1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 16:48:12 +00:00

LibJS: Compile the NewBigInt bytecode instruction

This commit is contained in:
Idan Horowitz 2023-10-28 19:58:36 +03:00 committed by Andreas Kling
parent d200361620
commit 2b65a80ecb
3 changed files with 20 additions and 0 deletions

View file

@ -256,6 +256,8 @@ public:
ThrowCompletionOr<void> execute_impl(Bytecode::Interpreter&) const;
DeprecatedString to_deprecated_string_impl(Bytecode::Executable const&) const;
Crypto::SignedBigInteger const& bigint() const { return m_bigint; }
private:
Crypto::SignedBigInteger m_bigint;
};