TypeScript/tests/baselines/reference/computedPropertyNames28_ES6.types
2015-04-15 16:44:20 -07:00

28 lines
511 B
Plaintext

=== tests/cases/conformance/es6/computedProperties/computedPropertyNames28_ES6.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
>"prop" : string
};
}
}