puma icon indicating copy to clipboard operation
puma copied to clipboard

ECMA 6 - Implement Template Literals

Open pemattio opened this issue 7 years ago • 0 comments

The runtime need to has the visitor for template literals.

var customer = { name: "Foo" };
var card = { amount: 7, product: "Bar", unitprice: 42 };
var message = `Hello ${customer.name},
want to buy ${card.amount} ${card.product} for
a total of ${card.amount * card.unitprice} bucks?`

pemattio avatar Jun 11 '18 23:06 pemattio