LibJS: Implement bytecode ops for logical expressions

This commit is contained in:
Gunnar Beutner 2021-06-08 02:18:47 +02:00 committed by Andreas Kling
commit 6da587b59b
Notes: sideshowbarker 2024-07-18 12:39:33 +09:00
5 changed files with 83 additions and 0 deletions

View file

@ -557,6 +557,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:
LogicalOp m_op;