Skip to content

Commit 09a5f09

Browse files
authoredMar 14, 2023
Fix performance regression from selector spans (#1916)
1 parent b540d59 commit 09a5f09

File tree

7 files changed

+86
-6
lines changed

7 files changed

+86
-6
lines changed
 

‎.github/workflows/ci.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,11 @@ jobs:
140140
dart_channel: [stable]
141141
node_version: [18]
142142
include:
143+
# Temporarily adding back Node 12 here until we actually drop support
144+
# in the package.json.
145+
- os: ubuntu-latest
146+
dart_channel: stable
147+
node_version: 12
143148
# Include LTS versions on Ubuntu
144149
- os: ubuntu-latest
145150
dart_channel: stable
@@ -150,7 +155,6 @@ jobs:
150155
- os: ubuntu-latest
151156
dart_channel: dev
152157
node_version: 18
153-
154158
steps:
155159
- uses: actions/checkout@v3
156160
- uses: dart-lang/setup-dart@v1

‎CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 1.59.3
2+
3+
* Fix a performance regression introduced in 1.59.0.
4+
5+
* The NPM release of 1.59.0 dropped support for Node 12 without actually
6+
indicating so in its pubspec. This release temporarily adds back support so
7+
that the latest Sass version that declares it supports Node 12 actually does
8+
so. However, Node 12 is now end-of-life, so we will drop support for it
9+
properly in an upcoming release.
10+
111
## 1.59.2
212

313
* No user-visible changes.

‎lib/src/parse/parser.dart

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import '../exception.dart';
1111
import '../interpolation_map.dart';
1212
import '../logger.dart';
1313
import '../util/character.dart';
14+
import '../util/lazy_file_span.dart';
1415
import '../utils.dart';
1516

1617
/// The abstract base class for all parsers.
@@ -675,7 +676,10 @@ class Parser {
675676
@protected
676677
FileSpan spanFrom(LineScannerState state) {
677678
var span = scanner.spanFrom(state);
678-
return _interpolationMap?.mapSpan(span) ?? span;
679+
if (_interpolationMap != null) {
680+
return LazyFileSpan(() => _interpolationMap!.mapSpan(span));
681+
}
682+
return span;
679683
}
680684

681685
/// Prints a warning to standard error, associated with [span].

‎lib/src/util/lazy_file_span.dart

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
// Copyright 2023 Google LLC. Use of this source code is governed by an
2+
// MIT-style license that can be found in the LICENSE file or at
3+
// https://opensource.org/licenses/MIT.
4+
5+
import 'package:source_span/source_span.dart';
6+
7+
/// A wrapper for [FileSpan] that allows an expensive creation process to be
8+
/// deferred until the span is actually needed.
9+
class LazyFileSpan implements FileSpan {
10+
/// The function that creates the underlying span.
11+
final FileSpan Function() _builder;
12+
13+
/// The underlying span this wraps, which is created the first time this
14+
/// getter is referenced.
15+
FileSpan get span => _span ??= _builder();
16+
FileSpan? _span;
17+
18+
/// Creates a new [LazyFileSpan] that defers calling [builder] until the
19+
/// underlying span is needed.
20+
LazyFileSpan(FileSpan Function() builder) : _builder = builder;
21+
22+
@override
23+
int compareTo(SourceSpan other) => span.compareTo(other);
24+
25+
@override
26+
String get context => span.context;
27+
28+
@override
29+
FileLocation get end => span.end;
30+
31+
@override
32+
FileSpan expand(FileSpan other) => span.expand(other);
33+
34+
@override
35+
SourceFile get file => span.file;
36+
37+
@override
38+
String highlight({color}) => span.highlight(color: color);
39+
40+
@override
41+
int get length => span.length;
42+
43+
@override
44+
String message(String message, {color}) =>
45+
span.message(message, color: color);
46+
47+
@override
48+
Uri? get sourceUrl => span.sourceUrl;
49+
50+
@override
51+
FileLocation get start => span.start;
52+
53+
@override
54+
String get text => span.text;
55+
56+
@override
57+
SourceSpan union(SourceSpan other) => span.union(other);
58+
}

‎pkg/sass_api/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 6.0.3
2+
3+
* No user-visible changes.
4+
15
## 6.0.2
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.0.2
5+
version: 6.0.3
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.59.2
13+
sass: 1.59.3
1414

1515
dev_dependencies:
1616
dartdoc: ^5.0.0

‎pubspec.yaml

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

@@ -35,7 +35,7 @@ dependencies:
3535
dev_dependencies:
3636
analyzer: ^4.7.0
3737
archive: ^3.1.2
38-
cli_pkg: ^2.1.4
38+
cli_pkg: ^2.4.2
3939
crypto: ^3.0.0
4040
dart_style: ^2.0.0
4141
dartdoc: ^6.0.0

0 commit comments

Comments
 (0)
Please sign in to comment.