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:
Dylan Thacker-Smith
2014-02-27 15:21:57 -05:00
parent ea8406e36e
commit 8c075fca1f

View File

@@ -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;
}