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