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