TypeScript/tests/baselines/reference/computedPropertyNamesDeclarationEmit1_ES6.symbols

10 lines
348 B
Plaintext
Raw Normal View History

=== 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))
}