| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-06-01 | symbol table key should be mrb_sym, not int32_t | Yukihiro Matsumoto | |
| 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-06-01 | reorder mrb_ary_new_from_values() args to (argc, argv) | Yukihiro Matsumoto | |
| 2012-05-31 | correctly share string bodies | Yukihiro Matsumoto | |
| 2012-05-31 | remove unused prototypes | Yukihiro Matsumoto | |
| 2012-05-31 | remove unused str_new_frozen | Yukihiro Matsumoto | |
| 2012-05-31 | allow string shared body | Yukihiro Matsumoto | |
| 2012-05-31 | resolve conflict | Yukihiro Matsumoto | |
| 2012-05-31 | disable ENCODING and REGEXP; regexp will be back in the future | Yukihiro Matsumoto | |
| 2012-05-31 | remove #new from immediate classes | Yukihiro Matsumoto | |
| 2012-05-30 | rename ruby_digitmap to mrb_digitmap | Yukihiro Matsumoto | |
| 2012-05-24 | made mrb_get_args() better (optinal args, type checks); close #173 #176 | Yukihiro Matsumoto | |
| 2012-05-22 | remove unused prototype from hash.h | Yukihiro Matsumoto | |
| 2012-05-22 | remove unused MT code from hash.h | 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 - don't define types inside others | Mitchell Blank Jr | |
| The following is legal code in both C and C++: struct foo { struct bar { int a } x; int y; }; ...however in C++ it defines a type called "foo::bar" instead of "bar". Just avoid this construct altogether | |||
| 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 | fixed a typo | Yukihiro Matsumoto | |
| 2012-05-18 | move compile.h to mruby/compile.h | Yukihiro Matsumoto | |
| 2012-05-18 | add extern "C" guards | Yukihiro Matsumoto | |
| 2012-05-18 | add extern "C" guards; close #126 | Yukihiro Matsumoto | |
| 2012-05-17 | redefine POST/NEG FIXABLE using INT_MIN/MAX | 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 | |
| 2012-05-11 | remove unused #include | Yukihiro Matsumoto | |
| 2012-05-10 | remove encode_class and converter_class from mrb_state | Yukihiro Matsumoto | |
| 2012-05-10 | remove regex_class and match_class from mrb_state | Yukihiro Matsumoto | |
| 2012-05-10 | remove mrb->range_class | Yukihiro Matsumoto | |
| 2012-05-09 | temporal VC patch from nkshigeru | Yukihiro Matsumoto | |
| 2012-05-09 | move declaration in the middle | Yukihiro Matsumoto | |
| 2012-05-09 | partial VC support | Yukihiro Matsumoto | |
| 2012-05-07 | RMatch.src should not be mrb_value | Yukihiro Matsumoto | |
| 2012-05-06 | add const to char* | Yuichiro MASUI | |
| 2012-05-06 | Time class available; based on code from @beoran; sorry for jumbo patch | Yukihiro Matsumoto | |
| 2012-05-05 | hash refactored | Yukihiro Matsumoto | |
| 2012-05-05 | use int8_t for tt | Yukihiro Matsumoto | |
| 2012-05-05 | move mrb_obj_is_instance_of from range.c to kernel.c | Yukihiro Matsumoto | |
