TypeScript/tests/baselines/reference/assignmentCompatability1.types

43 lines
1.3 KiB
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/assignmentCompatability1.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 var aa = {};;
>aa : {}
2014-08-15 23:33:16 +02:00
>{} : {}
export var __val__aa = aa;
>__val__aa : {}
>aa : {}
2014-08-15 23:33:16 +02:00
}
__test2__.__val__aa = __test1__.__val__obj4
2014-08-25 19:36:12 +02:00
>__test2__.__val__aa = __test1__.__val__obj4 : __test1__.interfaceWithPublicAndOptional<number, string>
>__test2__.__val__aa : {}
>__test2__ : typeof __test2__
>__val__aa : {}
>__test1__.__val__obj4 : __test1__.interfaceWithPublicAndOptional<number, string>
>__test1__ : typeof __test1__
>__val__obj4 : __test1__.interfaceWithPublicAndOptional<number, string>
2014-08-15 23:33:16 +02:00