summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2012-06-14variable name typo fixedYukihiro Matsumoto
2012-06-14make Math module optionalYukihiro Matsumoto
2012-06-14Math.log to take optinal second argumentYukihiro Matsumoto
2012-06-14add aspec for math.c methodsYukihiro Matsumoto
2012-06-14error message from mrb_convert_type has been changedYukihiro Matsumoto
2012-06-14mrb_get_args(i) should check range of float valuesYukihiro Matsumoto
2012-06-13mrb_f_send to use mrb_get_args(n)Yukihiro Matsumoto
2012-06-13new mrb_get_args specifier "n" to retrieve a symbol (stands for "name")Yukihiro Matsumoto
2012-06-13remove unused variable from mrb_f_block_given_p_mYukihiro Matsumoto
2012-06-13stop using strtol (via readint) except in load.c; use custom readint_floatYukihiro Matsumoto
2012-06-13readint() returns longYukihiro Matsumoto
2012-06-13integer overflow in fixnum plus and minusYukihiro Matsumoto
2012-06-13could not print 0xffffffff as an negative fixnumYukihiro Matsumoto
2012-06-13handle number literal overflowYukihiro Matsumoto
2012-06-13float representation simplifiedYukihiro Matsumoto
2012-06-13move RSHIFT from numeric.h to numeric.cYukihiro Matsumoto
2012-06-13optimized OP_{ADD,SUB,MUL,DIV} to use numeric function for fixnums to handle ↵Yukihiro Matsumoto
overflow
2012-06-13generate optimized OP_DIV instructionYukihiro Matsumoto
2012-06-12Merge pull request #266 from monaka/pr-assert-should-handle-all-exceptionsYukihiro "Matz" Matsumoto
Assert should handle all exceptions.
2012-06-13Assert should handle all exceptions.Masaki Muranaka
2012-06-13optimize Array#unshift using shared body objectYukihiro Matsumoto
2012-06-13wrong ary->capa size was set in ary_modify()Yukihiro Matsumoto
2012-06-12replace * and == by optimization instructions OP_MUL and OP_EQ respectively; ↵Yukihiro Matsumoto
close #264
2012-06-12Kernel.eval to raise NotImplementedErrorYukihiro Matsumoto
2012-06-12a bug in contant reference from modulesYukihiro Matsumoto
2012-06-12Merge pull request #263 from monaka/pr-make-sprintf-optionalYukihiro "Matz" Matsumoto
Make sprintf/format optional.
2012-06-12block_given? should work; close #262Yukihiro Matsumoto
2012-06-12raise error if string arg is given to Kernel#instance_evalYukihiro Matsumoto
2012-06-12remove Ruby version of Kernel#instance_evalYukihiro Matsumoto
2012-06-12mrb_get_args should honor optinal argumentsYukihiro Matsumoto
2012-06-12remove Kernel#eval from the core; close #261Yukihiro Matsumoto
2012-06-12Make sprintf/format optional.Masaki Muranaka
2012-06-12String#split("") should split per character (byte for now)Yukihiro Matsumoto
2012-06-12corrupted String#inspect on backslash escapesYukihiro Matsumoto
2012-06-12s.split(nil) should work like s.split()Yukihiro Matsumoto
2012-06-12should enhance test for Array#sliceYukihiro Matsumoto
2012-06-12minor correction in test/t/syntax.rbYukihiro Matsumoto
2012-06-12should handle splat in super argumentsYukihiro Matsumoto
2012-06-12remove obsolete commentYukihiro Matsumoto
2012-06-12String#split now understands string sepYukihiro Matsumoto
2012-06-12GETARG_x should return int, not int32_tYukihiro Matsumoto
2012-06-12remove khash#kh_debugYukihiro Matsumoto
2012-06-12should raise error on top-level super/yieldYukihiro Matsumoto
2012-06-11zsuper should respect block given; close #185Yukihiro Matsumoto
2012-06-11parser_dump: no print "local variables" if no local variablesYukihiro Matsumoto
2012-06-11should increment p on every iteration; close #254Yukihiro Matsumoto
2012-06-11should not quote || and && operators; close #253Yukihiro Matsumoto
2012-06-10Merge pull request #256 from masamitsu-murase/modify_string_sliceYukihiro "Matz" Matsumoto
"slice" of shared string returns invalid result
2012-06-10Merge pull request #255 from bovi/cmake-openwrt-anyYukihiro "Matz" Matsumoto
cmake Toolchain improvement (Target x86, mips, AVR32, ARM, etc.)
2012-06-11string.subseq should create new string based on 'ptr' not on 'aux.shared'.Masamitsu MURASE