TypeScript/tests/baselines/reference/duplicateIdentifierRelatedSpans_moduleAugmentation.symbols
Andy 8feddcd16d
Clean up amalgamatedDuplicates (#27285)
* Clean up amalgamatedDuplicates

* Code review
2018-10-01 12:16:49 -07:00

22 lines
466 B
Plaintext

=== /dir/a.ts ===
export const x = 0;
>x : Symbol(x, Decl(a.ts, 0, 12))
=== /dir/b.ts ===
export {};
declare module "./a" {
>"./a" : Symbol("/dir/a", Decl(a.ts, 0, 0), Decl(b.ts, 0, 10), Decl(b.ts, 4, 1))
export const x = 0;
>x : Symbol(x, Decl(b.ts, 3, 16))
}
declare module "../dir/a" {
>"../dir/a" : Symbol("/dir/a", Decl(a.ts, 0, 0), Decl(b.ts, 0, 10), Decl(b.ts, 4, 1))
export const x = 0;
>x : Symbol(x, Decl(b.ts, 7, 16))
}