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

LibJS: Add conditional expression bytecode generation

Or, by its more common name, the ternary operator :^)
This commit is contained in:
Luke 2021-06-08 04:54:34 +01:00 committed by Linus Groh
parent 6da587b59b
commit de3ee701ce
2 changed files with 20 additions and 0 deletions

View file

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