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