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