TypeScript/tests/baselines/reference/templateStringInPropertyAssignment.types

12 lines
420 B
Plaintext
Raw Normal View History

=== tests/cases/conformance/es6/templates/templateStringInPropertyAssignment.ts ===
var x = {
2015-04-13 23:01:57 +02:00
>x : { a: string; }, Symbol(x, Decl(templateStringInPropertyAssignment.ts, 0, 3))
>{ a: `abc${ 123 }def${ 456 }ghi`} : { a: string; }
a: `abc${ 123 }def${ 456 }ghi`
2015-04-13 23:01:57 +02:00
>a : string, Symbol(a, Decl(templateStringInPropertyAssignment.ts, 0, 9))
2015-04-13 21:36:11 +02:00
>`abc${ 123 }def${ 456 }ghi` : string
>123 : number
>456 : number
}