summaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Expand)Author
2013-07-14Replace int with mrb_bool because a return value is boolean.Jun Hiroe
2013-07-14Merge pull request #1379 from suzukaze/refactor-gc.cYukihiro "Matz" Matsumoto
2013-07-14Merge pull request #1378 from suzukaze/refactor2-vm.cYukihiro "Matz" Matsumoto
2013-07-14Merge pull request #1377 from suzukaze/add-comments-in-variable.cYukihiro "Matz" Matsumoto
2013-07-14Replace 0 with NULL because set NULL in sturct pointer.Jun Hiroe
2013-07-14Replace int with mrb_bool because return a value is boolean.Jun Hiroe
2013-07-14Replace 0 with FALSE and replace 1 with TRUE.Jun Hiroe
2013-07-14Add comments in variable.cJun Hiroe
2013-07-14Replace 0 with NULL because NULL is used in struct pointer.Jun Hiroe
2013-07-13singleton class super initialize failedYukihiro "Matz" Matsumoto
2013-07-13make_metaclass should skip MRB_TT_ICLASS; close #1369Yukihiro "Matz" Matsumoto
2013-07-12Merge pull request #1368 from suzukaze/add-comments-in-opcode.hYukihiro "Matz" Matsumoto
2013-07-12Merge pull request #1367 from suzukaze/fix-indent-opcode.hYukihiro "Matz" Matsumoto
2013-07-13make_metaclass should skip MRB_TT_ICLASS; close #1369Yukihiro "Matz" Matsumoto
2013-07-12Fix comments in opcode.hJun Hiroe
2013-07-12Add comments in opcode.hJun Hiroe
2013-07-12Fix indents in opcode.h.Jun Hiroe
2013-07-11Merge pull request #1365 from suzukaze/refactor-using-REGEXP_CLASSYukihiro "Matz" Matsumoto
2013-07-122.Replace mrb_intern() func with mrb_intern2() func or mrb_intern_cstr() func.Jun Hiroe
2013-07-12Refactor codes using REGEXP_CLASS define.Jun Hiroe
2013-07-12Replace mrb_intern() func with mrb_intern2() func or mrb_intern_cstr() func.Jun Hiroe
2013-07-12Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2013-07-12mark stacks in final_marking; close #1359; close #1362Yukihiro "Matz" Matsumoto
2013-07-12factor out context stack markingYukihiro "Matz" Matsumoto
2013-07-11Replace mrb_intern() with mrb_intern_cstr().Jun Hiroe
2013-07-11add dummy visibility methods (public/protected/private) that do nothing; ref ...Yukihiro "Matz" Matsumoto
2013-07-11Replace 0 with '\0' as nul terminated string.Jun Hiroe
2013-07-10mrb_bob_missing to use mrb_get_args("n")Yukihiro "Matz" Matsumoto
2013-07-10mrb_mod_alias to use mrb_get_args("nn")Yukihiro "Matz" Matsumoto
2013-07-08Refactor true_or() and false_and() in object.c.Jun Hiroe
2013-07-07call Class#inherited when Class.new(klass)hoge
2013-07-07Change parameter type to suppress -Wsign-compare warningsKazuki Tsujimoto
2013-07-06Change width to size_t to fix warningCarson McDonald
2013-07-05Merge pull request #1344 from suzukaze/fix-indent-in-object.cYukihiro "Matz" Matsumoto
2013-07-05Fix indents in object.c.Jun Hiroe
2013-07-05Refactor mrb_range_beg_len() func in range.cJun Hiroe
2013-07-03Merge pull request #1337 from suzukaze/add-comments-in-class-cYukihiro "Matz" Matsumoto
2013-07-03Add comments in mrb_get_args() func.Jun Hiroe
2013-07-03Fix signed/unsigned warning, size_t for start_index was discarded.Carson McDonald
2013-07-03Fix signed/unsigned warning.Carson McDonald
2013-07-03Fix signed/unsigned warning, make pcapa a size_tCarson McDonald
2013-07-03Refactor mrb_define_class() method in class.c.cJun Hiroe
2013-07-02Merge pull request #1332 from suzukaze/refactor-array-cYukihiro "Matz" Matsumoto
2013-07-02Merge pull request #1330 from suzukaze/refactor-gc-cYukihiro "Matz" Matsumoto
2013-07-01Refactor mrb_ary_eql() func in array.c.Jun Hiroe
2013-07-01Refactor mrb_ary_equal() func in array.c.Jun Hiroe
2013-07-01Refactor mrb_realloc() func in gc.c.Jun Hiroe
2013-07-01Fix unsigned/signed warning.Carson McDonald
2013-07-01Fix unsigned/signed comparison.Carson McDonald
2013-07-01Add mrb_class_get_under()h2so5