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
commit 2b65a80ecb
Notes: sideshowbarker 2024-07-17 07:43:05 +09:00
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;
};