module Bootsnap::CompileCache::ISeq

def self.storage_to_output(binary)

def self.storage_to_output(binary)
  RubyVM::InstructionSequence.load_from_binary(binary)
rescue RuntimeError => e
  if e.message == 'broken binary format'
    STDERR.puts "[Bootsnap::CompileCache] warning: rejecting broken binary"
    return nil
  else
    raise
  end
end