summary refs log tree commit diff stats
path: root/tests/iter
Commit message (Expand)AuthorAgeFilesLines
* simple closure iterator calling closure iterator works; refs #3837Andreas Rumpf2016-12-271-0/+14
* fixes #3221Andreas Rumpf2016-08-221-0/+33
* fixes iterator codegen regressionAndreas Rumpf2016-01-141-0/+58
* fixes more regressionsAndreas Rumpf2016-01-131-0/+36
* fixes regressionsAndreas Rumpf2016-01-051-0/+51
* fixes #3636Andreas Rumpf2016-01-041-0/+16
* fixes #1725Andreas Rumpf2016-01-041-0/+16
* async works againAndreas Rumpf2016-01-031-0/+73
* made closure iterators tests green, updated docsAndreas Rumpf2015-12-312-10/+6
* lambda lifting support for iterToProc pluginAraq2015-12-011-0/+3
* tests: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-045-60/+60
* disabled dubious testcaseAraq2015-07-141-0/+1
* Clean up tests/iterdef2015-02-041-1/+8
* Add test for #1836def2015-02-041-0/+17
* check test resultAraq2015-02-011-0/+4
* fixes #2023Araq2015-02-011-0/+16
* better C++ support wrt 'this'Araq2015-01-181-0/+76
* fixes #1838Araq2015-01-112-1/+22
* fixes #1803Araq2015-01-101-0/+31
* fixes #1656Araq2014-12-151-1/+1
* fixes #1560Araq2014-11-111-1/+7
* make tests greenAraq2014-08-313-6/+6
* further adaptationsAraq2014-08-291-1/+1
* Tester now appreciates the test target. Modified 'cmd' in specs.Dominik Picheta2014-04-161-1/+1
* fix #966Zahary Karadjov2014-03-091-0/+26
* implicit auto return type for inline iteratorsZahary Karadjov2014-03-081-1/+1
* implements higher-order inline iterators and return type inference for iteratorsZahary Karadjov2014-03-081-0/+38
* split the inline and closure iterators into different symbol kinds for easier...Zahary Karadjov2014-03-061-1/+1
* fixes #885Araq2014-02-091-2/+2
* next steps for closure iteratorsAraq2014-01-222-1/+33
* new tester; all tests categorizedAraq2014-01-1317-0/+503
7 -0700 committer Kartik K. Agaram <vc@akkartik.com> 2016-10-23 20:55:47 -0700 3573 - client socket tests' href='/akkartik/mu/commit/088file.mu?h=hlt&id=b1f0fa4dc98a65dd956ded0eadce3bd9d010d100'>b1f0fa4d ^
294b2ab3 ^
b1f0fa4d ^
4a48bedc ^
294b2ab3 ^
01ce563d ^
d6ae0078 ^
294b2ab3 ^










4a48bedc ^
dd660682 ^
7a84094a ^
0893d65e ^
7a84094a ^
ebea4c3f ^
80df524b ^
ebea4c3f ^
0893d65e ^
6641b247 ^
b1f0fa4d ^

ebea4c3f ^
760f683f ^
ea19d0dc ^
f03c9c05 ^
ebea4c3f ^

01ce563d ^
da925d06 ^

f03c9c05 ^
da925d06 ^
4a48bedc ^
da925d06 ^
80df524b ^
10bbca64 ^
da925d06 ^


da925d06 ^
ff16e04f ^
a621ef95 ^

f03c9c05 ^
ebea4c3f ^
4a48bedc ^
7a84094a ^

ebea4c3f ^
80df524b ^
ebea4c3f ^
08f4628e ^
ebea4c3f ^






294b2ab3 ^
a621ef95 ^
4a48bedc ^
dd660682 ^
760f683f ^
2d3d88d9 ^
0606f4ac ^

294b2ab3 ^
f116818c ^
2d3d88d9 ^
0606f4ac ^

01ce563d ^
eb2b6cd2 ^




0606f4ac ^
a621ef95 ^

294b2ab3 ^

4a48bedc ^
294b2ab3 ^
dd660682 ^
294b2ab3 ^

















760f683f ^
a621ef95 ^
4a48bedc ^
a621ef95 ^
80df524b ^
a621ef95 ^



ff16e04f ^
da925d06 ^
2d3d88d9 ^
294b2ab3 ^
2d3d88d9 ^
4a48bedc ^
ef69c56c ^

2d3d88d9 ^
d6ae0078 ^
2d3d88d9 ^
80df524b ^
2d3d88d9 ^



ea19d0dc ^
0893d65e ^

01ce563d ^
0893d65e ^
2d3d88d9 ^
7a84094a ^

0230a6cc ^
80df524b ^
0230a6cc ^
0893d65e ^
0230a6cc ^
80df524b ^
d5c86dfd ^






0230a6cc ^

7a84094a ^
0893d65e ^

2d3d88d9 ^
7a84094a ^
2d3d88d9 ^
80df524b ^
2d3d88d9 ^
0893d65e ^
2d3d88d9 ^


0893d65e ^
d5c86dfd ^
ef69c56c ^
2d3d88d9 ^
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213