summaryrefslogtreecommitdiffhomepage
AgeCommit message (Expand)Author
2017-09-04Call `initialize` only when it's not empty.Yukihiro "Matz" Matsumoto
2017-09-03Merge pull request #3806 from flaviommedeiros/masterYukihiro "Matz" Matsumoto
2017-09-03Merge pull request #3805 from fl0l0u/patch-1Yukihiro "Matz" Matsumoto
2017-09-02Update print.cfl0l0u
2017-09-02Trying to make the source code more understandable by removing mixing of tern...Flavio Medeiros
2017-09-02Merge pull request #3802 from christopheraue/proc_break_testsYukihiro "Matz" Matsumoto
2017-09-01Avoid copying over initialized procs using `initialize_copy`; fix #3803Yukihiro "Matz" Matsumoto
2017-09-01Update method cache clearing.Yukihiro "Matz" Matsumoto
2017-09-01Make the default integer size to be `MRB_INT64` on 64bit systems; close #3800Yukihiro "Matz" Matsumoto
2017-08-30Tested LocalJumpErrors caused by break in a procChristopher Aue
2017-08-30Merge pull request #3801 from christopheraue/assert_raise_refactoringYukihiro "Matz" Matsumoto
2017-08-30Allowed to pass multiple exceptions to assert_raiseChristopher Aue
2017-08-30Set the ORPHAN flag in `Proc.new`; fix #3798Yukihiro "Matz" Matsumoto
2017-08-30Fixed a critical typo; ref #3798Yukihiro "Matz" Matsumoto
2017-08-30Need to mark `mrb->range_class`; fix #3797Yukihiro "Matz" Matsumoto
2017-08-30Merge pull request #3799 from christopheraue/assert_raise_refactoringYukihiro "Matz" Matsumoto
2017-08-29Refactored #assert_raise and #assert_nothing_raisedChristopher Aue
2017-08-29Need to update `ci` after `callinfo` stack reallocation; fix #3796Yukihiro "Matz" Matsumoto
2017-08-29Exclude the top-level closure from `each_object`; fix #3793Yukihiro "Matz" Matsumoto
2017-08-29Revert "Clear `irep->outer` when no `Proc` reference the `irep`; fix #3793"Yukihiro "Matz" Matsumoto
2017-08-28Add `__ENCODING__' support.Yukihiro "Matz" Matsumoto
2017-08-28Remove integer type mismatch warnings from parse.y.Yukihiro "Matz" Matsumoto
2017-08-28Clear `irep->outer` when no `Proc` reference the `irep`; fix #3793Yukihiro "Matz" Matsumoto
2017-08-27Merge pull request #3795 from christopheraue/array_refactoringYukihiro "Matz" Matsumoto
2017-08-26Replaced Array#each with while loop for performance reasonsChristopher Aue
2017-08-26Removed unneeded block check in Array#uniqChristopher Aue
2017-08-26Reimplemented Array#flatten with #flatten!Christopher Aue
2017-08-26Merge pull request #3794 from dabroz/fix-flt-epsilonYukihiro "Matz" Matsumoto
2017-08-26fix mrbgems/mruby-range-ext/src/range.c:142:71: error: use of undeclared iden...Tomasz Dąbrowski
2017-08-26Reimplement `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-26Check for ability to skip optional argument parsing.Yukihiro "Matz" Matsumoto
2017-08-26Silence compiler warning regarding float condition; fix #3790Yukihiro "Matz" Matsumoto
2017-08-26Remove unused `mrb_obj_iv_ifnone()` from API.Yukihiro "Matz" Matsumoto
2017-08-26Add checks if `iv_tbl` is NULL.Yukihiro "Matz" Matsumoto
2017-08-26Keep `Range` class in `mrb_state` structure for performance.Yukihiro "Matz" Matsumoto
2017-08-26Use `khash` for instance variables tables instead of segment list.Yukihiro "Matz" Matsumoto
2017-08-26Turn on method cache for Travis CI.Yukihiro "Matz" Matsumoto
2017-08-26Merge pull request #3792 from dabroz/fix-test-int16Yukihiro "Matz" Matsumoto
2017-08-26Merge pull request #3791 from dabroz/fix-msvc-warningYukihiro "Matz" Matsumoto
2017-08-25fix `String#% %d` test with `MRB_INT16` setTomasz Dąbrowski
2017-08-25fix fmt_fp.c(329) : warning C4244: 'return' : conversion from 'ptrdiff_t' to ...Tomasz Dąbrowski
2017-08-25fix fmt_fp.c(251) : warning C4244: '=' : conversion from '__int64' to 'int', ...Tomasz Dąbrowski
2017-08-25fix fmt_fp.c(224) : warning C4244: '=' : conversion from 'ptrdiff_t' to 'int'...Tomasz Dąbrowski
2017-08-25fix fmt_fp.c(220) : warning C4244: '=' : conversion from '__int64' to 'int', ...Tomasz Dąbrowski
2017-08-25fix fmt_fp.c(206) : warning C4244: 'initializing' : conversion from 'ptrdiff_...Tomasz Dąbrowski
2017-08-25fix fmt_fp.c(178) : warning C4244: 'return' : conversion from 'ptrdiff_t' to ...Tomasz Dąbrowski
2017-08-25fix fmt_fp.c(123) : warning C4244: 'return' : conversion from 'ptrdiff_t' to ...Tomasz Dąbrowski
2017-08-24Merge pull request #3788 from christopheraue/fix_codegen_op_send_nregsYukihiro "Matz" Matsumoto
2017-08-23Fixed register windows of OP_SENDs generated by NODE_{DREGX,REGX}; ref #3783Christopher Aue