mirror of https://github.com/AMT-Cheif/drift.git
Fix scanner crashing when the last line contains a comment
This commit is contained in:
parent
7121bac866
commit
1bd856e9c5
|
@ -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());
|
||||
}
|
||||
|
||||
|
|
|
@ -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);
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue