* Simplify the special-case printing of single-param arrow functions * Update test fixtures with single-param arrow functions * Add some explicit snapshot tests for known edge-cases
8 lines
100 B
JavaScript
8 lines
100 B
JavaScript
const x = async ( // some comment
|
|
a) => {
|
|
return foo(await a);
|
|
};
|
|
|
|
function foo(a) {
|
|
return a;
|
|
} |