TypeScript/tests/baselines/reference/computedPropertyNamesDeclarationEmit2_ES6.types
2015-04-15 16:44:20 -07:00

21 lines
396 B
Text

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