| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
Change to return the exception object when an exception occurred in mrb_funcall
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(stringify) and takes mrb_value; close #1062
|
|
|
|
|
|
|
|
|
|
|
|
Fix the type of value that is returned by bit shift expression.
|
|
strlen().
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Remove memmove() in src/vm.c.
|
|
|
|
value_move() is type-safer than memmove().
And may be faster on some targets.
(If it makes slow on your target,
rewrite to call memset(s1, s2, sizeof(mrb_value)*n)
in value_move().)
|
|
|
|
by replacing to memset() on their own risk.
|
|
|
|
|
|
|
|
Cleanup stdio related.
|
|
|
|
|
|
|
|
|
|
see #894 / [ruby-talk:404969]
|
|
|
|
|
|
close #835
|
|
|
|
|
|
|
|
If `argc` is `-1`, `block` parameter is sometimes overwritten.
|
|
vm.c: Enable DEBUG(x) if VM_DEBUG is defined.
|