TypeScript/tests/baselines/reference/ambientModuleWithClassDeclarationWithExtends.types

12 lines
487 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/ambientModuleWithClassDeclarationWithExtends.ts ===
declare module foo {
2015-04-13 23:01:57 +02:00
>foo : typeof foo, Symbol(foo, Decl(ambientModuleWithClassDeclarationWithExtends.ts, 0, 0))
2014-08-15 23:33:16 +02:00
class A { }
2015-04-13 23:01:57 +02:00
>A : A, Symbol(A, Decl(ambientModuleWithClassDeclarationWithExtends.ts, 0, 20))
2014-08-15 23:33:16 +02:00
class B extends A { }
2015-04-13 23:01:57 +02:00
>B : B, Symbol(B, Decl(ambientModuleWithClassDeclarationWithExtends.ts, 1, 15))
>A : A, Symbol(A, Decl(ambientModuleWithClassDeclarationWithExtends.ts, 0, 20))
2014-08-15 23:33:16 +02:00
}