Fix scanner crashing when the last line contains a comment

This commit is contained in:
Simon Binder 2019-09-18 20:53:49 +02:00
parent 7121bac866
commit 1bd856e9c5
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
2 changed files with 10 additions and 1 deletions

View File

@ -391,7 +391,7 @@ class Scanner {
/// Scans a line comment after the -- has already been read.
void _lineComment() {
final contentBuilder = StringBuffer();
while (_peek() != '\n' && !_isAtEnd) {
while (!_isAtEnd && _peek() != '\n') {
contentBuilder.write(_nextChar());
}

View File

@ -32,4 +32,13 @@ void main() {
' not terminated',
]);
});
test('supports -- comments on last line', () {
const sql = '-- not much to see';
final tokens = Scanner(sql).scanTokens();
expect(tokens, hasLength(2));
expect((tokens[0] as CommentToken).content, ' not much to see');
expect(tokens[1].type, TokenType.eof);
});
}