TypeScript/tests/baselines/reference/computedPropertyNamesDeclarationEmit2.types
2015-01-20 18:29:04 -08:00

15 lines
295 B
Plaintext

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