summaryrefslogtreecommitdiffhomepage
AgeCommit message (Expand)Author
2012-06-26Prevent memory leak when string literal is created.Masamitsu MURASE
2012-06-25ci->acc should not be left uninitialized; close #303Yukihiro Matsumoto
2012-06-25Merge branch 'master' of github.com:mruby/mrubyYukihiro Matsumoto
2012-06-25use mrb_intern_str instead of mrb_intern if possibleYukihiro Matsumoto
2012-06-24Merge pull request #318 from masamitsu-murase/fix_instance_ttYukihiro "Matz" Matsumoto
2012-06-24Merge pull request #317 from masamitsu-murase/fix_struct_new_gcYukihiro "Matz" Matsumoto
2012-06-24update ISO chapter number in test/t/kernel.rbYukihiro Matsumoto
2012-06-24Merge pull request #316 from masamitsu-murase/modify_obj_cloneYukihiro "Matz" Matsumoto
2012-06-24Merge pull request #313 from masamitsu-murase/fix_struct_newYukihiro "Matz" Matsumoto
2012-06-24should mark child env from method (proc) objectsYukihiro Matsumoto
2012-06-24Modify gc_gray_mark for Struct.Masamitsu MURASE
2012-06-24Modify obj_free to free instances of Struct.Masamitsu MURASE
2012-06-24Add sample test for Kernel#clone and Kernel#dup.Masamitsu MURASE
2012-06-24Modify Kernel#clone and Kernel#dup.Masamitsu MURASE
2012-06-24Modify instance tt.Masamitsu MURASE
2012-06-24Implement garbage collection for struct.Masamitsu MURASE
2012-06-24Fix Struct.new and Struct.[].Masamitsu MURASE
2012-06-24Add test for Struct#==.Masamitsu MURASE
2012-06-24avoid generating iv name each time in accessorsYukihiro Matsumoto
2012-06-24pacify const assignment warningYukihiro Matsumoto
2012-06-24resolve crash issue on LLVM; longjmp cleared some local variableYukihiro Matsumoto
2012-06-23reduce calling mrb_str_new_cstr() to avoid strlen(); #301Yukihiro Matsumoto
2012-06-23check object type before retrieving instance variabls; close #311Yukihiro Matsumoto
2012-06-23remove assertion for false assumption; mrb_str_new(0, len) where len > 0 can ...Yukihiro Matsumoto
2012-06-22Merge pull request #309 from monaka/pr-reduce-mrb_str_new2Yukihiro "Matz" Matsumoto
2012-06-22Merge pull request #310 from MobiRuby/fixed_attrYukihiro "Matz" Matsumoto
2012-06-22fixed attr_*: forgot '@'Yuichiro MASUI
2012-06-22Use mrb_str_new() instead of mrb_str_new2() as possible.Masaki Muranaka
2012-06-22Add execution time to testsDaniel Bovensiepen
2012-06-21Merge pull request #307 from bovi/time-for-testsYukihiro "Matz" Matsumoto
2012-06-21Merge pull request #306 from bovi/printf-optionalYukihiro "Matz" Matsumoto
2012-06-21Add execution time to testsDaniel Bovensiepen
2012-06-21Make printf optional based on sprintfDaniel Bovensiepen
2012-06-21dislose mrb_hash_keys; close #304Yukihiro Matsumoto
2012-06-21forgot to rename function mrb_sym2name -> mrb_sym2name_lenYukihiro Matsumoto
2012-06-21reduce calling of strlen(); #301Yukihiro Matsumoto
2012-06-21Merge pull request #305 from bovi/optional-featureYukihiro "Matz" Matsumoto
2012-06-21Merge pull request #302 from monaka/pr-remove-strlen-in-arrayYukihiro "Matz" Matsumoto
2012-06-21clean up small line lostDaniel Bovensiepen
2012-06-21only execute struct tests if struct feature is activatedDaniel Bovensiepen
2012-06-21only execute time tests if time feature is activatedDaniel Bovensiepen
2012-06-21only execute math tests if math feature is activatedDaniel Bovensiepen
2012-06-21Only open struct class if there is actually already a classDaniel Bovensiepen
2012-06-21Remove constantsDaniel Bovensiepen
2012-06-20Merge pull request #300 from monaka/pr-simplify-codegenYukihiro "Matz" Matsumoto
2012-06-21Skip time test in case that Time isn't implementedDaniel Bovensiepen
2012-06-21Skip struct test in case that Struct isn't implementedDaniel Bovensiepen
2012-06-21Skip math test in case that Math isn't implementedDaniel Bovensiepen
2012-06-21Create new constants to indicate optional featuresDaniel Bovensiepen
2012-06-21Remove strlen(). We can use sizeof() of char array because sizeof(char) is al...Masaki Muranaka