File: reexportNameAliasedAndHoisted.symbols

package info (click to toggle)
node-typescript 4.9.5%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 533,908 kB
  • sloc: javascript: 2,018,330; makefile: 7; sh: 1
file content (20 lines) | stat: -rw-r--r-- 789 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
=== tests/cases/compiler/gridview.ts ===
export type Sizing = any;
>Sizing : Symbol(Sizing, Decl(gridview.ts, 0, 0), Decl(gridview.ts, 1, 12))

export const Sizing = null;
>Sizing : Symbol(Sizing, Decl(gridview.ts, 0, 0), Decl(gridview.ts, 1, 12))

=== tests/cases/compiler/index.ts ===
// https://github.com/microsoft/TypeScript/issues/39195
export { Sizing as GridViewSizing } from './gridview';
>Sizing : Symbol(Sizing, Decl(gridview.ts, 0, 0), Decl(gridview.ts, 1, 12))
>GridViewSizing : Symbol(GridViewSizing, Decl(index.ts, 1, 8))

export namespace Sizing {
>Sizing : Symbol(Sizing, Decl(index.ts, 1, 54))

    export const Distribute = { type: 'distribute' };
>Distribute : Symbol(Distribute, Decl(index.ts, 3, 16))
>type : Symbol(type, Decl(index.ts, 3, 31))
}