Skip to content

Commit 9417b6e

Browse files
authoredMar 8, 2023
Track original source spans for selectors (#1903)
Closes #1783
1 parent 434f2b9 commit 9417b6e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+1187
-756
lines changed
 

‎CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
* Improve error messages for invalid CSS values passed to plain CSS functions.
77

8+
* Improve error messages involving selectors.
9+
810
### Embedded Sass
911

1012
* Improve the performance of starting up a compilation.

‎lib/src/ast/css/media_query.dart

+5-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// MIT-style license that can be found in the LICENSE file or at
33
// https://opensource.org/licenses/MIT.
44

5+
import '../../interpolation_map.dart';
56
import '../../logger.dart';
67
import '../../parse/media_query.dart';
78
import '../../utils.dart';
@@ -43,8 +44,10 @@ class CssMediaQuery {
4344
///
4445
/// Throws a [SassFormatException] if parsing fails.
4546
static List<CssMediaQuery> parseList(String contents,
46-
{Object? url, Logger? logger}) =>
47-
MediaQueryParser(contents, url: url, logger: logger).parse();
47+
{Object? url, Logger? logger, InterpolationMap? interpolationMap}) =>
48+
MediaQueryParser(contents,
49+
url: url, logger: logger, interpolationMap: interpolationMap)
50+
.parse();
4851

4952
/// Creates a media query specifies a type and, optionally, conditions.
5053
///

0 commit comments

Comments
 (0)
Please sign in to comment.