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