class Byebug::ScriptInterface


Interface class for command execution from script files.

def close

def close
  input.close
end

def initialize(file, verbose = false)

def initialize(file, verbose = false)
  super()
  @verbose = verbose
  @input = File.open(file)
  @output = verbose ? $stdout : StringIO.new
  @error = $stderr
end

def read_command(prompt)

def read_command(prompt)
  readline(prompt, false)
end

def readline(*)

def readline(*)
  while (result = input.gets)
    output.puts "+ #{result}" if @verbose
    next if /^\s*#/.match?(result)
    return result.chomp
  end
end