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

15 lines
274 B
Plaintext

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