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
@@ -0,0 +1,985 @@
1
+ !RBIX
2
+ 0
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 94
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
+ 45
59
+ 7
60
+ 8
61
+ 65
62
+ 49
63
+ 9
64
+ 0
65
+ 49
66
+ 10
67
+ 1
68
+ 45
69
+ 7
70
+ 11
71
+ 99
72
+ 43
73
+ 12
74
+ 7
75
+ 13
76
+ 49
77
+ 14
78
+ 1
79
+ 49
80
+ 10
81
+ 1
82
+ 83
83
+ 15
84
+ 9
85
+ 90
86
+ 5
87
+ 45
88
+ 16
89
+ 17
90
+ 47
91
+ 49
92
+ 18
93
+ 1
94
+ 15
95
+ 79
96
+ 56
97
+ 19
98
+ 50
99
+ 20
100
+ 0
101
+ 8
102
+ 91
103
+ 1
104
+ 15
105
+ 2
106
+ 11
107
+ I
108
+ 4
109
+ I
110
+ 0
111
+ I
112
+ 0
113
+ I
114
+ 0
115
+ n
116
+ p
117
+ 21
118
+ s
119
+ 8
120
+ rubygems
121
+ x
122
+ 7
123
+ require
124
+ s
125
+ 16
126
+ require_relative
127
+ s
128
+ 10
129
+ ../app/run
130
+ x
131
+ 16
132
+ require_relative
133
+ s
134
+ 14
135
+ ../app/options
136
+ s
137
+ 17
138
+ ../lib/trepanning
139
+ x
140
+ 4
141
+ File
142
+ n
143
+ x
144
+ 11
145
+ active_path
146
+ x
147
+ 8
148
+ basename
149
+ n
150
+ x
151
+ 7
152
+ Globals
153
+ x
154
+ 2
155
+ $0
156
+ x
157
+ 2
158
+ []
159
+ x
160
+ 2
161
+ ==
162
+ x
163
+ 10
164
+ Trepanning
165
+ n
166
+ x
167
+ 7
168
+ include
169
+ M
170
+ 1
171
+ p
172
+ 2
173
+ x
174
+ 9
175
+ for_block
176
+ t
177
+ n
178
+ x
179
+ 9
180
+ __block__
181
+ i
182
+ 428
183
+ 1
184
+ 19
185
+ 1
186
+ 19
187
+ 0
188
+ 15
189
+ 5
190
+ 48
191
+ 0
192
+ 19
193
+ 2
194
+ 15
195
+ 5
196
+ 20
197
+ 2
198
+ 47
199
+ 49
200
+ 1
201
+ 1
202
+ 19
203
+ 3
204
+ 15
205
+ 45
206
+ 2
207
+ 3
208
+ 7
209
+ 4
210
+ 45
211
+ 4
212
+ 5
213
+ 49
214
+ 6
215
+ 0
216
+ 49
217
+ 7
218
+ 2
219
+ 15
220
+ 20
221
+ 3
222
+ 45
223
+ 4
224
+ 8
225
+ 49
226
+ 9
227
+ 1
228
+ 19
229
+ 4
230
+ 15
231
+ 45
232
+ 10
233
+ 11
234
+ 99
235
+ 43
236
+ 12
237
+ 7
238
+ 13
239
+ 49
240
+ 14
241
+ 1
242
+ 49
243
+ 15
244
+ 1
245
+ 19
246
+ 0
247
+ 15
248
+ 45
249
+ 16
250
+ 17
251
+ 7
252
+ 18
253
+ 13
254
+ 70
255
+ 9
256
+ 86
257
+ 15
258
+ 44
259
+ 43
260
+ 19
261
+ 7
262
+ 20
263
+ 78
264
+ 49
265
+ 21
266
+ 2
267
+ 6
268
+ 18
269
+ 49
270
+ 22
271
+ 1
272
+ 9
273
+ 130
274
+ 20
275
+ 0
276
+ 7
277
+ 23
278
+ 13
279
+ 70
280
+ 9
281
+ 111
282
+ 15
283
+ 44
284
+ 43
285
+ 19
286
+ 7
287
+ 24
288
+ 79
289
+ 49
290
+ 21
291
+ 2
292
+ 6
293
+ 23
294
+ 49
295
+ 22
296
+ 1
297
+ 9
298
+ 119
299
+ 1
300
+ 8
301
+ 128
302
+ 20
303
+ 0
304
+ 7
305
+ 25
306
+ 64
307
+ 81
308
+ 26
309
+ 19
310
+ 0
311
+ 8
312
+ 131
313
+ 1
314
+ 15
315
+ 45
316
+ 2
317
+ 27
318
+ 7
319
+ 28
320
+ 5
321
+ 48
322
+ 29
323
+ 49
324
+ 7
325
+ 2
326
+ 15
327
+ 45
328
+ 2
329
+ 30
330
+ 7
331
+ 31
332
+ 20
333
+ 0
334
+ 49
335
+ 7
336
+ 2
337
+ 15
338
+ 45
339
+ 2
340
+ 32
341
+ 7
342
+ 33
343
+ 65
344
+ 49
345
+ 34
346
+ 0
347
+ 49
348
+ 7
349
+ 2
350
+ 15
351
+ 45
352
+ 4
353
+ 35
354
+ 49
355
+ 36
356
+ 0
357
+ 9
358
+ 223
359
+ 20
360
+ 2
361
+ 7
362
+ 37
363
+ 49
364
+ 14
365
+ 1
366
+ 13
367
+ 10
368
+ 194
369
+ 15
370
+ 20
371
+ 2
372
+ 7
373
+ 38
374
+ 49
375
+ 14
376
+ 1
377
+ 9
378
+ 205
379
+ 5
380
+ 4
381
+ 100
382
+ 47
383
+ 49
384
+ 39
385
+ 1
386
+ 8
387
+ 221
388
+ 45
389
+ 40
390
+ 41
391
+ 7
392
+ 42
393
+ 64
394
+ 49
395
+ 43
396
+ 1
397
+ 15
398
+ 5
399
+ 79
400
+ 47
401
+ 49
402
+ 39
403
+ 1
404
+ 8
405
+ 224
406
+ 1
407
+ 15
408
+ 45
409
+ 4
410
+ 44
411
+ 49
412
+ 45
413
+ 0
414
+ 19
415
+ 1
416
+ 15
417
+ 45
418
+ 10
419
+ 46
420
+ 20
421
+ 1
422
+ 49
423
+ 47
424
+ 1
425
+ 9
426
+ 247
427
+ 1
428
+ 8
429
+ 256
430
+ 5
431
+ 20
432
+ 1
433
+ 47
434
+ 49
435
+ 48
436
+ 1
437
+ 19
438
+ 1
439
+ 15
440
+ 45
441
+ 2
442
+ 49
443
+ 7
444
+ 50
445
+ 20
446
+ 1
447
+ 49
448
+ 7
449
+ 2
450
+ 15
451
+ 99
452
+ 43
453
+ 12
454
+ 7
455
+ 51
456
+ 45
457
+ 2
458
+ 52
459
+ 13
460
+ 71
461
+ 21
462
+ 47
463
+ 9
464
+ 344
465
+ 47
466
+ 49
467
+ 53
468
+ 0
469
+ 13
470
+ 44
471
+ 43
472
+ 54
473
+ 4
474
+ 3
475
+ 49
476
+ 55
477
+ 1
478
+ 13
479
+ 7
480
+ 56
481
+ 20
482
+ 2
483
+ 7
484
+ 56
485
+ 49
486
+ 14
487
+ 1
488
+ 49
489
+ 57
490
+ 2
491
+ 15
492
+ 13
493
+ 7
494
+ 58
495
+ 20
496
+ 2
497
+ 7
498
+ 59
499
+ 49
500
+ 14
501
+ 1
502
+ 49
503
+ 57
504
+ 2
505
+ 15
506
+ 13
507
+ 7
508
+ 60
509
+ 20
510
+ 2
511
+ 7
512
+ 60
513
+ 49
514
+ 14
515
+ 1
516
+ 49
517
+ 57
518
+ 2
519
+ 15
520
+ 47
521
+ 49
522
+ 61
523
+ 1
524
+ 15
525
+ 8
526
+ 397
527
+ 44
528
+ 43
529
+ 54
530
+ 4
531
+ 3
532
+ 49
533
+ 55
534
+ 1
535
+ 13
536
+ 7
537
+ 56
538
+ 20
539
+ 2
540
+ 7
541
+ 56
542
+ 49
543
+ 14
544
+ 1
545
+ 49
546
+ 57
547
+ 2
548
+ 15
549
+ 13
550
+ 7
551
+ 58
552
+ 20
553
+ 2
554
+ 7
555
+ 59
556
+ 49
557
+ 14
558
+ 1
559
+ 49
560
+ 57
561
+ 2
562
+ 15
563
+ 13
564
+ 7
565
+ 60
566
+ 20
567
+ 2
568
+ 7
569
+ 60
570
+ 49
571
+ 14
572
+ 1
573
+ 49
574
+ 57
575
+ 2
576
+ 15
577
+ 49
578
+ 21
579
+ 1
580
+ 49
581
+ 57
582
+ 2
583
+ 15
584
+ 5
585
+ 99
586
+ 43
587
+ 12
588
+ 7
589
+ 51
590
+ 49
591
+ 14
592
+ 1
593
+ 45
594
+ 2
595
+ 62
596
+ 43
597
+ 28
598
+ 45
599
+ 10
600
+ 63
601
+ 20
602
+ 1
603
+ 49
604
+ 15
605
+ 1
606
+ 47
607
+ 49
608
+ 64
609
+ 3
610
+ 11
611
+ I
612
+ f
613
+ I
614
+ 5
615
+ I
616
+ 0
617
+ I
618
+ 0
619
+ I
620
+ -2
621
+ p
622
+ 65
623
+ x
624
+ 20
625
+ copy_default_options
626
+ x
627
+ 13
628
+ setup_options
629
+ x
630
+ 6
631
+ Trepan
632
+ n
633
+ x
634
+ 4
635
+ ARGV
636
+ n
637
+ x
638
+ 5
639
+ clone
640
+ x
641
+ 9
642
+ const_set
643
+ n
644
+ x
645
+ 6
646
+ parse!
647
+ x
648
+ 4
649
+ File
650
+ n
651
+ x
652
+ 7
653
+ Globals
654
+ x
655
+ 2
656
+ $0
657
+ x
658
+ 2
659
+ []
660
+ x
661
+ 11
662
+ expand_path
663
+ x
664
+ 13
665
+ RUBY_PLATFORM
666
+ n
667
+ n
668
+ x
669
+ 6
670
+ Regexp
671
+ s
672
+ 5
673
+ mswin
674
+ x
675
+ 3
676
+ new
677
+ x
678
+ 2
679
+ =~
680
+ n
681
+ s
682
+ 6
683
+ \.cmd$
684
+ s
685
+ 4
686
+ .cmd
687
+ x
688
+ 1
689
+ +
690
+ n
691
+ x
692
+ 9
693
+ RUBY_PATH
694
+ x
695
+ 9
696
+ ruby_path
697
+ n
698
+ x
699
+ 11
700
+ TREPAN_PATH
701
+ n
702
+ x
703
+ 11
704
+ RBDBGR_FILE
705
+ x
706
+ 11
707
+ active_path
708
+ n
709
+ x
710
+ 6
711
+ empty?
712
+ x
713
+ 7
714
+ version
715
+ x
716
+ 4
717
+ help
718
+ x
719
+ 4
720
+ exit
721
+ x
722
+ 6
723
+ STDERR
724
+ n
725
+ s
726
+ 56
727
+ Sorry - for now you must specify a Ruby script to debug.
728
+ x
729
+ 4
730
+ puts
731
+ n
732
+ x
733
+ 5
734
+ shift
735
+ n
736
+ x
737
+ 6
738
+ exist?
739
+ x
740
+ 11
741
+ whence_file
742
+ n
743
+ x
744
+ 11
745
+ PROG_SCRIPT
746
+ x
747
+ 7
748
+ $trepan
749
+ n
750
+ x
751
+ 8
752
+ allocate
753
+ x
754
+ 4
755
+ Hash
756
+ x
757
+ 16
758
+ new_from_literal
759
+ x
760
+ 8
761
+ cmdfiles
762
+ x
763
+ 3
764
+ []=
765
+ x
766
+ 11
767
+ initial_dir
768
+ x
769
+ 5
770
+ chdir
771
+ x
772
+ 2
773
+ nx
774
+ x
775
+ 10
776
+ initialize
777
+ n
778
+ n
779
+ x
780
+ 13
781
+ debug_program
782
+ p
783
+ 69
784
+ I
785
+ 0
786
+ I
787
+ 13
788
+ I
789
+ 0
790
+ I
791
+ 14
792
+ I
793
+ 6
794
+ I
795
+ 19
796
+ I
797
+ c
798
+ I
799
+ 1a
800
+ I
801
+ 16
802
+ I
803
+ 1b
804
+ I
805
+ 25
806
+ I
807
+ 1c
808
+ I
809
+ 30
810
+ I
811
+ 1e
812
+ I
813
+ 41
814
+ I
815
+ 1f
816
+ I
817
+ 5b
818
+ I
819
+ 20
820
+ I
821
+ 82
822
+ I
823
+ 1f
824
+ I
825
+ 84
826
+ I
827
+ 25
828
+ I
829
+ 90
830
+ I
831
+ 26
832
+ I
833
+ 9b
834
+ I
835
+ 27
836
+ I
837
+ a8
838
+ I
839
+ 29
840
+ I
841
+ b0
842
+ I
843
+ 2a
844
+ I
845
+ c4
846
+ I
847
+ 2b
848
+ I
849
+ cd
850
+ I
851
+ 2d
852
+ I
853
+ d7
854
+ I
855
+ 2e
856
+ I
857
+ df
858
+ I
859
+ 29
860
+ I
861
+ e1
862
+ I
863
+ 32
864
+ I
865
+ ea
866
+ I
867
+ 34
868
+ I
869
+ f7
870
+ I
871
+ 33
872
+ I
873
+ 101
874
+ I
875
+ 35
876
+ I
877
+ 10c
878
+ I
879
+ 38
880
+ I
881
+ 11f
882
+ I
883
+ 3a
884
+ I
885
+ 128
886
+ I
887
+ 38
888
+ I
889
+ 136
890
+ I
891
+ 39
892
+ I
893
+ 144
894
+ I
895
+ 3a
896
+ I
897
+ 161
898
+ I
899
+ 38
900
+ I
901
+ 16f
902
+ I
903
+ 39
904
+ I
905
+ 17d
906
+ I
907
+ 3a
908
+ I
909
+ 191
910
+ I
911
+ 3c
912
+ I
913
+ 19f
914
+ I
915
+ 3d
916
+ I
917
+ 1a7
918
+ I
919
+ 3c
920
+ I
921
+ 1ac
922
+ x
923
+ 51
924
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/bin/trepanx
925
+ p
926
+ 5
927
+ x
928
+ 11
929
+ trepan_path
930
+ x
931
+ 16
932
+ program_to_debug
933
+ x
934
+ 7
935
+ options
936
+ x
937
+ 4
938
+ opts
939
+ x
940
+ 4
941
+ rest
942
+ x
943
+ 5
944
+ times
945
+ p
946
+ 17
947
+ I
948
+ 0
949
+ I
950
+ 4
951
+ I
952
+ 12
953
+ I
954
+ 5
955
+ I
956
+ 1b
957
+ I
958
+ 6
959
+ I
960
+ 24
961
+ I
962
+ 7
963
+ I
964
+ 2d
965
+ I
966
+ a
967
+ I
968
+ 49
969
+ I
970
+ b
971
+ I
972
+ 52
973
+ I
974
+ 13
975
+ I
976
+ 5a
977
+ I
978
+ a
979
+ I
980
+ 5e
981
+ x
982
+ 51
983
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/bin/trepanx
984
+ p
985
+ 0