-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskip_while1.dart
56 lines (51 loc) · 1.34 KB
/
skip_while1.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
part of '../../bytes.dart';
/// Parses while [predicate] satisfies the criteria, and returns true if the
/// criteria was satisfied at least once.
///
/// Example:
/// ```dart
/// SkipWhile1(CharClass('[#x30-#x39]'), unicode: false)
/// ```
class SkipWhile1 extends ParserBuilder<String, void> {
static const _template16 = '''
final {{pos}} = state.pos;
while (state.pos < source.length) {
final c = source.codeUnitAt(state.pos);
final ok = {{test}};
if (!ok) {
break;
}
state.pos++;
}
state.ok = state.pos != {{pos}};
if (!state.ok) {
state.fail({{pos}}, ParseError.character);
}''';
static const _template32 = '''
final {{pos}} = state.pos;
while (state.pos < source.length) {
final pos = state.pos;
final c = source.readRune(state);
final ok = {{test}};
if (!ok) {
state.pos = pos;
break;
}
}
state.ok = state.pos != {{pos}};
if (!state.ok) {
state.fail({{pos}}, ParseError.character);
}''';
final SemanticAction<bool> predicate;
const SkipWhile1(this.predicate);
@override
String build(Context context, ParserResult? result) {
context.refersToStateSource = true;
final values = context.allocateLocals(['pos']);
final isUnicode = predicate.isUnicode;
values.addAll({
'test': predicate.build(context, 'test', ['c']),
});
return render2(isUnicode, _template32, _template16, values);
}
}