TypeScript/tests/baselines/reference/templateStringWithEmbeddedObjectLiteral.symbols
2015-04-15 16:44:20 -07:00

7 lines
350 B
Plaintext

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedObjectLiteral.ts ===
var x = `abc${ { x: 10, y: 20 } }def`;
>x : Symbol(x, Decl(templateStringWithEmbeddedObjectLiteral.ts, 0, 3))
>x : Symbol(x, Decl(templateStringWithEmbeddedObjectLiteral.ts, 0, 16))
>y : Symbol(y, Decl(templateStringWithEmbeddedObjectLiteral.ts, 0, 23))