TypeScript/tests/baselines/reference/dottedNamesInSystem.types
2016-01-31 12:10:33 -08:00

24 lines
412 B
Plaintext

=== tests/cases/compiler/dottedNamesInSystem.ts ===
export namespace A.B.C {
>A : typeof A
>B : typeof B
>C : typeof C
export function foo() {}
>foo : () => void
}
export function bar() {
>bar : () => void
return A.B.C.foo();
>A.B.C.foo() : void
>A.B.C.foo : () => void
>A.B.C : typeof A.B.C
>A.B : typeof A.B
>A : typeof A
>B : typeof A.B
>C : typeof A.B.C
>foo : () => void
}