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,1686 @@
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
+ 16
85
+ 5
86
+ 66
87
+ 5
88
+ 45
89
+ 0
90
+ 1
91
+ 7
92
+ 2
93
+ 64
94
+ 56
95
+ 3
96
+ 47
97
+ 50
98
+ 4
99
+ 2
100
+ 11
101
+ I
102
+ 4
103
+ I
104
+ 0
105
+ I
106
+ 0
107
+ I
108
+ 0
109
+ n
110
+ p
111
+ 5
112
+ x
113
+ 5
114
+ Lispy
115
+ n
116
+ s
117
+ 10
118
+ Tuple(...)
119
+ M
120
+ 1
121
+ p
122
+ 2
123
+ x
124
+ 9
125
+ for_block
126
+ t
127
+ n
128
+ x
129
+ 3
130
+ Alf
131
+ i
132
+ 73
133
+ 5
134
+ 7
135
+ 0
136
+ 56
137
+ 1
138
+ 47
139
+ 50
140
+ 2
141
+ 1
142
+ 15
143
+ 5
144
+ 56
145
+ 3
146
+ 47
147
+ 50
148
+ 4
149
+ 0
150
+ 15
151
+ 5
152
+ 7
153
+ 5
154
+ 64
155
+ 56
156
+ 6
157
+ 47
158
+ 50
159
+ 7
160
+ 1
161
+ 15
162
+ 5
163
+ 7
164
+ 8
165
+ 64
166
+ 56
167
+ 9
168
+ 47
169
+ 50
170
+ 7
171
+ 1
172
+ 15
173
+ 5
174
+ 7
175
+ 10
176
+ 64
177
+ 56
178
+ 11
179
+ 47
180
+ 50
181
+ 7
182
+ 1
183
+ 15
184
+ 5
185
+ 7
186
+ 12
187
+ 64
188
+ 56
189
+ 13
190
+ 47
191
+ 50
192
+ 7
193
+ 1
194
+ 15
195
+ 5
196
+ 7
197
+ 14
198
+ 64
199
+ 56
200
+ 15
201
+ 47
202
+ 50
203
+ 7
204
+ 1
205
+ 11
206
+ I
207
+ 4
208
+ I
209
+ 0
210
+ I
211
+ 0
212
+ I
213
+ 0
214
+ I
215
+ -2
216
+ p
217
+ 16
218
+ x
219
+ 5
220
+ lispy
221
+ M
222
+ 1
223
+ p
224
+ 2
225
+ x
226
+ 9
227
+ for_block
228
+ t
229
+ n
230
+ x
231
+ 3
232
+ Alf
233
+ i
234
+ 7
235
+ 45
236
+ 0
237
+ 1
238
+ 49
239
+ 2
240
+ 0
241
+ 11
242
+ I
243
+ 2
244
+ I
245
+ 0
246
+ I
247
+ 0
248
+ I
249
+ 0
250
+ I
251
+ -2
252
+ p
253
+ 3
254
+ x
255
+ 3
256
+ Alf
257
+ n
258
+ x
259
+ 5
260
+ lispy
261
+ p
262
+ 3
263
+ I
264
+ 0
265
+ I
266
+ 4
267
+ I
268
+ 7
269
+ x
270
+ 59
271
+ /home/blambeau/work/devel/alf/spec/unit/lispy/test_tuple.rb
272
+ p
273
+ 0
274
+ x
275
+ 3
276
+ let
277
+ M
278
+ 1
279
+ p
280
+ 2
281
+ x
282
+ 9
283
+ for_block
284
+ t
285
+ n
286
+ x
287
+ 3
288
+ Alf
289
+ i
290
+ 10
291
+ 5
292
+ 48
293
+ 0
294
+ 5
295
+ 48
296
+ 1
297
+ 49
298
+ 2
299
+ 1
300
+ 11
301
+ I
302
+ 3
303
+ I
304
+ 0
305
+ I
306
+ 0
307
+ I
308
+ 0
309
+ I
310
+ -2
311
+ p
312
+ 3
313
+ x
314
+ 5
315
+ lispy
316
+ x
317
+ 1
318
+ h
319
+ x
320
+ 5
321
+ Tuple
322
+ p
323
+ 3
324
+ I
325
+ 0
326
+ I
327
+ 5
328
+ I
329
+ a
330
+ x
331
+ 59
332
+ /home/blambeau/work/devel/alf/spec/unit/lispy/test_tuple.rb
333
+ p
334
+ 0
335
+ x
336
+ 7
337
+ subject
338
+ s
339
+ 17
340
+ on an empty tuple
341
+ M
342
+ 1
343
+ p
344
+ 2
345
+ x
346
+ 9
347
+ for_block
348
+ t
349
+ n
350
+ x
351
+ 3
352
+ Alf
353
+ i
354
+ 18
355
+ 5
356
+ 7
357
+ 0
358
+ 56
359
+ 1
360
+ 47
361
+ 50
362
+ 2
363
+ 1
364
+ 15
365
+ 5
366
+ 56
367
+ 3
368
+ 47
369
+ 50
370
+ 4
371
+ 0
372
+ 11
373
+ I
374
+ 4
375
+ I
376
+ 0
377
+ I
378
+ 0
379
+ I
380
+ 0
381
+ I
382
+ -2
383
+ p
384
+ 5
385
+ x
386
+ 1
387
+ h
388
+ M
389
+ 1
390
+ p
391
+ 2
392
+ x
393
+ 9
394
+ for_block
395
+ t
396
+ n
397
+ x
398
+ 3
399
+ Alf
400
+ i
401
+ 8
402
+ 44
403
+ 43
404
+ 0
405
+ 78
406
+ 49
407
+ 1
408
+ 1
409
+ 11
410
+ I
411
+ 3
412
+ I
413
+ 0
414
+ I
415
+ 0
416
+ I
417
+ 0
418
+ I
419
+ -2
420
+ p
421
+ 2
422
+ x
423
+ 4
424
+ Hash
425
+ x
426
+ 16
427
+ new_from_literal
428
+ p
429
+ 3
430
+ I
431
+ 0
432
+ I
433
+ 8
434
+ I
435
+ 8
436
+ x
437
+ 59
438
+ /home/blambeau/work/devel/alf/spec/unit/lispy/test_tuple.rb
439
+ p
440
+ 0
441
+ x
442
+ 3
443
+ let
444
+ M
445
+ 1
446
+ p
447
+ 2
448
+ x
449
+ 9
450
+ for_block
451
+ t
452
+ n
453
+ x
454
+ 3
455
+ Alf
456
+ i
457
+ 18
458
+ 5
459
+ 5
460
+ 44
461
+ 43
462
+ 0
463
+ 78
464
+ 49
465
+ 1
466
+ 1
467
+ 47
468
+ 49
469
+ 2
470
+ 1
471
+ 47
472
+ 49
473
+ 3
474
+ 1
475
+ 11
476
+ I
477
+ 5
478
+ I
479
+ 0
480
+ I
481
+ 0
482
+ I
483
+ 0
484
+ I
485
+ -2
486
+ p
487
+ 4
488
+ x
489
+ 4
490
+ Hash
491
+ x
492
+ 16
493
+ new_from_literal
494
+ x
495
+ 2
496
+ eq
497
+ x
498
+ 6
499
+ should
500
+ p
501
+ 3
502
+ I
503
+ 0
504
+ I
505
+ 9
506
+ I
507
+ 12
508
+ x
509
+ 59
510
+ /home/blambeau/work/devel/alf/spec/unit/lispy/test_tuple.rb
511
+ p
512
+ 0
513
+ x
514
+ 2
515
+ it
516
+ p
517
+ 5
518
+ I
519
+ 0
520
+ I
521
+ 8
522
+ I
523
+ a
524
+ I
525
+ 9
526
+ I
527
+ 12
528
+ x
529
+ 59
530
+ /home/blambeau/work/devel/alf/spec/unit/lispy/test_tuple.rb
531
+ p
532
+ 0
533
+ x
534
+ 8
535
+ describe
536
+ s
537
+ 17
538
+ on an valid tuple
539
+ M
540
+ 1
541
+ p
542
+ 2
543
+ x
544
+ 9
545
+ for_block
546
+ t
547
+ n
548
+ x
549
+ 3
550
+ Alf
551
+ i
552
+ 18
553
+ 5
554
+ 7
555
+ 0
556
+ 56
557
+ 1
558
+ 47
559
+ 50
560
+ 2
561
+ 1
562
+ 15
563
+ 5
564
+ 56
565
+ 3
566
+ 47
567
+ 50
568
+ 4
569
+ 0
570
+ 11
571
+ I
572
+ 4
573
+ I
574
+ 0
575
+ I
576
+ 0
577
+ I
578
+ 0
579
+ I
580
+ -2
581
+ p
582
+ 5
583
+ x
584
+ 1
585
+ h
586
+ M
587
+ 1
588
+ p
589
+ 2
590
+ x
591
+ 9
592
+ for_block
593
+ t
594
+ n
595
+ x
596
+ 3
597
+ Alf
598
+ i
599
+ 18
600
+ 44
601
+ 43
602
+ 0
603
+ 79
604
+ 49
605
+ 1
606
+ 1
607
+ 13
608
+ 7
609
+ 2
610
+ 7
611
+ 3
612
+ 64
613
+ 49
614
+ 4
615
+ 2
616
+ 15
617
+ 11
618
+ I
619
+ 5
620
+ I
621
+ 0
622
+ I
623
+ 0
624
+ I
625
+ 0
626
+ I
627
+ -2
628
+ p
629
+ 5
630
+ x
631
+ 4
632
+ Hash
633
+ x
634
+ 16
635
+ new_from_literal
636
+ x
637
+ 4
638
+ name
639
+ s
640
+ 3
641
+ Alf
642
+ x
643
+ 3
644
+ []=
645
+ p
646
+ 3
647
+ I
648
+ 0
649
+ I
650
+ d
651
+ I
652
+ 12
653
+ x
654
+ 59
655
+ /home/blambeau/work/devel/alf/spec/unit/lispy/test_tuple.rb
656
+ p
657
+ 0
658
+ x
659
+ 3
660
+ let
661
+ M
662
+ 1
663
+ p
664
+ 2
665
+ x
666
+ 9
667
+ for_block
668
+ t
669
+ n
670
+ x
671
+ 3
672
+ Alf
673
+ i
674
+ 28
675
+ 5
676
+ 5
677
+ 44
678
+ 43
679
+ 0
680
+ 79
681
+ 49
682
+ 1
683
+ 1
684
+ 13
685
+ 7
686
+ 2
687
+ 7
688
+ 3
689
+ 64
690
+ 49
691
+ 4
692
+ 2
693
+ 15
694
+ 47
695
+ 49
696
+ 5
697
+ 1
698
+ 47
699
+ 49
700
+ 6
701
+ 1
702
+ 11
703
+ I
704
+ 7
705
+ I
706
+ 0
707
+ I
708
+ 0
709
+ I
710
+ 0
711
+ I
712
+ -2
713
+ p
714
+ 7
715
+ x
716
+ 4
717
+ Hash
718
+ x
719
+ 16
720
+ new_from_literal
721
+ x
722
+ 4
723
+ name
724
+ s
725
+ 3
726
+ Alf
727
+ x
728
+ 3
729
+ []=
730
+ x
731
+ 2
732
+ eq
733
+ x
734
+ 6
735
+ should
736
+ p
737
+ 3
738
+ I
739
+ 0
740
+ I
741
+ e
742
+ I
743
+ 1c
744
+ x
745
+ 59
746
+ /home/blambeau/work/devel/alf/spec/unit/lispy/test_tuple.rb
747
+ p
748
+ 0
749
+ x
750
+ 2
751
+ it
752
+ p
753
+ 5
754
+ I
755
+ 0
756
+ I
757
+ d
758
+ I
759
+ a
760
+ I
761
+ e
762
+ I
763
+ 12
764
+ x
765
+ 59
766
+ /home/blambeau/work/devel/alf/spec/unit/lispy/test_tuple.rb
767
+ p
768
+ 0
769
+ s
770
+ 35
771
+ on an invalid tuple because of keys
772
+ M
773
+ 1
774
+ p
775
+ 2
776
+ x
777
+ 9
778
+ for_block
779
+ t
780
+ n
781
+ x
782
+ 3
783
+ Alf
784
+ i
785
+ 18
786
+ 5
787
+ 7
788
+ 0
789
+ 56
790
+ 1
791
+ 47
792
+ 50
793
+ 2
794
+ 1
795
+ 15
796
+ 5
797
+ 56
798
+ 3
799
+ 47
800
+ 50
801
+ 4
802
+ 0
803
+ 11
804
+ I
805
+ 4
806
+ I
807
+ 0
808
+ I
809
+ 0
810
+ I
811
+ 0
812
+ I
813
+ -2
814
+ p
815
+ 5
816
+ x
817
+ 1
818
+ h
819
+ M
820
+ 1
821
+ p
822
+ 2
823
+ x
824
+ 9
825
+ for_block
826
+ t
827
+ n
828
+ x
829
+ 3
830
+ Alf
831
+ i
832
+ 18
833
+ 44
834
+ 43
835
+ 0
836
+ 79
837
+ 49
838
+ 1
839
+ 1
840
+ 13
841
+ 4
842
+ 12
843
+ 7
844
+ 2
845
+ 64
846
+ 49
847
+ 3
848
+ 2
849
+ 15
850
+ 11
851
+ I
852
+ 5
853
+ I
854
+ 0
855
+ I
856
+ 0
857
+ I
858
+ 0
859
+ I
860
+ -2
861
+ p
862
+ 4
863
+ x
864
+ 4
865
+ Hash
866
+ x
867
+ 16
868
+ new_from_literal
869
+ s
870
+ 3
871
+ Alf
872
+ x
873
+ 3
874
+ []=
875
+ p
876
+ 3
877
+ I
878
+ 0
879
+ I
880
+ 12
881
+ I
882
+ 12
883
+ x
884
+ 59
885
+ /home/blambeau/work/devel/alf/spec/unit/lispy/test_tuple.rb
886
+ p
887
+ 0
888
+ x
889
+ 3
890
+ let
891
+ M
892
+ 1
893
+ p
894
+ 2
895
+ x
896
+ 9
897
+ for_block
898
+ t
899
+ n
900
+ x
901
+ 3
902
+ Alf
903
+ i
904
+ 19
905
+ 5
906
+ 56
907
+ 0
908
+ 47
909
+ 50
910
+ 1
911
+ 0
912
+ 5
913
+ 45
914
+ 2
915
+ 3
916
+ 47
917
+ 49
918
+ 4
919
+ 1
920
+ 49
921
+ 5
922
+ 1
923
+ 11
924
+ I
925
+ 4
926
+ I
927
+ 0
928
+ I
929
+ 0
930
+ I
931
+ 0
932
+ I
933
+ -2
934
+ p
935
+ 6
936
+ M
937
+ 1
938
+ p
939
+ 2
940
+ x
941
+ 9
942
+ for_block
943
+ t
944
+ n
945
+ x
946
+ 3
947
+ Alf
948
+ i
949
+ 4
950
+ 5
951
+ 48
952
+ 0
953
+ 11
954
+ I
955
+ 2
956
+ I
957
+ 0
958
+ I
959
+ 0
960
+ I
961
+ 0
962
+ I
963
+ -2
964
+ p
965
+ 1
966
+ x
967
+ 7
968
+ subject
969
+ p
970
+ 3
971
+ I
972
+ 0
973
+ I
974
+ 13
975
+ I
976
+ 4
977
+ x
978
+ 59
979
+ /home/blambeau/work/devel/alf/spec/unit/lispy/test_tuple.rb
980
+ p
981
+ 0
982
+ x
983
+ 6
984
+ lambda
985
+ x
986
+ 13
987
+ ArgumentError
988
+ n
989
+ x
990
+ 11
991
+ raise_error
992
+ x
993
+ 6
994
+ should
995
+ p
996
+ 3
997
+ I
998
+ 0
999
+ I
1000
+ 13
1001
+ I
1002
+ 13
1003
+ x
1004
+ 59
1005
+ /home/blambeau/work/devel/alf/spec/unit/lispy/test_tuple.rb
1006
+ p
1007
+ 0
1008
+ x
1009
+ 7
1010
+ specify
1011
+ p
1012
+ 5
1013
+ I
1014
+ 0
1015
+ I
1016
+ 12
1017
+ I
1018
+ a
1019
+ I
1020
+ 13
1021
+ I
1022
+ 12
1023
+ x
1024
+ 59
1025
+ /home/blambeau/work/devel/alf/spec/unit/lispy/test_tuple.rb
1026
+ p
1027
+ 0
1028
+ s
1029
+ 37
1030
+ on an invalid tuple because of values
1031
+ M
1032
+ 1
1033
+ p
1034
+ 2
1035
+ x
1036
+ 9
1037
+ for_block
1038
+ t
1039
+ n
1040
+ x
1041
+ 3
1042
+ Alf
1043
+ i
1044
+ 18
1045
+ 5
1046
+ 7
1047
+ 0
1048
+ 56
1049
+ 1
1050
+ 47
1051
+ 50
1052
+ 2
1053
+ 1
1054
+ 15
1055
+ 5
1056
+ 56
1057
+ 3
1058
+ 47
1059
+ 50
1060
+ 4
1061
+ 0
1062
+ 11
1063
+ I
1064
+ 4
1065
+ I
1066
+ 0
1067
+ I
1068
+ 0
1069
+ I
1070
+ 0
1071
+ I
1072
+ -2
1073
+ p
1074
+ 5
1075
+ x
1076
+ 1
1077
+ h
1078
+ M
1079
+ 1
1080
+ p
1081
+ 2
1082
+ x
1083
+ 9
1084
+ for_block
1085
+ t
1086
+ n
1087
+ x
1088
+ 3
1089
+ Alf
1090
+ i
1091
+ 16
1092
+ 44
1093
+ 43
1094
+ 0
1095
+ 79
1096
+ 49
1097
+ 1
1098
+ 1
1099
+ 13
1100
+ 7
1101
+ 2
1102
+ 1
1103
+ 49
1104
+ 3
1105
+ 2
1106
+ 15
1107
+ 11
1108
+ I
1109
+ 5
1110
+ I
1111
+ 0
1112
+ I
1113
+ 0
1114
+ I
1115
+ 0
1116
+ I
1117
+ -2
1118
+ p
1119
+ 4
1120
+ x
1121
+ 4
1122
+ Hash
1123
+ x
1124
+ 16
1125
+ new_from_literal
1126
+ x
1127
+ 4
1128
+ name
1129
+ x
1130
+ 3
1131
+ []=
1132
+ p
1133
+ 3
1134
+ I
1135
+ 0
1136
+ I
1137
+ 17
1138
+ I
1139
+ 10
1140
+ x
1141
+ 59
1142
+ /home/blambeau/work/devel/alf/spec/unit/lispy/test_tuple.rb
1143
+ p
1144
+ 0
1145
+ x
1146
+ 3
1147
+ let
1148
+ M
1149
+ 1
1150
+ p
1151
+ 2
1152
+ x
1153
+ 9
1154
+ for_block
1155
+ t
1156
+ n
1157
+ x
1158
+ 3
1159
+ Alf
1160
+ i
1161
+ 19
1162
+ 5
1163
+ 56
1164
+ 0
1165
+ 47
1166
+ 50
1167
+ 1
1168
+ 0
1169
+ 5
1170
+ 45
1171
+ 2
1172
+ 3
1173
+ 47
1174
+ 49
1175
+ 4
1176
+ 1
1177
+ 49
1178
+ 5
1179
+ 1
1180
+ 11
1181
+ I
1182
+ 4
1183
+ I
1184
+ 0
1185
+ I
1186
+ 0
1187
+ I
1188
+ 0
1189
+ I
1190
+ -2
1191
+ p
1192
+ 6
1193
+ M
1194
+ 1
1195
+ p
1196
+ 2
1197
+ x
1198
+ 9
1199
+ for_block
1200
+ t
1201
+ n
1202
+ x
1203
+ 3
1204
+ Alf
1205
+ i
1206
+ 4
1207
+ 5
1208
+ 48
1209
+ 0
1210
+ 11
1211
+ I
1212
+ 2
1213
+ I
1214
+ 0
1215
+ I
1216
+ 0
1217
+ I
1218
+ 0
1219
+ I
1220
+ -2
1221
+ p
1222
+ 1
1223
+ x
1224
+ 7
1225
+ subject
1226
+ p
1227
+ 3
1228
+ I
1229
+ 0
1230
+ I
1231
+ 18
1232
+ I
1233
+ 4
1234
+ x
1235
+ 59
1236
+ /home/blambeau/work/devel/alf/spec/unit/lispy/test_tuple.rb
1237
+ p
1238
+ 0
1239
+ x
1240
+ 6
1241
+ lambda
1242
+ x
1243
+ 13
1244
+ ArgumentError
1245
+ n
1246
+ x
1247
+ 11
1248
+ raise_error
1249
+ x
1250
+ 6
1251
+ should
1252
+ p
1253
+ 3
1254
+ I
1255
+ 0
1256
+ I
1257
+ 18
1258
+ I
1259
+ 13
1260
+ x
1261
+ 59
1262
+ /home/blambeau/work/devel/alf/spec/unit/lispy/test_tuple.rb
1263
+ p
1264
+ 0
1265
+ x
1266
+ 7
1267
+ specify
1268
+ p
1269
+ 5
1270
+ I
1271
+ 0
1272
+ I
1273
+ 17
1274
+ I
1275
+ a
1276
+ I
1277
+ 18
1278
+ I
1279
+ 12
1280
+ x
1281
+ 59
1282
+ /home/blambeau/work/devel/alf/spec/unit/lispy/test_tuple.rb
1283
+ p
1284
+ 0
1285
+ s
1286
+ 28
1287
+ on the documentation example
1288
+ M
1289
+ 1
1290
+ p
1291
+ 2
1292
+ x
1293
+ 9
1294
+ for_block
1295
+ t
1296
+ n
1297
+ x
1298
+ 3
1299
+ Alf
1300
+ i
1301
+ 8
1302
+ 5
1303
+ 56
1304
+ 0
1305
+ 47
1306
+ 50
1307
+ 1
1308
+ 0
1309
+ 11
1310
+ I
1311
+ 3
1312
+ I
1313
+ 0
1314
+ I
1315
+ 0
1316
+ I
1317
+ 0
1318
+ I
1319
+ -2
1320
+ p
1321
+ 2
1322
+ M
1323
+ 1
1324
+ p
1325
+ 2
1326
+ x
1327
+ 9
1328
+ for_block
1329
+ t
1330
+ n
1331
+ x
1332
+ 3
1333
+ Alf
1334
+ i
1335
+ 63
1336
+ 5
1337
+ 48
1338
+ 0
1339
+ 56
1340
+ 1
1341
+ 50
1342
+ 2
1343
+ 0
1344
+ 5
1345
+ 44
1346
+ 43
1347
+ 3
1348
+ 4
1349
+ 4
1350
+ 49
1351
+ 4
1352
+ 1
1353
+ 13
1354
+ 7
1355
+ 5
1356
+ 7
1357
+ 6
1358
+ 64
1359
+ 49
1360
+ 7
1361
+ 2
1362
+ 15
1363
+ 13
1364
+ 7
1365
+ 8
1366
+ 7
1367
+ 9
1368
+ 64
1369
+ 49
1370
+ 7
1371
+ 2
1372
+ 15
1373
+ 13
1374
+ 7
1375
+ 10
1376
+ 7
1377
+ 11
1378
+ 64
1379
+ 49
1380
+ 7
1381
+ 2
1382
+ 15
1383
+ 13
1384
+ 7
1385
+ 12
1386
+ 2
1387
+ 49
1388
+ 7
1389
+ 2
1390
+ 15
1391
+ 47
1392
+ 49
1393
+ 13
1394
+ 1
1395
+ 49
1396
+ 14
1397
+ 1
1398
+ 11
1399
+ I
1400
+ 7
1401
+ I
1402
+ 0
1403
+ I
1404
+ 0
1405
+ I
1406
+ 0
1407
+ I
1408
+ -2
1409
+ p
1410
+ 15
1411
+ x
1412
+ 5
1413
+ lispy
1414
+ M
1415
+ 1
1416
+ p
1417
+ 2
1418
+ x
1419
+ 9
1420
+ for_block
1421
+ t
1422
+ n
1423
+ x
1424
+ 3
1425
+ Alf
1426
+ i
1427
+ 52
1428
+ 5
1429
+ 44
1430
+ 43
1431
+ 0
1432
+ 4
1433
+ 4
1434
+ 49
1435
+ 1
1436
+ 1
1437
+ 13
1438
+ 7
1439
+ 2
1440
+ 7
1441
+ 3
1442
+ 64
1443
+ 49
1444
+ 4
1445
+ 2
1446
+ 15
1447
+ 13
1448
+ 7
1449
+ 5
1450
+ 7
1451
+ 6
1452
+ 64
1453
+ 49
1454
+ 4
1455
+ 2
1456
+ 15
1457
+ 13
1458
+ 7
1459
+ 7
1460
+ 7
1461
+ 8
1462
+ 64
1463
+ 49
1464
+ 4
1465
+ 2
1466
+ 15
1467
+ 13
1468
+ 7
1469
+ 9
1470
+ 2
1471
+ 49
1472
+ 4
1473
+ 2
1474
+ 15
1475
+ 47
1476
+ 49
1477
+ 10
1478
+ 1
1479
+ 11
1480
+ I
1481
+ 6
1482
+ I
1483
+ 0
1484
+ I
1485
+ 0
1486
+ I
1487
+ 0
1488
+ I
1489
+ -2
1490
+ p
1491
+ 11
1492
+ x
1493
+ 4
1494
+ Hash
1495
+ x
1496
+ 16
1497
+ new_from_literal
1498
+ x
1499
+ 3
1500
+ pid
1501
+ s
1502
+ 2
1503
+ P1
1504
+ x
1505
+ 3
1506
+ []=
1507
+ x
1508
+ 4
1509
+ name
1510
+ s
1511
+ 3
1512
+ Nut
1513
+ x
1514
+ 5
1515
+ color
1516
+ s
1517
+ 3
1518
+ red
1519
+ x
1520
+ 5
1521
+ heavy
1522
+ x
1523
+ 5
1524
+ Tuple
1525
+ p
1526
+ 3
1527
+ I
1528
+ 0
1529
+ I
1530
+ 1e
1531
+ I
1532
+ 34
1533
+ x
1534
+ 59
1535
+ /home/blambeau/work/devel/alf/spec/unit/lispy/test_tuple.rb
1536
+ p
1537
+ 0
1538
+ x
1539
+ 8
1540
+ evaluate
1541
+ x
1542
+ 4
1543
+ Hash
1544
+ x
1545
+ 16
1546
+ new_from_literal
1547
+ x
1548
+ 3
1549
+ pid
1550
+ s
1551
+ 2
1552
+ P1
1553
+ x
1554
+ 3
1555
+ []=
1556
+ x
1557
+ 4
1558
+ name
1559
+ s
1560
+ 3
1561
+ Nut
1562
+ x
1563
+ 5
1564
+ color
1565
+ s
1566
+ 3
1567
+ red
1568
+ x
1569
+ 5
1570
+ heavy
1571
+ x
1572
+ 2
1573
+ eq
1574
+ x
1575
+ 6
1576
+ should
1577
+ p
1578
+ 7
1579
+ I
1580
+ 0
1581
+ I
1582
+ 1d
1583
+ I
1584
+ 8
1585
+ I
1586
+ 1f
1587
+ I
1588
+ 3b
1589
+ I
1590
+ 1d
1591
+ I
1592
+ 3f
1593
+ x
1594
+ 59
1595
+ /home/blambeau/work/devel/alf/spec/unit/lispy/test_tuple.rb
1596
+ p
1597
+ 0
1598
+ x
1599
+ 7
1600
+ specify
1601
+ p
1602
+ 3
1603
+ I
1604
+ 0
1605
+ I
1606
+ 1c
1607
+ I
1608
+ 8
1609
+ x
1610
+ 59
1611
+ /home/blambeau/work/devel/alf/spec/unit/lispy/test_tuple.rb
1612
+ p
1613
+ 0
1614
+ p
1615
+ 15
1616
+ I
1617
+ 0
1618
+ I
1619
+ 4
1620
+ I
1621
+ a
1622
+ I
1623
+ 5
1624
+ I
1625
+ 12
1626
+ I
1627
+ 7
1628
+ I
1629
+ 1d
1630
+ I
1631
+ c
1632
+ I
1633
+ 28
1634
+ I
1635
+ 11
1636
+ I
1637
+ 33
1638
+ I
1639
+ 16
1640
+ I
1641
+ 3e
1642
+ I
1643
+ 1b
1644
+ I
1645
+ 49
1646
+ x
1647
+ 59
1648
+ /home/blambeau/work/devel/alf/spec/unit/lispy/test_tuple.rb
1649
+ p
1650
+ 0
1651
+ x
1652
+ 8
1653
+ describe
1654
+ p
1655
+ 3
1656
+ I
1657
+ 2
1658
+ I
1659
+ 3
1660
+ I
1661
+ 10
1662
+ x
1663
+ 59
1664
+ /home/blambeau/work/devel/alf/spec/unit/lispy/test_tuple.rb
1665
+ p
1666
+ 0
1667
+ x
1668
+ 13
1669
+ attach_method
1670
+ p
1671
+ 5
1672
+ I
1673
+ 0
1674
+ I
1675
+ 1
1676
+ I
1677
+ 9
1678
+ I
1679
+ 2
1680
+ I
1681
+ 25
1682
+ x
1683
+ 59
1684
+ /home/blambeau/work/devel/alf/spec/unit/lispy/test_tuple.rb
1685
+ p
1686
+ 0