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/app/display.rbc
ADDED
@@ -0,0 +1,968 @@
|
|
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
|
+
28
|
71
|
+
5
|
72
|
+
66
|
73
|
+
99
|
74
|
+
7
|
75
|
+
0
|
76
|
+
65
|
77
|
+
49
|
78
|
+
1
|
79
|
+
2
|
80
|
+
13
|
81
|
+
99
|
82
|
+
12
|
83
|
+
7
|
84
|
+
2
|
85
|
+
12
|
86
|
+
7
|
87
|
+
3
|
88
|
+
12
|
89
|
+
65
|
90
|
+
12
|
91
|
+
49
|
92
|
+
4
|
93
|
+
4
|
94
|
+
15
|
95
|
+
49
|
96
|
+
2
|
97
|
+
0
|
98
|
+
11
|
99
|
+
I
|
100
|
+
6
|
101
|
+
I
|
102
|
+
0
|
103
|
+
I
|
104
|
+
0
|
105
|
+
I
|
106
|
+
0
|
107
|
+
n
|
108
|
+
p
|
109
|
+
5
|
110
|
+
x
|
111
|
+
7
|
112
|
+
Display
|
113
|
+
x
|
114
|
+
11
|
115
|
+
open_module
|
116
|
+
x
|
117
|
+
15
|
118
|
+
__module_init__
|
119
|
+
M
|
120
|
+
1
|
121
|
+
n
|
122
|
+
n
|
123
|
+
x
|
124
|
+
7
|
125
|
+
Display
|
126
|
+
i
|
127
|
+
86
|
128
|
+
5
|
129
|
+
66
|
130
|
+
99
|
131
|
+
7
|
132
|
+
0
|
133
|
+
7
|
134
|
+
1
|
135
|
+
65
|
136
|
+
67
|
137
|
+
49
|
138
|
+
2
|
139
|
+
0
|
140
|
+
49
|
141
|
+
3
|
142
|
+
4
|
143
|
+
15
|
144
|
+
99
|
145
|
+
7
|
146
|
+
4
|
147
|
+
7
|
148
|
+
5
|
149
|
+
65
|
150
|
+
67
|
151
|
+
49
|
152
|
+
2
|
153
|
+
0
|
154
|
+
49
|
155
|
+
3
|
156
|
+
4
|
157
|
+
15
|
158
|
+
99
|
159
|
+
7
|
160
|
+
6
|
161
|
+
7
|
162
|
+
7
|
163
|
+
65
|
164
|
+
67
|
165
|
+
49
|
166
|
+
2
|
167
|
+
0
|
168
|
+
49
|
169
|
+
3
|
170
|
+
4
|
171
|
+
15
|
172
|
+
99
|
173
|
+
7
|
174
|
+
8
|
175
|
+
7
|
176
|
+
9
|
177
|
+
65
|
178
|
+
67
|
179
|
+
49
|
180
|
+
2
|
181
|
+
0
|
182
|
+
49
|
183
|
+
3
|
184
|
+
4
|
185
|
+
15
|
186
|
+
99
|
187
|
+
7
|
188
|
+
10
|
189
|
+
7
|
190
|
+
11
|
191
|
+
65
|
192
|
+
67
|
193
|
+
49
|
194
|
+
2
|
195
|
+
0
|
196
|
+
49
|
197
|
+
3
|
198
|
+
4
|
199
|
+
15
|
200
|
+
99
|
201
|
+
7
|
202
|
+
12
|
203
|
+
7
|
204
|
+
13
|
205
|
+
65
|
206
|
+
67
|
207
|
+
49
|
208
|
+
2
|
209
|
+
0
|
210
|
+
49
|
211
|
+
3
|
212
|
+
4
|
213
|
+
11
|
214
|
+
I
|
215
|
+
5
|
216
|
+
I
|
217
|
+
0
|
218
|
+
I
|
219
|
+
0
|
220
|
+
I
|
221
|
+
0
|
222
|
+
n
|
223
|
+
p
|
224
|
+
14
|
225
|
+
x
|
226
|
+
4
|
227
|
+
info
|
228
|
+
M
|
229
|
+
1
|
230
|
+
n
|
231
|
+
n
|
232
|
+
x
|
233
|
+
4
|
234
|
+
info
|
235
|
+
i
|
236
|
+
14
|
237
|
+
20
|
238
|
+
0
|
239
|
+
7
|
240
|
+
0
|
241
|
+
64
|
242
|
+
49
|
243
|
+
1
|
244
|
+
1
|
245
|
+
56
|
246
|
+
2
|
247
|
+
50
|
248
|
+
3
|
249
|
+
0
|
250
|
+
11
|
251
|
+
I
|
252
|
+
3
|
253
|
+
I
|
254
|
+
1
|
255
|
+
I
|
256
|
+
1
|
257
|
+
I
|
258
|
+
1
|
259
|
+
n
|
260
|
+
p
|
261
|
+
4
|
262
|
+
s
|
263
|
+
1
|
264
|
+
|
265
|
+
|
266
|
+
x
|
267
|
+
5
|
268
|
+
split
|
269
|
+
M
|
270
|
+
1
|
271
|
+
p
|
272
|
+
2
|
273
|
+
x
|
274
|
+
9
|
275
|
+
for_block
|
276
|
+
t
|
277
|
+
n
|
278
|
+
x
|
279
|
+
4
|
280
|
+
info
|
281
|
+
i
|
282
|
+
20
|
283
|
+
57
|
284
|
+
19
|
285
|
+
0
|
286
|
+
15
|
287
|
+
5
|
288
|
+
7
|
289
|
+
0
|
290
|
+
20
|
291
|
+
0
|
292
|
+
47
|
293
|
+
49
|
294
|
+
1
|
295
|
+
0
|
296
|
+
63
|
297
|
+
2
|
298
|
+
47
|
299
|
+
49
|
300
|
+
2
|
301
|
+
1
|
302
|
+
11
|
303
|
+
I
|
304
|
+
5
|
305
|
+
I
|
306
|
+
1
|
307
|
+
I
|
308
|
+
1
|
309
|
+
I
|
310
|
+
1
|
311
|
+
n
|
312
|
+
p
|
313
|
+
3
|
314
|
+
s
|
315
|
+
2
|
316
|
+
|
|
317
|
+
x
|
318
|
+
4
|
319
|
+
to_s
|
320
|
+
x
|
321
|
+
4
|
322
|
+
puts
|
323
|
+
p
|
324
|
+
5
|
325
|
+
I
|
326
|
+
0
|
327
|
+
I
|
328
|
+
4
|
329
|
+
I
|
330
|
+
4
|
331
|
+
I
|
332
|
+
5
|
333
|
+
I
|
334
|
+
14
|
335
|
+
x
|
336
|
+
54
|
337
|
+
/home/rocky-rvm/.rvm/src/rbx-trepanning/app/display.rb
|
338
|
+
p
|
339
|
+
1
|
340
|
+
x
|
341
|
+
1
|
342
|
+
s
|
343
|
+
x
|
344
|
+
4
|
345
|
+
each
|
346
|
+
p
|
347
|
+
5
|
348
|
+
I
|
349
|
+
0
|
350
|
+
I
|
351
|
+
3
|
352
|
+
I
|
353
|
+
0
|
354
|
+
I
|
355
|
+
4
|
356
|
+
I
|
357
|
+
e
|
358
|
+
x
|
359
|
+
54
|
360
|
+
/home/rocky-rvm/.rvm/src/rbx-trepanning/app/display.rb
|
361
|
+
p
|
362
|
+
1
|
363
|
+
x
|
364
|
+
3
|
365
|
+
str
|
366
|
+
x
|
367
|
+
17
|
368
|
+
method_visibility
|
369
|
+
x
|
370
|
+
15
|
371
|
+
add_defn_method
|
372
|
+
x
|
373
|
+
7
|
374
|
+
display
|
375
|
+
M
|
376
|
+
1
|
377
|
+
n
|
378
|
+
n
|
379
|
+
x
|
380
|
+
7
|
381
|
+
display
|
382
|
+
i
|
383
|
+
16
|
384
|
+
5
|
385
|
+
7
|
386
|
+
0
|
387
|
+
20
|
388
|
+
0
|
389
|
+
47
|
390
|
+
49
|
391
|
+
1
|
392
|
+
0
|
393
|
+
63
|
394
|
+
2
|
395
|
+
47
|
396
|
+
49
|
397
|
+
2
|
398
|
+
1
|
399
|
+
11
|
400
|
+
I
|
401
|
+
4
|
402
|
+
I
|
403
|
+
1
|
404
|
+
I
|
405
|
+
1
|
406
|
+
I
|
407
|
+
1
|
408
|
+
n
|
409
|
+
p
|
410
|
+
3
|
411
|
+
s
|
412
|
+
3
|
413
|
+
=>
|
414
|
+
x
|
415
|
+
4
|
416
|
+
to_s
|
417
|
+
x
|
418
|
+
4
|
419
|
+
puts
|
420
|
+
p
|
421
|
+
5
|
422
|
+
I
|
423
|
+
0
|
424
|
+
I
|
425
|
+
9
|
426
|
+
I
|
427
|
+
0
|
428
|
+
I
|
429
|
+
a
|
430
|
+
I
|
431
|
+
10
|
432
|
+
x
|
433
|
+
54
|
434
|
+
/home/rocky-rvm/.rvm/src/rbx-trepanning/app/display.rb
|
435
|
+
p
|
436
|
+
1
|
437
|
+
x
|
438
|
+
3
|
439
|
+
str
|
440
|
+
x
|
441
|
+
4
|
442
|
+
crit
|
443
|
+
M
|
444
|
+
1
|
445
|
+
n
|
446
|
+
n
|
447
|
+
x
|
448
|
+
4
|
449
|
+
crit
|
450
|
+
i
|
451
|
+
16
|
452
|
+
5
|
453
|
+
7
|
454
|
+
0
|
455
|
+
20
|
456
|
+
0
|
457
|
+
47
|
458
|
+
49
|
459
|
+
1
|
460
|
+
0
|
461
|
+
63
|
462
|
+
2
|
463
|
+
47
|
464
|
+
49
|
465
|
+
2
|
466
|
+
1
|
467
|
+
11
|
468
|
+
I
|
469
|
+
4
|
470
|
+
I
|
471
|
+
1
|
472
|
+
I
|
473
|
+
1
|
474
|
+
I
|
475
|
+
1
|
476
|
+
n
|
477
|
+
p
|
478
|
+
3
|
479
|
+
s
|
480
|
+
11
|
481
|
+
[CRITICAL]
|
482
|
+
x
|
483
|
+
4
|
484
|
+
to_s
|
485
|
+
x
|
486
|
+
4
|
487
|
+
puts
|
488
|
+
p
|
489
|
+
5
|
490
|
+
I
|
491
|
+
0
|
492
|
+
I
|
493
|
+
d
|
494
|
+
I
|
495
|
+
0
|
496
|
+
I
|
497
|
+
e
|
498
|
+
I
|
499
|
+
10
|
500
|
+
x
|
501
|
+
54
|
502
|
+
/home/rocky-rvm/.rvm/src/rbx-trepanning/app/display.rb
|
503
|
+
p
|
504
|
+
1
|
505
|
+
x
|
506
|
+
3
|
507
|
+
str
|
508
|
+
x
|
509
|
+
5
|
510
|
+
error
|
511
|
+
M
|
512
|
+
1
|
513
|
+
n
|
514
|
+
n
|
515
|
+
x
|
516
|
+
5
|
517
|
+
error
|
518
|
+
i
|
519
|
+
43
|
520
|
+
23
|
521
|
+
1
|
522
|
+
10
|
523
|
+
10
|
524
|
+
7
|
525
|
+
0
|
526
|
+
64
|
527
|
+
19
|
528
|
+
1
|
529
|
+
15
|
530
|
+
20
|
531
|
+
0
|
532
|
+
45
|
533
|
+
1
|
534
|
+
2
|
535
|
+
49
|
536
|
+
3
|
537
|
+
1
|
538
|
+
9
|
539
|
+
29
|
540
|
+
20
|
541
|
+
0
|
542
|
+
56
|
543
|
+
4
|
544
|
+
50
|
545
|
+
5
|
546
|
+
0
|
547
|
+
8
|
548
|
+
42
|
549
|
+
20
|
550
|
+
0
|
551
|
+
7
|
552
|
+
6
|
553
|
+
64
|
554
|
+
49
|
555
|
+
7
|
556
|
+
1
|
557
|
+
56
|
558
|
+
8
|
559
|
+
50
|
560
|
+
5
|
561
|
+
0
|
562
|
+
11
|
563
|
+
I
|
564
|
+
4
|
565
|
+
I
|
566
|
+
2
|
567
|
+
I
|
568
|
+
1
|
569
|
+
I
|
570
|
+
2
|
571
|
+
n
|
572
|
+
p
|
573
|
+
9
|
574
|
+
s
|
575
|
+
3
|
576
|
+
**
|
577
|
+
x
|
578
|
+
5
|
579
|
+
Array
|
580
|
+
n
|
581
|
+
x
|
582
|
+
5
|
583
|
+
is_a?
|
584
|
+
M
|
585
|
+
1
|
586
|
+
p
|
587
|
+
2
|
588
|
+
x
|
589
|
+
9
|
590
|
+
for_block
|
591
|
+
t
|
592
|
+
n
|
593
|
+
x
|
594
|
+
5
|
595
|
+
error
|
596
|
+
i
|
597
|
+
12
|
598
|
+
57
|
599
|
+
19
|
600
|
+
0
|
601
|
+
15
|
602
|
+
5
|
603
|
+
20
|
604
|
+
0
|
605
|
+
47
|
606
|
+
49
|
607
|
+
0
|
608
|
+
1
|
609
|
+
11
|
610
|
+
I
|
611
|
+
4
|
612
|
+
I
|
613
|
+
1
|
614
|
+
I
|
615
|
+
1
|
616
|
+
I
|
617
|
+
1
|
618
|
+
n
|
619
|
+
p
|
620
|
+
1
|
621
|
+
x
|
622
|
+
5
|
623
|
+
error
|
624
|
+
p
|
625
|
+
3
|
626
|
+
I
|
627
|
+
0
|
628
|
+
I
|
629
|
+
13
|
630
|
+
I
|
631
|
+
c
|
632
|
+
x
|
633
|
+
54
|
634
|
+
/home/rocky-rvm/.rvm/src/rbx-trepanning/app/display.rb
|
635
|
+
p
|
636
|
+
1
|
637
|
+
x
|
638
|
+
1
|
639
|
+
s
|
640
|
+
x
|
641
|
+
4
|
642
|
+
each
|
643
|
+
s
|
644
|
+
1
|
645
|
+
|
646
|
+
|
647
|
+
x
|
648
|
+
5
|
649
|
+
split
|
650
|
+
M
|
651
|
+
1
|
652
|
+
p
|
653
|
+
2
|
654
|
+
x
|
655
|
+
9
|
656
|
+
for_block
|
657
|
+
t
|
658
|
+
n
|
659
|
+
x
|
660
|
+
5
|
661
|
+
error
|
662
|
+
i
|
663
|
+
23
|
664
|
+
57
|
665
|
+
19
|
666
|
+
0
|
667
|
+
15
|
668
|
+
5
|
669
|
+
7
|
670
|
+
0
|
671
|
+
64
|
672
|
+
21
|
673
|
+
1
|
674
|
+
1
|
675
|
+
20
|
676
|
+
0
|
677
|
+
35
|
678
|
+
2
|
679
|
+
49
|
680
|
+
1
|
681
|
+
1
|
682
|
+
47
|
683
|
+
49
|
684
|
+
2
|
685
|
+
1
|
686
|
+
11
|
687
|
+
I
|
688
|
+
6
|
689
|
+
I
|
690
|
+
1
|
691
|
+
I
|
692
|
+
1
|
693
|
+
I
|
694
|
+
1
|
695
|
+
n
|
696
|
+
p
|
697
|
+
3
|
698
|
+
s
|
699
|
+
4
|
700
|
+
%s%s
|
701
|
+
x
|
702
|
+
1
|
703
|
+
%
|
704
|
+
x
|
705
|
+
4
|
706
|
+
puts
|
707
|
+
p
|
708
|
+
5
|
709
|
+
I
|
710
|
+
0
|
711
|
+
I
|
712
|
+
15
|
713
|
+
I
|
714
|
+
4
|
715
|
+
I
|
716
|
+
16
|
717
|
+
I
|
718
|
+
17
|
719
|
+
x
|
720
|
+
54
|
721
|
+
/home/rocky-rvm/.rvm/src/rbx-trepanning/app/display.rb
|
722
|
+
p
|
723
|
+
1
|
724
|
+
x
|
725
|
+
1
|
726
|
+
s
|
727
|
+
p
|
728
|
+
9
|
729
|
+
I
|
730
|
+
0
|
731
|
+
I
|
732
|
+
11
|
733
|
+
I
|
734
|
+
a
|
735
|
+
I
|
736
|
+
12
|
737
|
+
I
|
738
|
+
14
|
739
|
+
I
|
740
|
+
13
|
741
|
+
I
|
742
|
+
1d
|
743
|
+
I
|
744
|
+
15
|
745
|
+
I
|
746
|
+
2b
|
747
|
+
x
|
748
|
+
54
|
749
|
+
/home/rocky-rvm/.rvm/src/rbx-trepanning/app/display.rb
|
750
|
+
p
|
751
|
+
2
|
752
|
+
x
|
753
|
+
3
|
754
|
+
str
|
755
|
+
x
|
756
|
+
6
|
757
|
+
prefix
|
758
|
+
x
|
759
|
+
7
|
760
|
+
section
|
761
|
+
M
|
762
|
+
1
|
763
|
+
n
|
764
|
+
n
|
765
|
+
x
|
766
|
+
7
|
767
|
+
section
|
768
|
+
i
|
769
|
+
18
|
770
|
+
5
|
771
|
+
7
|
772
|
+
0
|
773
|
+
20
|
774
|
+
0
|
775
|
+
47
|
776
|
+
49
|
777
|
+
1
|
778
|
+
0
|
779
|
+
7
|
780
|
+
2
|
781
|
+
63
|
782
|
+
3
|
783
|
+
47
|
784
|
+
49
|
785
|
+
3
|
786
|
+
1
|
787
|
+
11
|
788
|
+
I
|
789
|
+
5
|
790
|
+
I
|
791
|
+
1
|
792
|
+
I
|
793
|
+
1
|
794
|
+
I
|
795
|
+
1
|
796
|
+
n
|
797
|
+
p
|
798
|
+
4
|
799
|
+
s
|
800
|
+
5
|
801
|
+
====
|
802
|
+
x
|
803
|
+
4
|
804
|
+
to_s
|
805
|
+
s
|
806
|
+
5
|
807
|
+
====
|
808
|
+
x
|
809
|
+
4
|
810
|
+
puts
|
811
|
+
p
|
812
|
+
5
|
813
|
+
I
|
814
|
+
0
|
815
|
+
I
|
816
|
+
1b
|
817
|
+
I
|
818
|
+
0
|
819
|
+
I
|
820
|
+
1c
|
821
|
+
I
|
822
|
+
12
|
823
|
+
x
|
824
|
+
54
|
825
|
+
/home/rocky-rvm/.rvm/src/rbx-trepanning/app/display.rb
|
826
|
+
p
|
827
|
+
1
|
828
|
+
x
|
829
|
+
3
|
830
|
+
str
|
831
|
+
x
|
832
|
+
3
|
833
|
+
ask
|
834
|
+
M
|
835
|
+
1
|
836
|
+
n
|
837
|
+
n
|
838
|
+
x
|
839
|
+
3
|
840
|
+
ask
|
841
|
+
i
|
842
|
+
17
|
843
|
+
45
|
844
|
+
0
|
845
|
+
1
|
846
|
+
7
|
847
|
+
2
|
848
|
+
20
|
849
|
+
0
|
850
|
+
47
|
851
|
+
49
|
852
|
+
3
|
853
|
+
0
|
854
|
+
63
|
855
|
+
2
|
856
|
+
49
|
857
|
+
4
|
858
|
+
1
|
859
|
+
11
|
860
|
+
I
|
861
|
+
4
|
862
|
+
I
|
863
|
+
1
|
864
|
+
I
|
865
|
+
1
|
866
|
+
I
|
867
|
+
1
|
868
|
+
n
|
869
|
+
p
|
870
|
+
5
|
871
|
+
x
|
872
|
+
8
|
873
|
+
Readline
|
874
|
+
n
|
875
|
+
s
|
876
|
+
2
|
877
|
+
|
|
878
|
+
x
|
879
|
+
4
|
880
|
+
to_s
|
881
|
+
x
|
882
|
+
8
|
883
|
+
readline
|
884
|
+
p
|
885
|
+
5
|
886
|
+
I
|
887
|
+
0
|
888
|
+
I
|
889
|
+
1f
|
890
|
+
I
|
891
|
+
0
|
892
|
+
I
|
893
|
+
20
|
894
|
+
I
|
895
|
+
11
|
896
|
+
x
|
897
|
+
54
|
898
|
+
/home/rocky-rvm/.rvm/src/rbx-trepanning/app/display.rb
|
899
|
+
p
|
900
|
+
1
|
901
|
+
x
|
902
|
+
3
|
903
|
+
str
|
904
|
+
p
|
905
|
+
13
|
906
|
+
I
|
907
|
+
2
|
908
|
+
I
|
909
|
+
3
|
910
|
+
I
|
911
|
+
10
|
912
|
+
I
|
913
|
+
9
|
914
|
+
I
|
915
|
+
1e
|
916
|
+
I
|
917
|
+
d
|
918
|
+
I
|
919
|
+
2c
|
920
|
+
I
|
921
|
+
11
|
922
|
+
I
|
923
|
+
3a
|
924
|
+
I
|
925
|
+
1b
|
926
|
+
I
|
927
|
+
48
|
928
|
+
I
|
929
|
+
1f
|
930
|
+
I
|
931
|
+
56
|
932
|
+
x
|
933
|
+
54
|
934
|
+
/home/rocky-rvm/.rvm/src/rbx-trepanning/app/display.rb
|
935
|
+
p
|
936
|
+
0
|
937
|
+
x
|
938
|
+
13
|
939
|
+
attach_method
|
940
|
+
p
|
941
|
+
3
|
942
|
+
I
|
943
|
+
2
|
944
|
+
I
|
945
|
+
2
|
946
|
+
I
|
947
|
+
1c
|
948
|
+
x
|
949
|
+
54
|
950
|
+
/home/rocky-rvm/.rvm/src/rbx-trepanning/app/display.rb
|
951
|
+
p
|
952
|
+
0
|
953
|
+
x
|
954
|
+
13
|
955
|
+
attach_method
|
956
|
+
p
|
957
|
+
3
|
958
|
+
I
|
959
|
+
0
|
960
|
+
I
|
961
|
+
1
|
962
|
+
I
|
963
|
+
1d
|
964
|
+
x
|
965
|
+
54
|
966
|
+
/home/rocky-rvm/.rvm/src/rbx-trepanning/app/display.rb
|
967
|
+
p
|
968
|
+
0
|