Skip to content

Commit 3091de5

Browse files
authoredApr 19, 2023
Fix :has(+ &) (#1938)
Closes #1937
1 parent c55235d commit 3091de5

File tree

5 files changed

+24
-4
lines changed

5 files changed

+24
-4
lines changed
 

‎CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.62.1
2+
3+
* Fix a bug where `:has(+ &)` and related constructs would drop the leading
4+
combinator.
5+
16
## 1.62.0
27

38
* Deprecate the use of multiple `!global` or `!default` flags on the same

‎lib/src/ast/selector/list.dart

+12-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,18 @@ class SelectorList extends Selector {
137137
}
138138
}
139139
} else if (newComplexes.isEmpty) {
140-
newComplexes.addAll(resolved);
140+
newComplexes.addAll(complex.leadingCombinators.isEmpty
141+
? resolved
142+
: resolved.map((resolvedComplex) => ComplexSelector(
143+
resolvedComplex.leadingCombinators.isEmpty
144+
? complex.leadingCombinators
145+
: [
146+
...complex.leadingCombinators,
147+
...resolvedComplex.leadingCombinators
148+
],
149+
resolvedComplex.components,
150+
complex.span,
151+
lineBreak: resolvedComplex.lineBreak)));
141152
} else {
142153
var previousComplexes = newComplexes;
143154
newComplexes = [

‎pkg/sass_api/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 6.3.1
2+
3+
* No user-visible changes.
4+
15
## 6.3.0
26

37
* No user-visible changes.

‎pkg/sass_api/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ name: sass_api
22
# Note: Every time we add a new Sass AST node, we need to bump the *major*
33
# version because it's a breaking change for anyone who's implementing the
44
# visitor interface(s).
5-
version: 6.3.0
5+
version: 6.3.1-dev
66
description: Additional APIs for Dart Sass.
77
homepage: https://github.com/sass/dart-sass
88

99
environment:
1010
sdk: ">=2.17.0 <3.0.0"
1111

1212
dependencies:
13-
sass: 1.62.0
13+
sass: 1.62.1-dev
1414

1515
dev_dependencies:
1616
dartdoc: ^5.0.0

‎pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sass
2-
version: 1.62.0
2+
version: 1.62.1-dev
33
description: A Sass implementation in Dart.
44
homepage: https://github.com/sass/dart-sass
55

0 commit comments

Comments
 (0)
Please sign in to comment.