1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:17:44 +00:00

LibJS: Generate bytecode for tagged template literals

This commit is contained in:
Gunnar Beutner 2021-06-09 21:02:24 +02:00 committed by Andreas Kling
parent 25ab31219c
commit 2d48fe894f
2 changed files with 57 additions and 0 deletions

View file

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