rbx-trepanning 0.0.5-universal-rubinius-1.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (266) hide show
  1. data/ChangeLog +2002 -0
  2. data/LICENSE +25 -0
  3. data/NEWS +31 -0
  4. data/README.textile +34 -0
  5. data/Rakefile +165 -0
  6. data/THANKS +14 -0
  7. data/app/breakpoint.rb +219 -0
  8. data/app/breakpoint.rbc +3551 -0
  9. data/app/brkptmgr.rb +140 -0
  10. data/app/brkptmgr.rbc +2903 -0
  11. data/app/client.rb +61 -0
  12. data/app/client.rbc +1225 -0
  13. data/app/complete.rb +52 -0
  14. data/app/complete.rbc +1288 -0
  15. data/app/default.rb +71 -0
  16. data/app/default.rbc +1132 -0
  17. data/app/display.rb +148 -0
  18. data/app/display.rbc +2578 -0
  19. data/app/frame.rb +98 -0
  20. data/app/frame.rbc +1808 -0
  21. data/app/irb.rb +111 -0
  22. data/app/irb.rbc +2094 -0
  23. data/app/iseq.rb +117 -0
  24. data/app/iseq.rbc +2192 -0
  25. data/app/llvm.rbc +2478 -0
  26. data/app/method.rb +173 -0
  27. data/app/method.rbc +2492 -0
  28. data/app/method_name.rbc +2467 -0
  29. data/app/mock.rb +13 -0
  30. data/app/mock.rbc +398 -0
  31. data/app/options.rb +137 -0
  32. data/app/options.rbc +2898 -0
  33. data/app/rbx-llvm.rb +165 -0
  34. data/app/rbx-llvm.rbc +2478 -0
  35. data/app/run.rb +86 -0
  36. data/app/run.rbc +1244 -0
  37. data/app/util.rb +49 -0
  38. data/app/util.rbc +1146 -0
  39. data/app/validate.rb +30 -0
  40. data/app/validate.rbc +676 -0
  41. data/bin/trepan.compiled.rbc +1043 -0
  42. data/bin/trepanx +69 -0
  43. data/bin/trepanx.compiled.rbc +1049 -0
  44. data/data/irbrc +41 -0
  45. data/data/irbrc.compiled.rbc +640 -0
  46. data/interface/base_intf.rb +105 -0
  47. data/interface/base_intf.rbc +1899 -0
  48. data/interface/client.rb +80 -0
  49. data/interface/client.rbc +1072 -0
  50. data/interface/comcodes.rb +20 -0
  51. data/interface/comcodes.rbc +385 -0
  52. data/interface/script.rb +104 -0
  53. data/interface/script.rbc +1642 -0
  54. data/interface/server.rb +143 -0
  55. data/interface/server.rbc +2213 -0
  56. data/interface/user.rb +150 -0
  57. data/interface/user.rbc +2867 -0
  58. data/io/base_io.rb +148 -0
  59. data/io/base_io.rbc +2111 -0
  60. data/io/input.rb +135 -0
  61. data/io/input.rbc +2528 -0
  62. data/io/null_output.rb +42 -0
  63. data/io/null_output.rbc +730 -0
  64. data/io/string_array.rb +156 -0
  65. data/io/string_array.rbc +2466 -0
  66. data/io/tcpclient.rb +129 -0
  67. data/io/tcpclient.rbc +2419 -0
  68. data/io/tcpfns.rb +33 -0
  69. data/io/tcpfns.rbc +694 -0
  70. data/io/tcpserver.rb +141 -0
  71. data/io/tcpserver.rbc +2638 -0
  72. data/lib/trepanning.rb +474 -0
  73. data/lib/trepanning.rbc +7705 -0
  74. data/lib/trepanning2.rb +441 -0
  75. data/processor/breakpoint.rb +164 -0
  76. data/processor/command/alias.rb +55 -0
  77. data/processor/command/backtrace.rb +76 -0
  78. data/processor/command/base/cmd.rb +173 -0
  79. data/processor/command/base/subcmd.rb +229 -0
  80. data/processor/command/base/submgr.rb +182 -0
  81. data/processor/command/base/subsubcmd.rb +103 -0
  82. data/processor/command/base/subsubmgr.rb +195 -0
  83. data/processor/command/break.rb +100 -0
  84. data/processor/command/complete.rb +37 -0
  85. data/processor/command/continue.rb +91 -0
  86. data/processor/command/delete.rb +30 -0
  87. data/processor/command/directory.rb +51 -0
  88. data/processor/command/disassemble.rb +145 -0
  89. data/processor/command/display.rb +82 -0
  90. data/processor/command/down.rb +54 -0
  91. data/processor/command/eval.rb +51 -0
  92. data/processor/command/exit.rb +62 -0
  93. data/processor/command/finish.rb +80 -0
  94. data/processor/command/frame.rb +89 -0
  95. data/processor/command/help.rb +251 -0
  96. data/processor/command/info.rb +28 -0
  97. data/processor/command/info_subcmd/breakpoints.rb +73 -0
  98. data/processor/command/info_subcmd/files.rb +209 -0
  99. data/processor/command/info_subcmd/line.rb +86 -0
  100. data/processor/command/info_subcmd/method.rb +71 -0
  101. data/processor/command/info_subcmd/program.rb +49 -0
  102. data/processor/command/info_subcmd/ruby.rb +62 -0
  103. data/processor/command/info_subcmd/variables.rb +48 -0
  104. data/processor/command/irb.rb +128 -0
  105. data/processor/command/kill.rb +70 -0
  106. data/processor/command/list.rb +300 -0
  107. data/processor/command/macro.rb +76 -0
  108. data/processor/command/next.rb +66 -0
  109. data/processor/command/nexti.rb +59 -0
  110. data/processor/command/pr.rb +38 -0
  111. data/processor/command/ps.rb +40 -0
  112. data/processor/command/restart.rb +60 -0
  113. data/processor/command/server.rb +72 -0
  114. data/processor/command/set.rb +47 -0
  115. data/processor/command/set_subcmd/auto.rb +27 -0
  116. data/processor/command/set_subcmd/auto_subcmd/dis.rb +33 -0
  117. data/processor/command/set_subcmd/auto_subcmd/eval.rb +54 -0
  118. data/processor/command/set_subcmd/auto_subcmd/irb.rb +34 -0
  119. data/processor/command/set_subcmd/auto_subcmd/list.rb +34 -0
  120. data/processor/command/set_subcmd/basename.rb +25 -0
  121. data/processor/command/set_subcmd/confirm.rb +24 -0
  122. data/processor/command/set_subcmd/debug.rb +26 -0
  123. data/processor/command/set_subcmd/debug_subcmd/dbgr.rb +36 -0
  124. data/processor/command/set_subcmd/debug_subcmd/skip.rb +23 -0
  125. data/processor/command/set_subcmd/debug_subcmd/step.rb +23 -0
  126. data/processor/command/set_subcmd/different.rb +59 -0
  127. data/processor/command/set_subcmd/hidelevel.rb +62 -0
  128. data/processor/command/set_subcmd/highlight.rb +33 -0
  129. data/processor/command/set_subcmd/kernelstep.rb +60 -0
  130. data/processor/command/set_subcmd/max.rb +26 -0
  131. data/processor/command/set_subcmd/max_subcmd/list.rb +49 -0
  132. data/processor/command/set_subcmd/max_subcmd/stack.rb +50 -0
  133. data/processor/command/set_subcmd/max_subcmd/string.rb +76 -0
  134. data/processor/command/set_subcmd/max_subcmd/width.rb +49 -0
  135. data/processor/command/set_subcmd/substitute.rb +24 -0
  136. data/processor/command/set_subcmd/substitute_subcmd/path.rb +56 -0
  137. data/processor/command/set_subcmd/trace.rb +36 -0
  138. data/processor/command/set_subcmd/trace_subcmd/print.rb +57 -0
  139. data/processor/command/show.rb +38 -0
  140. data/processor/command/show_subcmd/alias.rb +42 -0
  141. data/processor/command/show_subcmd/args.rb +25 -0
  142. data/processor/command/show_subcmd/auto.rb +28 -0
  143. data/processor/command/show_subcmd/auto_subcmd/dis.rb +37 -0
  144. data/processor/command/show_subcmd/auto_subcmd/eval.rb +28 -0
  145. data/processor/command/show_subcmd/auto_subcmd/irb.rb +23 -0
  146. data/processor/command/show_subcmd/auto_subcmd/list.rb +22 -0
  147. data/processor/command/show_subcmd/basename.rb +20 -0
  148. data/processor/command/show_subcmd/confirm.rb +18 -0
  149. data/processor/command/show_subcmd/debug.rb +26 -0
  150. data/processor/command/show_subcmd/debug_subcmd/dbgr.rb +21 -0
  151. data/processor/command/show_subcmd/debug_subcmd/skip.rb +22 -0
  152. data/processor/command/show_subcmd/debug_subcmd/step.rb +22 -0
  153. data/processor/command/show_subcmd/different.rb +26 -0
  154. data/processor/command/show_subcmd/hidelevel.rb +41 -0
  155. data/processor/command/show_subcmd/highlight.rb +24 -0
  156. data/processor/command/show_subcmd/kernelstep.rb +34 -0
  157. data/processor/command/show_subcmd/max.rb +27 -0
  158. data/processor/command/show_subcmd/max_subcmd/list.rb +38 -0
  159. data/processor/command/show_subcmd/max_subcmd/stack.rb +36 -0
  160. data/processor/command/show_subcmd/max_subcmd/string.rb +42 -0
  161. data/processor/command/show_subcmd/max_subcmd/width.rb +37 -0
  162. data/processor/command/show_subcmd/trace.rb +27 -0
  163. data/processor/command/show_subcmd/trace_subcmd/print.rb +38 -0
  164. data/processor/command/show_subcmd/version.rb +23 -0
  165. data/processor/command/source.rb +126 -0
  166. data/processor/command/step.rb +84 -0
  167. data/processor/command/tbreak.rb +19 -0
  168. data/processor/command/unalias.rb +44 -0
  169. data/processor/command/undisplay.rb +59 -0
  170. data/processor/command/up.rb +86 -0
  171. data/processor/default.rb +58 -0
  172. data/processor/disassemble.rb +46 -0
  173. data/processor/display.rb +18 -0
  174. data/processor/eval.rb +96 -0
  175. data/processor/frame.rb +211 -0
  176. data/processor/help.rb +72 -0
  177. data/processor/hook.rb +133 -0
  178. data/processor/load_cmds.rb +185 -0
  179. data/processor/location.rb +137 -0
  180. data/processor/main.rb +412 -0
  181. data/processor/mock.rb +144 -0
  182. data/processor/msg.rb +43 -0
  183. data/processor/running.rb +234 -0
  184. data/processor/stepping.rb +114 -0
  185. data/processor/subcmd.rb +161 -0
  186. data/processor/validate.rb +355 -0
  187. data/sample/list-terminal-colors.rb +139 -0
  188. data/sample/list-terminal-colors.rbc +2318 -0
  189. data/sample/rocky-dot-trepanxrc +14 -0
  190. data/sample/rocky-trepanx-colors.rb +47 -0
  191. data/sample/rocky-trepanx-colors.rbc +530 -0
  192. data/test/data/enable.right +36 -0
  193. data/test/data/fname-with-blank.cmd +6 -0
  194. data/test/data/fname-with-blank.right +4 -0
  195. data/test/data/inline-call.cmd +6 -0
  196. data/test/data/inline-call.right +13 -0
  197. data/test/data/quit-Xdebug.right +3 -0
  198. data/test/data/quit.cmd +5 -0
  199. data/test/data/quit.right +2 -0
  200. data/test/data/quit2.cmd +6 -0
  201. data/test/data/quit2.right +3 -0
  202. data/test/data/step-bug.cmd +11 -0
  203. data/test/data/step-bug.right +3 -0
  204. data/test/example/fname with blank.rb +1 -0
  205. data/test/example/gcd-server.rb +22 -0
  206. data/test/example/gcd.rb +19 -0
  207. data/test/example/inline-call.rb +23 -0
  208. data/test/example/null.rb +1 -0
  209. data/test/example/step-bug.rb +14 -0
  210. data/test/example/thread1.rb +3 -0
  211. data/test/functional/fn_helper.rb +112 -0
  212. data/test/functional/test-break-name.rb +52 -0
  213. data/test/functional/test-break.rb +51 -0
  214. data/test/functional/test-finish.rb +70 -0
  215. data/test/functional/test-fn_helper.rb +43 -0
  216. data/test/functional/test-list.rb +55 -0
  217. data/test/functional/test-next-bug.rb +49 -0
  218. data/test/functional/test-next.rb +101 -0
  219. data/test/functional/test-step.rb +272 -0
  220. data/test/functional/test-step2.rb +35 -0
  221. data/test/functional/test-tbreak.rb +41 -0
  222. data/test/integration/file-diff.rb +89 -0
  223. data/test/integration/helper.rb +78 -0
  224. data/test/integration/skip-test-step-bug.rb +17 -0
  225. data/test/integration/test-fname-with-blank.rb +16 -0
  226. data/test/integration/test-inline-call.rb +20 -0
  227. data/test/integration/test-quit.rb +47 -0
  228. data/test/unit/cmd-helper.rb +50 -0
  229. data/test/unit/mock-helper.rb +10 -0
  230. data/test/unit/test-app-brkpt.rb +29 -0
  231. data/test/unit/test-app-brkptmgr.rb +51 -0
  232. data/test/unit/test-app-iseq.rb +64 -0
  233. data/test/unit/test-app-method.rb +54 -0
  234. data/test/unit/test-app-options.rb +82 -0
  235. data/test/unit/test-app-run.rb +16 -0
  236. data/test/unit/test-app-util.rb +27 -0
  237. data/test/unit/test-app-validate.rb +18 -0
  238. data/test/unit/test-base-cmd.rb +47 -0
  239. data/test/unit/test-base-subcmd.rb +61 -0
  240. data/test/unit/test-base-submgr.rb +24 -0
  241. data/test/unit/test-bin-trepanx.rb +48 -0
  242. data/test/unit/test-cmd-alias.rb +48 -0
  243. data/test/unit/test-cmd-break.rb +22 -0
  244. data/test/unit/test-cmd-exit.rb +27 -0
  245. data/test/unit/test-cmd-finish.rb +27 -0
  246. data/test/unit/test-cmd-help.rb +104 -0
  247. data/test/unit/test-cmd-kill.rb +47 -0
  248. data/test/unit/test-cmd-source.rb +34 -0
  249. data/test/unit/test-cmd-step.rb +29 -0
  250. data/test/unit/test-completion.rb +38 -0
  251. data/test/unit/test-intf-user.rb +46 -0
  252. data/test/unit/test-io-input.rb +27 -0
  253. data/test/unit/test-io-tcp.rb +33 -0
  254. data/test/unit/test-io-tcpclient.rb +54 -0
  255. data/test/unit/test-io-tcpfns.rb +17 -0
  256. data/test/unit/test-io-tcpserver.rb +50 -0
  257. data/test/unit/test-proc-eval.rb +36 -0
  258. data/test/unit/test-proc-frame.rb +79 -0
  259. data/test/unit/test-proc-help.rb +16 -0
  260. data/test/unit/test-proc-hook.rb +30 -0
  261. data/test/unit/test-proc-load_cmds.rb +50 -0
  262. data/test/unit/test-proc-location.rb +53 -0
  263. data/test/unit/test-proc-main.rb +99 -0
  264. data/test/unit/test-proc-validate.rb +91 -0
  265. data/test/unit/test-subcmd-help.rb +47 -0
  266. metadata +398 -0
@@ -0,0 +1,139 @@
1
+ #!/usr/bin/env ruby
2
+ # Run this program in a terminal window to see a list of terminal colors
3
+ # the assignments are the defaults as of Jan 18, 2011, but you may want to
4
+ # double check.
5
+ require 'rubygems'
6
+ require 'coderay'
7
+ require 'term/ansicolor'
8
+
9
+ TOKEN_COLORS = {
10
+ :annotation => '35',
11
+ :attribute_name => '33',
12
+ :attribute_name_fat => '33',
13
+ :attribute_value => '31',
14
+ :attribute_value_fat => '31',
15
+ :bin => '1;35',
16
+ :char => {:self => '36', :delimiter => '34'},
17
+ :class => '1;35',
18
+ :class_variable => '36',
19
+ :color => '32',
20
+ :comment => '37',
21
+ :complex => '34',
22
+ :constant => ['34', '4'],
23
+ :decoration => '35',
24
+ :definition => '1;32',
25
+ :directive => ['32', '4'],
26
+ :doc => '46',
27
+ :doctype => '1;30',
28
+ :doc_string => ['31', '4'],
29
+ :entity => '33',
30
+ :error => ['1;33', '41'],
31
+ :exception => '1;31',
32
+ :float => '1;35',
33
+ :function => '1;34',
34
+ :global_variable => '42',
35
+ :hex => '1;36',
36
+ :important => '1;31',
37
+ :include => '33',
38
+ :integer => '1;34',
39
+ :interpreted => '1;35',
40
+ :key => '35',
41
+ :label => '1;4',
42
+ :local_variable => '33',
43
+ :oct => '1;35',
44
+ :operator_name => '1;29',
45
+ :pre_constant => '1;36',
46
+ :pre_type => '1;30',
47
+ :predefined => ['4', '1;34'],
48
+ :preprocessor => '36',
49
+ :pseudo_class => '34',
50
+ :regexp => {
51
+ :content => '31',
52
+ :delimiter => '1;29',
53
+ :modifier => '35',
54
+ :function => '1;29'
55
+ },
56
+ :reserved => '1;31',
57
+ :shell => {
58
+ :self => '42',
59
+ :content => '1;29',
60
+ :delimiter => '37',
61
+ },
62
+ :string => {
63
+ :self => '32',
64
+ :modifier => '1;32',
65
+ :escape => '1;36',
66
+ :delimiter => '1;32',
67
+ },
68
+ :symbol => '1;32',
69
+ :tag => '34',
70
+ :tag_fat => '1;34',
71
+ :tag_special => ['34', '4'],
72
+ :type => '1;34',
73
+ :value => '36',
74
+ :variable => '34',
75
+ :insert => '42',
76
+ :delete => '41',
77
+ :change => '44',
78
+ :head => '45',
79
+ }
80
+ TOKEN_COLORS[:keyword] = TOKEN_COLORS[:reserved]
81
+ TOKEN_COLORS[:method] = TOKEN_COLORS[:function]
82
+ TOKEN_COLORS[:imaginary] = TOKEN_COLORS[:complex]
83
+ TOKEN_COLORS[:open] = TOKEN_COLORS[:close] = TOKEN_COLORS[:nesting_delimiter] = TOKEN_COLORS[:escape] = TOKEN_COLORS[:delimiter]
84
+
85
+ # require 'trepanning'; debugger
86
+ %w(annotation
87
+ attribute_name
88
+ attribute_name_fat
89
+ attribute_value
90
+ attribute_value_fat
91
+ bin
92
+ class
93
+ class_variable
94
+ color
95
+ comment
96
+ complex
97
+ constant
98
+ decoration
99
+ definition
100
+ doc
101
+ doctype
102
+ entity
103
+ exception
104
+ float
105
+ function
106
+ global_variable
107
+ hex
108
+ important
109
+ include
110
+ integer
111
+ interpreted
112
+ key
113
+ label
114
+ local_variable
115
+ oct
116
+ operator_name
117
+ pre_constant
118
+ pre_type
119
+ predefined
120
+ preprocessor
121
+ pseudo_class
122
+ reserved
123
+ symbol
124
+ tag
125
+ tag_fat
126
+ type
127
+ value
128
+ variable
129
+ insert
130
+ delete
131
+ change
132
+ head
133
+ ).each do |name|
134
+ puts "\e[#{TOKEN_COLORS[name.to_sym]}m#{name} - #{TOKEN_COLORS[name.to_sym].inspect}\e[0m"
135
+ end
136
+ %w(bold italic underline).each do |name|
137
+ attrib=Term::ANSIColor.send(name)
138
+ puts "#{attrib}#{name} - #{attrib.inspect}\e[0m"
139
+ end
@@ -0,0 +1,2318 @@
1
+ !RBIX
2
+ 0
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 1059
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 5
23
+ 7
24
+ 2
25
+ 64
26
+ 47
27
+ 49
28
+ 1
29
+ 1
30
+ 15
31
+ 5
32
+ 7
33
+ 3
34
+ 64
35
+ 47
36
+ 49
37
+ 1
38
+ 1
39
+ 15
40
+ 65
41
+ 7
42
+ 4
43
+ 44
44
+ 43
45
+ 5
46
+ 4
47
+ 55
48
+ 49
49
+ 6
50
+ 1
51
+ 13
52
+ 7
53
+ 7
54
+ 7
55
+ 8
56
+ 64
57
+ 49
58
+ 9
59
+ 2
60
+ 15
61
+ 13
62
+ 7
63
+ 10
64
+ 7
65
+ 11
66
+ 64
67
+ 49
68
+ 9
69
+ 2
70
+ 15
71
+ 13
72
+ 7
73
+ 12
74
+ 7
75
+ 11
76
+ 64
77
+ 49
78
+ 9
79
+ 2
80
+ 15
81
+ 13
82
+ 7
83
+ 13
84
+ 7
85
+ 14
86
+ 64
87
+ 49
88
+ 9
89
+ 2
90
+ 15
91
+ 13
92
+ 7
93
+ 15
94
+ 7
95
+ 14
96
+ 64
97
+ 49
98
+ 9
99
+ 2
100
+ 15
101
+ 13
102
+ 7
103
+ 16
104
+ 7
105
+ 17
106
+ 64
107
+ 49
108
+ 9
109
+ 2
110
+ 15
111
+ 13
112
+ 7
113
+ 18
114
+ 44
115
+ 43
116
+ 5
117
+ 80
118
+ 49
119
+ 6
120
+ 1
121
+ 13
122
+ 7
123
+ 19
124
+ 7
125
+ 20
126
+ 64
127
+ 49
128
+ 9
129
+ 2
130
+ 15
131
+ 13
132
+ 7
133
+ 21
134
+ 7
135
+ 22
136
+ 64
137
+ 49
138
+ 9
139
+ 2
140
+ 15
141
+ 49
142
+ 9
143
+ 2
144
+ 15
145
+ 13
146
+ 7
147
+ 23
148
+ 7
149
+ 17
150
+ 64
151
+ 49
152
+ 9
153
+ 2
154
+ 15
155
+ 13
156
+ 7
157
+ 24
158
+ 7
159
+ 20
160
+ 64
161
+ 49
162
+ 9
163
+ 2
164
+ 15
165
+ 13
166
+ 7
167
+ 25
168
+ 7
169
+ 26
170
+ 64
171
+ 49
172
+ 9
173
+ 2
174
+ 15
175
+ 13
176
+ 7
177
+ 27
178
+ 7
179
+ 28
180
+ 64
181
+ 49
182
+ 9
183
+ 2
184
+ 15
185
+ 13
186
+ 7
187
+ 29
188
+ 7
189
+ 22
190
+ 64
191
+ 49
192
+ 9
193
+ 2
194
+ 15
195
+ 13
196
+ 7
197
+ 30
198
+ 7
199
+ 22
200
+ 64
201
+ 7
202
+ 31
203
+ 64
204
+ 35
205
+ 2
206
+ 49
207
+ 9
208
+ 2
209
+ 15
210
+ 13
211
+ 7
212
+ 32
213
+ 7
214
+ 8
215
+ 64
216
+ 49
217
+ 9
218
+ 2
219
+ 15
220
+ 13
221
+ 7
222
+ 33
223
+ 7
224
+ 34
225
+ 64
226
+ 49
227
+ 9
228
+ 2
229
+ 15
230
+ 13
231
+ 7
232
+ 35
233
+ 7
234
+ 26
235
+ 64
236
+ 7
237
+ 31
238
+ 64
239
+ 35
240
+ 2
241
+ 49
242
+ 9
243
+ 2
244
+ 15
245
+ 13
246
+ 7
247
+ 36
248
+ 7
249
+ 37
250
+ 64
251
+ 49
252
+ 9
253
+ 2
254
+ 15
255
+ 13
256
+ 7
257
+ 38
258
+ 7
259
+ 39
260
+ 64
261
+ 49
262
+ 9
263
+ 2
264
+ 15
265
+ 13
266
+ 7
267
+ 40
268
+ 7
269
+ 14
270
+ 64
271
+ 7
272
+ 31
273
+ 64
274
+ 35
275
+ 2
276
+ 49
277
+ 9
278
+ 2
279
+ 15
280
+ 13
281
+ 7
282
+ 41
283
+ 7
284
+ 11
285
+ 64
286
+ 49
287
+ 9
288
+ 2
289
+ 15
290
+ 13
291
+ 7
292
+ 42
293
+ 7
294
+ 43
295
+ 64
296
+ 7
297
+ 44
298
+ 64
299
+ 35
300
+ 2
301
+ 49
302
+ 9
303
+ 2
304
+ 15
305
+ 13
306
+ 7
307
+ 45
308
+ 7
309
+ 46
310
+ 64
311
+ 49
312
+ 9
313
+ 2
314
+ 15
315
+ 13
316
+ 7
317
+ 47
318
+ 7
319
+ 17
320
+ 64
321
+ 49
322
+ 9
323
+ 2
324
+ 15
325
+ 13
326
+ 7
327
+ 48
328
+ 7
329
+ 49
330
+ 64
331
+ 49
332
+ 9
333
+ 2
334
+ 15
335
+ 13
336
+ 7
337
+ 50
338
+ 7
339
+ 51
340
+ 64
341
+ 49
342
+ 9
343
+ 2
344
+ 15
345
+ 13
346
+ 7
347
+ 52
348
+ 7
349
+ 53
350
+ 64
351
+ 49
352
+ 9
353
+ 2
354
+ 15
355
+ 13
356
+ 7
357
+ 54
358
+ 7
359
+ 46
360
+ 64
361
+ 49
362
+ 9
363
+ 2
364
+ 15
365
+ 13
366
+ 7
367
+ 55
368
+ 7
369
+ 11
370
+ 64
371
+ 49
372
+ 9
373
+ 2
374
+ 15
375
+ 13
376
+ 7
377
+ 56
378
+ 7
379
+ 49
380
+ 64
381
+ 49
382
+ 9
383
+ 2
384
+ 15
385
+ 13
386
+ 7
387
+ 57
388
+ 7
389
+ 17
390
+ 64
391
+ 49
392
+ 9
393
+ 2
394
+ 15
395
+ 13
396
+ 7
397
+ 58
398
+ 7
399
+ 8
400
+ 64
401
+ 49
402
+ 9
403
+ 2
404
+ 15
405
+ 13
406
+ 7
407
+ 59
408
+ 7
409
+ 60
410
+ 64
411
+ 49
412
+ 9
413
+ 2
414
+ 15
415
+ 13
416
+ 7
417
+ 61
418
+ 7
419
+ 11
420
+ 64
421
+ 49
422
+ 9
423
+ 2
424
+ 15
425
+ 13
426
+ 7
427
+ 62
428
+ 7
429
+ 17
430
+ 64
431
+ 49
432
+ 9
433
+ 2
434
+ 15
435
+ 13
436
+ 7
437
+ 63
438
+ 7
439
+ 64
440
+ 64
441
+ 49
442
+ 9
443
+ 2
444
+ 15
445
+ 13
446
+ 7
447
+ 65
448
+ 7
449
+ 53
450
+ 64
451
+ 49
452
+ 9
453
+ 2
454
+ 15
455
+ 13
456
+ 7
457
+ 66
458
+ 7
459
+ 39
460
+ 64
461
+ 49
462
+ 9
463
+ 2
464
+ 15
465
+ 13
466
+ 7
467
+ 67
468
+ 7
469
+ 31
470
+ 64
471
+ 7
472
+ 49
473
+ 64
474
+ 35
475
+ 2
476
+ 49
477
+ 9
478
+ 2
479
+ 15
480
+ 13
481
+ 7
482
+ 68
483
+ 7
484
+ 20
485
+ 64
486
+ 49
487
+ 9
488
+ 2
489
+ 15
490
+ 13
491
+ 7
492
+ 69
493
+ 7
494
+ 22
495
+ 64
496
+ 49
497
+ 9
498
+ 2
499
+ 15
500
+ 13
501
+ 7
502
+ 70
503
+ 44
504
+ 43
505
+ 5
506
+ 4
507
+ 4
508
+ 49
509
+ 6
510
+ 1
511
+ 13
512
+ 7
513
+ 71
514
+ 7
515
+ 14
516
+ 64
517
+ 49
518
+ 9
519
+ 2
520
+ 15
521
+ 13
522
+ 7
523
+ 21
524
+ 7
525
+ 64
526
+ 64
527
+ 49
528
+ 9
529
+ 2
530
+ 15
531
+ 13
532
+ 7
533
+ 72
534
+ 7
535
+ 8
536
+ 64
537
+ 49
538
+ 9
539
+ 2
540
+ 15
541
+ 13
542
+ 7
543
+ 48
544
+ 7
545
+ 64
546
+ 64
547
+ 49
548
+ 9
549
+ 2
550
+ 15
551
+ 49
552
+ 9
553
+ 2
554
+ 15
555
+ 13
556
+ 7
557
+ 73
558
+ 7
559
+ 46
560
+ 64
561
+ 49
562
+ 9
563
+ 2
564
+ 15
565
+ 13
566
+ 7
567
+ 74
568
+ 44
569
+ 43
570
+ 5
571
+ 4
572
+ 3
573
+ 49
574
+ 6
575
+ 1
576
+ 13
577
+ 7
578
+ 19
579
+ 7
580
+ 51
581
+ 64
582
+ 49
583
+ 9
584
+ 2
585
+ 15
586
+ 13
587
+ 7
588
+ 71
589
+ 7
590
+ 64
591
+ 64
592
+ 49
593
+ 9
594
+ 2
595
+ 15
596
+ 13
597
+ 7
598
+ 21
599
+ 7
600
+ 28
601
+ 64
602
+ 49
603
+ 9
604
+ 2
605
+ 15
606
+ 49
607
+ 9
608
+ 2
609
+ 15
610
+ 13
611
+ 7
612
+ 75
613
+ 44
614
+ 43
615
+ 5
616
+ 4
617
+ 4
618
+ 49
619
+ 6
620
+ 1
621
+ 13
622
+ 7
623
+ 19
624
+ 7
625
+ 26
626
+ 64
627
+ 49
628
+ 9
629
+ 2
630
+ 15
631
+ 13
632
+ 7
633
+ 72
634
+ 7
635
+ 34
636
+ 64
637
+ 49
638
+ 9
639
+ 2
640
+ 15
641
+ 13
642
+ 7
643
+ 76
644
+ 7
645
+ 53
646
+ 64
647
+ 49
648
+ 9
649
+ 2
650
+ 15
651
+ 13
652
+ 7
653
+ 21
654
+ 7
655
+ 34
656
+ 64
657
+ 49
658
+ 9
659
+ 2
660
+ 15
661
+ 49
662
+ 9
663
+ 2
664
+ 15
665
+ 13
666
+ 7
667
+ 77
668
+ 7
669
+ 34
670
+ 64
671
+ 49
672
+ 9
673
+ 2
674
+ 15
675
+ 13
676
+ 7
677
+ 78
678
+ 7
679
+ 22
680
+ 64
681
+ 49
682
+ 9
683
+ 2
684
+ 15
685
+ 13
686
+ 7
687
+ 79
688
+ 7
689
+ 49
690
+ 64
691
+ 49
692
+ 9
693
+ 2
694
+ 15
695
+ 13
696
+ 7
697
+ 80
698
+ 7
699
+ 22
700
+ 64
701
+ 7
702
+ 31
703
+ 64
704
+ 35
705
+ 2
706
+ 49
707
+ 9
708
+ 2
709
+ 15
710
+ 13
711
+ 7
712
+ 81
713
+ 7
714
+ 49
715
+ 64
716
+ 49
717
+ 9
718
+ 2
719
+ 15
720
+ 13
721
+ 7
722
+ 82
723
+ 7
724
+ 20
725
+ 64
726
+ 49
727
+ 9
728
+ 2
729
+ 15
730
+ 13
731
+ 7
732
+ 83
733
+ 7
734
+ 22
735
+ 64
736
+ 49
737
+ 9
738
+ 2
739
+ 15
740
+ 13
741
+ 7
742
+ 84
743
+ 7
744
+ 51
745
+ 64
746
+ 49
747
+ 9
748
+ 2
749
+ 15
750
+ 13
751
+ 7
752
+ 85
753
+ 7
754
+ 44
755
+ 64
756
+ 49
757
+ 9
758
+ 2
759
+ 15
760
+ 13
761
+ 7
762
+ 86
763
+ 7
764
+ 87
765
+ 64
766
+ 49
767
+ 9
768
+ 2
769
+ 15
770
+ 13
771
+ 7
772
+ 88
773
+ 7
774
+ 89
775
+ 64
776
+ 49
777
+ 9
778
+ 2
779
+ 15
780
+ 49
781
+ 90
782
+ 2
783
+ 15
784
+ 45
785
+ 4
786
+ 91
787
+ 7
788
+ 92
789
+ 45
790
+ 4
791
+ 93
792
+ 7
793
+ 73
794
+ 49
795
+ 94
796
+ 1
797
+ 13
798
+ 18
799
+ 3
800
+ 49
801
+ 9
802
+ 2
803
+ 15
804
+ 15
805
+ 45
806
+ 4
807
+ 95
808
+ 7
809
+ 96
810
+ 45
811
+ 4
812
+ 97
813
+ 7
814
+ 48
815
+ 49
816
+ 94
817
+ 1
818
+ 13
819
+ 18
820
+ 3
821
+ 49
822
+ 9
823
+ 2
824
+ 15
825
+ 15
826
+ 45
827
+ 4
828
+ 98
829
+ 7
830
+ 99
831
+ 45
832
+ 4
833
+ 100
834
+ 7
835
+ 29
836
+ 49
837
+ 94
838
+ 1
839
+ 13
840
+ 18
841
+ 3
842
+ 49
843
+ 9
844
+ 2
845
+ 15
846
+ 15
847
+ 45
848
+ 4
849
+ 101
850
+ 7
851
+ 102
852
+ 45
853
+ 4
854
+ 103
855
+ 7
856
+ 104
857
+ 45
858
+ 4
859
+ 105
860
+ 7
861
+ 106
862
+ 45
863
+ 4
864
+ 107
865
+ 7
866
+ 76
867
+ 45
868
+ 4
869
+ 108
870
+ 7
871
+ 21
872
+ 49
873
+ 94
874
+ 1
875
+ 13
876
+ 18
877
+ 3
878
+ 49
879
+ 9
880
+ 2
881
+ 15
882
+ 13
883
+ 18
884
+ 3
885
+ 49
886
+ 9
887
+ 2
888
+ 15
889
+ 13
890
+ 18
891
+ 3
892
+ 49
893
+ 9
894
+ 2
895
+ 15
896
+ 13
897
+ 18
898
+ 3
899
+ 49
900
+ 9
901
+ 2
902
+ 15
903
+ 15
904
+ 7
905
+ 109
906
+ 64
907
+ 7
908
+ 110
909
+ 64
910
+ 7
911
+ 111
912
+ 64
913
+ 7
914
+ 112
915
+ 64
916
+ 7
917
+ 113
918
+ 64
919
+ 7
920
+ 114
921
+ 64
922
+ 7
923
+ 115
924
+ 64
925
+ 7
926
+ 116
927
+ 64
928
+ 7
929
+ 117
930
+ 64
931
+ 7
932
+ 118
933
+ 64
934
+ 7
935
+ 119
936
+ 64
937
+ 7
938
+ 120
939
+ 64
940
+ 7
941
+ 121
942
+ 64
943
+ 7
944
+ 122
945
+ 64
946
+ 7
947
+ 123
948
+ 64
949
+ 7
950
+ 124
951
+ 64
952
+ 7
953
+ 125
954
+ 64
955
+ 7
956
+ 126
957
+ 64
958
+ 7
959
+ 127
960
+ 64
961
+ 7
962
+ 128
963
+ 64
964
+ 7
965
+ 129
966
+ 64
967
+ 7
968
+ 130
969
+ 64
970
+ 7
971
+ 131
972
+ 64
973
+ 7
974
+ 132
975
+ 64
976
+ 7
977
+ 133
978
+ 64
979
+ 7
980
+ 134
981
+ 64
982
+ 7
983
+ 135
984
+ 64
985
+ 7
986
+ 136
987
+ 64
988
+ 7
989
+ 137
990
+ 64
991
+ 7
992
+ 138
993
+ 64
994
+ 7
995
+ 139
996
+ 64
997
+ 7
998
+ 140
999
+ 64
1000
+ 7
1001
+ 141
1002
+ 64
1003
+ 7
1004
+ 142
1005
+ 64
1006
+ 7
1007
+ 143
1008
+ 64
1009
+ 7
1010
+ 144
1011
+ 64
1012
+ 7
1013
+ 145
1014
+ 64
1015
+ 7
1016
+ 146
1017
+ 64
1018
+ 7
1019
+ 147
1020
+ 64
1021
+ 7
1022
+ 148
1023
+ 64
1024
+ 7
1025
+ 149
1026
+ 64
1027
+ 7
1028
+ 150
1029
+ 64
1030
+ 7
1031
+ 151
1032
+ 64
1033
+ 7
1034
+ 152
1035
+ 64
1036
+ 7
1037
+ 153
1038
+ 64
1039
+ 7
1040
+ 154
1041
+ 64
1042
+ 7
1043
+ 155
1044
+ 64
1045
+ 35
1046
+ 47
1047
+ 56
1048
+ 156
1049
+ 50
1050
+ 157
1051
+ 0
1052
+ 15
1053
+ 7
1054
+ 158
1055
+ 64
1056
+ 7
1057
+ 159
1058
+ 64
1059
+ 7
1060
+ 160
1061
+ 64
1062
+ 35
1063
+ 3
1064
+ 56
1065
+ 161
1066
+ 50
1067
+ 157
1068
+ 0
1069
+ 15
1070
+ 2
1071
+ 11
1072
+ I
1073
+ 2f
1074
+ I
1075
+ 0
1076
+ I
1077
+ 0
1078
+ I
1079
+ 0
1080
+ n
1081
+ p
1082
+ 162
1083
+ s
1084
+ 8
1085
+ rubygems
1086
+ x
1087
+ 7
1088
+ require
1089
+ s
1090
+ 7
1091
+ coderay
1092
+ s
1093
+ 14
1094
+ term/ansicolor
1095
+ x
1096
+ 12
1097
+ TOKEN_COLORS
1098
+ x
1099
+ 4
1100
+ Hash
1101
+ x
1102
+ 16
1103
+ new_from_literal
1104
+ x
1105
+ 10
1106
+ annotation
1107
+ s
1108
+ 2
1109
+ 35
1110
+ x
1111
+ 3
1112
+ []=
1113
+ x
1114
+ 14
1115
+ attribute_name
1116
+ s
1117
+ 2
1118
+ 33
1119
+ x
1120
+ 18
1121
+ attribute_name_fat
1122
+ x
1123
+ 15
1124
+ attribute_value
1125
+ s
1126
+ 2
1127
+ 31
1128
+ x
1129
+ 19
1130
+ attribute_value_fat
1131
+ x
1132
+ 3
1133
+ bin
1134
+ s
1135
+ 4
1136
+ 1;35
1137
+ x
1138
+ 4
1139
+ char
1140
+ x
1141
+ 4
1142
+ self
1143
+ s
1144
+ 2
1145
+ 36
1146
+ x
1147
+ 9
1148
+ delimiter
1149
+ s
1150
+ 2
1151
+ 34
1152
+ x
1153
+ 5
1154
+ class
1155
+ x
1156
+ 14
1157
+ class_variable
1158
+ x
1159
+ 5
1160
+ color
1161
+ s
1162
+ 2
1163
+ 32
1164
+ x
1165
+ 7
1166
+ comment
1167
+ s
1168
+ 2
1169
+ 37
1170
+ x
1171
+ 7
1172
+ complex
1173
+ x
1174
+ 8
1175
+ constant
1176
+ s
1177
+ 1
1178
+ 4
1179
+ x
1180
+ 10
1181
+ decoration
1182
+ x
1183
+ 10
1184
+ definition
1185
+ s
1186
+ 4
1187
+ 1;32
1188
+ x
1189
+ 9
1190
+ directive
1191
+ x
1192
+ 3
1193
+ doc
1194
+ s
1195
+ 2
1196
+ 46
1197
+ x
1198
+ 7
1199
+ doctype
1200
+ s
1201
+ 4
1202
+ 1;30
1203
+ x
1204
+ 10
1205
+ doc_string
1206
+ x
1207
+ 6
1208
+ entity
1209
+ x
1210
+ 5
1211
+ error
1212
+ s
1213
+ 4
1214
+ 1;33
1215
+ s
1216
+ 2
1217
+ 41
1218
+ x
1219
+ 9
1220
+ exception
1221
+ s
1222
+ 4
1223
+ 1;31
1224
+ x
1225
+ 5
1226
+ float
1227
+ x
1228
+ 8
1229
+ function
1230
+ s
1231
+ 4
1232
+ 1;34
1233
+ x
1234
+ 15
1235
+ global_variable
1236
+ s
1237
+ 2
1238
+ 42
1239
+ x
1240
+ 3
1241
+ hex
1242
+ s
1243
+ 4
1244
+ 1;36
1245
+ x
1246
+ 9
1247
+ important
1248
+ x
1249
+ 7
1250
+ include
1251
+ x
1252
+ 7
1253
+ integer
1254
+ x
1255
+ 11
1256
+ interpreted
1257
+ x
1258
+ 3
1259
+ key
1260
+ x
1261
+ 5
1262
+ label
1263
+ s
1264
+ 3
1265
+ 1;4
1266
+ x
1267
+ 14
1268
+ local_variable
1269
+ x
1270
+ 3
1271
+ oct
1272
+ x
1273
+ 13
1274
+ operator_name
1275
+ s
1276
+ 4
1277
+ 1;29
1278
+ x
1279
+ 12
1280
+ pre_constant
1281
+ x
1282
+ 8
1283
+ pre_type
1284
+ x
1285
+ 10
1286
+ predefined
1287
+ x
1288
+ 12
1289
+ preprocessor
1290
+ x
1291
+ 12
1292
+ pseudo_class
1293
+ x
1294
+ 6
1295
+ regexp
1296
+ x
1297
+ 7
1298
+ content
1299
+ x
1300
+ 8
1301
+ modifier
1302
+ x
1303
+ 8
1304
+ reserved
1305
+ x
1306
+ 5
1307
+ shell
1308
+ x
1309
+ 6
1310
+ string
1311
+ x
1312
+ 6
1313
+ escape
1314
+ x
1315
+ 6
1316
+ symbol
1317
+ x
1318
+ 3
1319
+ tag
1320
+ x
1321
+ 7
1322
+ tag_fat
1323
+ x
1324
+ 11
1325
+ tag_special
1326
+ x
1327
+ 4
1328
+ type
1329
+ x
1330
+ 5
1331
+ value
1332
+ x
1333
+ 8
1334
+ variable
1335
+ x
1336
+ 6
1337
+ insert
1338
+ x
1339
+ 6
1340
+ delete
1341
+ x
1342
+ 6
1343
+ change
1344
+ s
1345
+ 2
1346
+ 44
1347
+ x
1348
+ 4
1349
+ head
1350
+ s
1351
+ 2
1352
+ 45
1353
+ x
1354
+ 9
1355
+ const_set
1356
+ n
1357
+ x
1358
+ 7
1359
+ keyword
1360
+ n
1361
+ x
1362
+ 2
1363
+ []
1364
+ n
1365
+ x
1366
+ 6
1367
+ method
1368
+ n
1369
+ n
1370
+ x
1371
+ 9
1372
+ imaginary
1373
+ n
1374
+ n
1375
+ x
1376
+ 4
1377
+ open
1378
+ n
1379
+ x
1380
+ 5
1381
+ close
1382
+ n
1383
+ x
1384
+ 17
1385
+ nesting_delimiter
1386
+ n
1387
+ n
1388
+ s
1389
+ 10
1390
+ annotation
1391
+ s
1392
+ 14
1393
+ attribute_name
1394
+ s
1395
+ 18
1396
+ attribute_name_fat
1397
+ s
1398
+ 15
1399
+ attribute_value
1400
+ s
1401
+ 19
1402
+ attribute_value_fat
1403
+ s
1404
+ 3
1405
+ bin
1406
+ s
1407
+ 5
1408
+ class
1409
+ s
1410
+ 14
1411
+ class_variable
1412
+ s
1413
+ 5
1414
+ color
1415
+ s
1416
+ 7
1417
+ comment
1418
+ s
1419
+ 7
1420
+ complex
1421
+ s
1422
+ 8
1423
+ constant
1424
+ s
1425
+ 10
1426
+ decoration
1427
+ s
1428
+ 10
1429
+ definition
1430
+ s
1431
+ 3
1432
+ doc
1433
+ s
1434
+ 7
1435
+ doctype
1436
+ s
1437
+ 6
1438
+ entity
1439
+ s
1440
+ 9
1441
+ exception
1442
+ s
1443
+ 5
1444
+ float
1445
+ s
1446
+ 8
1447
+ function
1448
+ s
1449
+ 15
1450
+ global_variable
1451
+ s
1452
+ 3
1453
+ hex
1454
+ s
1455
+ 9
1456
+ important
1457
+ s
1458
+ 7
1459
+ include
1460
+ s
1461
+ 7
1462
+ integer
1463
+ s
1464
+ 11
1465
+ interpreted
1466
+ s
1467
+ 3
1468
+ key
1469
+ s
1470
+ 5
1471
+ label
1472
+ s
1473
+ 14
1474
+ local_variable
1475
+ s
1476
+ 3
1477
+ oct
1478
+ s
1479
+ 13
1480
+ operator_name
1481
+ s
1482
+ 12
1483
+ pre_constant
1484
+ s
1485
+ 8
1486
+ pre_type
1487
+ s
1488
+ 10
1489
+ predefined
1490
+ s
1491
+ 12
1492
+ preprocessor
1493
+ s
1494
+ 12
1495
+ pseudo_class
1496
+ s
1497
+ 8
1498
+ reserved
1499
+ s
1500
+ 6
1501
+ symbol
1502
+ s
1503
+ 3
1504
+ tag
1505
+ s
1506
+ 7
1507
+ tag_fat
1508
+ s
1509
+ 4
1510
+ type
1511
+ s
1512
+ 5
1513
+ value
1514
+ s
1515
+ 8
1516
+ variable
1517
+ s
1518
+ 6
1519
+ insert
1520
+ s
1521
+ 6
1522
+ delete
1523
+ s
1524
+ 6
1525
+ change
1526
+ s
1527
+ 4
1528
+ head
1529
+ M
1530
+ 1
1531
+ p
1532
+ 2
1533
+ x
1534
+ 9
1535
+ for_block
1536
+ t
1537
+ n
1538
+ x
1539
+ 9
1540
+ __block__
1541
+ i
1542
+ 56
1543
+ 57
1544
+ 19
1545
+ 0
1546
+ 15
1547
+ 5
1548
+ 7
1549
+ 0
1550
+ 45
1551
+ 1
1552
+ 2
1553
+ 20
1554
+ 0
1555
+ 49
1556
+ 3
1557
+ 0
1558
+ 49
1559
+ 4
1560
+ 1
1561
+ 47
1562
+ 101
1563
+ 5
1564
+ 7
1565
+ 6
1566
+ 20
1567
+ 0
1568
+ 47
1569
+ 101
1570
+ 5
1571
+ 7
1572
+ 7
1573
+ 45
1574
+ 1
1575
+ 8
1576
+ 20
1577
+ 0
1578
+ 49
1579
+ 3
1580
+ 0
1581
+ 49
1582
+ 4
1583
+ 1
1584
+ 49
1585
+ 9
1586
+ 0
1587
+ 47
1588
+ 101
1589
+ 5
1590
+ 7
1591
+ 10
1592
+ 63
1593
+ 7
1594
+ 47
1595
+ 49
1596
+ 11
1597
+ 1
1598
+ 11
1599
+ I
1600
+ a
1601
+ I
1602
+ 1
1603
+ I
1604
+ 1
1605
+ I
1606
+ 1
1607
+ n
1608
+ p
1609
+ 12
1610
+ s
1611
+ 2
1612
+ [
1613
+ x
1614
+ 12
1615
+ TOKEN_COLORS
1616
+ n
1617
+ x
1618
+ 6
1619
+ to_sym
1620
+ x
1621
+ 2
1622
+ []
1623
+ x
1624
+ 4
1625
+ to_s
1626
+ s
1627
+ 1
1628
+ m
1629
+ s
1630
+ 3
1631
+ -
1632
+ n
1633
+ x
1634
+ 7
1635
+ inspect
1636
+ s
1637
+ 4
1638
+ 
1639
+ x
1640
+ 4
1641
+ puts
1642
+ p
1643
+ 7
1644
+ I
1645
+ 0
1646
+ I
1647
+ 57
1648
+ I
1649
+ 1
1650
+ I
1651
+ 85
1652
+ I
1653
+ 4
1654
+ I
1655
+ 86
1656
+ I
1657
+ 38
1658
+ x
1659
+ 70
1660
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/sample/list-terminal-colors.rb
1661
+ p
1662
+ 1
1663
+ x
1664
+ 4
1665
+ name
1666
+ x
1667
+ 4
1668
+ each
1669
+ s
1670
+ 4
1671
+ bold
1672
+ s
1673
+ 6
1674
+ italic
1675
+ s
1676
+ 9
1677
+ underline
1678
+ M
1679
+ 1
1680
+ p
1681
+ 2
1682
+ x
1683
+ 9
1684
+ for_block
1685
+ t
1686
+ n
1687
+ x
1688
+ 9
1689
+ __block__
1690
+ i
1691
+ 47
1692
+ 57
1693
+ 19
1694
+ 0
1695
+ 15
1696
+ 45
1697
+ 0
1698
+ 1
1699
+ 43
1700
+ 2
1701
+ 20
1702
+ 0
1703
+ 49
1704
+ 3
1705
+ 1
1706
+ 19
1707
+ 1
1708
+ 15
1709
+ 5
1710
+ 20
1711
+ 1
1712
+ 47
1713
+ 101
1714
+ 4
1715
+ 20
1716
+ 0
1717
+ 47
1718
+ 101
1719
+ 4
1720
+ 7
1721
+ 5
1722
+ 20
1723
+ 1
1724
+ 49
1725
+ 6
1726
+ 0
1727
+ 47
1728
+ 101
1729
+ 4
1730
+ 7
1731
+ 7
1732
+ 63
1733
+ 5
1734
+ 47
1735
+ 49
1736
+ 8
1737
+ 1
1738
+ 11
1739
+ I
1740
+ 9
1741
+ I
1742
+ 2
1743
+ I
1744
+ 1
1745
+ I
1746
+ 1
1747
+ n
1748
+ p
1749
+ 9
1750
+ x
1751
+ 4
1752
+ Term
1753
+ n
1754
+ x
1755
+ 9
1756
+ ANSIColor
1757
+ x
1758
+ 4
1759
+ send
1760
+ x
1761
+ 4
1762
+ to_s
1763
+ s
1764
+ 3
1765
+ -
1766
+ x
1767
+ 7
1768
+ inspect
1769
+ s
1770
+ 4
1771
+ 
1772
+ x
1773
+ 4
1774
+ puts
1775
+ p
1776
+ 7
1777
+ I
1778
+ 0
1779
+ I
1780
+ 88
1781
+ I
1782
+ 4
1783
+ I
1784
+ 89
1785
+ I
1786
+ 11
1787
+ I
1788
+ 8a
1789
+ I
1790
+ 2f
1791
+ x
1792
+ 70
1793
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/sample/list-terminal-colors.rb
1794
+ p
1795
+ 2
1796
+ x
1797
+ 4
1798
+ name
1799
+ x
1800
+ 6
1801
+ attrib
1802
+ p
1803
+ 255
1804
+ I
1805
+ 0
1806
+ I
1807
+ 5
1808
+ I
1809
+ 9
1810
+ I
1811
+ 6
1812
+ I
1813
+ 12
1814
+ I
1815
+ 7
1816
+ I
1817
+ 1b
1818
+ I
1819
+ 9
1820
+ I
1821
+ 1e
1822
+ I
1823
+ 4f
1824
+ I
1825
+ 27
1826
+ I
1827
+ a
1828
+ I
1829
+ 31
1830
+ I
1831
+ b
1832
+ I
1833
+ 3b
1834
+ I
1835
+ c
1836
+ I
1837
+ 45
1838
+ I
1839
+ d
1840
+ I
1841
+ 4f
1842
+ I
1843
+ e
1844
+ I
1845
+ 59
1846
+ I
1847
+ f
1848
+ I
1849
+ 63
1850
+ I
1851
+ 10
1852
+ I
1853
+ 85
1854
+ I
1855
+ 11
1856
+ I
1857
+ 8f
1858
+ I
1859
+ 12
1860
+ I
1861
+ 99
1862
+ I
1863
+ 13
1864
+ I
1865
+ a3
1866
+ I
1867
+ 14
1868
+ I
1869
+ ad
1870
+ I
1871
+ 15
1872
+ I
1873
+ b7
1874
+ I
1875
+ 16
1876
+ I
1877
+ c6
1878
+ I
1879
+ 17
1880
+ I
1881
+ d0
1882
+ I
1883
+ 18
1884
+ I
1885
+ da
1886
+ I
1887
+ 19
1888
+ I
1889
+ e9
1890
+ I
1891
+ 1a
1892
+ I
1893
+ f3
1894
+ I
1895
+ 1b
1896
+ I
1897
+ fd
1898
+ I
1899
+ 1c
1900
+ I
1901
+ 10c
1902
+ I
1903
+ 1d
1904
+ I
1905
+ 116
1906
+ I
1907
+ 1e
1908
+ I
1909
+ 125
1910
+ I
1911
+ 1f
1912
+ I
1913
+ 12f
1914
+ I
1915
+ 20
1916
+ I
1917
+ 139
1918
+ I
1919
+ 21
1920
+ I
1921
+ 143
1922
+ I
1923
+ 22
1924
+ I
1925
+ 14d
1926
+ I
1927
+ 23
1928
+ I
1929
+ 157
1930
+ I
1931
+ 24
1932
+ I
1933
+ 161
1934
+ I
1935
+ 25
1936
+ I
1937
+ 16b
1938
+ I
1939
+ 26
1940
+ I
1941
+ 175
1942
+ I
1943
+ 27
1944
+ I
1945
+ 17f
1946
+ I
1947
+ 28
1948
+ I
1949
+ 189
1950
+ I
1951
+ 29
1952
+ I
1953
+ 193
1954
+ I
1955
+ 2a
1956
+ I
1957
+ 19d
1958
+ I
1959
+ 2b
1960
+ I
1961
+ 1a7
1962
+ I
1963
+ 2c
1964
+ I
1965
+ 1b1
1966
+ I
1967
+ 2d
1968
+ I
1969
+ 1bb
1970
+ I
1971
+ 2e
1972
+ I
1973
+ 1c5
1974
+ I
1975
+ 2f
1976
+ I
1977
+ 1d4
1978
+ I
1979
+ 30
1980
+ I
1981
+ 1de
1982
+ I
1983
+ 31
1984
+ I
1985
+ 1e8
1986
+ I
1987
+ 32
1988
+ I
1989
+ 1ea
1990
+ I
1991
+ 37
1992
+ I
1993
+ 1f3
1994
+ I
1995
+ 33
1996
+ I
1997
+ 1fd
1998
+ I
1999
+ 34
2000
+ I
2001
+ 207
2002
+ I
2003
+ 35
2004
+ I
2005
+ 211
2006
+ I
2007
+ 36
2008
+ I
2009
+ 21f
2010
+ I
2011
+ 38
2012
+ I
2013
+ 229
2014
+ I
2015
+ 39
2016
+ I
2017
+ 22b
2018
+ I
2019
+ 3d
2020
+ I
2021
+ 234
2022
+ I
2023
+ 3a
2024
+ I
2025
+ 23e
2026
+ I
2027
+ 3b
2028
+ I
2029
+ 248
2030
+ I
2031
+ 3c
2032
+ I
2033
+ 256
2034
+ I
2035
+ 3e
2036
+ I
2037
+ 258
2038
+ I
2039
+ 43
2040
+ I
2041
+ 261
2042
+ I
2043
+ 3f
2044
+ I
2045
+ 26b
2046
+ I
2047
+ 40
2048
+ I
2049
+ 275
2050
+ I
2051
+ 41
2052
+ I
2053
+ 27f
2054
+ I
2055
+ 42
2056
+ I
2057
+ 28d
2058
+ I
2059
+ 44
2060
+ I
2061
+ 297
2062
+ I
2063
+ 45
2064
+ I
2065
+ 2a1
2066
+ I
2067
+ 46
2068
+ I
2069
+ 2ab
2070
+ I
2071
+ 47
2072
+ I
2073
+ 2ba
2074
+ I
2075
+ 48
2076
+ I
2077
+ 2c4
2078
+ I
2079
+ 49
2080
+ I
2081
+ 2ce
2082
+ I
2083
+ 4a
2084
+ I
2085
+ 2d8
2086
+ I
2087
+ 4b
2088
+ I
2089
+ 2e2
2090
+ I
2091
+ 4c
2092
+ I
2093
+ 2ec
2094
+ I
2095
+ 4d
2096
+ I
2097
+ 2f6
2098
+ I
2099
+ 4e
2100
+ I
2101
+ 303
2102
+ I
2103
+ 50
2104
+ I
2105
+ 318
2106
+ I
2107
+ 51
2108
+ I
2109
+ 32d
2110
+ I
2111
+ 52
2112
+ I
2113
+ 342
2114
+ I
2115
+ 53
2116
+ I
2117
+ 37b
2118
+ I
2119
+ 56
2120
+ I
2121
+ 37e
2122
+ I
2123
+ 57
2124
+ I
2125
+ 381
2126
+ I
2127
+ 58
2128
+ I
2129
+ 384
2130
+ I
2131
+ 59
2132
+ I
2133
+ 387
2134
+ I
2135
+ 5a
2136
+ I
2137
+ 38a
2138
+ I
2139
+ 5b
2140
+ I
2141
+ 38d
2142
+ I
2143
+ 5c
2144
+ I
2145
+ 390
2146
+ I
2147
+ 5d
2148
+ I
2149
+ 393
2150
+ I
2151
+ 5e
2152
+ I
2153
+ 396
2154
+ I
2155
+ 5f
2156
+ I
2157
+ 399
2158
+ I
2159
+ 60
2160
+ I
2161
+ 39c
2162
+ I
2163
+ 61
2164
+ I
2165
+ 39f
2166
+ I
2167
+ 62
2168
+ I
2169
+ 3a2
2170
+ I
2171
+ 63
2172
+ I
2173
+ 3a5
2174
+ I
2175
+ 64
2176
+ I
2177
+ 3a8
2178
+ I
2179
+ 65
2180
+ I
2181
+ 3ab
2182
+ I
2183
+ 66
2184
+ I
2185
+ 3ae
2186
+ I
2187
+ 67
2188
+ I
2189
+ 3b1
2190
+ I
2191
+ 68
2192
+ I
2193
+ 3b4
2194
+ I
2195
+ 69
2196
+ I
2197
+ 3b7
2198
+ I
2199
+ 6a
2200
+ I
2201
+ 3ba
2202
+ I
2203
+ 6b
2204
+ I
2205
+ 3bd
2206
+ I
2207
+ 6c
2208
+ I
2209
+ 3c0
2210
+ I
2211
+ 6d
2212
+ I
2213
+ 3c3
2214
+ I
2215
+ 6e
2216
+ I
2217
+ 3c6
2218
+ I
2219
+ 6f
2220
+ I
2221
+ 3c9
2222
+ I
2223
+ 70
2224
+ I
2225
+ 3cc
2226
+ I
2227
+ 71
2228
+ I
2229
+ 3cf
2230
+ I
2231
+ 72
2232
+ I
2233
+ 3d2
2234
+ I
2235
+ 73
2236
+ I
2237
+ 3d5
2238
+ I
2239
+ 74
2240
+ I
2241
+ 3d8
2242
+ I
2243
+ 75
2244
+ I
2245
+ 3db
2246
+ I
2247
+ 76
2248
+ I
2249
+ 3de
2250
+ I
2251
+ 77
2252
+ I
2253
+ 3e1
2254
+ I
2255
+ 78
2256
+ I
2257
+ 3e4
2258
+ I
2259
+ 79
2260
+ I
2261
+ 3e7
2262
+ I
2263
+ 7a
2264
+ I
2265
+ 3ea
2266
+ I
2267
+ 7b
2268
+ I
2269
+ 3ed
2270
+ I
2271
+ 7c
2272
+ I
2273
+ 3f0
2274
+ I
2275
+ 7d
2276
+ I
2277
+ 3f3
2278
+ I
2279
+ 7e
2280
+ I
2281
+ 3f6
2282
+ I
2283
+ 7f
2284
+ I
2285
+ 3f9
2286
+ I
2287
+ 80
2288
+ I
2289
+ 3fc
2290
+ I
2291
+ 81
2292
+ I
2293
+ 3ff
2294
+ I
2295
+ 82
2296
+ I
2297
+ 402
2298
+ I
2299
+ 83
2300
+ I
2301
+ 405
2302
+ I
2303
+ 84
2304
+ I
2305
+ 40a
2306
+ I
2307
+ 57
2308
+ I
2309
+ 410
2310
+ I
2311
+ 88
2312
+ I
2313
+ 423
2314
+ x
2315
+ 70
2316
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/sample/list-terminal-colors.rb
2317
+ p
2318
+ 0