TypeScript/tests/baselines/reference/classExtendingQualifiedName2.types

16 lines
549 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/classExtendingQualifiedName2.ts ===
module M {
2015-04-13 23:01:57 +02:00
>M : typeof M, Symbol(M, Decl(classExtendingQualifiedName2.ts, 0, 0))
2014-08-15 23:33:16 +02:00
export class C {
2015-04-13 23:01:57 +02:00
>C : C, Symbol(C, Decl(classExtendingQualifiedName2.ts, 0, 10))
2014-08-15 23:33:16 +02:00
}
class D extends M.C {
2015-04-13 23:01:57 +02:00
>D : D, Symbol(D, Decl(classExtendingQualifiedName2.ts, 2, 5))
>M.C : any, Symbol(C, Decl(classExtendingQualifiedName2.ts, 0, 10))
>M : typeof M, Symbol(M, Decl(classExtendingQualifiedName2.ts, 0, 0))
>C : C, Symbol(C, Decl(classExtendingQualifiedName2.ts, 0, 10))
2014-08-15 23:33:16 +02:00
}
}