File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.32.13
2
+
3
+ * Use the proper parameter names in error messages about ` string.slice `
4
+
1
5
## 1.32.12
2
6
3
7
* Fix a bug that disallowed more than one module from extending the same
Original file line number Diff line number Diff line change @@ -93,8 +93,8 @@ final _slice =
93
93
var string = arguments[0 ].assertString ("string" );
94
94
var start = arguments[1 ].assertNumber ("start-at" );
95
95
var end = arguments[2 ].assertNumber ("end-at" );
96
- start.assertNoUnits ("start" );
97
- end.assertNoUnits ("end" );
96
+ start.assertNoUnits ("start-at " );
97
+ end.assertNoUnits ("end-at " );
98
98
99
99
var lengthInCodepoints = string.sassLength;
100
100
Original file line number Diff line number Diff line change 1
1
name : sass
2
- version : 1.32.12
2
+ version : 1.32.13-dev
3
3
description : A Sass implementation in Dart.
4
4
author : Sass Team
5
5
homepage : https://github.com/sass/dart-sass
You can’t perform that action at this time.
0 commit comments