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