looksee 1.0.3 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -30,26 +30,31 @@ module Looksee
30
30
 
31
31
  def internal_undefined_instance_methods(mod)
32
32
  names = []
33
- mod.method_table.each_entry do |entry|
34
- names << entry.name if entry.visibility.equal?(:undef)
33
+ mod.method_table.entries.each do |(name, method, visibility)|
34
+ names << name if visibility.equal?(:undef)
35
35
  end
36
36
  names
37
37
  end
38
38
 
39
39
  def singleton_class?(object)
40
- object.is_a?(Class) && object.__metaclass_object__
40
+ object.is_a?(Class) && !!::Rubinius::Type.singleton_class_object(object)
41
41
  end
42
42
 
43
43
  def singleton_instance(singleton_class)
44
44
  singleton_class?(singleton_class) or
45
45
  raise TypeError, "expected singleton class, got #{singleton_class.class}"
46
- singleton_class.__metaclass_object__
46
+ ::Rubinius::Type.singleton_class_object(singleton_class)
47
47
  end
48
48
 
49
49
  def module_name(mod)
50
50
  mod.is_a?(Module) or
51
51
  raise TypeError, "expected module, got #{mod.class}"
52
- mod.__name__
52
+
53
+ if ::Rubinius::Type.respond_to?(:module_name)
54
+ ::Rubinius::Type.module_name(mod) || ''
55
+ else
56
+ mod.__name__
57
+ end
53
58
  end
54
59
 
55
60
  def source_location(method)
@@ -0,0 +1,1650 @@
1
+ !RBIX
2
+ 9595534255132031488
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 46
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
+ 99
32
+ 7
33
+ 3
34
+ 65
35
+ 49
36
+ 4
37
+ 2
38
+ 13
39
+ 99
40
+ 12
41
+ 7
42
+ 5
43
+ 12
44
+ 7
45
+ 6
46
+ 12
47
+ 65
48
+ 12
49
+ 49
50
+ 7
51
+ 4
52
+ 15
53
+ 49
54
+ 5
55
+ 0
56
+ 15
57
+ 2
58
+ 11
59
+ I
60
+ 6
61
+ I
62
+ 0
63
+ I
64
+ 0
65
+ I
66
+ 0
67
+ n
68
+ p
69
+ 8
70
+ s
71
+ 20
72
+ looksee/adapter/base
73
+ x
74
+ 7
75
+ require
76
+ s
77
+ 11
78
+ looksee/rbx
79
+ x
80
+ 7
81
+ Looksee
82
+ x
83
+ 11
84
+ open_module
85
+ x
86
+ 15
87
+ __module_init__
88
+ M
89
+ 1
90
+ n
91
+ n
92
+ x
93
+ 7
94
+ Looksee
95
+ i
96
+ 28
97
+ 5
98
+ 66
99
+ 99
100
+ 7
101
+ 0
102
+ 65
103
+ 49
104
+ 1
105
+ 2
106
+ 13
107
+ 99
108
+ 12
109
+ 7
110
+ 2
111
+ 12
112
+ 7
113
+ 3
114
+ 12
115
+ 65
116
+ 12
117
+ 49
118
+ 4
119
+ 4
120
+ 15
121
+ 49
122
+ 2
123
+ 0
124
+ 11
125
+ I
126
+ 6
127
+ I
128
+ 0
129
+ I
130
+ 0
131
+ I
132
+ 0
133
+ n
134
+ p
135
+ 5
136
+ x
137
+ 7
138
+ Adapter
139
+ x
140
+ 11
141
+ open_module
142
+ x
143
+ 15
144
+ __module_init__
145
+ M
146
+ 1
147
+ n
148
+ n
149
+ x
150
+ 7
151
+ Adapter
152
+ i
153
+ 31
154
+ 5
155
+ 66
156
+ 99
157
+ 7
158
+ 0
159
+ 45
160
+ 1
161
+ 2
162
+ 65
163
+ 49
164
+ 3
165
+ 3
166
+ 13
167
+ 99
168
+ 12
169
+ 7
170
+ 4
171
+ 12
172
+ 7
173
+ 5
174
+ 12
175
+ 65
176
+ 12
177
+ 49
178
+ 6
179
+ 4
180
+ 15
181
+ 49
182
+ 4
183
+ 0
184
+ 11
185
+ I
186
+ 6
187
+ I
188
+ 0
189
+ I
190
+ 0
191
+ I
192
+ 0
193
+ n
194
+ p
195
+ 7
196
+ x
197
+ 8
198
+ Rubinius
199
+ x
200
+ 4
201
+ Base
202
+ n
203
+ x
204
+ 10
205
+ open_class
206
+ x
207
+ 14
208
+ __class_init__
209
+ M
210
+ 1
211
+ n
212
+ n
213
+ x
214
+ 8
215
+ Rubinius
216
+ i
217
+ 142
218
+ 5
219
+ 66
220
+ 99
221
+ 7
222
+ 0
223
+ 7
224
+ 1
225
+ 65
226
+ 67
227
+ 49
228
+ 2
229
+ 0
230
+ 49
231
+ 3
232
+ 4
233
+ 15
234
+ 99
235
+ 7
236
+ 4
237
+ 7
238
+ 5
239
+ 65
240
+ 67
241
+ 49
242
+ 2
243
+ 0
244
+ 49
245
+ 3
246
+ 4
247
+ 15
248
+ 99
249
+ 7
250
+ 6
251
+ 7
252
+ 7
253
+ 65
254
+ 67
255
+ 49
256
+ 2
257
+ 0
258
+ 49
259
+ 3
260
+ 4
261
+ 15
262
+ 99
263
+ 7
264
+ 8
265
+ 7
266
+ 9
267
+ 65
268
+ 67
269
+ 49
270
+ 2
271
+ 0
272
+ 49
273
+ 3
274
+ 4
275
+ 15
276
+ 99
277
+ 7
278
+ 10
279
+ 7
280
+ 11
281
+ 65
282
+ 67
283
+ 49
284
+ 2
285
+ 0
286
+ 49
287
+ 3
288
+ 4
289
+ 15
290
+ 99
291
+ 7
292
+ 12
293
+ 7
294
+ 13
295
+ 65
296
+ 67
297
+ 49
298
+ 2
299
+ 0
300
+ 49
301
+ 3
302
+ 4
303
+ 15
304
+ 99
305
+ 7
306
+ 14
307
+ 7
308
+ 15
309
+ 65
310
+ 67
311
+ 49
312
+ 2
313
+ 0
314
+ 49
315
+ 3
316
+ 4
317
+ 15
318
+ 99
319
+ 7
320
+ 16
321
+ 7
322
+ 17
323
+ 65
324
+ 67
325
+ 49
326
+ 2
327
+ 0
328
+ 49
329
+ 3
330
+ 4
331
+ 15
332
+ 99
333
+ 7
334
+ 18
335
+ 7
336
+ 19
337
+ 65
338
+ 67
339
+ 49
340
+ 2
341
+ 0
342
+ 49
343
+ 3
344
+ 4
345
+ 15
346
+ 99
347
+ 7
348
+ 20
349
+ 7
350
+ 21
351
+ 65
352
+ 67
353
+ 49
354
+ 2
355
+ 0
356
+ 49
357
+ 3
358
+ 4
359
+ 11
360
+ I
361
+ 5
362
+ I
363
+ 0
364
+ I
365
+ 0
366
+ I
367
+ 0
368
+ n
369
+ p
370
+ 22
371
+ x
372
+ 19
373
+ internal_superclass
374
+ M
375
+ 1
376
+ n
377
+ n
378
+ x
379
+ 19
380
+ internal_superclass
381
+ i
382
+ 6
383
+ 20
384
+ 0
385
+ 49
386
+ 0
387
+ 0
388
+ 11
389
+ I
390
+ 2
391
+ I
392
+ 1
393
+ I
394
+ 1
395
+ I
396
+ 1
397
+ n
398
+ p
399
+ 1
400
+ x
401
+ 17
402
+ direct_superclass
403
+ p
404
+ 5
405
+ I
406
+ -1
407
+ I
408
+ 7
409
+ I
410
+ 0
411
+ I
412
+ 8
413
+ I
414
+ 6
415
+ x
416
+ 52
417
+ /Users/g/src/looksee/lib/looksee/adapter/rubinius.rb
418
+ p
419
+ 1
420
+ x
421
+ 5
422
+ klass
423
+ x
424
+ 17
425
+ method_visibility
426
+ x
427
+ 15
428
+ add_defn_method
429
+ x
430
+ 24
431
+ internal_class_to_module
432
+ M
433
+ 1
434
+ n
435
+ n
436
+ x
437
+ 24
438
+ internal_class_to_module
439
+ i
440
+ 22
441
+ 20
442
+ 0
443
+ 44
444
+ 43
445
+ 0
446
+ 43
447
+ 1
448
+ 49
449
+ 2
450
+ 1
451
+ 9
452
+ 19
453
+ 20
454
+ 0
455
+ 49
456
+ 3
457
+ 0
458
+ 8
459
+ 21
460
+ 20
461
+ 0
462
+ 11
463
+ I
464
+ 3
465
+ I
466
+ 1
467
+ I
468
+ 1
469
+ I
470
+ 1
471
+ n
472
+ p
473
+ 4
474
+ x
475
+ 8
476
+ Rubinius
477
+ x
478
+ 14
479
+ IncludedModule
480
+ x
481
+ 5
482
+ is_a?
483
+ x
484
+ 6
485
+ module
486
+ p
487
+ 11
488
+ I
489
+ -1
490
+ I
491
+ b
492
+ I
493
+ 0
494
+ I
495
+ c
496
+ I
497
+ c
498
+ I
499
+ d
500
+ I
501
+ 13
502
+ I
503
+ f
504
+ I
505
+ 15
506
+ I
507
+ 0
508
+ I
509
+ 16
510
+ x
511
+ 52
512
+ /Users/g/src/looksee/lib/looksee/adapter/rubinius.rb
513
+ p
514
+ 1
515
+ x
516
+ 14
517
+ internal_class
518
+ x
519
+ 32
520
+ internal_public_instance_methods
521
+ M
522
+ 1
523
+ n
524
+ n
525
+ x
526
+ 32
527
+ internal_public_instance_methods
528
+ i
529
+ 9
530
+ 20
531
+ 0
532
+ 49
533
+ 0
534
+ 0
535
+ 49
536
+ 1
537
+ 0
538
+ 11
539
+ I
540
+ 2
541
+ I
542
+ 1
543
+ I
544
+ 1
545
+ I
546
+ 1
547
+ n
548
+ p
549
+ 2
550
+ x
551
+ 12
552
+ method_table
553
+ x
554
+ 12
555
+ public_names
556
+ p
557
+ 5
558
+ I
559
+ -1
560
+ I
561
+ 13
562
+ I
563
+ 0
564
+ I
565
+ 14
566
+ I
567
+ 9
568
+ x
569
+ 52
570
+ /Users/g/src/looksee/lib/looksee/adapter/rubinius.rb
571
+ p
572
+ 1
573
+ x
574
+ 3
575
+ mod
576
+ x
577
+ 35
578
+ internal_protected_instance_methods
579
+ M
580
+ 1
581
+ n
582
+ n
583
+ x
584
+ 35
585
+ internal_protected_instance_methods
586
+ i
587
+ 9
588
+ 20
589
+ 0
590
+ 49
591
+ 0
592
+ 0
593
+ 49
594
+ 1
595
+ 0
596
+ 11
597
+ I
598
+ 2
599
+ I
600
+ 1
601
+ I
602
+ 1
603
+ I
604
+ 1
605
+ n
606
+ p
607
+ 2
608
+ x
609
+ 12
610
+ method_table
611
+ x
612
+ 15
613
+ protected_names
614
+ p
615
+ 5
616
+ I
617
+ -1
618
+ I
619
+ 17
620
+ I
621
+ 0
622
+ I
623
+ 18
624
+ I
625
+ 9
626
+ x
627
+ 52
628
+ /Users/g/src/looksee/lib/looksee/adapter/rubinius.rb
629
+ p
630
+ 1
631
+ x
632
+ 3
633
+ mod
634
+ x
635
+ 33
636
+ internal_private_instance_methods
637
+ M
638
+ 1
639
+ n
640
+ n
641
+ x
642
+ 33
643
+ internal_private_instance_methods
644
+ i
645
+ 9
646
+ 20
647
+ 0
648
+ 49
649
+ 0
650
+ 0
651
+ 49
652
+ 1
653
+ 0
654
+ 11
655
+ I
656
+ 2
657
+ I
658
+ 1
659
+ I
660
+ 1
661
+ I
662
+ 1
663
+ n
664
+ p
665
+ 2
666
+ x
667
+ 12
668
+ method_table
669
+ x
670
+ 13
671
+ private_names
672
+ p
673
+ 5
674
+ I
675
+ -1
676
+ I
677
+ 1b
678
+ I
679
+ 0
680
+ I
681
+ 1c
682
+ I
683
+ 9
684
+ x
685
+ 52
686
+ /Users/g/src/looksee/lib/looksee/adapter/rubinius.rb
687
+ p
688
+ 1
689
+ x
690
+ 3
691
+ mod
692
+ x
693
+ 35
694
+ internal_undefined_instance_methods
695
+ M
696
+ 1
697
+ n
698
+ n
699
+ x
700
+ 35
701
+ internal_undefined_instance_methods
702
+ i
703
+ 22
704
+ 35
705
+ 0
706
+ 19
707
+ 1
708
+ 15
709
+ 20
710
+ 0
711
+ 49
712
+ 0
713
+ 0
714
+ 49
715
+ 1
716
+ 0
717
+ 56
718
+ 2
719
+ 50
720
+ 3
721
+ 0
722
+ 15
723
+ 20
724
+ 1
725
+ 11
726
+ I
727
+ 4
728
+ I
729
+ 2
730
+ I
731
+ 1
732
+ I
733
+ 1
734
+ n
735
+ p
736
+ 4
737
+ x
738
+ 12
739
+ method_table
740
+ x
741
+ 7
742
+ entries
743
+ M
744
+ 1
745
+ p
746
+ 2
747
+ x
748
+ 9
749
+ for_block
750
+ t
751
+ n
752
+ x
753
+ 35
754
+ internal_undefined_instance_methods
755
+ i
756
+ 35
757
+ 58
758
+ 37
759
+ 19
760
+ 0
761
+ 15
762
+ 37
763
+ 19
764
+ 1
765
+ 15
766
+ 37
767
+ 19
768
+ 2
769
+ 15
770
+ 15
771
+ 20
772
+ 2
773
+ 7
774
+ 0
775
+ 49
776
+ 1
777
+ 1
778
+ 9
779
+ 33
780
+ 21
781
+ 1
782
+ 1
783
+ 20
784
+ 0
785
+ 49
786
+ 2
787
+ 1
788
+ 8
789
+ 34
790
+ 1
791
+ 11
792
+ I
793
+ 6
794
+ I
795
+ 3
796
+ I
797
+ 3
798
+ I
799
+ 3
800
+ n
801
+ p
802
+ 3
803
+ x
804
+ 5
805
+ undef
806
+ x
807
+ 6
808
+ equal?
809
+ x
810
+ 2
811
+ <<
812
+ p
813
+ 7
814
+ I
815
+ 0
816
+ I
817
+ 21
818
+ I
819
+ e
820
+ I
821
+ 22
822
+ I
823
+ 22
824
+ I
825
+ 0
826
+ I
827
+ 23
828
+ x
829
+ 52
830
+ /Users/g/src/looksee/lib/looksee/adapter/rubinius.rb
831
+ p
832
+ 3
833
+ x
834
+ 4
835
+ name
836
+ x
837
+ 6
838
+ method
839
+ x
840
+ 10
841
+ visibility
842
+ x
843
+ 4
844
+ each
845
+ p
846
+ 9
847
+ I
848
+ -1
849
+ I
850
+ 1f
851
+ I
852
+ 0
853
+ I
854
+ 20
855
+ I
856
+ 5
857
+ I
858
+ 21
859
+ I
860
+ 13
861
+ I
862
+ 24
863
+ I
864
+ 16
865
+ x
866
+ 52
867
+ /Users/g/src/looksee/lib/looksee/adapter/rubinius.rb
868
+ p
869
+ 2
870
+ x
871
+ 3
872
+ mod
873
+ x
874
+ 5
875
+ names
876
+ x
877
+ 16
878
+ singleton_class?
879
+ M
880
+ 1
881
+ n
882
+ n
883
+ x
884
+ 16
885
+ singleton_class?
886
+ i
887
+ 35
888
+ 20
889
+ 0
890
+ 45
891
+ 0
892
+ 1
893
+ 49
894
+ 2
895
+ 1
896
+ 13
897
+ 9
898
+ 34
899
+ 15
900
+ 44
901
+ 43
902
+ 3
903
+ 43
904
+ 4
905
+ 20
906
+ 0
907
+ 49
908
+ 5
909
+ 1
910
+ 10
911
+ 27
912
+ 2
913
+ 8
914
+ 28
915
+ 3
916
+ 10
917
+ 33
918
+ 2
919
+ 8
920
+ 34
921
+ 3
922
+ 11
923
+ I
924
+ 3
925
+ I
926
+ 1
927
+ I
928
+ 1
929
+ I
930
+ 1
931
+ n
932
+ p
933
+ 6
934
+ x
935
+ 5
936
+ Class
937
+ n
938
+ x
939
+ 5
940
+ is_a?
941
+ x
942
+ 8
943
+ Rubinius
944
+ x
945
+ 4
946
+ Type
947
+ x
948
+ 22
949
+ singleton_class_object
950
+ p
951
+ 5
952
+ I
953
+ -1
954
+ I
955
+ 27
956
+ I
957
+ 0
958
+ I
959
+ 28
960
+ I
961
+ 23
962
+ x
963
+ 52
964
+ /Users/g/src/looksee/lib/looksee/adapter/rubinius.rb
965
+ p
966
+ 1
967
+ x
968
+ 6
969
+ object
970
+ x
971
+ 18
972
+ singleton_instance
973
+ M
974
+ 1
975
+ n
976
+ n
977
+ x
978
+ 18
979
+ singleton_instance
980
+ i
981
+ 43
982
+ 5
983
+ 20
984
+ 0
985
+ 47
986
+ 49
987
+ 0
988
+ 1
989
+ 13
990
+ 10
991
+ 31
992
+ 15
993
+ 5
994
+ 45
995
+ 1
996
+ 2
997
+ 7
998
+ 3
999
+ 20
1000
+ 0
1001
+ 49
1002
+ 4
1003
+ 0
1004
+ 47
1005
+ 101
1006
+ 5
1007
+ 63
1008
+ 2
1009
+ 47
1010
+ 49
1011
+ 6
1012
+ 2
1013
+ 15
1014
+ 44
1015
+ 43
1016
+ 7
1017
+ 43
1018
+ 8
1019
+ 20
1020
+ 0
1021
+ 49
1022
+ 9
1023
+ 1
1024
+ 11
1025
+ I
1026
+ 5
1027
+ I
1028
+ 1
1029
+ I
1030
+ 1
1031
+ I
1032
+ 1
1033
+ n
1034
+ p
1035
+ 10
1036
+ x
1037
+ 16
1038
+ singleton_class?
1039
+ x
1040
+ 9
1041
+ TypeError
1042
+ n
1043
+ s
1044
+ 30
1045
+ expected singleton class, got
1046
+ x
1047
+ 5
1048
+ class
1049
+ x
1050
+ 4
1051
+ to_s
1052
+ x
1053
+ 5
1054
+ raise
1055
+ x
1056
+ 8
1057
+ Rubinius
1058
+ x
1059
+ 4
1060
+ Type
1061
+ x
1062
+ 22
1063
+ singleton_class_object
1064
+ p
1065
+ 9
1066
+ I
1067
+ -1
1068
+ I
1069
+ 2b
1070
+ I
1071
+ 0
1072
+ I
1073
+ 2c
1074
+ I
1075
+ b
1076
+ I
1077
+ 2d
1078
+ I
1079
+ 20
1080
+ I
1081
+ 2e
1082
+ I
1083
+ 2b
1084
+ x
1085
+ 52
1086
+ /Users/g/src/looksee/lib/looksee/adapter/rubinius.rb
1087
+ p
1088
+ 1
1089
+ x
1090
+ 15
1091
+ singleton_class
1092
+ x
1093
+ 11
1094
+ module_name
1095
+ M
1096
+ 1
1097
+ n
1098
+ n
1099
+ x
1100
+ 11
1101
+ module_name
1102
+ i
1103
+ 63
1104
+ 20
1105
+ 0
1106
+ 45
1107
+ 0
1108
+ 1
1109
+ 49
1110
+ 2
1111
+ 1
1112
+ 13
1113
+ 10
1114
+ 32
1115
+ 15
1116
+ 5
1117
+ 45
1118
+ 3
1119
+ 4
1120
+ 7
1121
+ 5
1122
+ 20
1123
+ 0
1124
+ 49
1125
+ 6
1126
+ 0
1127
+ 47
1128
+ 101
1129
+ 7
1130
+ 63
1131
+ 2
1132
+ 47
1133
+ 49
1134
+ 8
1135
+ 2
1136
+ 15
1137
+ 44
1138
+ 43
1139
+ 9
1140
+ 43
1141
+ 10
1142
+ 7
1143
+ 11
1144
+ 49
1145
+ 12
1146
+ 1
1147
+ 9
1148
+ 57
1149
+ 44
1150
+ 43
1151
+ 9
1152
+ 43
1153
+ 10
1154
+ 20
1155
+ 0
1156
+ 49
1157
+ 11
1158
+ 1
1159
+ 8
1160
+ 62
1161
+ 20
1162
+ 0
1163
+ 49
1164
+ 13
1165
+ 0
1166
+ 11
1167
+ I
1168
+ 5
1169
+ I
1170
+ 1
1171
+ I
1172
+ 1
1173
+ I
1174
+ 1
1175
+ n
1176
+ p
1177
+ 14
1178
+ x
1179
+ 6
1180
+ Module
1181
+ n
1182
+ x
1183
+ 5
1184
+ is_a?
1185
+ x
1186
+ 9
1187
+ TypeError
1188
+ n
1189
+ s
1190
+ 21
1191
+ expected module, got
1192
+ x
1193
+ 5
1194
+ class
1195
+ x
1196
+ 4
1197
+ to_s
1198
+ x
1199
+ 5
1200
+ raise
1201
+ x
1202
+ 8
1203
+ Rubinius
1204
+ x
1205
+ 4
1206
+ Type
1207
+ x
1208
+ 11
1209
+ module_name
1210
+ x
1211
+ 11
1212
+ respond_to?
1213
+ x
1214
+ 8
1215
+ __name__
1216
+ p
1217
+ 15
1218
+ I
1219
+ -1
1220
+ I
1221
+ 31
1222
+ I
1223
+ 0
1224
+ I
1225
+ 32
1226
+ I
1227
+ c
1228
+ I
1229
+ 33
1230
+ I
1231
+ 21
1232
+ I
1233
+ 35
1234
+ I
1235
+ 2d
1236
+ I
1237
+ 36
1238
+ I
1239
+ 39
1240
+ I
1241
+ 38
1242
+ I
1243
+ 3e
1244
+ I
1245
+ 0
1246
+ I
1247
+ 3f
1248
+ x
1249
+ 52
1250
+ /Users/g/src/looksee/lib/looksee/adapter/rubinius.rb
1251
+ p
1252
+ 1
1253
+ x
1254
+ 3
1255
+ mod
1256
+ x
1257
+ 15
1258
+ source_location
1259
+ M
1260
+ 1
1261
+ n
1262
+ n
1263
+ x
1264
+ 15
1265
+ source_location
1266
+ i
1267
+ 132
1268
+ 20
1269
+ 0
1270
+ 45
1271
+ 0
1272
+ 1
1273
+ 49
1274
+ 2
1275
+ 1
1276
+ 13
1277
+ 10
1278
+ 32
1279
+ 15
1280
+ 5
1281
+ 45
1282
+ 3
1283
+ 4
1284
+ 7
1285
+ 5
1286
+ 20
1287
+ 0
1288
+ 49
1289
+ 6
1290
+ 0
1291
+ 47
1292
+ 101
1293
+ 7
1294
+ 63
1295
+ 2
1296
+ 47
1297
+ 49
1298
+ 8
1299
+ 2
1300
+ 15
1301
+ 20
1302
+ 0
1303
+ 49
1304
+ 9
1305
+ 0
1306
+ 19
1307
+ 1
1308
+ 13
1309
+ 9
1310
+ 47
1311
+ 15
1312
+ 20
1313
+ 1
1314
+ 11
1315
+ 15
1316
+ 20
1317
+ 0
1318
+ 49
1319
+ 10
1320
+ 0
1321
+ 19
1322
+ 2
1323
+ 13
1324
+ 44
1325
+ 43
1326
+ 11
1327
+ 43
1328
+ 12
1329
+ 43
1330
+ 13
1331
+ 12
1332
+ 49
1333
+ 14
1334
+ 1
1335
+ 9
1336
+ 104
1337
+ 15
1338
+ 20
1339
+ 2
1340
+ 7
1341
+ 15
1342
+ 49
1343
+ 16
1344
+ 1
1345
+ 49
1346
+ 17
1347
+ 0
1348
+ 19
1349
+ 0
1350
+ 15
1351
+ 20
1352
+ 0
1353
+ 49
1354
+ 18
1355
+ 0
1356
+ 49
1357
+ 7
1358
+ 0
1359
+ 20
1360
+ 0
1361
+ 49
1362
+ 19
1363
+ 0
1364
+ 79
1365
+ 49
1366
+ 20
1367
+ 1
1368
+ 35
1369
+ 2
1370
+ 8
1371
+ 131
1372
+ 13
1373
+ 44
1374
+ 43
1375
+ 11
1376
+ 43
1377
+ 21
1378
+ 12
1379
+ 49
1380
+ 14
1381
+ 1
1382
+ 9
1383
+ 129
1384
+ 15
1385
+ 20
1386
+ 2
1387
+ 7
1388
+ 22
1389
+ 49
1390
+ 16
1391
+ 1
1392
+ 49
1393
+ 9
1394
+ 0
1395
+ 8
1396
+ 131
1397
+ 15
1398
+ 1
1399
+ 11
1400
+ I
1401
+ 7
1402
+ I
1403
+ 3
1404
+ I
1405
+ 1
1406
+ I
1407
+ 1
1408
+ n
1409
+ p
1410
+ 23
1411
+ x
1412
+ 13
1413
+ UnboundMethod
1414
+ n
1415
+ x
1416
+ 5
1417
+ is_a?
1418
+ x
1419
+ 9
1420
+ TypeError
1421
+ n
1422
+ s
1423
+ 28
1424
+ expected UnboundMethod, got
1425
+ x
1426
+ 5
1427
+ class
1428
+ x
1429
+ 4
1430
+ to_s
1431
+ x
1432
+ 5
1433
+ raise
1434
+ x
1435
+ 15
1436
+ source_location
1437
+ x
1438
+ 10
1439
+ executable
1440
+ x
1441
+ 8
1442
+ Rubinius
1443
+ x
1444
+ 16
1445
+ BlockEnvironment
1446
+ x
1447
+ 8
1448
+ AsMethod
1449
+ x
1450
+ 3
1451
+ ===
1452
+ x
1453
+ 10
1454
+ @block_env
1455
+ x
1456
+ 21
1457
+ instance_variable_get
1458
+ x
1459
+ 6
1460
+ method
1461
+ x
1462
+ 4
1463
+ file
1464
+ x
1465
+ 5
1466
+ lines
1467
+ x
1468
+ 2
1469
+ []
1470
+ x
1471
+ 15
1472
+ DelegatedMethod
1473
+ x
1474
+ 9
1475
+ @receiver
1476
+ p
1477
+ 27
1478
+ I
1479
+ -1
1480
+ I
1481
+ 3c
1482
+ I
1483
+ 0
1484
+ I
1485
+ 3d
1486
+ I
1487
+ c
1488
+ I
1489
+ 3e
1490
+ I
1491
+ 21
1492
+ I
1493
+ 3f
1494
+ I
1495
+ 2c
1496
+ I
1497
+ 40
1498
+ I
1499
+ 30
1500
+ I
1501
+ 44
1502
+ I
1503
+ 37
1504
+ I
1505
+ 45
1506
+ I
1507
+ 46
1508
+ I
1509
+ 46
1510
+ I
1511
+ 53
1512
+ I
1513
+ 47
1514
+ I
1515
+ 68
1516
+ I
1517
+ 48
1518
+ I
1519
+ 75
1520
+ I
1521
+ 49
1522
+ I
1523
+ 82
1524
+ I
1525
+ 44
1526
+ I
1527
+ 83
1528
+ I
1529
+ 0
1530
+ I
1531
+ 84
1532
+ x
1533
+ 52
1534
+ /Users/g/src/looksee/lib/looksee/adapter/rubinius.rb
1535
+ p
1536
+ 3
1537
+ x
1538
+ 6
1539
+ method
1540
+ x
1541
+ 15
1542
+ source_location
1543
+ x
1544
+ 10
1545
+ executable
1546
+ p
1547
+ 21
1548
+ I
1549
+ 2
1550
+ I
1551
+ 7
1552
+ I
1553
+ 10
1554
+ I
1555
+ b
1556
+ I
1557
+ 1e
1558
+ I
1559
+ 13
1560
+ I
1561
+ 2c
1562
+ I
1563
+ 17
1564
+ I
1565
+ 3a
1566
+ I
1567
+ 1b
1568
+ I
1569
+ 48
1570
+ I
1571
+ 1f
1572
+ I
1573
+ 56
1574
+ I
1575
+ 27
1576
+ I
1577
+ 64
1578
+ I
1579
+ 2b
1580
+ I
1581
+ 72
1582
+ I
1583
+ 31
1584
+ I
1585
+ 80
1586
+ I
1587
+ 3c
1588
+ I
1589
+ 8e
1590
+ x
1591
+ 52
1592
+ /Users/g/src/looksee/lib/looksee/adapter/rubinius.rb
1593
+ p
1594
+ 0
1595
+ x
1596
+ 13
1597
+ attach_method
1598
+ p
1599
+ 3
1600
+ I
1601
+ 2
1602
+ I
1603
+ 6
1604
+ I
1605
+ 1f
1606
+ x
1607
+ 52
1608
+ /Users/g/src/looksee/lib/looksee/adapter/rubinius.rb
1609
+ p
1610
+ 0
1611
+ x
1612
+ 13
1613
+ attach_method
1614
+ p
1615
+ 3
1616
+ I
1617
+ 2
1618
+ I
1619
+ 5
1620
+ I
1621
+ 1c
1622
+ x
1623
+ 52
1624
+ /Users/g/src/looksee/lib/looksee/adapter/rubinius.rb
1625
+ p
1626
+ 0
1627
+ x
1628
+ 13
1629
+ attach_method
1630
+ p
1631
+ 7
1632
+ I
1633
+ 0
1634
+ I
1635
+ 1
1636
+ I
1637
+ 9
1638
+ I
1639
+ 2
1640
+ I
1641
+ 12
1642
+ I
1643
+ 4
1644
+ I
1645
+ 2e
1646
+ x
1647
+ 52
1648
+ /Users/g/src/looksee/lib/looksee/adapter/rubinius.rb
1649
+ p
1650
+ 0