るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.101秒)
トップページ > クエリ:i[x] > クエリ:LITERAL[x] > クエリ:compile_option[x]

別のキーワード

  1. psych literal
  2. scalar literal
  3. literal_concat_string
  4. literal_concat_list
  5. literal_concat_dstr

ライブラリ

検索結果

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

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

...//emlist[例][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=>f...
...alse,
# :trace_instruction=>true,
# :frozen_string_literal=>false,
# :debug_frozen_string_literal=>false,
# :coverage_enabled=>true,
# :debug_level=>0}
//}

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