alf 0.10.1 → 0.11.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (682) hide show
  1. data/CHANGELOG.md +25 -0
  2. data/Gemfile +8 -8
  3. data/Gemfile.lock +22 -20
  4. data/Rakefile +1 -1
  5. data/alf.gemspec +31 -30
  6. data/alf.noespec +11 -9
  7. data/bin/alf +1 -1
  8. data/lib/alf/aggregator/avg.rb +39 -0
  9. data/lib/alf/aggregator/class_methods.rb +32 -14
  10. data/lib/alf/aggregator/collect.rb +32 -0
  11. data/lib/alf/aggregator/concat.rb +47 -0
  12. data/lib/alf/aggregator/count.rb +32 -0
  13. data/lib/alf/aggregator/{base.rb → instance_methods.rb} +54 -30
  14. data/lib/alf/aggregator/max.rb +32 -0
  15. data/lib/alf/aggregator/min.rb +32 -0
  16. data/lib/alf/aggregator/stddev.rb +25 -0
  17. data/lib/alf/aggregator/sum.rb +32 -0
  18. data/lib/alf/aggregator/variance.rb +45 -0
  19. data/lib/alf/aggregator.rb +51 -0
  20. data/lib/alf/environment/class_methods.rb +37 -35
  21. data/lib/alf/environment/folder.rb +26 -28
  22. data/lib/alf/environment/{base.rb → instance_methods.rb} +8 -19
  23. data/lib/alf/environment.rb +34 -0
  24. data/lib/alf/errors.rb +1 -0
  25. data/lib/alf/iterator/class_methods.rb +0 -2
  26. data/lib/alf/iterator/proxy.rb +7 -13
  27. data/lib/alf/iterator.rb +27 -0
  28. data/lib/alf/lispy/instance_methods.rb +14 -14
  29. data/lib/alf/lispy.rb +24 -0
  30. data/lib/alf/loader.rb +1 -1
  31. data/lib/alf/operator/binary.rb +4 -15
  32. data/lib/alf/operator/class_methods.rb +33 -83
  33. data/lib/alf/operator/instance_methods.rb +29 -0
  34. data/lib/alf/operator/non_relational/autonum.rb +17 -22
  35. data/lib/alf/operator/non_relational/clip.rb +18 -18
  36. data/lib/alf/operator/non_relational/coerce.rb +17 -19
  37. data/lib/alf/operator/non_relational/compact.rb +13 -57
  38. data/lib/alf/operator/non_relational/defaults.rb +20 -23
  39. data/lib/alf/operator/non_relational/generator.rb +14 -32
  40. data/lib/alf/operator/non_relational/sort.rb +16 -20
  41. data/lib/alf/operator/nullary.rb +0 -9
  42. data/lib/alf/operator/relational/extend.rb +17 -22
  43. data/lib/alf/operator/relational/group.rb +16 -27
  44. data/lib/alf/operator/relational/heading.rb +15 -25
  45. data/lib/alf/operator/relational/intersect.rb +14 -33
  46. data/lib/alf/operator/relational/join.rb +15 -103
  47. data/lib/alf/operator/relational/matching.rb +15 -42
  48. data/lib/alf/operator/relational/minus.rb +14 -33
  49. data/lib/alf/operator/relational/not_matching.rb +15 -42
  50. data/lib/alf/operator/relational/project.rb +20 -20
  51. data/lib/alf/operator/relational/quota.rb +19 -47
  52. data/lib/alf/operator/relational/rank.rb +19 -52
  53. data/lib/alf/operator/relational/rename.rb +16 -17
  54. data/lib/alf/operator/relational/restrict.rb +16 -18
  55. data/lib/alf/operator/relational/summarize.rb +19 -75
  56. data/lib/alf/operator/relational/ungroup.rb +16 -22
  57. data/lib/alf/operator/relational/union.rb +17 -29
  58. data/lib/alf/operator/relational/unwrap.rb +17 -19
  59. data/lib/alf/operator/relational/wrap.rb +18 -20
  60. data/lib/alf/operator/signature.rb +67 -96
  61. data/lib/alf/operator/unary.rb +4 -26
  62. data/lib/alf/operator.rb +68 -0
  63. data/lib/alf/reader/alf_file.rb +5 -5
  64. data/lib/alf/reader/class_methods.rb +47 -38
  65. data/lib/alf/reader/{base.rb → instance_methods.rb} +18 -40
  66. data/lib/alf/reader/rash.rb +3 -3
  67. data/lib/alf/reader.rb +37 -0
  68. data/lib/alf/relation/instance_methods.rb +17 -37
  69. data/lib/alf/relation.rb +28 -0
  70. data/lib/alf/renderer/{base.rb → instance_methods.rb} +13 -30
  71. data/lib/alf/renderer.rb +32 -0
  72. data/lib/alf/tools/coerce.rb +18 -7
  73. data/lib/alf/tools/miscellaneous.rb +56 -29
  74. data/lib/alf/tools/to_lispy.rb +37 -40
  75. data/lib/alf/tools/to_ruby_literal.rb +24 -7
  76. data/lib/alf/tools/tuple_handle.rb +27 -17
  77. data/lib/alf/tools.rb +14 -0
  78. data/lib/alf/types/attr_list.rb +135 -31
  79. data/lib/alf/types/attr_name.rb +56 -18
  80. data/lib/alf/types/boolean.rb +18 -5
  81. data/lib/alf/types/heading.rb +83 -59
  82. data/lib/alf/types/ordering.rb +117 -64
  83. data/lib/alf/types/renaming.rb +73 -33
  84. data/lib/alf/types/size.rb +57 -0
  85. data/lib/alf/types/summarization.rb +105 -43
  86. data/lib/alf/types/tuple_computation.rb +113 -38
  87. data/lib/alf/types/tuple_expression.rb +122 -31
  88. data/lib/alf/types/tuple_predicate.rb +64 -40
  89. data/lib/alf/types.rb +49 -0
  90. data/lib/alf/version.rb +6 -6
  91. data/lib/alf-csv/alf/csv/commons.rb +36 -0
  92. data/lib/alf-csv/alf/csv/reader.rb +33 -0
  93. data/lib/alf-csv/alf/csv/renderer.rb +38 -0
  94. data/lib/alf-csv/alf/csv.rb +3 -0
  95. data/lib/alf-engine/alf/engine/aggregate.rb +44 -0
  96. data/lib/alf-engine/alf/engine/autonum.rb +45 -0
  97. data/lib/{alf/operator → alf-engine/alf/engine}/cesure.rb +13 -13
  98. data/lib/alf-engine/alf/engine/clip.rb +53 -0
  99. data/lib/alf-engine/alf/engine/coerce.rb +46 -0
  100. data/lib/alf-engine/alf/engine/cog.rb +7 -0
  101. data/lib/alf-engine/alf/engine/compact/set.rb +23 -0
  102. data/lib/alf-engine/alf/engine/compact/uniq.rb +23 -0
  103. data/lib/alf-engine/alf/engine/compact.rb +26 -0
  104. data/lib/alf-engine/alf/engine/concat.rb +25 -0
  105. data/lib/alf-engine/alf/engine/defaults.rb +43 -0
  106. data/lib/alf-engine/alf/engine/filter.rb +41 -0
  107. data/lib/alf-engine/alf/engine/generator.rb +50 -0
  108. data/lib/alf-engine/alf/engine/group/hash.rb +40 -0
  109. data/lib/alf-engine/alf/engine/group.rb +7 -0
  110. data/lib/alf-engine/alf/engine/join/hash.rb +35 -0
  111. data/lib/alf-engine/alf/engine/join.rb +7 -0
  112. data/lib/alf-engine/alf/engine/materialize/array.rb +78 -0
  113. data/lib/alf-engine/alf/engine/materialize/hash.rb +122 -0
  114. data/lib/alf-engine/alf/engine/materialize.rb +8 -0
  115. data/lib/alf-engine/alf/engine/quota/cesure.rb +46 -0
  116. data/lib/alf-engine/alf/engine/quota.rb +7 -0
  117. data/lib/alf-engine/alf/engine/rank/cesure.rb +48 -0
  118. data/lib/alf-engine/alf/engine/rank.rb +7 -0
  119. data/lib/alf-engine/alf/engine/rename.rb +39 -0
  120. data/lib/alf-engine/alf/engine/semi/hash.rb +39 -0
  121. data/lib/alf-engine/alf/engine/semi.rb +7 -0
  122. data/lib/alf-engine/alf/engine/set_attr.rb +46 -0
  123. data/lib/alf-engine/alf/engine/sort/in_memory.rb +39 -0
  124. data/lib/alf-engine/alf/engine/sort.rb +28 -0
  125. data/lib/alf-engine/alf/engine/summarize/cesure.rb +51 -0
  126. data/lib/alf-engine/alf/engine/summarize/hash.rb +35 -0
  127. data/lib/alf-engine/alf/engine/summarize.rb +8 -0
  128. data/lib/alf-engine/alf/engine/ungroup.rb +29 -0
  129. data/lib/alf-engine/alf/engine/unwrap.rb +31 -0
  130. data/lib/alf-engine/alf/engine/wrap.rb +39 -0
  131. data/lib/alf-engine/alf/engine.rb +25 -0
  132. data/lib/{alf/extra/logs.rb → alf-logs/alf/logs/reader.rb} +14 -16
  133. data/lib/alf-logs/alf/logs.rb +1 -0
  134. data/lib/alf-sequel/alf/sequel/environment.rb +57 -0
  135. data/lib/alf-sequel/alf/sequel/iterator.rb +21 -0
  136. data/lib/alf-sequel/alf/sequel.rb +2 -0
  137. data/lib/{alf → alf-shell/alf/shell}/command/exec.rb +3 -4
  138. data/lib/{alf → alf-shell/alf/shell}/command/help.rb +3 -4
  139. data/lib/alf-shell/alf/shell/command/main/class_methods.rb +46 -0
  140. data/lib/{alf → alf-shell/alf/shell}/command/main.rb +9 -51
  141. data/lib/{alf → alf-shell/alf/shell}/command/show.rb +5 -7
  142. data/lib/alf-shell/alf/shell/command.rb +26 -0
  143. data/lib/{alf/command → alf-shell/alf/shell}/doc_manager.rb +3 -3
  144. data/lib/alf-shell/alf/shell/operator.rb +86 -0
  145. data/lib/alf-shell/alf/shell.rb +40 -0
  146. data/lib/{alf/extra/yaml.rb → alf-yaml/alf/yaml/renderer.rb} +5 -7
  147. data/lib/alf-yaml/alf/yaml.rb +1 -0
  148. data/lib/alf.rb +17 -358
  149. data/spec/{unit → integration}/lispy/test_relation.rb +0 -0
  150. data/spec/{unit → integration}/lispy/test_run.rb +0 -0
  151. data/spec/{unit → integration}/lispy/test_tuple.rb +0 -0
  152. data/spec/integration/{command → shell}/alf/alf.db +0 -0
  153. data/spec/integration/{command → shell}/alf/alf_e.cmd +0 -0
  154. data/spec/integration/{command → shell}/alf/alf_e.stdout +0 -0
  155. data/spec/integration/shell/alf/alf_env.cmd +1 -0
  156. data/spec/integration/{command → shell}/alf/alf_env.stdout +0 -0
  157. data/spec/integration/shell/alf/alf_env_sqlite.cmd +1 -0
  158. data/spec/integration/{command → shell}/alf/alf_env_sqlite.stdout +0 -0
  159. data/spec/integration/{command → shell}/alf/alf_help.cmd +0 -0
  160. data/spec/integration/{command → shell}/alf/alf_help.stdout +0 -0
  161. data/spec/integration/{command → shell}/alf/alf_implicit.alf +0 -0
  162. data/spec/integration/shell/alf/alf_implicit_exec.cmd +1 -0
  163. data/spec/integration/{command → shell}/alf/alf_implicit_exec.stdout +0 -0
  164. data/spec/integration/{command → shell}/alf/alf_r.cmd +0 -0
  165. data/spec/integration/{command → shell}/alf/alf_r.stdout +0 -0
  166. data/spec/integration/{command → shell}/alf/alf_version.cmd +0 -0
  167. data/spec/integration/{command → shell}/alf/alf_version.stdout +0 -0
  168. data/spec/integration/{command → shell}/alf/alf_yaml.cmd +0 -0
  169. data/spec/integration/{command → shell}/alf/alf_yaml.stdout +0 -0
  170. data/spec/integration/{command → shell}/alf/rel.rash +0 -0
  171. data/spec/integration/{command → shell}/autonum/autonum_0.cmd +0 -0
  172. data/spec/integration/{command → shell}/autonum/autonum_0.stdout +0 -0
  173. data/spec/integration/shell/autonum/autonum_1.cmd +1 -0
  174. data/spec/integration/{command → shell}/autonum/autonum_1.stdout +0 -0
  175. data/spec/integration/shell/clip/clip_0.cmd +1 -0
  176. data/spec/integration/{command → shell}/clip/clip_0.stdout +0 -0
  177. data/spec/integration/shell/clip/clip_1.cmd +1 -0
  178. data/spec/integration/{command → shell}/clip/clip_1.stdout +0 -0
  179. data/spec/integration/{command → shell}/coerce/coerce_1.cmd +0 -0
  180. data/spec/integration/{command → shell}/coerce/coerce_1.stdout +0 -0
  181. data/spec/integration/{command → shell}/compact/compact_0.cmd +0 -0
  182. data/spec/integration/{command → shell}/compact/compact_0.stdout +0 -0
  183. data/spec/integration/{command → shell}/defaults/defaults_0.cmd +0 -0
  184. data/spec/integration/{command → shell}/defaults/defaults_0.stdout +0 -0
  185. data/spec/integration/{command → shell}/defaults/defaults_1.cmd +0 -0
  186. data/spec/integration/{command → shell}/defaults/defaults_1.stdout +0 -0
  187. data/spec/integration/{command → shell}/defaults/defaults_2.cmd +0 -0
  188. data/spec/integration/{command → shell}/defaults/defaults_2.stdout +0 -0
  189. data/spec/integration/{command → shell}/extend/extend_0.cmd +0 -0
  190. data/spec/integration/{command → shell}/extend/extend_0.stdout +0 -0
  191. data/spec/integration/{command → shell}/generator/generator_1.cmd +0 -0
  192. data/spec/integration/{command → shell}/generator/generator_1.stdout +0 -0
  193. data/spec/integration/{command → shell}/generator/generator_2.cmd +0 -0
  194. data/spec/integration/{command → shell}/generator/generator_2.stdout +0 -0
  195. data/spec/integration/{command → shell}/generator/generator_3.cmd +0 -0
  196. data/spec/integration/{command → shell}/generator/generator_3.stdout +0 -0
  197. data/spec/integration/{command → shell}/group/group_0.cmd +0 -0
  198. data/spec/integration/{command → shell}/group/group_0.stdout +0 -0
  199. data/spec/integration/{command → shell}/group/group_1.cmd +0 -0
  200. data/spec/integration/{command → shell}/group/group_1.stdout +0 -0
  201. data/spec/integration/{command → shell}/help/help_1.cmd +0 -0
  202. data/spec/integration/{command → shell}/help/help_1.stdout +0 -0
  203. data/spec/integration/{command → shell}/intersect/intersect_0.cmd +0 -0
  204. data/spec/integration/{command → shell}/intersect/intersect_0.stdout +0 -0
  205. data/spec/integration/{command → shell}/join/join_0.cmd +0 -0
  206. data/spec/integration/{command → shell}/join/join_0.stdout +0 -0
  207. data/spec/integration/{command → shell}/matching/matching_0.cmd +0 -0
  208. data/spec/integration/{command → shell}/matching/matching_0.stdout +0 -0
  209. data/spec/integration/{command → shell}/minus/minus_0.cmd +0 -0
  210. data/spec/integration/{command → shell}/minus/minus_0.stdout +0 -0
  211. data/spec/integration/{command → shell}/not-matching/not-matching_0.cmd +0 -0
  212. data/spec/integration/{command → shell}/not-matching/not-matching_0.stdout +0 -0
  213. data/spec/integration/{command → shell}/project/project_0.cmd +0 -0
  214. data/spec/integration/{command → shell}/project/project_0.stdout +0 -0
  215. data/spec/integration/{command → shell}/project/project_1.cmd +0 -0
  216. data/spec/integration/{command → shell}/project/project_1.stdout +0 -0
  217. data/spec/integration/{command → shell}/quota/quota_0.cmd +0 -0
  218. data/spec/integration/{command → shell}/quota/quota_0.stdout +0 -0
  219. data/spec/integration/{command → shell}/rank/rank_1.cmd +0 -0
  220. data/spec/integration/{command → shell}/rank/rank_1.stdout +1 -1
  221. data/spec/integration/{command → shell}/rank/rank_2.cmd +0 -0
  222. data/spec/integration/{command → shell}/rank/rank_2.stdout +1 -1
  223. data/spec/integration/{command → shell}/rank/rank_3.cmd +0 -0
  224. data/spec/integration/{command → shell}/rank/rank_3.stdout +0 -0
  225. data/spec/integration/{command → shell}/rank/rank_4.cmd +0 -0
  226. data/spec/integration/{command → shell}/rank/rank_4.stdout +0 -0
  227. data/spec/integration/{command → shell}/rank/rank_5.cmd +0 -0
  228. data/spec/integration/{command → shell}/rank/rank_5.stdout +0 -0
  229. data/spec/integration/{command → shell}/rename/rename_0.cmd +0 -0
  230. data/spec/integration/{command → shell}/rename/rename_0.stdout +0 -0
  231. data/spec/integration/{command → shell}/restrict/restrict_0.cmd +0 -0
  232. data/spec/integration/{command → shell}/restrict/restrict_0.stdout +0 -0
  233. data/spec/integration/{command → shell}/restrict/restrict_1.cmd +0 -0
  234. data/spec/integration/{command → shell}/restrict/restrict_1.stdout +0 -0
  235. data/spec/integration/{command → shell}/show/show_base.cmd +0 -0
  236. data/spec/integration/{command → shell}/show/show_base.stdout +0 -0
  237. data/spec/integration/{command → shell}/show/show_base_sort_1.cmd +0 -0
  238. data/spec/integration/{command → shell}/show/show_base_sort_1.stdout +0 -0
  239. data/spec/integration/{command → shell}/show/show_base_sort_2.cmd +0 -0
  240. data/spec/integration/{command → shell}/show/show_base_sort_2.stdout +0 -0
  241. data/spec/integration/{command → shell}/show/show_conflictual.cmd +0 -0
  242. data/spec/integration/{command → shell}/show/show_conflictual.stdout +0 -0
  243. data/spec/integration/{command → shell}/show/show_csv.cmd +0 -0
  244. data/spec/integration/{command → shell}/show/show_csv.stdout +0 -0
  245. data/spec/integration/{command → shell}/show/show_ff.cmd +0 -0
  246. data/spec/integration/{command → shell}/show/show_ff.stdout +0 -0
  247. data/spec/integration/{command → shell}/show/show_rash.cmd +0 -0
  248. data/spec/integration/{command → shell}/show/show_rash.stdout +0 -0
  249. data/spec/integration/{command → shell}/show/show_rash_pretty.cmd +0 -0
  250. data/spec/integration/{command → shell}/show/show_rash_pretty.stdout +0 -0
  251. data/spec/integration/{command → shell}/show/show_yaml.cmd +0 -0
  252. data/spec/integration/{command → shell}/show/show_yaml.stdout +0 -0
  253. data/spec/integration/{command → shell}/sort/sort_0.cmd +0 -0
  254. data/spec/integration/{command → shell}/sort/sort_0.stdout +0 -0
  255. data/spec/integration/{command → shell}/sort/sort_1.cmd +0 -0
  256. data/spec/integration/{command → shell}/sort/sort_1.stdout +0 -0
  257. data/spec/integration/{command → shell}/sort/sort_2.cmd +0 -0
  258. data/spec/integration/{command → shell}/sort/sort_2.stdout +0 -0
  259. data/spec/integration/{command → shell}/sort/sort_3.cmd +0 -0
  260. data/spec/integration/{command → shell}/sort/sort_3.stdout +0 -0
  261. data/spec/integration/{command → shell}/summarize/summarize_0.cmd +0 -0
  262. data/spec/integration/{command → shell}/summarize/summarize_0.stdout +0 -0
  263. data/spec/integration/{command → shell}/ungroup/ungroup_0.cmd +0 -0
  264. data/spec/integration/{command → shell}/ungroup/ungroup_0.stdout +0 -0
  265. data/spec/integration/{command → shell}/union/union_0.cmd +0 -0
  266. data/spec/integration/{command → shell}/union/union_0.stdout +0 -0
  267. data/spec/integration/{command → shell}/unwrap/unwrap_0.cmd +0 -0
  268. data/spec/integration/{command → shell}/unwrap/unwrap_0.stdout +0 -0
  269. data/spec/integration/{command → shell}/wrap/wrap_0.cmd +0 -0
  270. data/spec/integration/{command → shell}/wrap/wrap_0.stdout +0 -0
  271. data/spec/{unit → integration}/test_lispy.rb +0 -0
  272. data/spec/integration/{test_command.rb → test_shell.rb} +3 -3
  273. data/spec/regression/heading/test_heading_with_date.rb +1 -1
  274. data/spec/shared/a_valid_type_implementation.rb +47 -0
  275. data/spec/shared/an_operator_class.rb +2 -6
  276. data/spec/spec_helper.rb +9 -1
  277. data/spec/unit/alf-core/aggregator/test_avg.rb +22 -0
  278. data/spec/unit/alf-core/aggregator/test_collect.rb +25 -0
  279. data/spec/unit/alf-core/aggregator/test_concat.rb +31 -0
  280. data/spec/unit/alf-core/aggregator/test_count.rb +17 -0
  281. data/spec/unit/alf-core/aggregator/test_max.rb +23 -0
  282. data/spec/unit/alf-core/aggregator/test_min.rb +23 -0
  283. data/spec/unit/alf-core/aggregator/test_stddev.rb +27 -0
  284. data/spec/unit/alf-core/aggregator/test_sum.rb +23 -0
  285. data/spec/unit/alf-core/aggregator/test_variance.rb +29 -0
  286. data/spec/unit/{assumptions → alf-core/assumptions}/test_file.rb +0 -0
  287. data/spec/unit/{assumptions → alf-core/assumptions}/test_instance_eval.rb +0 -0
  288. data/spec/unit/{assumptions → alf-core/assumptions}/test_scoping.rb +0 -0
  289. data/spec/unit/{assumptions → alf-core/assumptions}/test_set.rb +0 -0
  290. data/spec/unit/{environment → alf-core/environment}/examples/suppliers.rash +0 -0
  291. data/spec/unit/alf-core/environment/test_folder.rb +53 -0
  292. data/spec/unit/{operator → alf-core/operator}/non_relational/test_autonum.rb +18 -31
  293. data/spec/unit/alf-core/operator/non_relational/test_clip.rb +35 -0
  294. data/spec/unit/{operator → alf-core/operator}/non_relational/test_coerce.rb +11 -17
  295. data/spec/unit/{operator/non_relational/compact/test_sort_based.rb → alf-core/operator/non_relational/test_compact.rb} +16 -14
  296. data/spec/unit/{operator → alf-core/operator}/non_relational/test_defaults.rb +17 -32
  297. data/spec/unit/{operator → alf-core/operator}/non_relational/test_generator.rb +21 -39
  298. data/spec/unit/{operator → alf-core/operator}/non_relational/test_sort.rb +20 -26
  299. data/spec/unit/{operator → alf-core/operator}/relational/test_extend.rb +8 -14
  300. data/spec/unit/{operator → alf-core/operator}/relational/test_group.rb +12 -28
  301. data/spec/unit/alf-core/operator/relational/test_heading.rb +27 -0
  302. data/spec/unit/{operator → alf-core/operator}/relational/test_intersect.rb +22 -22
  303. data/spec/unit/{operator → alf-core/operator}/relational/test_join.rb +7 -7
  304. data/spec/unit/{operator → alf-core/operator}/relational/test_minus.rb +23 -23
  305. data/spec/unit/alf-core/operator/relational/test_project.rb +62 -0
  306. data/spec/unit/{operator → alf-core/operator}/relational/test_quota.rb +8 -15
  307. data/spec/unit/alf-core/operator/relational/test_rank.rb +48 -0
  308. data/spec/unit/{operator → alf-core/operator}/relational/test_rename.rb +8 -14
  309. data/spec/unit/alf-core/operator/relational/test_restrict.rb +45 -0
  310. data/spec/unit/{operator → alf-core/operator}/relational/test_summarize.rb +13 -31
  311. data/spec/unit/{operator → alf-core/operator}/relational/test_ungroup.rb +9 -15
  312. data/spec/unit/{operator → alf-core/operator}/relational/test_union.rb +11 -11
  313. data/spec/unit/{operator → alf-core/operator}/relational/test_unwrap.rb +10 -16
  314. data/spec/unit/{operator → alf-core/operator}/relational/test_wrap.rb +10 -16
  315. data/spec/unit/alf-core/operator/signature/test_argv2args.rb +82 -0
  316. data/spec/unit/alf-core/operator/signature/test_collect_on.rb +38 -0
  317. data/spec/unit/{operator → alf-core/operator}/signature/test_initialize.rb +0 -0
  318. data/spec/unit/{operator → alf-core/operator}/signature/test_install.rb +0 -0
  319. data/spec/unit/{operator → alf-core/operator}/signature/test_option_parser.rb +0 -0
  320. data/spec/unit/alf-core/operator/signature/test_parse_args.rb +90 -0
  321. data/spec/unit/{operator → alf-core/operator}/signature/test_to_lispy.rb +0 -0
  322. data/spec/unit/{operator → alf-core/operator}/signature/test_to_shell.rb +0 -0
  323. data/spec/unit/{operator → alf-core/operator}/test_non_relational.rb +0 -0
  324. data/spec/unit/{operator → alf-core/operator}/test_relational.rb +0 -0
  325. data/spec/unit/{reader → alf-core/reader}/input.rb +0 -0
  326. data/spec/unit/{reader → alf-core/reader}/test_alf_file.rb +0 -0
  327. data/spec/unit/{reader → alf-core/reader}/test_initialize.rb +0 -0
  328. data/spec/unit/alf-core/reader/test_looks_a_path.rb +20 -0
  329. data/spec/unit/{reader → alf-core/reader}/test_rash.rb +0 -0
  330. data/spec/unit/{relation → alf-core/relation}/test_coerce.rb +0 -0
  331. data/spec/unit/{relation → alf-core/relation}/test_inspect.rb +0 -0
  332. data/spec/unit/{relation → alf-core/relation}/test_relops.rb +0 -0
  333. data/spec/unit/{relation → alf-core/relation}/test_to_a.rb +0 -0
  334. data/spec/unit/{renderer → alf-core/renderer}/test_initialize.rb +0 -0
  335. data/spec/unit/alf-core/test_aggregator.rb +58 -0
  336. data/spec/unit/{test_environment.rb → alf-core/test_environment.rb} +8 -21
  337. data/spec/unit/{test_operator.rb → alf-core/test_operator.rb} +0 -0
  338. data/spec/unit/{test_reader.rb → alf-core/test_reader.rb} +0 -0
  339. data/spec/unit/{test_relation.rb → alf-core/test_relation.rb} +0 -0
  340. data/spec/unit/{test_renderer.rb → alf-core/test_renderer.rb} +0 -0
  341. data/spec/unit/{text → alf-core/text}/test_cell.rb +0 -0
  342. data/spec/unit/{text → alf-core/text}/test_row.rb +0 -0
  343. data/spec/unit/{text → alf-core/text}/test_table.rb +0 -0
  344. data/spec/unit/alf-core/tools/test_class_name.rb +16 -0
  345. data/spec/unit/{tools → alf-core/tools}/test_coalesce.rb +6 -2
  346. data/spec/unit/alf-core/tools/test_coerce.rb +16 -0
  347. data/spec/unit/alf-core/tools/test_ruby_case.rb +16 -0
  348. data/spec/unit/{tools → alf-core/tools}/test_to_lispy.rb +14 -7
  349. data/spec/unit/{tools → alf-core/tools}/test_to_ruby_literal.rb +5 -5
  350. data/spec/unit/{tools → alf-core/tools}/test_tuple_handle.rb +14 -14
  351. data/spec/unit/alf-core/tools/test_tuple_heading.rb +15 -0
  352. data/spec/unit/{tools → alf-core/tools}/test_varargs.rb +9 -6
  353. data/spec/unit/alf-core/types/test_attr_list.rb +188 -0
  354. data/spec/unit/alf-core/types/test_attr_name.rb +78 -0
  355. data/spec/unit/{types/test_attr_name.rb → alf-core/types/test_boolean.rb} +18 -28
  356. data/spec/unit/alf-core/types/test_class_methods.rb +24 -0
  357. data/spec/unit/alf-core/types/test_heading.rb +146 -0
  358. data/spec/unit/alf-core/types/test_ordering.rb +185 -0
  359. data/spec/unit/alf-core/types/test_renaming.rb +72 -0
  360. data/spec/unit/alf-core/types/test_size.rb +74 -0
  361. data/spec/unit/{types → alf-core/types}/test_summarization.rb +46 -14
  362. data/spec/unit/{types → alf-core/types}/test_tuple_computation.rb +46 -10
  363. data/spec/unit/alf-core/types/test_tuple_expression.rb +122 -0
  364. data/spec/unit/{types → alf-core/types}/test_tuple_predicate.rb +51 -22
  365. data/spec/unit/{csv → alf-csv}/input.csv +0 -0
  366. data/spec/unit/{csv → alf-csv}/test_reader.rb +0 -0
  367. data/spec/unit/{csv → alf-csv}/test_renderer.rb +1 -1
  368. data/spec/unit/alf-engine/compact/test_set.rb +33 -0
  369. data/spec/unit/alf-engine/compact/test_uniq.rb +33 -0
  370. data/spec/unit/alf-engine/group/test_hash.rb +34 -0
  371. data/spec/unit/{operator/relational/join/test_hash_based.rb → alf-engine/join/test_hash.rb} +21 -29
  372. data/spec/unit/alf-engine/materialize/test_array.rb +28 -0
  373. data/spec/unit/alf-engine/materialize/test_hash.rb +76 -0
  374. data/spec/unit/alf-engine/quota/test_cesure.rb +34 -0
  375. data/spec/unit/{operator/relational/test_rank.rb → alf-engine/rank/test_cesure.rb} +21 -24
  376. data/spec/unit/alf-engine/semi/test_hash.rb +58 -0
  377. data/spec/unit/alf-engine/sort/test_in_memory.rb +32 -0
  378. data/spec/unit/{operator/relational/summarize/test_hash_based.rb → alf-engine/summarize/test_cesure.rb} +15 -21
  379. data/spec/unit/{operator/relational/summarize/test_sort_based.rb → alf-engine/summarize/test_hash.rb} +15 -21
  380. data/spec/unit/alf-engine/test_aggregate.rb +26 -0
  381. data/spec/unit/alf-engine/test_autonum.rb +24 -0
  382. data/spec/unit/alf-engine/test_clip.rb +34 -0
  383. data/spec/unit/alf-engine/test_coerce.rb +35 -0
  384. data/spec/unit/alf-engine/test_compact.rb +33 -0
  385. data/spec/unit/alf-engine/test_concat.rb +38 -0
  386. data/spec/unit/alf-engine/test_defaults.rb +37 -0
  387. data/spec/unit/alf-engine/test_filter.rb +23 -0
  388. data/spec/unit/alf-engine/test_generator.rb +25 -0
  389. data/spec/unit/alf-engine/test_rename.rb +24 -0
  390. data/spec/unit/alf-engine/test_set_attr.rb +38 -0
  391. data/spec/unit/alf-engine/test_sort.rb +32 -0
  392. data/spec/unit/alf-engine/test_ungroup.rb +28 -0
  393. data/spec/unit/alf-engine/test_unwrap.rb +20 -0
  394. data/spec/unit/alf-engine/test_wrap.rb +26 -0
  395. data/spec/unit/{logs → alf-logs}/apache_combined.log +0 -0
  396. data/spec/unit/{logs → alf-logs}/postgresql.log +0 -0
  397. data/spec/unit/{logs → alf-logs}/test_reader.rb +15 -16
  398. data/spec/unit/{sequel → alf-sequel}/alf.db +0 -0
  399. data/spec/unit/alf-sequel/test_environment.rb +69 -0
  400. data/spec/unit/{command → alf-shell}/doc_manager/dynamic.md +0 -0
  401. data/spec/unit/{command → alf-shell}/doc_manager/example.md +0 -0
  402. data/spec/unit/{command → alf-shell}/doc_manager/example_1.txt +0 -0
  403. data/spec/unit/{command → alf-shell}/doc_manager/static.md +0 -0
  404. data/spec/unit/{command → alf-shell}/doc_manager/test_call.rb +2 -3
  405. data/spec/unit/alf-shell/main/test_class_methods.rb +44 -0
  406. data/spec/unit/alf-shell/operator/test_autonum.rb +28 -0
  407. data/spec/unit/alf-shell/operator/test_clip.rb +29 -0
  408. data/spec/unit/alf-shell/operator/test_coerce.rb +21 -0
  409. data/spec/unit/alf-shell/operator/test_compact.rb +16 -0
  410. data/spec/unit/alf-shell/operator/test_defaults.rb +29 -0
  411. data/spec/unit/alf-shell/operator/test_extend.rb +21 -0
  412. data/spec/unit/alf-shell/operator/test_generator.rb +37 -0
  413. data/spec/unit/alf-shell/operator/test_group.rb +32 -0
  414. data/spec/unit/alf-shell/operator/test_heading.rb +16 -0
  415. data/spec/unit/alf-shell/operator/test_intersect.rb +18 -0
  416. data/spec/unit/alf-shell/operator/test_join.rb +18 -0
  417. data/spec/unit/alf-shell/operator/test_matching.rb +18 -0
  418. data/spec/unit/alf-shell/operator/test_minus.rb +18 -0
  419. data/spec/unit/alf-shell/operator/test_not_matching.rb +18 -0
  420. data/spec/unit/alf-shell/operator/test_project.rb +38 -0
  421. data/spec/unit/alf-shell/operator/test_quota.rb +23 -0
  422. data/spec/unit/alf-shell/operator/test_rank.rb +30 -0
  423. data/spec/unit/alf-shell/operator/test_rename.rb +21 -0
  424. data/spec/unit/alf-shell/operator/test_restrict.rb +35 -0
  425. data/spec/unit/alf-shell/operator/test_sort.rb +49 -0
  426. data/spec/unit/alf-shell/operator/test_summarize.rb +30 -0
  427. data/spec/unit/alf-shell/operator/test_ungroup.rb +28 -0
  428. data/spec/unit/alf-shell/operator/test_union.rb +18 -0
  429. data/spec/unit/alf-shell/operator/test_unwrap.rb +28 -0
  430. data/spec/unit/alf-shell/operator/test_wrap.rb +30 -0
  431. data/tasks/debug_mail.rake +42 -45
  432. data/tasks/gem.rake +13 -13
  433. data/tasks/gh-pages.rake +11 -6
  434. data/tasks/integration_test.rake +0 -8
  435. data/tasks/regression_test.rake +0 -8
  436. data/tasks/unit_test.rake +0 -8
  437. data/tasks/yard.rake +13 -13
  438. metadata +909 -1107
  439. data/examples/hitradio/compact.rb +0 -48
  440. data/examples/hitradio/compare1.rb +0 -28
  441. data/examples/hitradio/gz_reader.rb +0 -23
  442. data/examples/hitradio/hitradio-1.alf +0 -1
  443. data/examples/hitradio/hitradio.log +0 -25080
  444. data/examples/hitradio/hitradio.mar +0 -25081
  445. data/examples/hitradio/hitradio.mar.gz +0 -0
  446. data/examples/hitradio/hitradio.rash +0 -25080
  447. data/examples/hitradio/mar_reader.rb +0 -18
  448. data/examples/northwind/customers.csv +0 -92
  449. data/examples/northwind/northwind.db +0 -0
  450. data/examples/northwind/orders.csv +0 -831
  451. data/lib/alf/aggregator/aggregators.rb +0 -105
  452. data/lib/alf/aggregator/aggregators.rbc +0 -2640
  453. data/lib/alf/aggregator/base.rbc +0 -1055
  454. data/lib/alf/aggregator/class_methods.rbc +0 -830
  455. data/lib/alf/buffer/sorted.rb +0 -48
  456. data/lib/alf/buffer/sorted.rbc +0 -715
  457. data/lib/alf/command/class_methods.rb +0 -27
  458. data/lib/alf/command/class_methods.rbc +0 -453
  459. data/lib/alf/command/doc_manager.rbc +0 -1604
  460. data/lib/alf/command/exec.rbc +0 -408
  461. data/lib/alf/command/help.rbc +0 -764
  462. data/lib/alf/command/main.rbc +0 -3612
  463. data/lib/alf/command/show.rbc +0 -1327
  464. data/lib/alf/environment/base.rbc +0 -459
  465. data/lib/alf/environment/class_methods.rbc +0 -1110
  466. data/lib/alf/environment/explicit.rb +0 -38
  467. data/lib/alf/environment/explicit.rbc +0 -601
  468. data/lib/alf/environment/folder.rbc +0 -942
  469. data/lib/alf/errors.rbc +0 -155
  470. data/lib/alf/extra/csv.rb +0 -107
  471. data/lib/alf/extra/csv.rbc +0 -2021
  472. data/lib/alf/extra/logs.rbc +0 -1957
  473. data/lib/alf/extra/sequel.rb +0 -77
  474. data/lib/alf/extra/sequel.rbc +0 -1417
  475. data/lib/alf/extra/yaml.rbc +0 -435
  476. data/lib/alf/extra.rb +0 -5
  477. data/lib/alf/extra.rbc +0 -101
  478. data/lib/alf/iterator/base.rb +0 -38
  479. data/lib/alf/iterator/base.rbc +0 -437
  480. data/lib/alf/iterator/class_methods.rbc +0 -518
  481. data/lib/alf/iterator/proxy.rbc +0 -599
  482. data/lib/alf/lispy/instance_methods.rbc +0 -2535
  483. data/lib/alf/loader.rbc +0 -85
  484. data/lib/alf/operator/base.rb +0 -74
  485. data/lib/alf/operator/base.rbc +0 -860
  486. data/lib/alf/operator/binary.rbc +0 -595
  487. data/lib/alf/operator/cesure.rbc +0 -883
  488. data/lib/alf/operator/class_methods.rbc +0 -1915
  489. data/lib/alf/operator/experimental.rbc +0 -200
  490. data/lib/alf/operator/non_relational/autonum.rbc +0 -587
  491. data/lib/alf/operator/non_relational/clip.rbc +0 -522
  492. data/lib/alf/operator/non_relational/coerce.rbc +0 -596
  493. data/lib/alf/operator/non_relational/compact.rbc +0 -1283
  494. data/lib/alf/operator/non_relational/defaults.rbc +0 -733
  495. data/lib/alf/operator/non_relational/generator.rbc +0 -1015
  496. data/lib/alf/operator/non_relational/sort.rbc +0 -665
  497. data/lib/alf/operator/nullary.rbc +0 -404
  498. data/lib/alf/operator/relational/extend.rbc +0 -616
  499. data/lib/alf/operator/relational/group.rbc +0 -968
  500. data/lib/alf/operator/relational/heading.rbc +0 -657
  501. data/lib/alf/operator/relational/intersect.rbc +0 -969
  502. data/lib/alf/operator/relational/join.rbc +0 -1708
  503. data/lib/alf/operator/relational/matching.rbc +0 -1047
  504. data/lib/alf/operator/relational/minus.rbc +0 -965
  505. data/lib/alf/operator/relational/not_matching.rbc +0 -1047
  506. data/lib/alf/operator/relational/project.rbc +0 -669
  507. data/lib/alf/operator/relational/quota.rbc +0 -1193
  508. data/lib/alf/operator/relational/rank.rbc +0 -1217
  509. data/lib/alf/operator/relational/rename.rbc +0 -496
  510. data/lib/alf/operator/relational/restrict.rbc +0 -611
  511. data/lib/alf/operator/relational/summarize.rbc +0 -1922
  512. data/lib/alf/operator/relational/ungroup.rbc +0 -643
  513. data/lib/alf/operator/relational/union.rbc +0 -846
  514. data/lib/alf/operator/relational/unwrap.rbc +0 -540
  515. data/lib/alf/operator/relational/wrap.rbc +0 -560
  516. data/lib/alf/operator/shortcut.rb +0 -53
  517. data/lib/alf/operator/shortcut.rbc +0 -809
  518. data/lib/alf/operator/signature.rbc +0 -4640
  519. data/lib/alf/operator/transform.rb +0 -27
  520. data/lib/alf/operator/transform.rbc +0 -484
  521. data/lib/alf/operator/unary.rbc +0 -629
  522. data/lib/alf/reader/alf_file.rbc +0 -464
  523. data/lib/alf/reader/base.rbc +0 -1613
  524. data/lib/alf/reader/class_methods.rbc +0 -1099
  525. data/lib/alf/reader/rash.rbc +0 -583
  526. data/lib/alf/relation/class_methods.rbc +0 -674
  527. data/lib/alf/relation/instance_methods.rbc +0 -2107
  528. data/lib/alf/renderer/base.rbc +0 -936
  529. data/lib/alf/renderer/class_methods.rbc +0 -875
  530. data/lib/alf/renderer/rash.rbc +0 -802
  531. data/lib/alf/renderer/text.rbc +0 -5530
  532. data/lib/alf/tools/coerce.rbc +0 -352
  533. data/lib/alf/tools/miscellaneous.rbc +0 -1497
  534. data/lib/alf/tools/to_lispy.rbc +0 -2618
  535. data/lib/alf/tools/to_ruby_literal.rbc +0 -344
  536. data/lib/alf/tools/tuple_handle.rbc +0 -738
  537. data/lib/alf/types/attr_list.rbc +0 -1535
  538. data/lib/alf/types/attr_name.rbc +0 -781
  539. data/lib/alf/types/boolean.rbc +0 -365
  540. data/lib/alf/types/heading.rbc +0 -1778
  541. data/lib/alf/types/ordering.rbc +0 -2228
  542. data/lib/alf/types/renaming.rbc +0 -1064
  543. data/lib/alf/types/summarization.rbc +0 -1394
  544. data/lib/alf/types/tuple_computation.rbc +0 -1061
  545. data/lib/alf/types/tuple_expression.rbc +0 -1016
  546. data/lib/alf/types/tuple_predicate.rbc +0 -1349
  547. data/lib/alf/version.rbc +0 -350
  548. data/lib/alf.rbc +0 -3884
  549. data/spec/integration/command/alf/alf_env.cmd +0 -1
  550. data/spec/integration/command/alf/alf_env_sqlite.cmd +0 -1
  551. data/spec/integration/command/alf/alf_implicit_exec.cmd +0 -1
  552. data/spec/integration/command/autonum/autonum_1.cmd +0 -1
  553. data/spec/integration/command/clip/clip_0.cmd +0 -1
  554. data/spec/integration/command/clip/clip_1.cmd +0 -1
  555. data/spec/integration/command/show/show_rash_2.cmd +0 -1
  556. data/spec/integration/command/show/show_rash_2.stdout +0 -5
  557. data/spec/integration/test_alf.rbc +0 -1098
  558. data/spec/integration/test_command.rbc +0 -1832
  559. data/spec/integration/test_examples.rbc +0 -559
  560. data/spec/integration/test_semantics.rbc +0 -991
  561. data/spec/regression/alf_file/test___FILE__.rbc +0 -524
  562. data/spec/regression/heading/test_heading_with_date.rbc +0 -381
  563. data/spec/regression/lispy/test_compile.rbc +0 -404
  564. data/spec/regression/logs/test_path_attribute.rbc +0 -687
  565. data/spec/regression/relation/test_relation_allbut_all.rbc +0 -468
  566. data/spec/regression/relation/test_relation_with_date.rbc +0 -381
  567. data/spec/regression/restrict/test_restrict_with_keywords.rbc +0 -628
  568. data/spec/shared/a_value.rbc +0 -337
  569. data/spec/shared/an_operator_class.rbc +0 -908
  570. data/spec/spec_helper.rbc +0 -453
  571. data/spec/unit/assumptions/test_file.rbc +0 -668
  572. data/spec/unit/assumptions/test_instance_eval.rbc +0 -654
  573. data/spec/unit/assumptions/test_scoping.rbc +0 -755
  574. data/spec/unit/assumptions/test_set.rbc +0 -1928
  575. data/spec/unit/command/doc_manager/test_call.rbc +0 -1537
  576. data/spec/unit/csv/test_reader.rbc +0 -2228
  577. data/spec/unit/csv/test_renderer.rbc +0 -2426
  578. data/spec/unit/environment/test_explicit.rb +0 -15
  579. data/spec/unit/environment/test_explicit.rbc +0 -464
  580. data/spec/unit/environment/test_folder.rb +0 -35
  581. data/spec/unit/environment/test_folder.rbc +0 -1304
  582. data/spec/unit/lispy/test_relation.rbc +0 -1477
  583. data/spec/unit/lispy/test_run.rbc +0 -1735
  584. data/spec/unit/lispy/test_tuple.rbc +0 -1686
  585. data/spec/unit/logs/test_reader.rbc +0 -1807
  586. data/spec/unit/operator/non_relational/compact/test_buffer_based.rb +0 -30
  587. data/spec/unit/operator/non_relational/compact/test_buffer_based.rbc +0 -1127
  588. data/spec/unit/operator/non_relational/compact/test_sort_based.rbc +0 -1127
  589. data/spec/unit/operator/non_relational/test_autonum.rbc +0 -1969
  590. data/spec/unit/operator/non_relational/test_clip.rb +0 -49
  591. data/spec/unit/operator/non_relational/test_clip.rbc +0 -1850
  592. data/spec/unit/operator/non_relational/test_coerce.rbc +0 -1290
  593. data/spec/unit/operator/non_relational/test_compact.rb +0 -38
  594. data/spec/unit/operator/non_relational/test_compact.rbc +0 -1382
  595. data/spec/unit/operator/non_relational/test_defaults.rbc +0 -2319
  596. data/spec/unit/operator/non_relational/test_generator.rbc +0 -2361
  597. data/spec/unit/operator/non_relational/test_sort.rbc +0 -2583
  598. data/spec/unit/operator/relational/join/test_hash_based.rbc +0 -2481
  599. data/spec/unit/operator/relational/matching/test_hash_based.rb +0 -60
  600. data/spec/unit/operator/relational/matching/test_hash_based.rbc +0 -2458
  601. data/spec/unit/operator/relational/not_matching/test_hash_based.rb +0 -37
  602. data/spec/unit/operator/relational/not_matching/test_hash_based.rbc +0 -1632
  603. data/spec/unit/operator/relational/summarize/test_hash_based.rbc +0 -1990
  604. data/spec/unit/operator/relational/summarize/test_sort_based.rbc +0 -1990
  605. data/spec/unit/operator/relational/test_extend.rbc +0 -1300
  606. data/spec/unit/operator/relational/test_group.rbc +0 -2142
  607. data/spec/unit/operator/relational/test_intersect.rbc +0 -2069
  608. data/spec/unit/operator/relational/test_join.rbc +0 -1282
  609. data/spec/unit/operator/relational/test_minus.rbc +0 -1995
  610. data/spec/unit/operator/relational/test_project.rb +0 -75
  611. data/spec/unit/operator/relational/test_project.rbc +0 -2870
  612. data/spec/unit/operator/relational/test_quota.rbc +0 -1788
  613. data/spec/unit/operator/relational/test_rank.rbc +0 -2079
  614. data/spec/unit/operator/relational/test_rename.rbc +0 -1158
  615. data/spec/unit/operator/relational/test_restrict.rb +0 -56
  616. data/spec/unit/operator/relational/test_restrict.rbc +0 -2305
  617. data/spec/unit/operator/relational/test_summarize.rbc +0 -2570
  618. data/spec/unit/operator/relational/test_ungroup.rbc +0 -1425
  619. data/spec/unit/operator/relational/test_union.rbc +0 -1089
  620. data/spec/unit/operator/relational/test_unwrap.rbc +0 -1176
  621. data/spec/unit/operator/relational/test_wrap.rbc +0 -1203
  622. data/spec/unit/operator/signature/test_collect_on.rb +0 -45
  623. data/spec/unit/operator/signature/test_collect_on.rbc +0 -1989
  624. data/spec/unit/operator/signature/test_initialize.rbc +0 -544
  625. data/spec/unit/operator/signature/test_install.rbc +0 -1671
  626. data/spec/unit/operator/signature/test_option_parser.rbc +0 -1348
  627. data/spec/unit/operator/signature/test_parse_args.rb +0 -60
  628. data/spec/unit/operator/signature/test_parse_args.rbc +0 -1908
  629. data/spec/unit/operator/signature/test_parse_argv.rb +0 -87
  630. data/spec/unit/operator/signature/test_parse_argv.rbc +0 -2878
  631. data/spec/unit/operator/signature/test_to_lispy.rbc +0 -3305
  632. data/spec/unit/operator/signature/test_to_shell.rbc +0 -3327
  633. data/spec/unit/operator/test_non_relational.rbc +0 -571
  634. data/spec/unit/operator/test_relational.rbc +0 -758
  635. data/spec/unit/reader/test_alf_file.rbc +0 -1107
  636. data/spec/unit/reader/test_initialize.rbc +0 -1774
  637. data/spec/unit/reader/test_rash.rbc +0 -1127
  638. data/spec/unit/relation/test_coerce.rbc +0 -2320
  639. data/spec/unit/relation/test_inspect.rbc +0 -502
  640. data/spec/unit/relation/test_relops.rbc +0 -1585
  641. data/spec/unit/relation/test_to_a.rbc +0 -1112
  642. data/spec/unit/renderer/test_initialize.rbc +0 -1766
  643. data/spec/unit/sequel/test_environment.rb +0 -54
  644. data/spec/unit/sequel/test_environment.rbc +0 -1723
  645. data/spec/unit/test_aggregator.rb +0 -109
  646. data/spec/unit/test_aggregator.rbc +0 -4358
  647. data/spec/unit/test_environment.rbc +0 -1271
  648. data/spec/unit/test_lispy.rbc +0 -879
  649. data/spec/unit/test_operator.rbc +0 -531
  650. data/spec/unit/test_reader.rbc +0 -1249
  651. data/spec/unit/test_relation.rbc +0 -2588
  652. data/spec/unit/test_renderer.rbc +0 -2011
  653. data/spec/unit/text/test_cell.rbc +0 -1532
  654. data/spec/unit/text/test_row.rbc +0 -847
  655. data/spec/unit/text/test_table.rbc +0 -978
  656. data/spec/unit/tools/test_coalesce.rbc +0 -456
  657. data/spec/unit/tools/test_coerce.rb +0 -10
  658. data/spec/unit/tools/test_coerce.rbc +0 -279
  659. data/spec/unit/tools/test_to_lispy.rbc +0 -5711
  660. data/spec/unit/tools/test_to_ruby_literal.rbc +0 -272
  661. data/spec/unit/tools/test_tools.rb +0 -25
  662. data/spec/unit/tools/test_tools.rbc +0 -672
  663. data/spec/unit/tools/test_tuple_handle.rbc +0 -1591
  664. data/spec/unit/tools/test_tuple_heading.rb +0 -20
  665. data/spec/unit/tools/test_tuple_heading.rbc +0 -821
  666. data/spec/unit/tools/test_varargs.rbc +0 -495
  667. data/spec/unit/types/heading/test_union.rb +0 -21
  668. data/spec/unit/types/heading/test_union.rbc +0 -1043
  669. data/spec/unit/types/test_attr_list.rb +0 -106
  670. data/spec/unit/types/test_attr_list.rbc +0 -4481
  671. data/spec/unit/types/test_attr_name.rbc +0 -1872
  672. data/spec/unit/types/test_heading.rb +0 -48
  673. data/spec/unit/types/test_heading.rbc +0 -1735
  674. data/spec/unit/types/test_ordering.rb +0 -127
  675. data/spec/unit/types/test_ordering.rbc +0 -3695
  676. data/spec/unit/types/test_renaming.rb +0 -55
  677. data/spec/unit/types/test_renaming.rbc +0 -2426
  678. data/spec/unit/types/test_summarization.rbc +0 -2538
  679. data/spec/unit/types/test_tuple_computation.rbc +0 -2340
  680. data/spec/unit/types/test_tuple_expression.rb +0 -64
  681. data/spec/unit/types/test_tuple_expression.rbc +0 -2285
  682. data/spec/unit/types/test_tuple_predicate.rbc +0 -3168
@@ -1,4481 +0,0 @@
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
- AttrList
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
- 2
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
- 11
194
- s
195
- 6
196
- coerce
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
- 41
211
- 5
212
- 56
213
- 0
214
- 47
215
- 50
216
- 1
217
- 0
218
- 15
219
- 5
220
- 7
221
- 2
222
- 64
223
- 56
224
- 3
225
- 47
226
- 50
227
- 4
228
- 1
229
- 15
230
- 5
231
- 7
232
- 5
233
- 64
234
- 56
235
- 6
236
- 47
237
- 50
238
- 4
239
- 1
240
- 15
241
- 5
242
- 7
243
- 7
244
- 64
245
- 56
246
- 8
247
- 47
248
- 50
249
- 4
250
- 1
251
- 11
252
- I
253
- 4
254
- I
255
- 0
256
- I
257
- 0
258
- I
259
- 0
260
- I
261
- -2
262
- p
263
- 9
264
- M
265
- 1
266
- p
267
- 2
268
- x
269
- 9
270
- for_block
271
- t
272
- n
273
- x
274
- 3
275
- Alf
276
- i
277
- 10
278
- 45
279
- 0
280
- 1
281
- 5
282
- 48
283
- 2
284
- 49
285
- 3
286
- 1
287
- 11
288
- I
289
- 3
290
- I
291
- 0
292
- I
293
- 0
294
- I
295
- 0
296
- I
297
- -2
298
- p
299
- 4
300
- x
301
- 8
302
- AttrList
303
- n
304
- x
305
- 3
306
- arg
307
- x
308
- 6
309
- coerce
310
- p
311
- 3
312
- I
313
- 0
314
- I
315
- 7
316
- I
317
- a
318
- x
319
- 63
320
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
321
- p
322
- 0
323
- x
324
- 7
325
- subject
326
- s
327
- 22
328
- when passed a AttrList
329
- M
330
- 1
331
- p
332
- 2
333
- x
334
- 9
335
- for_block
336
- t
337
- n
338
- x
339
- 3
340
- Alf
341
- i
342
- 18
343
- 5
344
- 7
345
- 0
346
- 56
347
- 1
348
- 47
349
- 50
350
- 2
351
- 1
352
- 15
353
- 5
354
- 56
355
- 3
356
- 47
357
- 50
358
- 4
359
- 0
360
- 11
361
- I
362
- 4
363
- I
364
- 0
365
- I
366
- 0
367
- I
368
- 0
369
- I
370
- -2
371
- p
372
- 5
373
- x
374
- 3
375
- arg
376
- M
377
- 1
378
- p
379
- 2
380
- x
381
- 9
382
- for_block
383
- t
384
- n
385
- x
386
- 3
387
- Alf
388
- i
389
- 7
390
- 7
391
- 0
392
- 7
393
- 1
394
- 35
395
- 2
396
- 11
397
- I
398
- 3
399
- I
400
- 0
401
- I
402
- 0
403
- I
404
- 0
405
- I
406
- -2
407
- p
408
- 2
409
- x
410
- 1
411
- a
412
- x
413
- 1
414
- b
415
- p
416
- 3
417
- I
418
- 0
419
- I
420
- a
421
- I
422
- 7
423
- x
424
- 63
425
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
426
- p
427
- 0
428
- x
429
- 3
430
- let
431
- M
432
- 1
433
- p
434
- 2
435
- x
436
- 9
437
- for_block
438
- t
439
- n
440
- x
441
- 3
442
- Alf
443
- i
444
- 41
445
- 5
446
- 5
447
- 45
448
- 0
449
- 1
450
- 13
451
- 71
452
- 2
453
- 47
454
- 9
455
- 26
456
- 47
457
- 49
458
- 3
459
- 0
460
- 13
461
- 5
462
- 48
463
- 4
464
- 47
465
- 49
466
- 5
467
- 1
468
- 15
469
- 8
470
- 32
471
- 5
472
- 48
473
- 4
474
- 49
475
- 2
476
- 1
477
- 47
478
- 49
479
- 6
480
- 1
481
- 47
482
- 49
483
- 7
484
- 1
485
- 11
486
- I
487
- 6
488
- I
489
- 0
490
- I
491
- 0
492
- I
493
- 0
494
- I
495
- -2
496
- p
497
- 8
498
- x
499
- 8
500
- AttrList
501
- n
502
- x
503
- 3
504
- new
505
- x
506
- 8
507
- allocate
508
- x
509
- 3
510
- arg
511
- x
512
- 10
513
- initialize
514
- x
515
- 2
516
- eq
517
- x
518
- 6
519
- should
520
- p
521
- 3
522
- I
523
- 0
524
- I
525
- b
526
- I
527
- 29
528
- x
529
- 63
530
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
531
- p
532
- 0
533
- x
534
- 2
535
- it
536
- p
537
- 5
538
- I
539
- 0
540
- I
541
- a
542
- I
543
- a
544
- I
545
- b
546
- I
547
- 12
548
- x
549
- 63
550
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
551
- p
552
- 0
553
- x
554
- 8
555
- describe
556
- s
557
- 20
558
- when passed an array
559
- M
560
- 1
561
- p
562
- 2
563
- x
564
- 9
565
- for_block
566
- t
567
- n
568
- x
569
- 3
570
- Alf
571
- i
572
- 18
573
- 5
574
- 7
575
- 0
576
- 56
577
- 1
578
- 47
579
- 50
580
- 2
581
- 1
582
- 15
583
- 5
584
- 56
585
- 3
586
- 47
587
- 50
588
- 4
589
- 0
590
- 11
591
- I
592
- 4
593
- I
594
- 0
595
- I
596
- 0
597
- I
598
- 0
599
- I
600
- -2
601
- p
602
- 5
603
- x
604
- 3
605
- arg
606
- M
607
- 1
608
- p
609
- 2
610
- x
611
- 9
612
- for_block
613
- t
614
- n
615
- x
616
- 3
617
- Alf
618
- i
619
- 7
620
- 7
621
- 0
622
- 7
623
- 1
624
- 35
625
- 2
626
- 11
627
- I
628
- 3
629
- I
630
- 0
631
- I
632
- 0
633
- I
634
- 0
635
- I
636
- -2
637
- p
638
- 2
639
- x
640
- 1
641
- a
642
- x
643
- 1
644
- b
645
- p
646
- 3
647
- I
648
- 0
649
- I
650
- f
651
- I
652
- 7
653
- x
654
- 63
655
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
656
- p
657
- 0
658
- x
659
- 3
660
- let
661
- M
662
- 1
663
- p
664
- 2
665
- x
666
- 9
667
- for_block
668
- t
669
- n
670
- x
671
- 3
672
- Alf
673
- i
674
- 21
675
- 5
676
- 48
677
- 0
678
- 49
679
- 1
680
- 0
681
- 5
682
- 7
683
- 2
684
- 7
685
- 3
686
- 35
687
- 2
688
- 47
689
- 49
690
- 4
691
- 1
692
- 49
693
- 5
694
- 1
695
- 11
696
- I
697
- 5
698
- I
699
- 0
700
- I
701
- 0
702
- I
703
- 0
704
- I
705
- -2
706
- p
707
- 6
708
- x
709
- 7
710
- subject
711
- x
712
- 10
713
- attributes
714
- x
715
- 1
716
- a
717
- x
718
- 1
719
- b
720
- x
721
- 2
722
- eq
723
- x
724
- 6
725
- should
726
- p
727
- 3
728
- I
729
- 0
730
- I
731
- 11
732
- I
733
- 15
734
- x
735
- 63
736
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
737
- p
738
- 0
739
- x
740
- 7
741
- specify
742
- p
743
- 5
744
- I
745
- 0
746
- I
747
- f
748
- I
749
- a
750
- I
751
- 10
752
- I
753
- 12
754
- x
755
- 63
756
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
757
- p
758
- 0
759
- s
760
- 23
761
- when passed an Ordering
762
- M
763
- 1
764
- p
765
- 2
766
- x
767
- 9
768
- for_block
769
- t
770
- n
771
- x
772
- 3
773
- Alf
774
- i
775
- 18
776
- 5
777
- 7
778
- 0
779
- 56
780
- 1
781
- 47
782
- 50
783
- 2
784
- 1
785
- 15
786
- 5
787
- 56
788
- 3
789
- 47
790
- 50
791
- 4
792
- 0
793
- 11
794
- I
795
- 4
796
- I
797
- 0
798
- I
799
- 0
800
- I
801
- 0
802
- I
803
- -2
804
- p
805
- 5
806
- x
807
- 3
808
- arg
809
- M
810
- 1
811
- p
812
- 2
813
- x
814
- 9
815
- for_block
816
- t
817
- n
818
- x
819
- 3
820
- Alf
821
- i
822
- 53
823
- 45
824
- 0
825
- 1
826
- 13
827
- 71
828
- 2
829
- 47
830
- 9
831
- 35
832
- 47
833
- 49
834
- 3
835
- 0
836
- 13
837
- 7
838
- 4
839
- 7
840
- 5
841
- 35
842
- 2
843
- 7
844
- 6
845
- 7
846
- 5
847
- 35
848
- 2
849
- 35
850
- 2
851
- 47
852
- 49
853
- 7
854
- 1
855
- 15
856
- 8
857
- 52
858
- 7
859
- 4
860
- 7
861
- 5
862
- 35
863
- 2
864
- 7
865
- 6
866
- 7
867
- 5
868
- 35
869
- 2
870
- 35
871
- 2
872
- 49
873
- 2
874
- 1
875
- 11
876
- I
877
- 6
878
- I
879
- 0
880
- I
881
- 0
882
- I
883
- 0
884
- I
885
- -2
886
- p
887
- 8
888
- x
889
- 8
890
- Ordering
891
- n
892
- x
893
- 3
894
- new
895
- x
896
- 8
897
- allocate
898
- x
899
- 1
900
- a
901
- x
902
- 3
903
- asc
904
- x
905
- 1
906
- b
907
- x
908
- 10
909
- initialize
910
- p
911
- 3
912
- I
913
- 0
914
- I
915
- 16
916
- I
917
- 35
918
- x
919
- 63
920
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
921
- p
922
- 0
923
- x
924
- 3
925
- let
926
- M
927
- 1
928
- p
929
- 2
930
- x
931
- 9
932
- for_block
933
- t
934
- n
935
- x
936
- 3
937
- Alf
938
- i
939
- 47
940
- 5
941
- 5
942
- 45
943
- 0
944
- 1
945
- 13
946
- 71
947
- 2
948
- 47
949
- 9
950
- 29
951
- 47
952
- 49
953
- 3
954
- 0
955
- 13
956
- 7
957
- 4
958
- 7
959
- 5
960
- 35
961
- 2
962
- 47
963
- 49
964
- 6
965
- 1
966
- 15
967
- 8
968
- 38
969
- 7
970
- 4
971
- 7
972
- 5
973
- 35
974
- 2
975
- 49
976
- 2
977
- 1
978
- 47
979
- 49
980
- 7
981
- 1
982
- 47
983
- 49
984
- 8
985
- 1
986
- 11
987
- I
988
- 7
989
- I
990
- 0
991
- I
992
- 0
993
- I
994
- 0
995
- I
996
- -2
997
- p
998
- 9
999
- x
1000
- 8
1001
- AttrList
1002
- n
1003
- x
1004
- 3
1005
- new
1006
- x
1007
- 8
1008
- allocate
1009
- x
1010
- 1
1011
- a
1012
- x
1013
- 1
1014
- b
1015
- x
1016
- 10
1017
- initialize
1018
- x
1019
- 2
1020
- eq
1021
- x
1022
- 6
1023
- should
1024
- p
1025
- 3
1026
- I
1027
- 0
1028
- I
1029
- 17
1030
- I
1031
- 2f
1032
- x
1033
- 63
1034
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
1035
- p
1036
- 0
1037
- x
1038
- 2
1039
- it
1040
- p
1041
- 5
1042
- I
1043
- 0
1044
- I
1045
- 16
1046
- I
1047
- a
1048
- I
1049
- 17
1050
- I
1051
- 12
1052
- x
1053
- 63
1054
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
1055
- p
1056
- 0
1057
- p
1058
- 9
1059
- I
1060
- 0
1061
- I
1062
- 7
1063
- I
1064
- 8
1065
- I
1066
- 9
1067
- I
1068
- 13
1069
- I
1070
- e
1071
- I
1072
- 1e
1073
- I
1074
- 15
1075
- I
1076
- 29
1077
- x
1078
- 63
1079
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
1080
- p
1081
- 0
1082
- x
1083
- 8
1084
- describe
1085
- s
1086
- 9
1087
- from_argv
1088
- M
1089
- 1
1090
- p
1091
- 2
1092
- x
1093
- 9
1094
- for_block
1095
- t
1096
- n
1097
- x
1098
- 3
1099
- Alf
1100
- i
1101
- 41
1102
- 5
1103
- 56
1104
- 0
1105
- 47
1106
- 50
1107
- 1
1108
- 0
1109
- 15
1110
- 5
1111
- 7
1112
- 2
1113
- 64
1114
- 56
1115
- 3
1116
- 47
1117
- 50
1118
- 4
1119
- 1
1120
- 15
1121
- 5
1122
- 7
1123
- 5
1124
- 64
1125
- 56
1126
- 6
1127
- 47
1128
- 50
1129
- 4
1130
- 1
1131
- 15
1132
- 5
1133
- 7
1134
- 7
1135
- 64
1136
- 56
1137
- 8
1138
- 47
1139
- 50
1140
- 4
1141
- 1
1142
- 11
1143
- I
1144
- 4
1145
- I
1146
- 0
1147
- I
1148
- 0
1149
- I
1150
- 0
1151
- I
1152
- -2
1153
- p
1154
- 9
1155
- M
1156
- 1
1157
- p
1158
- 2
1159
- x
1160
- 9
1161
- for_block
1162
- t
1163
- n
1164
- x
1165
- 3
1166
- Alf
1167
- i
1168
- 10
1169
- 45
1170
- 0
1171
- 1
1172
- 5
1173
- 48
1174
- 2
1175
- 49
1176
- 3
1177
- 1
1178
- 11
1179
- I
1180
- 3
1181
- I
1182
- 0
1183
- I
1184
- 0
1185
- I
1186
- 0
1187
- I
1188
- -2
1189
- p
1190
- 4
1191
- x
1192
- 8
1193
- AttrList
1194
- n
1195
- x
1196
- 4
1197
- argv
1198
- x
1199
- 9
1200
- from_argv
1201
- p
1202
- 3
1203
- I
1204
- 0
1205
- I
1206
- 1e
1207
- I
1208
- a
1209
- x
1210
- 63
1211
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
1212
- p
1213
- 0
1214
- x
1215
- 7
1216
- subject
1217
- s
1218
- 17
1219
- on an empty array
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
- 18
1234
- 5
1235
- 7
1236
- 0
1237
- 56
1238
- 1
1239
- 47
1240
- 50
1241
- 2
1242
- 1
1243
- 15
1244
- 5
1245
- 56
1246
- 3
1247
- 47
1248
- 50
1249
- 4
1250
- 0
1251
- 11
1252
- I
1253
- 4
1254
- I
1255
- 0
1256
- I
1257
- 0
1258
- I
1259
- 0
1260
- I
1261
- -2
1262
- p
1263
- 5
1264
- x
1265
- 4
1266
- argv
1267
- M
1268
- 1
1269
- p
1270
- 2
1271
- x
1272
- 9
1273
- for_block
1274
- t
1275
- n
1276
- x
1277
- 3
1278
- Alf
1279
- i
1280
- 3
1281
- 35
1282
- 0
1283
- 11
1284
- I
1285
- 2
1286
- I
1287
- 0
1288
- I
1289
- 0
1290
- I
1291
- 0
1292
- I
1293
- -2
1294
- p
1295
- 0
1296
- p
1297
- 3
1298
- I
1299
- 0
1300
- I
1301
- 21
1302
- I
1303
- 3
1304
- x
1305
- 63
1306
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
1307
- p
1308
- 0
1309
- x
1310
- 3
1311
- let
1312
- M
1313
- 1
1314
- p
1315
- 2
1316
- x
1317
- 9
1318
- for_block
1319
- t
1320
- n
1321
- x
1322
- 3
1323
- Alf
1324
- i
1325
- 39
1326
- 5
1327
- 5
1328
- 45
1329
- 0
1330
- 1
1331
- 13
1332
- 71
1333
- 2
1334
- 47
1335
- 9
1336
- 25
1337
- 47
1338
- 49
1339
- 3
1340
- 0
1341
- 13
1342
- 35
1343
- 0
1344
- 47
1345
- 49
1346
- 4
1347
- 1
1348
- 15
1349
- 8
1350
- 30
1351
- 35
1352
- 0
1353
- 49
1354
- 2
1355
- 1
1356
- 47
1357
- 49
1358
- 5
1359
- 1
1360
- 47
1361
- 49
1362
- 6
1363
- 1
1364
- 11
1365
- I
1366
- 6
1367
- I
1368
- 0
1369
- I
1370
- 0
1371
- I
1372
- 0
1373
- I
1374
- -2
1375
- p
1376
- 7
1377
- x
1378
- 8
1379
- AttrList
1380
- n
1381
- x
1382
- 3
1383
- new
1384
- x
1385
- 8
1386
- allocate
1387
- x
1388
- 10
1389
- initialize
1390
- x
1391
- 2
1392
- eq
1393
- x
1394
- 6
1395
- should
1396
- p
1397
- 3
1398
- I
1399
- 0
1400
- I
1401
- 22
1402
- I
1403
- 27
1404
- x
1405
- 63
1406
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
1407
- p
1408
- 0
1409
- x
1410
- 2
1411
- it
1412
- p
1413
- 5
1414
- I
1415
- 0
1416
- I
1417
- 21
1418
- I
1419
- a
1420
- I
1421
- 22
1422
- I
1423
- 12
1424
- x
1425
- 63
1426
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
1427
- p
1428
- 0
1429
- x
1430
- 8
1431
- describe
1432
- s
1433
- 14
1434
- on a singleton
1435
- M
1436
- 1
1437
- p
1438
- 2
1439
- x
1440
- 9
1441
- for_block
1442
- t
1443
- n
1444
- x
1445
- 3
1446
- Alf
1447
- i
1448
- 18
1449
- 5
1450
- 7
1451
- 0
1452
- 56
1453
- 1
1454
- 47
1455
- 50
1456
- 2
1457
- 1
1458
- 15
1459
- 5
1460
- 56
1461
- 3
1462
- 47
1463
- 50
1464
- 4
1465
- 0
1466
- 11
1467
- I
1468
- 4
1469
- I
1470
- 0
1471
- I
1472
- 0
1473
- I
1474
- 0
1475
- I
1476
- -2
1477
- p
1478
- 5
1479
- x
1480
- 4
1481
- argv
1482
- M
1483
- 1
1484
- p
1485
- 2
1486
- x
1487
- 9
1488
- for_block
1489
- t
1490
- n
1491
- x
1492
- 3
1493
- Alf
1494
- i
1495
- 6
1496
- 7
1497
- 0
1498
- 64
1499
- 35
1500
- 1
1501
- 11
1502
- I
1503
- 2
1504
- I
1505
- 0
1506
- I
1507
- 0
1508
- I
1509
- 0
1510
- I
1511
- -2
1512
- p
1513
- 1
1514
- s
1515
- 5
1516
- hello
1517
- p
1518
- 3
1519
- I
1520
- 0
1521
- I
1522
- 26
1523
- I
1524
- 6
1525
- x
1526
- 63
1527
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
1528
- p
1529
- 0
1530
- x
1531
- 3
1532
- let
1533
- M
1534
- 1
1535
- p
1536
- 2
1537
- x
1538
- 9
1539
- for_block
1540
- t
1541
- n
1542
- x
1543
- 3
1544
- Alf
1545
- i
1546
- 43
1547
- 5
1548
- 5
1549
- 45
1550
- 0
1551
- 1
1552
- 13
1553
- 71
1554
- 2
1555
- 47
1556
- 9
1557
- 27
1558
- 47
1559
- 49
1560
- 3
1561
- 0
1562
- 13
1563
- 7
1564
- 4
1565
- 35
1566
- 1
1567
- 47
1568
- 49
1569
- 5
1570
- 1
1571
- 15
1572
- 8
1573
- 34
1574
- 7
1575
- 4
1576
- 35
1577
- 1
1578
- 49
1579
- 2
1580
- 1
1581
- 47
1582
- 49
1583
- 6
1584
- 1
1585
- 47
1586
- 49
1587
- 7
1588
- 1
1589
- 11
1590
- I
1591
- 6
1592
- I
1593
- 0
1594
- I
1595
- 0
1596
- I
1597
- 0
1598
- I
1599
- -2
1600
- p
1601
- 8
1602
- x
1603
- 8
1604
- AttrList
1605
- n
1606
- x
1607
- 3
1608
- new
1609
- x
1610
- 8
1611
- allocate
1612
- x
1613
- 5
1614
- hello
1615
- x
1616
- 10
1617
- initialize
1618
- x
1619
- 2
1620
- eq
1621
- x
1622
- 6
1623
- should
1624
- p
1625
- 3
1626
- I
1627
- 0
1628
- I
1629
- 27
1630
- I
1631
- 2b
1632
- x
1633
- 63
1634
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
1635
- p
1636
- 0
1637
- x
1638
- 2
1639
- it
1640
- p
1641
- 5
1642
- I
1643
- 0
1644
- I
1645
- 26
1646
- I
1647
- a
1648
- I
1649
- 27
1650
- I
1651
- 12
1652
- x
1653
- 63
1654
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
1655
- p
1656
- 0
1657
- s
1658
- 19
1659
- on multiple strings
1660
- M
1661
- 1
1662
- p
1663
- 2
1664
- x
1665
- 9
1666
- for_block
1667
- t
1668
- n
1669
- x
1670
- 3
1671
- Alf
1672
- i
1673
- 18
1674
- 5
1675
- 7
1676
- 0
1677
- 56
1678
- 1
1679
- 47
1680
- 50
1681
- 2
1682
- 1
1683
- 15
1684
- 5
1685
- 56
1686
- 3
1687
- 47
1688
- 50
1689
- 4
1690
- 0
1691
- 11
1692
- I
1693
- 4
1694
- I
1695
- 0
1696
- I
1697
- 0
1698
- I
1699
- 0
1700
- I
1701
- -2
1702
- p
1703
- 5
1704
- x
1705
- 4
1706
- argv
1707
- M
1708
- 1
1709
- p
1710
- 2
1711
- x
1712
- 9
1713
- for_block
1714
- t
1715
- n
1716
- x
1717
- 3
1718
- Alf
1719
- i
1720
- 9
1721
- 7
1722
- 0
1723
- 64
1724
- 7
1725
- 1
1726
- 64
1727
- 35
1728
- 2
1729
- 11
1730
- I
1731
- 3
1732
- I
1733
- 0
1734
- I
1735
- 0
1736
- I
1737
- 0
1738
- I
1739
- -2
1740
- p
1741
- 2
1742
- s
1743
- 5
1744
- hello
1745
- s
1746
- 5
1747
- world
1748
- p
1749
- 3
1750
- I
1751
- 0
1752
- I
1753
- 2b
1754
- I
1755
- 9
1756
- x
1757
- 63
1758
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
1759
- p
1760
- 0
1761
- x
1762
- 3
1763
- let
1764
- M
1765
- 1
1766
- p
1767
- 2
1768
- x
1769
- 9
1770
- for_block
1771
- t
1772
- n
1773
- x
1774
- 3
1775
- Alf
1776
- i
1777
- 47
1778
- 5
1779
- 5
1780
- 45
1781
- 0
1782
- 1
1783
- 13
1784
- 71
1785
- 2
1786
- 47
1787
- 9
1788
- 29
1789
- 47
1790
- 49
1791
- 3
1792
- 0
1793
- 13
1794
- 7
1795
- 4
1796
- 7
1797
- 5
1798
- 35
1799
- 2
1800
- 47
1801
- 49
1802
- 6
1803
- 1
1804
- 15
1805
- 8
1806
- 38
1807
- 7
1808
- 4
1809
- 7
1810
- 5
1811
- 35
1812
- 2
1813
- 49
1814
- 2
1815
- 1
1816
- 47
1817
- 49
1818
- 7
1819
- 1
1820
- 47
1821
- 49
1822
- 8
1823
- 1
1824
- 11
1825
- I
1826
- 7
1827
- I
1828
- 0
1829
- I
1830
- 0
1831
- I
1832
- 0
1833
- I
1834
- -2
1835
- p
1836
- 9
1837
- x
1838
- 8
1839
- AttrList
1840
- n
1841
- x
1842
- 3
1843
- new
1844
- x
1845
- 8
1846
- allocate
1847
- x
1848
- 5
1849
- hello
1850
- x
1851
- 5
1852
- world
1853
- x
1854
- 10
1855
- initialize
1856
- x
1857
- 2
1858
- eq
1859
- x
1860
- 6
1861
- should
1862
- p
1863
- 3
1864
- I
1865
- 0
1866
- I
1867
- 2c
1868
- I
1869
- 2f
1870
- x
1871
- 63
1872
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
1873
- p
1874
- 0
1875
- x
1876
- 2
1877
- it
1878
- p
1879
- 5
1880
- I
1881
- 0
1882
- I
1883
- 2b
1884
- I
1885
- a
1886
- I
1887
- 2c
1888
- I
1889
- 12
1890
- x
1891
- 63
1892
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
1893
- p
1894
- 0
1895
- p
1896
- 9
1897
- I
1898
- 0
1899
- I
1900
- 1e
1901
- I
1902
- 8
1903
- I
1904
- 20
1905
- I
1906
- 13
1907
- I
1908
- 25
1909
- I
1910
- 1e
1911
- I
1912
- 2a
1913
- I
1914
- 29
1915
- x
1916
- 63
1917
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
1918
- p
1919
- 0
1920
- s
1921
- 11
1922
- to_ordering
1923
- M
1924
- 1
1925
- p
1926
- 2
1927
- x
1928
- 9
1929
- for_block
1930
- t
1931
- n
1932
- x
1933
- 3
1934
- Alf
1935
- i
1936
- 11
1937
- 5
1938
- 7
1939
- 0
1940
- 64
1941
- 56
1942
- 1
1943
- 47
1944
- 50
1945
- 2
1946
- 1
1947
- 11
1948
- I
1949
- 4
1950
- I
1951
- 0
1952
- I
1953
- 0
1954
- I
1955
- 0
1956
- I
1957
- -2
1958
- p
1959
- 3
1960
- s
1961
- 20
1962
- when passed an array
1963
- M
1964
- 1
1965
- p
1966
- 2
1967
- x
1968
- 9
1969
- for_block
1970
- t
1971
- n
1972
- x
1973
- 3
1974
- Alf
1975
- i
1976
- 70
1977
- 45
1978
- 0
1979
- 1
1980
- 7
1981
- 2
1982
- 7
1983
- 3
1984
- 35
1985
- 2
1986
- 49
1987
- 4
1988
- 1
1989
- 19
1990
- 0
1991
- 15
1992
- 20
1993
- 0
1994
- 49
1995
- 5
1996
- 0
1997
- 19
1998
- 1
1999
- 15
2000
- 20
2001
- 1
2002
- 49
2003
- 6
2004
- 0
2005
- 49
2006
- 7
2007
- 0
2008
- 7
2009
- 2
2010
- 7
2011
- 3
2012
- 35
2013
- 2
2014
- 83
2015
- 8
2016
- 15
2017
- 20
2018
- 1
2019
- 7
2020
- 2
2021
- 49
2022
- 9
2023
- 1
2024
- 49
2025
- 7
2026
- 0
2027
- 7
2028
- 10
2029
- 83
2030
- 8
2031
- 15
2032
- 20
2033
- 1
2034
- 7
2035
- 3
2036
- 49
2037
- 9
2038
- 1
2039
- 49
2040
- 7
2041
- 0
2042
- 7
2043
- 10
2044
- 83
2045
- 8
2046
- 11
2047
- I
2048
- 6
2049
- I
2050
- 2
2051
- I
2052
- 0
2053
- I
2054
- 0
2055
- I
2056
- -2
2057
- p
2058
- 11
2059
- x
2060
- 8
2061
- AttrList
2062
- n
2063
- x
2064
- 1
2065
- a
2066
- x
2067
- 1
2068
- b
2069
- x
2070
- 6
2071
- coerce
2072
- x
2073
- 11
2074
- to_ordering
2075
- x
2076
- 10
2077
- attributes
2078
- x
2079
- 6
2080
- should
2081
- x
2082
- 2
2083
- ==
2084
- x
2085
- 8
2086
- order_of
2087
- x
2088
- 3
2089
- asc
2090
- p
2091
- 11
2092
- I
2093
- 0
2094
- I
2095
- 34
2096
- I
2097
- f
2098
- I
2099
- 35
2100
- I
2101
- 17
2102
- I
2103
- 36
2104
- I
2105
- 28
2106
- I
2107
- 37
2108
- I
2109
- 37
2110
- I
2111
- 38
2112
- I
2113
- 46
2114
- x
2115
- 63
2116
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
2117
- p
2118
- 2
2119
- x
2120
- 3
2121
- key
2122
- x
2123
- 4
2124
- okey
2125
- x
2126
- 7
2127
- specify
2128
- p
2129
- 3
2130
- I
2131
- 0
2132
- I
2133
- 33
2134
- I
2135
- b
2136
- x
2137
- 63
2138
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
2139
- p
2140
- 0
2141
- s
2142
- 5
2143
- split
2144
- M
2145
- 1
2146
- p
2147
- 2
2148
- x
2149
- 9
2150
- for_block
2151
- t
2152
- n
2153
- x
2154
- 3
2155
- Alf
2156
- i
2157
- 30
2158
- 5
2159
- 56
2160
- 0
2161
- 47
2162
- 50
2163
- 1
2164
- 0
2165
- 15
2166
- 5
2167
- 7
2168
- 2
2169
- 64
2170
- 56
2171
- 3
2172
- 47
2173
- 50
2174
- 4
2175
- 1
2176
- 15
2177
- 5
2178
- 7
2179
- 5
2180
- 64
2181
- 56
2182
- 6
2183
- 47
2184
- 50
2185
- 4
2186
- 1
2187
- 11
2188
- I
2189
- 4
2190
- I
2191
- 0
2192
- I
2193
- 0
2194
- I
2195
- 0
2196
- I
2197
- -2
2198
- p
2199
- 7
2200
- M
2201
- 1
2202
- p
2203
- 2
2204
- x
2205
- 9
2206
- for_block
2207
- t
2208
- n
2209
- x
2210
- 3
2211
- Alf
2212
- i
2213
- 13
2214
- 5
2215
- 48
2216
- 0
2217
- 5
2218
- 48
2219
- 1
2220
- 5
2221
- 48
2222
- 2
2223
- 49
2224
- 3
2225
- 2
2226
- 11
2227
- I
2228
- 4
2229
- I
2230
- 0
2231
- I
2232
- 0
2233
- I
2234
- 0
2235
- I
2236
- -2
2237
- p
2238
- 4
2239
- x
2240
- 3
2241
- key
2242
- x
2243
- 5
2244
- tuple
2245
- x
2246
- 6
2247
- allbut
2248
- x
2249
- 5
2250
- split
2251
- p
2252
- 3
2253
- I
2254
- 0
2255
- I
2256
- 3f
2257
- I
2258
- d
2259
- x
2260
- 63
2261
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
2262
- p
2263
- 0
2264
- x
2265
- 7
2266
- subject
2267
- s
2268
- 24
2269
- when used without allbut
2270
- M
2271
- 1
2272
- p
2273
- 2
2274
- x
2275
- 9
2276
- for_block
2277
- t
2278
- n
2279
- x
2280
- 3
2281
- Alf
2282
- i
2283
- 48
2284
- 5
2285
- 7
2286
- 0
2287
- 56
2288
- 1
2289
- 47
2290
- 50
2291
- 2
2292
- 1
2293
- 15
2294
- 5
2295
- 7
2296
- 3
2297
- 56
2298
- 4
2299
- 47
2300
- 50
2301
- 2
2302
- 1
2303
- 15
2304
- 5
2305
- 7
2306
- 5
2307
- 56
2308
- 6
2309
- 47
2310
- 50
2311
- 2
2312
- 1
2313
- 15
2314
- 5
2315
- 7
2316
- 7
2317
- 56
2318
- 8
2319
- 47
2320
- 50
2321
- 2
2322
- 1
2323
- 15
2324
- 5
2325
- 56
2326
- 9
2327
- 47
2328
- 50
2329
- 10
2330
- 0
2331
- 11
2332
- I
2333
- 4
2334
- I
2335
- 0
2336
- I
2337
- 0
2338
- I
2339
- 0
2340
- I
2341
- -2
2342
- p
2343
- 11
2344
- x
2345
- 3
2346
- key
2347
- M
2348
- 1
2349
- p
2350
- 2
2351
- x
2352
- 9
2353
- for_block
2354
- t
2355
- n
2356
- x
2357
- 3
2358
- Alf
2359
- i
2360
- 37
2361
- 45
2362
- 0
2363
- 1
2364
- 13
2365
- 71
2366
- 2
2367
- 47
2368
- 9
2369
- 27
2370
- 47
2371
- 49
2372
- 3
2373
- 0
2374
- 13
2375
- 7
2376
- 4
2377
- 7
2378
- 5
2379
- 35
2380
- 2
2381
- 47
2382
- 49
2383
- 6
2384
- 1
2385
- 15
2386
- 8
2387
- 36
2388
- 7
2389
- 4
2390
- 7
2391
- 5
2392
- 35
2393
- 2
2394
- 49
2395
- 2
2396
- 1
2397
- 11
2398
- I
2399
- 5
2400
- I
2401
- 0
2402
- I
2403
- 0
2404
- I
2405
- 0
2406
- I
2407
- -2
2408
- p
2409
- 7
2410
- x
2411
- 8
2412
- AttrList
2413
- n
2414
- x
2415
- 3
2416
- new
2417
- x
2418
- 8
2419
- allocate
2420
- x
2421
- 1
2422
- a
2423
- x
2424
- 1
2425
- b
2426
- x
2427
- 10
2428
- initialize
2429
- p
2430
- 3
2431
- I
2432
- 0
2433
- I
2434
- 42
2435
- I
2436
- 25
2437
- x
2438
- 63
2439
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
2440
- p
2441
- 0
2442
- x
2443
- 3
2444
- let
2445
- x
2446
- 6
2447
- allbut
2448
- M
2449
- 1
2450
- p
2451
- 2
2452
- x
2453
- 9
2454
- for_block
2455
- t
2456
- n
2457
- x
2458
- 3
2459
- Alf
2460
- i
2461
- 2
2462
- 3
2463
- 11
2464
- I
2465
- 2
2466
- I
2467
- 0
2468
- I
2469
- 0
2470
- I
2471
- 0
2472
- I
2473
- -2
2474
- p
2475
- 0
2476
- p
2477
- 3
2478
- I
2479
- 0
2480
- I
2481
- 43
2482
- I
2483
- 2
2484
- x
2485
- 63
2486
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
2487
- p
2488
- 0
2489
- x
2490
- 5
2491
- tuple
2492
- M
2493
- 1
2494
- p
2495
- 2
2496
- x
2497
- 9
2498
- for_block
2499
- t
2500
- n
2501
- x
2502
- 3
2503
- Alf
2504
- i
2505
- 34
2506
- 44
2507
- 43
2508
- 0
2509
- 4
2510
- 3
2511
- 49
2512
- 1
2513
- 1
2514
- 13
2515
- 7
2516
- 2
2517
- 79
2518
- 49
2519
- 3
2520
- 2
2521
- 15
2522
- 13
2523
- 7
2524
- 4
2525
- 80
2526
- 49
2527
- 3
2528
- 2
2529
- 15
2530
- 13
2531
- 7
2532
- 5
2533
- 4
2534
- 3
2535
- 49
2536
- 3
2537
- 2
2538
- 15
2539
- 11
2540
- I
2541
- 5
2542
- I
2543
- 0
2544
- I
2545
- 0
2546
- I
2547
- 0
2548
- I
2549
- -2
2550
- p
2551
- 6
2552
- x
2553
- 4
2554
- Hash
2555
- x
2556
- 16
2557
- new_from_literal
2558
- x
2559
- 1
2560
- a
2561
- x
2562
- 3
2563
- []=
2564
- x
2565
- 1
2566
- b
2567
- x
2568
- 1
2569
- c
2570
- p
2571
- 3
2572
- I
2573
- 0
2574
- I
2575
- 44
2576
- I
2577
- 22
2578
- x
2579
- 63
2580
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
2581
- p
2582
- 0
2583
- x
2584
- 8
2585
- expected
2586
- M
2587
- 1
2588
- p
2589
- 2
2590
- x
2591
- 9
2592
- for_block
2593
- t
2594
- n
2595
- x
2596
- 3
2597
- Alf
2598
- i
2599
- 42
2600
- 44
2601
- 43
2602
- 0
2603
- 80
2604
- 49
2605
- 1
2606
- 1
2607
- 13
2608
- 7
2609
- 2
2610
- 79
2611
- 49
2612
- 3
2613
- 2
2614
- 15
2615
- 13
2616
- 7
2617
- 4
2618
- 80
2619
- 49
2620
- 3
2621
- 2
2622
- 15
2623
- 44
2624
- 43
2625
- 0
2626
- 79
2627
- 49
2628
- 1
2629
- 1
2630
- 13
2631
- 7
2632
- 5
2633
- 4
2634
- 3
2635
- 49
2636
- 3
2637
- 2
2638
- 15
2639
- 35
2640
- 2
2641
- 11
2642
- I
2643
- 6
2644
- I
2645
- 0
2646
- I
2647
- 0
2648
- I
2649
- 0
2650
- I
2651
- -2
2652
- p
2653
- 6
2654
- x
2655
- 4
2656
- Hash
2657
- x
2658
- 16
2659
- new_from_literal
2660
- x
2661
- 1
2662
- a
2663
- x
2664
- 3
2665
- []=
2666
- x
2667
- 1
2668
- b
2669
- x
2670
- 1
2671
- c
2672
- p
2673
- 3
2674
- I
2675
- 0
2676
- I
2677
- 45
2678
- I
2679
- 2a
2680
- x
2681
- 63
2682
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
2683
- p
2684
- 0
2685
- M
2686
- 1
2687
- p
2688
- 2
2689
- x
2690
- 9
2691
- for_block
2692
- t
2693
- n
2694
- x
2695
- 3
2696
- Alf
2697
- i
2698
- 9
2699
- 5
2700
- 48
2701
- 0
2702
- 5
2703
- 48
2704
- 1
2705
- 83
2706
- 2
2707
- 11
2708
- I
2709
- 3
2710
- I
2711
- 0
2712
- I
2713
- 0
2714
- I
2715
- 0
2716
- I
2717
- -2
2718
- p
2719
- 3
2720
- x
2721
- 6
2722
- should
2723
- x
2724
- 8
2725
- expected
2726
- x
2727
- 2
2728
- ==
2729
- p
2730
- 3
2731
- I
2732
- 0
2733
- I
2734
- 46
2735
- I
2736
- 9
2737
- x
2738
- 63
2739
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
2740
- p
2741
- 0
2742
- x
2743
- 2
2744
- it
2745
- p
2746
- 11
2747
- I
2748
- 0
2749
- I
2750
- 42
2751
- I
2752
- a
2753
- I
2754
- 43
2755
- I
2756
- 14
2757
- I
2758
- 44
2759
- I
2760
- 1e
2761
- I
2762
- 45
2763
- I
2764
- 28
2765
- I
2766
- 46
2767
- I
2768
- 30
2769
- x
2770
- 63
2771
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
2772
- p
2773
- 0
2774
- x
2775
- 8
2776
- describe
2777
- s
2778
- 21
2779
- when used with allbut
2780
- M
2781
- 1
2782
- p
2783
- 2
2784
- x
2785
- 9
2786
- for_block
2787
- t
2788
- n
2789
- x
2790
- 3
2791
- Alf
2792
- i
2793
- 48
2794
- 5
2795
- 7
2796
- 0
2797
- 56
2798
- 1
2799
- 47
2800
- 50
2801
- 2
2802
- 1
2803
- 15
2804
- 5
2805
- 7
2806
- 3
2807
- 56
2808
- 4
2809
- 47
2810
- 50
2811
- 2
2812
- 1
2813
- 15
2814
- 5
2815
- 7
2816
- 5
2817
- 56
2818
- 6
2819
- 47
2820
- 50
2821
- 2
2822
- 1
2823
- 15
2824
- 5
2825
- 7
2826
- 7
2827
- 56
2828
- 8
2829
- 47
2830
- 50
2831
- 2
2832
- 1
2833
- 15
2834
- 5
2835
- 56
2836
- 9
2837
- 47
2838
- 50
2839
- 10
2840
- 0
2841
- 11
2842
- I
2843
- 4
2844
- I
2845
- 0
2846
- I
2847
- 0
2848
- I
2849
- 0
2850
- I
2851
- -2
2852
- p
2853
- 11
2854
- x
2855
- 3
2856
- key
2857
- M
2858
- 1
2859
- p
2860
- 2
2861
- x
2862
- 9
2863
- for_block
2864
- t
2865
- n
2866
- x
2867
- 3
2868
- Alf
2869
- i
2870
- 37
2871
- 45
2872
- 0
2873
- 1
2874
- 13
2875
- 71
2876
- 2
2877
- 47
2878
- 9
2879
- 27
2880
- 47
2881
- 49
2882
- 3
2883
- 0
2884
- 13
2885
- 7
2886
- 4
2887
- 7
2888
- 5
2889
- 35
2890
- 2
2891
- 47
2892
- 49
2893
- 6
2894
- 1
2895
- 15
2896
- 8
2897
- 36
2898
- 7
2899
- 4
2900
- 7
2901
- 5
2902
- 35
2903
- 2
2904
- 49
2905
- 2
2906
- 1
2907
- 11
2908
- I
2909
- 5
2910
- I
2911
- 0
2912
- I
2913
- 0
2914
- I
2915
- 0
2916
- I
2917
- -2
2918
- p
2919
- 7
2920
- x
2921
- 8
2922
- AttrList
2923
- n
2924
- x
2925
- 3
2926
- new
2927
- x
2928
- 8
2929
- allocate
2930
- x
2931
- 1
2932
- a
2933
- x
2934
- 1
2935
- b
2936
- x
2937
- 10
2938
- initialize
2939
- p
2940
- 3
2941
- I
2942
- 0
2943
- I
2944
- 4a
2945
- I
2946
- 25
2947
- x
2948
- 63
2949
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
2950
- p
2951
- 0
2952
- x
2953
- 3
2954
- let
2955
- x
2956
- 6
2957
- allbut
2958
- M
2959
- 1
2960
- p
2961
- 2
2962
- x
2963
- 9
2964
- for_block
2965
- t
2966
- n
2967
- x
2968
- 3
2969
- Alf
2970
- i
2971
- 2
2972
- 2
2973
- 11
2974
- I
2975
- 2
2976
- I
2977
- 0
2978
- I
2979
- 0
2980
- I
2981
- 0
2982
- I
2983
- -2
2984
- p
2985
- 0
2986
- p
2987
- 3
2988
- I
2989
- 0
2990
- I
2991
- 4b
2992
- I
2993
- 2
2994
- x
2995
- 63
2996
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
2997
- p
2998
- 0
2999
- x
3000
- 5
3001
- tuple
3002
- M
3003
- 1
3004
- p
3005
- 2
3006
- x
3007
- 9
3008
- for_block
3009
- t
3010
- n
3011
- x
3012
- 3
3013
- Alf
3014
- i
3015
- 34
3016
- 44
3017
- 43
3018
- 0
3019
- 4
3020
- 3
3021
- 49
3022
- 1
3023
- 1
3024
- 13
3025
- 7
3026
- 2
3027
- 79
3028
- 49
3029
- 3
3030
- 2
3031
- 15
3032
- 13
3033
- 7
3034
- 4
3035
- 80
3036
- 49
3037
- 3
3038
- 2
3039
- 15
3040
- 13
3041
- 7
3042
- 5
3043
- 4
3044
- 3
3045
- 49
3046
- 3
3047
- 2
3048
- 15
3049
- 11
3050
- I
3051
- 5
3052
- I
3053
- 0
3054
- I
3055
- 0
3056
- I
3057
- 0
3058
- I
3059
- -2
3060
- p
3061
- 6
3062
- x
3063
- 4
3064
- Hash
3065
- x
3066
- 16
3067
- new_from_literal
3068
- x
3069
- 1
3070
- a
3071
- x
3072
- 3
3073
- []=
3074
- x
3075
- 1
3076
- b
3077
- x
3078
- 1
3079
- c
3080
- p
3081
- 3
3082
- I
3083
- 0
3084
- I
3085
- 4c
3086
- I
3087
- 22
3088
- x
3089
- 63
3090
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
3091
- p
3092
- 0
3093
- x
3094
- 8
3095
- expected
3096
- M
3097
- 1
3098
- p
3099
- 2
3100
- x
3101
- 9
3102
- for_block
3103
- t
3104
- n
3105
- x
3106
- 3
3107
- Alf
3108
- i
3109
- 42
3110
- 44
3111
- 43
3112
- 0
3113
- 79
3114
- 49
3115
- 1
3116
- 1
3117
- 13
3118
- 7
3119
- 2
3120
- 4
3121
- 3
3122
- 49
3123
- 3
3124
- 2
3125
- 15
3126
- 44
3127
- 43
3128
- 0
3129
- 80
3130
- 49
3131
- 1
3132
- 1
3133
- 13
3134
- 7
3135
- 4
3136
- 79
3137
- 49
3138
- 3
3139
- 2
3140
- 15
3141
- 13
3142
- 7
3143
- 5
3144
- 80
3145
- 49
3146
- 3
3147
- 2
3148
- 15
3149
- 35
3150
- 2
3151
- 11
3152
- I
3153
- 6
3154
- I
3155
- 0
3156
- I
3157
- 0
3158
- I
3159
- 0
3160
- I
3161
- -2
3162
- p
3163
- 6
3164
- x
3165
- 4
3166
- Hash
3167
- x
3168
- 16
3169
- new_from_literal
3170
- x
3171
- 1
3172
- c
3173
- x
3174
- 3
3175
- []=
3176
- x
3177
- 1
3178
- a
3179
- x
3180
- 1
3181
- b
3182
- p
3183
- 3
3184
- I
3185
- 0
3186
- I
3187
- 4d
3188
- I
3189
- 2a
3190
- x
3191
- 63
3192
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
3193
- p
3194
- 0
3195
- M
3196
- 1
3197
- p
3198
- 2
3199
- x
3200
- 9
3201
- for_block
3202
- t
3203
- n
3204
- x
3205
- 3
3206
- Alf
3207
- i
3208
- 9
3209
- 5
3210
- 48
3211
- 0
3212
- 5
3213
- 48
3214
- 1
3215
- 83
3216
- 2
3217
- 11
3218
- I
3219
- 3
3220
- I
3221
- 0
3222
- I
3223
- 0
3224
- I
3225
- 0
3226
- I
3227
- -2
3228
- p
3229
- 3
3230
- x
3231
- 6
3232
- should
3233
- x
3234
- 8
3235
- expected
3236
- x
3237
- 2
3238
- ==
3239
- p
3240
- 3
3241
- I
3242
- 0
3243
- I
3244
- 4e
3245
- I
3246
- 9
3247
- x
3248
- 63
3249
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
3250
- p
3251
- 0
3252
- x
3253
- 2
3254
- it
3255
- p
3256
- 11
3257
- I
3258
- 0
3259
- I
3260
- 4a
3261
- I
3262
- a
3263
- I
3264
- 4b
3265
- I
3266
- 14
3267
- I
3268
- 4c
3269
- I
3270
- 1e
3271
- I
3272
- 4d
3273
- I
3274
- 28
3275
- I
3276
- 4e
3277
- I
3278
- 30
3279
- x
3280
- 63
3281
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
3282
- p
3283
- 0
3284
- p
3285
- 7
3286
- I
3287
- 0
3288
- I
3289
- 3f
3290
- I
3291
- 8
3292
- I
3293
- 41
3294
- I
3295
- 13
3296
- I
3297
- 49
3298
- I
3299
- 1e
3300
- x
3301
- 63
3302
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
3303
- p
3304
- 0
3305
- s
3306
- 7
3307
- project
3308
- M
3309
- 1
3310
- p
3311
- 2
3312
- x
3313
- 9
3314
- for_block
3315
- t
3316
- n
3317
- x
3318
- 3
3319
- Alf
3320
- i
3321
- 30
3322
- 5
3323
- 56
3324
- 0
3325
- 47
3326
- 50
3327
- 1
3328
- 0
3329
- 15
3330
- 5
3331
- 7
3332
- 2
3333
- 64
3334
- 56
3335
- 3
3336
- 47
3337
- 50
3338
- 4
3339
- 1
3340
- 15
3341
- 5
3342
- 7
3343
- 5
3344
- 64
3345
- 56
3346
- 6
3347
- 47
3348
- 50
3349
- 4
3350
- 1
3351
- 11
3352
- I
3353
- 4
3354
- I
3355
- 0
3356
- I
3357
- 0
3358
- I
3359
- 0
3360
- I
3361
- -2
3362
- p
3363
- 7
3364
- M
3365
- 1
3366
- p
3367
- 2
3368
- x
3369
- 9
3370
- for_block
3371
- t
3372
- n
3373
- x
3374
- 3
3375
- Alf
3376
- i
3377
- 13
3378
- 5
3379
- 48
3380
- 0
3381
- 5
3382
- 48
3383
- 1
3384
- 5
3385
- 48
3386
- 2
3387
- 49
3388
- 3
3389
- 2
3390
- 11
3391
- I
3392
- 4
3393
- I
3394
- 0
3395
- I
3396
- 0
3397
- I
3398
- 0
3399
- I
3400
- -2
3401
- p
3402
- 4
3403
- x
3404
- 3
3405
- key
3406
- x
3407
- 5
3408
- tuple
3409
- x
3410
- 6
3411
- allbut
3412
- x
3413
- 7
3414
- project
3415
- p
3416
- 3
3417
- I
3418
- 0
3419
- I
3420
- 55
3421
- I
3422
- d
3423
- x
3424
- 63
3425
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
3426
- p
3427
- 0
3428
- x
3429
- 7
3430
- subject
3431
- s
3432
- 24
3433
- when used without allbut
3434
- M
3435
- 1
3436
- p
3437
- 2
3438
- x
3439
- 9
3440
- for_block
3441
- t
3442
- n
3443
- x
3444
- 3
3445
- Alf
3446
- i
3447
- 48
3448
- 5
3449
- 7
3450
- 0
3451
- 56
3452
- 1
3453
- 47
3454
- 50
3455
- 2
3456
- 1
3457
- 15
3458
- 5
3459
- 7
3460
- 3
3461
- 56
3462
- 4
3463
- 47
3464
- 50
3465
- 2
3466
- 1
3467
- 15
3468
- 5
3469
- 7
3470
- 5
3471
- 56
3472
- 6
3473
- 47
3474
- 50
3475
- 2
3476
- 1
3477
- 15
3478
- 5
3479
- 7
3480
- 7
3481
- 56
3482
- 8
3483
- 47
3484
- 50
3485
- 2
3486
- 1
3487
- 15
3488
- 5
3489
- 56
3490
- 9
3491
- 47
3492
- 50
3493
- 10
3494
- 0
3495
- 11
3496
- I
3497
- 4
3498
- I
3499
- 0
3500
- I
3501
- 0
3502
- I
3503
- 0
3504
- I
3505
- -2
3506
- p
3507
- 11
3508
- x
3509
- 3
3510
- key
3511
- M
3512
- 1
3513
- p
3514
- 2
3515
- x
3516
- 9
3517
- for_block
3518
- t
3519
- n
3520
- x
3521
- 3
3522
- Alf
3523
- i
3524
- 37
3525
- 45
3526
- 0
3527
- 1
3528
- 13
3529
- 71
3530
- 2
3531
- 47
3532
- 9
3533
- 27
3534
- 47
3535
- 49
3536
- 3
3537
- 0
3538
- 13
3539
- 7
3540
- 4
3541
- 7
3542
- 5
3543
- 35
3544
- 2
3545
- 47
3546
- 49
3547
- 6
3548
- 1
3549
- 15
3550
- 8
3551
- 36
3552
- 7
3553
- 4
3554
- 7
3555
- 5
3556
- 35
3557
- 2
3558
- 49
3559
- 2
3560
- 1
3561
- 11
3562
- I
3563
- 5
3564
- I
3565
- 0
3566
- I
3567
- 0
3568
- I
3569
- 0
3570
- I
3571
- -2
3572
- p
3573
- 7
3574
- x
3575
- 8
3576
- AttrList
3577
- n
3578
- x
3579
- 3
3580
- new
3581
- x
3582
- 8
3583
- allocate
3584
- x
3585
- 1
3586
- a
3587
- x
3588
- 1
3589
- b
3590
- x
3591
- 10
3592
- initialize
3593
- p
3594
- 3
3595
- I
3596
- 0
3597
- I
3598
- 58
3599
- I
3600
- 25
3601
- x
3602
- 63
3603
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
3604
- p
3605
- 0
3606
- x
3607
- 3
3608
- let
3609
- x
3610
- 6
3611
- allbut
3612
- M
3613
- 1
3614
- p
3615
- 2
3616
- x
3617
- 9
3618
- for_block
3619
- t
3620
- n
3621
- x
3622
- 3
3623
- Alf
3624
- i
3625
- 2
3626
- 3
3627
- 11
3628
- I
3629
- 2
3630
- I
3631
- 0
3632
- I
3633
- 0
3634
- I
3635
- 0
3636
- I
3637
- -2
3638
- p
3639
- 0
3640
- p
3641
- 3
3642
- I
3643
- 0
3644
- I
3645
- 59
3646
- I
3647
- 2
3648
- x
3649
- 63
3650
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
3651
- p
3652
- 0
3653
- x
3654
- 5
3655
- tuple
3656
- M
3657
- 1
3658
- p
3659
- 2
3660
- x
3661
- 9
3662
- for_block
3663
- t
3664
- n
3665
- x
3666
- 3
3667
- Alf
3668
- i
3669
- 34
3670
- 44
3671
- 43
3672
- 0
3673
- 4
3674
- 3
3675
- 49
3676
- 1
3677
- 1
3678
- 13
3679
- 7
3680
- 2
3681
- 79
3682
- 49
3683
- 3
3684
- 2
3685
- 15
3686
- 13
3687
- 7
3688
- 4
3689
- 80
3690
- 49
3691
- 3
3692
- 2
3693
- 15
3694
- 13
3695
- 7
3696
- 5
3697
- 4
3698
- 3
3699
- 49
3700
- 3
3701
- 2
3702
- 15
3703
- 11
3704
- I
3705
- 5
3706
- I
3707
- 0
3708
- I
3709
- 0
3710
- I
3711
- 0
3712
- I
3713
- -2
3714
- p
3715
- 6
3716
- x
3717
- 4
3718
- Hash
3719
- x
3720
- 16
3721
- new_from_literal
3722
- x
3723
- 1
3724
- a
3725
- x
3726
- 3
3727
- []=
3728
- x
3729
- 1
3730
- b
3731
- x
3732
- 1
3733
- c
3734
- p
3735
- 3
3736
- I
3737
- 0
3738
- I
3739
- 5a
3740
- I
3741
- 22
3742
- x
3743
- 63
3744
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
3745
- p
3746
- 0
3747
- x
3748
- 8
3749
- expected
3750
- M
3751
- 1
3752
- p
3753
- 2
3754
- x
3755
- 9
3756
- for_block
3757
- t
3758
- n
3759
- x
3760
- 3
3761
- Alf
3762
- i
3763
- 24
3764
- 44
3765
- 43
3766
- 0
3767
- 80
3768
- 49
3769
- 1
3770
- 1
3771
- 13
3772
- 7
3773
- 2
3774
- 79
3775
- 49
3776
- 3
3777
- 2
3778
- 15
3779
- 13
3780
- 7
3781
- 4
3782
- 80
3783
- 49
3784
- 3
3785
- 2
3786
- 15
3787
- 11
3788
- I
3789
- 5
3790
- I
3791
- 0
3792
- I
3793
- 0
3794
- I
3795
- 0
3796
- I
3797
- -2
3798
- p
3799
- 5
3800
- x
3801
- 4
3802
- Hash
3803
- x
3804
- 16
3805
- new_from_literal
3806
- x
3807
- 1
3808
- a
3809
- x
3810
- 3
3811
- []=
3812
- x
3813
- 1
3814
- b
3815
- p
3816
- 3
3817
- I
3818
- 0
3819
- I
3820
- 5b
3821
- I
3822
- 18
3823
- x
3824
- 63
3825
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
3826
- p
3827
- 0
3828
- M
3829
- 1
3830
- p
3831
- 2
3832
- x
3833
- 9
3834
- for_block
3835
- t
3836
- n
3837
- x
3838
- 3
3839
- Alf
3840
- i
3841
- 9
3842
- 5
3843
- 48
3844
- 0
3845
- 5
3846
- 48
3847
- 1
3848
- 83
3849
- 2
3850
- 11
3851
- I
3852
- 3
3853
- I
3854
- 0
3855
- I
3856
- 0
3857
- I
3858
- 0
3859
- I
3860
- -2
3861
- p
3862
- 3
3863
- x
3864
- 6
3865
- should
3866
- x
3867
- 8
3868
- expected
3869
- x
3870
- 2
3871
- ==
3872
- p
3873
- 3
3874
- I
3875
- 0
3876
- I
3877
- 5c
3878
- I
3879
- 9
3880
- x
3881
- 63
3882
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
3883
- p
3884
- 0
3885
- x
3886
- 2
3887
- it
3888
- p
3889
- 11
3890
- I
3891
- 0
3892
- I
3893
- 58
3894
- I
3895
- a
3896
- I
3897
- 59
3898
- I
3899
- 14
3900
- I
3901
- 5a
3902
- I
3903
- 1e
3904
- I
3905
- 5b
3906
- I
3907
- 28
3908
- I
3909
- 5c
3910
- I
3911
- 30
3912
- x
3913
- 63
3914
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
3915
- p
3916
- 0
3917
- x
3918
- 8
3919
- describe
3920
- s
3921
- 21
3922
- when used with allbut
3923
- M
3924
- 1
3925
- p
3926
- 2
3927
- x
3928
- 9
3929
- for_block
3930
- t
3931
- n
3932
- x
3933
- 3
3934
- Alf
3935
- i
3936
- 48
3937
- 5
3938
- 7
3939
- 0
3940
- 56
3941
- 1
3942
- 47
3943
- 50
3944
- 2
3945
- 1
3946
- 15
3947
- 5
3948
- 7
3949
- 3
3950
- 56
3951
- 4
3952
- 47
3953
- 50
3954
- 2
3955
- 1
3956
- 15
3957
- 5
3958
- 7
3959
- 5
3960
- 56
3961
- 6
3962
- 47
3963
- 50
3964
- 2
3965
- 1
3966
- 15
3967
- 5
3968
- 7
3969
- 7
3970
- 56
3971
- 8
3972
- 47
3973
- 50
3974
- 2
3975
- 1
3976
- 15
3977
- 5
3978
- 56
3979
- 9
3980
- 47
3981
- 50
3982
- 10
3983
- 0
3984
- 11
3985
- I
3986
- 4
3987
- I
3988
- 0
3989
- I
3990
- 0
3991
- I
3992
- 0
3993
- I
3994
- -2
3995
- p
3996
- 11
3997
- x
3998
- 3
3999
- key
4000
- M
4001
- 1
4002
- p
4003
- 2
4004
- x
4005
- 9
4006
- for_block
4007
- t
4008
- n
4009
- x
4010
- 3
4011
- Alf
4012
- i
4013
- 37
4014
- 45
4015
- 0
4016
- 1
4017
- 13
4018
- 71
4019
- 2
4020
- 47
4021
- 9
4022
- 27
4023
- 47
4024
- 49
4025
- 3
4026
- 0
4027
- 13
4028
- 7
4029
- 4
4030
- 7
4031
- 5
4032
- 35
4033
- 2
4034
- 47
4035
- 49
4036
- 6
4037
- 1
4038
- 15
4039
- 8
4040
- 36
4041
- 7
4042
- 4
4043
- 7
4044
- 5
4045
- 35
4046
- 2
4047
- 49
4048
- 2
4049
- 1
4050
- 11
4051
- I
4052
- 5
4053
- I
4054
- 0
4055
- I
4056
- 0
4057
- I
4058
- 0
4059
- I
4060
- -2
4061
- p
4062
- 7
4063
- x
4064
- 8
4065
- AttrList
4066
- n
4067
- x
4068
- 3
4069
- new
4070
- x
4071
- 8
4072
- allocate
4073
- x
4074
- 1
4075
- a
4076
- x
4077
- 1
4078
- b
4079
- x
4080
- 10
4081
- initialize
4082
- p
4083
- 3
4084
- I
4085
- 0
4086
- I
4087
- 60
4088
- I
4089
- 25
4090
- x
4091
- 63
4092
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
4093
- p
4094
- 0
4095
- x
4096
- 3
4097
- let
4098
- x
4099
- 6
4100
- allbut
4101
- M
4102
- 1
4103
- p
4104
- 2
4105
- x
4106
- 9
4107
- for_block
4108
- t
4109
- n
4110
- x
4111
- 3
4112
- Alf
4113
- i
4114
- 2
4115
- 2
4116
- 11
4117
- I
4118
- 2
4119
- I
4120
- 0
4121
- I
4122
- 0
4123
- I
4124
- 0
4125
- I
4126
- -2
4127
- p
4128
- 0
4129
- p
4130
- 3
4131
- I
4132
- 0
4133
- I
4134
- 61
4135
- I
4136
- 2
4137
- x
4138
- 63
4139
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
4140
- p
4141
- 0
4142
- x
4143
- 5
4144
- tuple
4145
- M
4146
- 1
4147
- p
4148
- 2
4149
- x
4150
- 9
4151
- for_block
4152
- t
4153
- n
4154
- x
4155
- 3
4156
- Alf
4157
- i
4158
- 34
4159
- 44
4160
- 43
4161
- 0
4162
- 4
4163
- 3
4164
- 49
4165
- 1
4166
- 1
4167
- 13
4168
- 7
4169
- 2
4170
- 79
4171
- 49
4172
- 3
4173
- 2
4174
- 15
4175
- 13
4176
- 7
4177
- 4
4178
- 80
4179
- 49
4180
- 3
4181
- 2
4182
- 15
4183
- 13
4184
- 7
4185
- 5
4186
- 4
4187
- 3
4188
- 49
4189
- 3
4190
- 2
4191
- 15
4192
- 11
4193
- I
4194
- 5
4195
- I
4196
- 0
4197
- I
4198
- 0
4199
- I
4200
- 0
4201
- I
4202
- -2
4203
- p
4204
- 6
4205
- x
4206
- 4
4207
- Hash
4208
- x
4209
- 16
4210
- new_from_literal
4211
- x
4212
- 1
4213
- a
4214
- x
4215
- 3
4216
- []=
4217
- x
4218
- 1
4219
- b
4220
- x
4221
- 1
4222
- c
4223
- p
4224
- 3
4225
- I
4226
- 0
4227
- I
4228
- 62
4229
- I
4230
- 22
4231
- x
4232
- 63
4233
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
4234
- p
4235
- 0
4236
- x
4237
- 8
4238
- expected
4239
- M
4240
- 1
4241
- p
4242
- 2
4243
- x
4244
- 9
4245
- for_block
4246
- t
4247
- n
4248
- x
4249
- 3
4250
- Alf
4251
- i
4252
- 17
4253
- 44
4254
- 43
4255
- 0
4256
- 79
4257
- 49
4258
- 1
4259
- 1
4260
- 13
4261
- 7
4262
- 2
4263
- 4
4264
- 3
4265
- 49
4266
- 3
4267
- 2
4268
- 15
4269
- 11
4270
- I
4271
- 5
4272
- I
4273
- 0
4274
- I
4275
- 0
4276
- I
4277
- 0
4278
- I
4279
- -2
4280
- p
4281
- 4
4282
- x
4283
- 4
4284
- Hash
4285
- x
4286
- 16
4287
- new_from_literal
4288
- x
4289
- 1
4290
- c
4291
- x
4292
- 3
4293
- []=
4294
- p
4295
- 3
4296
- I
4297
- 0
4298
- I
4299
- 63
4300
- I
4301
- 11
4302
- x
4303
- 63
4304
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
4305
- p
4306
- 0
4307
- M
4308
- 1
4309
- p
4310
- 2
4311
- x
4312
- 9
4313
- for_block
4314
- t
4315
- n
4316
- x
4317
- 3
4318
- Alf
4319
- i
4320
- 9
4321
- 5
4322
- 48
4323
- 0
4324
- 5
4325
- 48
4326
- 1
4327
- 83
4328
- 2
4329
- 11
4330
- I
4331
- 3
4332
- I
4333
- 0
4334
- I
4335
- 0
4336
- I
4337
- 0
4338
- I
4339
- -2
4340
- p
4341
- 3
4342
- x
4343
- 6
4344
- should
4345
- x
4346
- 8
4347
- expected
4348
- x
4349
- 2
4350
- ==
4351
- p
4352
- 3
4353
- I
4354
- 0
4355
- I
4356
- 64
4357
- I
4358
- 9
4359
- x
4360
- 63
4361
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
4362
- p
4363
- 0
4364
- x
4365
- 2
4366
- it
4367
- p
4368
- 11
4369
- I
4370
- 0
4371
- I
4372
- 60
4373
- I
4374
- a
4375
- I
4376
- 61
4377
- I
4378
- 14
4379
- I
4380
- 62
4381
- I
4382
- 1e
4383
- I
4384
- 63
4385
- I
4386
- 28
4387
- I
4388
- 64
4389
- I
4390
- 30
4391
- x
4392
- 63
4393
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
4394
- p
4395
- 0
4396
- p
4397
- 7
4398
- I
4399
- 0
4400
- I
4401
- 55
4402
- I
4403
- 8
4404
- I
4405
- 57
4406
- I
4407
- 13
4408
- I
4409
- 5f
4410
- I
4411
- 1e
4412
- x
4413
- 63
4414
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
4415
- p
4416
- 0
4417
- p
4418
- 11
4419
- I
4420
- 0
4421
- I
4422
- 5
4423
- I
4424
- b
4425
- I
4426
- 1c
4427
- I
4428
- 16
4429
- I
4430
- 31
4431
- I
4432
- 21
4433
- I
4434
- 3d
4435
- I
4436
- 2c
4437
- I
4438
- 53
4439
- I
4440
- 37
4441
- x
4442
- 63
4443
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
4444
- p
4445
- 0
4446
- x
4447
- 8
4448
- describe
4449
- p
4450
- 3
4451
- I
4452
- 2
4453
- I
4454
- 3
4455
- I
4456
- d
4457
- x
4458
- 63
4459
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
4460
- p
4461
- 0
4462
- x
4463
- 13
4464
- attach_method
4465
- p
4466
- 5
4467
- I
4468
- 0
4469
- I
4470
- 1
4471
- I
4472
- 9
4473
- I
4474
- 2
4475
- I
4476
- 25
4477
- x
4478
- 63
4479
- /home/blambeau/work/devel/alf/spec/unit/types/test_attr_list.rb
4480
- p
4481
- 0