Module: Bootsnap::CompileCache::ISeq::InstructionSequenceMixin
- Defined in:
- lib/bootsnap/compile_cache/iseq.rb
Instance Method Summary collapse
Instance Method Details
#compile_option=(hash) ⇒ Object
174 175 176 177 |
# File 'lib/bootsnap/compile_cache/iseq.rb', line 174 def compile_option=(hash) super Bootsnap::CompileCache::ISeq.compile_option_updated end |
#load_iseq(path) ⇒ Object
165 166 167 168 169 170 171 172 |
# File 'lib/bootsnap/compile_cache/iseq.rb', line 165 def load_iseq(path) Bootsnap::CompileCache::ISeq.fetch(path.to_s) rescue RuntimeError => error if error..include?("unmatched platform") puts("unmatched platform for file #{path}") end raise end |