summaryrefslogtreecommitdiffhomepage
path: root/include
AgeCommit message (Expand)Author
2014-05-30add internal function mrb_toplevel_run_keep() to keep stack contents; close #...Yukihiro "Matz" Matsumoto
2014-05-20move prototype of mrb_format() from error.h to mruby.h; ref #2274Yukihiro "Matz" Matsumoto
2014-05-19allow NULL (no variable) in lvar section of mrb format; fix #2294Yukihiro "Matz" Matsumoto
2014-05-18Merge pull request #2287 from yui-knk/add-spaceYukihiro "Matz" Matsumoto
2014-05-18Add a space aftre bracket.yui-knk
2014-05-18Remove space.yui-knk
2014-05-17Replace tab with spaces.yui-knk
2014-05-16include/mruby/opcode.h fix operation docksss
2014-05-15move mrb_irep_remove_lv from etc.c to mruby-bin-strip gemYukihiro "Matz" Matsumoto
2014-05-15Support `LVAR` section removing.take_cheeze
2014-05-14mv opcode.h -> include/mruby/opcode.h and remove duplication from mruby-eval gemYukihiro "Matz" Matsumoto
2014-05-14resize register number in LVAR section from 32bits to 16bitsYukihiro "Matz" Matsumoto
2014-05-14rename lv section header from LOCV to LVARYukihiro "Matz" Matsumoto
2014-05-14Merge branch 'dump_lv' of https://github.com/take-cheeze/mruby into take-chee...Yukihiro "Matz" Matsumoto
2014-05-13fix overflow error like #2244 on MRB_WORD_BOXINGYukihiro "Matz" Matsumoto
2014-05-13should use mrb_type() for the sake of MRB_WORD_BOXINGYukihiro "Matz" Matsumoto
2014-05-07Move Kernel#fail definition to mruby-kernel-ext mrbgem.take_cheeze
2014-05-05add function for checked mrb_int subtractioncremno
2014-05-05add function for checked mrb_int additioncremno
2014-05-05temporary macros for checked arithmetic functionscremno
2014-05-04simply use `isfinite`cremno
2014-05-03new macro mrb_int(mrb,x) to retrieve mrb_int from mrb_value with conversion i...Yukihiro "Matz" Matsumoto
2014-05-03Merge branch 'values_at' of https://github.com/take-cheeze/mruby into take-ch...Yukihiro "Matz" Matsumoto
2014-05-02add namespace prefix to `dump_irep`cremno
2014-05-02Implement Struct#values_at and Array#values_at .take_cheeze
2014-04-30Added dump_irep in header.Thiago Scalone
2014-04-29Remove `lv_len` and use `nlocals - 1` instead.take_cheeze
2014-04-29Support local variables information dumping.take_cheeze
2014-04-29remove `mrb_str_offset`cremno
2014-04-29make cioff in struct REnv from int to ptrdiff_t; close #2149Yukihiro "Matz" Matsumoto
2014-04-28presreve local variables names in irep->lvYukihiro "Matz" Matsumoto
2014-04-28Merge pull request #2142 from cremno/rename-mrb_str_buf_appendYukihiro "Matz" Matsumoto
2014-04-27rename `mrb_str_buf_append` to `mrb_str_cat_str`cremno
2014-04-28Fix MSVC warnings for numeric.ckyab
2014-04-26Merge pull request #2118 from ksss/range-boolYukihiro "Matz" Matsumoto
2014-04-25better integer size assertion suggested by usakYukihiro "Matz" Matsumoto
2014-04-25eliminate plain int except for a few cases like arena_indexYukihiro "Matz" Matsumoto
2014-04-24mrb_range_new excl flag use mrb_bool insteard of intksss
2014-04-21remove `mrb_str_buf_cat`cremno
2014-04-20do not reuse deleted entry. fixedmirichi
2014-04-18Sort out the variables which belongs to 'mrb_callinfo' to improve 'cipush' pe...crimsonwoods
2014-04-17Add mrb_regexp_p to check whether mrb_value is Regexp.take_cheeze
2014-04-16Move src/re.h to include/mruby/re.h .take_cheeze
2014-04-16resolve conflictYukihiro "Matz" Matsumoto
2014-04-13use quadratic probing in khash.hYukihiro "Matz" Matsumoto
2014-04-13add kh_push2() to check if entry is addedYukihiro "Matz" Matsumoto
2014-04-13khash.h: use first found k_delYukihiro "Matz" Matsumoto
2014-04-11Merge pull request #2044 from take-cheeze/const_argvYukihiro "Matz" Matsumoto
2014-04-11kh_put return value should be found indexksss
2014-04-11Qualify argv argument of API `const`.Takeshi Watanabe