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