Schala - fix bug with comments

This commit is contained in:
greg 2017-02-03 11:21:52 -08:00
parent 6e28ae68a0
commit 34dba9cc4d
1 changed files with 1 additions and 0 deletions

View File

@ -57,6 +57,7 @@ pub fn tokenize(input: &str) -> TokenizeResult {
break;
}
}
continue;
}
let cur_tok = match c {
c if char::is_whitespace(c) && c != '\n' => continue,