File: mergedModuleDeclarationCodeGen3.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 (22 lines) | stat: -rw-r--r-- 1,083 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
=== tests/cases/compiler/mergedModuleDeclarationCodeGen3.ts ===
module my.data {
>my : Symbol(my, Decl(mergedModuleDeclarationCodeGen3.ts, 0, 0), Decl(mergedModuleDeclarationCodeGen3.ts, 2, 1))
>data : Symbol(data, Decl(mergedModuleDeclarationCodeGen3.ts, 0, 10), Decl(mergedModuleDeclarationCodeGen3.ts, 3, 10))

    export function buz() { }
>buz : Symbol(buz, Decl(mergedModuleDeclarationCodeGen3.ts, 0, 16))
}
module my.data.foo {
>my : Symbol(my, Decl(mergedModuleDeclarationCodeGen3.ts, 0, 0), Decl(mergedModuleDeclarationCodeGen3.ts, 2, 1))
>data : Symbol(data, Decl(mergedModuleDeclarationCodeGen3.ts, 0, 10), Decl(mergedModuleDeclarationCodeGen3.ts, 3, 10))
>foo : Symbol(foo, Decl(mergedModuleDeclarationCodeGen3.ts, 3, 15))

    function data(my, foo) {
>data : Symbol(data, Decl(mergedModuleDeclarationCodeGen3.ts, 3, 20))
>my : Symbol(my, Decl(mergedModuleDeclarationCodeGen3.ts, 4, 18))
>foo : Symbol(foo, Decl(mergedModuleDeclarationCodeGen3.ts, 4, 21))

        buz();
>buz : Symbol(buz, Decl(mergedModuleDeclarationCodeGen3.ts, 0, 16))
    }
}