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
commit 2d48fe894f
Notes: sideshowbarker 2024-07-18 12:31:19 +09:00
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;