Browse Source

Fix tokenization

gingerBill 5 years ago
parent
commit
1f31d573e4
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/tokenizer.cpp

+ 1 - 0
src/tokenizer.cpp

@@ -1064,6 +1064,7 @@ void tokenizer_get_token(Tokenizer *t, Token *token) {
 		case '%':
 		case '%':
 			token->kind = Token_Mod;
 			token->kind = Token_Mod;
 			if (t->curr_rune == '=') {
 			if (t->curr_rune == '=') {
+				advance_to_next_rune(t);
 				token->kind = Token_ModEq;
 				token->kind = Token_ModEq;
 			} else if (t->curr_rune == '%') {
 			} else if (t->curr_rune == '%') {
 				token->kind = Token_ModMod;
 				token->kind = Token_ModMod;