TypeScript/tests/baselines/reference/templateStringWithBackslashEscapes01_ES6.js
Daniel Rosenwasser c7db1c3781 Added baselines.
2015-04-16 15:54:14 -07:00

13 lines
308 B
TypeScript

//// [templateStringWithBackslashEscapes01_ES6.ts]
var a = `hello\world`;
var b = `hello\\world`;
var c = `hello\\\world`;
var d = `hello\\\\world`;
//// [templateStringWithBackslashEscapes01_ES6.js]
var a = `hello\world`;
var b = `hello\\world`;
var c = `hello\\\world`;
var d = `hello\\\\world`;