| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
instead origin is saved in ICLASS with MRB_FLAG_IS_ORIGIN set.
|
|
|
|
|
|
|
|
|
|
|
|
avoid a loop to find parent's callinfo using mrb->c->cibase[env->cioff]
|
|
|
|
|
|
patch from @cremno; fix #2613
|
|
|
|
|
|
|
|
|
|
mrb_method_search() does not return NULL.
Instead it raises an exception.
So it is not necessary to evaluate
a return value of mrb_method_search().
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Use boolean macro in kernel.c
|
|
|
|
|
|
|
|
|
|
Refactor functions in kernel.c
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
in Ruby; fix #1680 ref #1765
|
|
When sub-string is used in the following way, it does not work well.
o = Object.new
o.instance_variable_set(:@a, 1)
o.instance_variable_defined?("@abc"[0,2]) #=> false (this should be true)
|