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