I just noticed that the closing parens in the following line is marked as `jsParensError`: ``` f(() => {}); ^ ``` The same applies in this case: ``` f(() => { }); ^ ``` This also exhibits the problem: ``` f((x) => {}); ^ ``` Interestingly, this does not: ``` f(x => {}); ``` When I have a bit more time I will run `git bisect` to determine which change is responsible.