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
I have a little optimizer that removes one-off variables, but it struggles with this piece since the compiler re-uses and re-declares the variables. You can disable it using -D sf_no_opt_auto_var
Me again but with a real bug
var _cells = [];
Declared after first usingvar __g = [];
Declared two timesLooks like order of declare variables inverted.
The text was updated successfully, but these errors were encountered: