Browse Source

missing semicolon

pull/18/head
nisstyre56 10 years ago
parent
commit
88c1884112
  1. 2
      tokenize.js

2
tokenize.js

@ -310,7 +310,7 @@ function tokenize(tokstream, matchop) {
if (deftype) {
tokens.push(["deftype", "deftype", charnum, linenum]);
tokstream = tokstream.substr(7);
break
break;
}
var def = peek(tokstream, "def", "def");
if (def) {

Loading…
Cancel
Save