TypeScript/tests/baselines/reference/computedPropertyNamesDeclarationEmit2_ES5.types
2015-02-04 15:33:53 -08:00

15 lines
299 B
Plaintext

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