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/brkptmgr.rbc ADDED
@@ -0,0 +1,2827 @@
1
+ !RBIX
2
+ 0
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 464
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 5
23
+ 7
24
+ 2
25
+ 64
26
+ 47
27
+ 49
28
+ 1
29
+ 1
30
+ 15
31
+ 5
32
+ 7
33
+ 3
34
+ 64
35
+ 47
36
+ 49
37
+ 1
38
+ 1
39
+ 15
40
+ 5
41
+ 7
42
+ 4
43
+ 64
44
+ 47
45
+ 49
46
+ 5
47
+ 1
48
+ 15
49
+ 99
50
+ 7
51
+ 6
52
+ 1
53
+ 65
54
+ 49
55
+ 7
56
+ 3
57
+ 13
58
+ 99
59
+ 12
60
+ 7
61
+ 8
62
+ 12
63
+ 7
64
+ 9
65
+ 12
66
+ 65
67
+ 12
68
+ 49
69
+ 10
70
+ 4
71
+ 15
72
+ 49
73
+ 8
74
+ 0
75
+ 15
76
+ 65
77
+ 49
78
+ 11
79
+ 0
80
+ 99
81
+ 43
82
+ 12
83
+ 7
84
+ 13
85
+ 49
86
+ 14
87
+ 1
88
+ 83
89
+ 15
90
+ 9
91
+ 460
92
+ 99
93
+ 7
94
+ 16
95
+ 7
96
+ 17
97
+ 65
98
+ 67
99
+ 49
100
+ 18
101
+ 0
102
+ 49
103
+ 19
104
+ 4
105
+ 15
106
+ 45
107
+ 20
108
+ 21
109
+ 43
110
+ 22
111
+ 49
112
+ 23
113
+ 0
114
+ 19
115
+ 0
116
+ 15
117
+ 45
118
+ 6
119
+ 24
120
+ 13
121
+ 71
122
+ 25
123
+ 47
124
+ 9
125
+ 125
126
+ 47
127
+ 49
128
+ 26
129
+ 0
130
+ 13
131
+ 47
132
+ 49
133
+ 27
134
+ 0
135
+ 15
136
+ 8
137
+ 128
138
+ 49
139
+ 25
140
+ 0
141
+ 19
142
+ 1
143
+ 15
144
+ 20
145
+ 1
146
+ 7
147
+ 28
148
+ 64
149
+ 20
150
+ 0
151
+ 78
152
+ 78
153
+ 79
154
+ 49
155
+ 29
156
+ 5
157
+ 15
158
+ 5
159
+ 20
160
+ 1
161
+ 80
162
+ 49
163
+ 14
164
+ 1
165
+ 47
166
+ 49
167
+ 30
168
+ 1
169
+ 15
170
+ 5
171
+ 20
172
+ 1
173
+ 79
174
+ 47
175
+ 49
176
+ 16
177
+ 2
178
+ 15
179
+ 45
180
+ 31
181
+ 32
182
+ 43
183
+ 33
184
+ 13
185
+ 71
186
+ 25
187
+ 47
188
+ 9
189
+ 198
190
+ 47
191
+ 49
192
+ 26
193
+ 0
194
+ 13
195
+ 7
196
+ 34
197
+ 64
198
+ 20
199
+ 0
200
+ 78
201
+ 4
202
+ 5
203
+ 80
204
+ 47
205
+ 49
206
+ 27
207
+ 5
208
+ 15
209
+ 8
210
+ 210
211
+ 7
212
+ 34
213
+ 64
214
+ 20
215
+ 0
216
+ 78
217
+ 4
218
+ 5
219
+ 80
220
+ 49
221
+ 25
222
+ 5
223
+ 19
224
+ 2
225
+ 15
226
+ 20
227
+ 1
228
+ 20
229
+ 2
230
+ 49
231
+ 35
232
+ 1
233
+ 15
234
+ 5
235
+ 20
236
+ 1
237
+ 20
238
+ 2
239
+ 49
240
+ 36
241
+ 0
242
+ 20
243
+ 2
244
+ 49
245
+ 37
246
+ 0
247
+ 49
248
+ 38
249
+ 2
250
+ 47
251
+ 49
252
+ 30
253
+ 1
254
+ 15
255
+ 5
256
+ 20
257
+ 1
258
+ 80
259
+ 49
260
+ 14
261
+ 1
262
+ 47
263
+ 49
264
+ 30
265
+ 1
266
+ 15
267
+ 5
268
+ 7
269
+ 39
270
+ 64
271
+ 47
272
+ 49
273
+ 40
274
+ 1
275
+ 15
276
+ 5
277
+ 20
278
+ 1
279
+ 80
280
+ 49
281
+ 41
282
+ 1
283
+ 47
284
+ 49
285
+ 30
286
+ 1
287
+ 15
288
+ 5
289
+ 20
290
+ 1
291
+ 80
292
+ 49
293
+ 14
294
+ 1
295
+ 47
296
+ 49
297
+ 30
298
+ 1
299
+ 15
300
+ 5
301
+ 20
302
+ 1
303
+ 4
304
+ 3
305
+ 47
306
+ 49
307
+ 16
308
+ 2
309
+ 15
310
+ 45
311
+ 31
312
+ 42
313
+ 43
314
+ 33
315
+ 13
316
+ 71
317
+ 25
318
+ 47
319
+ 9
320
+ 328
321
+ 47
322
+ 49
323
+ 26
324
+ 0
325
+ 13
326
+ 7
327
+ 43
328
+ 64
329
+ 20
330
+ 0
331
+ 78
332
+ 78
333
+ 78
334
+ 47
335
+ 49
336
+ 27
337
+ 5
338
+ 15
339
+ 8
340
+ 339
341
+ 7
342
+ 43
343
+ 64
344
+ 20
345
+ 0
346
+ 78
347
+ 78
348
+ 78
349
+ 49
350
+ 25
351
+ 5
352
+ 19
353
+ 2
354
+ 15
355
+ 20
356
+ 1
357
+ 20
358
+ 2
359
+ 49
360
+ 35
361
+ 1
362
+ 15
363
+ 5
364
+ 20
365
+ 1
366
+ 4
367
+ 4
368
+ 47
369
+ 49
370
+ 16
371
+ 2
372
+ 15
373
+ 45
374
+ 31
375
+ 44
376
+ 43
377
+ 33
378
+ 13
379
+ 71
380
+ 25
381
+ 47
382
+ 9
383
+ 391
384
+ 47
385
+ 49
386
+ 26
387
+ 0
388
+ 13
389
+ 7
390
+ 43
391
+ 64
392
+ 20
393
+ 0
394
+ 78
395
+ 78
396
+ 78
397
+ 47
398
+ 49
399
+ 27
400
+ 5
401
+ 15
402
+ 8
403
+ 402
404
+ 7
405
+ 43
406
+ 64
407
+ 20
408
+ 0
409
+ 78
410
+ 78
411
+ 78
412
+ 49
413
+ 25
414
+ 5
415
+ 19
416
+ 3
417
+ 15
418
+ 20
419
+ 1
420
+ 20
421
+ 3
422
+ 49
423
+ 35
424
+ 1
425
+ 15
426
+ 5
427
+ 20
428
+ 1
429
+ 4
430
+ 5
431
+ 47
432
+ 49
433
+ 16
434
+ 2
435
+ 15
436
+ 20
437
+ 1
438
+ 20
439
+ 2
440
+ 49
441
+ 45
442
+ 1
443
+ 15
444
+ 5
445
+ 20
446
+ 1
447
+ 4
448
+ 6
449
+ 47
450
+ 49
451
+ 16
452
+ 2
453
+ 15
454
+ 20
455
+ 1
456
+ 20
457
+ 3
458
+ 49
459
+ 45
460
+ 1
461
+ 15
462
+ 5
463
+ 20
464
+ 1
465
+ 4
466
+ 7
467
+ 47
468
+ 49
469
+ 16
470
+ 2
471
+ 8
472
+ 461
473
+ 1
474
+ 15
475
+ 2
476
+ 11
477
+ I
478
+ b
479
+ I
480
+ 4
481
+ I
482
+ 0
483
+ I
484
+ 0
485
+ n
486
+ p
487
+ 46
488
+ s
489
+ 3
490
+ set
491
+ x
492
+ 7
493
+ require
494
+ s
495
+ 8
496
+ rubygems
497
+ s
498
+ 16
499
+ require_relative
500
+ s
501
+ 10
502
+ breakpoint
503
+ x
504
+ 16
505
+ require_relative
506
+ x
507
+ 13
508
+ BreakpointMgr
509
+ x
510
+ 10
511
+ open_class
512
+ x
513
+ 14
514
+ __class_init__
515
+ M
516
+ 1
517
+ n
518
+ n
519
+ x
520
+ 13
521
+ BreakpointMgr
522
+ i
523
+ 196
524
+ 5
525
+ 66
526
+ 5
527
+ 7
528
+ 0
529
+ 47
530
+ 49
531
+ 1
532
+ 1
533
+ 15
534
+ 5
535
+ 7
536
+ 2
537
+ 47
538
+ 49
539
+ 1
540
+ 1
541
+ 15
542
+ 99
543
+ 7
544
+ 3
545
+ 7
546
+ 4
547
+ 65
548
+ 67
549
+ 49
550
+ 5
551
+ 0
552
+ 49
553
+ 6
554
+ 4
555
+ 15
556
+ 99
557
+ 7
558
+ 7
559
+ 7
560
+ 8
561
+ 65
562
+ 67
563
+ 49
564
+ 5
565
+ 0
566
+ 49
567
+ 6
568
+ 4
569
+ 15
570
+ 99
571
+ 7
572
+ 9
573
+ 7
574
+ 10
575
+ 65
576
+ 67
577
+ 49
578
+ 5
579
+ 0
580
+ 49
581
+ 6
582
+ 4
583
+ 15
584
+ 65
585
+ 7
586
+ 11
587
+ 7
588
+ 9
589
+ 47
590
+ 49
591
+ 12
592
+ 2
593
+ 15
594
+ 99
595
+ 7
596
+ 13
597
+ 7
598
+ 14
599
+ 65
600
+ 67
601
+ 49
602
+ 5
603
+ 0
604
+ 49
605
+ 6
606
+ 4
607
+ 15
608
+ 99
609
+ 7
610
+ 15
611
+ 7
612
+ 16
613
+ 65
614
+ 67
615
+ 49
616
+ 5
617
+ 0
618
+ 49
619
+ 6
620
+ 4
621
+ 15
622
+ 99
623
+ 7
624
+ 17
625
+ 7
626
+ 18
627
+ 65
628
+ 67
629
+ 49
630
+ 5
631
+ 0
632
+ 49
633
+ 6
634
+ 4
635
+ 15
636
+ 99
637
+ 7
638
+ 19
639
+ 7
640
+ 20
641
+ 65
642
+ 67
643
+ 49
644
+ 5
645
+ 0
646
+ 49
647
+ 6
648
+ 4
649
+ 15
650
+ 99
651
+ 7
652
+ 21
653
+ 7
654
+ 22
655
+ 65
656
+ 67
657
+ 49
658
+ 5
659
+ 0
660
+ 49
661
+ 6
662
+ 4
663
+ 15
664
+ 99
665
+ 7
666
+ 23
667
+ 7
668
+ 24
669
+ 65
670
+ 67
671
+ 49
672
+ 5
673
+ 0
674
+ 49
675
+ 6
676
+ 4
677
+ 15
678
+ 99
679
+ 7
680
+ 25
681
+ 7
682
+ 26
683
+ 65
684
+ 67
685
+ 49
686
+ 5
687
+ 0
688
+ 49
689
+ 6
690
+ 4
691
+ 15
692
+ 99
693
+ 7
694
+ 27
695
+ 7
696
+ 28
697
+ 65
698
+ 67
699
+ 49
700
+ 5
701
+ 0
702
+ 49
703
+ 6
704
+ 4
705
+ 15
706
+ 99
707
+ 7
708
+ 29
709
+ 7
710
+ 30
711
+ 65
712
+ 67
713
+ 49
714
+ 5
715
+ 0
716
+ 49
717
+ 6
718
+ 4
719
+ 11
720
+ I
721
+ 5
722
+ I
723
+ 0
724
+ I
725
+ 0
726
+ I
727
+ 0
728
+ n
729
+ p
730
+ 31
731
+ x
732
+ 4
733
+ list
734
+ x
735
+ 11
736
+ attr_reader
737
+ x
738
+ 3
739
+ set
740
+ x
741
+ 10
742
+ initialize
743
+ M
744
+ 1
745
+ n
746
+ n
747
+ x
748
+ 10
749
+ initialize
750
+ i
751
+ 32
752
+ 35
753
+ 0
754
+ 38
755
+ 0
756
+ 15
757
+ 45
758
+ 1
759
+ 2
760
+ 13
761
+ 71
762
+ 3
763
+ 47
764
+ 9
765
+ 26
766
+ 47
767
+ 49
768
+ 4
769
+ 0
770
+ 13
771
+ 47
772
+ 49
773
+ 5
774
+ 0
775
+ 15
776
+ 8
777
+ 29
778
+ 49
779
+ 3
780
+ 0
781
+ 38
782
+ 6
783
+ 11
784
+ I
785
+ 2
786
+ I
787
+ 0
788
+ I
789
+ 0
790
+ I
791
+ 0
792
+ n
793
+ p
794
+ 7
795
+ x
796
+ 5
797
+ @list
798
+ x
799
+ 3
800
+ Set
801
+ n
802
+ x
803
+ 3
804
+ new
805
+ x
806
+ 8
807
+ allocate
808
+ x
809
+ 10
810
+ initialize
811
+ x
812
+ 4
813
+ @set
814
+ p
815
+ 7
816
+ I
817
+ 0
818
+ I
819
+ a
820
+ I
821
+ 0
822
+ I
823
+ b
824
+ I
825
+ 5
826
+ I
827
+ c
828
+ I
829
+ 20
830
+ x
831
+ 55
832
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/brkptmgr.rb
833
+ p
834
+ 0
835
+ x
836
+ 17
837
+ method_visibility
838
+ x
839
+ 15
840
+ add_defn_method
841
+ x
842
+ 2
843
+ <<
844
+ M
845
+ 1
846
+ n
847
+ n
848
+ x
849
+ 2
850
+ <<
851
+ i
852
+ 21
853
+ 39
854
+ 0
855
+ 20
856
+ 0
857
+ 49
858
+ 1
859
+ 1
860
+ 15
861
+ 39
862
+ 2
863
+ 5
864
+ 20
865
+ 0
866
+ 47
867
+ 49
868
+ 3
869
+ 1
870
+ 49
871
+ 4
872
+ 1
873
+ 11
874
+ I
875
+ 4
876
+ I
877
+ 1
878
+ I
879
+ 1
880
+ I
881
+ 1
882
+ n
883
+ p
884
+ 5
885
+ x
886
+ 5
887
+ @list
888
+ x
889
+ 2
890
+ <<
891
+ x
892
+ 4
893
+ @set
894
+ x
895
+ 7
896
+ set_key
897
+ x
898
+ 3
899
+ add
900
+ p
901
+ 7
902
+ I
903
+ 0
904
+ I
905
+ f
906
+ I
907
+ 0
908
+ I
909
+ 10
910
+ I
911
+ 8
912
+ I
913
+ 11
914
+ I
915
+ 15
916
+ x
917
+ 55
918
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/brkptmgr.rb
919
+ p
920
+ 1
921
+ x
922
+ 5
923
+ brkpt
924
+ x
925
+ 2
926
+ []
927
+ M
928
+ 1
929
+ n
930
+ n
931
+ x
932
+ 2
933
+ []
934
+ i
935
+ 49
936
+ 20
937
+ 0
938
+ 45
939
+ 0
940
+ 1
941
+ 49
942
+ 2
943
+ 1
944
+ 9
945
+ 13
946
+ 1
947
+ 8
948
+ 40
949
+ 5
950
+ 45
951
+ 3
952
+ 4
953
+ 7
954
+ 5
955
+ 20
956
+ 0
957
+ 47
958
+ 101
959
+ 6
960
+ 7
961
+ 7
962
+ 20
963
+ 0
964
+ 49
965
+ 8
966
+ 0
967
+ 47
968
+ 101
969
+ 6
970
+ 63
971
+ 4
972
+ 47
973
+ 49
974
+ 9
975
+ 2
976
+ 15
977
+ 39
978
+ 10
979
+ 56
980
+ 11
981
+ 50
982
+ 12
983
+ 0
984
+ 11
985
+ I
986
+ 7
987
+ I
988
+ 1
989
+ I
990
+ 1
991
+ I
992
+ 1
993
+ n
994
+ p
995
+ 13
996
+ x
997
+ 6
998
+ Fixnum
999
+ n
1000
+ x
1001
+ 5
1002
+ is_a?
1003
+ x
1004
+ 9
1005
+ TypeError
1006
+ n
1007
+ s
1008
+ 6
1009
+ index
1010
+ x
1011
+ 4
1012
+ to_s
1013
+ s
1014
+ 24
1015
+ should be a Fixnum, is
1016
+ x
1017
+ 5
1018
+ class
1019
+ x
1020
+ 5
1021
+ raise
1022
+ x
1023
+ 5
1024
+ @list
1025
+ M
1026
+ 1
1027
+ p
1028
+ 2
1029
+ x
1030
+ 9
1031
+ for_block
1032
+ t
1033
+ n
1034
+ x
1035
+ 2
1036
+ []
1037
+ i
1038
+ 15
1039
+ 57
1040
+ 19
1041
+ 0
1042
+ 15
1043
+ 20
1044
+ 0
1045
+ 49
1046
+ 0
1047
+ 0
1048
+ 21
1049
+ 1
1050
+ 0
1051
+ 83
1052
+ 1
1053
+ 11
1054
+ I
1055
+ 4
1056
+ I
1057
+ 1
1058
+ I
1059
+ 1
1060
+ I
1061
+ 1
1062
+ n
1063
+ p
1064
+ 2
1065
+ x
1066
+ 2
1067
+ id
1068
+ x
1069
+ 2
1070
+ ==
1071
+ p
1072
+ 3
1073
+ I
1074
+ 0
1075
+ I
1076
+ 18
1077
+ I
1078
+ f
1079
+ x
1080
+ 55
1081
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/brkptmgr.rb
1082
+ p
1083
+ 1
1084
+ x
1085
+ 2
1086
+ bp
1087
+ x
1088
+ 6
1089
+ detect
1090
+ p
1091
+ 13
1092
+ I
1093
+ 0
1094
+ I
1095
+ 14
1096
+ I
1097
+ 0
1098
+ I
1099
+ 17
1100
+ I
1101
+ d
1102
+ I
1103
+ 15
1104
+ I
1105
+ 11
1106
+ I
1107
+ 16
1108
+ I
1109
+ 24
1110
+ I
1111
+ 15
1112
+ I
1113
+ 29
1114
+ I
1115
+ 18
1116
+ I
1117
+ 31
1118
+ x
1119
+ 55
1120
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/brkptmgr.rb
1121
+ p
1122
+ 1
1123
+ x
1124
+ 5
1125
+ index
1126
+ x
1127
+ 6
1128
+ detect
1129
+ x
1130
+ 12
1131
+ alias_method
1132
+ x
1133
+ 6
1134
+ delete
1135
+ M
1136
+ 1
1137
+ n
1138
+ n
1139
+ x
1140
+ 6
1141
+ delete
1142
+ i
1143
+ 30
1144
+ 5
1145
+ 20
1146
+ 0
1147
+ 47
1148
+ 49
1149
+ 0
1150
+ 1
1151
+ 19
1152
+ 1
1153
+ 15
1154
+ 20
1155
+ 1
1156
+ 9
1157
+ 27
1158
+ 5
1159
+ 20
1160
+ 1
1161
+ 47
1162
+ 49
1163
+ 1
1164
+ 1
1165
+ 15
1166
+ 20
1167
+ 1
1168
+ 11
1169
+ 8
1170
+ 29
1171
+ 1
1172
+ 11
1173
+ 11
1174
+ I
1175
+ 4
1176
+ I
1177
+ 2
1178
+ I
1179
+ 1
1180
+ I
1181
+ 1
1182
+ n
1183
+ p
1184
+ 2
1185
+ x
1186
+ 6
1187
+ detect
1188
+ x
1189
+ 15
1190
+ delete_by_brkpt
1191
+ p
1192
+ 13
1193
+ I
1194
+ 0
1195
+ I
1196
+ 1d
1197
+ I
1198
+ 0
1199
+ I
1200
+ 1e
1201
+ I
1202
+ a
1203
+ I
1204
+ 1f
1205
+ I
1206
+ e
1207
+ I
1208
+ 20
1209
+ I
1210
+ 16
1211
+ I
1212
+ 21
1213
+ I
1214
+ 1b
1215
+ I
1216
+ 23
1217
+ I
1218
+ 1e
1219
+ x
1220
+ 55
1221
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/brkptmgr.rb
1222
+ p
1223
+ 2
1224
+ x
1225
+ 5
1226
+ index
1227
+ x
1228
+ 2
1229
+ bp
1230
+ x
1231
+ 15
1232
+ delete_by_brkpt
1233
+ M
1234
+ 1
1235
+ n
1236
+ n
1237
+ x
1238
+ 15
1239
+ delete_by_brkpt
1240
+ i
1241
+ 78
1242
+ 39
1243
+ 0
1244
+ 56
1245
+ 1
1246
+ 50
1247
+ 2
1248
+ 0
1249
+ 38
1250
+ 0
1251
+ 15
1252
+ 45
1253
+ 3
1254
+ 4
1255
+ 13
1256
+ 71
1257
+ 5
1258
+ 47
1259
+ 9
1260
+ 38
1261
+ 47
1262
+ 49
1263
+ 6
1264
+ 0
1265
+ 13
1266
+ 39
1267
+ 0
1268
+ 56
1269
+ 7
1270
+ 50
1271
+ 8
1272
+ 0
1273
+ 47
1274
+ 49
1275
+ 9
1276
+ 1
1277
+ 15
1278
+ 8
1279
+ 48
1280
+ 39
1281
+ 0
1282
+ 56
1283
+ 10
1284
+ 50
1285
+ 8
1286
+ 0
1287
+ 49
1288
+ 5
1289
+ 1
1290
+ 38
1291
+ 11
1292
+ 15
1293
+ 39
1294
+ 11
1295
+ 5
1296
+ 20
1297
+ 0
1298
+ 47
1299
+ 49
1300
+ 12
1301
+ 1
1302
+ 49
1303
+ 13
1304
+ 1
1305
+ 9
1306
+ 68
1307
+ 1
1308
+ 8
1309
+ 73
1310
+ 20
1311
+ 0
1312
+ 49
1313
+ 14
1314
+ 0
1315
+ 15
1316
+ 20
1317
+ 0
1318
+ 11
1319
+ 11
1320
+ I
1321
+ 5
1322
+ I
1323
+ 1
1324
+ I
1325
+ 1
1326
+ I
1327
+ 1
1328
+ n
1329
+ p
1330
+ 15
1331
+ x
1332
+ 5
1333
+ @list
1334
+ M
1335
+ 1
1336
+ p
1337
+ 2
1338
+ x
1339
+ 9
1340
+ for_block
1341
+ t
1342
+ n
1343
+ x
1344
+ 15
1345
+ delete_by_brkpt
1346
+ i
1347
+ 12
1348
+ 57
1349
+ 19
1350
+ 0
1351
+ 15
1352
+ 20
1353
+ 0
1354
+ 21
1355
+ 1
1356
+ 0
1357
+ 83
1358
+ 0
1359
+ 11
1360
+ I
1361
+ 4
1362
+ I
1363
+ 1
1364
+ I
1365
+ 1
1366
+ I
1367
+ 1
1368
+ n
1369
+ p
1370
+ 1
1371
+ x
1372
+ 2
1373
+ ==
1374
+ p
1375
+ 3
1376
+ I
1377
+ 0
1378
+ I
1379
+ 28
1380
+ I
1381
+ c
1382
+ x
1383
+ 55
1384
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/brkptmgr.rb
1385
+ p
1386
+ 1
1387
+ x
1388
+ 9
1389
+ candidate
1390
+ x
1391
+ 6
1392
+ reject
1393
+ x
1394
+ 3
1395
+ Set
1396
+ n
1397
+ x
1398
+ 3
1399
+ new
1400
+ x
1401
+ 8
1402
+ allocate
1403
+ M
1404
+ 1
1405
+ p
1406
+ 2
1407
+ x
1408
+ 9
1409
+ for_block
1410
+ t
1411
+ n
1412
+ x
1413
+ 15
1414
+ delete_by_brkpt
1415
+ i
1416
+ 12
1417
+ 57
1418
+ 19
1419
+ 0
1420
+ 15
1421
+ 5
1422
+ 20
1423
+ 0
1424
+ 47
1425
+ 49
1426
+ 0
1427
+ 1
1428
+ 11
1429
+ I
1430
+ 4
1431
+ I
1432
+ 1
1433
+ I
1434
+ 1
1435
+ I
1436
+ 1
1437
+ n
1438
+ p
1439
+ 1
1440
+ x
1441
+ 7
1442
+ set_key
1443
+ p
1444
+ 3
1445
+ I
1446
+ 0
1447
+ I
1448
+ 29
1449
+ I
1450
+ c
1451
+ x
1452
+ 55
1453
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/brkptmgr.rb
1454
+ p
1455
+ 1
1456
+ x
1457
+ 2
1458
+ bp
1459
+ x
1460
+ 3
1461
+ map
1462
+ x
1463
+ 10
1464
+ initialize
1465
+ M
1466
+ 1
1467
+ p
1468
+ 2
1469
+ x
1470
+ 9
1471
+ for_block
1472
+ t
1473
+ n
1474
+ x
1475
+ 15
1476
+ delete_by_brkpt
1477
+ i
1478
+ 12
1479
+ 57
1480
+ 19
1481
+ 0
1482
+ 15
1483
+ 5
1484
+ 20
1485
+ 0
1486
+ 47
1487
+ 49
1488
+ 0
1489
+ 1
1490
+ 11
1491
+ I
1492
+ 4
1493
+ I
1494
+ 1
1495
+ I
1496
+ 1
1497
+ I
1498
+ 1
1499
+ n
1500
+ p
1501
+ 1
1502
+ x
1503
+ 7
1504
+ set_key
1505
+ p
1506
+ 3
1507
+ I
1508
+ 0
1509
+ I
1510
+ 29
1511
+ I
1512
+ c
1513
+ x
1514
+ 55
1515
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/brkptmgr.rb
1516
+ p
1517
+ 1
1518
+ x
1519
+ 2
1520
+ bp
1521
+ x
1522
+ 4
1523
+ @set
1524
+ x
1525
+ 7
1526
+ set_key
1527
+ x
1528
+ 7
1529
+ member?
1530
+ x
1531
+ 7
1532
+ remove!
1533
+ p
1534
+ 11
1535
+ I
1536
+ 0
1537
+ I
1538
+ 27
1539
+ I
1540
+ 0
1541
+ I
1542
+ 28
1543
+ I
1544
+ a
1545
+ I
1546
+ 29
1547
+ I
1548
+ 33
1549
+ I
1550
+ 2a
1551
+ I
1552
+ 4a
1553
+ I
1554
+ 2b
1555
+ I
1556
+ 4e
1557
+ x
1558
+ 55
1559
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/brkptmgr.rb
1560
+ p
1561
+ 1
1562
+ x
1563
+ 9
1564
+ delete_bp
1565
+ x
1566
+ 3
1567
+ add
1568
+ M
1569
+ 1
1570
+ n
1571
+ n
1572
+ x
1573
+ 3
1574
+ add
1575
+ i
1576
+ 40
1577
+ 45
1578
+ 0
1579
+ 1
1580
+ 43
1581
+ 2
1582
+ 20
1583
+ 0
1584
+ 36
1585
+ 1
1586
+ 51
1587
+ 3
1588
+ 0
1589
+ 19
1590
+ 1
1591
+ 15
1592
+ 39
1593
+ 4
1594
+ 20
1595
+ 1
1596
+ 49
1597
+ 5
1598
+ 1
1599
+ 15
1600
+ 39
1601
+ 6
1602
+ 5
1603
+ 20
1604
+ 1
1605
+ 47
1606
+ 49
1607
+ 7
1608
+ 1
1609
+ 49
1610
+ 8
1611
+ 1
1612
+ 15
1613
+ 20
1614
+ 1
1615
+ 11
1616
+ 11
1617
+ I
1618
+ 5
1619
+ I
1620
+ 2
1621
+ I
1622
+ 0
1623
+ I
1624
+ 0
1625
+ I
1626
+ 0
1627
+ p
1628
+ 9
1629
+ x
1630
+ 10
1631
+ Trepanning
1632
+ n
1633
+ x
1634
+ 10
1635
+ Breakpoint
1636
+ x
1637
+ 3
1638
+ new
1639
+ x
1640
+ 5
1641
+ @list
1642
+ x
1643
+ 2
1644
+ <<
1645
+ x
1646
+ 4
1647
+ @set
1648
+ x
1649
+ 7
1650
+ set_key
1651
+ x
1652
+ 3
1653
+ add
1654
+ p
1655
+ 11
1656
+ I
1657
+ 0
1658
+ I
1659
+ 2e
1660
+ I
1661
+ 0
1662
+ I
1663
+ 2f
1664
+ I
1665
+ f
1666
+ I
1667
+ 30
1668
+ I
1669
+ 17
1670
+ I
1671
+ 31
1672
+ I
1673
+ 24
1674
+ I
1675
+ 32
1676
+ I
1677
+ 28
1678
+ x
1679
+ 55
1680
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/brkptmgr.rb
1681
+ p
1682
+ 2
1683
+ x
1684
+ 4
1685
+ args
1686
+ x
1687
+ 5
1688
+ brkpt
1689
+ x
1690
+ 6
1691
+ empty?
1692
+ M
1693
+ 1
1694
+ n
1695
+ n
1696
+ x
1697
+ 6
1698
+ empty?
1699
+ i
1700
+ 6
1701
+ 39
1702
+ 0
1703
+ 49
1704
+ 1
1705
+ 0
1706
+ 11
1707
+ I
1708
+ 1
1709
+ I
1710
+ 0
1711
+ I
1712
+ 0
1713
+ I
1714
+ 0
1715
+ n
1716
+ p
1717
+ 2
1718
+ x
1719
+ 5
1720
+ @list
1721
+ x
1722
+ 6
1723
+ empty?
1724
+ p
1725
+ 5
1726
+ I
1727
+ 0
1728
+ I
1729
+ 35
1730
+ I
1731
+ 0
1732
+ I
1733
+ 36
1734
+ I
1735
+ 6
1736
+ x
1737
+ 55
1738
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/brkptmgr.rb
1739
+ p
1740
+ 0
1741
+ x
1742
+ 4
1743
+ find
1744
+ M
1745
+ 1
1746
+ n
1747
+ n
1748
+ x
1749
+ 4
1750
+ find
1751
+ i
1752
+ 8
1753
+ 39
1754
+ 0
1755
+ 56
1756
+ 1
1757
+ 50
1758
+ 2
1759
+ 0
1760
+ 11
1761
+ I
1762
+ 4
1763
+ I
1764
+ 2
1765
+ I
1766
+ 2
1767
+ I
1768
+ 2
1769
+ n
1770
+ p
1771
+ 3
1772
+ x
1773
+ 5
1774
+ @list
1775
+ M
1776
+ 1
1777
+ p
1778
+ 2
1779
+ x
1780
+ 9
1781
+ for_block
1782
+ t
1783
+ n
1784
+ x
1785
+ 4
1786
+ find
1787
+ i
1788
+ 72
1789
+ 57
1790
+ 19
1791
+ 0
1792
+ 15
1793
+ 20
1794
+ 0
1795
+ 49
1796
+ 0
1797
+ 0
1798
+ 13
1799
+ 9
1800
+ 23
1801
+ 15
1802
+ 20
1803
+ 0
1804
+ 49
1805
+ 1
1806
+ 0
1807
+ 21
1808
+ 1
1809
+ 1
1810
+ 83
1811
+ 2
1812
+ 9
1813
+ 70
1814
+ 26
1815
+ 93
1816
+ 0
1817
+ 15
1818
+ 29
1819
+ 38
1820
+ 0
1821
+ 20
1822
+ 0
1823
+ 31
1824
+ 30
1825
+ 8
1826
+ 65
1827
+ 26
1828
+ 93
1829
+ 1
1830
+ 15
1831
+ 24
1832
+ 13
1833
+ 45
1834
+ 3
1835
+ 4
1836
+ 12
1837
+ 49
1838
+ 5
1839
+ 1
1840
+ 10
1841
+ 55
1842
+ 8
1843
+ 60
1844
+ 15
1845
+ 1
1846
+ 25
1847
+ 8
1848
+ 65
1849
+ 15
1850
+ 92
1851
+ 1
1852
+ 27
1853
+ 34
1854
+ 92
1855
+ 0
1856
+ 27
1857
+ 8
1858
+ 71
1859
+ 1
1860
+ 11
1861
+ I
1862
+ 7
1863
+ I
1864
+ 1
1865
+ I
1866
+ 1
1867
+ I
1868
+ 1
1869
+ n
1870
+ p
1871
+ 6
1872
+ x
1873
+ 8
1874
+ enabled?
1875
+ x
1876
+ 2
1877
+ ip
1878
+ x
1879
+ 2
1880
+ ==
1881
+ x
1882
+ 13
1883
+ StandardError
1884
+ n
1885
+ x
1886
+ 3
1887
+ ===
1888
+ p
1889
+ 11
1890
+ I
1891
+ 0
1892
+ I
1893
+ 46
1894
+ I
1895
+ 4
1896
+ I
1897
+ 47
1898
+ I
1899
+ 19
1900
+ I
1901
+ 49
1902
+ I
1903
+ 2b
1904
+ I
1905
+ 4b
1906
+ I
1907
+ 46
1908
+ I
1909
+ 47
1910
+ I
1911
+ 48
1912
+ x
1913
+ 55
1914
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/brkptmgr.rb
1915
+ p
1916
+ 1
1917
+ x
1918
+ 2
1919
+ bp
1920
+ x
1921
+ 6
1922
+ detect
1923
+ p
1924
+ 5
1925
+ I
1926
+ 0
1927
+ I
1928
+ 45
1929
+ I
1930
+ 0
1931
+ I
1932
+ 46
1933
+ I
1934
+ 8
1935
+ x
1936
+ 55
1937
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/brkptmgr.rb
1938
+ p
1939
+ 2
1940
+ x
1941
+ 4
1942
+ meth
1943
+ x
1944
+ 2
1945
+ ip
1946
+ x
1947
+ 3
1948
+ max
1949
+ M
1950
+ 1
1951
+ n
1952
+ n
1953
+ x
1954
+ 3
1955
+ max
1956
+ i
1957
+ 16
1958
+ 39
1959
+ 0
1960
+ 56
1961
+ 1
1962
+ 50
1963
+ 2
1964
+ 0
1965
+ 49
1966
+ 3
1967
+ 0
1968
+ 13
1969
+ 10
1970
+ 15
1971
+ 15
1972
+ 78
1973
+ 11
1974
+ I
1975
+ 2
1976
+ I
1977
+ 0
1978
+ I
1979
+ 0
1980
+ I
1981
+ 0
1982
+ n
1983
+ p
1984
+ 4
1985
+ x
1986
+ 5
1987
+ @list
1988
+ M
1989
+ 1
1990
+ p
1991
+ 2
1992
+ x
1993
+ 9
1994
+ for_block
1995
+ t
1996
+ n
1997
+ x
1998
+ 3
1999
+ max
2000
+ i
2001
+ 10
2002
+ 57
2003
+ 19
2004
+ 0
2005
+ 15
2006
+ 20
2007
+ 0
2008
+ 49
2009
+ 0
2010
+ 0
2011
+ 11
2012
+ I
2013
+ 3
2014
+ I
2015
+ 1
2016
+ I
2017
+ 1
2018
+ I
2019
+ 1
2020
+ n
2021
+ p
2022
+ 1
2023
+ x
2024
+ 2
2025
+ id
2026
+ p
2027
+ 3
2028
+ I
2029
+ 0
2030
+ I
2031
+ 51
2032
+ I
2033
+ a
2034
+ x
2035
+ 55
2036
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/brkptmgr.rb
2037
+ p
2038
+ 1
2039
+ x
2040
+ 2
2041
+ bp
2042
+ x
2043
+ 3
2044
+ map
2045
+ x
2046
+ 3
2047
+ max
2048
+ p
2049
+ 5
2050
+ I
2051
+ 0
2052
+ I
2053
+ 50
2054
+ I
2055
+ 0
2056
+ I
2057
+ 51
2058
+ I
2059
+ 10
2060
+ x
2061
+ 55
2062
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/brkptmgr.rb
2063
+ p
2064
+ 0
2065
+ x
2066
+ 7
2067
+ set_key
2068
+ M
2069
+ 1
2070
+ n
2071
+ n
2072
+ x
2073
+ 7
2074
+ set_key
2075
+ i
2076
+ 13
2077
+ 20
2078
+ 0
2079
+ 49
2080
+ 0
2081
+ 0
2082
+ 20
2083
+ 0
2084
+ 49
2085
+ 1
2086
+ 0
2087
+ 35
2088
+ 2
2089
+ 11
2090
+ I
2091
+ 3
2092
+ I
2093
+ 1
2094
+ I
2095
+ 1
2096
+ I
2097
+ 1
2098
+ n
2099
+ p
2100
+ 2
2101
+ x
2102
+ 6
2103
+ method
2104
+ x
2105
+ 2
2106
+ ip
2107
+ p
2108
+ 5
2109
+ I
2110
+ 0
2111
+ I
2112
+ 55
2113
+ I
2114
+ 0
2115
+ I
2116
+ 56
2117
+ I
2118
+ d
2119
+ x
2120
+ 55
2121
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/brkptmgr.rb
2122
+ p
2123
+ 1
2124
+ x
2125
+ 2
2126
+ bp
2127
+ x
2128
+ 4
2129
+ size
2130
+ M
2131
+ 1
2132
+ n
2133
+ n
2134
+ x
2135
+ 4
2136
+ size
2137
+ i
2138
+ 6
2139
+ 39
2140
+ 0
2141
+ 49
2142
+ 1
2143
+ 0
2144
+ 11
2145
+ I
2146
+ 1
2147
+ I
2148
+ 0
2149
+ I
2150
+ 0
2151
+ I
2152
+ 0
2153
+ n
2154
+ p
2155
+ 2
2156
+ x
2157
+ 5
2158
+ @list
2159
+ x
2160
+ 4
2161
+ size
2162
+ p
2163
+ 5
2164
+ I
2165
+ 0
2166
+ I
2167
+ 59
2168
+ I
2169
+ 0
2170
+ I
2171
+ 5a
2172
+ I
2173
+ 6
2174
+ x
2175
+ 55
2176
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/brkptmgr.rb
2177
+ p
2178
+ 0
2179
+ x
2180
+ 5
2181
+ reset
2182
+ M
2183
+ 1
2184
+ n
2185
+ n
2186
+ x
2187
+ 5
2188
+ reset
2189
+ i
2190
+ 40
2191
+ 39
2192
+ 0
2193
+ 56
2194
+ 1
2195
+ 50
2196
+ 2
2197
+ 0
2198
+ 15
2199
+ 35
2200
+ 0
2201
+ 38
2202
+ 0
2203
+ 15
2204
+ 45
2205
+ 3
2206
+ 4
2207
+ 13
2208
+ 71
2209
+ 5
2210
+ 47
2211
+ 9
2212
+ 34
2213
+ 47
2214
+ 49
2215
+ 6
2216
+ 0
2217
+ 13
2218
+ 47
2219
+ 49
2220
+ 7
2221
+ 0
2222
+ 15
2223
+ 8
2224
+ 37
2225
+ 49
2226
+ 5
2227
+ 0
2228
+ 38
2229
+ 8
2230
+ 11
2231
+ I
2232
+ 2
2233
+ I
2234
+ 0
2235
+ I
2236
+ 0
2237
+ I
2238
+ 0
2239
+ n
2240
+ p
2241
+ 9
2242
+ x
2243
+ 5
2244
+ @list
2245
+ M
2246
+ 1
2247
+ p
2248
+ 2
2249
+ x
2250
+ 9
2251
+ for_block
2252
+ t
2253
+ n
2254
+ x
2255
+ 5
2256
+ reset
2257
+ i
2258
+ 10
2259
+ 57
2260
+ 19
2261
+ 0
2262
+ 15
2263
+ 20
2264
+ 0
2265
+ 49
2266
+ 0
2267
+ 0
2268
+ 11
2269
+ I
2270
+ 3
2271
+ I
2272
+ 1
2273
+ I
2274
+ 1
2275
+ I
2276
+ 1
2277
+ n
2278
+ p
2279
+ 1
2280
+ x
2281
+ 7
2282
+ remove!
2283
+ p
2284
+ 3
2285
+ I
2286
+ 0
2287
+ I
2288
+ 5e
2289
+ I
2290
+ a
2291
+ x
2292
+ 55
2293
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/brkptmgr.rb
2294
+ p
2295
+ 1
2296
+ x
2297
+ 2
2298
+ bp
2299
+ x
2300
+ 4
2301
+ each
2302
+ x
2303
+ 3
2304
+ Set
2305
+ n
2306
+ x
2307
+ 3
2308
+ new
2309
+ x
2310
+ 8
2311
+ allocate
2312
+ x
2313
+ 10
2314
+ initialize
2315
+ x
2316
+ 4
2317
+ @set
2318
+ p
2319
+ 9
2320
+ I
2321
+ 0
2322
+ I
2323
+ 5d
2324
+ I
2325
+ 0
2326
+ I
2327
+ 5e
2328
+ I
2329
+ 8
2330
+ I
2331
+ 5f
2332
+ I
2333
+ d
2334
+ I
2335
+ 60
2336
+ I
2337
+ 28
2338
+ x
2339
+ 55
2340
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/brkptmgr.rb
2341
+ p
2342
+ 0
2343
+ p
2344
+ 31
2345
+ I
2346
+ 2
2347
+ I
2348
+ 7
2349
+ I
2350
+ a
2351
+ I
2352
+ 8
2353
+ I
2354
+ 12
2355
+ I
2356
+ a
2357
+ I
2358
+ 20
2359
+ I
2360
+ f
2361
+ I
2362
+ 2e
2363
+ I
2364
+ 14
2365
+ I
2366
+ 3c
2367
+ I
2368
+ 1b
2369
+ I
2370
+ 46
2371
+ I
2372
+ 1d
2373
+ I
2374
+ 54
2375
+ I
2376
+ 27
2377
+ I
2378
+ 62
2379
+ I
2380
+ 2e
2381
+ I
2382
+ 70
2383
+ I
2384
+ 35
2385
+ I
2386
+ 7e
2387
+ I
2388
+ 45
2389
+ I
2390
+ 8c
2391
+ I
2392
+ 50
2393
+ I
2394
+ 9a
2395
+ I
2396
+ 55
2397
+ I
2398
+ a8
2399
+ I
2400
+ 59
2401
+ I
2402
+ b6
2403
+ I
2404
+ 5d
2405
+ I
2406
+ c4
2407
+ x
2408
+ 55
2409
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/brkptmgr.rb
2410
+ p
2411
+ 0
2412
+ x
2413
+ 13
2414
+ attach_method
2415
+ x
2416
+ 11
2417
+ active_path
2418
+ x
2419
+ 7
2420
+ Globals
2421
+ x
2422
+ 2
2423
+ $0
2424
+ x
2425
+ 2
2426
+ []
2427
+ x
2428
+ 2
2429
+ ==
2430
+ x
2431
+ 9
2432
+ bp_status
2433
+ M
2434
+ 1
2435
+ n
2436
+ n
2437
+ x
2438
+ 9
2439
+ bp_status
2440
+ i
2441
+ 85
2442
+ 5
2443
+ 7
2444
+ 0
2445
+ 20
2446
+ 0
2447
+ 49
2448
+ 1
2449
+ 0
2450
+ 49
2451
+ 2
2452
+ 0
2453
+ 47
2454
+ 101
2455
+ 3
2456
+ 63
2457
+ 2
2458
+ 47
2459
+ 49
2460
+ 4
2461
+ 1
2462
+ 15
2463
+ 5
2464
+ 7
2465
+ 5
2466
+ 20
2467
+ 0
2468
+ 49
2469
+ 6
2470
+ 0
2471
+ 49
2472
+ 2
2473
+ 0
2474
+ 47
2475
+ 101
2476
+ 3
2477
+ 63
2478
+ 2
2479
+ 47
2480
+ 49
2481
+ 4
2482
+ 1
2483
+ 15
2484
+ 5
2485
+ 7
2486
+ 7
2487
+ 20
2488
+ 0
2489
+ 49
2490
+ 8
2491
+ 0
2492
+ 47
2493
+ 101
2494
+ 3
2495
+ 63
2496
+ 2
2497
+ 47
2498
+ 49
2499
+ 4
2500
+ 1
2501
+ 15
2502
+ 5
2503
+ 20
2504
+ 0
2505
+ 47
2506
+ 49
2507
+ 9
2508
+ 1
2509
+ 15
2510
+ 5
2511
+ 7
2512
+ 10
2513
+ 20
2514
+ 1
2515
+ 47
2516
+ 101
2517
+ 3
2518
+ 7
2519
+ 11
2520
+ 63
2521
+ 3
2522
+ 47
2523
+ 49
2524
+ 4
2525
+ 1
2526
+ 11
2527
+ I
2528
+ 6
2529
+ I
2530
+ 2
2531
+ I
2532
+ 2
2533
+ I
2534
+ 2
2535
+ n
2536
+ p
2537
+ 12
2538
+ s
2539
+ 11
2540
+ list size:
2541
+ x
2542
+ 4
2543
+ list
2544
+ x
2545
+ 4
2546
+ size
2547
+ x
2548
+ 4
2549
+ to_s
2550
+ x
2551
+ 4
2552
+ puts
2553
+ s
2554
+ 10
2555
+ set size:
2556
+ x
2557
+ 3
2558
+ set
2559
+ s
2560
+ 5
2561
+ max:
2562
+ x
2563
+ 3
2564
+ max
2565
+ x
2566
+ 1
2567
+ p
2568
+ s
2569
+ 4
2570
+ ---
2571
+ s
2572
+ 4
2573
+ ---
2574
+ p
2575
+ 13
2576
+ I
2577
+ 0
2578
+ I
2579
+ 65
2580
+ I
2581
+ 0
2582
+ I
2583
+ 66
2584
+ I
2585
+ 15
2586
+ I
2587
+ 67
2588
+ I
2589
+ 2a
2590
+ I
2591
+ 68
2592
+ I
2593
+ 3c
2594
+ I
2595
+ 69
2596
+ I
2597
+ 44
2598
+ I
2599
+ 6a
2600
+ I
2601
+ 55
2602
+ x
2603
+ 55
2604
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/brkptmgr.rb
2605
+ p
2606
+ 2
2607
+ x
2608
+ 6
2609
+ brkpts
2610
+ x
2611
+ 1
2612
+ i
2613
+ x
2614
+ 17
2615
+ method_visibility
2616
+ x
2617
+ 15
2618
+ add_defn_method
2619
+ x
2620
+ 8
2621
+ Rubinius
2622
+ n
2623
+ x
2624
+ 14
2625
+ CompiledMethod
2626
+ x
2627
+ 9
2628
+ of_sender
2629
+ n
2630
+ x
2631
+ 3
2632
+ new
2633
+ x
2634
+ 8
2635
+ allocate
2636
+ x
2637
+ 10
2638
+ initialize
2639
+ s
2640
+ 7
2641
+ <start>
2642
+ x
2643
+ 3
2644
+ add
2645
+ x
2646
+ 1
2647
+ p
2648
+ x
2649
+ 10
2650
+ Trepanning
2651
+ n
2652
+ x
2653
+ 10
2654
+ Breakpoint
2655
+ s
2656
+ 9
2657
+ <2nd one>
2658
+ x
2659
+ 2
2660
+ <<
2661
+ x
2662
+ 4
2663
+ meth
2664
+ x
2665
+ 2
2666
+ ip
2667
+ x
2668
+ 4
2669
+ find
2670
+ s
2671
+ 9
2672
+ --- 2 ---
2673
+ x
2674
+ 4
2675
+ puts
2676
+ x
2677
+ 6
2678
+ delete
2679
+ n
2680
+ s
2681
+ 11
2682
+ <dup brkpt>
2683
+ n
2684
+ x
2685
+ 15
2686
+ delete_by_brkpt
2687
+ p
2688
+ 61
2689
+ I
2690
+ 0
2691
+ I
2692
+ 2
2693
+ I
2694
+ 9
2695
+ I
2696
+ 3
2697
+ I
2698
+ 1b
2699
+ I
2700
+ 4
2701
+ I
2702
+ 24
2703
+ I
2704
+ 5
2705
+ I
2706
+ 3f
2707
+ I
2708
+ 64
2709
+ I
2710
+ 4f
2711
+ I
2712
+ 65
2713
+ I
2714
+ 5d
2715
+ I
2716
+ 6d
2717
+ I
2718
+ 68
2719
+ I
2720
+ 6f
2721
+ I
2722
+ 83
2723
+ I
2724
+ 70
2725
+ I
2726
+ 91
2727
+ I
2728
+ 71
2729
+ I
2730
+ 9d
2731
+ I
2732
+ 72
2733
+ I
2734
+ a6
2735
+ I
2736
+ 74
2737
+ I
2738
+ d5
2739
+ I
2740
+ 75
2741
+ I
2742
+ dd
2743
+ I
2744
+ 76
2745
+ I
2746
+ f2
2747
+ I
2748
+ 77
2749
+ I
2750
+ fe
2751
+ I
2752
+ 78
2753
+ I
2754
+ 107
2755
+ I
2756
+ 7a
2757
+ I
2758
+ 113
2759
+ I
2760
+ 7b
2761
+ I
2762
+ 11f
2763
+ I
2764
+ 7c
2765
+ I
2766
+ 129
2767
+ I
2768
+ 80
2769
+ I
2770
+ 156
2771
+ I
2772
+ 81
2773
+ I
2774
+ 15e
2775
+ I
2776
+ 82
2777
+ I
2778
+ 168
2779
+ I
2780
+ 83
2781
+ I
2782
+ 195
2783
+ I
2784
+ 84
2785
+ I
2786
+ 19d
2787
+ I
2788
+ 85
2789
+ I
2790
+ 1a7
2791
+ I
2792
+ 86
2793
+ I
2794
+ 1af
2795
+ I
2796
+ 87
2797
+ I
2798
+ 1b9
2799
+ I
2800
+ 88
2801
+ I
2802
+ 1c1
2803
+ I
2804
+ 89
2805
+ I
2806
+ 1cc
2807
+ I
2808
+ 64
2809
+ I
2810
+ 1d0
2811
+ x
2812
+ 55
2813
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/brkptmgr.rb
2814
+ p
2815
+ 4
2816
+ x
2817
+ 4
2818
+ meth
2819
+ x
2820
+ 6
2821
+ brkpts
2822
+ x
2823
+ 2
2824
+ b2
2825
+ x
2826
+ 2
2827
+ b3