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

LibJS: Implement bytecode generation for BigInts

This commit is contained in:
Gunnar Beutner 2021-06-08 07:59:25 +02:00 committed by Linus Groh
parent 0975e08285
commit 50ece3dd1b
5 changed files with 38 additions and 0 deletions

View file

@ -660,6 +660,7 @@ public:
virtual Value execute(Interpreter&, GlobalObject&) const override;
virtual void dump(int indent) const override;
virtual Optional<Bytecode::Register> generate_bytecode(Bytecode::Generator&) const override;
private:
String m_value;