mirror of
https://github.com/danog/dart-sass.git
synced 2024-11-27 04:34:59 +01:00
parent
a6164217df
commit
b3c9e7b00f
@ -1,5 +1,8 @@
|
||||
## 1.14.1
|
||||
|
||||
* Properly parse property declarations that are both *in* content blocks and
|
||||
written *after* content blocks.
|
||||
|
||||
### Command-Line Interface
|
||||
|
||||
* Print more readable paths in `--watch` mode.
|
||||
|
@ -896,9 +896,10 @@ abstract class StylesheetParser extends Parser {
|
||||
|
||||
List<Statement> children;
|
||||
if (lookingAtChildren()) {
|
||||
var wasInContentBlock = _inContentBlock;
|
||||
_inContentBlock = true;
|
||||
children = this.children(_statement);
|
||||
_inContentBlock = false;
|
||||
_inContentBlock = wasInContentBlock;
|
||||
} else {
|
||||
expectStatementSeparator();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user