| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-09-12 | two more wrapper macros for ctype.h | Tomoyuki Sahara | |
| we need them on the platform where 'char' is signed. | |||
| 2012-09-10 | OP_EQ should try direct compararison first | Yukihiro Matsumoto | |
| 2012-09-03 | remove memleaks using linked allocator | Yukihiro Matsumoto | |
| 2012-08-19 | allocf should take ud; https://twitter.com/junjis0203/status/236949976461221889 | Yukihiro Matsumoto | |
| 2012-08-14 | NaN boxing | Yukihiro Matsumoto | |
| 2012-08-14 | move mrb_value def to mruby/value.h | Yukihiro Matsumoto | |
| 2012-08-12 | now segmented list can be used as instance variable tables by ↵ | Yukihiro Matsumoto | |
| -DMRB_USE_IV_SEGLIST; we still need to measure the performance and memory consumption | |||
| 2012-08-09 | add GC.disable and GC.enable | Yukihiro Matsumoto | |
| 2012-08-08 | store :initialize in mrb structure | Yukihiro Matsumoto | |
| 2012-08-01 | make mrb_funcall_argv and mrb_funcall_with_block to take mrb_sym as a method ↵ | Yukihiro Matsumoto | |
| name | |||
| 2012-07-25 | Undefine new for class rather than instance. | Max Anselm | |
| Applies to NilClass, TrueClass, FalseClass, Fixnum, and Float. Add mrb_undef_class_method for DRYness. | |||
| 2012-07-24 | instance_eval should set target_class in the block | Yukihiro Matsumoto | |
| 2012-07-19 | make MRB_ARENA_SIZE to be configurable | Yukihiro Matsumoto | |
| 2012-07-17 | change return type of mrb_p() to void | Yukihiro Matsumoto | |
| 2012-07-15 | make class_from_sym static | Yukihiro Matsumoto | |
| 2012-07-14 | mrb_load_xxx to return undef + mrb_undef_p | Yukihiro Matsumoto | |
| 2012-07-09 | we don't need xmalloc; close #356 | Yukihiro Matsumoto | |
| 2012-07-06 | remove MRB_TT_THREAD,MRB_TT_THREADGRP | Yukihiro Matsumoto | |
| 2012-07-05 | move RDoc comments | Yukihiro Matsumoto | |
| 2012-06-20 | remove RuntimeError from mrb_state | Yukihiro Matsumoto | |
| 2012-06-15 | remove unreference Error class macros | Yukihiro Matsumoto | |
| 2012-06-15 | do not use fixed sized buffer in mrb_bug/mrb_warn; close #287 | Yukihiro Matsumoto | |
| 2012-06-14 | Fix redundant declraration warnings by gcc. | Masaki Muranaka | |
| 2012-06-08 | add auxiliary data pointer to mrb_state | Yuichiro MASUI | |
| 2012-06-05 | symbol can contain non printable characters | Yukihiro Matsumoto | |
| 2012-06-03 | remove unused mrb_exec_recursive | Yukihiro Matsumoto | |
| 2012-06-02 | export exception handling | Frank Celler | |
| 2012-06-02 | fixed prototype: g++ will complain about definition not being a prototype, ↵ | Frank Celler | |
| should work with GCC and VC as well | |||
| 2012-06-01 | remove unused prototypes from mruby.h | Yukihiro Matsumoto | |
| 2012-06-01 | remove mrb_rs from mruby.h | Yukihiro Matsumoto | |
| 2012-06-01 | remove CONST_ID from mruby.h | Yukihiro Matsumoto | |
| 2012-06-01 | remove IO related prototypes from mruby.h | Yukihiro Matsumoto | |
| 2012-06-01 | remove ruby_setjmp from mruby.h | Yukihiro Matsumoto | |
| 2012-06-01 | remove KASH from mruby.h | Yukihiro Matsumoto | |
| 2012-06-01 | remove REALLOC_N | Yukihiro Matsumoto | |
| 2012-06-01 | move respond_to and instance_of prototypes to mruby.h | Yukihiro Matsumoto | |
| 2012-06-01 | add prototype for mrb_garbage_collect() | Yukihiro Matsumoto | |
| 2012-06-01 | add prototype for mrb_garbage_collect() | Yukihiro Matsumoto | |
| 2012-06-01 | remove unused event related declarations | 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 | remove #new from immediate classes | Yukihiro Matsumoto | |
| 2012-05-24 | made mrb_get_args() better (optinal args, type checks); close #173 #176 | Yukihiro Matsumoto | |
| 2012-05-22 | always use value.i for MRB_TT_FALSE | 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-19 | C++ compilability -- make mrb_object() macro return an RObject, not void | Mitchell Blank Jr | |
| 2012-05-19 | remove dependency to node.h and pool.h | Yukihiro Matsumoto | |
| 2012-05-18 | add extern "C" guards; close #126 | Yukihiro Matsumoto | |
| 2012-05-17 | add mrb_define_singleton_method/mrb_define_module_function | Yukihiro Matsumoto | |
| 2012-05-15 | remove "comparison is always true" warning | Yukihiro Matsumoto | |
