mirror of
https://github.com/danog/dart-sass.git
synced 2024-11-27 04:34:59 +01:00
Fix whitespace after "...".
This commit is contained in:
parent
6453a0e477
commit
c507afe46e
@ -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.
|
||||
|
@ -956,6 +956,7 @@ abstract class StylesheetParser extends Parser {
|
||||
} else if (scanner.scanChar($dot)) {
|
||||
scanner.expectChar($dot);
|
||||
scanner.expectChar($dot);
|
||||
whitespace();
|
||||
restArgument = name;
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user