TypeScript/tests/baselines/reference/stringLiteralPropertyNameWithLineContinuation1.types
2014-08-25 10:55:22 -07:00

16 lines
289 B
Plaintext

=== tests/cases/compiler/stringLiteralPropertyNameWithLineContinuation1.ts ===
var x = {'text\
>x : { 'text\
': string; }
>{'text\':'hello'} : { 'text\
': string; }
':'hello'}
x.text = "bar"
>x.text = "bar" : string
>x.text : string
>x : { 'text\
': string; }
>text : string