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

18 lines
441 B
Plaintext

=== tests/cases/compiler/letKeepNamesOfTopLevelItems.ts ===
let x;
>x : Symbol(x, Decl(letKeepNamesOfTopLevelItems.ts, 0, 3))
function foo() {
>foo : Symbol(foo, Decl(letKeepNamesOfTopLevelItems.ts, 0, 6))
let x;
>x : Symbol(x, Decl(letKeepNamesOfTopLevelItems.ts, 2, 7))
}
module A {
>A : Symbol(A, Decl(letKeepNamesOfTopLevelItems.ts, 3, 1))
let x;
>x : Symbol(x, Decl(letKeepNamesOfTopLevelItems.ts, 6, 7))
}