TypeScript/tests/baselines/reference/templateStringWithBackslashEscapes01.symbols

16 lines
477 B
Plaintext
Raw Normal View History

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