TypeScript/tests/baselines/reference/computedPropertyNamesDeclarationEmit2_ES6.types

15 lines
299 B
Plaintext

=== tests/cases/conformance/es6/computedProperties/computedPropertyNamesDeclarationEmit2_ES6.ts ===
class C {
>C : C
static ["" + ""]() { }
>"" + "" : string
static get ["" + ""]() { return 0; }
>"" + "" : string
static set ["" + ""](x) { }
>"" + "" : string
>x : any
}