-
Notifications
You must be signed in to change notification settings - Fork 0
/
many1.dart
45 lines (40 loc) · 912 Bytes
/
many1.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
part of '../../multi.dart';
class Many1<I, O> extends ParserBuilder<I, List<O>> {
static const _template = '''
final {{list}} = <{{O}}>[];
while (true) {
{{var1}}
{{p1}}
if (!state.ok) {
break;
}
{{list}}.add({{val1}});
}
state.ok = {{list}}.isNotEmpty;
if (state.ok) {
{{res0}} = {{list}};
}''';
static const _templateFast = '''
var {{ok}} = false;
while (true) {
{{p1}}
if (!state.ok) {
break;
}
{{ok}} = true;
}
state.ok = {{ok}};''';
final ParserBuilder<I, O> parser;
const Many1(this.parser);
@override
String build(Context context, ParserResult? result) {
final fast = result == null;
final values = context.allocateLocals(['list', 'ok']);
final r1 = context.getResult(parser, !fast);
values.addAll({
'O': '$O',
'p1': parser.build(context, r1),
});
return render2(fast, _templateFast, _template, values, [result, r1]);
}
}