TypeScript/tests/baselines/reference/stringLiteralPropertyNameWithLineContinuation1.types
2014-08-15 14:37:48 -07:00

17 lines
290 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