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

22 lines
375 B
Plaintext

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