TypeScript/tests/baselines/reference/computedPropertyNames24_ES6.js

24 lines
535 B
TypeScript
Raw Normal View History

//// [computedPropertyNames24_ES6.ts]
class Base {
bar() {
return 0;
}
}
class C extends Base {
// Gets emitted as super, not _super, which is consistent with
// use of super in static properties initializers.
[super.bar()]() { }
}
//// [computedPropertyNames24_ES6.js]
2015-03-16 00:29:41 +01:00
class Base {
bar() {
return 0;
}
2015-03-16 00:29:41 +01:00
}
class C extends Base {
// Gets emitted as super, not _super, which is consistent with
// use of super in static properties initializers.
[super.bar()]() { }
2015-03-16 00:29:41 +01:00
}