* 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
11 lines
82 B
JavaScript
11 lines
82 B
JavaScript
var fn = async (
|
|
arg) =>
|
|
{};
|
|
|
|
async (x) =>
|
|
{};
|
|
|
|
async (x) => {};
|
|
|
|
async (x) =>
|
|
{}; |