File: mergedModuleDeclarationCodeGen4.symbols

package info (click to toggle)
node-typescript 2.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 203,952 kB
  • ctags: 52,987
  • sloc: sh: 11; makefile: 5
file content (39 lines) | stat: -rw-r--r-- 1,838 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
=== tests/cases/compiler/mergedModuleDeclarationCodeGen4.ts ===
module superContain {
>superContain : Symbol(superContain, Decl(mergedModuleDeclarationCodeGen4.ts, 0, 0))

    export module contain {
>contain : Symbol(contain, Decl(mergedModuleDeclarationCodeGen4.ts, 0, 21))

        export module my.buz {
>my : Symbol(my, Decl(mergedModuleDeclarationCodeGen4.ts, 1, 27), Decl(mergedModuleDeclarationCodeGen4.ts, 6, 9))
>buz : Symbol(buz, Decl(mergedModuleDeclarationCodeGen4.ts, 2, 25), Decl(mergedModuleDeclarationCodeGen4.ts, 7, 25))

            export module data {
>data : Symbol(data, Decl(mergedModuleDeclarationCodeGen4.ts, 2, 30), Decl(mergedModuleDeclarationCodeGen4.ts, 7, 30))

                export function foo() { }
>foo : Symbol(foo, Decl(mergedModuleDeclarationCodeGen4.ts, 3, 32))
            }
        }
        export module my.buz {
>my : Symbol(my, Decl(mergedModuleDeclarationCodeGen4.ts, 1, 27), Decl(mergedModuleDeclarationCodeGen4.ts, 6, 9))
>buz : Symbol(buz, Decl(mergedModuleDeclarationCodeGen4.ts, 2, 25), Decl(mergedModuleDeclarationCodeGen4.ts, 7, 25))

            export module data {
>data : Symbol(data, Decl(mergedModuleDeclarationCodeGen4.ts, 2, 30), Decl(mergedModuleDeclarationCodeGen4.ts, 7, 30))

                export function bar(contain, my, buz, data) {
>bar : Symbol(bar, Decl(mergedModuleDeclarationCodeGen4.ts, 8, 32))
>contain : Symbol(contain, Decl(mergedModuleDeclarationCodeGen4.ts, 9, 36))
>my : Symbol(my, Decl(mergedModuleDeclarationCodeGen4.ts, 9, 44))
>buz : Symbol(buz, Decl(mergedModuleDeclarationCodeGen4.ts, 9, 48))
>data : Symbol(data, Decl(mergedModuleDeclarationCodeGen4.ts, 9, 53))

                    foo();
>foo : Symbol(foo, Decl(mergedModuleDeclarationCodeGen4.ts, 3, 32))
                }
            }
        }
    }
}