12件ヒット
[1-12件を表示]
(0.105秒)
ライブラリ
- ビルトイン (12)
クラス
検索結果
-
RubyVM
:: InstructionSequence . compile _ option -> Hash (24119.0) -
命令シーケンスのコンパイル時のデフォルトの最適化オプションを Hash で返 します。
...][ruby]{
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,
# :trac......e_instruction=>true,
# :frozen_string_literal=>false,
# :debug_frozen_string_literal=>false,
# :coverage_enabled=>true,
# :debug_level=>0}
//}
@see RubyVM::InstructionSequence.compile_option=...