TypeScript/tests/baselines/reference/templateStringInCallExpressionES6.js

6 lines
196 B
TypeScript

//// [templateStringInCallExpressionES6.ts]
`abc${0}abc`(`hello ${0} world`, ` `, `1${2}3`);
//// [templateStringInCallExpressionES6.js]
`abc${0}abc`(`hello ${0} world`, ` `, `1${2}3`);