TypeScript/tests/baselines/reference/commentsMultiModuleMultiFile.types

63 lines
2.4 KiB
Text
Raw Normal View History

2014-08-28 01:58:31 +02:00
=== tests/cases/compiler/commentsMultiModuleMultiFile_1.ts ===
import m = require('commentsMultiModuleMultiFile_0');
2015-04-13 23:01:57 +02:00
>m : typeof m, Symbol(m, Decl(commentsMultiModuleMultiFile_1.ts, 0, 0))
2014-08-28 01:58:31 +02:00
/** this is multi module 3 comment*/
export module multiM {
2015-04-13 23:01:57 +02:00
>multiM : typeof multiM, Symbol(multiM, Decl(commentsMultiModuleMultiFile_1.ts, 0, 53))
2014-08-28 01:58:31 +02:00
/** class d comment*/
export class d {
2015-04-13 23:01:57 +02:00
>d : d, Symbol(d, Decl(commentsMultiModuleMultiFile_1.ts, 2, 22))
2014-08-28 01:58:31 +02:00
}
/// class f comment
export class f {
2015-04-13 23:01:57 +02:00
>f : f, Symbol(f, Decl(commentsMultiModuleMultiFile_1.ts, 5, 5))
2014-08-28 01:58:31 +02:00
}
}
new multiM.d();
>new multiM.d() : multiM.d
2015-04-13 23:01:57 +02:00
>multiM.d : typeof multiM.d, Symbol(multiM.d, Decl(commentsMultiModuleMultiFile_1.ts, 2, 22))
>multiM : typeof multiM, Symbol(multiM, Decl(commentsMultiModuleMultiFile_1.ts, 0, 53))
>d : typeof multiM.d, Symbol(multiM.d, Decl(commentsMultiModuleMultiFile_1.ts, 2, 22))
2014-08-28 01:58:31 +02:00
=== tests/cases/compiler/commentsMultiModuleMultiFile_0.ts ===
/** this is multi declare module*/
export module multiM {
2015-04-13 23:01:57 +02:00
>multiM : typeof multiM, Symbol(multiM, Decl(commentsMultiModuleMultiFile_0.ts, 0, 0), Decl(commentsMultiModuleMultiFile_0.ts, 6, 1))
2014-08-28 01:58:31 +02:00
/// class b comment
export class b {
2015-04-13 23:01:57 +02:00
>b : b, Symbol(b, Decl(commentsMultiModuleMultiFile_0.ts, 2, 22))
2014-08-28 01:58:31 +02:00
}
}
/** thi is multi module 2*/
export module multiM {
2015-04-13 23:01:57 +02:00
>multiM : typeof multiM, Symbol(multiM, Decl(commentsMultiModuleMultiFile_0.ts, 0, 0), Decl(commentsMultiModuleMultiFile_0.ts, 6, 1))
2014-08-28 01:58:31 +02:00
/** class c comment*/
export class c {
2015-04-13 23:01:57 +02:00
>c : c, Symbol(c, Decl(commentsMultiModuleMultiFile_0.ts, 8, 22))
2014-08-28 01:58:31 +02:00
}
// class e comment
export class e {
2015-04-13 23:01:57 +02:00
>e : e, Symbol(e, Decl(commentsMultiModuleMultiFile_0.ts, 11, 5))
2014-08-28 01:58:31 +02:00
}
}
new multiM.b();
>new multiM.b() : multiM.b
2015-04-13 23:01:57 +02:00
>multiM.b : typeof multiM.b, Symbol(multiM.b, Decl(commentsMultiModuleMultiFile_0.ts, 2, 22))
>multiM : typeof multiM, Symbol(multiM, Decl(commentsMultiModuleMultiFile_0.ts, 0, 0), Decl(commentsMultiModuleMultiFile_0.ts, 6, 1))
>b : typeof multiM.b, Symbol(multiM.b, Decl(commentsMultiModuleMultiFile_0.ts, 2, 22))
2014-08-28 01:58:31 +02:00
new multiM.c();
>new multiM.c() : multiM.c
2015-04-13 23:01:57 +02:00
>multiM.c : typeof multiM.c, Symbol(multiM.c, Decl(commentsMultiModuleMultiFile_0.ts, 8, 22))
>multiM : typeof multiM, Symbol(multiM, Decl(commentsMultiModuleMultiFile_0.ts, 0, 0), Decl(commentsMultiModuleMultiFile_0.ts, 6, 1))
>c : typeof multiM.c, Symbol(multiM.c, Decl(commentsMultiModuleMultiFile_0.ts, 8, 22))
2014-08-28 01:58:31 +02:00