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