TypeScript/tests/baselines/reference/stringLiteralPropertyNameWithLineContinuation1.js
2014-07-12 17:30:19 -07:00

11 lines
211 B
JavaScript

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