-
Notifications
You must be signed in to change notification settings - Fork 0
/
many_n.dart
67 lines (59 loc) · 1.3 KB
/
many_n.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
57
58
59
60
61
62
63
64
65
66
67
part of '../../multi.dart';
class ManyN<I, O> extends ParserBuilder<I, List<O>> {
static const _template = '''
final {{pos}} = state.pos;
final {{list}} = <{{O}}>[];
while ({{list}}.length < {{n}}) {
{{var1}}
{{p1}}
if (!state.ok) {
break;
}
{{list}}.add({{val1}});
}
state.ok = {{list}}.length == {{n}};
if (state.ok) {
{{res0}} = {{list}};
} else {
state.pos = {{pos}};
}''';
static const _templateFast = '''
final {{pos}} = state.pos;
var {{count}} = 0;
while ({{count}} < {{n}}) {
{{var1}}
{{p1}}
if (!state.ok) {
break;
}
{{count}}++;
}
state.ok = {{count}} == {{n}};
if (!state.ok) {
state.pos = {{pos}};
}''';
final int n;
final ParserBuilder<I, O> parser;
const ManyN(this.n, this.parser);
@override
String build(Context context, ParserResult? result) {
if (n < 1) {
throw RangeError.value(n, 'n', 'Must be greater than 0');
}
final fast = result == null;
final values = context.allocateLocals(['count', 'list', 'pos']);
final r1 = context.getResult(parser, !fast);
values.addAll({
'n': '$n',
'O': '$O',
'p1': parser.build(context, r1),
});
final String template;
if (fast) {
template = _templateFast;
} else {
template = _template;
}
return render(template, values, [result, r1]);
}
}