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