TypeScript/tests/baselines/reference/protoInIndexer.types

14 lines
264 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/protoInIndexer.ts ===
class X {
>X : X
2014-08-15 23:33:16 +02:00
constructor() {
this['__proto__'] = null; // used to cause ICE
>this['__proto__'] = null : null
>this['__proto__'] : any
>this : X
2015-04-13 21:36:11 +02:00
>'__proto__' : string
>null : null
2014-08-15 23:33:16 +02:00
}
}