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/client.rbc DELETED
@@ -1,1225 +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
- 64
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
- 99
50
- 7
51
- 6
52
- 65
53
- 49
54
- 7
55
- 2
56
- 13
57
- 99
58
- 12
59
- 7
60
- 8
61
- 12
62
- 7
63
- 9
64
- 12
65
- 65
66
- 12
67
- 49
68
- 10
69
- 4
70
- 15
71
- 49
72
- 8
73
- 0
74
- 15
75
- 2
76
- 11
77
- I
78
- 6
79
- I
80
- 0
81
- I
82
- 0
83
- I
84
- 0
85
- n
86
- p
87
- 11
88
- s
89
- 8
90
- rubygems
91
- x
92
- 7
93
- require
94
- s
95
- 16
96
- require_relative
97
- s
98
- 7
99
- default
100
- x
101
- 16
102
- require_relative
103
- s
104
- 21
105
- ../interface/comcodes
106
- x
107
- 10
108
- Trepanning
109
- x
110
- 11
111
- open_module
112
- x
113
- 15
114
- __module_init__
115
- M
116
- 1
117
- n
118
- n
119
- x
120
- 10
121
- Trepanning
122
- i
123
- 35
124
- 5
125
- 66
126
- 5
127
- 45
128
- 0
129
- 1
130
- 43
131
- 2
132
- 47
133
- 49
134
- 3
135
- 1
136
- 15
137
- 99
138
- 7
139
- 4
140
- 7
141
- 5
142
- 65
143
- 67
144
- 49
145
- 6
146
- 0
147
- 49
148
- 7
149
- 4
150
- 15
151
- 5
152
- 7
153
- 4
154
- 47
155
- 49
156
- 8
157
- 1
158
- 11
159
- I
160
- 5
161
- I
162
- 0
163
- I
164
- 0
165
- I
166
- 0
167
- n
168
- p
169
- 9
170
- x
171
- 10
172
- Trepanning
173
- n
174
- x
175
- 19
176
- RemoteCommunication
177
- x
178
- 7
179
- include
180
- x
181
- 12
182
- start_client
183
- M
184
- 1
185
- n
186
- n
187
- x
188
- 12
189
- start_client
190
- i
191
- 605
192
- 5
193
- 7
194
- 0
195
- 64
196
- 47
197
- 49
198
- 1
199
- 1
200
- 15
201
- 45
202
- 2
203
- 3
204
- 13
205
- 71
206
- 4
207
- 47
208
- 9
209
- 105
210
- 47
211
- 49
212
- 5
213
- 0
214
- 13
215
- 44
216
- 43
217
- 6
218
- 4
219
- 6
220
- 49
221
- 7
222
- 1
223
- 13
224
- 7
225
- 8
226
- 2
227
- 49
228
- 9
229
- 2
230
- 15
231
- 13
232
- 7
233
- 10
234
- 35
235
- 0
236
- 49
237
- 9
238
- 2
239
- 15
240
- 13
241
- 7
242
- 11
243
- 20
244
- 0
245
- 7
246
- 12
247
- 49
248
- 13
249
- 1
250
- 49
251
- 9
252
- 2
253
- 15
254
- 13
255
- 7
256
- 14
257
- 2
258
- 49
259
- 9
260
- 2
261
- 15
262
- 13
263
- 7
264
- 15
265
- 20
266
- 0
267
- 7
268
- 15
269
- 49
270
- 13
271
- 1
272
- 49
273
- 9
274
- 2
275
- 15
276
- 13
277
- 7
278
- 16
279
- 20
280
- 0
281
- 7
282
- 16
283
- 49
284
- 13
285
- 1
286
- 49
287
- 9
288
- 2
289
- 15
290
- 47
291
- 49
292
- 17
293
- 1
294
- 15
295
- 8
296
- 183
297
- 44
298
- 43
299
- 6
300
- 4
301
- 6
302
- 49
303
- 7
304
- 1
305
- 13
306
- 7
307
- 8
308
- 2
309
- 49
310
- 9
311
- 2
312
- 15
313
- 13
314
- 7
315
- 10
316
- 35
317
- 0
318
- 49
319
- 9
320
- 2
321
- 15
322
- 13
323
- 7
324
- 11
325
- 20
326
- 0
327
- 7
328
- 12
329
- 49
330
- 13
331
- 1
332
- 49
333
- 9
334
- 2
335
- 15
336
- 13
337
- 7
338
- 14
339
- 2
340
- 49
341
- 9
342
- 2
343
- 15
344
- 13
345
- 7
346
- 15
347
- 20
348
- 0
349
- 7
350
- 15
351
- 49
352
- 13
353
- 1
354
- 49
355
- 9
356
- 2
357
- 15
358
- 13
359
- 7
360
- 16
361
- 20
362
- 0
363
- 7
364
- 16
365
- 49
366
- 13
367
- 1
368
- 49
369
- 9
370
- 2
371
- 15
372
- 49
373
- 4
374
- 1
375
- 19
376
- 1
377
- 15
378
- 20
379
- 1
380
- 49
381
- 18
382
- 0
383
- 77
384
- 49
385
- 13
386
- 1
387
- 19
388
- 2
389
- 15
390
- 2
391
- 9
392
- 603
393
- 26
394
- 93
395
- 0
396
- 15
397
- 29
398
- 227
399
- 0
400
- 20
401
- 2
402
- 49
403
- 19
404
- 0
405
- 97
406
- 37
407
- 19
408
- 3
409
- 15
410
- 37
411
- 19
412
- 4
413
- 15
414
- 15
415
- 2
416
- 30
417
- 8
418
- 283
419
- 26
420
- 93
421
- 1
422
- 15
423
- 24
424
- 13
425
- 45
426
- 20
427
- 21
428
- 12
429
- 49
430
- 22
431
- 1
432
- 10
433
- 256
434
- 13
435
- 45
436
- 23
437
- 24
438
- 43
439
- 25
440
- 12
441
- 49
442
- 22
443
- 1
444
- 10
445
- 256
446
- 8
447
- 278
448
- 15
449
- 5
450
- 7
451
- 26
452
- 64
453
- 47
454
- 49
455
- 1
456
- 1
457
- 15
458
- 1
459
- 8
460
- 272
461
- 25
462
- 8
463
- 283
464
- 25
465
- 92
466
- 0
467
- 27
468
- 8
469
- 604
470
- 15
471
- 92
472
- 1
473
- 27
474
- 34
475
- 92
476
- 0
477
- 27
478
- 15
479
- 20
480
- 3
481
- 13
482
- 45
483
- 27
484
- 28
485
- 12
486
- 49
487
- 22
488
- 1
489
- 9
490
- 309
491
- 15
492
- 5
493
- 20
494
- 4
495
- 47
496
- 49
497
- 29
498
- 1
499
- 8
500
- 599
501
- 13
502
- 45
503
- 30
504
- 31
505
- 12
506
- 49
507
- 22
508
- 1
509
- 9
510
- 353
511
- 15
512
- 20
513
- 2
514
- 20
515
- 4
516
- 2
517
- 49
518
- 32
519
- 2
520
- 19
521
- 5
522
- 15
523
- 20
524
- 2
525
- 45
526
- 33
527
- 34
528
- 20
529
- 5
530
- 9
531
- 345
532
- 7
533
- 35
534
- 64
535
- 8
536
- 348
537
- 7
538
- 36
539
- 64
540
- 49
541
- 37
542
- 2
543
- 8
544
- 599
545
- 13
546
- 45
547
- 38
548
- 39
549
- 12
550
- 49
551
- 22
552
- 1
553
- 9
554
- 397
555
- 15
556
- 20
557
- 2
558
- 20
559
- 4
560
- 2
561
- 49
562
- 32
563
- 2
564
- 19
565
- 5
566
- 15
567
- 20
568
- 2
569
- 45
570
- 33
571
- 40
572
- 20
573
- 5
574
- 9
575
- 389
576
- 7
577
- 35
578
- 64
579
- 8
580
- 392
581
- 7
582
- 36
583
- 64
584
- 49
585
- 37
586
- 2
587
- 8
588
- 599
589
- 13
590
- 45
591
- 41
592
- 42
593
- 12
594
- 49
595
- 22
596
- 1
597
- 9
598
- 546
599
- 15
600
- 26
601
- 93
602
- 2
603
- 15
604
- 29
605
- 427
606
- 0
607
- 20
608
- 2
609
- 20
610
- 4
611
- 49
612
- 43
613
- 1
614
- 19
615
- 6
616
- 30
617
- 8
618
- 471
619
- 26
620
- 93
621
- 3
622
- 15
623
- 24
624
- 13
625
- 45
626
- 20
627
- 44
628
- 12
629
- 49
630
- 22
631
- 1
632
- 10
633
- 444
634
- 8
635
- 466
636
- 15
637
- 5
638
- 7
639
- 45
640
- 64
641
- 47
642
- 49
643
- 1
644
- 1
645
- 15
646
- 1
647
- 8
648
- 460
649
- 25
650
- 8
651
- 471
652
- 25
653
- 92
654
- 2
655
- 27
656
- 8
657
- 604
658
- 15
659
- 92
660
- 3
661
- 27
662
- 34
663
- 92
664
- 2
665
- 27
666
- 15
667
- 26
668
- 93
669
- 4
670
- 15
671
- 29
672
- 495
673
- 0
674
- 20
675
- 2
676
- 45
677
- 46
678
- 47
679
- 20
680
- 6
681
- 49
682
- 37
683
- 2
684
- 30
685
- 8
686
- 541
687
- 26
688
- 93
689
- 5
690
- 15
691
- 24
692
- 13
693
- 45
694
- 23
695
- 48
696
- 43
697
- 25
698
- 12
699
- 49
700
- 22
701
- 1
702
- 10
703
- 514
704
- 8
705
- 536
706
- 15
707
- 5
708
- 7
709
- 49
710
- 64
711
- 47
712
- 49
713
- 1
714
- 1
715
- 15
716
- 1
717
- 8
718
- 530
719
- 25
720
- 8
721
- 541
722
- 25
723
- 92
724
- 4
725
- 27
726
- 8
727
- 604
728
- 15
729
- 92
730
- 5
731
- 27
732
- 34
733
- 92
734
- 4
735
- 27
736
- 8
737
- 599
738
- 13
739
- 45
740
- 50
741
- 51
742
- 12
743
- 49
744
- 22
745
- 1
746
- 9
747
- 562
748
- 15
749
- 1
750
- 8
751
- 604
752
- 8
753
- 599
754
- 13
755
- 45
756
- 52
757
- 53
758
- 12
759
- 49
760
- 22
761
- 1
762
- 9
763
- 578
764
- 15
765
- 1
766
- 8
767
- 604
768
- 8
769
- 599
770
- 15
771
- 99
772
- 43
773
- 54
774
- 7
775
- 55
776
- 49
777
- 13
778
- 1
779
- 7
780
- 56
781
- 20
782
- 3
783
- 47
784
- 101
785
- 57
786
- 63
787
- 2
788
- 49
789
- 1
790
- 1
791
- 15
792
- 68
793
- 8
794
- 198
795
- 1
796
- 11
797
- I
798
- 14
799
- I
800
- 7
801
- I
802
- 1
803
- I
804
- 1
805
- n
806
- p
807
- 58
808
- s
809
- 19
810
- Client option given
811
- x
812
- 4
813
- puts
814
- x
815
- 6
816
- Trepan
817
- n
818
- x
819
- 3
820
- new
821
- x
822
- 8
823
- allocate
824
- x
825
- 4
826
- Hash
827
- x
828
- 16
829
- new_from_literal
830
- x
831
- 6
832
- client
833
- x
834
- 3
835
- []=
836
- x
837
- 8
838
- cmdfiles
839
- x
840
- 11
841
- initial_dir
842
- x
843
- 5
844
- chdir
845
- x
846
- 2
847
- []
848
- x
849
- 2
850
- nx
851
- x
852
- 4
853
- host
854
- x
855
- 4
856
- port
857
- x
858
- 10
859
- initialize
860
- x
861
- 4
862
- intf
863
- x
864
- 11
865
- read_remote
866
- x
867
- 8
868
- EOFError
869
- n
870
- x
871
- 3
872
- ===
873
- x
874
- 5
875
- Errno
876
- n
877
- x
878
- 5
879
- EPIPE
880
- s
881
- 41
882
- Remote debugged process closed connection
883
- x
884
- 5
885
- PRINT
886
- n
887
- x
888
- 5
889
- print
890
- x
891
- 12
892
- CONFIRM_TRUE
893
- n
894
- x
895
- 7
896
- confirm
897
- x
898
- 13
899
- CONFIRM_REPLY
900
- n
901
- s
902
- 1
903
- Y
904
- s
905
- 1
906
- N
907
- x
908
- 12
909
- write_remote
910
- x
911
- 13
912
- CONFIRM_FALSE
913
- n
914
- n
915
- x
916
- 6
917
- PROMPT
918
- n
919
- x
920
- 12
921
- read_command
922
- n
923
- s
924
- 26
925
- user-side EOF. Quitting...
926
- x
927
- 7
928
- COMMAND
929
- n
930
- n
931
- s
932
- 28
933
- Remote debugged process died
934
- x
935
- 4
936
- QUIT
937
- n
938
- x
939
- 7
940
- RESTART
941
- n
942
- x
943
- 7
944
- Globals
945
- x
946
- 7
947
- $stderr
948
- s
949
- 25
950
- ** Unknown control code:
951
- x
952
- 4
953
- to_s
954
- p
955
- 93
956
- I
957
- -1
958
- I
959
- 9
960
- I
961
- 0
962
- I
963
- a
964
- I
965
- 9
966
- I
967
- b
968
- I
969
- 17
970
- I
971
- 10
972
- I
973
- 20
974
- I
975
- b
976
- I
977
- 28
978
- I
979
- c
980
- I
981
- 31
982
- I
983
- d
984
- I
985
- 3f
986
- I
987
- e
988
- I
989
- 47
990
- I
991
- f
992
- I
993
- 55
994
- I
995
- 10
996
- I
997
- 72
998
- I
999
- b
1000
- I
1001
- 7a
1002
- I
1003
- c
1004
- I
1005
- 83
1006
- I
1007
- d
1008
- I
1009
- 91
1010
- I
1011
- e
1012
- I
1013
- 99
1014
- I
1015
- f
1016
- I
1017
- a7
1018
- I
1019
- 10
1020
- I
1021
- b7
1022
- I
1023
- b
1024
- I
1025
- ba
1026
- I
1027
- 12
1028
- I
1029
- c6
1030
- I
1031
- 13
1032
- I
1033
- c9
1034
- I
1035
- 15
1036
- I
1037
- e8
1038
- I
1039
- 16
1040
- I
1041
- 101
1042
- I
1043
- 17
1044
- I
1045
- 10a
1046
- I
1047
- 18
1048
- I
1049
- 11f
1050
- I
1051
- 1b
1052
- I
1053
- 122
1054
- I
1055
- 1c
1056
- I
1057
- 12c
1058
- I
1059
- 1d
1060
- I
1061
- 136
1062
- I
1063
- 1e
1064
- I
1065
- 140
1066
- I
1067
- 1f
1068
- I
1069
- 14b
1070
- I
1071
- 20
1072
- I
1073
- 162
1074
- I
1075
- 21
1076
- I
1077
- 16c
1078
- I
1079
- 22
1080
- I
1081
- 177
1082
- I
1083
- 23
1084
- I
1085
- 18e
1086
- I
1087
- 24
1088
- I
1089
- 198
1090
- I
1091
- 28
1092
- I
1093
- 1b0
1094
- I
1095
- 29
1096
- I
1097
- 1bd
1098
- I
1099
- 2a
1100
- I
1101
- 1c6
1102
- I
1103
- 2b
1104
- I
1105
- 1db
1106
- I
1107
- 2e
1108
- I
1109
- 1f4
1110
- I
1111
- 2f
1112
- I
1113
- 203
1114
- I
1115
- 30
1116
- I
1117
- 20c
1118
- I
1119
- 31
1120
- I
1121
- 223
1122
- I
1123
- 33
1124
- I
1125
- 22d
1126
- I
1127
- 34
1128
- I
1129
- 233
1130
- I
1131
- 35
1132
- I
1133
- 23d
1134
- I
1135
- 36
1136
- I
1137
- 243
1138
- I
1139
- 38
1140
- I
1141
- 25d
1142
- x
1143
- 53
1144
- /home/rocky-rvm/.rvm/src/rbx-trepanning/app/client.rb
1145
- p
1146
- 7
1147
- x
1148
- 7
1149
- options
1150
- x
1151
- 4
1152
- dbgr
1153
- x
1154
- 4
1155
- intf
1156
- x
1157
- 12
1158
- control_code
1159
- x
1160
- 4
1161
- line
1162
- x
1163
- 8
1164
- response
1165
- x
1166
- 7
1167
- command
1168
- x
1169
- 17
1170
- method_visibility
1171
- x
1172
- 15
1173
- add_defn_method
1174
- x
1175
- 15
1176
- module_function
1177
- p
1178
- 7
1179
- I
1180
- 2
1181
- I
1182
- 8
1183
- I
1184
- d
1185
- I
1186
- 9
1187
- I
1188
- 1b
1189
- I
1190
- 3c
1191
- I
1192
- 23
1193
- x
1194
- 53
1195
- /home/rocky-rvm/.rvm/src/rbx-trepanning/app/client.rb
1196
- p
1197
- 0
1198
- x
1199
- 13
1200
- attach_method
1201
- p
1202
- 9
1203
- I
1204
- 0
1205
- I
1206
- 3
1207
- I
1208
- 12
1209
- I
1210
- 4
1211
- I
1212
- 1b
1213
- I
1214
- 5
1215
- I
1216
- 24
1217
- I
1218
- 7
1219
- I
1220
- 40
1221
- x
1222
- 53
1223
- /home/rocky-rvm/.rvm/src/rbx-trepanning/app/client.rb
1224
- p
1225
- 0