mirror of
https://github.com/kemko/liquid.git
synced 2026-01-06 10:15:40 +03:00
Remove a couple FIXME comments which are only partially a lie.
I added those comments before creating an invalid token type to return the error. However, we still aren't making use of the token type.
This commit is contained in:
@@ -65,7 +65,6 @@ void liquid_tokenizer_next(struct liquid_tokenizer *tokenizer, struct token *tok
|
||||
token->type = TOKEN_TAG;
|
||||
goto found;
|
||||
}
|
||||
// FIXME: Handle syntax error for strict mode
|
||||
cursor = incomplete_end;
|
||||
goto found;
|
||||
} else {
|
||||
@@ -79,7 +78,6 @@ void liquid_tokenizer_next(struct liquid_tokenizer *tokenizer, struct token *tok
|
||||
token->type = TOKEN_VARIABLE;
|
||||
goto found;
|
||||
}
|
||||
// FIXME: Handle syntax error for strict mode
|
||||
cursor = incomplete_end;
|
||||
goto found;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user