TypeScript/tests/baselines/reference/assignmentCompatability8.types

49 lines
1.7 KiB
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/assignmentCompatability8.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 classWithPublic<T> { constructor(public one: T) {} } var x1 = new classWithPublic(1);;
>classWithPublic : classWithPublic<T>
>T : T
>one : T
>T : T
>x1 : classWithPublic<number>
2014-08-15 23:33:16 +02:00
>new classWithPublic(1) : classWithPublic<number>
>classWithPublic : typeof classWithPublic
2015-04-13 21:36:11 +02:00
>1 : number
2014-08-15 23:33:16 +02:00
export var __val__x1 = x1;
>__val__x1 : classWithPublic<number>
>x1 : classWithPublic<number>
2014-08-15 23:33:16 +02:00
}
__test2__.__val__x1 = __test1__.__val__obj4
2014-08-25 19:36:12 +02:00
>__test2__.__val__x1 = __test1__.__val__obj4 : __test1__.interfaceWithPublicAndOptional<number, string>
>__test2__.__val__x1 : __test2__.classWithPublic<number>
>__test2__ : typeof __test2__
>__val__x1 : __test2__.classWithPublic<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