class Opal::CliRunners::Compiler

def rewind_output

def rewind_output
  if !@output.is_a?(File) || @output.tty?
    fail_unrewindable!
  else
    begin
      @output.rewind
      @output.truncate(0)
    rescue Errno::ESPIPE
      fail_unrewindable!
    end
  end
end