TypeScript/tests/baselines/reference/stringLiteralPropertyNameWithLineContinuation1.types
2015-04-13 14:29:37 -07:00

21 lines
637 B
Plaintext

=== tests/cases/compiler/stringLiteralPropertyNameWithLineContinuation1.ts ===
var x = {'text\
>x : { 'text\
': string; }, Symbol(x, Decl(stringLiteralPropertyNameWithLineContinuation1.ts, 0, 3))
>{'text\':'hello'} : { 'text\
': string; }
':'hello'}
>'hello' : string
x.text = "bar"
>x.text = "bar" : string
>x.text : string, Symbol('text\
', Decl(stringLiteralPropertyNameWithLineContinuation1.ts, 0, 9))
>x : { 'text\
': string; }, Symbol(x, Decl(stringLiteralPropertyNameWithLineContinuation1.ts, 0, 3))
>text : string, Symbol('text\
', Decl(stringLiteralPropertyNameWithLineContinuation1.ts, 0, 9))
>"bar" : string