You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The inferred arity of raw JS code is actively used with `%ffi`, but it can produce unexpected results with `%raw`:
```
let foo: int => int = %raw(`function add(x, y=5){ return x + y }`)
Console.log(foo(2))
```
0 commit comments