Method: RubyVM::InstructionSequence.compile_option
- Defined in:
- iseq.c
.compile_option ⇒ Object
Returns a hash of default options used by the Ruby iseq compiler.
For details, see InstructionSequence.compile_option=.
1893 1894 1895 1896 1897 |
# File 'iseq.c', line 1893
static VALUE
iseqw_s_compile_option_get(VALUE self)
{
return make_compile_option_value(&COMPILE_OPTION_DEFAULT);
}
|