rbx-trepanning 0.0.5-universal-rubinius-1.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (266) hide show
  1. data/ChangeLog +2002 -0
  2. data/LICENSE +25 -0
  3. data/NEWS +31 -0
  4. data/README.textile +34 -0
  5. data/Rakefile +165 -0
  6. data/THANKS +14 -0
  7. data/app/breakpoint.rb +219 -0
  8. data/app/breakpoint.rbc +3551 -0
  9. data/app/brkptmgr.rb +140 -0
  10. data/app/brkptmgr.rbc +2903 -0
  11. data/app/client.rb +61 -0
  12. data/app/client.rbc +1225 -0
  13. data/app/complete.rb +52 -0
  14. data/app/complete.rbc +1288 -0
  15. data/app/default.rb +71 -0
  16. data/app/default.rbc +1132 -0
  17. data/app/display.rb +148 -0
  18. data/app/display.rbc +2578 -0
  19. data/app/frame.rb +98 -0
  20. data/app/frame.rbc +1808 -0
  21. data/app/irb.rb +111 -0
  22. data/app/irb.rbc +2094 -0
  23. data/app/iseq.rb +117 -0
  24. data/app/iseq.rbc +2192 -0
  25. data/app/llvm.rbc +2478 -0
  26. data/app/method.rb +173 -0
  27. data/app/method.rbc +2492 -0
  28. data/app/method_name.rbc +2467 -0
  29. data/app/mock.rb +13 -0
  30. data/app/mock.rbc +398 -0
  31. data/app/options.rb +137 -0
  32. data/app/options.rbc +2898 -0
  33. data/app/rbx-llvm.rb +165 -0
  34. data/app/rbx-llvm.rbc +2478 -0
  35. data/app/run.rb +86 -0
  36. data/app/run.rbc +1244 -0
  37. data/app/util.rb +49 -0
  38. data/app/util.rbc +1146 -0
  39. data/app/validate.rb +30 -0
  40. data/app/validate.rbc +676 -0
  41. data/bin/trepan.compiled.rbc +1043 -0
  42. data/bin/trepanx +69 -0
  43. data/bin/trepanx.compiled.rbc +1049 -0
  44. data/data/irbrc +41 -0
  45. data/data/irbrc.compiled.rbc +640 -0
  46. data/interface/base_intf.rb +105 -0
  47. data/interface/base_intf.rbc +1899 -0
  48. data/interface/client.rb +80 -0
  49. data/interface/client.rbc +1072 -0
  50. data/interface/comcodes.rb +20 -0
  51. data/interface/comcodes.rbc +385 -0
  52. data/interface/script.rb +104 -0
  53. data/interface/script.rbc +1642 -0
  54. data/interface/server.rb +143 -0
  55. data/interface/server.rbc +2213 -0
  56. data/interface/user.rb +150 -0
  57. data/interface/user.rbc +2867 -0
  58. data/io/base_io.rb +148 -0
  59. data/io/base_io.rbc +2111 -0
  60. data/io/input.rb +135 -0
  61. data/io/input.rbc +2528 -0
  62. data/io/null_output.rb +42 -0
  63. data/io/null_output.rbc +730 -0
  64. data/io/string_array.rb +156 -0
  65. data/io/string_array.rbc +2466 -0
  66. data/io/tcpclient.rb +129 -0
  67. data/io/tcpclient.rbc +2419 -0
  68. data/io/tcpfns.rb +33 -0
  69. data/io/tcpfns.rbc +694 -0
  70. data/io/tcpserver.rb +141 -0
  71. data/io/tcpserver.rbc +2638 -0
  72. data/lib/trepanning.rb +474 -0
  73. data/lib/trepanning.rbc +7705 -0
  74. data/lib/trepanning2.rb +441 -0
  75. data/processor/breakpoint.rb +164 -0
  76. data/processor/command/alias.rb +55 -0
  77. data/processor/command/backtrace.rb +76 -0
  78. data/processor/command/base/cmd.rb +173 -0
  79. data/processor/command/base/subcmd.rb +229 -0
  80. data/processor/command/base/submgr.rb +182 -0
  81. data/processor/command/base/subsubcmd.rb +103 -0
  82. data/processor/command/base/subsubmgr.rb +195 -0
  83. data/processor/command/break.rb +100 -0
  84. data/processor/command/complete.rb +37 -0
  85. data/processor/command/continue.rb +91 -0
  86. data/processor/command/delete.rb +30 -0
  87. data/processor/command/directory.rb +51 -0
  88. data/processor/command/disassemble.rb +145 -0
  89. data/processor/command/display.rb +82 -0
  90. data/processor/command/down.rb +54 -0
  91. data/processor/command/eval.rb +51 -0
  92. data/processor/command/exit.rb +62 -0
  93. data/processor/command/finish.rb +80 -0
  94. data/processor/command/frame.rb +89 -0
  95. data/processor/command/help.rb +251 -0
  96. data/processor/command/info.rb +28 -0
  97. data/processor/command/info_subcmd/breakpoints.rb +73 -0
  98. data/processor/command/info_subcmd/files.rb +209 -0
  99. data/processor/command/info_subcmd/line.rb +86 -0
  100. data/processor/command/info_subcmd/method.rb +71 -0
  101. data/processor/command/info_subcmd/program.rb +49 -0
  102. data/processor/command/info_subcmd/ruby.rb +62 -0
  103. data/processor/command/info_subcmd/variables.rb +48 -0
  104. data/processor/command/irb.rb +128 -0
  105. data/processor/command/kill.rb +70 -0
  106. data/processor/command/list.rb +300 -0
  107. data/processor/command/macro.rb +76 -0
  108. data/processor/command/next.rb +66 -0
  109. data/processor/command/nexti.rb +59 -0
  110. data/processor/command/pr.rb +38 -0
  111. data/processor/command/ps.rb +40 -0
  112. data/processor/command/restart.rb +60 -0
  113. data/processor/command/server.rb +72 -0
  114. data/processor/command/set.rb +47 -0
  115. data/processor/command/set_subcmd/auto.rb +27 -0
  116. data/processor/command/set_subcmd/auto_subcmd/dis.rb +33 -0
  117. data/processor/command/set_subcmd/auto_subcmd/eval.rb +54 -0
  118. data/processor/command/set_subcmd/auto_subcmd/irb.rb +34 -0
  119. data/processor/command/set_subcmd/auto_subcmd/list.rb +34 -0
  120. data/processor/command/set_subcmd/basename.rb +25 -0
  121. data/processor/command/set_subcmd/confirm.rb +24 -0
  122. data/processor/command/set_subcmd/debug.rb +26 -0
  123. data/processor/command/set_subcmd/debug_subcmd/dbgr.rb +36 -0
  124. data/processor/command/set_subcmd/debug_subcmd/skip.rb +23 -0
  125. data/processor/command/set_subcmd/debug_subcmd/step.rb +23 -0
  126. data/processor/command/set_subcmd/different.rb +59 -0
  127. data/processor/command/set_subcmd/hidelevel.rb +62 -0
  128. data/processor/command/set_subcmd/highlight.rb +33 -0
  129. data/processor/command/set_subcmd/kernelstep.rb +60 -0
  130. data/processor/command/set_subcmd/max.rb +26 -0
  131. data/processor/command/set_subcmd/max_subcmd/list.rb +49 -0
  132. data/processor/command/set_subcmd/max_subcmd/stack.rb +50 -0
  133. data/processor/command/set_subcmd/max_subcmd/string.rb +76 -0
  134. data/processor/command/set_subcmd/max_subcmd/width.rb +49 -0
  135. data/processor/command/set_subcmd/substitute.rb +24 -0
  136. data/processor/command/set_subcmd/substitute_subcmd/path.rb +56 -0
  137. data/processor/command/set_subcmd/trace.rb +36 -0
  138. data/processor/command/set_subcmd/trace_subcmd/print.rb +57 -0
  139. data/processor/command/show.rb +38 -0
  140. data/processor/command/show_subcmd/alias.rb +42 -0
  141. data/processor/command/show_subcmd/args.rb +25 -0
  142. data/processor/command/show_subcmd/auto.rb +28 -0
  143. data/processor/command/show_subcmd/auto_subcmd/dis.rb +37 -0
  144. data/processor/command/show_subcmd/auto_subcmd/eval.rb +28 -0
  145. data/processor/command/show_subcmd/auto_subcmd/irb.rb +23 -0
  146. data/processor/command/show_subcmd/auto_subcmd/list.rb +22 -0
  147. data/processor/command/show_subcmd/basename.rb +20 -0
  148. data/processor/command/show_subcmd/confirm.rb +18 -0
  149. data/processor/command/show_subcmd/debug.rb +26 -0
  150. data/processor/command/show_subcmd/debug_subcmd/dbgr.rb +21 -0
  151. data/processor/command/show_subcmd/debug_subcmd/skip.rb +22 -0
  152. data/processor/command/show_subcmd/debug_subcmd/step.rb +22 -0
  153. data/processor/command/show_subcmd/different.rb +26 -0
  154. data/processor/command/show_subcmd/hidelevel.rb +41 -0
  155. data/processor/command/show_subcmd/highlight.rb +24 -0
  156. data/processor/command/show_subcmd/kernelstep.rb +34 -0
  157. data/processor/command/show_subcmd/max.rb +27 -0
  158. data/processor/command/show_subcmd/max_subcmd/list.rb +38 -0
  159. data/processor/command/show_subcmd/max_subcmd/stack.rb +36 -0
  160. data/processor/command/show_subcmd/max_subcmd/string.rb +42 -0
  161. data/processor/command/show_subcmd/max_subcmd/width.rb +37 -0
  162. data/processor/command/show_subcmd/trace.rb +27 -0
  163. data/processor/command/show_subcmd/trace_subcmd/print.rb +38 -0
  164. data/processor/command/show_subcmd/version.rb +23 -0
  165. data/processor/command/source.rb +126 -0
  166. data/processor/command/step.rb +84 -0
  167. data/processor/command/tbreak.rb +19 -0
  168. data/processor/command/unalias.rb +44 -0
  169. data/processor/command/undisplay.rb +59 -0
  170. data/processor/command/up.rb +86 -0
  171. data/processor/default.rb +58 -0
  172. data/processor/disassemble.rb +46 -0
  173. data/processor/display.rb +18 -0
  174. data/processor/eval.rb +96 -0
  175. data/processor/frame.rb +211 -0
  176. data/processor/help.rb +72 -0
  177. data/processor/hook.rb +133 -0
  178. data/processor/load_cmds.rb +185 -0
  179. data/processor/location.rb +137 -0
  180. data/processor/main.rb +412 -0
  181. data/processor/mock.rb +144 -0
  182. data/processor/msg.rb +43 -0
  183. data/processor/running.rb +234 -0
  184. data/processor/stepping.rb +114 -0
  185. data/processor/subcmd.rb +161 -0
  186. data/processor/validate.rb +355 -0
  187. data/sample/list-terminal-colors.rb +139 -0
  188. data/sample/list-terminal-colors.rbc +2318 -0
  189. data/sample/rocky-dot-trepanxrc +14 -0
  190. data/sample/rocky-trepanx-colors.rb +47 -0
  191. data/sample/rocky-trepanx-colors.rbc +530 -0
  192. data/test/data/enable.right +36 -0
  193. data/test/data/fname-with-blank.cmd +6 -0
  194. data/test/data/fname-with-blank.right +4 -0
  195. data/test/data/inline-call.cmd +6 -0
  196. data/test/data/inline-call.right +13 -0
  197. data/test/data/quit-Xdebug.right +3 -0
  198. data/test/data/quit.cmd +5 -0
  199. data/test/data/quit.right +2 -0
  200. data/test/data/quit2.cmd +6 -0
  201. data/test/data/quit2.right +3 -0
  202. data/test/data/step-bug.cmd +11 -0
  203. data/test/data/step-bug.right +3 -0
  204. data/test/example/fname with blank.rb +1 -0
  205. data/test/example/gcd-server.rb +22 -0
  206. data/test/example/gcd.rb +19 -0
  207. data/test/example/inline-call.rb +23 -0
  208. data/test/example/null.rb +1 -0
  209. data/test/example/step-bug.rb +14 -0
  210. data/test/example/thread1.rb +3 -0
  211. data/test/functional/fn_helper.rb +112 -0
  212. data/test/functional/test-break-name.rb +52 -0
  213. data/test/functional/test-break.rb +51 -0
  214. data/test/functional/test-finish.rb +70 -0
  215. data/test/functional/test-fn_helper.rb +43 -0
  216. data/test/functional/test-list.rb +55 -0
  217. data/test/functional/test-next-bug.rb +49 -0
  218. data/test/functional/test-next.rb +101 -0
  219. data/test/functional/test-step.rb +272 -0
  220. data/test/functional/test-step2.rb +35 -0
  221. data/test/functional/test-tbreak.rb +41 -0
  222. data/test/integration/file-diff.rb +89 -0
  223. data/test/integration/helper.rb +78 -0
  224. data/test/integration/skip-test-step-bug.rb +17 -0
  225. data/test/integration/test-fname-with-blank.rb +16 -0
  226. data/test/integration/test-inline-call.rb +20 -0
  227. data/test/integration/test-quit.rb +47 -0
  228. data/test/unit/cmd-helper.rb +50 -0
  229. data/test/unit/mock-helper.rb +10 -0
  230. data/test/unit/test-app-brkpt.rb +29 -0
  231. data/test/unit/test-app-brkptmgr.rb +51 -0
  232. data/test/unit/test-app-iseq.rb +64 -0
  233. data/test/unit/test-app-method.rb +54 -0
  234. data/test/unit/test-app-options.rb +82 -0
  235. data/test/unit/test-app-run.rb +16 -0
  236. data/test/unit/test-app-util.rb +27 -0
  237. data/test/unit/test-app-validate.rb +18 -0
  238. data/test/unit/test-base-cmd.rb +47 -0
  239. data/test/unit/test-base-subcmd.rb +61 -0
  240. data/test/unit/test-base-submgr.rb +24 -0
  241. data/test/unit/test-bin-trepanx.rb +48 -0
  242. data/test/unit/test-cmd-alias.rb +48 -0
  243. data/test/unit/test-cmd-break.rb +22 -0
  244. data/test/unit/test-cmd-exit.rb +27 -0
  245. data/test/unit/test-cmd-finish.rb +27 -0
  246. data/test/unit/test-cmd-help.rb +104 -0
  247. data/test/unit/test-cmd-kill.rb +47 -0
  248. data/test/unit/test-cmd-source.rb +34 -0
  249. data/test/unit/test-cmd-step.rb +29 -0
  250. data/test/unit/test-completion.rb +38 -0
  251. data/test/unit/test-intf-user.rb +46 -0
  252. data/test/unit/test-io-input.rb +27 -0
  253. data/test/unit/test-io-tcp.rb +33 -0
  254. data/test/unit/test-io-tcpclient.rb +54 -0
  255. data/test/unit/test-io-tcpfns.rb +17 -0
  256. data/test/unit/test-io-tcpserver.rb +50 -0
  257. data/test/unit/test-proc-eval.rb +36 -0
  258. data/test/unit/test-proc-frame.rb +79 -0
  259. data/test/unit/test-proc-help.rb +16 -0
  260. data/test/unit/test-proc-hook.rb +30 -0
  261. data/test/unit/test-proc-load_cmds.rb +50 -0
  262. data/test/unit/test-proc-location.rb +53 -0
  263. data/test/unit/test-proc-main.rb +99 -0
  264. data/test/unit/test-proc-validate.rb +91 -0
  265. data/test/unit/test-subcmd-help.rb +47 -0
  266. metadata +398 -0
@@ -0,0 +1,148 @@
1
+ # Copyright (C) 2010, 2011 Rocky Bernstein <rockyb@rubyforge.net>
2
+ # classes to support communication to and from the debugger. This
3
+ # communcation might be to/from another process or another computer.
4
+ # And reading may be from a debugger command script.
5
+ #
6
+ # For example, we'd like to support Sockets, and serial lines and file
7
+ # reading, as well a readline-type input. Encryption and Authentication
8
+ # methods might decorate some of the communication channels.
9
+ #
10
+ # Some ideas originiated as part of Matt Fleming's 2006 Google Summer of
11
+ # Code project.
12
+
13
+ class Trepan
14
+
15
+ NotImplementedMessage = 'This method must be overriden in a subclass' unless
16
+ defined?(NotImplementedMessage)
17
+
18
+ class InputBase
19
+ attr_reader :input
20
+ attr_reader :line_edit
21
+
22
+ DEFAULT_OPTS = {
23
+ :line_edit => false,
24
+ } unless defined?(DEFAULT_OPTS)
25
+
26
+ def initialize(inp, opts={})
27
+ @opts = DEFAULT_OPTS.merge(opts)
28
+ @input = inp
29
+ @line_edit = opts[:line_edit]
30
+ end
31
+
32
+ def close
33
+ @input.close unless @input.closed?
34
+ end
35
+
36
+ def eof?
37
+ begin
38
+ @input.eof?
39
+ rescue IOError
40
+ true
41
+ end
42
+ end
43
+
44
+ # Read a line of input. EOFError will be raised on EOF.
45
+ #
46
+ # Note that we don't support prompting first. Instead, arrange
47
+ # to call Trepan::Output.write() first with the prompt. If
48
+ # `use_raw' is set raw_input() will be used in that is supported
49
+ # by the specific input input. If this option is left None as is
50
+ # normally expected the value from the class initialization is
51
+ # used.
52
+ def readline
53
+ @input.readline
54
+ end
55
+ end
56
+
57
+ # This is an abstract class that specifies debugger output.
58
+ class OutputBase
59
+ attr_accessor :flush_after_write
60
+ attr_reader :output
61
+ def initialize(out, opts={})
62
+ @output = out
63
+ @flush_after_write = false
64
+ @eof = false
65
+ end
66
+
67
+ def close
68
+ @output.close if @output
69
+ @eof = true
70
+ end
71
+
72
+ def eof?
73
+ @eof
74
+ end
75
+
76
+ def flush
77
+ @output.flush
78
+ end
79
+
80
+ # Use this to set where to write to. output can be a
81
+ # file object or a string. This code raises IOError on error.
82
+ def write(*args)
83
+ @output.print(*args)
84
+ end
85
+
86
+ # used to write to a debugger that is connected to this
87
+ # `str' written will have a newline added to it
88
+ #
89
+ def writeline(msg)
90
+ @output.write("%s\n" % msg)
91
+ end
92
+ end
93
+
94
+ # This is an abstract class that specifies debugger input output when
95
+ # handled by the same channel, e.g. a socket or tty.
96
+ #
97
+ class InOutBase
98
+
99
+ def initialize(inout, opts={})
100
+ @opts = DEFAULT_OPTS.merge(opts)
101
+ @inout = inout
102
+ end
103
+
104
+ def close
105
+ @inout.close() if @inout
106
+ end
107
+
108
+ def eof?
109
+ begin
110
+ @input.eof?
111
+ rescue IOError
112
+ true
113
+ end
114
+ end
115
+
116
+ def flush
117
+ @inout.flush
118
+ end
119
+
120
+ # Read a line of input. EOFError will be raised on EOF.
121
+ #
122
+ # Note that we don't support prompting first. Instead, arrange to
123
+ # call DebuggerOutput.write() first with the prompt. If `use_raw'
124
+ # is set raw_input() will be used in that is supported by the
125
+ # specific input input. If this option is left nil as is normally
126
+ # expected the value from the class initialization is used.
127
+ def readline(use_raw=nil)
128
+ @input.readline
129
+ end
130
+
131
+ # Use this to set where to write to. output can be a
132
+ # file object or a string. This code raises IOError on error.
133
+ #
134
+ # Use this to set where to write to. output can be a
135
+ # file object or a string. This code raises IOError on error.
136
+ def write(*args)
137
+ @inout.write(*args)
138
+ end
139
+
140
+ # used to write to a debugger that is connected to this
141
+ # server; `str' written will have a newline added to it
142
+ def writeline( msg)
143
+ @inout.write("%s\n" % msg)
144
+ end
145
+ end
146
+
147
+ end
148
+
@@ -0,0 +1,2111 @@
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
+ 125
71
+ 5
72
+ 66
73
+ 26
74
+ 93
75
+ 0
76
+ 15
77
+ 29
78
+ 17
79
+ 0
80
+ 7
81
+ 0
82
+ 98
83
+ 1
84
+ 1
85
+ 30
86
+ 8
87
+ 23
88
+ 25
89
+ 92
90
+ 0
91
+ 27
92
+ 8
93
+ 28
94
+ 15
95
+ 7
96
+ 2
97
+ 8
98
+ 29
99
+ 1
100
+ 9
101
+ 34
102
+ 1
103
+ 8
104
+ 43
105
+ 65
106
+ 7
107
+ 0
108
+ 7
109
+ 3
110
+ 64
111
+ 49
112
+ 4
113
+ 2
114
+ 15
115
+ 99
116
+ 7
117
+ 5
118
+ 1
119
+ 65
120
+ 49
121
+ 6
122
+ 3
123
+ 13
124
+ 99
125
+ 12
126
+ 7
127
+ 7
128
+ 12
129
+ 7
130
+ 8
131
+ 12
132
+ 65
133
+ 12
134
+ 49
135
+ 9
136
+ 4
137
+ 15
138
+ 49
139
+ 7
140
+ 0
141
+ 15
142
+ 99
143
+ 7
144
+ 10
145
+ 1
146
+ 65
147
+ 49
148
+ 6
149
+ 3
150
+ 13
151
+ 99
152
+ 12
153
+ 7
154
+ 7
155
+ 12
156
+ 7
157
+ 11
158
+ 12
159
+ 65
160
+ 12
161
+ 49
162
+ 9
163
+ 4
164
+ 15
165
+ 49
166
+ 7
167
+ 0
168
+ 15
169
+ 99
170
+ 7
171
+ 12
172
+ 1
173
+ 65
174
+ 49
175
+ 6
176
+ 3
177
+ 13
178
+ 99
179
+ 12
180
+ 7
181
+ 7
182
+ 12
183
+ 7
184
+ 13
185
+ 12
186
+ 65
187
+ 12
188
+ 49
189
+ 9
190
+ 4
191
+ 15
192
+ 49
193
+ 7
194
+ 0
195
+ 11
196
+ I
197
+ 7
198
+ I
199
+ 0
200
+ I
201
+ 0
202
+ I
203
+ 0
204
+ n
205
+ p
206
+ 14
207
+ x
208
+ 21
209
+ NotImplementedMessage
210
+ x
211
+ 16
212
+ vm_const_defined
213
+ s
214
+ 8
215
+ constant
216
+ s
217
+ 43
218
+ This method must be overriden in a subclass
219
+ x
220
+ 9
221
+ const_set
222
+ x
223
+ 9
224
+ InputBase
225
+ x
226
+ 10
227
+ open_class
228
+ x
229
+ 14
230
+ __class_init__
231
+ M
232
+ 1
233
+ n
234
+ n
235
+ x
236
+ 9
237
+ InputBase
238
+ i
239
+ 128
240
+ 5
241
+ 66
242
+ 5
243
+ 7
244
+ 0
245
+ 47
246
+ 49
247
+ 1
248
+ 1
249
+ 15
250
+ 5
251
+ 7
252
+ 2
253
+ 47
254
+ 49
255
+ 1
256
+ 1
257
+ 15
258
+ 26
259
+ 93
260
+ 0
261
+ 15
262
+ 29
263
+ 33
264
+ 0
265
+ 7
266
+ 3
267
+ 98
268
+ 4
269
+ 1
270
+ 30
271
+ 8
272
+ 39
273
+ 25
274
+ 92
275
+ 0
276
+ 27
277
+ 8
278
+ 44
279
+ 15
280
+ 7
281
+ 5
282
+ 8
283
+ 45
284
+ 1
285
+ 9
286
+ 50
287
+ 1
288
+ 8
289
+ 71
290
+ 65
291
+ 7
292
+ 3
293
+ 44
294
+ 43
295
+ 6
296
+ 79
297
+ 49
298
+ 7
299
+ 1
300
+ 13
301
+ 7
302
+ 2
303
+ 3
304
+ 49
305
+ 8
306
+ 2
307
+ 15
308
+ 49
309
+ 9
310
+ 2
311
+ 15
312
+ 99
313
+ 7
314
+ 10
315
+ 7
316
+ 11
317
+ 65
318
+ 67
319
+ 49
320
+ 12
321
+ 0
322
+ 49
323
+ 13
324
+ 4
325
+ 15
326
+ 99
327
+ 7
328
+ 14
329
+ 7
330
+ 15
331
+ 65
332
+ 67
333
+ 49
334
+ 12
335
+ 0
336
+ 49
337
+ 13
338
+ 4
339
+ 15
340
+ 99
341
+ 7
342
+ 16
343
+ 7
344
+ 17
345
+ 65
346
+ 67
347
+ 49
348
+ 12
349
+ 0
350
+ 49
351
+ 13
352
+ 4
353
+ 15
354
+ 99
355
+ 7
356
+ 18
357
+ 7
358
+ 19
359
+ 65
360
+ 67
361
+ 49
362
+ 12
363
+ 0
364
+ 49
365
+ 13
366
+ 4
367
+ 11
368
+ I
369
+ 7
370
+ I
371
+ 0
372
+ I
373
+ 0
374
+ I
375
+ 0
376
+ n
377
+ p
378
+ 20
379
+ x
380
+ 5
381
+ input
382
+ x
383
+ 11
384
+ attr_reader
385
+ x
386
+ 9
387
+ line_edit
388
+ x
389
+ 12
390
+ DEFAULT_OPTS
391
+ x
392
+ 16
393
+ vm_const_defined
394
+ s
395
+ 8
396
+ constant
397
+ x
398
+ 4
399
+ Hash
400
+ x
401
+ 16
402
+ new_from_literal
403
+ x
404
+ 3
405
+ []=
406
+ x
407
+ 9
408
+ const_set
409
+ x
410
+ 10
411
+ initialize
412
+ M
413
+ 1
414
+ n
415
+ n
416
+ x
417
+ 10
418
+ initialize
419
+ i
420
+ 40
421
+ 23
422
+ 1
423
+ 10
424
+ 14
425
+ 44
426
+ 43
427
+ 0
428
+ 78
429
+ 49
430
+ 1
431
+ 1
432
+ 19
433
+ 1
434
+ 15
435
+ 45
436
+ 2
437
+ 3
438
+ 20
439
+ 1
440
+ 49
441
+ 4
442
+ 1
443
+ 38
444
+ 5
445
+ 15
446
+ 20
447
+ 0
448
+ 38
449
+ 6
450
+ 15
451
+ 20
452
+ 1
453
+ 7
454
+ 7
455
+ 49
456
+ 8
457
+ 1
458
+ 38
459
+ 9
460
+ 11
461
+ I
462
+ 4
463
+ I
464
+ 2
465
+ I
466
+ 1
467
+ I
468
+ 2
469
+ n
470
+ p
471
+ 10
472
+ x
473
+ 4
474
+ Hash
475
+ x
476
+ 16
477
+ new_from_literal
478
+ x
479
+ 12
480
+ DEFAULT_OPTS
481
+ n
482
+ x
483
+ 5
484
+ merge
485
+ x
486
+ 5
487
+ @opts
488
+ x
489
+ 6
490
+ @input
491
+ x
492
+ 9
493
+ line_edit
494
+ x
495
+ 2
496
+ []
497
+ x
498
+ 10
499
+ @line_edit
500
+ p
501
+ 9
502
+ I
503
+ -1
504
+ I
505
+ 1a
506
+ I
507
+ e
508
+ I
509
+ 1b
510
+ I
511
+ 19
512
+ I
513
+ 1c
514
+ I
515
+ 1e
516
+ I
517
+ 1d
518
+ I
519
+ 28
520
+ x
521
+ 53
522
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/base_io.rb
523
+ p
524
+ 2
525
+ x
526
+ 3
527
+ inp
528
+ x
529
+ 4
530
+ opts
531
+ x
532
+ 17
533
+ method_visibility
534
+ x
535
+ 15
536
+ add_defn_method
537
+ x
538
+ 5
539
+ close
540
+ M
541
+ 1
542
+ n
543
+ n
544
+ x
545
+ 5
546
+ close
547
+ i
548
+ 16
549
+ 39
550
+ 0
551
+ 49
552
+ 1
553
+ 0
554
+ 9
555
+ 10
556
+ 1
557
+ 8
558
+ 15
559
+ 39
560
+ 0
561
+ 49
562
+ 2
563
+ 0
564
+ 11
565
+ I
566
+ 1
567
+ I
568
+ 0
569
+ I
570
+ 0
571
+ I
572
+ 0
573
+ n
574
+ p
575
+ 3
576
+ x
577
+ 6
578
+ @input
579
+ x
580
+ 7
581
+ closed?
582
+ x
583
+ 5
584
+ close
585
+ p
586
+ 5
587
+ I
588
+ -1
589
+ I
590
+ 20
591
+ I
592
+ 0
593
+ I
594
+ 21
595
+ I
596
+ 10
597
+ x
598
+ 53
599
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/base_io.rb
600
+ p
601
+ 0
602
+ x
603
+ 4
604
+ eof?
605
+ M
606
+ 1
607
+ n
608
+ n
609
+ x
610
+ 4
611
+ eof?
612
+ i
613
+ 46
614
+ 26
615
+ 93
616
+ 0
617
+ 15
618
+ 29
619
+ 15
620
+ 0
621
+ 39
622
+ 0
623
+ 49
624
+ 1
625
+ 0
626
+ 30
627
+ 8
628
+ 42
629
+ 26
630
+ 93
631
+ 1
632
+ 15
633
+ 24
634
+ 13
635
+ 45
636
+ 2
637
+ 3
638
+ 12
639
+ 49
640
+ 4
641
+ 1
642
+ 10
643
+ 32
644
+ 8
645
+ 37
646
+ 15
647
+ 2
648
+ 25
649
+ 8
650
+ 42
651
+ 15
652
+ 92
653
+ 1
654
+ 27
655
+ 34
656
+ 92
657
+ 0
658
+ 27
659
+ 11
660
+ I
661
+ 5
662
+ I
663
+ 0
664
+ I
665
+ 0
666
+ I
667
+ 0
668
+ n
669
+ p
670
+ 5
671
+ x
672
+ 6
673
+ @input
674
+ x
675
+ 4
676
+ eof?
677
+ x
678
+ 7
679
+ IOError
680
+ n
681
+ x
682
+ 3
683
+ ===
684
+ p
685
+ 9
686
+ I
687
+ -1
688
+ I
689
+ 24
690
+ I
691
+ 0
692
+ I
693
+ 26
694
+ I
695
+ 14
696
+ I
697
+ 27
698
+ I
699
+ 21
700
+ I
701
+ 28
702
+ I
703
+ 2e
704
+ x
705
+ 53
706
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/base_io.rb
707
+ p
708
+ 0
709
+ x
710
+ 8
711
+ readline
712
+ M
713
+ 1
714
+ n
715
+ n
716
+ x
717
+ 8
718
+ readline
719
+ i
720
+ 6
721
+ 39
722
+ 0
723
+ 49
724
+ 1
725
+ 0
726
+ 11
727
+ I
728
+ 1
729
+ I
730
+ 0
731
+ I
732
+ 0
733
+ I
734
+ 0
735
+ n
736
+ p
737
+ 2
738
+ x
739
+ 6
740
+ @input
741
+ x
742
+ 8
743
+ readline
744
+ p
745
+ 5
746
+ I
747
+ -1
748
+ I
749
+ 34
750
+ I
751
+ 0
752
+ I
753
+ 35
754
+ I
755
+ 6
756
+ x
757
+ 53
758
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/base_io.rb
759
+ p
760
+ 0
761
+ p
762
+ 21
763
+ I
764
+ 2
765
+ I
766
+ 13
767
+ I
768
+ a
769
+ I
770
+ 14
771
+ I
772
+ 12
773
+ I
774
+ 18
775
+ I
776
+ 32
777
+ I
778
+ 16
779
+ I
780
+ 35
781
+ I
782
+ 18
783
+ I
784
+ 3d
785
+ I
786
+ 17
787
+ I
788
+ 48
789
+ I
790
+ 1a
791
+ I
792
+ 56
793
+ I
794
+ 20
795
+ I
796
+ 64
797
+ I
798
+ 24
799
+ I
800
+ 72
801
+ I
802
+ 34
803
+ I
804
+ 80
805
+ x
806
+ 53
807
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/base_io.rb
808
+ p
809
+ 0
810
+ x
811
+ 13
812
+ attach_method
813
+ x
814
+ 10
815
+ OutputBase
816
+ M
817
+ 1
818
+ n
819
+ n
820
+ x
821
+ 10
822
+ OutputBase
823
+ i
824
+ 102
825
+ 5
826
+ 66
827
+ 5
828
+ 7
829
+ 0
830
+ 47
831
+ 49
832
+ 1
833
+ 1
834
+ 15
835
+ 5
836
+ 7
837
+ 2
838
+ 47
839
+ 49
840
+ 3
841
+ 1
842
+ 15
843
+ 99
844
+ 7
845
+ 4
846
+ 7
847
+ 5
848
+ 65
849
+ 67
850
+ 49
851
+ 6
852
+ 0
853
+ 49
854
+ 7
855
+ 4
856
+ 15
857
+ 99
858
+ 7
859
+ 8
860
+ 7
861
+ 9
862
+ 65
863
+ 67
864
+ 49
865
+ 6
866
+ 0
867
+ 49
868
+ 7
869
+ 4
870
+ 15
871
+ 99
872
+ 7
873
+ 10
874
+ 7
875
+ 11
876
+ 65
877
+ 67
878
+ 49
879
+ 6
880
+ 0
881
+ 49
882
+ 7
883
+ 4
884
+ 15
885
+ 99
886
+ 7
887
+ 12
888
+ 7
889
+ 13
890
+ 65
891
+ 67
892
+ 49
893
+ 6
894
+ 0
895
+ 49
896
+ 7
897
+ 4
898
+ 15
899
+ 99
900
+ 7
901
+ 14
902
+ 7
903
+ 15
904
+ 65
905
+ 67
906
+ 49
907
+ 6
908
+ 0
909
+ 49
910
+ 7
911
+ 4
912
+ 15
913
+ 99
914
+ 7
915
+ 16
916
+ 7
917
+ 17
918
+ 65
919
+ 67
920
+ 49
921
+ 6
922
+ 0
923
+ 49
924
+ 7
925
+ 4
926
+ 11
927
+ I
928
+ 5
929
+ I
930
+ 0
931
+ I
932
+ 0
933
+ I
934
+ 0
935
+ n
936
+ p
937
+ 18
938
+ x
939
+ 17
940
+ flush_after_write
941
+ x
942
+ 13
943
+ attr_accessor
944
+ x
945
+ 6
946
+ output
947
+ x
948
+ 11
949
+ attr_reader
950
+ x
951
+ 10
952
+ initialize
953
+ M
954
+ 1
955
+ n
956
+ n
957
+ x
958
+ 10
959
+ initialize
960
+ i
961
+ 27
962
+ 23
963
+ 1
964
+ 10
965
+ 14
966
+ 44
967
+ 43
968
+ 0
969
+ 78
970
+ 49
971
+ 1
972
+ 1
973
+ 19
974
+ 1
975
+ 15
976
+ 20
977
+ 0
978
+ 38
979
+ 2
980
+ 15
981
+ 3
982
+ 38
983
+ 3
984
+ 15
985
+ 3
986
+ 38
987
+ 4
988
+ 11
989
+ I
990
+ 4
991
+ I
992
+ 2
993
+ I
994
+ 1
995
+ I
996
+ 2
997
+ n
998
+ p
999
+ 5
1000
+ x
1001
+ 4
1002
+ Hash
1003
+ x
1004
+ 16
1005
+ new_from_literal
1006
+ x
1007
+ 7
1008
+ @output
1009
+ x
1010
+ 18
1011
+ @flush_after_write
1012
+ x
1013
+ 4
1014
+ @eof
1015
+ p
1016
+ 9
1017
+ I
1018
+ -1
1019
+ I
1020
+ 3d
1021
+ I
1022
+ e
1023
+ I
1024
+ 3e
1025
+ I
1026
+ 13
1027
+ I
1028
+ 3f
1029
+ I
1030
+ 17
1031
+ I
1032
+ 40
1033
+ I
1034
+ 1b
1035
+ x
1036
+ 53
1037
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/base_io.rb
1038
+ p
1039
+ 2
1040
+ x
1041
+ 3
1042
+ out
1043
+ x
1044
+ 4
1045
+ opts
1046
+ x
1047
+ 17
1048
+ method_visibility
1049
+ x
1050
+ 15
1051
+ add_defn_method
1052
+ x
1053
+ 5
1054
+ close
1055
+ M
1056
+ 1
1057
+ n
1058
+ n
1059
+ x
1060
+ 5
1061
+ close
1062
+ i
1063
+ 17
1064
+ 39
1065
+ 0
1066
+ 9
1067
+ 11
1068
+ 39
1069
+ 0
1070
+ 49
1071
+ 1
1072
+ 0
1073
+ 8
1074
+ 12
1075
+ 1
1076
+ 15
1077
+ 2
1078
+ 38
1079
+ 2
1080
+ 11
1081
+ I
1082
+ 1
1083
+ I
1084
+ 0
1085
+ I
1086
+ 0
1087
+ I
1088
+ 0
1089
+ n
1090
+ p
1091
+ 3
1092
+ x
1093
+ 7
1094
+ @output
1095
+ x
1096
+ 5
1097
+ close
1098
+ x
1099
+ 4
1100
+ @eof
1101
+ p
1102
+ 7
1103
+ I
1104
+ -1
1105
+ I
1106
+ 43
1107
+ I
1108
+ 0
1109
+ I
1110
+ 44
1111
+ I
1112
+ d
1113
+ I
1114
+ 45
1115
+ I
1116
+ 11
1117
+ x
1118
+ 53
1119
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/base_io.rb
1120
+ p
1121
+ 0
1122
+ x
1123
+ 4
1124
+ eof?
1125
+ M
1126
+ 1
1127
+ n
1128
+ n
1129
+ x
1130
+ 4
1131
+ eof?
1132
+ i
1133
+ 3
1134
+ 39
1135
+ 0
1136
+ 11
1137
+ I
1138
+ 1
1139
+ I
1140
+ 0
1141
+ I
1142
+ 0
1143
+ I
1144
+ 0
1145
+ n
1146
+ p
1147
+ 1
1148
+ x
1149
+ 4
1150
+ @eof
1151
+ p
1152
+ 5
1153
+ I
1154
+ -1
1155
+ I
1156
+ 48
1157
+ I
1158
+ 0
1159
+ I
1160
+ 49
1161
+ I
1162
+ 3
1163
+ x
1164
+ 53
1165
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/base_io.rb
1166
+ p
1167
+ 0
1168
+ x
1169
+ 5
1170
+ flush
1171
+ M
1172
+ 1
1173
+ n
1174
+ n
1175
+ x
1176
+ 5
1177
+ flush
1178
+ i
1179
+ 6
1180
+ 39
1181
+ 0
1182
+ 49
1183
+ 1
1184
+ 0
1185
+ 11
1186
+ I
1187
+ 1
1188
+ I
1189
+ 0
1190
+ I
1191
+ 0
1192
+ I
1193
+ 0
1194
+ n
1195
+ p
1196
+ 2
1197
+ x
1198
+ 7
1199
+ @output
1200
+ x
1201
+ 5
1202
+ flush
1203
+ p
1204
+ 5
1205
+ I
1206
+ -1
1207
+ I
1208
+ 4c
1209
+ I
1210
+ 0
1211
+ I
1212
+ 4d
1213
+ I
1214
+ 6
1215
+ x
1216
+ 53
1217
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/base_io.rb
1218
+ p
1219
+ 0
1220
+ x
1221
+ 5
1222
+ write
1223
+ M
1224
+ 1
1225
+ n
1226
+ n
1227
+ x
1228
+ 5
1229
+ write
1230
+ i
1231
+ 10
1232
+ 39
1233
+ 0
1234
+ 20
1235
+ 0
1236
+ 36
1237
+ 1
1238
+ 51
1239
+ 1
1240
+ 0
1241
+ 11
1242
+ I
1243
+ 4
1244
+ I
1245
+ 1
1246
+ I
1247
+ 0
1248
+ I
1249
+ 0
1250
+ I
1251
+ 0
1252
+ p
1253
+ 2
1254
+ x
1255
+ 7
1256
+ @output
1257
+ x
1258
+ 5
1259
+ print
1260
+ p
1261
+ 5
1262
+ I
1263
+ -1
1264
+ I
1265
+ 52
1266
+ I
1267
+ 0
1268
+ I
1269
+ 53
1270
+ I
1271
+ a
1272
+ x
1273
+ 53
1274
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/base_io.rb
1275
+ p
1276
+ 1
1277
+ x
1278
+ 4
1279
+ args
1280
+ x
1281
+ 9
1282
+ writeline
1283
+ M
1284
+ 1
1285
+ n
1286
+ n
1287
+ x
1288
+ 9
1289
+ writeline
1290
+ i
1291
+ 14
1292
+ 39
1293
+ 0
1294
+ 7
1295
+ 1
1296
+ 64
1297
+ 20
1298
+ 0
1299
+ 49
1300
+ 2
1301
+ 1
1302
+ 49
1303
+ 3
1304
+ 1
1305
+ 11
1306
+ I
1307
+ 4
1308
+ I
1309
+ 1
1310
+ I
1311
+ 1
1312
+ I
1313
+ 1
1314
+ n
1315
+ p
1316
+ 4
1317
+ x
1318
+ 7
1319
+ @output
1320
+ s
1321
+ 3
1322
+ %s
1323
+
1324
+ x
1325
+ 1
1326
+ %
1327
+ x
1328
+ 5
1329
+ write
1330
+ p
1331
+ 5
1332
+ I
1333
+ -1
1334
+ I
1335
+ 59
1336
+ I
1337
+ 0
1338
+ I
1339
+ 5a
1340
+ I
1341
+ e
1342
+ x
1343
+ 53
1344
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/base_io.rb
1345
+ p
1346
+ 1
1347
+ x
1348
+ 3
1349
+ msg
1350
+ p
1351
+ 17
1352
+ I
1353
+ 2
1354
+ I
1355
+ 3b
1356
+ I
1357
+ a
1358
+ I
1359
+ 3c
1360
+ I
1361
+ 12
1362
+ I
1363
+ 3d
1364
+ I
1365
+ 20
1366
+ I
1367
+ 43
1368
+ I
1369
+ 2e
1370
+ I
1371
+ 48
1372
+ I
1373
+ 3c
1374
+ I
1375
+ 4c
1376
+ I
1377
+ 4a
1378
+ I
1379
+ 52
1380
+ I
1381
+ 58
1382
+ I
1383
+ 59
1384
+ I
1385
+ 66
1386
+ x
1387
+ 53
1388
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/base_io.rb
1389
+ p
1390
+ 0
1391
+ x
1392
+ 9
1393
+ InOutBase
1394
+ M
1395
+ 1
1396
+ n
1397
+ n
1398
+ x
1399
+ 9
1400
+ InOutBase
1401
+ i
1402
+ 100
1403
+ 5
1404
+ 66
1405
+ 99
1406
+ 7
1407
+ 0
1408
+ 7
1409
+ 1
1410
+ 65
1411
+ 67
1412
+ 49
1413
+ 2
1414
+ 0
1415
+ 49
1416
+ 3
1417
+ 4
1418
+ 15
1419
+ 99
1420
+ 7
1421
+ 4
1422
+ 7
1423
+ 5
1424
+ 65
1425
+ 67
1426
+ 49
1427
+ 2
1428
+ 0
1429
+ 49
1430
+ 3
1431
+ 4
1432
+ 15
1433
+ 99
1434
+ 7
1435
+ 6
1436
+ 7
1437
+ 7
1438
+ 65
1439
+ 67
1440
+ 49
1441
+ 2
1442
+ 0
1443
+ 49
1444
+ 3
1445
+ 4
1446
+ 15
1447
+ 99
1448
+ 7
1449
+ 8
1450
+ 7
1451
+ 9
1452
+ 65
1453
+ 67
1454
+ 49
1455
+ 2
1456
+ 0
1457
+ 49
1458
+ 3
1459
+ 4
1460
+ 15
1461
+ 99
1462
+ 7
1463
+ 10
1464
+ 7
1465
+ 11
1466
+ 65
1467
+ 67
1468
+ 49
1469
+ 2
1470
+ 0
1471
+ 49
1472
+ 3
1473
+ 4
1474
+ 15
1475
+ 99
1476
+ 7
1477
+ 12
1478
+ 7
1479
+ 13
1480
+ 65
1481
+ 67
1482
+ 49
1483
+ 2
1484
+ 0
1485
+ 49
1486
+ 3
1487
+ 4
1488
+ 15
1489
+ 99
1490
+ 7
1491
+ 14
1492
+ 7
1493
+ 15
1494
+ 65
1495
+ 67
1496
+ 49
1497
+ 2
1498
+ 0
1499
+ 49
1500
+ 3
1501
+ 4
1502
+ 11
1503
+ I
1504
+ 5
1505
+ I
1506
+ 0
1507
+ I
1508
+ 0
1509
+ I
1510
+ 0
1511
+ n
1512
+ p
1513
+ 16
1514
+ x
1515
+ 10
1516
+ initialize
1517
+ M
1518
+ 1
1519
+ n
1520
+ n
1521
+ x
1522
+ 10
1523
+ initialize
1524
+ i
1525
+ 30
1526
+ 23
1527
+ 1
1528
+ 10
1529
+ 14
1530
+ 44
1531
+ 43
1532
+ 0
1533
+ 78
1534
+ 49
1535
+ 1
1536
+ 1
1537
+ 19
1538
+ 1
1539
+ 15
1540
+ 45
1541
+ 2
1542
+ 3
1543
+ 20
1544
+ 1
1545
+ 49
1546
+ 4
1547
+ 1
1548
+ 38
1549
+ 5
1550
+ 15
1551
+ 20
1552
+ 0
1553
+ 38
1554
+ 6
1555
+ 11
1556
+ I
1557
+ 4
1558
+ I
1559
+ 2
1560
+ I
1561
+ 1
1562
+ I
1563
+ 2
1564
+ n
1565
+ p
1566
+ 7
1567
+ x
1568
+ 4
1569
+ Hash
1570
+ x
1571
+ 16
1572
+ new_from_literal
1573
+ x
1574
+ 12
1575
+ DEFAULT_OPTS
1576
+ n
1577
+ x
1578
+ 5
1579
+ merge
1580
+ x
1581
+ 5
1582
+ @opts
1583
+ x
1584
+ 6
1585
+ @inout
1586
+ p
1587
+ 7
1588
+ I
1589
+ -1
1590
+ I
1591
+ 63
1592
+ I
1593
+ e
1594
+ I
1595
+ 64
1596
+ I
1597
+ 19
1598
+ I
1599
+ 65
1600
+ I
1601
+ 1e
1602
+ x
1603
+ 53
1604
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/base_io.rb
1605
+ p
1606
+ 2
1607
+ x
1608
+ 5
1609
+ inout
1610
+ x
1611
+ 4
1612
+ opts
1613
+ x
1614
+ 17
1615
+ method_visibility
1616
+ x
1617
+ 15
1618
+ add_defn_method
1619
+ x
1620
+ 5
1621
+ close
1622
+ M
1623
+ 1
1624
+ n
1625
+ n
1626
+ x
1627
+ 5
1628
+ close
1629
+ i
1630
+ 13
1631
+ 39
1632
+ 0
1633
+ 9
1634
+ 11
1635
+ 39
1636
+ 0
1637
+ 49
1638
+ 1
1639
+ 0
1640
+ 8
1641
+ 12
1642
+ 1
1643
+ 11
1644
+ I
1645
+ 1
1646
+ I
1647
+ 0
1648
+ I
1649
+ 0
1650
+ I
1651
+ 0
1652
+ n
1653
+ p
1654
+ 2
1655
+ x
1656
+ 6
1657
+ @inout
1658
+ x
1659
+ 5
1660
+ close
1661
+ p
1662
+ 5
1663
+ I
1664
+ -1
1665
+ I
1666
+ 68
1667
+ I
1668
+ 0
1669
+ I
1670
+ 69
1671
+ I
1672
+ d
1673
+ x
1674
+ 53
1675
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/base_io.rb
1676
+ p
1677
+ 0
1678
+ x
1679
+ 4
1680
+ eof?
1681
+ M
1682
+ 1
1683
+ n
1684
+ n
1685
+ x
1686
+ 4
1687
+ eof?
1688
+ i
1689
+ 46
1690
+ 26
1691
+ 93
1692
+ 0
1693
+ 15
1694
+ 29
1695
+ 15
1696
+ 0
1697
+ 39
1698
+ 0
1699
+ 49
1700
+ 1
1701
+ 0
1702
+ 30
1703
+ 8
1704
+ 42
1705
+ 26
1706
+ 93
1707
+ 1
1708
+ 15
1709
+ 24
1710
+ 13
1711
+ 45
1712
+ 2
1713
+ 3
1714
+ 12
1715
+ 49
1716
+ 4
1717
+ 1
1718
+ 10
1719
+ 32
1720
+ 8
1721
+ 37
1722
+ 15
1723
+ 2
1724
+ 25
1725
+ 8
1726
+ 42
1727
+ 15
1728
+ 92
1729
+ 1
1730
+ 27
1731
+ 34
1732
+ 92
1733
+ 0
1734
+ 27
1735
+ 11
1736
+ I
1737
+ 5
1738
+ I
1739
+ 0
1740
+ I
1741
+ 0
1742
+ I
1743
+ 0
1744
+ n
1745
+ p
1746
+ 5
1747
+ x
1748
+ 6
1749
+ @input
1750
+ x
1751
+ 4
1752
+ eof?
1753
+ x
1754
+ 7
1755
+ IOError
1756
+ n
1757
+ x
1758
+ 3
1759
+ ===
1760
+ p
1761
+ 9
1762
+ I
1763
+ -1
1764
+ I
1765
+ 6c
1766
+ I
1767
+ 0
1768
+ I
1769
+ 6e
1770
+ I
1771
+ 14
1772
+ I
1773
+ 6f
1774
+ I
1775
+ 21
1776
+ I
1777
+ 70
1778
+ I
1779
+ 2e
1780
+ x
1781
+ 53
1782
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/base_io.rb
1783
+ p
1784
+ 0
1785
+ x
1786
+ 5
1787
+ flush
1788
+ M
1789
+ 1
1790
+ n
1791
+ n
1792
+ x
1793
+ 5
1794
+ flush
1795
+ i
1796
+ 6
1797
+ 39
1798
+ 0
1799
+ 49
1800
+ 1
1801
+ 0
1802
+ 11
1803
+ I
1804
+ 1
1805
+ I
1806
+ 0
1807
+ I
1808
+ 0
1809
+ I
1810
+ 0
1811
+ n
1812
+ p
1813
+ 2
1814
+ x
1815
+ 6
1816
+ @inout
1817
+ x
1818
+ 5
1819
+ flush
1820
+ p
1821
+ 5
1822
+ I
1823
+ -1
1824
+ I
1825
+ 74
1826
+ I
1827
+ 0
1828
+ I
1829
+ 75
1830
+ I
1831
+ 6
1832
+ x
1833
+ 53
1834
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/base_io.rb
1835
+ p
1836
+ 0
1837
+ x
1838
+ 8
1839
+ readline
1840
+ M
1841
+ 1
1842
+ n
1843
+ n
1844
+ x
1845
+ 8
1846
+ readline
1847
+ i
1848
+ 14
1849
+ 23
1850
+ 0
1851
+ 10
1852
+ 8
1853
+ 1
1854
+ 19
1855
+ 0
1856
+ 15
1857
+ 39
1858
+ 0
1859
+ 49
1860
+ 1
1861
+ 0
1862
+ 11
1863
+ I
1864
+ 2
1865
+ I
1866
+ 1
1867
+ I
1868
+ 0
1869
+ I
1870
+ 1
1871
+ n
1872
+ p
1873
+ 2
1874
+ x
1875
+ 6
1876
+ @input
1877
+ x
1878
+ 8
1879
+ readline
1880
+ p
1881
+ 5
1882
+ I
1883
+ -1
1884
+ I
1885
+ 7f
1886
+ I
1887
+ 8
1888
+ I
1889
+ 80
1890
+ I
1891
+ e
1892
+ x
1893
+ 53
1894
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/base_io.rb
1895
+ p
1896
+ 1
1897
+ x
1898
+ 7
1899
+ use_raw
1900
+ x
1901
+ 5
1902
+ write
1903
+ M
1904
+ 1
1905
+ n
1906
+ n
1907
+ x
1908
+ 5
1909
+ write
1910
+ i
1911
+ 10
1912
+ 39
1913
+ 0
1914
+ 20
1915
+ 0
1916
+ 36
1917
+ 1
1918
+ 51
1919
+ 1
1920
+ 0
1921
+ 11
1922
+ I
1923
+ 4
1924
+ I
1925
+ 1
1926
+ I
1927
+ 0
1928
+ I
1929
+ 0
1930
+ I
1931
+ 0
1932
+ p
1933
+ 2
1934
+ x
1935
+ 6
1936
+ @inout
1937
+ x
1938
+ 5
1939
+ write
1940
+ p
1941
+ 5
1942
+ I
1943
+ -1
1944
+ I
1945
+ 88
1946
+ I
1947
+ 0
1948
+ I
1949
+ 89
1950
+ I
1951
+ a
1952
+ x
1953
+ 53
1954
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/base_io.rb
1955
+ p
1956
+ 1
1957
+ x
1958
+ 4
1959
+ args
1960
+ x
1961
+ 9
1962
+ writeline
1963
+ M
1964
+ 1
1965
+ n
1966
+ n
1967
+ x
1968
+ 9
1969
+ writeline
1970
+ i
1971
+ 14
1972
+ 39
1973
+ 0
1974
+ 7
1975
+ 1
1976
+ 64
1977
+ 20
1978
+ 0
1979
+ 49
1980
+ 2
1981
+ 1
1982
+ 49
1983
+ 3
1984
+ 1
1985
+ 11
1986
+ I
1987
+ 4
1988
+ I
1989
+ 1
1990
+ I
1991
+ 1
1992
+ I
1993
+ 1
1994
+ n
1995
+ p
1996
+ 4
1997
+ x
1998
+ 6
1999
+ @inout
2000
+ s
2001
+ 3
2002
+ %s
2003
+
2004
+ x
2005
+ 1
2006
+ %
2007
+ x
2008
+ 5
2009
+ write
2010
+ p
2011
+ 5
2012
+ I
2013
+ -1
2014
+ I
2015
+ 8e
2016
+ I
2017
+ 0
2018
+ I
2019
+ 8f
2020
+ I
2021
+ e
2022
+ x
2023
+ 53
2024
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/base_io.rb
2025
+ p
2026
+ 1
2027
+ x
2028
+ 3
2029
+ msg
2030
+ p
2031
+ 15
2032
+ I
2033
+ 2
2034
+ I
2035
+ 63
2036
+ I
2037
+ 10
2038
+ I
2039
+ 68
2040
+ I
2041
+ 1e
2042
+ I
2043
+ 6c
2044
+ I
2045
+ 2c
2046
+ I
2047
+ 74
2048
+ I
2049
+ 3a
2050
+ I
2051
+ 7f
2052
+ I
2053
+ 48
2054
+ I
2055
+ 88
2056
+ I
2057
+ 56
2058
+ I
2059
+ 8e
2060
+ I
2061
+ 64
2062
+ x
2063
+ 53
2064
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/base_io.rb
2065
+ p
2066
+ 0
2067
+ p
2068
+ 11
2069
+ I
2070
+ 2
2071
+ I
2072
+ 10
2073
+ I
2074
+ 22
2075
+ I
2076
+ f
2077
+ I
2078
+ 2c
2079
+ I
2080
+ 12
2081
+ I
2082
+ 47
2083
+ I
2084
+ 3a
2085
+ I
2086
+ 62
2087
+ I
2088
+ 61
2089
+ I
2090
+ 7d
2091
+ x
2092
+ 53
2093
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/base_io.rb
2094
+ p
2095
+ 0
2096
+ x
2097
+ 13
2098
+ attach_method
2099
+ p
2100
+ 3
2101
+ I
2102
+ 0
2103
+ I
2104
+ d
2105
+ I
2106
+ 1d
2107
+ x
2108
+ 53
2109
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/io/base_io.rb
2110
+ p
2111
+ 0