File: commentsMultiModuleMultiFile.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 (58 lines) | stat: -rw-r--r-- 2,168 bytes parent folder | download | duplicates (5)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
=== tests/cases/compiler/commentsMultiModuleMultiFile_1.ts ===
import m = require('commentsMultiModuleMultiFile_0');
>m : Symbol(m, Decl(commentsMultiModuleMultiFile_1.ts, 0, 0))

/** this is multi module 3 comment*/
export module multiM {
>multiM : Symbol(multiM, Decl(commentsMultiModuleMultiFile_1.ts, 0, 53))

    /** class d comment*/
    export class d {
>d : Symbol(d, Decl(commentsMultiModuleMultiFile_1.ts, 2, 22))
    }

    /// class f comment
    export class f {
>f : Symbol(f, Decl(commentsMultiModuleMultiFile_1.ts, 5, 5))
    }
}
new multiM.d();
>multiM.d : Symbol(multiM.d, Decl(commentsMultiModuleMultiFile_1.ts, 2, 22))
>multiM : Symbol(multiM, Decl(commentsMultiModuleMultiFile_1.ts, 0, 53))
>d : Symbol(multiM.d, Decl(commentsMultiModuleMultiFile_1.ts, 2, 22))

=== tests/cases/compiler/commentsMultiModuleMultiFile_0.ts ===
/** this is multi declare module*/
export module multiM {
>multiM : Symbol(multiM, Decl(commentsMultiModuleMultiFile_0.ts, 0, 0), Decl(commentsMultiModuleMultiFile_0.ts, 5, 1))

    /// class b comment
    export class b {
>b : Symbol(b, Decl(commentsMultiModuleMultiFile_0.ts, 1, 22))
    }
}
/** thi is multi module 2*/
export module multiM {
>multiM : Symbol(multiM, Decl(commentsMultiModuleMultiFile_0.ts, 0, 0), Decl(commentsMultiModuleMultiFile_0.ts, 5, 1))

    /** class c comment*/
    export class c {
>c : Symbol(c, Decl(commentsMultiModuleMultiFile_0.ts, 7, 22))
    }

    // class e comment
    export class e {
>e : Symbol(e, Decl(commentsMultiModuleMultiFile_0.ts, 10, 5))
    }
}

new multiM.b();
>multiM.b : Symbol(multiM.b, Decl(commentsMultiModuleMultiFile_0.ts, 1, 22))
>multiM : Symbol(multiM, Decl(commentsMultiModuleMultiFile_0.ts, 0, 0), Decl(commentsMultiModuleMultiFile_0.ts, 5, 1))
>b : Symbol(multiM.b, Decl(commentsMultiModuleMultiFile_0.ts, 1, 22))

new multiM.c();
>multiM.c : Symbol(multiM.c, Decl(commentsMultiModuleMultiFile_0.ts, 7, 22))
>multiM : Symbol(multiM, Decl(commentsMultiModuleMultiFile_0.ts, 0, 0), Decl(commentsMultiModuleMultiFile_0.ts, 5, 1))
>c : Symbol(multiM.c, Decl(commentsMultiModuleMultiFile_0.ts, 7, 22))