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