2018-01-09 15:36:42 +01:00

10 lines
99 B
JavaScript

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