mirror of
https://github.com/danog/dart-sass.git
synced 2024-11-27 04:34:59 +01:00
parent
26ca01cb92
commit
2e42c749a0
@ -3,6 +3,9 @@
|
||||
* The command-line executable will now create the directory for the resulting
|
||||
CSS if that directory doesn't exist.
|
||||
|
||||
* Properly parse `#{$var} -#{$var}` as two separate values in a list rather than
|
||||
one value being subtracted from another.
|
||||
|
||||
## 1.1.1
|
||||
|
||||
* Add a commit that was accidentally left out of 1.1.0.
|
||||
|
@ -1338,7 +1338,7 @@ abstract class StylesheetParser extends Parser {
|
||||
(singleExpression == null ||
|
||||
isWhitespace(scanner.peekChar(-1)))) {
|
||||
addSingleExpression(_number(), number: true);
|
||||
} else if (lookingAtIdentifier()) {
|
||||
} else if (_lookingAtInterpolatedIdentifier()) {
|
||||
addSingleExpression(_identifierLike());
|
||||
} else if (singleExpression == null) {
|
||||
addSingleExpression(_unaryOperation());
|
||||
|
Loading…
Reference in New Issue
Block a user