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