summaryrefslogtreecommitdiffhomepage
AgeCommit message (Expand)Author
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-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
2012-06-21Add test for Array#to_s and Array#inspect.Masaki Muranaka
2012-06-21Simplify. Should not use strlen() as possible. It needs complexity.Masaki Muranaka
2012-06-21move KHASH_DECLARE to header filesYukihiro Matsumoto
2012-06-21remove khash.c; khash.h dependency to mruby.h; refactoringYukihiro Matsumoto
2012-06-21Merge branch 'modify_khash' of https://github.com/crimsonwoods/mruby into cri...Yukihiro Matsumoto
2012-06-20add printf methodYukihiro Matsumoto
2012-06-20remove RuntimeError from mrb_stateYukihiro Matsumoto
2012-06-20__send__ addedYukihiro Matsumoto
2012-06-20ISO conforming lambdaYukihiro Matsumoto
2012-06-20allow lambda duplicationYukihiro Matsumoto
2012-06-20protect crash from empty irepYukihiro Matsumoto
2012-06-20add Module#{attr,attr_reader,attr_writer,attr_accessor}; close #257Yukihiro Matsumoto
2012-06-20add Module#define_methodYukihiro Matsumoto