@@ -6,7 +6,6 @@ import 'dart:math' as math;
6
6
7
7
import 'package:charcode/charcode.dart' ;
8
8
import 'package:source_span/source_span.dart' ;
9
- import 'package:string_scanner/string_scanner.dart' ;
10
9
11
10
import 'ast/sass.dart' ;
12
11
import 'util/character.dart' ;
@@ -125,21 +124,21 @@ class InterpolationMap {
125
124
/// comment before the expression, but since it's only used for error
126
125
/// reporting that's probably fine.
127
126
int _expandInterpolationSpanLeft (FileLocation start) {
128
- var source = start.file.getText ( 0 , start.offset) ;
127
+ var source = start.file.codeUnits ;
129
128
var i = start.offset - 1 ;
130
- while (true ) {
131
- var prev = source. codeUnitAt ( i-- ) ;
129
+ while (i >= 0 ) {
130
+ var prev = source[ i-- ] ;
132
131
if (prev == $lbrace) {
133
- if (source. codeUnitAt (i) == $hash) break ;
132
+ if (source[i] == $hash) break ;
134
133
} else if (prev == $slash) {
135
- var second = source. codeUnitAt ( i-- ) ;
134
+ var second = source[ i-- ] ;
136
135
if (second == $asterisk) {
137
136
while (true ) {
138
- var char = source. codeUnitAt ( i-- ) ;
137
+ var char = source[ i-- ] ;
139
138
if (char != $asterisk) continue ;
140
139
141
140
do {
142
- char = source. codeUnitAt ( i-- ) ;
141
+ char = source[ i-- ] ;
143
142
} while (char == $asterisk);
144
143
if (char == $slash) break ;
145
144
}
@@ -153,28 +152,29 @@ class InterpolationMap {
153
152
/// Given the end of a [FileSpan] covering an interpolated expression, returns
154
153
/// the offset of the interpolation's closing `}` .
155
154
int _expandInterpolationSpanRight (FileLocation end) {
156
- var scanner = StringScanner (end.file.getText (end.offset));
157
- while (true ) {
158
- var next = scanner.readChar ();
155
+ var source = end.file.codeUnits;
156
+ var i = end.offset;
157
+ while (i < source.length) {
158
+ var next = source[i++ ];
159
159
if (next == $rbrace) break ;
160
160
if (next == $slash) {
161
- var second = scanner. readChar () ;
161
+ var second = source[i ++ ] ;
162
162
if (second == $slash) {
163
- while (! isNewline (scanner. readChar () )) {}
163
+ while (! isNewline (source[i ++ ] )) {}
164
164
} else if (second == $asterisk) {
165
165
while (true ) {
166
- var char = scanner. readChar () ;
166
+ var char = source[i ++ ] ;
167
167
if (char != $asterisk) continue ;
168
168
169
169
do {
170
- char = scanner. readChar () ;
170
+ char = source[i ++ ] ;
171
171
} while (char == $asterisk);
172
172
if (char == $slash) break ;
173
173
}
174
174
}
175
175
}
176
176
}
177
177
178
- return end.offset + scanner.position ;
178
+ return i ;
179
179
}
180
180
}
0 commit comments