Skip to content

Commit

Permalink
Whitespace in destructuring each
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesnw committed Dec 30, 2024
1 parent 8ad5805 commit ce9522b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/src/parse/stylesheet.dart
Original file line number Diff line number Diff line change
Expand Up @@ -819,11 +819,11 @@ abstract class StylesheetParser extends Parser {
_inControlDirective = true;

var variables = [variableName()];
whitespace(allowNewlines: false);
whitespace(allowNewlines: true);
while (scanner.scanChar($comma)) {
whitespace(allowNewlines: false);
whitespace(allowNewlines: true);
variables.add(variableName());
whitespace(allowNewlines: false);
whitespace(allowNewlines: true);
}
whitespace(allowNewlines: true);
expectIdentifier("in");
Expand Down

0 comments on commit ce9522b

Please sign in to comment.