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

19 lines
422 B
Plaintext

=== tests/cases/conformance/es6/computedProperties/computedPropertyNamesDeclarationEmit5.ts ===
var v = {
>v : {}
>{ ["" + ""]: 0, ["" + ""]() { }, get ["" + ""]() { return 0; }, set ["" + ""](x) { }} : {}
["" + ""]: 0,
>"" + "" : string
["" + ""]() { },
>"" + "" : string
get ["" + ""]() { return 0; },
>"" + "" : string
set ["" + ""](x) { }
>"" + "" : string
>x : any
}