~~ functionExpression.spaceBeforeParentheses: true ~~
== should format with a space before the parens ==
const t = function(p, u) {};
const u = function<T>(p, u) {};
const v = function test<T>(p, u) {};
const w = function test<T>(
    p, u) {
};
const x = function*() {};
const y = function ident() {};

[expect]
const t = function (p, u) {};
const u = function<T> (p, u) {};
const v = function test<T> (p, u) {};
const w = function test<T> (
    p,
    u,
) {
};
const x = function* () {};
const y = function ident () {};
