alf 0.10.0 → 0.10.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (249) hide show
  1. data/CHANGELOG.md +22 -0
  2. data/Gemfile +3 -3
  3. data/Gemfile.lock +9 -10
  4. data/alf.gemspec +3 -3
  5. data/alf.noespec +5 -4
  6. data/doc/commands/show.md +1 -1
  7. data/doc/operators/relational/heading.md +20 -0
  8. data/doc/operators/relational/join.md +4 -3
  9. data/doc/operators/relational/matching.md +7 -3
  10. data/doc/operators/relational/restrict.md +2 -2
  11. data/examples/hitradio/compact.rb +48 -0
  12. data/examples/hitradio/compare1.rb +28 -0
  13. data/examples/hitradio/gz_reader.rb +23 -0
  14. data/examples/hitradio/hitradio-1.alf +1 -0
  15. data/examples/hitradio/hitradio.log +25080 -0
  16. data/examples/hitradio/hitradio.mar +25081 -0
  17. data/examples/hitradio/hitradio.mar.gz +0 -0
  18. data/examples/hitradio/hitradio.rash +25080 -0
  19. data/examples/hitradio/mar_reader.rb +18 -0
  20. data/lib/alf/aggregator/aggregators.rb +28 -0
  21. data/lib/alf/aggregator/aggregators.rbc +2640 -0
  22. data/lib/alf/aggregator/base.rbc +1055 -0
  23. data/lib/alf/aggregator/class_methods.rb +1 -1
  24. data/lib/alf/aggregator/class_methods.rbc +830 -0
  25. data/lib/alf/buffer/sorted.rbc +715 -0
  26. data/lib/alf/command/class_methods.rbc +453 -0
  27. data/lib/alf/command/doc_manager.rbc +1604 -0
  28. data/lib/alf/command/exec.rbc +408 -0
  29. data/lib/alf/command/help.rbc +764 -0
  30. data/lib/alf/command/main.rb +37 -5
  31. data/lib/alf/command/main.rbc +3612 -0
  32. data/lib/alf/command/show.rb +37 -5
  33. data/lib/alf/command/show.rbc +1327 -0
  34. data/lib/alf/environment/base.rbc +459 -0
  35. data/lib/alf/environment/class_methods.rbc +1110 -0
  36. data/lib/alf/environment/explicit.rb +2 -2
  37. data/lib/alf/environment/explicit.rbc +601 -0
  38. data/lib/alf/environment/folder.rb +2 -2
  39. data/lib/alf/environment/folder.rbc +942 -0
  40. data/lib/alf/errors.rb +4 -0
  41. data/lib/alf/errors.rbc +155 -0
  42. data/lib/alf/extra/csv.rb +5 -2
  43. data/lib/alf/extra/csv.rbc +2021 -0
  44. data/lib/alf/extra/logs.rbc +1957 -0
  45. data/lib/alf/extra/sequel.rbc +1417 -0
  46. data/lib/alf/extra/yaml.rbc +435 -0
  47. data/lib/alf/extra.rbc +101 -0
  48. data/lib/alf/iterator/base.rbc +437 -0
  49. data/lib/alf/iterator/class_methods.rbc +518 -0
  50. data/lib/alf/iterator/proxy.rbc +599 -0
  51. data/lib/alf/lispy/instance_methods.rbc +2535 -0
  52. data/lib/alf/loader.rb +2 -1
  53. data/lib/alf/loader.rbc +85 -0
  54. data/lib/alf/operator/base.rbc +860 -0
  55. data/lib/alf/operator/binary.rbc +595 -0
  56. data/lib/alf/operator/cesure.rbc +883 -0
  57. data/lib/alf/operator/class_methods.rbc +1915 -0
  58. data/lib/alf/operator/experimental.rbc +200 -0
  59. data/lib/alf/operator/non_relational/autonum.rbc +587 -0
  60. data/lib/alf/operator/non_relational/clip.rbc +522 -0
  61. data/lib/alf/operator/non_relational/coerce.rbc +596 -0
  62. data/lib/alf/operator/non_relational/compact.rbc +1283 -0
  63. data/lib/alf/operator/non_relational/defaults.rbc +733 -0
  64. data/lib/alf/operator/non_relational/generator.rbc +1015 -0
  65. data/lib/alf/operator/non_relational/sort.rbc +665 -0
  66. data/lib/alf/operator/nullary.rbc +404 -0
  67. data/lib/alf/operator/relational/extend.rbc +616 -0
  68. data/lib/alf/operator/relational/group.rbc +968 -0
  69. data/lib/alf/operator/relational/heading.rb +30 -0
  70. data/lib/alf/operator/relational/heading.rbc +657 -0
  71. data/lib/alf/operator/relational/intersect.rbc +969 -0
  72. data/lib/alf/operator/relational/join.rbc +1708 -0
  73. data/lib/alf/operator/relational/matching.rbc +1047 -0
  74. data/lib/alf/operator/relational/minus.rbc +965 -0
  75. data/lib/alf/operator/relational/not_matching.rbc +1047 -0
  76. data/lib/alf/operator/relational/project.rbc +669 -0
  77. data/lib/alf/operator/relational/quota.rbc +1193 -0
  78. data/lib/alf/operator/relational/rank.rbc +1217 -0
  79. data/lib/alf/operator/relational/rename.rbc +496 -0
  80. data/lib/alf/operator/relational/restrict.rbc +611 -0
  81. data/lib/alf/operator/relational/summarize.rbc +1922 -0
  82. data/lib/alf/operator/relational/ungroup.rbc +643 -0
  83. data/lib/alf/operator/relational/union.rbc +846 -0
  84. data/lib/alf/operator/relational/unwrap.rbc +540 -0
  85. data/lib/alf/operator/relational/wrap.rbc +560 -0
  86. data/lib/alf/operator/shortcut.rbc +809 -0
  87. data/lib/alf/operator/signature.rbc +4640 -0
  88. data/lib/alf/operator/transform.rbc +484 -0
  89. data/lib/alf/operator/unary.rbc +629 -0
  90. data/lib/alf/reader/alf_file.rbc +464 -0
  91. data/lib/alf/reader/base.rbc +1613 -0
  92. data/lib/alf/reader/class_methods.rb +1 -1
  93. data/lib/alf/reader/class_methods.rbc +1099 -0
  94. data/lib/alf/reader/rash.rbc +583 -0
  95. data/lib/alf/relation/class_methods.rbc +674 -0
  96. data/lib/alf/relation/instance_methods.rb +7 -0
  97. data/lib/alf/relation/instance_methods.rbc +2107 -0
  98. data/lib/alf/renderer/base.rbc +936 -0
  99. data/lib/alf/renderer/class_methods.rbc +875 -0
  100. data/lib/alf/renderer/rash.rb +16 -2
  101. data/lib/alf/renderer/rash.rbc +802 -0
  102. data/lib/alf/renderer/text.rb +54 -16
  103. data/lib/alf/renderer/text.rbc +5530 -0
  104. data/lib/alf/tools/coerce.rbc +352 -0
  105. data/lib/alf/tools/miscellaneous.rb +8 -1
  106. data/lib/alf/tools/miscellaneous.rbc +1497 -0
  107. data/lib/alf/tools/to_lispy.rbc +2618 -0
  108. data/lib/alf/tools/to_ruby_literal.rbc +344 -0
  109. data/lib/alf/tools/tuple_handle.rbc +738 -0
  110. data/lib/alf/types/attr_list.rbc +1535 -0
  111. data/lib/alf/types/attr_name.rbc +781 -0
  112. data/lib/alf/types/boolean.rbc +365 -0
  113. data/lib/alf/types/heading.rb +16 -1
  114. data/lib/alf/types/heading.rbc +1778 -0
  115. data/lib/alf/types/ordering.rbc +2228 -0
  116. data/lib/alf/types/renaming.rbc +1064 -0
  117. data/lib/alf/types/summarization.rbc +1394 -0
  118. data/lib/alf/types/tuple_computation.rbc +1061 -0
  119. data/lib/alf/types/tuple_expression.rbc +1016 -0
  120. data/lib/alf/types/tuple_predicate.rbc +1349 -0
  121. data/lib/alf/version.rb +1 -1
  122. data/lib/alf/version.rbc +350 -0
  123. data/lib/alf.rb +13 -5
  124. data/lib/alf.rbc +3884 -0
  125. data/spec/integration/command/alf/alf_help.stdout +8 -6
  126. data/spec/integration/command/help/help_1.stdout +3 -1
  127. data/spec/integration/command/show/show_base.cmd +1 -1
  128. data/spec/integration/command/show/show_base_sort_1.cmd +1 -0
  129. data/spec/integration/command/show/show_base_sort_1.stdout +9 -0
  130. data/spec/integration/command/show/show_base_sort_2.cmd +1 -0
  131. data/spec/integration/command/show/show_base_sort_2.stdout +9 -0
  132. data/spec/integration/command/show/show_ff.cmd +1 -0
  133. data/spec/integration/command/show/show_ff.stdout +10 -0
  134. data/spec/integration/command/show/show_rash_pretty.cmd +1 -0
  135. data/spec/integration/command/show/show_rash_pretty.stdout +30 -0
  136. data/spec/integration/test_alf.rbc +1098 -0
  137. data/spec/integration/test_command.rbc +1832 -0
  138. data/spec/integration/test_examples.rbc +559 -0
  139. data/spec/integration/test_semantics.rbc +991 -0
  140. data/spec/regression/alf_file/test___FILE__.rbc +524 -0
  141. data/spec/regression/heading/test_heading_with_date.rbc +381 -0
  142. data/spec/regression/lispy/test_compile.rbc +404 -0
  143. data/spec/regression/logs/test_path_attribute.rbc +687 -0
  144. data/spec/regression/relation/test_relation_allbut_all.rbc +468 -0
  145. data/spec/regression/relation/test_relation_with_date.rbc +381 -0
  146. data/spec/regression/restrict/test_restrict_with_keywords.rbc +628 -0
  147. data/spec/shared/a_value.rbc +337 -0
  148. data/spec/shared/an_operator_class.rbc +908 -0
  149. data/spec/spec_helper.rbc +453 -0
  150. data/spec/unit/assumptions/test_file.rbc +668 -0
  151. data/spec/unit/assumptions/test_instance_eval.rbc +654 -0
  152. data/spec/unit/assumptions/test_scoping.rbc +755 -0
  153. data/spec/unit/assumptions/test_set.rbc +1928 -0
  154. data/spec/unit/command/doc_manager/test_call.rbc +1537 -0
  155. data/spec/unit/csv/test_reader.rbc +2228 -0
  156. data/spec/unit/csv/test_renderer.rbc +2426 -0
  157. data/spec/unit/environment/test_explicit.rbc +464 -0
  158. data/spec/unit/environment/test_folder.rb +2 -2
  159. data/spec/unit/environment/test_folder.rbc +1304 -0
  160. data/spec/unit/lispy/test_relation.rbc +1477 -0
  161. data/spec/unit/lispy/test_run.rbc +1735 -0
  162. data/spec/unit/lispy/test_tuple.rbc +1686 -0
  163. data/spec/unit/logs/test_reader.rb +6 -4
  164. data/spec/unit/logs/test_reader.rbc +1807 -0
  165. data/spec/unit/operator/non_relational/compact/test_buffer_based.rbc +1127 -0
  166. data/spec/unit/operator/non_relational/compact/test_sort_based.rbc +1127 -0
  167. data/spec/unit/operator/non_relational/test_autonum.rbc +1969 -0
  168. data/spec/unit/operator/non_relational/test_clip.rbc +1850 -0
  169. data/spec/unit/operator/non_relational/test_coerce.rbc +1290 -0
  170. data/spec/unit/operator/non_relational/test_compact.rbc +1382 -0
  171. data/spec/unit/operator/non_relational/test_defaults.rbc +2319 -0
  172. data/spec/unit/operator/non_relational/test_generator.rbc +2361 -0
  173. data/spec/unit/operator/non_relational/test_sort.rbc +2583 -0
  174. data/spec/unit/operator/relational/join/test_hash_based.rbc +2481 -0
  175. data/spec/unit/operator/relational/matching/test_hash_based.rbc +2458 -0
  176. data/spec/unit/operator/relational/not_matching/test_hash_based.rbc +1632 -0
  177. data/spec/unit/operator/relational/summarize/test_hash_based.rbc +1990 -0
  178. data/spec/unit/operator/relational/summarize/test_sort_based.rbc +1990 -0
  179. data/spec/unit/operator/relational/test_extend.rbc +1300 -0
  180. data/spec/unit/operator/relational/test_group.rbc +2142 -0
  181. data/spec/unit/operator/relational/test_intersect.rbc +2069 -0
  182. data/spec/unit/operator/relational/test_join.rbc +1282 -0
  183. data/spec/unit/operator/relational/test_minus.rbc +1995 -0
  184. data/spec/unit/operator/relational/test_project.rbc +2870 -0
  185. data/spec/unit/operator/relational/test_quota.rbc +1788 -0
  186. data/spec/unit/operator/relational/test_rank.rbc +2079 -0
  187. data/spec/unit/operator/relational/test_rename.rbc +1158 -0
  188. data/spec/unit/operator/relational/test_restrict.rbc +2305 -0
  189. data/spec/unit/operator/relational/test_summarize.rbc +2570 -0
  190. data/spec/unit/operator/relational/test_ungroup.rbc +1425 -0
  191. data/spec/unit/operator/relational/test_union.rbc +1089 -0
  192. data/spec/unit/operator/relational/test_unwrap.rbc +1176 -0
  193. data/spec/unit/operator/relational/test_wrap.rbc +1203 -0
  194. data/spec/unit/operator/signature/test_collect_on.rbc +1989 -0
  195. data/spec/unit/operator/signature/test_initialize.rbc +544 -0
  196. data/spec/unit/operator/signature/test_install.rbc +1671 -0
  197. data/spec/unit/operator/signature/test_option_parser.rbc +1348 -0
  198. data/spec/unit/operator/signature/test_parse_args.rbc +1908 -0
  199. data/spec/unit/operator/signature/test_parse_argv.rbc +2878 -0
  200. data/spec/unit/operator/signature/test_to_lispy.rbc +3305 -0
  201. data/spec/unit/operator/signature/test_to_shell.rbc +3327 -0
  202. data/spec/unit/operator/test_non_relational.rbc +571 -0
  203. data/spec/unit/operator/test_relational.rb +2 -1
  204. data/spec/unit/operator/test_relational.rbc +758 -0
  205. data/spec/unit/reader/test_alf_file.rbc +1107 -0
  206. data/spec/unit/reader/test_initialize.rbc +1774 -0
  207. data/spec/unit/reader/test_rash.rbc +1127 -0
  208. data/spec/unit/relation/test_coerce.rbc +2320 -0
  209. data/spec/unit/relation/test_inspect.rbc +502 -0
  210. data/spec/unit/relation/test_relops.rbc +1585 -0
  211. data/spec/unit/relation/test_to_a.rbc +1112 -0
  212. data/spec/unit/renderer/test_initialize.rbc +1766 -0
  213. data/spec/unit/sequel/test_environment.rbc +1723 -0
  214. data/spec/unit/test_aggregator.rb +38 -1
  215. data/spec/unit/test_aggregator.rbc +4358 -0
  216. data/spec/unit/test_environment.rbc +1271 -0
  217. data/spec/unit/test_lispy.rbc +879 -0
  218. data/spec/unit/test_operator.rbc +531 -0
  219. data/spec/unit/test_reader.rb +6 -2
  220. data/spec/unit/test_reader.rbc +1249 -0
  221. data/spec/unit/test_relation.rbc +2588 -0
  222. data/spec/unit/test_renderer.rb +12 -1
  223. data/spec/unit/test_renderer.rbc +2011 -0
  224. data/spec/unit/text/test_cell.rb +1 -0
  225. data/spec/unit/text/test_cell.rbc +1532 -0
  226. data/spec/unit/text/test_row.rbc +847 -0
  227. data/spec/unit/text/test_table.rbc +978 -0
  228. data/spec/unit/tools/test_coalesce.rbc +456 -0
  229. data/spec/unit/tools/test_coerce.rbc +279 -0
  230. data/spec/unit/tools/test_to_lispy.rbc +5711 -0
  231. data/spec/unit/tools/test_to_ruby_literal.rbc +272 -0
  232. data/spec/unit/tools/test_tools.rbc +672 -0
  233. data/spec/unit/tools/test_tuple_handle.rbc +1591 -0
  234. data/spec/unit/tools/test_tuple_heading.rb +20 -0
  235. data/spec/unit/tools/test_tuple_heading.rbc +821 -0
  236. data/spec/unit/tools/test_varargs.rbc +495 -0
  237. data/spec/unit/types/heading/test_union.rb +21 -0
  238. data/spec/unit/types/heading/test_union.rbc +1043 -0
  239. data/spec/unit/types/test_attr_list.rbc +4481 -0
  240. data/spec/unit/types/test_attr_name.rbc +1872 -0
  241. data/spec/unit/types/test_heading.rbc +1735 -0
  242. data/spec/unit/types/test_ordering.rbc +3695 -0
  243. data/spec/unit/types/test_renaming.rbc +2426 -0
  244. data/spec/unit/types/test_summarization.rbc +2538 -0
  245. data/spec/unit/types/test_tuple_computation.rbc +2340 -0
  246. data/spec/unit/types/test_tuple_expression.rbc +2285 -0
  247. data/spec/unit/types/test_tuple_predicate.rbc +3168 -0
  248. data/tasks/gh-pages.rake +1 -1
  249. metadata +529 -125
@@ -0,0 +1,1989 @@
1
+ !RBIX
2
+ 11817445442317083511
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 37
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 99
23
+ 7
24
+ 2
25
+ 65
26
+ 49
27
+ 3
28
+ 2
29
+ 13
30
+ 99
31
+ 12
32
+ 7
33
+ 4
34
+ 12
35
+ 7
36
+ 5
37
+ 12
38
+ 65
39
+ 12
40
+ 49
41
+ 6
42
+ 4
43
+ 15
44
+ 49
45
+ 4
46
+ 0
47
+ 15
48
+ 2
49
+ 11
50
+ I
51
+ 6
52
+ I
53
+ 0
54
+ I
55
+ 0
56
+ I
57
+ 0
58
+ n
59
+ p
60
+ 7
61
+ s
62
+ 11
63
+ spec_helper
64
+ x
65
+ 7
66
+ require
67
+ x
68
+ 3
69
+ Alf
70
+ x
71
+ 11
72
+ open_module
73
+ x
74
+ 15
75
+ __module_init__
76
+ M
77
+ 1
78
+ n
79
+ n
80
+ x
81
+ 3
82
+ Alf
83
+ i
84
+ 28
85
+ 5
86
+ 66
87
+ 99
88
+ 7
89
+ 0
90
+ 65
91
+ 49
92
+ 1
93
+ 2
94
+ 13
95
+ 99
96
+ 12
97
+ 7
98
+ 2
99
+ 12
100
+ 7
101
+ 3
102
+ 12
103
+ 65
104
+ 12
105
+ 49
106
+ 4
107
+ 4
108
+ 15
109
+ 49
110
+ 2
111
+ 0
112
+ 11
113
+ I
114
+ 6
115
+ I
116
+ 0
117
+ I
118
+ 0
119
+ I
120
+ 0
121
+ n
122
+ p
123
+ 5
124
+ x
125
+ 8
126
+ Operator
127
+ x
128
+ 11
129
+ open_module
130
+ x
131
+ 15
132
+ __module_init__
133
+ M
134
+ 1
135
+ n
136
+ n
137
+ x
138
+ 8
139
+ Operator
140
+ i
141
+ 16
142
+ 5
143
+ 66
144
+ 5
145
+ 45
146
+ 0
147
+ 1
148
+ 7
149
+ 2
150
+ 64
151
+ 56
152
+ 3
153
+ 47
154
+ 50
155
+ 4
156
+ 2
157
+ 11
158
+ I
159
+ 4
160
+ I
161
+ 0
162
+ I
163
+ 0
164
+ I
165
+ 0
166
+ n
167
+ p
168
+ 5
169
+ x
170
+ 9
171
+ Signature
172
+ n
173
+ s
174
+ 11
175
+ #collect_on
176
+ M
177
+ 1
178
+ p
179
+ 2
180
+ x
181
+ 9
182
+ for_block
183
+ t
184
+ n
185
+ x
186
+ 8
187
+ Operator
188
+ i
189
+ 82
190
+ 5
191
+ 56
192
+ 0
193
+ 47
194
+ 50
195
+ 1
196
+ 0
197
+ 15
198
+ 5
199
+ 7
200
+ 2
201
+ 56
202
+ 3
203
+ 47
204
+ 50
205
+ 4
206
+ 1
207
+ 15
208
+ 5
209
+ 7
210
+ 5
211
+ 56
212
+ 6
213
+ 47
214
+ 50
215
+ 4
216
+ 1
217
+ 15
218
+ 5
219
+ 7
220
+ 7
221
+ 56
222
+ 8
223
+ 47
224
+ 50
225
+ 4
226
+ 1
227
+ 15
228
+ 5
229
+ 7
230
+ 9
231
+ 64
232
+ 56
233
+ 10
234
+ 47
235
+ 50
236
+ 11
237
+ 1
238
+ 15
239
+ 5
240
+ 7
241
+ 12
242
+ 64
243
+ 56
244
+ 13
245
+ 47
246
+ 50
247
+ 11
248
+ 1
249
+ 15
250
+ 5
251
+ 7
252
+ 14
253
+ 64
254
+ 56
255
+ 15
256
+ 47
257
+ 50
258
+ 11
259
+ 1
260
+ 15
261
+ 5
262
+ 7
263
+ 16
264
+ 64
265
+ 56
266
+ 17
267
+ 47
268
+ 50
269
+ 11
270
+ 1
271
+ 11
272
+ I
273
+ 4
274
+ I
275
+ 0
276
+ I
277
+ 0
278
+ I
279
+ 0
280
+ I
281
+ -2
282
+ p
283
+ 18
284
+ M
285
+ 1
286
+ p
287
+ 2
288
+ x
289
+ 9
290
+ for_block
291
+ t
292
+ n
293
+ x
294
+ 8
295
+ Operator
296
+ i
297
+ 16
298
+ 5
299
+ 48
300
+ 0
301
+ 49
302
+ 1
303
+ 0
304
+ 49
305
+ 2
306
+ 0
307
+ 5
308
+ 48
309
+ 0
310
+ 49
311
+ 3
312
+ 1
313
+ 11
314
+ I
315
+ 3
316
+ I
317
+ 0
318
+ I
319
+ 0
320
+ I
321
+ 0
322
+ I
323
+ -2
324
+ p
325
+ 4
326
+ x
327
+ 2
328
+ op
329
+ x
330
+ 5
331
+ class
332
+ x
333
+ 9
334
+ signature
335
+ x
336
+ 10
337
+ collect_on
338
+ p
339
+ 3
340
+ I
341
+ 0
342
+ I
343
+ 6
344
+ I
345
+ 10
346
+ x
347
+ 77
348
+ /home/blambeau/work/devel/alf/spec/unit/operator/signature/test_collect_on.rb
349
+ p
350
+ 0
351
+ x
352
+ 7
353
+ subject
354
+ x
355
+ 8
356
+ operands
357
+ M
358
+ 1
359
+ p
360
+ 2
361
+ x
362
+ 9
363
+ for_block
364
+ t
365
+ n
366
+ x
367
+ 8
368
+ Operator
369
+ i
370
+ 7
371
+ 5
372
+ 48
373
+ 0
374
+ 49
375
+ 1
376
+ 0
377
+ 11
378
+ I
379
+ 2
380
+ I
381
+ 0
382
+ I
383
+ 0
384
+ I
385
+ 0
386
+ I
387
+ -2
388
+ p
389
+ 2
390
+ x
391
+ 7
392
+ subject
393
+ x
394
+ 5
395
+ first
396
+ p
397
+ 3
398
+ I
399
+ 0
400
+ I
401
+ 7
402
+ I
403
+ 7
404
+ x
405
+ 77
406
+ /home/blambeau/work/devel/alf/spec/unit/operator/signature/test_collect_on.rb
407
+ p
408
+ 0
409
+ x
410
+ 3
411
+ let
412
+ x
413
+ 9
414
+ arguments
415
+ M
416
+ 1
417
+ p
418
+ 2
419
+ x
420
+ 9
421
+ for_block
422
+ t
423
+ n
424
+ x
425
+ 8
426
+ Operator
427
+ i
428
+ 8
429
+ 5
430
+ 48
431
+ 0
432
+ 79
433
+ 49
434
+ 1
435
+ 1
436
+ 11
437
+ I
438
+ 3
439
+ I
440
+ 0
441
+ I
442
+ 0
443
+ I
444
+ 0
445
+ I
446
+ -2
447
+ p
448
+ 2
449
+ x
450
+ 7
451
+ subject
452
+ x
453
+ 2
454
+ []
455
+ p
456
+ 3
457
+ I
458
+ 0
459
+ I
460
+ 8
461
+ I
462
+ 8
463
+ x
464
+ 77
465
+ /home/blambeau/work/devel/alf/spec/unit/operator/signature/test_collect_on.rb
466
+ p
467
+ 0
468
+ x
469
+ 7
470
+ options
471
+ M
472
+ 1
473
+ p
474
+ 2
475
+ x
476
+ 9
477
+ for_block
478
+ t
479
+ n
480
+ x
481
+ 8
482
+ Operator
483
+ i
484
+ 8
485
+ 5
486
+ 48
487
+ 0
488
+ 80
489
+ 49
490
+ 1
491
+ 1
492
+ 11
493
+ I
494
+ 3
495
+ I
496
+ 0
497
+ I
498
+ 0
499
+ I
500
+ 0
501
+ I
502
+ -2
503
+ p
504
+ 2
505
+ x
506
+ 7
507
+ subject
508
+ x
509
+ 2
510
+ []
511
+ p
512
+ 3
513
+ I
514
+ 0
515
+ I
516
+ 9
517
+ I
518
+ 8
519
+ x
520
+ 77
521
+ /home/blambeau/work/devel/alf/spec/unit/operator/signature/test_collect_on.rb
522
+ p
523
+ 0
524
+ s
525
+ 15
526
+ on a nullary op
527
+ M
528
+ 1
529
+ p
530
+ 2
531
+ x
532
+ 9
533
+ for_block
534
+ t
535
+ n
536
+ x
537
+ 8
538
+ Operator
539
+ i
540
+ 18
541
+ 5
542
+ 7
543
+ 0
544
+ 56
545
+ 1
546
+ 47
547
+ 50
548
+ 2
549
+ 1
550
+ 15
551
+ 5
552
+ 56
553
+ 3
554
+ 47
555
+ 50
556
+ 4
557
+ 0
558
+ 11
559
+ I
560
+ 4
561
+ I
562
+ 0
563
+ I
564
+ 0
565
+ I
566
+ 0
567
+ I
568
+ -2
569
+ p
570
+ 5
571
+ x
572
+ 2
573
+ op
574
+ M
575
+ 1
576
+ p
577
+ 2
578
+ x
579
+ 9
580
+ for_block
581
+ t
582
+ n
583
+ x
584
+ 8
585
+ Operator
586
+ i
587
+ 27
588
+ 45
589
+ 0
590
+ 1
591
+ 49
592
+ 2
593
+ 0
594
+ 7
595
+ 3
596
+ 64
597
+ 7
598
+ 4
599
+ 64
600
+ 7
601
+ 5
602
+ 64
603
+ 7
604
+ 4
605
+ 64
606
+ 7
607
+ 6
608
+ 64
609
+ 35
610
+ 5
611
+ 49
612
+ 7
613
+ 1
614
+ 11
615
+ I
616
+ 7
617
+ I
618
+ 0
619
+ I
620
+ 0
621
+ I
622
+ 0
623
+ I
624
+ -2
625
+ p
626
+ 8
627
+ x
628
+ 3
629
+ Alf
630
+ n
631
+ x
632
+ 5
633
+ lispy
634
+ s
635
+ 9
636
+ generator
637
+ s
638
+ 2
639
+ --
640
+ s
641
+ 2
642
+ 10
643
+ s
644
+ 2
645
+ id
646
+ x
647
+ 3
648
+ run
649
+ p
650
+ 3
651
+ I
652
+ 0
653
+ I
654
+ c
655
+ I
656
+ 1b
657
+ x
658
+ 77
659
+ /home/blambeau/work/devel/alf/spec/unit/operator/signature/test_collect_on.rb
660
+ p
661
+ 0
662
+ x
663
+ 3
664
+ let
665
+ M
666
+ 1
667
+ p
668
+ 2
669
+ x
670
+ 9
671
+ for_block
672
+ t
673
+ n
674
+ x
675
+ 8
676
+ Operator
677
+ i
678
+ 28
679
+ 5
680
+ 5
681
+ 35
682
+ 0
683
+ 4
684
+ 10
685
+ 7
686
+ 0
687
+ 35
688
+ 2
689
+ 44
690
+ 43
691
+ 1
692
+ 78
693
+ 49
694
+ 2
695
+ 1
696
+ 35
697
+ 3
698
+ 47
699
+ 49
700
+ 3
701
+ 1
702
+ 47
703
+ 49
704
+ 4
705
+ 1
706
+ 11
707
+ I
708
+ 7
709
+ I
710
+ 0
711
+ I
712
+ 0
713
+ I
714
+ 0
715
+ I
716
+ -2
717
+ p
718
+ 5
719
+ x
720
+ 2
721
+ id
722
+ x
723
+ 4
724
+ Hash
725
+ x
726
+ 16
727
+ new_from_literal
728
+ x
729
+ 2
730
+ eq
731
+ x
732
+ 6
733
+ should
734
+ p
735
+ 3
736
+ I
737
+ 0
738
+ I
739
+ d
740
+ I
741
+ 1c
742
+ x
743
+ 77
744
+ /home/blambeau/work/devel/alf/spec/unit/operator/signature/test_collect_on.rb
745
+ p
746
+ 0
747
+ x
748
+ 2
749
+ it
750
+ p
751
+ 5
752
+ I
753
+ 0
754
+ I
755
+ c
756
+ I
757
+ a
758
+ I
759
+ d
760
+ I
761
+ 12
762
+ x
763
+ 77
764
+ /home/blambeau/work/devel/alf/spec/unit/operator/signature/test_collect_on.rb
765
+ p
766
+ 0
767
+ x
768
+ 8
769
+ describe
770
+ s
771
+ 29
772
+ on a monadic op, with one arg
773
+ M
774
+ 1
775
+ p
776
+ 2
777
+ x
778
+ 9
779
+ for_block
780
+ t
781
+ n
782
+ x
783
+ 8
784
+ Operator
785
+ i
786
+ 18
787
+ 5
788
+ 7
789
+ 0
790
+ 56
791
+ 1
792
+ 47
793
+ 50
794
+ 2
795
+ 1
796
+ 15
797
+ 5
798
+ 56
799
+ 3
800
+ 47
801
+ 50
802
+ 4
803
+ 0
804
+ 11
805
+ I
806
+ 4
807
+ I
808
+ 0
809
+ I
810
+ 0
811
+ I
812
+ 0
813
+ I
814
+ -2
815
+ p
816
+ 5
817
+ x
818
+ 2
819
+ op
820
+ M
821
+ 1
822
+ p
823
+ 2
824
+ x
825
+ 9
826
+ for_block
827
+ t
828
+ n
829
+ x
830
+ 8
831
+ Operator
832
+ i
833
+ 24
834
+ 45
835
+ 0
836
+ 1
837
+ 49
838
+ 2
839
+ 0
840
+ 7
841
+ 3
842
+ 64
843
+ 7
844
+ 4
845
+ 64
846
+ 7
847
+ 5
848
+ 64
849
+ 7
850
+ 6
851
+ 64
852
+ 35
853
+ 4
854
+ 49
855
+ 7
856
+ 1
857
+ 11
858
+ I
859
+ 6
860
+ I
861
+ 0
862
+ I
863
+ 0
864
+ I
865
+ 0
866
+ I
867
+ -2
868
+ p
869
+ 8
870
+ x
871
+ 3
872
+ Alf
873
+ n
874
+ x
875
+ 5
876
+ lispy
877
+ s
878
+ 7
879
+ autonum
880
+ s
881
+ 9
882
+ suppliers
883
+ s
884
+ 2
885
+ --
886
+ s
887
+ 2
888
+ id
889
+ x
890
+ 3
891
+ run
892
+ p
893
+ 3
894
+ I
895
+ 0
896
+ I
897
+ 11
898
+ I
899
+ 18
900
+ x
901
+ 77
902
+ /home/blambeau/work/devel/alf/spec/unit/operator/signature/test_collect_on.rb
903
+ p
904
+ 0
905
+ x
906
+ 3
907
+ let
908
+ M
909
+ 1
910
+ p
911
+ 2
912
+ x
913
+ 9
914
+ for_block
915
+ t
916
+ n
917
+ x
918
+ 8
919
+ Operator
920
+ i
921
+ 59
922
+ 5
923
+ 48
924
+ 0
925
+ 56
926
+ 1
927
+ 50
928
+ 2
929
+ 0
930
+ 5
931
+ 45
932
+ 3
933
+ 4
934
+ 43
935
+ 5
936
+ 35
937
+ 1
938
+ 47
939
+ 49
940
+ 6
941
+ 1
942
+ 49
943
+ 7
944
+ 1
945
+ 15
946
+ 5
947
+ 48
948
+ 8
949
+ 5
950
+ 7
951
+ 9
952
+ 35
953
+ 1
954
+ 47
955
+ 49
956
+ 6
957
+ 1
958
+ 49
959
+ 7
960
+ 1
961
+ 15
962
+ 5
963
+ 48
964
+ 10
965
+ 5
966
+ 44
967
+ 43
968
+ 11
969
+ 78
970
+ 49
971
+ 12
972
+ 1
973
+ 47
974
+ 49
975
+ 6
976
+ 1
977
+ 49
978
+ 7
979
+ 1
980
+ 11
981
+ I
982
+ 5
983
+ I
984
+ 0
985
+ I
986
+ 0
987
+ I
988
+ 0
989
+ I
990
+ -2
991
+ p
992
+ 13
993
+ x
994
+ 8
995
+ operands
996
+ M
997
+ 1
998
+ p
999
+ 2
1000
+ x
1001
+ 9
1002
+ for_block
1003
+ t
1004
+ n
1005
+ x
1006
+ 8
1007
+ Operator
1008
+ i
1009
+ 10
1010
+ 57
1011
+ 19
1012
+ 0
1013
+ 15
1014
+ 20
1015
+ 0
1016
+ 49
1017
+ 0
1018
+ 0
1019
+ 11
1020
+ I
1021
+ 3
1022
+ I
1023
+ 1
1024
+ I
1025
+ 1
1026
+ I
1027
+ 1
1028
+ n
1029
+ p
1030
+ 1
1031
+ x
1032
+ 5
1033
+ class
1034
+ p
1035
+ 3
1036
+ I
1037
+ 0
1038
+ I
1039
+ 13
1040
+ I
1041
+ a
1042
+ x
1043
+ 77
1044
+ /home/blambeau/work/devel/alf/spec/unit/operator/signature/test_collect_on.rb
1045
+ p
1046
+ 1
1047
+ x
1048
+ 1
1049
+ o
1050
+ x
1051
+ 7
1052
+ collect
1053
+ x
1054
+ 8
1055
+ Iterator
1056
+ n
1057
+ x
1058
+ 5
1059
+ Proxy
1060
+ x
1061
+ 2
1062
+ eq
1063
+ x
1064
+ 6
1065
+ should
1066
+ x
1067
+ 9
1068
+ arguments
1069
+ x
1070
+ 2
1071
+ id
1072
+ x
1073
+ 7
1074
+ options
1075
+ x
1076
+ 4
1077
+ Hash
1078
+ x
1079
+ 16
1080
+ new_from_literal
1081
+ p
1082
+ 7
1083
+ I
1084
+ 0
1085
+ I
1086
+ 13
1087
+ I
1088
+ 18
1089
+ I
1090
+ 14
1091
+ I
1092
+ 28
1093
+ I
1094
+ 15
1095
+ I
1096
+ 3b
1097
+ x
1098
+ 77
1099
+ /home/blambeau/work/devel/alf/spec/unit/operator/signature/test_collect_on.rb
1100
+ p
1101
+ 0
1102
+ x
1103
+ 7
1104
+ specify
1105
+ p
1106
+ 5
1107
+ I
1108
+ 0
1109
+ I
1110
+ 11
1111
+ I
1112
+ a
1113
+ I
1114
+ 12
1115
+ I
1116
+ 12
1117
+ x
1118
+ 77
1119
+ /home/blambeau/work/devel/alf/spec/unit/operator/signature/test_collect_on.rb
1120
+ p
1121
+ 0
1122
+ s
1123
+ 43
1124
+ on a monadic op, with one arg and an option
1125
+ M
1126
+ 1
1127
+ p
1128
+ 2
1129
+ x
1130
+ 9
1131
+ for_block
1132
+ t
1133
+ n
1134
+ x
1135
+ 8
1136
+ Operator
1137
+ i
1138
+ 18
1139
+ 5
1140
+ 7
1141
+ 0
1142
+ 56
1143
+ 1
1144
+ 47
1145
+ 50
1146
+ 2
1147
+ 1
1148
+ 15
1149
+ 5
1150
+ 56
1151
+ 3
1152
+ 47
1153
+ 50
1154
+ 4
1155
+ 0
1156
+ 11
1157
+ I
1158
+ 4
1159
+ I
1160
+ 0
1161
+ I
1162
+ 0
1163
+ I
1164
+ 0
1165
+ I
1166
+ -2
1167
+ p
1168
+ 5
1169
+ x
1170
+ 2
1171
+ op
1172
+ M
1173
+ 1
1174
+ p
1175
+ 2
1176
+ x
1177
+ 9
1178
+ for_block
1179
+ t
1180
+ n
1181
+ x
1182
+ 8
1183
+ Operator
1184
+ i
1185
+ 30
1186
+ 45
1187
+ 0
1188
+ 1
1189
+ 49
1190
+ 2
1191
+ 0
1192
+ 7
1193
+ 3
1194
+ 64
1195
+ 7
1196
+ 4
1197
+ 64
1198
+ 7
1199
+ 5
1200
+ 64
1201
+ 7
1202
+ 6
1203
+ 64
1204
+ 7
1205
+ 7
1206
+ 64
1207
+ 7
1208
+ 8
1209
+ 64
1210
+ 35
1211
+ 6
1212
+ 49
1213
+ 9
1214
+ 1
1215
+ 11
1216
+ I
1217
+ 8
1218
+ I
1219
+ 0
1220
+ I
1221
+ 0
1222
+ I
1223
+ 0
1224
+ I
1225
+ -2
1226
+ p
1227
+ 10
1228
+ x
1229
+ 3
1230
+ Alf
1231
+ n
1232
+ x
1233
+ 5
1234
+ lispy
1235
+ s
1236
+ 7
1237
+ project
1238
+ s
1239
+ 8
1240
+ --allbut
1241
+ s
1242
+ 9
1243
+ suppliers
1244
+ s
1245
+ 2
1246
+ --
1247
+ s
1248
+ 4
1249
+ name
1250
+ s
1251
+ 4
1252
+ city
1253
+ x
1254
+ 3
1255
+ run
1256
+ p
1257
+ 3
1258
+ I
1259
+ 0
1260
+ I
1261
+ 1a
1262
+ I
1263
+ 1e
1264
+ x
1265
+ 77
1266
+ /home/blambeau/work/devel/alf/spec/unit/operator/signature/test_collect_on.rb
1267
+ p
1268
+ 0
1269
+ x
1270
+ 3
1271
+ let
1272
+ M
1273
+ 1
1274
+ p
1275
+ 2
1276
+ x
1277
+ 9
1278
+ for_block
1279
+ t
1280
+ n
1281
+ x
1282
+ 8
1283
+ Operator
1284
+ i
1285
+ 101
1286
+ 5
1287
+ 48
1288
+ 0
1289
+ 56
1290
+ 1
1291
+ 50
1292
+ 2
1293
+ 0
1294
+ 5
1295
+ 45
1296
+ 3
1297
+ 4
1298
+ 43
1299
+ 5
1300
+ 35
1301
+ 1
1302
+ 47
1303
+ 49
1304
+ 6
1305
+ 1
1306
+ 49
1307
+ 7
1308
+ 1
1309
+ 15
1310
+ 5
1311
+ 48
1312
+ 8
1313
+ 5
1314
+ 45
1315
+ 9
1316
+ 10
1317
+ 13
1318
+ 71
1319
+ 11
1320
+ 47
1321
+ 9
1322
+ 55
1323
+ 47
1324
+ 49
1325
+ 12
1326
+ 0
1327
+ 13
1328
+ 7
1329
+ 13
1330
+ 7
1331
+ 14
1332
+ 35
1333
+ 2
1334
+ 47
1335
+ 49
1336
+ 15
1337
+ 1
1338
+ 15
1339
+ 8
1340
+ 64
1341
+ 7
1342
+ 13
1343
+ 7
1344
+ 14
1345
+ 35
1346
+ 2
1347
+ 49
1348
+ 11
1349
+ 1
1350
+ 35
1351
+ 1
1352
+ 47
1353
+ 49
1354
+ 6
1355
+ 1
1356
+ 49
1357
+ 7
1358
+ 1
1359
+ 15
1360
+ 5
1361
+ 48
1362
+ 16
1363
+ 5
1364
+ 44
1365
+ 43
1366
+ 17
1367
+ 79
1368
+ 49
1369
+ 18
1370
+ 1
1371
+ 13
1372
+ 7
1373
+ 19
1374
+ 2
1375
+ 49
1376
+ 20
1377
+ 2
1378
+ 15
1379
+ 47
1380
+ 49
1381
+ 6
1382
+ 1
1383
+ 49
1384
+ 7
1385
+ 1
1386
+ 11
1387
+ I
1388
+ 7
1389
+ I
1390
+ 0
1391
+ I
1392
+ 0
1393
+ I
1394
+ 0
1395
+ I
1396
+ -2
1397
+ p
1398
+ 21
1399
+ x
1400
+ 8
1401
+ operands
1402
+ M
1403
+ 1
1404
+ p
1405
+ 2
1406
+ x
1407
+ 9
1408
+ for_block
1409
+ t
1410
+ n
1411
+ x
1412
+ 8
1413
+ Operator
1414
+ i
1415
+ 10
1416
+ 57
1417
+ 19
1418
+ 0
1419
+ 15
1420
+ 20
1421
+ 0
1422
+ 49
1423
+ 0
1424
+ 0
1425
+ 11
1426
+ I
1427
+ 3
1428
+ I
1429
+ 1
1430
+ I
1431
+ 1
1432
+ I
1433
+ 1
1434
+ n
1435
+ p
1436
+ 1
1437
+ x
1438
+ 5
1439
+ class
1440
+ p
1441
+ 3
1442
+ I
1443
+ 0
1444
+ I
1445
+ 1c
1446
+ I
1447
+ a
1448
+ x
1449
+ 77
1450
+ /home/blambeau/work/devel/alf/spec/unit/operator/signature/test_collect_on.rb
1451
+ p
1452
+ 1
1453
+ x
1454
+ 1
1455
+ o
1456
+ x
1457
+ 7
1458
+ collect
1459
+ x
1460
+ 8
1461
+ Iterator
1462
+ n
1463
+ x
1464
+ 5
1465
+ Proxy
1466
+ x
1467
+ 2
1468
+ eq
1469
+ x
1470
+ 6
1471
+ should
1472
+ x
1473
+ 9
1474
+ arguments
1475
+ x
1476
+ 8
1477
+ AttrList
1478
+ n
1479
+ x
1480
+ 3
1481
+ new
1482
+ x
1483
+ 8
1484
+ allocate
1485
+ x
1486
+ 4
1487
+ name
1488
+ x
1489
+ 4
1490
+ city
1491
+ x
1492
+ 10
1493
+ initialize
1494
+ x
1495
+ 7
1496
+ options
1497
+ x
1498
+ 4
1499
+ Hash
1500
+ x
1501
+ 16
1502
+ new_from_literal
1503
+ x
1504
+ 6
1505
+ allbut
1506
+ x
1507
+ 3
1508
+ []=
1509
+ p
1510
+ 7
1511
+ I
1512
+ 0
1513
+ I
1514
+ 1c
1515
+ I
1516
+ 18
1517
+ I
1518
+ 1d
1519
+ I
1520
+ 4a
1521
+ I
1522
+ 1e
1523
+ I
1524
+ 65
1525
+ x
1526
+ 77
1527
+ /home/blambeau/work/devel/alf/spec/unit/operator/signature/test_collect_on.rb
1528
+ p
1529
+ 0
1530
+ x
1531
+ 7
1532
+ specify
1533
+ p
1534
+ 5
1535
+ I
1536
+ 0
1537
+ I
1538
+ 1a
1539
+ I
1540
+ a
1541
+ I
1542
+ 1b
1543
+ I
1544
+ 12
1545
+ x
1546
+ 77
1547
+ /home/blambeau/work/devel/alf/spec/unit/operator/signature/test_collect_on.rb
1548
+ p
1549
+ 0
1550
+ s
1551
+ 14
1552
+ on a dyadic op
1553
+ M
1554
+ 1
1555
+ p
1556
+ 2
1557
+ x
1558
+ 9
1559
+ for_block
1560
+ t
1561
+ n
1562
+ x
1563
+ 8
1564
+ Operator
1565
+ i
1566
+ 18
1567
+ 5
1568
+ 7
1569
+ 0
1570
+ 56
1571
+ 1
1572
+ 47
1573
+ 50
1574
+ 2
1575
+ 1
1576
+ 15
1577
+ 5
1578
+ 56
1579
+ 3
1580
+ 47
1581
+ 50
1582
+ 4
1583
+ 0
1584
+ 11
1585
+ I
1586
+ 4
1587
+ I
1588
+ 0
1589
+ I
1590
+ 0
1591
+ I
1592
+ 0
1593
+ I
1594
+ -2
1595
+ p
1596
+ 5
1597
+ x
1598
+ 2
1599
+ op
1600
+ M
1601
+ 1
1602
+ p
1603
+ 2
1604
+ x
1605
+ 9
1606
+ for_block
1607
+ t
1608
+ n
1609
+ x
1610
+ 8
1611
+ Operator
1612
+ i
1613
+ 21
1614
+ 45
1615
+ 0
1616
+ 1
1617
+ 49
1618
+ 2
1619
+ 0
1620
+ 7
1621
+ 3
1622
+ 64
1623
+ 7
1624
+ 4
1625
+ 64
1626
+ 7
1627
+ 5
1628
+ 64
1629
+ 35
1630
+ 3
1631
+ 49
1632
+ 6
1633
+ 1
1634
+ 11
1635
+ I
1636
+ 5
1637
+ I
1638
+ 0
1639
+ I
1640
+ 0
1641
+ I
1642
+ 0
1643
+ I
1644
+ -2
1645
+ p
1646
+ 7
1647
+ x
1648
+ 3
1649
+ Alf
1650
+ n
1651
+ x
1652
+ 5
1653
+ lispy
1654
+ s
1655
+ 4
1656
+ join
1657
+ s
1658
+ 9
1659
+ suppliers
1660
+ s
1661
+ 6
1662
+ cities
1663
+ x
1664
+ 3
1665
+ run
1666
+ p
1667
+ 3
1668
+ I
1669
+ 0
1670
+ I
1671
+ 23
1672
+ I
1673
+ 15
1674
+ x
1675
+ 77
1676
+ /home/blambeau/work/devel/alf/spec/unit/operator/signature/test_collect_on.rb
1677
+ p
1678
+ 0
1679
+ x
1680
+ 3
1681
+ let
1682
+ M
1683
+ 1
1684
+ p
1685
+ 2
1686
+ x
1687
+ 9
1688
+ for_block
1689
+ t
1690
+ n
1691
+ x
1692
+ 8
1693
+ Operator
1694
+ i
1695
+ 62
1696
+ 5
1697
+ 48
1698
+ 0
1699
+ 56
1700
+ 1
1701
+ 50
1702
+ 2
1703
+ 0
1704
+ 5
1705
+ 45
1706
+ 3
1707
+ 4
1708
+ 43
1709
+ 5
1710
+ 45
1711
+ 3
1712
+ 6
1713
+ 43
1714
+ 5
1715
+ 35
1716
+ 2
1717
+ 47
1718
+ 49
1719
+ 7
1720
+ 1
1721
+ 49
1722
+ 8
1723
+ 1
1724
+ 15
1725
+ 5
1726
+ 48
1727
+ 9
1728
+ 5
1729
+ 35
1730
+ 0
1731
+ 47
1732
+ 49
1733
+ 7
1734
+ 1
1735
+ 49
1736
+ 8
1737
+ 1
1738
+ 15
1739
+ 5
1740
+ 48
1741
+ 10
1742
+ 5
1743
+ 44
1744
+ 43
1745
+ 11
1746
+ 78
1747
+ 49
1748
+ 12
1749
+ 1
1750
+ 47
1751
+ 49
1752
+ 7
1753
+ 1
1754
+ 49
1755
+ 8
1756
+ 1
1757
+ 11
1758
+ I
1759
+ 5
1760
+ I
1761
+ 0
1762
+ I
1763
+ 0
1764
+ I
1765
+ 0
1766
+ I
1767
+ -2
1768
+ p
1769
+ 13
1770
+ x
1771
+ 8
1772
+ operands
1773
+ M
1774
+ 1
1775
+ p
1776
+ 2
1777
+ x
1778
+ 9
1779
+ for_block
1780
+ t
1781
+ n
1782
+ x
1783
+ 8
1784
+ Operator
1785
+ i
1786
+ 10
1787
+ 57
1788
+ 19
1789
+ 0
1790
+ 15
1791
+ 20
1792
+ 0
1793
+ 49
1794
+ 0
1795
+ 0
1796
+ 11
1797
+ I
1798
+ 3
1799
+ I
1800
+ 1
1801
+ I
1802
+ 1
1803
+ I
1804
+ 1
1805
+ n
1806
+ p
1807
+ 1
1808
+ x
1809
+ 5
1810
+ class
1811
+ p
1812
+ 3
1813
+ I
1814
+ 0
1815
+ I
1816
+ 25
1817
+ I
1818
+ a
1819
+ x
1820
+ 77
1821
+ /home/blambeau/work/devel/alf/spec/unit/operator/signature/test_collect_on.rb
1822
+ p
1823
+ 1
1824
+ x
1825
+ 1
1826
+ o
1827
+ x
1828
+ 7
1829
+ collect
1830
+ x
1831
+ 8
1832
+ Iterator
1833
+ n
1834
+ x
1835
+ 5
1836
+ Proxy
1837
+ n
1838
+ x
1839
+ 2
1840
+ eq
1841
+ x
1842
+ 6
1843
+ should
1844
+ x
1845
+ 9
1846
+ arguments
1847
+ x
1848
+ 7
1849
+ options
1850
+ x
1851
+ 4
1852
+ Hash
1853
+ x
1854
+ 16
1855
+ new_from_literal
1856
+ p
1857
+ 7
1858
+ I
1859
+ 0
1860
+ I
1861
+ 25
1862
+ I
1863
+ 1d
1864
+ I
1865
+ 26
1866
+ I
1867
+ 2b
1868
+ I
1869
+ 27
1870
+ I
1871
+ 3e
1872
+ x
1873
+ 77
1874
+ /home/blambeau/work/devel/alf/spec/unit/operator/signature/test_collect_on.rb
1875
+ p
1876
+ 0
1877
+ x
1878
+ 7
1879
+ specify
1880
+ p
1881
+ 5
1882
+ I
1883
+ 0
1884
+ I
1885
+ 23
1886
+ I
1887
+ a
1888
+ I
1889
+ 24
1890
+ I
1891
+ 12
1892
+ x
1893
+ 77
1894
+ /home/blambeau/work/devel/alf/spec/unit/operator/signature/test_collect_on.rb
1895
+ p
1896
+ 0
1897
+ p
1898
+ 17
1899
+ I
1900
+ 0
1901
+ I
1902
+ 6
1903
+ I
1904
+ 8
1905
+ I
1906
+ 7
1907
+ I
1908
+ 12
1909
+ I
1910
+ 8
1911
+ I
1912
+ 1c
1913
+ I
1914
+ 9
1915
+ I
1916
+ 26
1917
+ I
1918
+ b
1919
+ I
1920
+ 31
1921
+ I
1922
+ 10
1923
+ I
1924
+ 3c
1925
+ I
1926
+ 19
1927
+ I
1928
+ 47
1929
+ I
1930
+ 22
1931
+ I
1932
+ 52
1933
+ x
1934
+ 77
1935
+ /home/blambeau/work/devel/alf/spec/unit/operator/signature/test_collect_on.rb
1936
+ p
1937
+ 0
1938
+ x
1939
+ 8
1940
+ describe
1941
+ p
1942
+ 3
1943
+ I
1944
+ 2
1945
+ I
1946
+ 4
1947
+ I
1948
+ 10
1949
+ x
1950
+ 77
1951
+ /home/blambeau/work/devel/alf/spec/unit/operator/signature/test_collect_on.rb
1952
+ p
1953
+ 0
1954
+ x
1955
+ 13
1956
+ attach_method
1957
+ p
1958
+ 3
1959
+ I
1960
+ 2
1961
+ I
1962
+ 3
1963
+ I
1964
+ 1c
1965
+ x
1966
+ 77
1967
+ /home/blambeau/work/devel/alf/spec/unit/operator/signature/test_collect_on.rb
1968
+ p
1969
+ 0
1970
+ x
1971
+ 13
1972
+ attach_method
1973
+ p
1974
+ 5
1975
+ I
1976
+ 0
1977
+ I
1978
+ 1
1979
+ I
1980
+ 9
1981
+ I
1982
+ 2
1983
+ I
1984
+ 25
1985
+ x
1986
+ 77
1987
+ /home/blambeau/work/devel/alf/spec/unit/operator/signature/test_collect_on.rb
1988
+ p
1989
+ 0