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

10 lines
348 B
Plaintext

=== tests/cases/conformance/es6/computedProperties/computedPropertyNamesDeclarationEmit1_ES6.ts ===
class C {
>C : Symbol(C, Decl(computedPropertyNamesDeclarationEmit1_ES6.ts, 0, 0))
["" + ""]() { }
get ["" + ""]() { return 0; }
set ["" + ""](x) { }
>x : Symbol(x, Decl(computedPropertyNamesDeclarationEmit1_ES6.ts, 3, 18))
}