るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.046秒)
トップページ > クエリ:p[x] > クエリ:coverage[x] > ライブラリ:ビルトイン[x]

別のキーワード

  1. openssl p
  2. openssl p=
  3. fileutils mkdir_p
  4. kernel p
  5. rsa p

検索結果

RubyVM::InstructionSequence.compile_option -> Hash (6108.0)

命令シーケンスのコンパイル時のデフォルトの最適化オプションを Hash で返 します。

...Hash で返
します。

//emlist[例][ruby]{
require "pp"
p
p RubyVM::InstructionSequence.compile_option

# => {:inline_const_cache=>true,
# :peephole_optimization=>true,
# :tailcall_optimization=>false,
# :specialized_instruction=>true,
# :operands_unification=>true,
# :instructions_unification=>f...
...alse,
# :stack_caching=>false,
# :trace_instruction=>true,
# :frozen_string_literal=>false,
# :debug_frozen_string_literal=>false,
# :coverage_enabled=>true,
# :debug_level=>0}
//}

@see RubyVM::InstructionSequence.compile_option=...