TypeScript/tests/baselines/reference/externalModuleQualification.types

31 lines
652 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/externalModuleQualification.ts ===
export var ID = "test";
>ID : string
2015-04-13 21:36:11 +02:00
>"test" : string
2014-08-15 23:33:16 +02:00
export class DiffEditor<A, B, C> {
>DiffEditor : DiffEditor<A, B, C>
>A : A
>B : B
>C : C
2014-08-15 23:33:16 +02:00
private previousDiffAction: NavigateAction;
>previousDiffAction : NavigateAction
>NavigateAction : NavigateAction
2014-08-15 23:33:16 +02:00
constructor(id: string = ID) {
>id : string
>ID : string
2014-08-15 23:33:16 +02:00
}
}
class NavigateAction {
>NavigateAction : NavigateAction
2014-08-15 23:33:16 +02:00
f(editor: DiffEditor<any, any, any>) {
>f : (editor: DiffEditor<any, any, any>) => void
>editor : DiffEditor<any, any, any>
>DiffEditor : DiffEditor<A, B, C>
2014-08-15 23:33:16 +02:00
}
}