| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-06-05 | mruby/array.h: rename buf to ptr | Yukihiro Matsumoto | |
| 2012-06-05 | mruby/string.h: rename buf to ptr | Yukihiro Matsumoto | |
| 2012-06-04 | remove mrb_open NULL check for small test programs. They are only for ↵ | Yukihiro Matsumoto | |
| proof-on-concept test, not production code. Adding precise checks are not needed for those code | |||
| 2012-06-03 | Check mrb_open return value for NULL | Jon | |
| 2012-06-03 | make arrays to share bodies | Yukihiro Matsumoto | |
| 2012-06-03 | mrb_malloc/calloc/realloc should call mrb_garbage_collect before returning NULL | Yukihiro Matsumoto | |
| 2012-06-03 | should decref shared string body on gc_free | Yukihiro Matsumoto | |
| 2012-06-03 | make shared string to reference-counted C structure to reduce GC pressure | Yukihiro Matsumoto | |
| 2012-06-01 | new API mrb_gc_protect() to add object to arena | Yukihiro Matsumoto | |
| 2012-05-31 | correctly share string bodies | Yukihiro Matsumoto | |
| 2012-05-31 | allow string shared body | Yukihiro Matsumoto | |
| 2012-05-31 | resolve conflict | Yukihiro Matsumoto | |
| 2012-05-30 | MRB_GC_STRESS for GC test | Yukihiro Matsumoto | |
| 2012-05-30 | remove spaces after open paren | Yukihiro Matsumoto | |
| 2012-05-30 | mark ci->proc as well | Yukihiro Matsumoto | |
| 2012-05-29 | force room in arena before raising arena overflow error | Yukihiro Matsumoto | |
| 2012-05-29 | compact arena before raising exception; also reserve a few slots to allocate ↵ | Yukihiro Matsumoto | |
| exception objects | |||
| 2012-05-24 | made mrb_get_args() better (optinal args, type checks); close #173 #176 | Yukihiro Matsumoto | |
| 2012-05-23 | cast style consistency | Yukihiro Matsumoto | |
| 2012-05-22 | should mark iv from MRB_TT_DATA | Yukihiro Matsumoto | |
| 2012-05-20 | More C++ compilability work: mrb_obj_alloc void* conversions | Mitchell Blank Jr | |
| One of the biggest set of changes needed to make C++ compile, is that you can't autoconvert "void*" to a different pointer type without a cast (you can of course, convert pointers *to* "void*"!) For the first part, convert the users of "mrb_obj_alloc". Since it has to return something, make it RBasic* (that's what mrb_obj_alloc() is operating on anyway). This way, even in C you'll get a warning if you don't cast it. For places where there are a lot of similar calls to mrb_obj_alloc(), this can be easily hidden through a macro. I did this in string.c: #define mrb_obj_alloc_string(mrb) ((struct RString *) mrb_obj_alloc((mrb), MRB_TT_STRING, (mrb)->string_class)) I also updated the mrb_object() macro to also return a RBasic* -- my previous commit changed that from "void*" -> "RObject*", but I figure it should be consistent with mrb_obj_alloc() | |||
| 2012-05-07 | gc should handle regexp and match objects | Yukihiro Matsumoto | |
| 2012-05-07 | argument type of mrb_gc_free_ht() has changed | Yukihiro Matsumoto | |
| 2012-05-05 | hash refactored | Yukihiro Matsumoto | |
| 2012-04-30 | rm whitespace | roco | |
| 2012-04-27 | Merge pull request #61 from pbhogan/fix-warnings | Yukihiro "Matz" Matsumoto | |
| Fix various warnings | |||
| 2012-04-28 | struct RString member should not be mrb_value | Yukihiro Matsumoto | |
| 2012-04-26 | Clean up switch statements. | Patrick Hogan | |
| Some formatting and add default label to silence warning about unhanded cases. Signed-off-by: Patrick Hogan <[email protected]> | |||
| 2012-04-24 | Call dfree member on RData/MRB_TT_DATA when collected | Patrick Hogan | |
| Signed-off-by: Patrick Hogan <[email protected]> | |||
| 2012-04-24 | move header files {irep,dump,cdump,ritehash}.h to /include/mruby | Yukihiro Matsumoto | |
| 2012-04-23 | Merge branch 'master' of github.com:mruby/mruby | mimaki | |
| Conflicts: src/variable.c | |||
| 2012-04-23 | add file header | mimaki | |
| 2012-04-20 | should not free mrb stack; a bug found&fixed by @miura1729 | Yukihiro Matsumoto | |
| 2012-04-20 | move src/mdata.h to include/mruby/data.h | Yukihiro Matsumoto | |
| 2012-04-20 | add mruby sources | mimaki | |
