summaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Expand)Author
2012-06-15Move Subclasses of ScriptError to mrblib.Masaki Muranaka
2012-06-15Use return value of vsnprintf() for the string length. It is redundant using ...Masaki Muranaka
2012-06-15Remove unused funcions.Masaki Muranaka
2012-06-15Merge branch 'master' of github.com:mruby/mrubyYukihiro Matsumoto
2012-06-151 % 0 should return NaN; close #283Yukihiro Matsumoto
2012-06-15Remove as NotImplemenetedError is defined in mrblib/.Masaki Muranaka
2012-06-15Remove some redundant code.Masaki Muranaka
2012-06-14remove get_errorinfo; close #275Yukihiro Matsumoto
2012-06-14Merge pull request #274 from monaka/pr-remove-unused-variableYukihiro "Matz" Matsumoto
2012-06-14Merge pull request #278 from monaka/pr-fix-parser-typo-around-leqYukihiro "Matz" Matsumoto
2012-06-14Merge pull request #280 from monaka/pr-remove-unused-functions-20110614Yukihiro "Matz" Matsumoto
2012-06-14Fix redundant declraration warnings by gcc.Masaki Muranaka
2012-06-14Remove unused functions.Masaki Muranaka
2012-06-14Fix typo in parser around tLEQMasaki Muranaka
2012-06-14Remove as err is already unused since applied 54bc7e0721ffcMasaki Muranaka
2012-06-14should not ignore variable-less rest parameterYukihiro Matsumoto
2012-06-14do not offset jump from OP_ENTER if no optional argument givenYukihiro Matsumoto
2012-06-14BLKPUSH (and super) need to detect surrounding method scope (not block)Yukihiro Matsumoto
2012-06-14uvenv(): proc->env may be NULL be before uplevelYukihiro Matsumoto
2012-06-14need to adjust register pos after rescueYukihiro Matsumoto
2012-06-14use MKOP_sBx for OP_JMPYukihiro Matsumoto
2012-06-14should invoke ensure clauses just before terminating mrb_sun; close #270Yukihiro Matsumoto
2012-06-14!= should call == inside; close #268Yukihiro Matsumoto
2012-06-14remove unused variableYukihiro Matsumoto
2012-06-14avoid accessing non-allocated memory; close #271Yukihiro Matsumoto
2012-06-14update RDoc for #raiseYukihiro Matsumoto
2012-06-14add newline between functionsYukihiro Matsumoto
2012-06-14inspect format for exception has changedYukihiro Matsumoto
2012-06-14mrb_define_{singleton,class}_method should prepare singleton class for the ob...Yukihiro Matsumoto
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
2012-06-13generate optimized OP_DIV instructionYukihiro Matsumoto
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