File: mergedModuleDeclarationCodeGen2.symbols

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (23 lines) | stat: -rw-r--r-- 1,163 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
=== tests/cases/compiler/mergedModuleDeclarationCodeGen2.ts ===
module my.data.foo {
>my : Symbol(my, Decl(mergedModuleDeclarationCodeGen2.ts, 0, 0), Decl(mergedModuleDeclarationCodeGen2.ts, 2, 1))
>data : Symbol(data, Decl(mergedModuleDeclarationCodeGen2.ts, 0, 10), Decl(mergedModuleDeclarationCodeGen2.ts, 3, 10))
>foo : Symbol(foo, Decl(mergedModuleDeclarationCodeGen2.ts, 0, 15))

    export function buz() { }
>buz : Symbol(buz, Decl(mergedModuleDeclarationCodeGen2.ts, 0, 20))
}
module my.data {
>my : Symbol(my, Decl(mergedModuleDeclarationCodeGen2.ts, 0, 0), Decl(mergedModuleDeclarationCodeGen2.ts, 2, 1))
>data : Symbol(data, Decl(mergedModuleDeclarationCodeGen2.ts, 0, 10), Decl(mergedModuleDeclarationCodeGen2.ts, 3, 10))

    function data(my) {
>data : Symbol(data, Decl(mergedModuleDeclarationCodeGen2.ts, 3, 16))
>my : Symbol(my, Decl(mergedModuleDeclarationCodeGen2.ts, 4, 18))

        foo.buz();
>foo.buz : Symbol(foo.buz, Decl(mergedModuleDeclarationCodeGen2.ts, 0, 20))
>foo : Symbol(foo, Decl(mergedModuleDeclarationCodeGen2.ts, 0, 15))
>buz : Symbol(foo.buz, Decl(mergedModuleDeclarationCodeGen2.ts, 0, 20))
    }
}