* Fix printing of async arrow function with a single param and comments * Add OVERWRITE support to generator tests
6 lines
127 B
JavaScript
6 lines
127 B
JavaScript
async (/** @type {any} */ arg) => {};
|
|
|
|
async (arg /* trailing */) => {};
|
|
|
|
async (/** @type {any} */ arg /* trailing */) => {};
|