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