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

13 lines
467 B
Plaintext

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