swc/crates/swc_ecma_parser/tests/tsc/jsDeclarationsPrivateFields01.ts
2022-02-04 17:08:38 +09:00

27 lines
446 B
TypeScript

// @target: esnext
// @allowJS: true
// @declaration: true
// @emitDeclarationOnly: true
// @filename: file.js
export class C {
#hello = "hello";
#world = 100;
#calcHello() {
return this.#hello;
}
get #screamingHello() {
return this.#hello.toUpperCase();
}
/** @param value {string} */
set #screamingHello(value) {
throw "NO";
}
getWorld() {
return this.#world;
}
}