-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseparated_list_n.dart
83 lines (75 loc) · 1.62 KB
/
separated_list_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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
part of '../../multi.dart';
class SeparatedListN<I, O> extends ParserBuilder<I, List<O>> {
static const _template = '''
final {{pos}} = state.pos;
var {{last}} = {{pos}};
final {{list}} = <{{O}}>[];
while (true) {
{{var1}}
{{p1}}
if (!state.ok) {
state.pos = {{last}};
break;
}
{{list}}.add({{val1}});
if ({{list}}.length == {{n}}) {
break;
}
{{last}} = state.pos;
{{p2}}
if (!state.ok) {
break;
}
}
state.ok = {{list}}.length == {{n}};
if (state.ok) {
{{res0}} = {{list}};
} else {
state.pos = {{pos}};
}''';
static const _templateFast = '''
final {{pos}} = state.pos;
var {{last}} = {{pos}};
var {{count}} = 0;
while (true) {
{{var1}}
{{p1}}
if (!state.ok) {
state.pos = {{last}};
break;
}
{{count}}++;
if ({{count}} == {{n}}) {
break;
}
{{last}} = state.pos;
{{p2}}
if (!state.ok) {
break;
}
}
state.ok = {{count}} == {{n}};
if (!state.ok) {
state.pos = {{pos}};
}''';
final int n;
final ParserBuilder<I, O> parser;
final ParserBuilder<I, dynamic> separator;
const SeparatedListN(this.n, this.parser, this.separator);
@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', 'last', 'list', 'pos']);
final r1 = context.getResult(parser, !fast);
values.addAll({
'n': '$n',
'O': '$O',
'p1': parser.build(context, r1),
'p2': separator.build(context, null),
});
return render2(fast, _templateFast, _template, values, [result, r1]);
}
}