TypeScript/tests/baselines/reference/computedPropertyNames28_ES5.types
2015-02-04 15:33:53 -08:00

27 lines
493 B
Plaintext

=== tests/cases/conformance/es6/computedProperties/computedPropertyNames28_ES5.ts ===
class Base {
>Base : Base
}
class C extends Base {
>C : C
>Base : Base
constructor() {
super();
>super() : void
>super : typeof Base
var obj = {
>obj : {}
>{ [(super(), "prop")]() { } } : {}
[(super(), "prop")]() { }
>(super(), "prop") : string
>super(), "prop" : string
>super() : void
>super : typeof Base
};
}
}