mirror of
https://github.com/danog/dart-sass.git
synced 2024-11-27 04:34:59 +01:00
Fix a parser bug.
This commit is contained in:
parent
d2a42d61ef
commit
3e61f962ac
@ -279,7 +279,7 @@ class Parser {
|
||||
while (true) {
|
||||
var spaceExpressions = <Expression>[];
|
||||
while (true) {
|
||||
if (!_isExpressionStart(_scanner.peekChar())) break;
|
||||
if (_scanner.isDone || !_isExpressionStart(_scanner.peekChar())) break;
|
||||
spaceExpressions.add(_singleExpression());
|
||||
_ignoreComments();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user