rbx-trepanning 0.0.1-universal-rubinius

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