rbx-trepanning 0.0.2-universal-rubinius-1.2

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