TypeScript/tests/baselines/reference/templateStringWithBackslashEscapes01_ES6.symbols

15 lines
495 B
Plaintext
Raw Normal View History

2015-04-17 00:54:14 +02:00
=== tests/cases/conformance/es6/templates/templateStringWithBackslashEscapes01_ES6.ts ===
var a = `hello\world`;
>a : Symbol(a, Decl(templateStringWithBackslashEscapes01_ES6.ts, 1, 3))
var b = `hello\\world`;
>b : Symbol(b, Decl(templateStringWithBackslashEscapes01_ES6.ts, 2, 3))
var c = `hello\\\world`;
>c : Symbol(c, Decl(templateStringWithBackslashEscapes01_ES6.ts, 3, 3))
var d = `hello\\\\world`;
>d : Symbol(d, Decl(templateStringWithBackslashEscapes01_ES6.ts, 4, 3))