sloisel / numeric

Numerical analysis in Javascript
http://www.numericjs.com/
Other
1.42k stars 176 forks source link

Fix unreachable code warnings in Firefox 40. #66

Open jwmerrill opened 9 years ago

jwmerrill commented 9 years ago

This warning was being logged to the console whenever there was a doubled semicolon after a return statement, because there is an unreachable (empty) statement between the semicolons.

Regularize the usage of semicolons in generated code to avoid producing these warnings.

Fixes #65.