Browse Source

reverted bug

pull/1/head
Wesley Kerfoot 12 years ago
parent
commit
3103f2168c
  1. 1
      tokenize.js

1
tokenize.js

@ -32,6 +32,7 @@ function tokenizeNum(tokstream, charnum, linenum) {
var isFloat = false; var isFloat = false;
var n = 0; var n = 0;
// + - // + -
// might want to remove this since it probably won't ever get run?
if (code === 43 || code === 45) { // + or - if (code === 43 || code === 45) { // + or -
number.push(tokstream[0]); number.push(tokstream[0]);
tokstream = tokstream.substr(1); tokstream = tokstream.substr(1);

Loading…
Cancel
Save