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
These are unfortunately not very easy to debug, because the line and column numbers appear to refer to generated code rather than the actual source of numeric.
The text was updated successfully, but these errors were encountered:
Automatic Semicolon Insertion
The return statement is affected by automatic semicolon insertion (ASI). No line terminator is allowed between the return keyword and the expression.
returna+b;
is transformed by ASI into:
return;a+b;
Starting with Gecko 40 the console will warn "unreachable code after return statement".
Firefox 40 is currently the alpha/aurora/developer edition release. Loading numeric prints many warnings to the console of the form
Here's a jsbin that does nothing but include Numeric—you can open it in firefox 40 and check the console.
http://output.jsbin.com/qubolo
These are unfortunately not very easy to debug, because the line and column numbers appear to refer to generated code rather than the actual source of numeric.
The text was updated successfully, but these errors were encountered: