Method: RubyVM::InstructionSequence.load
- Defined in:
- iseq.c
.load(*args) ⇒ Object
:nodoc:
1023 1024 1025 1026 1027 1028 1029 |
# File 'iseq.c', line 1023
static VALUE
iseq_s_load(int argc, VALUE *argv, VALUE self)
{
VALUE data, opt=Qnil;
rb_scan_args(argc, argv, "11", &data, &opt);
return iseq_load(data, NULL, opt);
}
|