Make parser assert it's at end after finishing

This commit is contained in:
Simon Binder 2019-07-02 22:21:20 +02:00
parent c5d46adcb5
commit 1654193af4
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
2 changed files with 4 additions and 1 deletions

View File

@ -113,6 +113,9 @@ class Parser {
final stmt = select() ?? _deleteStmt() ?? _update();
_matchOne(TokenType.semicolon);
if (!_isAtEnd) {
_error('Expected the statement to finish here');
}
return stmt;
}

View File

@ -110,7 +110,7 @@ const Map<String, TokenType> keywords = {
'DELETE': TokenType.delete,
'FROM': TokenType.from,
'NATURAL': TokenType.natural,
'LEFT': TokenType.leftParen,
'LEFT': TokenType.left,
'OUTER': TokenType.outer,
'INNER': TokenType.inner,
'CROSS': TokenType.cross,