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