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