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,2898 @@
1
+ !RBIX
2
+ 0
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 161
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
+ 1
26
+ 65
27
+ 49
28
+ 3
29
+ 3
30
+ 13
31
+ 99
32
+ 12
33
+ 7
34
+ 4
35
+ 12
36
+ 7
37
+ 5
38
+ 12
39
+ 65
40
+ 12
41
+ 49
42
+ 6
43
+ 4
44
+ 15
45
+ 49
46
+ 4
47
+ 0
48
+ 15
49
+ 65
50
+ 49
51
+ 7
52
+ 0
53
+ 99
54
+ 43
55
+ 8
56
+ 7
57
+ 9
58
+ 49
59
+ 10
60
+ 1
61
+ 83
62
+ 11
63
+ 9
64
+ 157
65
+ 44
66
+ 43
67
+ 12
68
+ 78
69
+ 49
70
+ 13
71
+ 1
72
+ 19
73
+ 0
74
+ 15
75
+ 44
76
+ 43
77
+ 12
78
+ 78
79
+ 49
80
+ 13
81
+ 1
82
+ 19
83
+ 1
84
+ 15
85
+ 7
86
+ 14
87
+ 64
88
+ 35
89
+ 1
90
+ 7
91
+ 15
92
+ 64
93
+ 35
94
+ 1
95
+ 35
96
+ 2
97
+ 56
98
+ 16
99
+ 50
100
+ 17
101
+ 0
102
+ 15
103
+ 20
104
+ 0
105
+ 45
106
+ 18
107
+ 19
108
+ 49
109
+ 20
110
+ 1
111
+ 19
112
+ 2
113
+ 15
114
+ 5
115
+ 20
116
+ 0
117
+ 47
118
+ 49
119
+ 21
120
+ 1
121
+ 15
122
+ 5
123
+ 7
124
+ 22
125
+ 64
126
+ 4
127
+ 10
128
+ 49
129
+ 23
130
+ 1
131
+ 47
132
+ 49
133
+ 21
134
+ 1
135
+ 15
136
+ 5
137
+ 20
138
+ 1
139
+ 47
140
+ 49
141
+ 24
142
+ 1
143
+ 15
144
+ 5
145
+ 7
146
+ 22
147
+ 64
148
+ 4
149
+ 10
150
+ 49
151
+ 23
152
+ 1
153
+ 47
154
+ 49
155
+ 21
156
+ 1
157
+ 15
158
+ 5
159
+ 45
160
+ 2
161
+ 25
162
+ 43
163
+ 26
164
+ 47
165
+ 49
166
+ 24
167
+ 1
168
+ 8
169
+ 158
170
+ 1
171
+ 15
172
+ 2
173
+ 11
174
+ I
175
+ 9
176
+ I
177
+ 3
178
+ I
179
+ 0
180
+ I
181
+ 0
182
+ n
183
+ p
184
+ 27
185
+ s
186
+ 8
187
+ optparse
188
+ x
189
+ 7
190
+ require
191
+ x
192
+ 6
193
+ Trepan
194
+ x
195
+ 10
196
+ open_class
197
+ x
198
+ 14
199
+ __class_init__
200
+ M
201
+ 1
202
+ n
203
+ n
204
+ x
205
+ 6
206
+ Trepan
207
+ i
208
+ 86
209
+ 5
210
+ 66
211
+ 5
212
+ 7
213
+ 0
214
+ 64
215
+ 47
216
+ 49
217
+ 1
218
+ 1
219
+ 15
220
+ 5
221
+ 7
222
+ 2
223
+ 64
224
+ 47
225
+ 49
226
+ 1
227
+ 1
228
+ 15
229
+ 5
230
+ 7
231
+ 3
232
+ 64
233
+ 47
234
+ 49
235
+ 4
236
+ 1
237
+ 15
238
+ 45
239
+ 5
240
+ 6
241
+ 7
242
+ 7
243
+ 7
244
+ 8
245
+ 64
246
+ 49
247
+ 9
248
+ 2
249
+ 15
250
+ 45
251
+ 5
252
+ 10
253
+ 7
254
+ 11
255
+ 7
256
+ 12
257
+ 64
258
+ 49
259
+ 9
260
+ 2
261
+ 15
262
+ 99
263
+ 7
264
+ 13
265
+ 7
266
+ 14
267
+ 65
268
+ 5
269
+ 49
270
+ 15
271
+ 4
272
+ 15
273
+ 99
274
+ 7
275
+ 16
276
+ 7
277
+ 17
278
+ 65
279
+ 5
280
+ 49
281
+ 15
282
+ 4
283
+ 15
284
+ 99
285
+ 7
286
+ 18
287
+ 7
288
+ 19
289
+ 65
290
+ 5
291
+ 49
292
+ 15
293
+ 4
294
+ 11
295
+ I
296
+ 5
297
+ I
298
+ 0
299
+ I
300
+ 0
301
+ I
302
+ 0
303
+ n
304
+ p
305
+ 20
306
+ s
307
+ 8
308
+ rubygems
309
+ x
310
+ 7
311
+ require
312
+ s
313
+ 16
314
+ require_relative
315
+ s
316
+ 7
317
+ default
318
+ x
319
+ 16
320
+ require_relative
321
+ x
322
+ 6
323
+ Trepan
324
+ n
325
+ x
326
+ 7
327
+ VERSION
328
+ s
329
+ 5
330
+ 0.0.5
331
+ x
332
+ 9
333
+ const_set
334
+ n
335
+ x
336
+ 7
337
+ PROGRAM
338
+ s
339
+ 7
340
+ trepanx
341
+ x
342
+ 12
343
+ show_version
344
+ M
345
+ 1
346
+ n
347
+ n
348
+ x
349
+ 12
350
+ show_version
351
+ i
352
+ 17
353
+ 45
354
+ 0
355
+ 1
356
+ 47
357
+ 101
358
+ 2
359
+ 7
360
+ 3
361
+ 45
362
+ 4
363
+ 5
364
+ 47
365
+ 101
366
+ 2
367
+ 63
368
+ 3
369
+ 11
370
+ I
371
+ 3
372
+ I
373
+ 0
374
+ I
375
+ 0
376
+ I
377
+ 0
378
+ n
379
+ p
380
+ 6
381
+ x
382
+ 7
383
+ PROGRAM
384
+ n
385
+ x
386
+ 4
387
+ to_s
388
+ s
389
+ 10
390
+ , version
391
+ x
392
+ 7
393
+ VERSION
394
+ n
395
+ p
396
+ 5
397
+ I
398
+ -1
399
+ I
400
+ f
401
+ I
402
+ 0
403
+ I
404
+ 10
405
+ I
406
+ 11
407
+ x
408
+ 54
409
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/options.rb
410
+ p
411
+ 0
412
+ x
413
+ 13
414
+ attach_method
415
+ x
416
+ 20
417
+ copy_default_options
418
+ M
419
+ 1
420
+ n
421
+ n
422
+ x
423
+ 20
424
+ copy_default_options
425
+ i
426
+ 22
427
+ 44
428
+ 43
429
+ 0
430
+ 78
431
+ 49
432
+ 1
433
+ 1
434
+ 19
435
+ 0
436
+ 15
437
+ 45
438
+ 2
439
+ 3
440
+ 56
441
+ 4
442
+ 50
443
+ 5
444
+ 0
445
+ 15
446
+ 20
447
+ 0
448
+ 11
449
+ I
450
+ 3
451
+ I
452
+ 1
453
+ I
454
+ 0
455
+ I
456
+ 0
457
+ n
458
+ p
459
+ 6
460
+ x
461
+ 4
462
+ Hash
463
+ x
464
+ 16
465
+ new_from_literal
466
+ x
467
+ 24
468
+ DEFAULT_CMDLINE_SETTINGS
469
+ n
470
+ M
471
+ 1
472
+ p
473
+ 2
474
+ x
475
+ 9
476
+ for_block
477
+ t
478
+ n
479
+ x
480
+ 20
481
+ copy_default_options
482
+ i
483
+ 81
484
+ 58
485
+ 37
486
+ 19
487
+ 0
488
+ 15
489
+ 37
490
+ 19
491
+ 1
492
+ 15
493
+ 15
494
+ 26
495
+ 93
496
+ 0
497
+ 15
498
+ 29
499
+ 37
500
+ 0
501
+ 21
502
+ 1
503
+ 0
504
+ 20
505
+ 0
506
+ 20
507
+ 1
508
+ 49
509
+ 0
510
+ 0
511
+ 13
512
+ 18
513
+ 3
514
+ 49
515
+ 1
516
+ 2
517
+ 15
518
+ 30
519
+ 8
520
+ 77
521
+ 26
522
+ 93
523
+ 1
524
+ 15
525
+ 24
526
+ 13
527
+ 45
528
+ 2
529
+ 3
530
+ 12
531
+ 49
532
+ 4
533
+ 1
534
+ 10
535
+ 54
536
+ 8
537
+ 72
538
+ 15
539
+ 21
540
+ 1
541
+ 0
542
+ 20
543
+ 0
544
+ 20
545
+ 1
546
+ 13
547
+ 18
548
+ 3
549
+ 49
550
+ 1
551
+ 2
552
+ 15
553
+ 25
554
+ 8
555
+ 77
556
+ 15
557
+ 92
558
+ 1
559
+ 27
560
+ 34
561
+ 92
562
+ 0
563
+ 27
564
+ 11
565
+ I
566
+ 9
567
+ I
568
+ 2
569
+ I
570
+ 2
571
+ I
572
+ 2
573
+ n
574
+ p
575
+ 5
576
+ x
577
+ 5
578
+ clone
579
+ x
580
+ 3
581
+ []=
582
+ x
583
+ 9
584
+ TypeError
585
+ n
586
+ x
587
+ 3
588
+ ===
589
+ p
590
+ 9
591
+ I
592
+ 0
593
+ I
594
+ 15
595
+ I
596
+ a
597
+ I
598
+ 17
599
+ I
600
+ 2a
601
+ I
602
+ 18
603
+ I
604
+ 37
605
+ I
606
+ 19
607
+ I
608
+ 51
609
+ x
610
+ 54
611
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/options.rb
612
+ p
613
+ 2
614
+ x
615
+ 3
616
+ key
617
+ x
618
+ 5
619
+ value
620
+ x
621
+ 4
622
+ each
623
+ p
624
+ 9
625
+ I
626
+ -1
627
+ I
628
+ 13
629
+ I
630
+ 0
631
+ I
632
+ 14
633
+ I
634
+ a
635
+ I
636
+ 15
637
+ I
638
+ 13
639
+ I
640
+ 1c
641
+ I
642
+ 16
643
+ x
644
+ 54
645
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/options.rb
646
+ p
647
+ 1
648
+ x
649
+ 7
650
+ options
651
+ x
652
+ 13
653
+ setup_options
654
+ M
655
+ 1
656
+ n
657
+ n
658
+ x
659
+ 13
660
+ setup_options
661
+ i
662
+ 39
663
+ 23
664
+ 1
665
+ 10
666
+ 15
667
+ 99
668
+ 43
669
+ 0
670
+ 7
671
+ 1
672
+ 49
673
+ 2
674
+ 1
675
+ 19
676
+ 1
677
+ 15
678
+ 23
679
+ 2
680
+ 10
681
+ 30
682
+ 99
683
+ 43
684
+ 0
685
+ 7
686
+ 3
687
+ 49
688
+ 2
689
+ 1
690
+ 19
691
+ 2
692
+ 15
693
+ 45
694
+ 4
695
+ 5
696
+ 56
697
+ 6
698
+ 50
699
+ 7
700
+ 0
701
+ 11
702
+ I
703
+ 5
704
+ I
705
+ 3
706
+ I
707
+ 1
708
+ I
709
+ 3
710
+ n
711
+ p
712
+ 8
713
+ x
714
+ 7
715
+ Globals
716
+ x
717
+ 7
718
+ $stdout
719
+ x
720
+ 2
721
+ []
722
+ x
723
+ 7
724
+ $stderr
725
+ x
726
+ 12
727
+ OptionParser
728
+ n
729
+ M
730
+ 1
731
+ p
732
+ 2
733
+ x
734
+ 9
735
+ for_block
736
+ t
737
+ n
738
+ x
739
+ 13
740
+ setup_options
741
+ i
742
+ 278
743
+ 57
744
+ 19
745
+ 0
746
+ 15
747
+ 20
748
+ 0
749
+ 5
750
+ 48
751
+ 0
752
+ 47
753
+ 101
754
+ 1
755
+ 7
756
+ 2
757
+ 45
758
+ 3
759
+ 4
760
+ 47
761
+ 101
762
+ 1
763
+ 7
764
+ 5
765
+ 63
766
+ 4
767
+ 13
768
+ 18
769
+ 2
770
+ 49
771
+ 6
772
+ 1
773
+ 15
774
+ 15
775
+ 20
776
+ 0
777
+ 7
778
+ 7
779
+ 64
780
+ 7
781
+ 8
782
+ 64
783
+ 56
784
+ 9
785
+ 50
786
+ 10
787
+ 2
788
+ 15
789
+ 20
790
+ 0
791
+ 7
792
+ 11
793
+ 64
794
+ 7
795
+ 12
796
+ 64
797
+ 45
798
+ 13
799
+ 14
800
+ 7
801
+ 15
802
+ 64
803
+ 56
804
+ 16
805
+ 50
806
+ 10
807
+ 4
808
+ 15
809
+ 20
810
+ 0
811
+ 7
812
+ 17
813
+ 64
814
+ 7
815
+ 18
816
+ 45
817
+ 19
818
+ 20
819
+ 47
820
+ 101
821
+ 1
822
+ 63
823
+ 2
824
+ 56
825
+ 21
826
+ 50
827
+ 10
828
+ 2
829
+ 15
830
+ 20
831
+ 0
832
+ 7
833
+ 22
834
+ 64
835
+ 45
836
+ 13
837
+ 23
838
+ 7
839
+ 24
840
+ 64
841
+ 56
842
+ 25
843
+ 50
844
+ 10
845
+ 3
846
+ 15
847
+ 20
848
+ 0
849
+ 7
850
+ 26
851
+ 64
852
+ 7
853
+ 27
854
+ 64
855
+ 45
856
+ 13
857
+ 28
858
+ 7
859
+ 29
860
+ 64
861
+ 7
862
+ 30
863
+ 45
864
+ 31
865
+ 32
866
+ 7
867
+ 33
868
+ 49
869
+ 34
870
+ 1
871
+ 49
872
+ 35
873
+ 0
874
+ 47
875
+ 101
876
+ 1
877
+ 7
878
+ 36
879
+ 63
880
+ 3
881
+ 81
882
+ 37
883
+ 56
884
+ 38
885
+ 50
886
+ 10
887
+ 4
888
+ 15
889
+ 20
890
+ 0
891
+ 7
892
+ 39
893
+ 64
894
+ 7
895
+ 40
896
+ 64
897
+ 45
898
+ 41
899
+ 42
900
+ 7
901
+ 43
902
+ 64
903
+ 7
904
+ 30
905
+ 45
906
+ 31
907
+ 44
908
+ 7
909
+ 45
910
+ 49
911
+ 34
912
+ 1
913
+ 47
914
+ 101
915
+ 1
916
+ 7
917
+ 36
918
+ 63
919
+ 3
920
+ 81
921
+ 37
922
+ 56
923
+ 46
924
+ 50
925
+ 10
926
+ 4
927
+ 15
928
+ 20
929
+ 0
930
+ 7
931
+ 47
932
+ 64
933
+ 45
934
+ 13
935
+ 48
936
+ 7
937
+ 49
938
+ 64
939
+ 56
940
+ 50
941
+ 50
942
+ 10
943
+ 3
944
+ 15
945
+ 20
946
+ 0
947
+ 7
948
+ 51
949
+ 64
950
+ 7
951
+ 52
952
+ 64
953
+ 56
954
+ 53
955
+ 50
956
+ 10
957
+ 2
958
+ 15
959
+ 20
960
+ 0
961
+ 7
962
+ 54
963
+ 64
964
+ 7
965
+ 55
966
+ 64
967
+ 56
968
+ 56
969
+ 50
970
+ 10
971
+ 2
972
+ 15
973
+ 20
974
+ 0
975
+ 7
976
+ 57
977
+ 64
978
+ 7
979
+ 58
980
+ 64
981
+ 56
982
+ 59
983
+ 50
984
+ 10
985
+ 2
986
+ 15
987
+ 20
988
+ 0
989
+ 7
990
+ 60
991
+ 64
992
+ 7
993
+ 61
994
+ 64
995
+ 7
996
+ 62
997
+ 64
998
+ 56
999
+ 63
1000
+ 50
1001
+ 64
1002
+ 3
1003
+ 15
1004
+ 20
1005
+ 0
1006
+ 7
1007
+ 65
1008
+ 64
1009
+ 7
1010
+ 66
1011
+ 64
1012
+ 7
1013
+ 67
1014
+ 64
1015
+ 56
1016
+ 68
1017
+ 50
1018
+ 64
1019
+ 3
1020
+ 11
1021
+ I
1022
+ a
1023
+ I
1024
+ 1
1025
+ I
1026
+ 1
1027
+ I
1028
+ 1
1029
+ n
1030
+ p
1031
+ 69
1032
+ x
1033
+ 12
1034
+ show_version
1035
+ x
1036
+ 4
1037
+ to_s
1038
+ s
1039
+ 8
1040
+
1041
+ Usage:
1042
+ x
1043
+ 7
1044
+ PROGRAM
1045
+ n
1046
+ s
1047
+ 51
1048
+ [options] <script.rb> [-- <script.rb parameters>]
1049
+
1050
+ x
1051
+ 7
1052
+ banner=
1053
+ s
1054
+ 8
1055
+ --client
1056
+ s
1057
+ 33
1058
+ Connect to out-of-process program
1059
+ M
1060
+ 1
1061
+ p
1062
+ 2
1063
+ x
1064
+ 9
1065
+ for_block
1066
+ t
1067
+ n
1068
+ x
1069
+ 13
1070
+ setup_options
1071
+ i
1072
+ 35
1073
+ 21
1074
+ 2
1075
+ 0
1076
+ 7
1077
+ 0
1078
+ 49
1079
+ 1
1080
+ 1
1081
+ 9
1082
+ 21
1083
+ 21
1084
+ 2
1085
+ 2
1086
+ 7
1087
+ 2
1088
+ 64
1089
+ 49
1090
+ 3
1091
+ 1
1092
+ 8
1093
+ 34
1094
+ 21
1095
+ 2
1096
+ 0
1097
+ 7
1098
+ 4
1099
+ 2
1100
+ 13
1101
+ 18
1102
+ 3
1103
+ 49
1104
+ 5
1105
+ 2
1106
+ 15
1107
+ 11
1108
+ I
1109
+ 5
1110
+ I
1111
+ 0
1112
+ I
1113
+ 0
1114
+ I
1115
+ 0
1116
+ I
1117
+ -2
1118
+ p
1119
+ 6
1120
+ x
1121
+ 6
1122
+ server
1123
+ x
1124
+ 2
1125
+ []
1126
+ s
1127
+ 58
1128
+ --server option previously given. --client option ignored.
1129
+ x
1130
+ 4
1131
+ puts
1132
+ x
1133
+ 6
1134
+ client
1135
+ x
1136
+ 3
1137
+ []=
1138
+ p
1139
+ 7
1140
+ I
1141
+ 0
1142
+ I
1143
+ 27
1144
+ I
1145
+ a
1146
+ I
1147
+ 28
1148
+ I
1149
+ 15
1150
+ I
1151
+ 2a
1152
+ I
1153
+ 23
1154
+ x
1155
+ 54
1156
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/options.rb
1157
+ p
1158
+ 0
1159
+ x
1160
+ 2
1161
+ on
1162
+ s
1163
+ 2
1164
+ -c
1165
+ s
1166
+ 14
1167
+ --command FILE
1168
+ x
1169
+ 6
1170
+ String
1171
+ n
1172
+ s
1173
+ 35
1174
+ Execute debugger commands from FILE
1175
+ M
1176
+ 1
1177
+ p
1178
+ 2
1179
+ x
1180
+ 9
1181
+ for_block
1182
+ t
1183
+ n
1184
+ x
1185
+ 13
1186
+ setup_options
1187
+ i
1188
+ 76
1189
+ 57
1190
+ 19
1191
+ 0
1192
+ 15
1193
+ 45
1194
+ 0
1195
+ 1
1196
+ 20
1197
+ 0
1198
+ 49
1199
+ 2
1200
+ 1
1201
+ 9
1202
+ 29
1203
+ 21
1204
+ 2
1205
+ 0
1206
+ 7
1207
+ 3
1208
+ 49
1209
+ 4
1210
+ 1
1211
+ 20
1212
+ 0
1213
+ 49
1214
+ 5
1215
+ 1
1216
+ 8
1217
+ 75
1218
+ 45
1219
+ 0
1220
+ 6
1221
+ 20
1222
+ 0
1223
+ 49
1224
+ 7
1225
+ 1
1226
+ 9
1227
+ 58
1228
+ 21
1229
+ 2
1230
+ 2
1231
+ 7
1232
+ 8
1233
+ 20
1234
+ 0
1235
+ 47
1236
+ 101
1237
+ 9
1238
+ 7
1239
+ 10
1240
+ 63
1241
+ 3
1242
+ 49
1243
+ 11
1244
+ 1
1245
+ 8
1246
+ 75
1247
+ 21
1248
+ 2
1249
+ 2
1250
+ 7
1251
+ 8
1252
+ 20
1253
+ 0
1254
+ 47
1255
+ 101
1256
+ 9
1257
+ 7
1258
+ 12
1259
+ 63
1260
+ 3
1261
+ 49
1262
+ 11
1263
+ 1
1264
+ 11
1265
+ I
1266
+ 6
1267
+ I
1268
+ 1
1269
+ I
1270
+ 1
1271
+ I
1272
+ 1
1273
+ n
1274
+ p
1275
+ 13
1276
+ x
1277
+ 4
1278
+ File
1279
+ n
1280
+ x
1281
+ 9
1282
+ readable?
1283
+ x
1284
+ 8
1285
+ cmdfiles
1286
+ x
1287
+ 2
1288
+ []
1289
+ x
1290
+ 2
1291
+ <<
1292
+ n
1293
+ x
1294
+ 7
1295
+ exists?
1296
+ s
1297
+ 14
1298
+ Command file '
1299
+ x
1300
+ 4
1301
+ to_s
1302
+ s
1303
+ 34
1304
+ ' is not readable. Option ignored.
1305
+ x
1306
+ 4
1307
+ puts
1308
+ s
1309
+ 17
1310
+ ' does not exist.
1311
+ p
1312
+ 15
1313
+ I
1314
+ 0
1315
+ I
1316
+ 2d
1317
+ I
1318
+ 1
1319
+ I
1320
+ 2e
1321
+ I
1322
+ 4
1323
+ I
1324
+ 2f
1325
+ I
1326
+ e
1327
+ I
1328
+ 30
1329
+ I
1330
+ 1d
1331
+ I
1332
+ 31
1333
+ I
1334
+ 27
1335
+ I
1336
+ 32
1337
+ I
1338
+ 3a
1339
+ I
1340
+ 34
1341
+ I
1342
+ 4c
1343
+ x
1344
+ 54
1345
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/options.rb
1346
+ p
1347
+ 1
1348
+ x
1349
+ 7
1350
+ cmdfile
1351
+ s
1352
+ 4
1353
+ --nx
1354
+ s
1355
+ 40
1356
+ Do not run debugger initialization file
1357
+ x
1358
+ 12
1359
+ CMD_INITFILE
1360
+ n
1361
+ M
1362
+ 1
1363
+ p
1364
+ 2
1365
+ x
1366
+ 9
1367
+ for_block
1368
+ t
1369
+ n
1370
+ x
1371
+ 13
1372
+ setup_options
1373
+ i
1374
+ 14
1375
+ 21
1376
+ 2
1377
+ 0
1378
+ 7
1379
+ 0
1380
+ 2
1381
+ 13
1382
+ 18
1383
+ 3
1384
+ 49
1385
+ 1
1386
+ 2
1387
+ 15
1388
+ 11
1389
+ I
1390
+ 5
1391
+ I
1392
+ 0
1393
+ I
1394
+ 0
1395
+ I
1396
+ 0
1397
+ I
1398
+ -2
1399
+ p
1400
+ 2
1401
+ x
1402
+ 2
1403
+ nx
1404
+ x
1405
+ 3
1406
+ []=
1407
+ p
1408
+ 3
1409
+ I
1410
+ 0
1411
+ I
1412
+ 39
1413
+ I
1414
+ e
1415
+ x
1416
+ 54
1417
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/options.rb
1418
+ p
1419
+ 0
1420
+ s
1421
+ 8
1422
+ --cd DIR
1423
+ n
1424
+ s
1425
+ 31
1426
+ Change current directory to DIR
1427
+ M
1428
+ 1
1429
+ p
1430
+ 2
1431
+ x
1432
+ 9
1433
+ for_block
1434
+ t
1435
+ n
1436
+ x
1437
+ 13
1438
+ setup_options
1439
+ i
1440
+ 77
1441
+ 57
1442
+ 19
1443
+ 0
1444
+ 15
1445
+ 45
1446
+ 0
1447
+ 1
1448
+ 20
1449
+ 0
1450
+ 49
1451
+ 2
1452
+ 1
1453
+ 9
1454
+ 59
1455
+ 45
1456
+ 0
1457
+ 3
1458
+ 20
1459
+ 0
1460
+ 49
1461
+ 4
1462
+ 1
1463
+ 9
1464
+ 40
1465
+ 21
1466
+ 2
1467
+ 0
1468
+ 7
1469
+ 5
1470
+ 20
1471
+ 0
1472
+ 13
1473
+ 18
1474
+ 3
1475
+ 49
1476
+ 6
1477
+ 2
1478
+ 15
1479
+ 8
1480
+ 57
1481
+ 21
1482
+ 2
1483
+ 2
1484
+ 7
1485
+ 7
1486
+ 20
1487
+ 0
1488
+ 47
1489
+ 101
1490
+ 8
1491
+ 7
1492
+ 9
1493
+ 63
1494
+ 3
1495
+ 49
1496
+ 10
1497
+ 1
1498
+ 8
1499
+ 76
1500
+ 21
1501
+ 2
1502
+ 2
1503
+ 7
1504
+ 11
1505
+ 20
1506
+ 0
1507
+ 47
1508
+ 101
1509
+ 8
1510
+ 7
1511
+ 12
1512
+ 63
1513
+ 3
1514
+ 49
1515
+ 10
1516
+ 1
1517
+ 11
1518
+ I
1519
+ 6
1520
+ I
1521
+ 1
1522
+ I
1523
+ 1
1524
+ I
1525
+ 1
1526
+ n
1527
+ p
1528
+ 13
1529
+ x
1530
+ 4
1531
+ File
1532
+ n
1533
+ x
1534
+ 10
1535
+ directory?
1536
+ n
1537
+ x
1538
+ 11
1539
+ executable?
1540
+ x
1541
+ 5
1542
+ chdir
1543
+ x
1544
+ 3
1545
+ []=
1546
+ s
1547
+ 12
1548
+ Can't cd to
1549
+ x
1550
+ 4
1551
+ to_s
1552
+ s
1553
+ 22
1554
+ . Option --cd ignored.
1555
+ x
1556
+ 4
1557
+ puts
1558
+ s
1559
+ 1
1560
+ "
1561
+ s
1562
+ 42
1563
+ " is not a directory. Option --cd ignored.
1564
+ p
1565
+ 13
1566
+ I
1567
+ 0
1568
+ I
1569
+ 3e
1570
+ I
1571
+ 4
1572
+ I
1573
+ 3f
1574
+ I
1575
+ e
1576
+ I
1577
+ 40
1578
+ I
1579
+ 18
1580
+ I
1581
+ 41
1582
+ I
1583
+ 28
1584
+ I
1585
+ 43
1586
+ I
1587
+ 3b
1588
+ I
1589
+ 46
1590
+ I
1591
+ 4d
1592
+ x
1593
+ 54
1594
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/options.rb
1595
+ p
1596
+ 1
1597
+ x
1598
+ 3
1599
+ dir
1600
+ s
1601
+ 2
1602
+ -h
1603
+ s
1604
+ 11
1605
+ --host NAME
1606
+ n
1607
+ s
1608
+ 61
1609
+ Host or IP used in TCP connections for --server or --client.
1610
+ s
1611
+ 11
1612
+ Default is
1613
+ x
1614
+ 16
1615
+ DEFAULT_SETTINGS
1616
+ n
1617
+ x
1618
+ 4
1619
+ host
1620
+ x
1621
+ 2
1622
+ []
1623
+ x
1624
+ 7
1625
+ inspect
1626
+ s
1627
+ 1
1628
+ .
1629
+ x
1630
+ 1
1631
+ +
1632
+ M
1633
+ 1
1634
+ p
1635
+ 2
1636
+ x
1637
+ 9
1638
+ for_block
1639
+ t
1640
+ n
1641
+ x
1642
+ 13
1643
+ setup_options
1644
+ i
1645
+ 19
1646
+ 57
1647
+ 19
1648
+ 0
1649
+ 15
1650
+ 21
1651
+ 2
1652
+ 0
1653
+ 7
1654
+ 0
1655
+ 20
1656
+ 0
1657
+ 13
1658
+ 18
1659
+ 3
1660
+ 49
1661
+ 1
1662
+ 2
1663
+ 15
1664
+ 11
1665
+ I
1666
+ 6
1667
+ I
1668
+ 1
1669
+ I
1670
+ 1
1671
+ I
1672
+ 1
1673
+ n
1674
+ p
1675
+ 2
1676
+ x
1677
+ 4
1678
+ host
1679
+ x
1680
+ 3
1681
+ []=
1682
+ p
1683
+ 7
1684
+ I
1685
+ 0
1686
+ I
1687
+ 49
1688
+ I
1689
+ 1
1690
+ I
1691
+ 4c
1692
+ I
1693
+ 4
1694
+ I
1695
+ 4d
1696
+ I
1697
+ 13
1698
+ x
1699
+ 54
1700
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/options.rb
1701
+ p
1702
+ 1
1703
+ x
1704
+ 10
1705
+ name_or_ip
1706
+ s
1707
+ 2
1708
+ -p
1709
+ s
1710
+ 13
1711
+ --port NUMBER
1712
+ x
1713
+ 7
1714
+ Integer
1715
+ n
1716
+ s
1717
+ 62
1718
+ Port number used in TCP connections for --server or --client.
1719
+ n
1720
+ x
1721
+ 4
1722
+ port
1723
+ M
1724
+ 1
1725
+ p
1726
+ 2
1727
+ x
1728
+ 9
1729
+ for_block
1730
+ t
1731
+ n
1732
+ x
1733
+ 13
1734
+ setup_options
1735
+ i
1736
+ 19
1737
+ 57
1738
+ 19
1739
+ 0
1740
+ 15
1741
+ 21
1742
+ 2
1743
+ 0
1744
+ 7
1745
+ 0
1746
+ 20
1747
+ 0
1748
+ 13
1749
+ 18
1750
+ 3
1751
+ 49
1752
+ 1
1753
+ 2
1754
+ 15
1755
+ 11
1756
+ I
1757
+ 6
1758
+ I
1759
+ 1
1760
+ I
1761
+ 1
1762
+ I
1763
+ 1
1764
+ n
1765
+ p
1766
+ 2
1767
+ x
1768
+ 4
1769
+ port
1770
+ x
1771
+ 3
1772
+ []=
1773
+ p
1774
+ 7
1775
+ I
1776
+ 0
1777
+ I
1778
+ 4f
1779
+ I
1780
+ 1
1781
+ I
1782
+ 52
1783
+ I
1784
+ 4
1785
+ I
1786
+ 53
1787
+ I
1788
+ 13
1789
+ x
1790
+ 54
1791
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/options.rb
1792
+ p
1793
+ 1
1794
+ x
1795
+ 3
1796
+ num
1797
+ s
1798
+ 17
1799
+ --restore PROFILE
1800
+ n
1801
+ s
1802
+ 36
1803
+ Restore debugger state using PROFILE
1804
+ M
1805
+ 1
1806
+ p
1807
+ 2
1808
+ x
1809
+ 9
1810
+ for_block
1811
+ t
1812
+ n
1813
+ x
1814
+ 13
1815
+ setup_options
1816
+ i
1817
+ 50
1818
+ 57
1819
+ 19
1820
+ 0
1821
+ 15
1822
+ 45
1823
+ 0
1824
+ 1
1825
+ 20
1826
+ 0
1827
+ 49
1828
+ 2
1829
+ 1
1830
+ 9
1831
+ 48
1832
+ 21
1833
+ 2
1834
+ 0
1835
+ 7
1836
+ 3
1837
+ 20
1838
+ 0
1839
+ 13
1840
+ 18
1841
+ 3
1842
+ 49
1843
+ 4
1844
+ 2
1845
+ 15
1846
+ 15
1847
+ 21
1848
+ 2
1849
+ 2
1850
+ 7
1851
+ 5
1852
+ 20
1853
+ 0
1854
+ 47
1855
+ 101
1856
+ 6
1857
+ 7
1858
+ 7
1859
+ 63
1860
+ 3
1861
+ 49
1862
+ 8
1863
+ 1
1864
+ 8
1865
+ 49
1866
+ 1
1867
+ 11
1868
+ I
1869
+ 6
1870
+ I
1871
+ 1
1872
+ I
1873
+ 1
1874
+ I
1875
+ 1
1876
+ n
1877
+ p
1878
+ 9
1879
+ x
1880
+ 4
1881
+ File
1882
+ n
1883
+ x
1884
+ 9
1885
+ readable?
1886
+ x
1887
+ 15
1888
+ restore_profile
1889
+ x
1890
+ 3
1891
+ []=
1892
+ s
1893
+ 22
1894
+ Debugger command file
1895
+ x
1896
+ 4
1897
+ to_s
1898
+ s
1899
+ 43
1900
+ is not readable. --restore option ignored.
1901
+ x
1902
+ 4
1903
+ puts
1904
+ p
1905
+ 13
1906
+ I
1907
+ 0
1908
+ I
1909
+ 55
1910
+ I
1911
+ 1
1912
+ I
1913
+ 56
1914
+ I
1915
+ 4
1916
+ I
1917
+ 57
1918
+ I
1919
+ e
1920
+ I
1921
+ 58
1922
+ I
1923
+ 1d
1924
+ I
1925
+ 59
1926
+ I
1927
+ 30
1928
+ I
1929
+ 57
1930
+ I
1931
+ 32
1932
+ x
1933
+ 54
1934
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/options.rb
1935
+ p
1936
+ 1
1937
+ x
1938
+ 7
1939
+ profile
1940
+ s
1941
+ 8
1942
+ --server
1943
+ s
1944
+ 35
1945
+ Set up for out-of-process debugging
1946
+ M
1947
+ 1
1948
+ p
1949
+ 2
1950
+ x
1951
+ 9
1952
+ for_block
1953
+ t
1954
+ n
1955
+ x
1956
+ 13
1957
+ setup_options
1958
+ i
1959
+ 35
1960
+ 21
1961
+ 2
1962
+ 0
1963
+ 7
1964
+ 0
1965
+ 49
1966
+ 1
1967
+ 1
1968
+ 9
1969
+ 21
1970
+ 21
1971
+ 2
1972
+ 2
1973
+ 7
1974
+ 2
1975
+ 64
1976
+ 49
1977
+ 3
1978
+ 1
1979
+ 8
1980
+ 34
1981
+ 21
1982
+ 2
1983
+ 0
1984
+ 7
1985
+ 4
1986
+ 2
1987
+ 13
1988
+ 18
1989
+ 3
1990
+ 49
1991
+ 5
1992
+ 2
1993
+ 15
1994
+ 11
1995
+ I
1996
+ 5
1997
+ I
1998
+ 0
1999
+ I
2000
+ 0
2001
+ I
2002
+ 0
2003
+ I
2004
+ -2
2005
+ p
2006
+ 6
2007
+ x
2008
+ 6
2009
+ client
2010
+ x
2011
+ 2
2012
+ []
2013
+ s
2014
+ 58
2015
+ --client option previously given. --server option ignored.
2016
+ x
2017
+ 4
2018
+ puts
2019
+ x
2020
+ 6
2021
+ server
2022
+ x
2023
+ 3
2024
+ []=
2025
+ p
2026
+ 7
2027
+ I
2028
+ 0
2029
+ I
2030
+ 5e
2031
+ I
2032
+ a
2033
+ I
2034
+ 5f
2035
+ I
2036
+ 15
2037
+ I
2038
+ 61
2039
+ I
2040
+ 23
2041
+ x
2042
+ 54
2043
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/options.rb
2044
+ p
2045
+ 0
2046
+ s
2047
+ 16
2048
+ --[no-]highlight
2049
+ s
2050
+ 31
2051
+ Use [no] syntax highligh output
2052
+ M
2053
+ 1
2054
+ p
2055
+ 2
2056
+ x
2057
+ 9
2058
+ for_block
2059
+ t
2060
+ n
2061
+ x
2062
+ 13
2063
+ setup_options
2064
+ i
2065
+ 26
2066
+ 57
2067
+ 19
2068
+ 0
2069
+ 15
2070
+ 21
2071
+ 2
2072
+ 0
2073
+ 7
2074
+ 0
2075
+ 20
2076
+ 0
2077
+ 9
2078
+ 17
2079
+ 7
2080
+ 1
2081
+ 8
2082
+ 18
2083
+ 1
2084
+ 13
2085
+ 18
2086
+ 3
2087
+ 49
2088
+ 2
2089
+ 2
2090
+ 15
2091
+ 11
2092
+ I
2093
+ 6
2094
+ I
2095
+ 1
2096
+ I
2097
+ 1
2098
+ I
2099
+ 1
2100
+ n
2101
+ p
2102
+ 3
2103
+ x
2104
+ 9
2105
+ highlight
2106
+ x
2107
+ 4
2108
+ term
2109
+ x
2110
+ 3
2111
+ []=
2112
+ p
2113
+ 7
2114
+ I
2115
+ 0
2116
+ I
2117
+ 64
2118
+ I
2119
+ 1
2120
+ I
2121
+ 65
2122
+ I
2123
+ 4
2124
+ I
2125
+ 66
2126
+ I
2127
+ 1a
2128
+ x
2129
+ 54
2130
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/options.rb
2131
+ p
2132
+ 1
2133
+ x
2134
+ 1
2135
+ v
2136
+ s
2137
+ 15
2138
+ --[no-]readline
2139
+ s
2140
+ 22
2141
+ Try [not] GNU Readline
2142
+ M
2143
+ 1
2144
+ p
2145
+ 2
2146
+ x
2147
+ 9
2148
+ for_block
2149
+ t
2150
+ n
2151
+ x
2152
+ 13
2153
+ setup_options
2154
+ i
2155
+ 19
2156
+ 57
2157
+ 19
2158
+ 0
2159
+ 15
2160
+ 21
2161
+ 2
2162
+ 0
2163
+ 7
2164
+ 0
2165
+ 20
2166
+ 0
2167
+ 13
2168
+ 18
2169
+ 3
2170
+ 49
2171
+ 1
2172
+ 2
2173
+ 15
2174
+ 11
2175
+ I
2176
+ 6
2177
+ I
2178
+ 1
2179
+ I
2180
+ 1
2181
+ I
2182
+ 1
2183
+ n
2184
+ p
2185
+ 2
2186
+ x
2187
+ 8
2188
+ readline
2189
+ x
2190
+ 3
2191
+ []=
2192
+ p
2193
+ 7
2194
+ I
2195
+ 0
2196
+ I
2197
+ 68
2198
+ I
2199
+ 1
2200
+ I
2201
+ 69
2202
+ I
2203
+ 4
2204
+ I
2205
+ 6a
2206
+ I
2207
+ 13
2208
+ x
2209
+ 54
2210
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/options.rb
2211
+ p
2212
+ 1
2213
+ x
2214
+ 1
2215
+ v
2216
+ s
2217
+ 2
2218
+ -?
2219
+ s
2220
+ 6
2221
+ --help
2222
+ s
2223
+ 17
2224
+ Show this message
2225
+ M
2226
+ 1
2227
+ p
2228
+ 2
2229
+ x
2230
+ 9
2231
+ for_block
2232
+ t
2233
+ n
2234
+ x
2235
+ 13
2236
+ setup_options
2237
+ i
2238
+ 24
2239
+ 21
2240
+ 2
2241
+ 0
2242
+ 7
2243
+ 0
2244
+ 2
2245
+ 13
2246
+ 18
2247
+ 3
2248
+ 49
2249
+ 1
2250
+ 2
2251
+ 15
2252
+ 15
2253
+ 21
2254
+ 2
2255
+ 1
2256
+ 21
2257
+ 1
2258
+ 0
2259
+ 49
2260
+ 2
2261
+ 1
2262
+ 11
2263
+ I
2264
+ 5
2265
+ I
2266
+ 0
2267
+ I
2268
+ 0
2269
+ I
2270
+ 0
2271
+ I
2272
+ -2
2273
+ p
2274
+ 3
2275
+ x
2276
+ 4
2277
+ help
2278
+ x
2279
+ 3
2280
+ []=
2281
+ x
2282
+ 4
2283
+ puts
2284
+ p
2285
+ 5
2286
+ I
2287
+ 0
2288
+ I
2289
+ 6d
2290
+ I
2291
+ e
2292
+ I
2293
+ 6e
2294
+ I
2295
+ 18
2296
+ x
2297
+ 54
2298
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/options.rb
2299
+ p
2300
+ 0
2301
+ x
2302
+ 7
2303
+ on_tail
2304
+ s
2305
+ 2
2306
+ -v
2307
+ s
2308
+ 9
2309
+ --version
2310
+ s
2311
+ 17
2312
+ print the version
2313
+ M
2314
+ 1
2315
+ p
2316
+ 2
2317
+ x
2318
+ 9
2319
+ for_block
2320
+ t
2321
+ n
2322
+ x
2323
+ 13
2324
+ setup_options
2325
+ i
2326
+ 24
2327
+ 21
2328
+ 2
2329
+ 0
2330
+ 7
2331
+ 0
2332
+ 2
2333
+ 13
2334
+ 18
2335
+ 3
2336
+ 49
2337
+ 1
2338
+ 2
2339
+ 15
2340
+ 15
2341
+ 21
2342
+ 2
2343
+ 1
2344
+ 5
2345
+ 48
2346
+ 2
2347
+ 49
2348
+ 3
2349
+ 1
2350
+ 11
2351
+ I
2352
+ 5
2353
+ I
2354
+ 0
2355
+ I
2356
+ 0
2357
+ I
2358
+ 0
2359
+ I
2360
+ -2
2361
+ p
2362
+ 4
2363
+ x
2364
+ 7
2365
+ version
2366
+ x
2367
+ 3
2368
+ []=
2369
+ x
2370
+ 12
2371
+ show_version
2372
+ x
2373
+ 4
2374
+ puts
2375
+ p
2376
+ 5
2377
+ I
2378
+ 0
2379
+ I
2380
+ 72
2381
+ I
2382
+ e
2383
+ I
2384
+ 73
2385
+ I
2386
+ 18
2387
+ x
2388
+ 54
2389
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/options.rb
2390
+ p
2391
+ 0
2392
+ p
2393
+ 77
2394
+ I
2395
+ 0
2396
+ I
2397
+ 20
2398
+ I
2399
+ 4
2400
+ I
2401
+ 21
2402
+ I
2403
+ 6
2404
+ I
2405
+ 22
2406
+ I
2407
+ e
2408
+ I
2409
+ 23
2410
+ I
2411
+ 20
2412
+ I
2413
+ 25
2414
+ I
2415
+ 25
2416
+ I
2417
+ 26
2418
+ I
2419
+ 28
2420
+ I
2421
+ 25
2422
+ I
2423
+ 2e
2424
+ I
2425
+ 2d
2426
+ I
2427
+ 39
2428
+ I
2429
+ 2e
2430
+ I
2431
+ 3c
2432
+ I
2433
+ 2d
2434
+ I
2435
+ 42
2436
+ I
2437
+ 37
2438
+ I
2439
+ 47
2440
+ I
2441
+ 38
2442
+ I
2443
+ 51
2444
+ I
2445
+ 37
2446
+ I
2447
+ 57
2448
+ I
2449
+ 3e
2450
+ I
2451
+ 68
2452
+ I
2453
+ 49
2454
+ I
2455
+ 73
2456
+ I
2457
+ 4a
2458
+ I
2459
+ 76
2460
+ I
2461
+ 4b
2462
+ I
2463
+ 8c
2464
+ I
2465
+ 49
2466
+ I
2467
+ 92
2468
+ I
2469
+ 4f
2470
+ I
2471
+ 9d
2472
+ I
2473
+ 50
2474
+ I
2475
+ a0
2476
+ I
2477
+ 51
2478
+ I
2479
+ b3
2480
+ I
2481
+ 4f
2482
+ I
2483
+ b9
2484
+ I
2485
+ 55
2486
+ I
2487
+ c1
2488
+ I
2489
+ 56
2490
+ I
2491
+ c4
2492
+ I
2493
+ 55
2494
+ I
2495
+ ca
2496
+ I
2497
+ 5c
2498
+ I
2499
+ cf
2500
+ I
2501
+ 5d
2502
+ I
2503
+ d2
2504
+ I
2505
+ 5c
2506
+ I
2507
+ d8
2508
+ I
2509
+ 64
2510
+ I
2511
+ dd
2512
+ I
2513
+ 65
2514
+ I
2515
+ e0
2516
+ I
2517
+ 64
2518
+ I
2519
+ e6
2520
+ I
2521
+ 68
2522
+ I
2523
+ eb
2524
+ I
2525
+ 69
2526
+ I
2527
+ ee
2528
+ I
2529
+ 68
2530
+ I
2531
+ f4
2532
+ I
2533
+ 6c
2534
+ I
2535
+ 105
2536
+ I
2537
+ 70
2538
+ I
2539
+ 10d
2540
+ I
2541
+ 71
2542
+ I
2543
+ 110
2544
+ I
2545
+ 70
2546
+ I
2547
+ 116
2548
+ x
2549
+ 54
2550
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/options.rb
2551
+ p
2552
+ 1
2553
+ x
2554
+ 4
2555
+ opts
2556
+ x
2557
+ 3
2558
+ new
2559
+ p
2560
+ 5
2561
+ I
2562
+ -1
2563
+ I
2564
+ 1f
2565
+ I
2566
+ 1e
2567
+ I
2568
+ 20
2569
+ I
2570
+ 27
2571
+ x
2572
+ 54
2573
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/options.rb
2574
+ p
2575
+ 3
2576
+ x
2577
+ 7
2578
+ options
2579
+ x
2580
+ 6
2581
+ stdout
2582
+ x
2583
+ 6
2584
+ stderr
2585
+ p
2586
+ 15
2587
+ I
2588
+ 2
2589
+ I
2590
+ 9
2591
+ I
2592
+ 14
2593
+ I
2594
+ a
2595
+ I
2596
+ 1d
2597
+ I
2598
+ c
2599
+ I
2600
+ 29
2601
+ I
2602
+ d
2603
+ I
2604
+ 35
2605
+ I
2606
+ f
2607
+ I
2608
+ 40
2609
+ I
2610
+ 13
2611
+ I
2612
+ 4b
2613
+ I
2614
+ 1f
2615
+ I
2616
+ 56
2617
+ x
2618
+ 54
2619
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/options.rb
2620
+ p
2621
+ 0
2622
+ x
2623
+ 13
2624
+ attach_method
2625
+ x
2626
+ 11
2627
+ active_path
2628
+ x
2629
+ 7
2630
+ Globals
2631
+ x
2632
+ 2
2633
+ $0
2634
+ x
2635
+ 2
2636
+ []
2637
+ x
2638
+ 2
2639
+ ==
2640
+ x
2641
+ 4
2642
+ Hash
2643
+ x
2644
+ 16
2645
+ new_from_literal
2646
+ s
2647
+ 6
2648
+ --help
2649
+ s
2650
+ 9
2651
+ --version
2652
+ M
2653
+ 1
2654
+ p
2655
+ 2
2656
+ x
2657
+ 9
2658
+ for_block
2659
+ t
2660
+ n
2661
+ x
2662
+ 9
2663
+ __block__
2664
+ i
2665
+ 61
2666
+ 57
2667
+ 19
2668
+ 0
2669
+ 15
2670
+ 45
2671
+ 0
2672
+ 1
2673
+ 49
2674
+ 2
2675
+ 0
2676
+ 22
2677
+ 1
2678
+ 1
2679
+ 15
2680
+ 45
2681
+ 0
2682
+ 3
2683
+ 21
2684
+ 1
2685
+ 1
2686
+ 49
2687
+ 4
2688
+ 1
2689
+ 22
2690
+ 1
2691
+ 0
2692
+ 15
2693
+ 21
2694
+ 1
2695
+ 0
2696
+ 20
2697
+ 0
2698
+ 49
2699
+ 5
2700
+ 1
2701
+ 19
2702
+ 1
2703
+ 15
2704
+ 5
2705
+ 21
2706
+ 1
2707
+ 1
2708
+ 47
2709
+ 49
2710
+ 6
2711
+ 1
2712
+ 15
2713
+ 5
2714
+ 7
2715
+ 7
2716
+ 64
2717
+ 4
2718
+ 10
2719
+ 49
2720
+ 8
2721
+ 1
2722
+ 47
2723
+ 49
2724
+ 9
2725
+ 1
2726
+ 11
2727
+ I
2728
+ 6
2729
+ I
2730
+ 2
2731
+ I
2732
+ 1
2733
+ I
2734
+ 1
2735
+ n
2736
+ p
2737
+ 10
2738
+ x
2739
+ 6
2740
+ Trepan
2741
+ n
2742
+ x
2743
+ 20
2744
+ copy_default_options
2745
+ n
2746
+ x
2747
+ 13
2748
+ setup_options
2749
+ x
2750
+ 5
2751
+ parse
2752
+ x
2753
+ 1
2754
+ p
2755
+ s
2756
+ 1
2757
+ =
2758
+ x
2759
+ 1
2760
+ *
2761
+ x
2762
+ 4
2763
+ puts
2764
+ p
2765
+ 13
2766
+ I
2767
+ 0
2768
+ I
2769
+ 7c
2770
+ I
2771
+ 4
2772
+ I
2773
+ 7d
2774
+ I
2775
+ e
2776
+ I
2777
+ 7e
2778
+ I
2779
+ 1b
2780
+ I
2781
+ 7f
2782
+ I
2783
+ 26
2784
+ I
2785
+ 80
2786
+ I
2787
+ 2f
2788
+ I
2789
+ 81
2790
+ I
2791
+ 3d
2792
+ x
2793
+ 54
2794
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/options.rb
2795
+ p
2796
+ 2
2797
+ x
2798
+ 1
2799
+ o
2800
+ x
2801
+ 4
2802
+ rest
2803
+ x
2804
+ 4
2805
+ each
2806
+ x
2807
+ 4
2808
+ ARGV
2809
+ n
2810
+ x
2811
+ 6
2812
+ parse!
2813
+ x
2814
+ 4
2815
+ puts
2816
+ s
2817
+ 1
2818
+ =
2819
+ x
2820
+ 1
2821
+ *
2822
+ x
2823
+ 1
2824
+ p
2825
+ n
2826
+ x
2827
+ 24
2828
+ DEFAULT_CMDLINE_SETTINGS
2829
+ p
2830
+ 27
2831
+ I
2832
+ 0
2833
+ I
2834
+ 7
2835
+ I
2836
+ 9
2837
+ I
2838
+ 8
2839
+ I
2840
+ 24
2841
+ I
2842
+ 79
2843
+ I
2844
+ 34
2845
+ I
2846
+ 7a
2847
+ I
2848
+ 3e
2849
+ I
2850
+ 7b
2851
+ I
2852
+ 48
2853
+ I
2854
+ 7c
2855
+ I
2856
+ 5a
2857
+ I
2858
+ 83
2859
+ I
2860
+ 65
2861
+ I
2862
+ 84
2863
+ I
2864
+ 6d
2865
+ I
2866
+ 85
2867
+ I
2868
+ 7b
2869
+ I
2870
+ 86
2871
+ I
2872
+ 83
2873
+ I
2874
+ 87
2875
+ I
2876
+ 91
2877
+ I
2878
+ 88
2879
+ I
2880
+ 9d
2881
+ I
2882
+ 79
2883
+ I
2884
+ a1
2885
+ x
2886
+ 54
2887
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/options.rb
2888
+ p
2889
+ 3
2890
+ x
2891
+ 4
2892
+ opts
2893
+ x
2894
+ 7
2895
+ options
2896
+ x
2897
+ 4
2898
+ rest