Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 1.94.3-dev
## 1.94.3

* Fix the span reported for standalone `%` expressions followed by whitespace.

Expand Down
8 changes: 7 additions & 1 deletion lib/src/visitor/recursive_ast.dart
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,12 @@ mixin RecursiveAstVisitor on RecursiveStatementVisitor
}
}

void visitCompoundSelector(InterpolatedCompoundSelector node) {
for (var simple in node.components) {
simple.accept(this);
}
}

void visitIDSelector(InterpolatedIDSelector node) {
visitInterpolation(node.name);
}
Expand Down Expand Up @@ -256,7 +262,7 @@ mixin RecursiveAstVisitor on RecursiveStatementVisitor
visitQualifiedName(node.name);
}

void visitUniverssalSelector(InterpolatedUniversalSelector node) {
void visitUniversalSelector(InterpolatedUniversalSelector node) {
node.namespace.andThen(visitInterpolation);
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/sass-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.4.36-dev
## 0.4.36

* No user-visible changes.

Expand Down
2 changes: 1 addition & 1 deletion pkg/sass-parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sass-parser",
"version": "0.4.36-dev",
"version": "0.4.36",
"description": "A PostCSS-compatible wrapper of the official Sass parser",
"repository": "sass/dart-sass",
"author": "Google Inc.",
Expand Down
5 changes: 3 additions & 2 deletions pkg/sass_api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 16.0.3-dev
## 16.0.3

* No user-visible changes.
* Add several members of `RecursiveAstVisitor` which were mising in the previous
release.

## 16.0.2

Expand Down
2 changes: 1 addition & 1 deletion pkg/sass_api/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: sass_api
# Note: Every time we add a new Sass AST node, we need to bump the *major*
# version because it's a breaking change for anyone who's implementing the
# visitor interface(s).
version: 16.0.3-dev
version: 16.0.3
description: Additional APIs for Dart Sass.
homepage: https://github.com/sass/dart-sass

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: sass
version: 1.94.3-dev
version: 1.94.3
description: A Sass implementation in Dart.
homepage: https://github.com/sass/dart-sass

Expand Down