=== 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 }; } }