Fix whitespace after "...".

This commit is contained in:
Natalie Weizenbaum 2017-01-08 23:28:08 -08:00
parent 6453a0e477
commit c507afe46e
2 changed files with 3 additions and 0 deletions

View File

@ -9,6 +9,8 @@
* Disallow invalid function names.
* Properly parse whitespace after `...` in argument declaration lists.
* Support terse mixin syntax in the indented syntax.
* Fix `@at-root` query parsing.

View File

@ -956,6 +956,7 @@ abstract class StylesheetParser extends Parser {
} else if (scanner.scanChar($dot)) {
scanner.expectChar($dot);
scanner.expectChar($dot);
whitespace();
restArgument = name;
break;
}