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

15 lines
278 B
Plaintext

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