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