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