rbx-trepanning 0.0.6-universal-rubinius-1.2 → 0.0.7-universal-rubinius-1.2

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