TypeScript/tests/baselines/reference/protoAsIndexInIndexExpression.types
2014-08-15 14:37:48 -07:00

43 lines
909 B
Plaintext

=== 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; }
>EntityPrototype : any
var o = {
>o : {}
>{
"__proto__": 0
} : {}
"__proto__": 0
};
class C {
>C : C
"__proto__" = 0;
}
=== tests/cases/compiler/protoAsIndexInIndexExpression_0.ts ===
export var x;
>x : any