summaryrefslogtreecommitdiffhomepage
path: root/include
AgeCommit message (Collapse)Author
2012-08-15canonicalize NaN value in NaN boxing environmentConstellation
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-03define_method to copy block bodyYukihiro Matsumoto
2012-08-01make mrb_funcall_argv and mrb_funcall_with_block to take mrb_sym as a method ↵Yukihiro Matsumoto
name
2012-07-31POOL_ALIGNMENT POOL_PAGE_SIZE : Configurable parameters.Masaki Muranaka
2012-07-30add description of MRB_IV_INITIAL_SIZEYukihiro Matsumoto
2012-07-30khash refactoring; no more MRB_KHASH_INITIAL_SIZEYukihiro Matsumoto
2012-07-30add description of MRB_HEAP_PAGE_SIZEYukihiro Matsumoto
2012-07-30better mrbconf decsriptionYukihiro Matsumoto
2012-07-30iv khash initial size to 8Yukihiro Matsumoto
2012-07-30allow specifying khash initial sizeYukihiro Matsumoto
2012-07-30MRB_INITIAL_HASH_SIZE : Make the initial hash size configurable.Masaki Muranaka
2012-07-30remove __STDC_LIMIT_MACROS for INT32_MAXYukihiro Matsumoto
2012-07-30fixed the comment EnglishYukihiro Matsumoto
2012-07-29Define __STDC_LIMIT_MACROS for INT32_MAX in C++Max Anselm
2012-07-29Merge pull request #405 from monaka/pr-remove-unimplemented-declarationYukihiro "Matz" Matsumoto
Remove unimplemented declarations.
2012-07-29Remove unimplemented declarations.Masaki Muranaka
2012-07-29mrb_hash_delete_key(), mrb_hash_keys() : Declare as static.Masaki Muranaka
mrb_check_hash_type(): Remove as no implementation.
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-19use no malloc in mrb_funcall; close #386Yukihiro Matsumoto
2012-07-19make MRB_ARENA_SIZE to be configurableYukihiro Matsumoto
2012-07-18MRB_FUNCALL_ARGC_MAX support. (refs comments in #324).Masaki Muranaka
2012-07-17change return type of mrb_p() to voidYukihiro Matsumoto
2012-07-15make class_from_sym staticYukihiro Matsumoto
2012-07-13Merge pull request #367 from junjis0203/rename_load_string_argument_nameYukihiro "Matz" Matsumoto
Rename confusable argument name
2012-07-14Rename confusable argument nameJunji Sawada
2012-07-14Remove unnecessary header inclusionJunji Sawada
2012-07-14mrb_load_xxx to return undef + mrb_undef_pYukihiro Matsumoto
2012-07-13simpify mruby/mrbc using contextYukihiro Matsumoto
2012-07-13allow DISABLE/ENABLE_SATDIOYukihiro Matsumoto
2012-07-12remove double stdio.h inclusionYukihiro 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-07-03add new function mrb_parser_free()Yukihiro Matsumoto
2012-07-03capture_errors can be specified by mrbc_contextYukihiro Matsumoto
2012-07-03add context arg to mrb_parser_parse()Yukihiro Matsumoto
2012-07-03add context to parser, that would hold local variable info, filename, and ↵Yukihiro Matsumoto
line number. mrbc_context argument has been added to mrb_parse_xxx() functions. Normally, you just to need to add NULL (or 0) to the last argument of the above functions.
2012-07-03modify compiler API; replace mrb_compie_xxx with mrb_load_xxx() that ↵Yukihiro Matsumoto
combines compilatoin and execution
2012-07-03constify parser input stringsYukihiro Matsumoto
2012-07-03remove size_t from parserYukihiro Matsumoto
2012-06-28do not undef config macro MRB_USE_FLOATYukihiro Matsumoto
2012-06-27do not undef config macrosYukihiro Matsumoto
2012-06-24Modify Kernel#clone and Kernel#dup.Masamitsu MURASE
Kernel#clone, Kernel#dup: - 'iv' should not be shared with the original object, but it should be copied. Kernel#clone: - 'mt' of singleton_class should be copied.
2012-06-23check object type before retrieving instance variabls; close #311Yukihiro Matsumoto