compile_option -> Hash
[permalink][rdoc]命令シーケンスのコンパイル時のデフォルトの最適化オプションを Hash で返します。
require "pp"
pp RubyVM::InstructionSequence.compile_option
# => {:inline_const_cache=>true,
# :peephole_optimization=>true,
# :tailcall_optimization=>false,
# :specialized_instruction=>true,
# :operands_unification=>true,
# :instructions_unification=>false,
# :stack_caching=>false,
# :trace_instruction=>true,
# :frozen_string_literal=>false,
# :debug_frozen_string_literal=>false,
# :coverage_enabled=>true,
# :debug_level=>0}
[SEE_ALSO] RubyVM::InstructionSequence.compile_option=