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 37 38 39 40
|
=== tests/cases/compiler/protoAsIndexInIndexExpression_1.ts ===
///<reference path='protoAsIndexInIndexExpression_0.ts'/>
var EntityPrototype = undefined;
>EntityPrototype : any
>undefined : undefined
var WorkspacePrototype = {
>WorkspacePrototype : { serialize: () => any; }
>{ serialize: function (): any { }} : { serialize: () => any; }
serialize: function (): any {
>serialize : () => any
>function (): any { } : () => any
}
};
WorkspacePrototype['__proto__'] = EntityPrototype;
>WorkspacePrototype['__proto__'] = EntityPrototype : any
>WorkspacePrototype['__proto__'] : any
>WorkspacePrototype : { serialize: () => any; }
>'__proto__' : "___proto__"
>EntityPrototype : any
var o = {
>o : { "__proto__": number; }
>{ "__proto__": 0} : { "__proto__": number; }
"__proto__": 0
>0 : 0
};
class C {
>C : C
"__proto__" = 0;
>0 : 0
}
=== tests/cases/compiler/protoAsIndexInIndexExpression_0.ts ===
export var x;
>x : any
|