| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-04-22 | Merge pull request #3628 from yyamano/libmruby-path | Yukihiro "Matz" Matsumoto | |
| Add --libmruby-path support to mruby-bin-mruby-config. | |||
| 2017-04-22 | Small cosmetic changes. | Yukihiro "Matz" Matsumoto | |
| 2017-04-22 | Use env preserved in Proc structure in ecall(); fix #3612 | Yukihiro "Matz" Matsumoto | |
| 2017-04-22 | Keep reference to mrb_context from env; fix #3619 | Yukihiro "Matz" Matsumoto | |
| 2017-04-22 | Add --libmruby-path support to mruby-bin-mruby-config. | Yuji Yamano | |
| 2017-04-22 | Alias should `push()` extra stack space for blocks. | Yukihiro "Matz" Matsumoto | |
| 2017-04-21 | Simplify pointer calculation in `envadjust`. | Yukihiro "Matz" Matsumoto | |
| 2017-04-21 | Revert e8dca6b03; fix #3550 | Yukihiro "Matz" Matsumoto | |
| Reopens #3612. | |||
| 2017-04-21 | Fixed a possible memory leak. | Yukihiro "Matz" Matsumoto | |
| 2017-04-21 | Revert ae4217e81; fix #3619 | Yukihiro "Matz" Matsumoto | |
| Reopens #3550. Those 2 issues are exclusive. | |||
| 2017-04-21 | Assign to local variable first; cosmetic change. | Yukihiro "Matz" Matsumoto | |
| 2017-04-21 | Merge pull request #3623 from take-cheeze/struct_freeze | Yukihiro "Matz" Matsumoto | |
| Support `freeze` method in `Struct`. | |||
| 2017-04-21 | Merge pull request #3624 from yyamano/fix-typo | Yukihiro "Matz" Matsumoto | |
| Fix typo in usage message. | |||
| 2017-04-21 | Merge pull request #3625 from take-cheeze/pool_64bit | Yukihiro "Matz" Matsumoto | |
| Align pool allocator with 8 byte in 64-bit environment. | |||
| 2017-04-21 | Merge pull request #3626 from take-cheeze/string_get_args_bug | Yukihiro "Matz" Matsumoto | |
| Add missing `arg_i++` to fix bug of `s!` in mrb_get_args. | |||
| 2017-04-21 | Add missing `arg_i++` to fix bug of `s!` in mrb_get_args. | take_cheeze | |
| 2017-04-21 | Align pool allocator with 8 byte in 64-bit environment. | take_cheeze | |
| To avoid warnings from undefined sanitizer. ( https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html ) | |||
| 2017-04-21 | Fix typo in usage message. | Yuji Yamano | |
| 2017-04-21 | Support freeze in `Struct`. | take_cheeze | |
| 2017-04-21 | VM stack may be reallocated in `mrb_convert_type()`; fix #3622 | Yukihiro "Matz" Matsumoto | |
| 2017-04-21 | `mrb_int` may overflow in bit-shifting; fix #3620 | Yukihiro "Matz" Matsumoto | |
| 2017-04-21 | Bit-shifting zero should be zero; ref #3620 | Yukihiro "Matz" Matsumoto | |
| 2017-04-20 | Disable GC during `gc_each_objects()`; fix #3616 | Yukihiro "Matz" Matsumoto | |
| 2017-04-20 | Allow `mrb_objspace_each_objects()` to break iteration; ref #3359 | Yukihiro "Matz" Matsumoto | |
| 2017-04-20 | Do not raise an exception for living closure; ref #3359 | Yukihiro "Matz" Matsumoto | |
| 2017-04-19 | Use trampoline technique for `instance_exec`; ref #3359 | Yukihiro "Matz" Matsumoto | |
| A new function `mrb_yield_cont()` is provided. You have to call it at the end of a C defined method, e.g. `return mrb_yield_cont()`. | |||
| 2017-04-19 | Need to raise "break from proc-closure" error; fix #3359 fix #3495 | Yukihiro "Matz" Matsumoto | |
| Some examples in #3359 still behave differently from CRuby. | |||
| 2017-04-19 | Fixed a bug caused by last minute change; fix #3610 | Yukihiro "Matz" Matsumoto | |
| Omitted `goto L_RAISE` to raise an exception. | |||
| 2017-04-19 | Merge pull request #3615 from clayton-shopify/fix-copy-class-null-pointer-deref | Yukihiro "Matz" Matsumoto | |
| Check if sc->mt is initialized before copying it. | |||
| 2017-04-18 | Check if sc->mt is initialized before copying it. | Clayton Smith | |
| 2017-04-18 | Call envadjust() before updating VM stack. | Yukihiro "Matz" Matsumoto | |
| 2017-04-18 | Fixed a wrong condition; fix #3550 | Yukihiro "Matz" Matsumoto | |
| Shared TT_ENV should be unshared. Reversed condition. | |||
| 2017-04-18 | Revert 6dd1a57; fix #3612; ref #3550 | Yukihiro "Matz" Matsumoto | |
| The fix was wrong. It causes a new problem #3612. | |||
| 2017-04-18 | Make `mrb_codedump_all()` to print type of Proc. | Yukihiro "Matz" Matsumoto | |
| 2017-04-18 | Changed evaluation order of `yield`; ref #3613 | Yukihiro "Matz" Matsumoto | |
| So that `yield expr_with_error` will cause the error from the argument rather than `LocalJumpError` when no block is given. | |||
| 2017-04-18 | `super` may call context switching method like `send`; fix #3611 | Yukihiro "Matz" Matsumoto | |
| 2017-04-18 | Call exc_debug_info() in mrb_exc_set(); ref #3610 | Yukihiro "Matz" Matsumoto | |
| Otherwise line number information is lacked from exceptions raised in VM, e.g. "super called outside of method". | |||
| 2017-04-18 | Add "no super" check to OP_ARGARY; fix #3610 | Yukihiro "Matz" Matsumoto | |
| 2017-04-18 | Hash#dup didn't check if internal khash is initialized; fix #3609 | Yukihiro "Matz" Matsumoto | |
| 2017-04-17 | Mark whole root objects in final_marking_phase(); fix #3603 | Yukihiro "Matz" Matsumoto | |
| ref #1359 #1362 | |||
| 2017-04-14 | Merge pull request #3608 from clayton-shopify/fix-mirb-off-by-one | Yukihiro "Matz" Matsumoto | |
| Fix an off-by-one causing a buffer overflow in mirb. | |||
| 2017-04-13 | Fix an off-by-one causing a buffer overflow in mirb. | Clayton Smith | |
| 2017-04-13 | Proc#call needs to reserve at least 2 registers; fix #3606 | Yukihiro "Matz" Matsumoto | |
| One for the receiver, the other for the block. | |||
| 2017-04-13 | Struct may not be initialized in #to_h; fix #3607 | Yukihiro "Matz" Matsumoto | |
| 2017-04-13 | Update NODE_XSTR, NODE_DSXTR tests; ref #3605 | Yukihiro "Matz" Matsumoto | |
| 2017-04-13 | Merge pull request #3604 from keizo042/fix_issue3598 | Yukihiro "Matz" Matsumoto | |
| Find Class/Module in nested singleton class; fix #3598 | |||
| 2017-04-13 | Fixed a bug in NODE_XSTR code generation; fix #3605 | Yukihiro "Matz" Matsumoto | |
| 2017-04-12 | Use while statement instead of for statement | Kouichi Nakanishi | |
| 2017-04-12 | Find Class/Module in nested singleton class; fix #3598 | Kouichi Nakanishi | |
| 2017-04-12 | Let 'mrb_vm_run()` to restore the calling fiber; ref #3537 | Yukihiro "Matz" Matsumoto | |
