1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
//// [privateNamesAndMethods.ts]
class A {
#foo(a: number) {}
async #bar(a: number) {}
async *#baz(a: number) {
return 3;
}
#_quux: number;
get #quux (): number {
return this.#_quux;
}
set #quux (val: number) {
this.#_quux = val;
}
constructor () {
this.#foo(30);
this.#bar(30);
this.#baz(30);
this.#quux = this.#quux + 1;
this.#quux++;
}
}
class B extends A {
#foo(a: string) {}
constructor () {
super();
this.#foo("str");
}
}
//// [privateNamesAndMethods.js]
class A {
#foo(a) { }
async #bar(a) { }
async *#baz(a) {
return 3;
}
#_quux;
get #quux() {
return this.#_quux;
}
set #quux(val) {
this.#_quux = val;
}
constructor() {
this.#foo(30);
this.#bar(30);
this.#baz(30);
this.#quux = this.#quux + 1;
this.#quux++;
}
}
class B extends A {
#foo(a) { }
constructor() {
super();
this.#foo("str");
}
}
|