rbx-trepanning 0.0.2-universal-rubinius-1.2

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