Files
babel/packages/babel-generator/test/fixtures/harmony-edgecase/templates-indentation/expected.js
2015-11-03 18:05:22 +00:00

16 lines
226 B
JavaScript

function multilineTemplate() {
return `I'm done reconfoobling
${ 'the energy motron' }
${ '...or whatever' }`;
}
{
const foo = `spam
and eggs!`;
const bar = `${ 4 + 2 }`;
const hello = `Hello
${ 'world' }`;
}