summaryrefslogtreecommitdiffhomepage
path: root/include/mruby.h
AgeCommit message (Collapse)Author
2013-03-12Remove mrb_str_new2(). Use mrb_str_new_cstr() instead.Masaki Muranaka
Make mrb_str_new_cstr() accept NULL pointer. It generates 0byte strings by NULL pointer.
2013-03-06Cut off mrb_irep_free from mrb_close; based on a patch from @matsumoto-r; ↵Yukihiro Matz Matsumoto
close #951
2013-03-03cleanup: unused variable local_svarKouki Ooyatsu
2013-02-24Remove commented out code. Remove redundant function calls.Masaki Muranaka
2013-02-18rename hook and macroYukihiro Matz Matsumoto
2013-02-17Created hook at VM code fetch. It's for debuggerYuichiro MASUI
2013-02-03Merge pull request #820 from cremno/unused-stuffYukihiro "Matz" Matsumoto
Remove declarations of undefined functions
2013-02-03removed declarations of undefined functionsCremno
2013-02-02Remove ";" suffix from function-type macros.Masamitsu MURASE
2013-01-30removed unused mrb_check_funcallCremno
2013-01-30removed unused mrb_funcargv_tCremno
2013-01-08remove MRUBY_VERSION for the time being; close #700Yukihiro Matz Matsumoto
2013-01-07Merge pull request #705 from authorNari/compact_flagsYukihiro "Matz" Matsumoto
Compact flags for GC
2013-01-07Compact flags for GCNarihiro Nakamura
2013-01-07Remove DEBUG macro definitions.Masaki Muranaka
2013-01-07Add the generational gcNarihiro Nakamura
2012-12-07mange arena_idx smarter for smaller ARENA_SIZE; now default to 100 from 1024Yukihiro Matz Matsumoto
2012-11-04remove NUM2CHR macroYukihiro Matz Matsumoto
2012-11-04remove NUM2CHR macroYukihiro Matz Matsumoto
2012-11-04replace SYM2ID() by mrb_symbol()Yukihiro Matz Matsumoto
2012-11-04remove reference to ruby_verbose and ruby_debugYukihiro Matz Matsumoto
2012-10-23mrb_raisef(): new function. Same as previou version of mrb_raise().Masaki Muranaka
mrb_raise(): API modified. It cannot treat variable arguments.
2012-09-12two more wrapper macros for ctype.hTomoyuki Sahara
we need them on the platform where 'char' is signed.
2012-09-10OP_EQ should try direct compararison firstYukihiro Matsumoto
2012-09-03remove memleaks using linked allocatorYukihiro Matsumoto
2012-08-19allocf should take ud; https://twitter.com/junjis0203/status/236949976461221889Yukihiro Matsumoto
2012-08-14NaN boxingYukihiro Matsumoto
2012-08-14move mrb_value def to mruby/value.hYukihiro Matsumoto
2012-08-12now 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-09add GC.disable and GC.enableYukihiro Matsumoto
2012-08-08store :initialize in mrb structureYukihiro Matsumoto
2012-08-01make mrb_funcall_argv and mrb_funcall_with_block to take mrb_sym as a method ↵Yukihiro Matsumoto
name
2012-07-25Undefine 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-24instance_eval should set target_class in the blockYukihiro Matsumoto
2012-07-19make MRB_ARENA_SIZE to be configurableYukihiro Matsumoto
2012-07-17change return type of mrb_p() to voidYukihiro Matsumoto
2012-07-15make class_from_sym staticYukihiro Matsumoto
2012-07-14mrb_load_xxx to return undef + mrb_undef_pYukihiro Matsumoto
2012-07-09we don't need xmalloc; close #356Yukihiro Matsumoto
2012-07-06remove MRB_TT_THREAD,MRB_TT_THREADGRPYukihiro Matsumoto
2012-07-05move RDoc commentsYukihiro Matsumoto
2012-06-20remove RuntimeError from mrb_stateYukihiro Matsumoto
2012-06-15remove unreference Error class macrosYukihiro Matsumoto
2012-06-15do not use fixed sized buffer in mrb_bug/mrb_warn; close #287Yukihiro Matsumoto
2012-06-14Fix redundant declraration warnings by gcc.Masaki Muranaka
2012-06-08add auxiliary data pointer to mrb_stateYuichiro MASUI
2012-06-05symbol can contain non printable charactersYukihiro Matsumoto
2012-06-03remove unused mrb_exec_recursiveYukihiro Matsumoto
2012-06-02export exception handlingFrank Celler
2012-06-02fixed prototype: g++ will complain about definition not being a prototype, ↵Frank Celler
should work with GCC and VC as well