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.
- data/ChangeLog +376 -0
- data/LICENSE +25 -0
- data/NEWS +2 -0
- data/README.textile +35 -0
- data/Rakefile +165 -0
- data/THANKS +14 -0
- data/app/breakpoint.rb +218 -0
- data/app/breakpoint.rbc +3564 -0
- data/app/brkptmgr.rb +138 -0
- data/app/brkptmgr.rbc +2827 -0
- data/app/default.rb +61 -0
- data/app/default.rbc +1011 -0
- data/app/display.rb +35 -0
- data/app/display.rbc +968 -0
- data/app/frame.rb +98 -0
- data/app/frame.rbc +1808 -0
- data/app/irb.rb +112 -0
- data/app/irb.rbc +2111 -0
- data/app/iseq.rb +95 -0
- data/app/iseq.rbc +1801 -0
- data/app/method.rb +173 -0
- data/app/method.rbc +2492 -0
- data/app/mock.rb +13 -0
- data/app/mock.rbc +398 -0
- data/app/options.rb +123 -0
- data/app/options.rbc +2183 -0
- data/app/run.rb +86 -0
- data/app/run.rbc +1244 -0
- data/app/util.rb +49 -0
- data/app/util.rbc +1144 -0
- data/app/validate.rb +30 -0
- data/app/validate.rbc +676 -0
- data/bin/trepan.compiled.rbc +1043 -0
- data/bin/trepanx +63 -0
- data/bin/trepanx.compiled.rbc +985 -0
- data/interface/base_intf.rb +95 -0
- data/interface/base_intf.rbc +1742 -0
- data/interface/script.rb +104 -0
- data/interface/script.rbc +1642 -0
- data/interface/user.rb +91 -0
- data/interface/user.rbc +1418 -0
- data/io/base_io.rb +94 -0
- data/io/base_io.rbc +1404 -0
- data/io/input.rb +112 -0
- data/io/input.rbc +1979 -0
- data/io/null_output.rb +42 -0
- data/io/null_output.rbc +730 -0
- data/io/string_array.rb +156 -0
- data/io/string_array.rbc +2466 -0
- data/lib/trepanning.rb +398 -0
- data/lib/trepanning.rbc +6661 -0
- data/processor/breakpoint.rb +161 -0
- data/processor/command/alias.rb +55 -0
- data/processor/command/backtrace.rb +46 -0
- data/processor/command/base/cmd.rb +124 -0
- data/processor/command/base/subcmd.rb +213 -0
- data/processor/command/base/submgr.rb +179 -0
- data/processor/command/base/subsubcmd.rb +103 -0
- data/processor/command/base/subsubmgr.rb +184 -0
- data/processor/command/break.rb +100 -0
- data/processor/command/continue.rb +82 -0
- data/processor/command/delete.rb +30 -0
- data/processor/command/directory.rb +43 -0
- data/processor/command/disassemble.rb +103 -0
- data/processor/command/down.rb +54 -0
- data/processor/command/eval.rb +31 -0
- data/processor/command/exit.rb +58 -0
- data/processor/command/finish.rb +78 -0
- data/processor/command/frame.rb +89 -0
- data/processor/command/help.rb +146 -0
- data/processor/command/info.rb +28 -0
- data/processor/command/info_subcmd/breakpoints.rb +75 -0
- data/processor/command/info_subcmd/file.rb +153 -0
- data/processor/command/info_subcmd/method.rb +71 -0
- data/processor/command/info_subcmd/program.rb +59 -0
- data/processor/command/info_subcmd/variables.rb +40 -0
- data/processor/command/irb.rb +96 -0
- data/processor/command/kill.rb +70 -0
- data/processor/command/list.rb +296 -0
- data/processor/command/next.rb +66 -0
- data/processor/command/nexti.rb +59 -0
- data/processor/command/pr.rb +38 -0
- data/processor/command/ps.rb +40 -0
- data/processor/command/restart.rb +60 -0
- data/processor/command/set.rb +47 -0
- data/processor/command/set_subcmd/auto.rb +28 -0
- data/processor/command/set_subcmd/auto_subcmd/dis.rb +33 -0
- data/processor/command/set_subcmd/auto_subcmd/eval.rb +54 -0
- data/processor/command/set_subcmd/auto_subcmd/irb.rb +34 -0
- data/processor/command/set_subcmd/auto_subcmd/list.rb +34 -0
- data/processor/command/set_subcmd/basename.rb +26 -0
- data/processor/command/set_subcmd/debug.rb +27 -0
- data/processor/command/set_subcmd/debug_subcmd/dbgr.rb +36 -0
- data/processor/command/set_subcmd/debug_subcmd/skip.rb +23 -0
- data/processor/command/set_subcmd/debug_subcmd/step.rb +23 -0
- data/processor/command/set_subcmd/different.rb +60 -0
- data/processor/command/set_subcmd/hidelevel.rb +63 -0
- data/processor/command/set_subcmd/kernelstep.rb +61 -0
- data/processor/command/set_subcmd/max.rb +29 -0
- data/processor/command/set_subcmd/max_subcmd/list.rb +49 -0
- data/processor/command/set_subcmd/max_subcmd/stack.rb +50 -0
- data/processor/command/set_subcmd/max_subcmd/string.rb +54 -0
- data/processor/command/set_subcmd/max_subcmd/width.rb +49 -0
- data/processor/command/set_subcmd/substitute.rb +25 -0
- data/processor/command/set_subcmd/substitute_subcmd/path.rb +56 -0
- data/processor/command/set_subcmd/trace.rb +37 -0
- data/processor/command/set_subcmd/trace_subcmd/print.rb +57 -0
- data/processor/command/show.rb +27 -0
- data/processor/command/show_subcmd/alias.rb +43 -0
- data/processor/command/show_subcmd/args.rb +26 -0
- data/processor/command/show_subcmd/auto.rb +28 -0
- data/processor/command/show_subcmd/auto_subcmd/dis.rb +37 -0
- data/processor/command/show_subcmd/auto_subcmd/eval.rb +28 -0
- data/processor/command/show_subcmd/auto_subcmd/irb.rb +23 -0
- data/processor/command/show_subcmd/auto_subcmd/list.rb +22 -0
- data/processor/command/show_subcmd/basename.rb +22 -0
- data/processor/command/show_subcmd/debug.rb +27 -0
- data/processor/command/show_subcmd/debug_subcmd/dbgr.rb +21 -0
- data/processor/command/show_subcmd/debug_subcmd/skip.rb +22 -0
- data/processor/command/show_subcmd/debug_subcmd/step.rb +22 -0
- data/processor/command/show_subcmd/different.rb +27 -0
- data/processor/command/show_subcmd/hidelevel.rb +42 -0
- data/processor/command/show_subcmd/kernelstep.rb +37 -0
- data/processor/command/show_subcmd/max.rb +30 -0
- data/processor/command/show_subcmd/max_subcmd/list.rb +38 -0
- data/processor/command/show_subcmd/max_subcmd/stack.rb +36 -0
- data/processor/command/show_subcmd/max_subcmd/string.rb +42 -0
- data/processor/command/show_subcmd/max_subcmd/width.rb +37 -0
- data/processor/command/show_subcmd/trace.rb +29 -0
- data/processor/command/show_subcmd/trace_subcmd/print.rb +38 -0
- data/processor/command/source.rb +83 -0
- data/processor/command/step.rb +49 -0
- data/processor/command/tbreak.rb +19 -0
- data/processor/command/unalias.rb +44 -0
- data/processor/command/up.rb +87 -0
- data/processor/default.rb +56 -0
- data/processor/disassemble.rb +32 -0
- data/processor/eval.rb +96 -0
- data/processor/frame.rb +211 -0
- data/processor/help.rb +72 -0
- data/processor/hook.rb +133 -0
- data/processor/load_cmds.rb +101 -0
- data/processor/location.rb +128 -0
- data/processor/main.rb +394 -0
- data/processor/mock.rb +137 -0
- data/processor/msg.rb +28 -0
- data/processor/running.rb +230 -0
- data/processor/stepping.rb +115 -0
- data/processor/subcmd.rb +160 -0
- data/processor/validate.rb +355 -0
- data/test/data/enable.right +36 -0
- data/test/data/fname-with-blank.cmd +6 -0
- data/test/data/fname-with-blank.right +1 -0
- data/test/data/quit-Xdebug.right +3 -0
- data/test/data/quit.cmd +5 -0
- data/test/data/quit.right +0 -0
- data/test/example/fname with blank.rb +1 -0
- data/test/example/gcd-xx.rb +18 -0
- data/test/example/gcd.rb +19 -0
- data/test/example/gcd1.rb +24 -0
- data/test/example/null.rb +1 -0
- data/test/example/thread1.rb +3 -0
- data/test/functional/fn_helper.rb +112 -0
- data/test/functional/test-break-name.rb +52 -0
- data/test/functional/test-break.rb +51 -0
- data/test/functional/test-finish.rb +70 -0
- data/test/functional/test-fn_helper.rb +43 -0
- data/test/functional/test-list.rb +55 -0
- data/test/functional/test-next-bug.rb +49 -0
- data/test/functional/test-next.rb +101 -0
- data/test/functional/test-step.rb +272 -0
- data/test/functional/test-step2.rb +35 -0
- data/test/functional/test-tbreak.rb +41 -0
- data/test/integration/file-diff.rb +89 -0
- data/test/integration/helper.rb +78 -0
- data/test/integration/test-fname-with-blank.rb +12 -0
- data/test/integration/test-quit.rb +25 -0
- data/test/unit/cmd-helper.rb +46 -0
- data/test/unit/test-app-brkpt.rb +30 -0
- data/test/unit/test-app-brkptmgr.rb +51 -0
- data/test/unit/test-app-iseq.rb +49 -0
- data/test/unit/test-app-method.rb +54 -0
- data/test/unit/test-app-options.rb +61 -0
- data/test/unit/test-app-run.rb +16 -0
- data/test/unit/test-app-util.rb +28 -0
- data/test/unit/test-app-validate.rb +18 -0
- data/test/unit/test-base-subcmd.rb +61 -0
- data/test/unit/test-bin-trepanx.rb +48 -0
- data/test/unit/test-cmd-alias.rb +49 -0
- data/test/unit/test-cmd-break.rb +23 -0
- data/test/unit/test-cmd-exit.rb +27 -0
- data/test/unit/test-cmd-help.rb +101 -0
- data/test/unit/test-cmd-kill.rb +48 -0
- data/test/unit/test-intf-user.rb +46 -0
- data/test/unit/test-io-input.rb +27 -0
- data/test/unit/test-proc-eval.rb +37 -0
- data/test/unit/test-proc-frame.rb +79 -0
- data/test/unit/test-proc-help.rb +16 -0
- data/test/unit/test-proc-hook.rb +30 -0
- data/test/unit/test-proc-load_cmds.rb +41 -0
- data/test/unit/test-proc-location.rb +48 -0
- data/test/unit/test-proc-main.rb +96 -0
- data/test/unit/test-proc-validate.rb +91 -0
- data/test/unit/test-subcmd-help.rb +51 -0
- 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
|
data/io/null_output.rbc
ADDED
@@ -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
|