Kevin Smith (2014-12-16T15:57:41.000Z)
>
>
> var template = compile`
> Hello ${{first_name}}
> `;
>

You'll get a ReferenceError because it has the object literal `{ first_name
}`, which is shorthand for `{ first_name: first_name }`, and there is
(presumably) no binding for `first_name`.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20141216/47a916c9/attachment.html>
d at domenic.me (2014-12-19T22:52:51.772Z)
You'll get a ReferenceError because it has the object literal `{ first_name
}`, which is shorthand for `{ first_name: first_name }`, and there is
(presumably) no binding for `first_name`.