TypeScript/tests/baselines/reference/externalModuleQualification.types
2014-08-18 19:56:03 -07:00

30 lines
634 B
Plaintext

=== tests/cases/compiler/externalModuleQualification.ts ===
export var ID = "test";
>ID : string
export class DiffEditor<A, B, C> {
>DiffEditor : DiffEditor<A, B, C>
>A : A
>B : B
>C : C
private previousDiffAction: NavigateAction;
>previousDiffAction : NavigateAction
>NavigateAction : NavigateAction
constructor(id: string = ID) {
>id : string
>ID : string
}
}
class NavigateAction {
>NavigateAction : NavigateAction
f(editor: DiffEditor<any, any, any>) {
>f : (editor: DiffEditor<any, any, any>) => void
>editor : DiffEditor<any, any, any>
>DiffEditor : DiffEditor<A, B, C>
}
}