rbx-trepanning 0.0.1-universal-rubinius

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