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