summaryrefslogtreecommitdiffhomepage
path: root/include
AgeCommit message (Expand)Author
2013-09-25Merge pull request #1509 from FUKUZAWA-Tadashi/heredoc-bugfixYukihiro "Matz" Matsumoto
2013-09-25change type of mrb->c->status from uint8_t to enum mrb_fiber_state; #1511Yukihiro "Matz" Matsumoto
2013-09-22fix bugs on HeredocumentFUKUZAWA-Tadashi
2013-09-21rename voidp to cptrYukihiro "Matz" Matsumoto
2013-09-21voidp should be an Object; close #1508Yukihiro "Matz" Matsumoto
2013-09-20rename node->filename to node->filename_indexYukihiro "Matz" Matsumoto
2013-09-16remove executable bit from include/mruby/dump.h fileThomas Schmidt
2013-09-03MSVC: compilation works again (+minor style fixes)Cremno
2013-09-02support c++ in mruby/debug.htake_cheeze
2013-09-02rename debug function nametake_cheeze
2013-09-02reduce node sizetake_cheeze
2013-09-02use uint16_t for line typetake_cheeze
2013-09-02support multiple filename in ireptake_cheeze
2013-09-02add verbose_backtracetake_cheeze
2013-08-29Removed unnecessary #undef ISPRINT in include/mruby.hPaolo Bosetti
2013-08-27Merge pull request #1491 from dmajkic/masterYukihiro "Matz" Matsumoto
2013-08-27Remove function delarations not implemented in codeDusan D. Majkic
2013-08-23add mrb_string_type().Tomoyuki Sahara
2013-08-15use newer DATA APIYukihiro "Matz" Matsumoto
2013-08-15redesign mruby/data.h API; use DATA_PTR() for raw data pointer, DATA_GET_PTR(...Yukihiro "Matz" Matsumoto
2013-08-15add compatibility macro mrb_class_new_instance()Yukihiro "Matz" Matsumoto
2013-08-13define Class#new in ruby to call #initializeYukihiro "Matz" Matsumoto
2013-08-12use CHAR_BIT instead of bare 8Yukihiro "Matz" Matsumoto
2013-08-12move (void) cast after declarationsYukihiro "Matz" Matsumoto
2013-08-10Silence 'unused parameter' warningsJonas Kulla
2013-08-08allow turning off GC generational mode by default by MRB_GC_TURN_OFF_GENERATI...Yukihiro "Matz" Matsumoto
2013-08-07use intptr_t instead of int64_t for 32bit platformsYukihiro "Matz" Matsumoto
2013-08-07rename mrb_value_p() to mrb_ptr() since _p means predicate in mruby sourceYukihiro "Matz" Matsumoto
2013-08-04fix bugs in commentYuichi Nishiwaki
2013-08-04add commentary to value representationYuichi Nishiwaki
2013-08-04bugfix: the bit mask was smaller than the size it should beYuichi Nishiwaki
2013-08-04revert one of the API changes: MRB_SET_VALUE_P no longer usedYuichi Nishiwaki
2013-08-04cosmetic changesYuichi Nishiwaki
2013-08-04implement 64bit nan-boxingYuichi Nishiwaki
2013-08-03add read barrier to value.pYuichi Nishiwaki
2013-07-30forget to re-initialize target_class for top-level eval; close #1418Yukihiro "Matz" Matsumoto
2013-07-25introduce mrb_assert() in mruby.hfleuria
2013-07-24restore once removed mrb_garbage_collect()Yukihiro "Matz" Matsumoto
2013-07-24Merge pull request #1407 from Fleurer/gc-introduce-incremental-gc-stepYukihiro "Matz" Matsumoto
2013-07-24rename variable_gray_list to atomic_gray_listfleuria
2013-07-24rename mrb_garbage_collect() to mrb_full_gc()fleuria
2013-07-18Merge pull request #1382 from suzukaze/add-commentsYukihiro "Matz" Matsumoto
2013-07-15Repalace int with mrb_bool because a return value is boolean.Jun Hiroe
2013-07-15Add comments.Jun Hiroe
2013-07-14Replace int with mrb_bool because a return value is boolean.Jun Hiroe
2013-07-10put pointer tables before bitmap to avoid alignment issues; ref #1353Yukihiro "Matz" Matsumoto
2013-07-07Merge pull request #1353 from mirichi/khashYukihiro "Matz" Matsumoto
2013-07-07It optimizes more.mirichi
2013-07-07Merge pull request #1352 from k-tsj/change-param-type-to-suppress-warningsYukihiro "Matz" Matsumoto
2013-07-07Change parameter type to suppress -Wsign-compare warningsKazuki Tsujimoto