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

10 lines
384 B
Plaintext

=== tests/cases/compiler/nameCollisionsInPropertyAssignments.ts ===
var x = 1
>x : Symbol(x, Decl(nameCollisionsInPropertyAssignments.ts, 0, 3))
var y = { x() { x++; } };
>y : Symbol(y, Decl(nameCollisionsInPropertyAssignments.ts, 1, 3))
>x : Symbol(x, Decl(nameCollisionsInPropertyAssignments.ts, 1, 9))
>x : Symbol(x, Decl(nameCollisionsInPropertyAssignments.ts, 0, 3))