TypeScript/tests/baselines/reference/styleOptions.symbols
2015-04-15 16:44:20 -07:00

16 lines
361 B
Plaintext

=== tests/cases/compiler/styleOptions.ts ===
///<style eqeqeq="on" strict="on" />
var x = 1;
>x : Symbol(x, Decl(styleOptions.ts, 2, 3))
var y = 1;
>y : Symbol(y, Decl(styleOptions.ts, 3, 3))
var t = x == y;
>t : Symbol(t, Decl(styleOptions.ts, 4, 3))
>x : Symbol(x, Decl(styleOptions.ts, 2, 3))
>y : Symbol(y, Decl(styleOptions.ts, 3, 3))