TypeScript/tests/baselines/reference/declFileTypeofInAnonymousType.types
2015-04-15 16:44:20 -07:00

84 lines
1.6 KiB
Plaintext

=== tests/cases/compiler/declFileTypeofInAnonymousType.ts ===
module m1 {
>m1 : typeof m1
export class c {
>c : c
}
export enum e {
>e : e
weekday,
>weekday : e
weekend,
>weekend : e
holiday
>holiday : e
}
}
var a: { c: m1.c; };
>a : { c: m1.c; }
>c : m1.c
>m1 : any
>c : m1.c
var b = {
>b : { c: typeof m1.c; m1: typeof m1; }
>{ c: m1.c, m1: m1} : { c: typeof m1.c; m1: typeof m1; }
c: m1.c,
>c : typeof m1.c
>m1.c : typeof m1.c
>m1 : typeof m1
>c : typeof m1.c
m1: m1
>m1 : typeof m1
>m1 : typeof m1
};
var c = { m1: m1 };
>c : { m1: typeof m1; }
>{ m1: m1 } : { m1: typeof m1; }
>m1 : typeof m1
>m1 : typeof m1
var d = {
>d : { m: { mod: typeof m1; }; mc: { cl: typeof m1.c; }; me: { en: typeof m1.e; }; mh: m1.e; }
>{ m: { mod: m1 }, mc: { cl: m1.c }, me: { en: m1.e }, mh: m1.e.holiday} : { m: { mod: typeof m1; }; mc: { cl: typeof m1.c; }; me: { en: typeof m1.e; }; mh: m1.e; }
m: { mod: m1 },
>m : { mod: typeof m1; }
>{ mod: m1 } : { mod: typeof m1; }
>mod : typeof m1
>m1 : typeof m1
mc: { cl: m1.c },
>mc : { cl: typeof m1.c; }
>{ cl: m1.c } : { cl: typeof m1.c; }
>cl : typeof m1.c
>m1.c : typeof m1.c
>m1 : typeof m1
>c : typeof m1.c
me: { en: m1.e },
>me : { en: typeof m1.e; }
>{ en: m1.e } : { en: typeof m1.e; }
>en : typeof m1.e
>m1.e : typeof m1.e
>m1 : typeof m1
>e : typeof m1.e
mh: m1.e.holiday
>mh : m1.e
>m1.e.holiday : m1.e
>m1.e : typeof m1.e
>m1 : typeof m1
>e : typeof m1.e
>holiday : m1.e
};