Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions pkg/sass_api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## 16.0.3-dev
## 16.0.3

* No user-visible changes.
* Add the missing members of `RecursiveAstVisitor`.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this may be confusing, as in I didn't understand immediately what "missing members" meant. Can you clarify this?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reworded to clarify.


## 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