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