Brendan Eich (2014-01-11T01:33:56.000Z)
Kevin Smith wrote:
>
>     We should adapt Crock's recommended paren style to arrow IIFEs, to
>     whit (()=>{...whatever...}()), even though this looses a bit more
>     brevity.
>
>
> I believe this is required by the grammar anyway.

No, what is required is

   (() => {...whatever...})()

Arrow function expressions are an AssignmentExpression.

/be
domenic at domenicdenicola.com (2014-01-14T17:50:28.648Z)
Kevin Smith wrote:

> I believe this is required by the grammar anyway.

No, what is required is

```js
(() => {...whatever...})()
```

Arrow function expressions are an AssignmentExpression.