summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2016-07-25OP_ASGN vsp may be negativeYukihiro "Matz" Matsumoto
reported by https://gist.github.com/miura1729/53fbd8af889c289a79108e38635b2378 fix proposed by @miura1729 in https://github.com/miura1729/mruby/commit/b1b7933f7aa950cfb747b06327a0d0340f3e4ff8
2016-07-25Fixed crash error when #initialize is redefined for Struct; fix #3177Yukihiro "Matz" Matsumoto
refactored redundant functions; removed optimized accessors for safety this fix also close #3178
2016-07-15Merge pull request #3176 from ksss/string-insertYukihiro "Matz" Matsumoto
String#insert should be destructive
2016-07-14String#insert should be destructiveksss
2016-07-14Merge pull request #3174 from ksss/local-jump-errorYukihiro "Matz" Matsumoto
Should raise LocalJumpError when no block given
2016-07-14Should raise LocalJumpError when no block givenksss
2016-07-13relax string length limitation to 64KB; fix #2725Yukihiro "Matz" Matsumoto
2016-07-08Merge pull request #3171 from kjunichi/c-has-no-tryYukihiro "Matz" Matsumoto
C doesn't have try-catch
2016-07-08C doesn't have try-catchJunichi Kajiwara
2016-07-02Merge pull request #3169 from ksss/Wshift-negative-valueYukihiro "Matz" Matsumoto
Fix warning shift-negative-value
2016-07-01Fix warning shift-negative-valueksss
2016-06-30Merge pull request #3166 from yyamano/fix-gc-profileYukihiro "Matz" Matsumoto
Fix compilation error with GC_PROFILE.
2016-06-29Fix compilation error with GC_PROFILE.Yuji Yamano
2016-06-18Merge pull request #3163 from mattn/fix-public_methodsYukihiro "Matz" Matsumoto
Fix public methods
2016-06-18add test for public_methods(false)Yasuhiro Matsumoto
2016-06-18fix public_methods(false)Yasuhiro Matsumoto
2016-06-14Merge pull request #3162 from udzura/patch-1Yukihiro "Matz" Matsumoto
Update doc, write about add_test_dependency
2016-06-14Update doc, write about add_test_dependencyUchio KONDO
2016-06-10mrb_gc_unregister() to remove one registration; close #3160Yukihiro "Matz" Matsumoto
when multiple mrb_gc_register() were called for the same object
2016-06-10fix a compiler warning for uninitialized variableYukihiro "Matz" Matsumoto
2016-06-10add temporary workaround for irep memory corruptionYukihiro "Matz" Matsumoto
need to find out real memory bug that appears in full-debug/mrbtest
2016-05-16fixed remaining bugs in OP_ASGN stack adjustment; close #3159Yukihiro "Matz" Matsumoto
2016-05-16stack adjustment after NODE_OP_ASGN with NODE_CALL was wrong; fix #3159Yukihiro "Matz" Matsumoto
2016-05-16parser_dump() to show symbol number for NODE_SYMYukihiro "Matz" Matsumoto
2016-05-11Merge pull request #3157 from cremno/add-mrb_int_mul_overflowYukihiro "Matz" Matsumoto
add function for checked mrb_int multiplication
2016-05-10use mrb_int_mul_overflow()cremno
2016-05-10add mrb_int_mul_overflow(); close #3149cremno
- call __builtin_mul_overflow() if it's available - perform a 64-bit multiplication for 32-bit mrb_int (default) - otherwise a much slower method is used
2016-05-10Merge pull request #3156 from cremno/fix-mruby_version-valueYukihiro "Matz" Matsumoto
fix MRUBY_VERSION value
2016-05-10Merge pull request #3154 from ↵Yukihiro "Matz" Matsumoto
cremno/improve-checked-mrb_int-arithmetic-implementation improve checked mrb int arithmetic implementation
2016-05-10Merge pull request #3155 from cremno/fix-3152Yukihiro "Matz" Matsumoto
fix #3152
2016-05-09fix MRUBY_VERSION valuecremno
RUBY_ENGINE_VERSION and MRUBY_VERSION should refer to the same string.
2016-05-09raise the error at runtime; fix #3152cremno
2016-05-09use type-generic checked arithmetic builtinscremno
Version checking is not reliable - especially with Clang. E.g. Apple's Clang (Xcode) uses different version numbers. A feature check (__has_builtin) is the recommened way. Add the MRB_HAVE_TYPE_GENERIC_CHECKED_ARITHMETIC_BUILTINS macro which may be used in other files.
2016-05-09define macros only if builtins are n/acremno
2016-05-09Merge pull request #3153 from kou/remove-needless-assignmentYukihiro "Matz" Matsumoto
Remove needless assignment
2016-05-09Remove needless assignmentKouhei Sutou
d4ee409ae912dec6eb719a5727da4566f817d9d8 should remove this line.
2016-04-27Merge pull request #3151 from okkez/use-stack-directlyYukihiro "Matz" Matsumoto
Use stack directly
2016-04-27Use stack directlyKenji Okimoto
See https://github.com/mruby/mruby/pull/3142#issuecomment-201138873
2016-04-23mruby-sprintf:fix double negative signs in printf; fix #3148Yukihiro "Matz" Matsumoto
MRB_INT_MAX does not have corresponding positive integer
2016-04-23mruby-sprintf: format specifiers o,u,x,b ignore sign(+); ref #3148Yukihiro "Matz" Matsumoto
2016-04-16Merge pull request #3147 from ksss/1.8Yukihiro "Matz" Matsumoto
Avoid Syntax Error on CRuby v1.8
2016-04-16Avoid Syntax Error on CRuby v1.8ksss
CRuby v1.8 dose not support named capture
2016-04-14Merge pull request #3145 from timoschilling/patch-1Yukihiro "Matz" Matsumoto
fix syntax highlighting
2016-04-13fix syntax highlightingTimo Schilling
2016-04-11mruby-eval: instance_eval should keep target_class; close #3141Yukihiro "Matz" Matsumoto
2016-04-11vm.c: mrb_hash_set() may reallocate VM stack; close #3133Yukihiro "Matz" Matsumoto
2016-04-04fix possible memory leak in mruby-time gemYukihiro "Matz" Matsumoto
2016-04-01fix too much optimization for `||=`Yukihiro "Matz" Matsumoto
2016-03-30fix duplicated eval in op_asgnYukihiro "Matz" Matsumoto
`a` in `a.m += c` or `a[b] += c` should be evaluated only once.
2016-03-30reduce OP_ARRAY in argument splatYukihiro "Matz" Matsumoto