TypeScript/tests/baselines/reference/computedPropertyNames28_ES6.types

28 lines
856 B
Plaintext
Raw Normal View History

=== tests/cases/conformance/es6/computedProperties/computedPropertyNames28_ES6.ts ===
class Base {
2015-04-13 23:01:57 +02:00
>Base : Base, Symbol(Base, Decl(computedPropertyNames28_ES6.ts, 0, 0))
}
class C extends Base {
2015-04-13 23:01:57 +02:00
>C : C, Symbol(C, Decl(computedPropertyNames28_ES6.ts, 1, 1))
>Base : Base, Symbol(Base, Decl(computedPropertyNames28_ES6.ts, 0, 0))
constructor() {
super();
>super() : void
2015-04-13 23:01:57 +02:00
>super : typeof Base, Symbol(Base, Decl(computedPropertyNames28_ES6.ts, 0, 0))
var obj = {
2015-04-13 23:01:57 +02:00
>obj : {}, Symbol(obj, Decl(computedPropertyNames28_ES6.ts, 5, 11))
>{ [(super(), "prop")]() { } } : {}
[(super(), "prop")]() { }
>(super(), "prop") : string
>super(), "prop" : string
>super() : void
2015-04-13 23:01:57 +02:00
>super : typeof Base, Symbol(Base, Decl(computedPropertyNames28_ES6.ts, 0, 0))
2015-04-13 21:36:11 +02:00
>"prop" : string
};
}
}