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/io/null_output.rb ADDED
@@ -0,0 +1,42 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Copyright (C) 2010 Rocky Bernstein <rockyb@rubyforge.net>
3
+
4
+ # Nukes output. Used for example in sourcing where you don't want
5
+ # to see output.
6
+ #
7
+
8
+ require 'rubygems'; require 'require_relative'
9
+ require_relative 'base_io'
10
+
11
+ class Trepan
12
+ class OutputNull < Trepan::OutputBase
13
+ def initialize(out, opts={})
14
+ super
15
+ end
16
+
17
+ def close
18
+ end
19
+
20
+ def flush
21
+ end
22
+
23
+ # Use this to set where to write to. output can be a
24
+ # file object or a string. This code raises IOError on error.
25
+ def write(*args)
26
+ end
27
+
28
+ # used to write to a debugger that is connected to this
29
+ # `str' written will have a newline added to it
30
+ #
31
+ def writeline( msg)
32
+ end
33
+ end
34
+ end
35
+
36
+ # Demo it
37
+ if __FILE__ == $0
38
+ output = Trepan::OutputNull.new(nil)
39
+ p output
40
+ output.write("Invisible")
41
+ output.writeline("Invisible")
42
+ end
@@ -0,0 +1,730 @@
1
+ !RBIX
2
+ 0
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 132
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
+ 1
44
+ 65
45
+ 49
46
+ 6
47
+ 3
48
+ 13
49
+ 99
50
+ 12
51
+ 7
52
+ 7
53
+ 12
54
+ 7
55
+ 8
56
+ 12
57
+ 65
58
+ 12
59
+ 49
60
+ 9
61
+ 4
62
+ 15
63
+ 49
64
+ 7
65
+ 0
66
+ 15
67
+ 65
68
+ 49
69
+ 10
70
+ 0
71
+ 99
72
+ 43
73
+ 11
74
+ 7
75
+ 12
76
+ 49
77
+ 13
78
+ 1
79
+ 83
80
+ 14
81
+ 9
82
+ 128
83
+ 45
84
+ 5
85
+ 15
86
+ 43
87
+ 16
88
+ 13
89
+ 71
90
+ 17
91
+ 47
92
+ 9
93
+ 94
94
+ 47
95
+ 49
96
+ 18
97
+ 0
98
+ 13
99
+ 1
100
+ 47
101
+ 49
102
+ 19
103
+ 1
104
+ 15
105
+ 8
106
+ 98
107
+ 1
108
+ 49
109
+ 17
110
+ 1
111
+ 19
112
+ 0
113
+ 15
114
+ 5
115
+ 20
116
+ 0
117
+ 47
118
+ 49
119
+ 20
120
+ 1
121
+ 15
122
+ 20
123
+ 0
124
+ 7
125
+ 21
126
+ 64
127
+ 49
128
+ 22
129
+ 1
130
+ 15
131
+ 20
132
+ 0
133
+ 7
134
+ 21
135
+ 64
136
+ 49
137
+ 23
138
+ 1
139
+ 8
140
+ 129
141
+ 1
142
+ 15
143
+ 2
144
+ 11
145
+ I
146
+ 7
147
+ I
148
+ 1
149
+ I
150
+ 0
151
+ I
152
+ 0
153
+ n
154
+ p
155
+ 24
156
+ s
157
+ 8
158
+ rubygems
159
+ x
160
+ 7
161
+ require
162
+ s
163
+ 16
164
+ require_relative
165
+ s
166
+ 7
167
+ base_io
168
+ x
169
+ 16
170
+ require_relative
171
+ x
172
+ 6
173
+ Trepan
174
+ x
175
+ 10
176
+ open_class
177
+ x
178
+ 14
179
+ __class_init__
180
+ M
181
+ 1
182
+ n
183
+ n
184
+ x
185
+ 6
186
+ Trepan
187
+ i
188
+ 33
189
+ 5
190
+ 66
191
+ 99
192
+ 7
193
+ 0
194
+ 45
195
+ 1
196
+ 2
197
+ 43
198
+ 3
199
+ 65
200
+ 49
201
+ 4
202
+ 3
203
+ 13
204
+ 99
205
+ 12
206
+ 7
207
+ 5
208
+ 12
209
+ 7
210
+ 6
211
+ 12
212
+ 65
213
+ 12
214
+ 49
215
+ 7
216
+ 4
217
+ 15
218
+ 49
219
+ 5
220
+ 0
221
+ 11
222
+ I
223
+ 6
224
+ I
225
+ 0
226
+ I
227
+ 0
228
+ I
229
+ 0
230
+ n
231
+ p
232
+ 8
233
+ x
234
+ 10
235
+ OutputNull
236
+ x
237
+ 6
238
+ Trepan
239
+ n
240
+ x
241
+ 10
242
+ OutputBase
243
+ x
244
+ 10
245
+ open_class
246
+ x
247
+ 14
248
+ __class_init__
249
+ M
250
+ 1
251
+ n
252
+ n
253
+ x
254
+ 10
255
+ OutputNull
256
+ i
257
+ 72
258
+ 5
259
+ 66
260
+ 99
261
+ 7
262
+ 0
263
+ 7
264
+ 1
265
+ 65
266
+ 67
267
+ 49
268
+ 2
269
+ 0
270
+ 49
271
+ 3
272
+ 4
273
+ 15
274
+ 99
275
+ 7
276
+ 4
277
+ 7
278
+ 5
279
+ 65
280
+ 67
281
+ 49
282
+ 2
283
+ 0
284
+ 49
285
+ 3
286
+ 4
287
+ 15
288
+ 99
289
+ 7
290
+ 6
291
+ 7
292
+ 7
293
+ 65
294
+ 67
295
+ 49
296
+ 2
297
+ 0
298
+ 49
299
+ 3
300
+ 4
301
+ 15
302
+ 99
303
+ 7
304
+ 8
305
+ 7
306
+ 9
307
+ 65
308
+ 67
309
+ 49
310
+ 2
311
+ 0
312
+ 49
313
+ 3
314
+ 4
315
+ 15
316
+ 99
317
+ 7
318
+ 10
319
+ 7
320
+ 11
321
+ 65
322
+ 67
323
+ 49
324
+ 2
325
+ 0
326
+ 49
327
+ 3
328
+ 4
329
+ 11
330
+ I
331
+ 5
332
+ I
333
+ 0
334
+ I
335
+ 0
336
+ I
337
+ 0
338
+ n
339
+ p
340
+ 12
341
+ x
342
+ 10
343
+ initialize
344
+ M
345
+ 1
346
+ n
347
+ n
348
+ x
349
+ 10
350
+ initialize
351
+ i
352
+ 18
353
+ 23
354
+ 1
355
+ 10
356
+ 14
357
+ 44
358
+ 43
359
+ 0
360
+ 78
361
+ 49
362
+ 1
363
+ 1
364
+ 19
365
+ 1
366
+ 15
367
+ 54
368
+ 89
369
+ 2
370
+ 11
371
+ I
372
+ 4
373
+ I
374
+ 2
375
+ I
376
+ 1
377
+ I
378
+ 2
379
+ n
380
+ p
381
+ 3
382
+ x
383
+ 4
384
+ Hash
385
+ x
386
+ 16
387
+ new_from_literal
388
+ x
389
+ 10
390
+ initialize
391
+ p
392
+ 5
393
+ I
394
+ 0
395
+ I
396
+ d
397
+ I
398
+ e
399
+ I
400
+ e
401
+ I
402
+ 12
403
+ x
404
+ 57
405
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/null_output.rb
406
+ p
407
+ 2
408
+ x
409
+ 3
410
+ out
411
+ x
412
+ 4
413
+ opts
414
+ x
415
+ 17
416
+ method_visibility
417
+ x
418
+ 15
419
+ add_defn_method
420
+ x
421
+ 5
422
+ close
423
+ M
424
+ 1
425
+ n
426
+ n
427
+ x
428
+ 5
429
+ close
430
+ i
431
+ 2
432
+ 1
433
+ 11
434
+ I
435
+ 1
436
+ I
437
+ 0
438
+ I
439
+ 0
440
+ I
441
+ 0
442
+ n
443
+ p
444
+ 0
445
+ p
446
+ 5
447
+ I
448
+ 0
449
+ I
450
+ 11
451
+ I
452
+ 0
453
+ I
454
+ 12
455
+ I
456
+ 2
457
+ x
458
+ 57
459
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/null_output.rb
460
+ p
461
+ 0
462
+ x
463
+ 5
464
+ flush
465
+ M
466
+ 1
467
+ n
468
+ n
469
+ x
470
+ 5
471
+ flush
472
+ i
473
+ 2
474
+ 1
475
+ 11
476
+ I
477
+ 1
478
+ I
479
+ 0
480
+ I
481
+ 0
482
+ I
483
+ 0
484
+ n
485
+ p
486
+ 0
487
+ p
488
+ 5
489
+ I
490
+ 0
491
+ I
492
+ 14
493
+ I
494
+ 0
495
+ I
496
+ 15
497
+ I
498
+ 2
499
+ x
500
+ 57
501
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/null_output.rb
502
+ p
503
+ 0
504
+ x
505
+ 5
506
+ write
507
+ M
508
+ 1
509
+ n
510
+ n
511
+ x
512
+ 5
513
+ write
514
+ i
515
+ 2
516
+ 1
517
+ 11
518
+ I
519
+ 2
520
+ I
521
+ 1
522
+ I
523
+ 0
524
+ I
525
+ 0
526
+ I
527
+ 0
528
+ p
529
+ 0
530
+ p
531
+ 5
532
+ I
533
+ 0
534
+ I
535
+ 19
536
+ I
537
+ 0
538
+ I
539
+ 1a
540
+ I
541
+ 2
542
+ x
543
+ 57
544
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/null_output.rb
545
+ p
546
+ 1
547
+ x
548
+ 4
549
+ args
550
+ x
551
+ 9
552
+ writeline
553
+ M
554
+ 1
555
+ n
556
+ n
557
+ x
558
+ 9
559
+ writeline
560
+ i
561
+ 2
562
+ 1
563
+ 11
564
+ I
565
+ 2
566
+ I
567
+ 1
568
+ I
569
+ 1
570
+ I
571
+ 1
572
+ n
573
+ p
574
+ 0
575
+ p
576
+ 5
577
+ I
578
+ 0
579
+ I
580
+ 1f
581
+ I
582
+ 0
583
+ I
584
+ 20
585
+ I
586
+ 2
587
+ x
588
+ 57
589
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/null_output.rb
590
+ p
591
+ 1
592
+ x
593
+ 3
594
+ msg
595
+ p
596
+ 11
597
+ I
598
+ 2
599
+ I
600
+ d
601
+ I
602
+ 10
603
+ I
604
+ 11
605
+ I
606
+ 1e
607
+ I
608
+ 14
609
+ I
610
+ 2c
611
+ I
612
+ 19
613
+ I
614
+ 3a
615
+ I
616
+ 1f
617
+ I
618
+ 48
619
+ x
620
+ 57
621
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/null_output.rb
622
+ p
623
+ 0
624
+ x
625
+ 13
626
+ attach_method
627
+ p
628
+ 3
629
+ I
630
+ 2
631
+ I
632
+ c
633
+ I
634
+ 21
635
+ x
636
+ 57
637
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/null_output.rb
638
+ p
639
+ 0
640
+ x
641
+ 13
642
+ attach_method
643
+ x
644
+ 11
645
+ active_path
646
+ x
647
+ 7
648
+ Globals
649
+ x
650
+ 2
651
+ $0
652
+ x
653
+ 2
654
+ []
655
+ x
656
+ 2
657
+ ==
658
+ n
659
+ x
660
+ 10
661
+ OutputNull
662
+ x
663
+ 3
664
+ new
665
+ x
666
+ 8
667
+ allocate
668
+ x
669
+ 10
670
+ initialize
671
+ x
672
+ 1
673
+ p
674
+ s
675
+ 9
676
+ Invisible
677
+ x
678
+ 5
679
+ write
680
+ x
681
+ 9
682
+ writeline
683
+ p
684
+ 19
685
+ I
686
+ 0
687
+ I
688
+ 8
689
+ I
690
+ 12
691
+ I
692
+ 9
693
+ I
694
+ 1b
695
+ I
696
+ b
697
+ I
698
+ 36
699
+ I
700
+ 25
701
+ I
702
+ 46
703
+ I
704
+ 26
705
+ I
706
+ 65
707
+ I
708
+ 27
709
+ I
710
+ 6d
711
+ I
712
+ 28
713
+ I
714
+ 76
715
+ I
716
+ 29
717
+ I
718
+ 80
719
+ I
720
+ 25
721
+ I
722
+ 84
723
+ x
724
+ 57
725
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/null_output.rb
726
+ p
727
+ 1
728
+ x
729
+ 6
730
+ output