10 lines
99 B
JavaScript

class Example {
async test1(){
await Promise.resolve(2);
}
*test2(){
yield 3;
}
}