TypeScript/tests/baselines/reference/assignmentCompatability9.types

48 lines
1.7 KiB
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/assignmentCompatability9.ts ===
module __test1__ {
>__test1__ : typeof __test1__
2014-08-15 23:33:16 +02:00
export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };;
>interfaceWithPublicAndOptional : interfaceWithPublicAndOptional<T, U>
>T : T
>U : U
>one : T
>T : T
>two : U
>U : U
>obj4 : interfaceWithPublicAndOptional<number, string>
>interfaceWithPublicAndOptional : interfaceWithPublicAndOptional<T, U>
2015-01-24 17:04:23 +01:00
>{ one: 1 } : { one: number; }
>one : number
2015-04-13 21:36:11 +02:00
>1 : number
2014-08-15 23:33:16 +02:00
export var __val__obj4 = obj4;
>__val__obj4 : interfaceWithPublicAndOptional<number, string>
>obj4 : interfaceWithPublicAndOptional<number, string>
2014-08-15 23:33:16 +02:00
}
module __test2__ {
>__test2__ : typeof __test2__
2014-08-15 23:33:16 +02:00
export class classWithOptional<T> { constructor(public one?: T) {} } var x3 = new classWithOptional<number>();;
>classWithOptional : classWithOptional<T>
>T : T
>one : T
>T : T
>x3 : classWithOptional<number>
2014-08-15 23:33:16 +02:00
>new classWithOptional<number>() : classWithOptional<number>
>classWithOptional : typeof classWithOptional
2014-08-15 23:33:16 +02:00
export var __val__x3 = x3;
>__val__x3 : classWithOptional<number>
>x3 : classWithOptional<number>
2014-08-15 23:33:16 +02:00
}
__test2__.__val__x3 = __test1__.__val__obj4
2014-08-25 19:36:12 +02:00
>__test2__.__val__x3 = __test1__.__val__obj4 : __test1__.interfaceWithPublicAndOptional<number, string>
>__test2__.__val__x3 : __test2__.classWithOptional<number>
>__test2__ : typeof __test2__
>__val__x3 : __test2__.classWithOptional<number>
>__test1__.__val__obj4 : __test1__.interfaceWithPublicAndOptional<number, string>
>__test1__ : typeof __test1__
>__val__obj4 : __test1__.interfaceWithPublicAndOptional<number, string>
2014-08-15 23:33:16 +02:00