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
@@ -0,0 +1,3564 @@
1
+ !RBIX
2
+ 0
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 132
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
+ 128
55
+ 45
56
+ 10
57
+ 11
58
+ 43
59
+ 12
60
+ 49
61
+ 13
62
+ 0
63
+ 19
64
+ 0
65
+ 15
66
+ 45
67
+ 0
68
+ 14
69
+ 43
70
+ 15
71
+ 13
72
+ 71
73
+ 16
74
+ 47
75
+ 9
76
+ 84
77
+ 47
78
+ 49
79
+ 17
80
+ 0
81
+ 13
82
+ 7
83
+ 18
84
+ 64
85
+ 20
86
+ 0
87
+ 79
88
+ 80
89
+ 78
90
+ 47
91
+ 49
92
+ 19
93
+ 5
94
+ 15
95
+ 8
96
+ 95
97
+ 7
98
+ 18
99
+ 64
100
+ 20
101
+ 0
102
+ 79
103
+ 80
104
+ 78
105
+ 49
106
+ 16
107
+ 5
108
+ 19
109
+ 1
110
+ 15
111
+ 7
112
+ 20
113
+ 64
114
+ 7
115
+ 21
116
+ 64
117
+ 7
118
+ 22
119
+ 64
120
+ 7
121
+ 23
122
+ 64
123
+ 7
124
+ 24
125
+ 64
126
+ 7
127
+ 25
128
+ 64
129
+ 7
130
+ 26
131
+ 64
132
+ 35
133
+ 7
134
+ 56
135
+ 27
136
+ 50
137
+ 28
138
+ 0
139
+ 8
140
+ 129
141
+ 1
142
+ 15
143
+ 2
144
+ 11
145
+ I
146
+ 9
147
+ I
148
+ 2
149
+ I
150
+ 0
151
+ I
152
+ 0
153
+ n
154
+ p
155
+ 29
156
+ x
157
+ 10
158
+ Trepanning
159
+ x
160
+ 11
161
+ open_module
162
+ x
163
+ 15
164
+ __module_init__
165
+ M
166
+ 1
167
+ n
168
+ n
169
+ x
170
+ 10
171
+ Trepanning
172
+ i
173
+ 56
174
+ 5
175
+ 66
176
+ 99
177
+ 7
178
+ 0
179
+ 1
180
+ 65
181
+ 49
182
+ 1
183
+ 3
184
+ 13
185
+ 99
186
+ 12
187
+ 7
188
+ 2
189
+ 12
190
+ 7
191
+ 3
192
+ 12
193
+ 65
194
+ 12
195
+ 49
196
+ 4
197
+ 4
198
+ 15
199
+ 49
200
+ 2
201
+ 0
202
+ 15
203
+ 99
204
+ 7
205
+ 5
206
+ 1
207
+ 65
208
+ 49
209
+ 1
210
+ 3
211
+ 13
212
+ 99
213
+ 12
214
+ 7
215
+ 2
216
+ 12
217
+ 7
218
+ 6
219
+ 12
220
+ 65
221
+ 12
222
+ 49
223
+ 4
224
+ 4
225
+ 15
226
+ 49
227
+ 2
228
+ 0
229
+ 11
230
+ I
231
+ 6
232
+ I
233
+ 0
234
+ I
235
+ 0
236
+ I
237
+ 0
238
+ n
239
+ p
240
+ 7
241
+ x
242
+ 10
243
+ Breakpoint
244
+ x
245
+ 10
246
+ open_class
247
+ x
248
+ 14
249
+ __class_init__
250
+ M
251
+ 1
252
+ n
253
+ n
254
+ x
255
+ 10
256
+ Breakpoint
257
+ i
258
+ 397
259
+ 5
260
+ 66
261
+ 5
262
+ 7
263
+ 0
264
+ 47
265
+ 49
266
+ 1
267
+ 1
268
+ 15
269
+ 5
270
+ 7
271
+ 2
272
+ 47
273
+ 49
274
+ 3
275
+ 1
276
+ 15
277
+ 5
278
+ 7
279
+ 4
280
+ 47
281
+ 49
282
+ 1
283
+ 1
284
+ 15
285
+ 5
286
+ 7
287
+ 5
288
+ 47
289
+ 49
290
+ 3
291
+ 1
292
+ 15
293
+ 5
294
+ 7
295
+ 6
296
+ 79
297
+ 49
298
+ 7
299
+ 2
300
+ 15
301
+ 26
302
+ 93
303
+ 0
304
+ 15
305
+ 29
306
+ 57
307
+ 0
308
+ 7
309
+ 8
310
+ 98
311
+ 9
312
+ 1
313
+ 30
314
+ 8
315
+ 63
316
+ 25
317
+ 92
318
+ 0
319
+ 27
320
+ 8
321
+ 68
322
+ 15
323
+ 7
324
+ 10
325
+ 8
326
+ 69
327
+ 1
328
+ 9
329
+ 74
330
+ 1
331
+ 8
332
+ 125
333
+ 65
334
+ 7
335
+ 8
336
+ 44
337
+ 43
338
+ 11
339
+ 4
340
+ 4
341
+ 49
342
+ 12
343
+ 1
344
+ 13
345
+ 7
346
+ 0
347
+ 7
348
+ 13
349
+ 64
350
+ 49
351
+ 14
352
+ 2
353
+ 15
354
+ 13
355
+ 7
356
+ 15
357
+ 7
358
+ 13
359
+ 64
360
+ 49
361
+ 14
362
+ 2
363
+ 15
364
+ 13
365
+ 7
366
+ 16
367
+ 3
368
+ 49
369
+ 14
370
+ 2
371
+ 15
372
+ 13
373
+ 7
374
+ 2
375
+ 7
376
+ 17
377
+ 49
378
+ 14
379
+ 2
380
+ 15
381
+ 49
382
+ 18
383
+ 2
384
+ 15
385
+ 99
386
+ 7
387
+ 19
388
+ 7
389
+ 20
390
+ 65
391
+ 5
392
+ 49
393
+ 21
394
+ 4
395
+ 15
396
+ 99
397
+ 7
398
+ 22
399
+ 7
400
+ 23
401
+ 65
402
+ 67
403
+ 49
404
+ 24
405
+ 0
406
+ 49
407
+ 25
408
+ 4
409
+ 15
410
+ 5
411
+ 7
412
+ 26
413
+ 7
414
+ 27
415
+ 7
416
+ 28
417
+ 7
418
+ 29
419
+ 47
420
+ 49
421
+ 3
422
+ 4
423
+ 15
424
+ 5
425
+ 7
426
+ 30
427
+ 47
428
+ 49
429
+ 1
430
+ 1
431
+ 15
432
+ 99
433
+ 7
434
+ 31
435
+ 7
436
+ 32
437
+ 65
438
+ 67
439
+ 49
440
+ 24
441
+ 0
442
+ 49
443
+ 25
444
+ 4
445
+ 15
446
+ 99
447
+ 7
448
+ 33
449
+ 7
450
+ 34
451
+ 65
452
+ 67
453
+ 49
454
+ 24
455
+ 0
456
+ 49
457
+ 25
458
+ 4
459
+ 15
460
+ 99
461
+ 7
462
+ 35
463
+ 7
464
+ 36
465
+ 65
466
+ 67
467
+ 49
468
+ 24
469
+ 0
470
+ 49
471
+ 25
472
+ 4
473
+ 15
474
+ 99
475
+ 7
476
+ 37
477
+ 7
478
+ 38
479
+ 65
480
+ 67
481
+ 49
482
+ 24
483
+ 0
484
+ 49
485
+ 25
486
+ 4
487
+ 15
488
+ 99
489
+ 7
490
+ 39
491
+ 7
492
+ 40
493
+ 65
494
+ 67
495
+ 49
496
+ 24
497
+ 0
498
+ 49
499
+ 25
500
+ 4
501
+ 15
502
+ 99
503
+ 7
504
+ 41
505
+ 7
506
+ 42
507
+ 65
508
+ 67
509
+ 49
510
+ 24
511
+ 0
512
+ 49
513
+ 25
514
+ 4
515
+ 15
516
+ 99
517
+ 7
518
+ 43
519
+ 7
520
+ 44
521
+ 65
522
+ 67
523
+ 49
524
+ 24
525
+ 0
526
+ 49
527
+ 25
528
+ 4
529
+ 15
530
+ 99
531
+ 7
532
+ 45
533
+ 7
534
+ 46
535
+ 65
536
+ 67
537
+ 49
538
+ 24
539
+ 0
540
+ 49
541
+ 25
542
+ 4
543
+ 15
544
+ 99
545
+ 7
546
+ 47
547
+ 7
548
+ 48
549
+ 65
550
+ 67
551
+ 49
552
+ 24
553
+ 0
554
+ 49
555
+ 25
556
+ 4
557
+ 15
558
+ 99
559
+ 7
560
+ 15
561
+ 7
562
+ 49
563
+ 65
564
+ 67
565
+ 49
566
+ 24
567
+ 0
568
+ 49
569
+ 25
570
+ 4
571
+ 15
572
+ 99
573
+ 7
574
+ 50
575
+ 7
576
+ 51
577
+ 65
578
+ 67
579
+ 49
580
+ 24
581
+ 0
582
+ 49
583
+ 25
584
+ 4
585
+ 15
586
+ 99
587
+ 7
588
+ 52
589
+ 7
590
+ 53
591
+ 65
592
+ 67
593
+ 49
594
+ 24
595
+ 0
596
+ 49
597
+ 25
598
+ 4
599
+ 15
600
+ 99
601
+ 7
602
+ 54
603
+ 7
604
+ 55
605
+ 65
606
+ 67
607
+ 49
608
+ 24
609
+ 0
610
+ 49
611
+ 25
612
+ 4
613
+ 15
614
+ 99
615
+ 7
616
+ 56
617
+ 7
618
+ 57
619
+ 65
620
+ 67
621
+ 49
622
+ 24
623
+ 0
624
+ 49
625
+ 25
626
+ 4
627
+ 15
628
+ 99
629
+ 7
630
+ 58
631
+ 7
632
+ 59
633
+ 65
634
+ 67
635
+ 49
636
+ 24
637
+ 0
638
+ 49
639
+ 25
640
+ 4
641
+ 15
642
+ 99
643
+ 7
644
+ 60
645
+ 7
646
+ 61
647
+ 65
648
+ 67
649
+ 49
650
+ 24
651
+ 0
652
+ 49
653
+ 25
654
+ 4
655
+ 11
656
+ I
657
+ 7
658
+ I
659
+ 0
660
+ I
661
+ 0
662
+ I
663
+ 0
664
+ n
665
+ p
666
+ 62
667
+ x
668
+ 9
669
+ condition
670
+ x
671
+ 13
672
+ attr_accessor
673
+ x
674
+ 5
675
+ event
676
+ x
677
+ 11
678
+ attr_reader
679
+ x
680
+ 4
681
+ hits
682
+ x
683
+ 2
684
+ id
685
+ x
686
+ 9
687
+ @@next_id
688
+ x
689
+ 18
690
+ class_variable_set
691
+ x
692
+ 22
693
+ BRKPT_DEFAULT_SETTINGS
694
+ x
695
+ 16
696
+ vm_const_defined
697
+ s
698
+ 8
699
+ constant
700
+ x
701
+ 4
702
+ Hash
703
+ x
704
+ 16
705
+ new_from_literal
706
+ s
707
+ 4
708
+ true
709
+ x
710
+ 3
711
+ []=
712
+ x
713
+ 7
714
+ enabled
715
+ x
716
+ 4
717
+ temp
718
+ x
719
+ 7
720
+ Unknown
721
+ x
722
+ 9
723
+ const_set
724
+ x
725
+ 6
726
+ for_ip
727
+ M
728
+ 1
729
+ n
730
+ n
731
+ x
732
+ 6
733
+ for_ip
734
+ i
735
+ 87
736
+ 23
737
+ 2
738
+ 10
739
+ 14
740
+ 44
741
+ 43
742
+ 0
743
+ 78
744
+ 49
745
+ 1
746
+ 1
747
+ 19
748
+ 2
749
+ 15
750
+ 20
751
+ 2
752
+ 7
753
+ 2
754
+ 49
755
+ 3
756
+ 1
757
+ 13
758
+ 10
759
+ 27
760
+ 15
761
+ 7
762
+ 4
763
+ 19
764
+ 3
765
+ 15
766
+ 20
767
+ 0
768
+ 20
769
+ 1
770
+ 49
771
+ 5
772
+ 1
773
+ 19
774
+ 4
775
+ 15
776
+ 45
777
+ 6
778
+ 7
779
+ 13
780
+ 71
781
+ 8
782
+ 47
783
+ 9
784
+ 72
785
+ 47
786
+ 49
787
+ 9
788
+ 0
789
+ 13
790
+ 20
791
+ 3
792
+ 20
793
+ 0
794
+ 20
795
+ 1
796
+ 20
797
+ 4
798
+ 1
799
+ 20
800
+ 2
801
+ 47
802
+ 49
803
+ 10
804
+ 6
805
+ 15
806
+ 8
807
+ 86
808
+ 20
809
+ 3
810
+ 20
811
+ 0
812
+ 20
813
+ 1
814
+ 20
815
+ 4
816
+ 1
817
+ 20
818
+ 2
819
+ 49
820
+ 8
821
+ 6
822
+ 11
823
+ I
824
+ d
825
+ I
826
+ 5
827
+ I
828
+ 2
829
+ I
830
+ 3
831
+ n
832
+ p
833
+ 11
834
+ x
835
+ 4
836
+ Hash
837
+ x
838
+ 16
839
+ new_from_literal
840
+ x
841
+ 4
842
+ name
843
+ x
844
+ 2
845
+ []
846
+ x
847
+ 4
848
+ anon
849
+ x
850
+ 12
851
+ line_from_ip
852
+ x
853
+ 10
854
+ Breakpoint
855
+ n
856
+ x
857
+ 3
858
+ new
859
+ x
860
+ 8
861
+ allocate
862
+ x
863
+ 10
864
+ initialize
865
+ p
866
+ 9
867
+ I
868
+ 0
869
+ I
870
+ 17
871
+ I
872
+ e
873
+ I
874
+ 18
875
+ I
876
+ 1e
877
+ I
878
+ 19
879
+ I
880
+ 28
881
+ I
882
+ 1b
883
+ I
884
+ 57
885
+ x
886
+ 57
887
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
888
+ p
889
+ 5
890
+ x
891
+ 4
892
+ exec
893
+ x
894
+ 2
895
+ ip
896
+ x
897
+ 4
898
+ opts
899
+ x
900
+ 4
901
+ name
902
+ x
903
+ 4
904
+ line
905
+ x
906
+ 13
907
+ attach_method
908
+ x
909
+ 10
910
+ initialize
911
+ M
912
+ 1
913
+ n
914
+ n
915
+ x
916
+ 10
917
+ initialize
918
+ i
919
+ 86
920
+ 23
921
+ 4
922
+ 10
923
+ 8
924
+ 1
925
+ 19
926
+ 4
927
+ 15
928
+ 23
929
+ 5
930
+ 10
931
+ 22
932
+ 44
933
+ 43
934
+ 0
935
+ 78
936
+ 49
937
+ 1
938
+ 1
939
+ 19
940
+ 5
941
+ 15
942
+ 20
943
+ 0
944
+ 38
945
+ 2
946
+ 15
947
+ 20
948
+ 4
949
+ 38
950
+ 3
951
+ 15
952
+ 20
953
+ 1
954
+ 38
955
+ 4
956
+ 15
957
+ 20
958
+ 2
959
+ 38
960
+ 5
961
+ 15
962
+ 20
963
+ 3
964
+ 38
965
+ 6
966
+ 15
967
+ 1
968
+ 38
969
+ 7
970
+ 15
971
+ 35
972
+ 0
973
+ 38
974
+ 8
975
+ 15
976
+ 45
977
+ 9
978
+ 10
979
+ 20
980
+ 5
981
+ 49
982
+ 11
983
+ 1
984
+ 19
985
+ 5
986
+ 15
987
+ 20
988
+ 5
989
+ 49
990
+ 12
991
+ 0
992
+ 56
993
+ 13
994
+ 50
995
+ 14
996
+ 0
997
+ 15
998
+ 78
999
+ 38
1000
+ 15
1001
+ 15
1002
+ 3
1003
+ 38
1004
+ 16
1005
+ 11
1006
+ I
1007
+ 8
1008
+ I
1009
+ 6
1010
+ I
1011
+ 4
1012
+ I
1013
+ 6
1014
+ n
1015
+ p
1016
+ 17
1017
+ x
1018
+ 4
1019
+ Hash
1020
+ x
1021
+ 16
1022
+ new_from_literal
1023
+ x
1024
+ 11
1025
+ @descriptor
1026
+ x
1027
+ 3
1028
+ @id
1029
+ x
1030
+ 7
1031
+ @method
1032
+ x
1033
+ 3
1034
+ @ip
1035
+ x
1036
+ 5
1037
+ @line
1038
+ x
1039
+ 6
1040
+ @scope
1041
+ x
1042
+ 11
1043
+ @related_bp
1044
+ x
1045
+ 22
1046
+ BRKPT_DEFAULT_SETTINGS
1047
+ n
1048
+ x
1049
+ 5
1050
+ merge
1051
+ x
1052
+ 4
1053
+ keys
1054
+ M
1055
+ 1
1056
+ p
1057
+ 2
1058
+ x
1059
+ 9
1060
+ for_block
1061
+ t
1062
+ n
1063
+ x
1064
+ 10
1065
+ initialize
1066
+ i
1067
+ 27
1068
+ 57
1069
+ 19
1070
+ 0
1071
+ 15
1072
+ 5
1073
+ 7
1074
+ 0
1075
+ 64
1076
+ 20
1077
+ 0
1078
+ 49
1079
+ 1
1080
+ 0
1081
+ 81
1082
+ 2
1083
+ 21
1084
+ 1
1085
+ 5
1086
+ 20
1087
+ 0
1088
+ 49
1089
+ 3
1090
+ 1
1091
+ 49
1092
+ 4
1093
+ 2
1094
+ 11
1095
+ I
1096
+ 6
1097
+ I
1098
+ 1
1099
+ I
1100
+ 1
1101
+ I
1102
+ 1
1103
+ n
1104
+ p
1105
+ 5
1106
+ s
1107
+ 1
1108
+ @
1109
+ x
1110
+ 4
1111
+ to_s
1112
+ x
1113
+ 1
1114
+ +
1115
+ x
1116
+ 2
1117
+ []
1118
+ x
1119
+ 21
1120
+ instance_variable_set
1121
+ p
1122
+ 5
1123
+ I
1124
+ 0
1125
+ I
1126
+ 2c
1127
+ I
1128
+ 4
1129
+ I
1130
+ 2d
1131
+ I
1132
+ 1b
1133
+ x
1134
+ 57
1135
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
1136
+ p
1137
+ 1
1138
+ x
1139
+ 3
1140
+ key
1141
+ x
1142
+ 4
1143
+ each
1144
+ x
1145
+ 5
1146
+ @hits
1147
+ x
1148
+ 4
1149
+ @set
1150
+ p
1151
+ 25
1152
+ I
1153
+ 0
1154
+ I
1155
+ 1e
1156
+ I
1157
+ 16
1158
+ I
1159
+ 1f
1160
+ I
1161
+ 1b
1162
+ I
1163
+ 20
1164
+ I
1165
+ 20
1166
+ I
1167
+ 21
1168
+ I
1169
+ 25
1170
+ I
1171
+ 22
1172
+ I
1173
+ 2a
1174
+ I
1175
+ 23
1176
+ I
1177
+ 2f
1178
+ I
1179
+ 27
1180
+ I
1181
+ 33
1182
+ I
1183
+ 29
1184
+ I
1185
+ 38
1186
+ I
1187
+ 2b
1188
+ I
1189
+ 43
1190
+ I
1191
+ 2c
1192
+ I
1193
+ 4e
1194
+ I
1195
+ 30
1196
+ I
1197
+ 52
1198
+ I
1199
+ 36
1200
+ I
1201
+ 56
1202
+ x
1203
+ 57
1204
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
1205
+ p
1206
+ 6
1207
+ x
1208
+ 4
1209
+ name
1210
+ x
1211
+ 6
1212
+ method
1213
+ x
1214
+ 2
1215
+ ip
1216
+ x
1217
+ 4
1218
+ line
1219
+ x
1220
+ 2
1221
+ id
1222
+ x
1223
+ 4
1224
+ opts
1225
+ x
1226
+ 17
1227
+ method_visibility
1228
+ x
1229
+ 15
1230
+ add_defn_method
1231
+ x
1232
+ 6
1233
+ method
1234
+ x
1235
+ 2
1236
+ ip
1237
+ x
1238
+ 4
1239
+ line
1240
+ x
1241
+ 10
1242
+ descriptor
1243
+ x
1244
+ 10
1245
+ related_bp
1246
+ x
1247
+ 7
1248
+ scoped!
1249
+ M
1250
+ 1
1251
+ n
1252
+ n
1253
+ x
1254
+ 7
1255
+ scoped!
1256
+ i
1257
+ 18
1258
+ 23
1259
+ 1
1260
+ 10
1261
+ 8
1262
+ 2
1263
+ 19
1264
+ 1
1265
+ 15
1266
+ 20
1267
+ 1
1268
+ 38
1269
+ 0
1270
+ 15
1271
+ 20
1272
+ 0
1273
+ 38
1274
+ 1
1275
+ 11
1276
+ I
1277
+ 3
1278
+ I
1279
+ 2
1280
+ I
1281
+ 1
1282
+ I
1283
+ 2
1284
+ n
1285
+ p
1286
+ 2
1287
+ x
1288
+ 5
1289
+ @temp
1290
+ x
1291
+ 6
1292
+ @scope
1293
+ p
1294
+ 7
1295
+ I
1296
+ 0
1297
+ I
1298
+ 3c
1299
+ I
1300
+ 8
1301
+ I
1302
+ 3d
1303
+ I
1304
+ d
1305
+ I
1306
+ 3e
1307
+ I
1308
+ 12
1309
+ x
1310
+ 57
1311
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
1312
+ p
1313
+ 2
1314
+ x
1315
+ 5
1316
+ scope
1317
+ x
1318
+ 4
1319
+ temp
1320
+ x
1321
+ 9
1322
+ set_temp!
1323
+ M
1324
+ 1
1325
+ n
1326
+ n
1327
+ x
1328
+ 9
1329
+ set_temp!
1330
+ i
1331
+ 4
1332
+ 2
1333
+ 38
1334
+ 0
1335
+ 11
1336
+ I
1337
+ 1
1338
+ I
1339
+ 0
1340
+ I
1341
+ 0
1342
+ I
1343
+ 0
1344
+ n
1345
+ p
1346
+ 1
1347
+ x
1348
+ 5
1349
+ @temp
1350
+ p
1351
+ 5
1352
+ I
1353
+ 0
1354
+ I
1355
+ 41
1356
+ I
1357
+ 0
1358
+ I
1359
+ 42
1360
+ I
1361
+ 4
1362
+ x
1363
+ 57
1364
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
1365
+ p
1366
+ 0
1367
+ x
1368
+ 7
1369
+ scoped?
1370
+ M
1371
+ 1
1372
+ n
1373
+ n
1374
+ x
1375
+ 7
1376
+ scoped?
1377
+ i
1378
+ 15
1379
+ 39
1380
+ 0
1381
+ 10
1382
+ 7
1383
+ 2
1384
+ 8
1385
+ 8
1386
+ 3
1387
+ 10
1388
+ 13
1389
+ 2
1390
+ 8
1391
+ 14
1392
+ 3
1393
+ 11
1394
+ I
1395
+ 1
1396
+ I
1397
+ 0
1398
+ I
1399
+ 0
1400
+ I
1401
+ 0
1402
+ n
1403
+ p
1404
+ 1
1405
+ x
1406
+ 6
1407
+ @scope
1408
+ p
1409
+ 5
1410
+ I
1411
+ 0
1412
+ I
1413
+ 45
1414
+ I
1415
+ 0
1416
+ I
1417
+ 46
1418
+ I
1419
+ f
1420
+ x
1421
+ 57
1422
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
1423
+ p
1424
+ 0
1425
+ x
1426
+ 12
1427
+ related_with
1428
+ M
1429
+ 1
1430
+ n
1431
+ n
1432
+ x
1433
+ 12
1434
+ related_with
1435
+ i
1436
+ 36
1437
+ 39
1438
+ 0
1439
+ 20
1440
+ 0
1441
+ 35
1442
+ 1
1443
+ 20
1444
+ 0
1445
+ 49
1446
+ 1
1447
+ 0
1448
+ 81
1449
+ 2
1450
+ 81
1451
+ 2
1452
+ 38
1453
+ 0
1454
+ 15
1455
+ 39
1456
+ 0
1457
+ 49
1458
+ 3
1459
+ 0
1460
+ 15
1461
+ 20
1462
+ 0
1463
+ 39
1464
+ 0
1465
+ 13
1466
+ 18
1467
+ 2
1468
+ 49
1469
+ 4
1470
+ 1
1471
+ 15
1472
+ 11
1473
+ I
1474
+ 4
1475
+ I
1476
+ 1
1477
+ I
1478
+ 1
1479
+ I
1480
+ 1
1481
+ n
1482
+ p
1483
+ 5
1484
+ x
1485
+ 11
1486
+ @related_bp
1487
+ x
1488
+ 10
1489
+ related_bp
1490
+ x
1491
+ 1
1492
+ +
1493
+ x
1494
+ 5
1495
+ uniq!
1496
+ x
1497
+ 11
1498
+ related_bp=
1499
+ p
1500
+ 9
1501
+ I
1502
+ 0
1503
+ I
1504
+ 49
1505
+ I
1506
+ 0
1507
+ I
1508
+ 4a
1509
+ I
1510
+ 12
1511
+ I
1512
+ 4b
1513
+ I
1514
+ 18
1515
+ I
1516
+ 4d
1517
+ I
1518
+ 24
1519
+ x
1520
+ 57
1521
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
1522
+ p
1523
+ 1
1524
+ x
1525
+ 2
1526
+ bp
1527
+ x
1528
+ 8
1529
+ activate
1530
+ M
1531
+ 1
1532
+ n
1533
+ n
1534
+ x
1535
+ 8
1536
+ activate
1537
+ i
1538
+ 13
1539
+ 2
1540
+ 38
1541
+ 0
1542
+ 15
1543
+ 39
1544
+ 1
1545
+ 39
1546
+ 2
1547
+ 5
1548
+ 49
1549
+ 3
1550
+ 2
1551
+ 11
1552
+ I
1553
+ 3
1554
+ I
1555
+ 0
1556
+ I
1557
+ 0
1558
+ I
1559
+ 0
1560
+ n
1561
+ p
1562
+ 4
1563
+ x
1564
+ 4
1565
+ @set
1566
+ x
1567
+ 7
1568
+ @method
1569
+ x
1570
+ 3
1571
+ @ip
1572
+ x
1573
+ 14
1574
+ set_breakpoint
1575
+ p
1576
+ 7
1577
+ I
1578
+ 0
1579
+ I
1580
+ 50
1581
+ I
1582
+ 0
1583
+ I
1584
+ 51
1585
+ I
1586
+ 4
1587
+ I
1588
+ 52
1589
+ I
1590
+ d
1591
+ x
1592
+ 57
1593
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
1594
+ p
1595
+ 0
1596
+ x
1597
+ 4
1598
+ hit!
1599
+ M
1600
+ 1
1601
+ n
1602
+ n
1603
+ x
1604
+ 4
1605
+ hit!
1606
+ i
1607
+ 53
1608
+ 39
1609
+ 0
1610
+ 9
1611
+ 7
1612
+ 1
1613
+ 8
1614
+ 9
1615
+ 2
1616
+ 11
1617
+ 15
1618
+ 39
1619
+ 1
1620
+ 13
1621
+ 9
1622
+ 28
1623
+ 15
1624
+ 20
1625
+ 0
1626
+ 39
1627
+ 1
1628
+ 83
1629
+ 2
1630
+ 10
1631
+ 27
1632
+ 2
1633
+ 8
1634
+ 28
1635
+ 3
1636
+ 9
1637
+ 34
1638
+ 3
1639
+ 11
1640
+ 8
1641
+ 35
1642
+ 1
1643
+ 15
1644
+ 39
1645
+ 3
1646
+ 56
1647
+ 4
1648
+ 50
1649
+ 5
1650
+ 0
1651
+ 15
1652
+ 5
1653
+ 47
1654
+ 49
1655
+ 6
1656
+ 0
1657
+ 15
1658
+ 2
1659
+ 11
1660
+ 11
1661
+ I
1662
+ 3
1663
+ I
1664
+ 1
1665
+ I
1666
+ 1
1667
+ I
1668
+ 1
1669
+ n
1670
+ p
1671
+ 7
1672
+ x
1673
+ 5
1674
+ @temp
1675
+ x
1676
+ 6
1677
+ @scope
1678
+ x
1679
+ 2
1680
+ ==
1681
+ x
1682
+ 11
1683
+ @related_bp
1684
+ M
1685
+ 1
1686
+ p
1687
+ 2
1688
+ x
1689
+ 9
1690
+ for_block
1691
+ t
1692
+ n
1693
+ x
1694
+ 4
1695
+ hit!
1696
+ i
1697
+ 10
1698
+ 57
1699
+ 19
1700
+ 0
1701
+ 15
1702
+ 20
1703
+ 0
1704
+ 49
1705
+ 0
1706
+ 0
1707
+ 11
1708
+ I
1709
+ 3
1710
+ I
1711
+ 1
1712
+ I
1713
+ 1
1714
+ I
1715
+ 1
1716
+ n
1717
+ p
1718
+ 1
1719
+ x
1720
+ 7
1721
+ remove!
1722
+ p
1723
+ 3
1724
+ I
1725
+ 0
1726
+ I
1727
+ 5d
1728
+ I
1729
+ a
1730
+ x
1731
+ 57
1732
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
1733
+ p
1734
+ 1
1735
+ x
1736
+ 2
1737
+ bp
1738
+ x
1739
+ 4
1740
+ each
1741
+ x
1742
+ 7
1743
+ remove!
1744
+ p
1745
+ 13
1746
+ I
1747
+ 0
1748
+ I
1749
+ 59
1750
+ I
1751
+ 0
1752
+ I
1753
+ 5a
1754
+ I
1755
+ a
1756
+ I
1757
+ 5b
1758
+ I
1759
+ 24
1760
+ I
1761
+ 5d
1762
+ I
1763
+ 2c
1764
+ I
1765
+ 5e
1766
+ I
1767
+ 32
1768
+ I
1769
+ 5f
1770
+ I
1771
+ 35
1772
+ x
1773
+ 57
1774
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
1775
+ p
1776
+ 1
1777
+ x
1778
+ 10
1779
+ test_scope
1780
+ x
1781
+ 7
1782
+ delete!
1783
+ M
1784
+ 1
1785
+ n
1786
+ n
1787
+ x
1788
+ 7
1789
+ delete!
1790
+ i
1791
+ 6
1792
+ 5
1793
+ 47
1794
+ 49
1795
+ 0
1796
+ 0
1797
+ 11
1798
+ I
1799
+ 1
1800
+ I
1801
+ 0
1802
+ I
1803
+ 0
1804
+ I
1805
+ 0
1806
+ n
1807
+ p
1808
+ 1
1809
+ x
1810
+ 7
1811
+ remove!
1812
+ p
1813
+ 5
1814
+ I
1815
+ 0
1816
+ I
1817
+ 70
1818
+ I
1819
+ 0
1820
+ I
1821
+ 71
1822
+ I
1823
+ 6
1824
+ x
1825
+ 57
1826
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
1827
+ p
1828
+ 0
1829
+ x
1830
+ 8
1831
+ describe
1832
+ M
1833
+ 1
1834
+ n
1835
+ n
1836
+ x
1837
+ 8
1838
+ describe
1839
+ i
1840
+ 19
1841
+ 5
1842
+ 48
1843
+ 0
1844
+ 47
1845
+ 49
1846
+ 1
1847
+ 0
1848
+ 7
1849
+ 2
1850
+ 5
1851
+ 48
1852
+ 3
1853
+ 47
1854
+ 49
1855
+ 1
1856
+ 0
1857
+ 63
1858
+ 3
1859
+ 11
1860
+ I
1861
+ 3
1862
+ I
1863
+ 0
1864
+ I
1865
+ 0
1866
+ I
1867
+ 0
1868
+ n
1869
+ p
1870
+ 4
1871
+ x
1872
+ 10
1873
+ descriptor
1874
+ x
1875
+ 4
1876
+ to_s
1877
+ s
1878
+ 3
1879
+ -
1880
+ x
1881
+ 8
1882
+ location
1883
+ p
1884
+ 5
1885
+ I
1886
+ 0
1887
+ I
1888
+ 74
1889
+ I
1890
+ 0
1891
+ I
1892
+ 75
1893
+ I
1894
+ 13
1895
+ x
1896
+ 57
1897
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
1898
+ p
1899
+ 0
1900
+ x
1901
+ 7
1902
+ disable
1903
+ M
1904
+ 1
1905
+ n
1906
+ n
1907
+ x
1908
+ 7
1909
+ disable
1910
+ i
1911
+ 4
1912
+ 3
1913
+ 38
1914
+ 0
1915
+ 11
1916
+ I
1917
+ 1
1918
+ I
1919
+ 0
1920
+ I
1921
+ 0
1922
+ I
1923
+ 0
1924
+ n
1925
+ p
1926
+ 1
1927
+ x
1928
+ 8
1929
+ @enabled
1930
+ p
1931
+ 5
1932
+ I
1933
+ 0
1934
+ I
1935
+ 78
1936
+ I
1937
+ 0
1938
+ I
1939
+ 79
1940
+ I
1941
+ 4
1942
+ x
1943
+ 57
1944
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
1945
+ p
1946
+ 0
1947
+ M
1948
+ 1
1949
+ n
1950
+ n
1951
+ x
1952
+ 7
1953
+ enabled
1954
+ i
1955
+ 4
1956
+ 2
1957
+ 38
1958
+ 0
1959
+ 11
1960
+ I
1961
+ 1
1962
+ I
1963
+ 0
1964
+ I
1965
+ 0
1966
+ I
1967
+ 0
1968
+ n
1969
+ p
1970
+ 1
1971
+ x
1972
+ 8
1973
+ @enabled
1974
+ p
1975
+ 5
1976
+ I
1977
+ 0
1978
+ I
1979
+ 7c
1980
+ I
1981
+ 0
1982
+ I
1983
+ 7d
1984
+ I
1985
+ 4
1986
+ x
1987
+ 57
1988
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
1989
+ p
1990
+ 0
1991
+ x
1992
+ 8
1993
+ enabled=
1994
+ M
1995
+ 1
1996
+ n
1997
+ n
1998
+ x
1999
+ 8
2000
+ enabled=
2001
+ i
2002
+ 5
2003
+ 20
2004
+ 0
2005
+ 38
2006
+ 0
2007
+ 11
2008
+ I
2009
+ 2
2010
+ I
2011
+ 1
2012
+ I
2013
+ 1
2014
+ I
2015
+ 1
2016
+ n
2017
+ p
2018
+ 1
2019
+ x
2020
+ 8
2021
+ @enabled
2022
+ p
2023
+ 5
2024
+ I
2025
+ 0
2026
+ I
2027
+ 80
2028
+ I
2029
+ 0
2030
+ I
2031
+ 81
2032
+ I
2033
+ 5
2034
+ x
2035
+ 57
2036
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
2037
+ p
2038
+ 1
2039
+ x
2040
+ 4
2041
+ bool
2042
+ x
2043
+ 8
2044
+ enabled?
2045
+ M
2046
+ 1
2047
+ n
2048
+ n
2049
+ x
2050
+ 8
2051
+ enabled?
2052
+ i
2053
+ 3
2054
+ 39
2055
+ 0
2056
+ 11
2057
+ I
2058
+ 1
2059
+ I
2060
+ 0
2061
+ I
2062
+ 0
2063
+ I
2064
+ 0
2065
+ n
2066
+ p
2067
+ 1
2068
+ x
2069
+ 8
2070
+ @enabled
2071
+ p
2072
+ 5
2073
+ I
2074
+ 0
2075
+ I
2076
+ 84
2077
+ I
2078
+ 0
2079
+ I
2080
+ 85
2081
+ I
2082
+ 3
2083
+ x
2084
+ 57
2085
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
2086
+ p
2087
+ 0
2088
+ x
2089
+ 9
2090
+ icon_char
2091
+ M
2092
+ 1
2093
+ n
2094
+ n
2095
+ x
2096
+ 9
2097
+ icon_char
2098
+ i
2099
+ 28
2100
+ 5
2101
+ 47
2102
+ 49
2103
+ 0
2104
+ 0
2105
+ 9
2106
+ 12
2107
+ 7
2108
+ 1
2109
+ 64
2110
+ 8
2111
+ 27
2112
+ 5
2113
+ 47
2114
+ 49
2115
+ 2
2116
+ 0
2117
+ 9
2118
+ 24
2119
+ 7
2120
+ 3
2121
+ 64
2122
+ 8
2123
+ 27
2124
+ 7
2125
+ 4
2126
+ 64
2127
+ 11
2128
+ I
2129
+ 1
2130
+ I
2131
+ 0
2132
+ I
2133
+ 0
2134
+ I
2135
+ 0
2136
+ n
2137
+ p
2138
+ 5
2139
+ x
2140
+ 5
2141
+ temp?
2142
+ s
2143
+ 1
2144
+ t
2145
+ x
2146
+ 8
2147
+ enabled?
2148
+ s
2149
+ 1
2150
+ B
2151
+ s
2152
+ 1
2153
+ b
2154
+ p
2155
+ 5
2156
+ I
2157
+ 0
2158
+ I
2159
+ 8c
2160
+ I
2161
+ 0
2162
+ I
2163
+ 8d
2164
+ I
2165
+ 1c
2166
+ x
2167
+ 57
2168
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
2169
+ p
2170
+ 0
2171
+ x
2172
+ 8
2173
+ location
2174
+ M
2175
+ 1
2176
+ n
2177
+ n
2178
+ x
2179
+ 8
2180
+ location
2181
+ i
2182
+ 31
2183
+ 39
2184
+ 0
2185
+ 49
2186
+ 1
2187
+ 0
2188
+ 47
2189
+ 49
2190
+ 2
2191
+ 0
2192
+ 7
2193
+ 3
2194
+ 39
2195
+ 4
2196
+ 47
2197
+ 49
2198
+ 2
2199
+ 0
2200
+ 7
2201
+ 5
2202
+ 5
2203
+ 48
2204
+ 6
2205
+ 47
2206
+ 49
2207
+ 2
2208
+ 0
2209
+ 7
2210
+ 7
2211
+ 63
2212
+ 6
2213
+ 11
2214
+ I
2215
+ 6
2216
+ I
2217
+ 0
2218
+ I
2219
+ 0
2220
+ I
2221
+ 0
2222
+ n
2223
+ p
2224
+ 8
2225
+ x
2226
+ 7
2227
+ @method
2228
+ x
2229
+ 11
2230
+ active_path
2231
+ x
2232
+ 4
2233
+ to_s
2234
+ s
2235
+ 1
2236
+ :
2237
+ x
2238
+ 5
2239
+ @line
2240
+ s
2241
+ 3
2242
+ (@
2243
+ x
2244
+ 2
2245
+ ip
2246
+ s
2247
+ 1
2248
+ )
2249
+ p
2250
+ 5
2251
+ I
2252
+ 0
2253
+ I
2254
+ 90
2255
+ I
2256
+ 0
2257
+ I
2258
+ 91
2259
+ I
2260
+ 1f
2261
+ x
2262
+ 57
2263
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
2264
+ p
2265
+ 0
2266
+ x
2267
+ 7
2268
+ remove!
2269
+ M
2270
+ 1
2271
+ n
2272
+ n
2273
+ x
2274
+ 7
2275
+ remove!
2276
+ i
2277
+ 22
2278
+ 39
2279
+ 0
2280
+ 9
2281
+ 7
2282
+ 1
2283
+ 8
2284
+ 9
2285
+ 1
2286
+ 11
2287
+ 15
2288
+ 3
2289
+ 38
2290
+ 0
2291
+ 15
2292
+ 39
2293
+ 1
2294
+ 39
2295
+ 2
2296
+ 49
2297
+ 3
2298
+ 1
2299
+ 11
2300
+ I
2301
+ 2
2302
+ I
2303
+ 0
2304
+ I
2305
+ 0
2306
+ I
2307
+ 0
2308
+ n
2309
+ p
2310
+ 4
2311
+ x
2312
+ 4
2313
+ @set
2314
+ x
2315
+ 7
2316
+ @method
2317
+ x
2318
+ 3
2319
+ @ip
2320
+ x
2321
+ 16
2322
+ clear_breakpoint
2323
+ p
2324
+ 9
2325
+ I
2326
+ 0
2327
+ I
2328
+ 94
2329
+ I
2330
+ 0
2331
+ I
2332
+ 95
2333
+ I
2334
+ a
2335
+ I
2336
+ 97
2337
+ I
2338
+ e
2339
+ I
2340
+ 98
2341
+ I
2342
+ 16
2343
+ x
2344
+ 57
2345
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
2346
+ p
2347
+ 0
2348
+ x
2349
+ 5
2350
+ temp?
2351
+ M
2352
+ 1
2353
+ n
2354
+ n
2355
+ x
2356
+ 5
2357
+ temp?
2358
+ i
2359
+ 3
2360
+ 39
2361
+ 0
2362
+ 11
2363
+ I
2364
+ 1
2365
+ I
2366
+ 0
2367
+ I
2368
+ 0
2369
+ I
2370
+ 0
2371
+ n
2372
+ p
2373
+ 1
2374
+ x
2375
+ 5
2376
+ @temp
2377
+ p
2378
+ 5
2379
+ I
2380
+ 0
2381
+ I
2382
+ 9b
2383
+ I
2384
+ 0
2385
+ I
2386
+ 9c
2387
+ I
2388
+ 3
2389
+ x
2390
+ 57
2391
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
2392
+ p
2393
+ 0
2394
+ p
2395
+ 65
2396
+ I
2397
+ 2
2398
+ I
2399
+ 4
2400
+ I
2401
+ a
2402
+ I
2403
+ 6
2404
+ I
2405
+ 12
2406
+ I
2407
+ 8
2408
+ I
2409
+ 1a
2410
+ I
2411
+ c
2412
+ I
2413
+ 22
2414
+ I
2415
+ e
2416
+ I
2417
+ 2a
2418
+ I
2419
+ 15
2420
+ I
2421
+ 4a
2422
+ I
2423
+ 10
2424
+ I
2425
+ 4d
2426
+ I
2427
+ 15
2428
+ I
2429
+ 56
2430
+ I
2431
+ 11
2432
+ I
2433
+ 60
2434
+ I
2435
+ 12
2436
+ I
2437
+ 6a
2438
+ I
2439
+ 13
2440
+ I
2441
+ 72
2442
+ I
2443
+ 14
2444
+ I
2445
+ 7e
2446
+ I
2447
+ 17
2448
+ I
2449
+ 89
2450
+ I
2451
+ 1e
2452
+ I
2453
+ 97
2454
+ I
2455
+ 39
2456
+ I
2457
+ a5
2458
+ I
2459
+ 3a
2460
+ I
2461
+ ad
2462
+ I
2463
+ 3c
2464
+ I
2465
+ bb
2466
+ I
2467
+ 41
2468
+ I
2469
+ c9
2470
+ I
2471
+ 45
2472
+ I
2473
+ d7
2474
+ I
2475
+ 49
2476
+ I
2477
+ e5
2478
+ I
2479
+ 50
2480
+ I
2481
+ f3
2482
+ I
2483
+ 59
2484
+ I
2485
+ 101
2486
+ I
2487
+ 70
2488
+ I
2489
+ 10f
2490
+ I
2491
+ 74
2492
+ I
2493
+ 11d
2494
+ I
2495
+ 78
2496
+ I
2497
+ 12b
2498
+ I
2499
+ 7c
2500
+ I
2501
+ 139
2502
+ I
2503
+ 80
2504
+ I
2505
+ 147
2506
+ I
2507
+ 84
2508
+ I
2509
+ 155
2510
+ I
2511
+ 8c
2512
+ I
2513
+ 163
2514
+ I
2515
+ 90
2516
+ I
2517
+ 171
2518
+ I
2519
+ 94
2520
+ I
2521
+ 17f
2522
+ I
2523
+ 9b
2524
+ I
2525
+ 18d
2526
+ x
2527
+ 57
2528
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
2529
+ p
2530
+ 0
2531
+ x
2532
+ 13
2533
+ attach_method
2534
+ x
2535
+ 18
2536
+ DeferredBreakpoint
2537
+ M
2538
+ 1
2539
+ n
2540
+ n
2541
+ x
2542
+ 18
2543
+ DeferredBreakpoint
2544
+ i
2545
+ 72
2546
+ 5
2547
+ 66
2548
+ 99
2549
+ 7
2550
+ 0
2551
+ 7
2552
+ 1
2553
+ 65
2554
+ 67
2555
+ 49
2556
+ 2
2557
+ 0
2558
+ 49
2559
+ 3
2560
+ 4
2561
+ 15
2562
+ 99
2563
+ 7
2564
+ 4
2565
+ 7
2566
+ 5
2567
+ 65
2568
+ 67
2569
+ 49
2570
+ 2
2571
+ 0
2572
+ 49
2573
+ 3
2574
+ 4
2575
+ 15
2576
+ 99
2577
+ 7
2578
+ 6
2579
+ 7
2580
+ 7
2581
+ 65
2582
+ 67
2583
+ 49
2584
+ 2
2585
+ 0
2586
+ 49
2587
+ 3
2588
+ 4
2589
+ 15
2590
+ 99
2591
+ 7
2592
+ 8
2593
+ 7
2594
+ 9
2595
+ 65
2596
+ 67
2597
+ 49
2598
+ 2
2599
+ 0
2600
+ 49
2601
+ 3
2602
+ 4
2603
+ 15
2604
+ 99
2605
+ 7
2606
+ 10
2607
+ 7
2608
+ 11
2609
+ 65
2610
+ 67
2611
+ 49
2612
+ 2
2613
+ 0
2614
+ 49
2615
+ 3
2616
+ 4
2617
+ 11
2618
+ I
2619
+ 5
2620
+ I
2621
+ 0
2622
+ I
2623
+ 0
2624
+ I
2625
+ 0
2626
+ n
2627
+ p
2628
+ 12
2629
+ x
2630
+ 10
2631
+ initialize
2632
+ M
2633
+ 1
2634
+ n
2635
+ n
2636
+ x
2637
+ 10
2638
+ initialize
2639
+ i
2640
+ 51
2641
+ 23
2642
+ 5
2643
+ 10
2644
+ 8
2645
+ 1
2646
+ 19
2647
+ 5
2648
+ 15
2649
+ 23
2650
+ 6
2651
+ 10
2652
+ 16
2653
+ 1
2654
+ 19
2655
+ 6
2656
+ 15
2657
+ 20
2658
+ 0
2659
+ 38
2660
+ 0
2661
+ 15
2662
+ 20
2663
+ 1
2664
+ 38
2665
+ 1
2666
+ 15
2667
+ 20
2668
+ 2
2669
+ 38
2670
+ 2
2671
+ 15
2672
+ 20
2673
+ 3
2674
+ 38
2675
+ 3
2676
+ 15
2677
+ 20
2678
+ 4
2679
+ 38
2680
+ 4
2681
+ 15
2682
+ 20
2683
+ 5
2684
+ 38
2685
+ 5
2686
+ 15
2687
+ 20
2688
+ 6
2689
+ 38
2690
+ 6
2691
+ 11
2692
+ I
2693
+ 8
2694
+ I
2695
+ 7
2696
+ I
2697
+ 5
2698
+ I
2699
+ 7
2700
+ n
2701
+ p
2702
+ 7
2703
+ x
2704
+ 9
2705
+ @debugger
2706
+ x
2707
+ 6
2708
+ @frame
2709
+ x
2710
+ 11
2711
+ @klass_name
2712
+ x
2713
+ 6
2714
+ @which
2715
+ x
2716
+ 5
2717
+ @name
2718
+ x
2719
+ 5
2720
+ @line
2721
+ x
2722
+ 5
2723
+ @list
2724
+ p
2725
+ 17
2726
+ I
2727
+ 0
2728
+ I
2729
+ a2
2730
+ I
2731
+ 10
2732
+ I
2733
+ a3
2734
+ I
2735
+ 15
2736
+ I
2737
+ a4
2738
+ I
2739
+ 1a
2740
+ I
2741
+ a5
2742
+ I
2743
+ 1f
2744
+ I
2745
+ a6
2746
+ I
2747
+ 24
2748
+ I
2749
+ a7
2750
+ I
2751
+ 29
2752
+ I
2753
+ a8
2754
+ I
2755
+ 2e
2756
+ I
2757
+ a9
2758
+ I
2759
+ 33
2760
+ x
2761
+ 57
2762
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
2763
+ p
2764
+ 7
2765
+ x
2766
+ 8
2767
+ debugger
2768
+ x
2769
+ 5
2770
+ frame
2771
+ x
2772
+ 5
2773
+ klass
2774
+ x
2775
+ 5
2776
+ which
2777
+ x
2778
+ 4
2779
+ name
2780
+ x
2781
+ 4
2782
+ line
2783
+ x
2784
+ 4
2785
+ list
2786
+ x
2787
+ 17
2788
+ method_visibility
2789
+ x
2790
+ 15
2791
+ add_defn_method
2792
+ x
2793
+ 10
2794
+ descriptor
2795
+ M
2796
+ 1
2797
+ n
2798
+ n
2799
+ x
2800
+ 10
2801
+ descriptor
2802
+ i
2803
+ 21
2804
+ 39
2805
+ 0
2806
+ 47
2807
+ 49
2808
+ 1
2809
+ 0
2810
+ 39
2811
+ 2
2812
+ 47
2813
+ 49
2814
+ 1
2815
+ 0
2816
+ 39
2817
+ 3
2818
+ 47
2819
+ 49
2820
+ 1
2821
+ 0
2822
+ 63
2823
+ 3
2824
+ 11
2825
+ I
2826
+ 3
2827
+ I
2828
+ 0
2829
+ I
2830
+ 0
2831
+ I
2832
+ 0
2833
+ n
2834
+ p
2835
+ 4
2836
+ x
2837
+ 11
2838
+ @klass_name
2839
+ x
2840
+ 4
2841
+ to_s
2842
+ x
2843
+ 6
2844
+ @which
2845
+ x
2846
+ 5
2847
+ @name
2848
+ p
2849
+ 5
2850
+ I
2851
+ 0
2852
+ I
2853
+ ac
2854
+ I
2855
+ 0
2856
+ I
2857
+ ad
2858
+ I
2859
+ 15
2860
+ x
2861
+ 57
2862
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
2863
+ p
2864
+ 0
2865
+ x
2866
+ 8
2867
+ resolve!
2868
+ M
2869
+ 1
2870
+ n
2871
+ n
2872
+ x
2873
+ 8
2874
+ resolve!
2875
+ i
2876
+ 178
2877
+ 26
2878
+ 93
2879
+ 0
2880
+ 15
2881
+ 29
2882
+ 19
2883
+ 0
2884
+ 39
2885
+ 0
2886
+ 39
2887
+ 1
2888
+ 49
2889
+ 2
2890
+ 1
2891
+ 19
2892
+ 0
2893
+ 30
2894
+ 8
2895
+ 50
2896
+ 26
2897
+ 93
2898
+ 1
2899
+ 15
2900
+ 24
2901
+ 13
2902
+ 45
2903
+ 3
2904
+ 4
2905
+ 12
2906
+ 49
2907
+ 5
2908
+ 1
2909
+ 10
2910
+ 36
2911
+ 8
2912
+ 45
2913
+ 15
2914
+ 3
2915
+ 92
2916
+ 0
2917
+ 27
2918
+ 11
2919
+ 25
2920
+ 8
2921
+ 50
2922
+ 15
2923
+ 92
2924
+ 1
2925
+ 27
2926
+ 34
2927
+ 92
2928
+ 0
2929
+ 27
2930
+ 15
2931
+ 26
2932
+ 93
2933
+ 2
2934
+ 15
2935
+ 29
2936
+ 93
2937
+ 0
2938
+ 39
2939
+ 6
2940
+ 7
2941
+ 7
2942
+ 64
2943
+ 83
2944
+ 8
2945
+ 9
2946
+ 81
2947
+ 20
2948
+ 0
2949
+ 39
2950
+ 9
2951
+ 49
2952
+ 10
2953
+ 1
2954
+ 19
2955
+ 1
2956
+ 8
2957
+ 90
2958
+ 20
2959
+ 0
2960
+ 39
2961
+ 9
2962
+ 49
2963
+ 11
2964
+ 1
2965
+ 19
2966
+ 1
2967
+ 30
2968
+ 8
2969
+ 124
2970
+ 26
2971
+ 93
2972
+ 3
2973
+ 15
2974
+ 24
2975
+ 13
2976
+ 45
2977
+ 3
2978
+ 12
2979
+ 12
2980
+ 49
2981
+ 5
2982
+ 1
2983
+ 10
2984
+ 110
2985
+ 8
2986
+ 119
2987
+ 15
2988
+ 3
2989
+ 92
2990
+ 2
2991
+ 27
2992
+ 11
2993
+ 25
2994
+ 8
2995
+ 124
2996
+ 15
2997
+ 92
2998
+ 3
2999
+ 27
3000
+ 34
3001
+ 92
3002
+ 2
3003
+ 27
3004
+ 15
3005
+ 39
3006
+ 13
3007
+ 49
3008
+ 14
3009
+ 0
3010
+ 7
3011
+ 15
3012
+ 39
3013
+ 1
3014
+ 47
3015
+ 49
3016
+ 16
3017
+ 0
3018
+ 39
3019
+ 6
3020
+ 47
3021
+ 49
3022
+ 16
3023
+ 0
3024
+ 39
3025
+ 9
3026
+ 47
3027
+ 49
3028
+ 16
3029
+ 0
3030
+ 63
3031
+ 4
3032
+ 49
3033
+ 17
3034
+ 1
3035
+ 15
3036
+ 39
3037
+ 13
3038
+ 49
3039
+ 14
3040
+ 0
3041
+ 5
3042
+ 48
3043
+ 18
3044
+ 20
3045
+ 1
3046
+ 39
3047
+ 19
3048
+ 49
3049
+ 20
3050
+ 3
3051
+ 15
3052
+ 2
3053
+ 11
3054
+ 11
3055
+ I
3056
+ b
3057
+ I
3058
+ 2
3059
+ I
3060
+ 0
3061
+ I
3062
+ 0
3063
+ n
3064
+ p
3065
+ 21
3066
+ x
3067
+ 6
3068
+ @frame
3069
+ x
3070
+ 11
3071
+ @klass_name
3072
+ x
3073
+ 3
3074
+ run
3075
+ x
3076
+ 9
3077
+ NameError
3078
+ n
3079
+ x
3080
+ 3
3081
+ ===
3082
+ x
3083
+ 6
3084
+ @which
3085
+ s
3086
+ 1
3087
+ #
3088
+ x
3089
+ 2
3090
+ ==
3091
+ x
3092
+ 5
3093
+ @name
3094
+ x
3095
+ 15
3096
+ instance_method
3097
+ x
3098
+ 6
3099
+ method
3100
+ n
3101
+ x
3102
+ 9
3103
+ @debugger
3104
+ x
3105
+ 9
3106
+ processor
3107
+ s
3108
+ 24
3109
+ Resolved breakpoint for
3110
+ x
3111
+ 4
3112
+ to_s
3113
+ x
3114
+ 3
3115
+ msg
3116
+ x
3117
+ 10
3118
+ descriptor
3119
+ x
3120
+ 5
3121
+ @line
3122
+ x
3123
+ 21
3124
+ set_breakpoint_method
3125
+ p
3126
+ 25
3127
+ I
3128
+ 0
3129
+ I
3130
+ b0
3131
+ I
3132
+ 0
3133
+ I
3134
+ b2
3135
+ I
3136
+ 18
3137
+ I
3138
+ b3
3139
+ I
3140
+ 25
3141
+ I
3142
+ b4
3143
+ I
3144
+ 36
3145
+ I
3146
+ b8
3147
+ I
3148
+ 46
3149
+ I
3150
+ b9
3151
+ I
3152
+ 51
3153
+ I
3154
+ bb
3155
+ I
3156
+ 62
3157
+ I
3158
+ bd
3159
+ I
3160
+ 6f
3161
+ I
3162
+ be
3163
+ I
3164
+ 80
3165
+ I
3166
+ c1
3167
+ I
3168
+ 9f
3169
+ I
3170
+ c3
3171
+ I
3172
+ af
3173
+ I
3174
+ c5
3175
+ I
3176
+ b2
3177
+ x
3178
+ 57
3179
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
3180
+ p
3181
+ 2
3182
+ x
3183
+ 5
3184
+ klass
3185
+ x
3186
+ 4
3187
+ meth
3188
+ x
3189
+ 8
3190
+ describe
3191
+ M
3192
+ 1
3193
+ n
3194
+ n
3195
+ x
3196
+ 8
3197
+ describe
3198
+ i
3199
+ 12
3200
+ 5
3201
+ 48
3202
+ 0
3203
+ 47
3204
+ 49
3205
+ 1
3206
+ 0
3207
+ 7
3208
+ 2
3209
+ 63
3210
+ 2
3211
+ 11
3212
+ I
3213
+ 2
3214
+ I
3215
+ 0
3216
+ I
3217
+ 0
3218
+ I
3219
+ 0
3220
+ n
3221
+ p
3222
+ 3
3223
+ x
3224
+ 10
3225
+ descriptor
3226
+ x
3227
+ 4
3228
+ to_s
3229
+ s
3230
+ 30
3231
+ - unknown location (deferred)
3232
+ p
3233
+ 5
3234
+ I
3235
+ 0
3236
+ I
3237
+ c8
3238
+ I
3239
+ 0
3240
+ I
3241
+ c9
3242
+ I
3243
+ c
3244
+ x
3245
+ 57
3246
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
3247
+ p
3248
+ 0
3249
+ x
3250
+ 7
3251
+ delete!
3252
+ M
3253
+ 1
3254
+ n
3255
+ n
3256
+ x
3257
+ 7
3258
+ delete!
3259
+ i
3260
+ 14
3261
+ 39
3262
+ 0
3263
+ 9
3264
+ 12
3265
+ 39
3266
+ 0
3267
+ 5
3268
+ 49
3269
+ 1
3270
+ 1
3271
+ 8
3272
+ 13
3273
+ 1
3274
+ 11
3275
+ I
3276
+ 2
3277
+ I
3278
+ 0
3279
+ I
3280
+ 0
3281
+ I
3282
+ 0
3283
+ n
3284
+ p
3285
+ 2
3286
+ x
3287
+ 5
3288
+ @list
3289
+ x
3290
+ 6
3291
+ delete
3292
+ p
3293
+ 9
3294
+ I
3295
+ 0
3296
+ I
3297
+ cc
3298
+ I
3299
+ 0
3300
+ I
3301
+ cd
3302
+ I
3303
+ 4
3304
+ I
3305
+ ce
3306
+ I
3307
+ c
3308
+ I
3309
+ cd
3310
+ I
3311
+ e
3312
+ x
3313
+ 57
3314
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
3315
+ p
3316
+ 0
3317
+ p
3318
+ 11
3319
+ I
3320
+ 2
3321
+ I
3322
+ a2
3323
+ I
3324
+ 10
3325
+ I
3326
+ ac
3327
+ I
3328
+ 1e
3329
+ I
3330
+ b0
3331
+ I
3332
+ 2c
3333
+ I
3334
+ c8
3335
+ I
3336
+ 3a
3337
+ I
3338
+ cc
3339
+ I
3340
+ 48
3341
+ x
3342
+ 57
3343
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
3344
+ p
3345
+ 0
3346
+ p
3347
+ 5
3348
+ I
3349
+ 2
3350
+ I
3351
+ 2
3352
+ I
3353
+ 1d
3354
+ I
3355
+ a1
3356
+ I
3357
+ 38
3358
+ x
3359
+ 57
3360
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
3361
+ p
3362
+ 0
3363
+ x
3364
+ 13
3365
+ attach_method
3366
+ x
3367
+ 11
3368
+ active_path
3369
+ x
3370
+ 7
3371
+ Globals
3372
+ x
3373
+ 2
3374
+ $0
3375
+ x
3376
+ 2
3377
+ []
3378
+ x
3379
+ 2
3380
+ ==
3381
+ x
3382
+ 8
3383
+ Rubinius
3384
+ n
3385
+ x
3386
+ 14
3387
+ CompiledMethod
3388
+ x
3389
+ 9
3390
+ of_sender
3391
+ n
3392
+ x
3393
+ 10
3394
+ Breakpoint
3395
+ x
3396
+ 3
3397
+ new
3398
+ x
3399
+ 8
3400
+ allocate
3401
+ s
3402
+ 7
3403
+ <start>
3404
+ x
3405
+ 10
3406
+ initialize
3407
+ s
3408
+ 8
3409
+ describe
3410
+ s
3411
+ 8
3412
+ location
3413
+ s
3414
+ 9
3415
+ icon_char
3416
+ s
3417
+ 4
3418
+ hits
3419
+ s
3420
+ 5
3421
+ temp?
3422
+ s
3423
+ 8
3424
+ enabled?
3425
+ s
3426
+ 9
3427
+ condition
3428
+ M
3429
+ 1
3430
+ p
3431
+ 2
3432
+ x
3433
+ 9
3434
+ for_block
3435
+ t
3436
+ n
3437
+ x
3438
+ 9
3439
+ __block__
3440
+ i
3441
+ 35
3442
+ 57
3443
+ 19
3444
+ 0
3445
+ 15
3446
+ 5
3447
+ 20
3448
+ 0
3449
+ 47
3450
+ 49
3451
+ 0
3452
+ 0
3453
+ 7
3454
+ 1
3455
+ 21
3456
+ 1
3457
+ 1
3458
+ 20
3459
+ 0
3460
+ 49
3461
+ 2
3462
+ 0
3463
+ 49
3464
+ 3
3465
+ 1
3466
+ 47
3467
+ 49
3468
+ 0
3469
+ 0
3470
+ 63
3471
+ 3
3472
+ 47
3473
+ 49
3474
+ 4
3475
+ 1
3476
+ 11
3477
+ I
3478
+ 7
3479
+ I
3480
+ 1
3481
+ I
3482
+ 1
3483
+ I
3484
+ 1
3485
+ n
3486
+ p
3487
+ 5
3488
+ x
3489
+ 4
3490
+ to_s
3491
+ s
3492
+ 2
3493
+ :
3494
+ x
3495
+ 6
3496
+ to_sym
3497
+ x
3498
+ 4
3499
+ send
3500
+ x
3501
+ 4
3502
+ puts
3503
+ p
3504
+ 5
3505
+ I
3506
+ 0
3507
+ I
3508
+ d7
3509
+ I
3510
+ 4
3511
+ I
3512
+ d8
3513
+ I
3514
+ 23
3515
+ x
3516
+ 57
3517
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
3518
+ p
3519
+ 1
3520
+ x
3521
+ 5
3522
+ field
3523
+ x
3524
+ 4
3525
+ each
3526
+ p
3527
+ 13
3528
+ I
3529
+ 0
3530
+ I
3531
+ 1
3532
+ I
3533
+ 1a
3534
+ I
3535
+ d4
3536
+ I
3537
+ 2a
3538
+ I
3539
+ d5
3540
+ I
3541
+ 35
3542
+ I
3543
+ d6
3544
+ I
3545
+ 62
3546
+ I
3547
+ d7
3548
+ I
3549
+ 80
3550
+ I
3551
+ d4
3552
+ I
3553
+ 84
3554
+ x
3555
+ 57
3556
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/breakpoint.rb
3557
+ p
3558
+ 2
3559
+ x
3560
+ 6
3561
+ method
3562
+ x
3563
+ 2
3564
+ bp