rbx-trepanning 0.0.4-universal-rubinius-1.2 → 0.0.6-universal-rubinius-1.2

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