| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-09-04 | Call `initialize` only when it's not empty. | Yukihiro "Matz" Matsumoto | |
| 2017-09-03 | Merge pull request #3806 from flaviommedeiros/master | Yukihiro "Matz" Matsumoto | |
| Trying to make the code more readable | |||
| 2017-09-03 | Merge pull request #3805 from fl0l0u/patch-1 | Yukihiro "Matz" Matsumoto | |
| Update print.c | |||
| 2017-09-02 | Update print.c | fl0l0u | |
| Strings not containing a newline are not printed synchronously ex. bin/mruby -e '["a", "b", "c", "\n", "d", "e", "f", "\n"].each {|e| print e ; usleep 200000}' | |||
| 2017-09-02 | Trying to make the source code more understandable by removing mixing of ↵ | Flavio Medeiros | |
| ternary if statements with attributions. | |||
| 2017-09-02 | Merge pull request #3802 from christopheraue/proc_break_tests | Yukihiro "Matz" Matsumoto | |
| Tested local jump errors caused by break in a proc | |||
| 2017-09-01 | Avoid copying over initialized procs using `initialize_copy`; fix #3803 | Yukihiro "Matz" Matsumoto | |
| It may be better to raise exceptions, but CRuby doesn't. | |||
| 2017-09-01 | Update method cache clearing. | Yukihiro "Matz" Matsumoto | |
| 2017-09-01 | Make the default integer size to be `MRB_INT64` on 64bit systems; close #3800 | Yukihiro "Matz" Matsumoto | |
| Unless `MRB_NAN_BOXING` is specified. | |||
| 2017-08-30 | Tested LocalJumpErrors caused by break in a proc | Christopher Aue | |
| 2017-08-30 | Merge pull request #3801 from christopheraue/assert_raise_refactoring | Yukihiro "Matz" Matsumoto | |
| Allowed to pass multiple exceptions to assert_raise | |||
| 2017-08-30 | Allowed to pass multiple exceptions to assert_raise | Christopher Aue | |
| 2017-08-30 | Set the ORPHAN flag in `Proc.new`; fix #3798 | Yukihiro "Matz" Matsumoto | |
| 2017-08-30 | Fixed a critical typo; ref #3798 | Yukihiro "Matz" Matsumoto | |
| 2017-08-30 | Need to mark `mrb->range_class`; fix #3797 | Yukihiro "Matz" Matsumoto | |
| 2017-08-30 | Merge pull request #3799 from christopheraue/assert_raise_refactoring | Yukihiro "Matz" Matsumoto | |
| Refactored #assert_raise and #assert_nothing_raised | |||
| 2017-08-29 | Refactored #assert_raise and #assert_nothing_raised | Christopher Aue | |
| 2017-08-29 | Need to update `ci` after `callinfo` stack reallocation; fix #3796 | Yukihiro "Matz" Matsumoto | |
| 2017-08-29 | Exclude the top-level closure from `each_object`; fix #3793 | Yukihiro "Matz" Matsumoto | |
| 2017-08-29 | Revert "Clear `irep->outer` when no `Proc` reference the `irep`; fix #3793" | Yukihiro "Matz" Matsumoto | |
| This reverts commit 15d48efa4bf6a6b999dab99720fb9fe3c4a06ef0. | |||
| 2017-08-28 | Add `__ENCODING__' support. | Yukihiro "Matz" Matsumoto | |
| `__ENCODING__' returns the current encoding name (string), unlike CRuby that returns the encoding object. | |||
| 2017-08-28 | Remove integer type mismatch warnings from parse.y. | Yukihiro "Matz" Matsumoto | |
| 2017-08-28 | Clear `irep->outer` when no `Proc` reference the `irep`; fix #3793 | Yukihiro "Matz" Matsumoto | |
| 2017-08-27 | Merge pull request #3795 from christopheraue/array_refactoring | Yukihiro "Matz" Matsumoto | |
| Array refactorings and speed improvements | |||
| 2017-08-26 | Replaced Array#each with while loop for performance reasons | Christopher Aue | |
| Example benchmark: $ time build/bench/bin/mruby -e "Array.new(2_000_000){ |i| i }.index{ |i| i == 1_999_999 }" Before: real 0m0.934s user 0m0.922s sys 0m0.003s After: real 0m0.590s user 0m0.583s sys 0m0.007s | |||
| 2017-08-26 | Removed unneeded block check in Array#uniq | Christopher Aue | |
| 2017-08-26 | Reimplemented Array#flatten with #flatten! | Christopher Aue | |
| 2017-08-26 | Merge pull request #3794 from dabroz/fix-flt-epsilon | Yukihiro "Matz" Matsumoto | |
| Fix building with MRB_USE_FLOAT=1 | |||
| 2017-08-26 | fix mrbgems/mruby-range-ext/src/range.c:142:71: error: use of undeclared ↵ | Tomasz Dąbrowski | |
| identifier 'FLT_EPSILON' | |||
| 2017-08-26 | Reimplement `Array#shift` to be faster. | Yukihiro "Matz" Matsumoto | |
| 2017-08-26 | `Array#first` to treat 1 argument case specially to improve performance. | Yukihiro "Matz" Matsumoto | |
| 2017-08-26 | Check for ability to skip optional argument parsing. | Yukihiro "Matz" Matsumoto | |
| 2017-08-26 | Silence compiler warning regarding float condition; fix #3790 | Yukihiro "Matz" Matsumoto | |
| 2017-08-26 | Remove unused `mrb_obj_iv_ifnone()` from API. | Yukihiro "Matz" Matsumoto | |
| 2017-08-26 | Add checks if `iv_tbl` is NULL. | Yukihiro "Matz" Matsumoto | |
| 2017-08-26 | Keep `Range` class in `mrb_state` structure for performance. | Yukihiro "Matz" Matsumoto | |
| 2017-08-26 | Use `khash` for instance variables tables instead of segment list. | Yukihiro "Matz" Matsumoto | |
| For performance reason. Segmented list consumes slightly less memory but takes a lot of time especially when there are many slots in the segment lists (e.g. class constants). | |||
| 2017-08-26 | Turn on method cache for Travis CI. | Yukihiro "Matz" Matsumoto | |
| 2017-08-26 | Merge pull request #3792 from dabroz/fix-test-int16 | Yukihiro "Matz" Matsumoto | |
| Fix string test with 16-bit integers | |||
| 2017-08-26 | Merge pull request #3791 from dabroz/fix-msvc-warning | Yukihiro "Matz" Matsumoto | |
| Fix MSVC warnings in fmt_fp.c | |||
| 2017-08-25 | fix `String#% %d` test with `MRB_INT16` set | Tomasz Dąbrowski | |
| 2017-08-25 | fix fmt_fp.c(329) : warning C4244: 'return' : conversion from 'ptrdiff_t' to ↵ | Tomasz Dąbrowski | |
| 'int', possible loss of data | |||
| 2017-08-25 | fix fmt_fp.c(251) : warning C4244: '=' : conversion from '__int64' to 'int', ↵ | Tomasz Dąbrowski | |
| possible loss of data | |||
| 2017-08-25 | fix fmt_fp.c(224) : warning C4244: '=' : conversion from 'ptrdiff_t' to ↵ | Tomasz Dąbrowski | |
| 'int', possible loss of data | |||
| 2017-08-25 | fix fmt_fp.c(220) : warning C4244: '=' : conversion from '__int64' to 'int', ↵ | Tomasz Dąbrowski | |
| possible loss of data | |||
| 2017-08-25 | fix fmt_fp.c(206) : warning C4244: 'initializing' : conversion from ↵ | Tomasz Dąbrowski | |
| 'ptrdiff_t' to 'int', possible loss of data | |||
| 2017-08-25 | fix fmt_fp.c(178) : warning C4244: 'return' : conversion from 'ptrdiff_t' to ↵ | Tomasz Dąbrowski | |
| 'int', possible loss of data | |||
| 2017-08-25 | fix fmt_fp.c(123) : warning C4244: 'return' : conversion from 'ptrdiff_t' to ↵ | Tomasz Dąbrowski | |
| 'int', possible loss of data | |||
| 2017-08-24 | Merge pull request #3788 from christopheraue/fix_codegen_op_send_nregs | Yukihiro "Matz" Matsumoto | |
| Fixed register windows of OP_SENDs generated during codegen | |||
| 2017-08-23 | Fixed register windows of OP_SENDs generated by NODE_{DREGX,REGX}; ref #3783 | Christopher Aue | |
