1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
=== tests/cases/conformance/types/members/objectTypeWithConstructSignatureHidingMembersOfFunctionAssignmentCompat.ts ===
interface I {
>I : Symbol(I, Decl(objectTypeWithConstructSignatureHidingMembersOfFunctionAssignmentCompat.ts, 0, 0))
new(): any;
}
var i: I;
>i : Symbol(i, Decl(objectTypeWithConstructSignatureHidingMembersOfFunctionAssignmentCompat.ts, 4, 3))
>I : Symbol(I, Decl(objectTypeWithConstructSignatureHidingMembersOfFunctionAssignmentCompat.ts, 0, 0))
var f: Object;
>f : Symbol(f, Decl(objectTypeWithConstructSignatureHidingMembersOfFunctionAssignmentCompat.ts, 5, 3))
>Object : Symbol(Object, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
f = i;
>f : Symbol(f, Decl(objectTypeWithConstructSignatureHidingMembersOfFunctionAssignmentCompat.ts, 5, 3))
>i : Symbol(i, Decl(objectTypeWithConstructSignatureHidingMembersOfFunctionAssignmentCompat.ts, 4, 3))
i = f;
>i : Symbol(i, Decl(objectTypeWithConstructSignatureHidingMembersOfFunctionAssignmentCompat.ts, 4, 3))
>f : Symbol(f, Decl(objectTypeWithConstructSignatureHidingMembersOfFunctionAssignmentCompat.ts, 5, 3))
var a: {
>a : Symbol(a, Decl(objectTypeWithConstructSignatureHidingMembersOfFunctionAssignmentCompat.ts, 9, 3))
new(): any
}
f = a;
>f : Symbol(f, Decl(objectTypeWithConstructSignatureHidingMembersOfFunctionAssignmentCompat.ts, 5, 3))
>a : Symbol(a, Decl(objectTypeWithConstructSignatureHidingMembersOfFunctionAssignmentCompat.ts, 9, 3))
a = f;
>a : Symbol(a, Decl(objectTypeWithConstructSignatureHidingMembersOfFunctionAssignmentCompat.ts, 9, 3))
>f : Symbol(f, Decl(objectTypeWithConstructSignatureHidingMembersOfFunctionAssignmentCompat.ts, 5, 3))
|