mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 02:29:04 +03:00
16 lines
379 B
TypeScript
16 lines
379 B
TypeScript
// @target: es2019
|
|
|
|
const C = class {
|
|
async #bar() { return await Promise.resolve(42); }
|
|
async foo() {
|
|
const b = await this.#bar();
|
|
return b + (this.#baz().next().value || 0) + ((await this.#qux().next()).value || 0);
|
|
}
|
|
*#baz() { yield 42; }
|
|
async *#qux() {
|
|
yield (await Promise.resolve(42));
|
|
}
|
|
}
|
|
|
|
new C().foo().then(console.log);
|