* test: add test fixtures * refactor: track AWAIT and YIELD in separate handler * fix flow errors * add flow type annotation to production-parameter * address review comments * refactor: track [Return] parameter
4 lines
47 B
JavaScript
4 lines
47 B
JavaScript
class C {
|
|
p = function* () { yield + 42 };
|
|
}
|