TypeScript/tests/baselines/reference/stringLiteralPropertyNameWithLineContinuation1.js

11 lines
211 B
TypeScript

//// [stringLiteralPropertyNameWithLineContinuation1.ts]
var x = {'text\
':'hello'}
x.text = "bar"
//// [stringLiteralPropertyNameWithLineContinuation1.js]
var x = { 'text\
': 'hello' };
x.text = "bar";