| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-04-28 | prevent printf warning | Yukihiro "Matz" Matsumoto | |
| 2014-04-28 | better codedump formatting | Yukihiro "Matz" Matsumoto | |
| 2014-04-28 | presreve local variables names in irep->lv | Yukihiro "Matz" Matsumoto | |
| 2014-04-27 | rename `mrb_str_buf_append` to `mrb_str_cat_str` | cremno | |
| The new name is better and less confusing, because: - `mrb_str_append` calls `mrb_str_to_str` and this function doesn't - `mrb_str_buf_append` _is_ `mrb_str_cat` for `mrb_value` strings | |||
| 2014-04-27 | NODE_SUPER should preserve stack region for block; ref #2136 | Yukihiro "Matz" Matsumoto | |
| 2014-04-27 | NODE_DEF should preserve stack region for lambda; ref #2136 | Yukihiro "Matz" Matsumoto | |
| 2014-04-26 | area of implicit nil is not enough to nregs | mirichi | |
| 2014-04-26 | bit more peephole optimization for NODE_LVAR | Yukihiro "Matz" Matsumoto | |
| 2014-04-26 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-04-26 | should use plain int for index, since i may be printed using %d; close #2127 | Yukihiro "Matz" Matsumoto | |
| 2014-04-26 | Merge pull request #2118 from ksss/range-bool | Yukihiro "Matz" Matsumoto | |
| RRange excl flag use mrb_bool insteard of int | |||
| 2014-04-25 | better integer size assertion suggested by usak | Yukihiro "Matz" Matsumoto | |
| 2014-04-25 | eliminate plain int except for a few cases like arena_index | Yukihiro "Matz" Matsumoto | |
| 2014-04-25 | remove -Wsign-compare warnings | Yukihiro "Matz" Matsumoto | |
| 2014-04-24 | mrb_range_new excl flag use mrb_bool insteard of int | ksss | |
| 2014-04-16 | Move src/re.h to include/mruby/re.h . | take_cheeze | |
| 2014-04-03 | add assertion before casting | Yukihiro "Matz" Matsumoto | |
| 2014-04-03 | too much peephole optimization; close #1992 | Yukihiro "Matz" Matsumoto | |
| 2014-03-28 | Add test for backquote. | take_cheeze | |
| * Implement code generation of NODE_DXSTR. * Fix NOVAL NODE_XSTR. | |||
| 2014-03-21 | reduce hash creation by using update method | Yukihiro "Matz" Matsumoto | |
| 2014-03-21 | should be able to create hash with 127+ entries; close #1894 | Yukihiro "Matz" Matsumoto | |
| 2014-03-18 | add a space after C reserved words | Yukihiro "Matz" Matsumoto | |
| 2014-03-15 | symbol length type to be mrb_int | Yukihiro "Matz" Matsumoto | |
| 2014-03-14 | remove new_label(s) where label position can be obtained from genop() | Yukihiro "Matz" Matsumoto | |
| 2014-03-13 | too much optimization | Yukihiro "Matz" Matsumoto | |
| 2014-03-13 | peephole optimization for OP_JMP{IF,NOT} | Yukihiro "Matz" Matsumoto | |
| 2014-03-09 | Use mrb_str_new_cstr() instead of mrb_str_new() with strlen(). | Masaki Muranaka | |
| 2014-03-08 | use mrb_str_cat_lit for literals | cremno | |
| 2014-03-08 | Make type casts safer. | Masaki Muranaka | |
| 2014-03-05 | fix off-by-one error in attrsym | cubicdaiya | |
| The allocation size for null-terminated character is lacking. In actual, it is no problem in most case because codegen_palloc allocates more a memory size than required size. | |||
| 2014-03-03 | rescue clause should understand splats; close #1786 | Yukihiro "Matz" Matsumoto | |
| 2014-03-01 | support c++ exception | take_cheeze | |
| 2014-03-01 | use C style comments instead of C++ style comments | cubicdaiya | |
| According to CONTRIBUTING.md, Don't use C++ style comments /* This is the prefered comment style */ Use C++ style comments only for temporary comment e.g. commenting out some code lines. | |||
| 2014-02-09 | Merge pull request #1674 from cremno/mrb_bool-FALSE-TRUE | Yukihiro "Matz" Matsumoto | |
| use mrb_bool, FALSE and TRUE more | |||
| 2014-02-04 | better codedump format | Yukihiro "Matz" Matsumoto | |
| 2014-02-01 | fix NODE_SPLAT codegen | h2so5 | |
| 2014-01-31 | use mrb_bool, FALSE and TRUE more | cremno | |
| It doesn't matter to me if one is using FALSE/TRUE instead of 1/0 but I prefer a type (alias) which emphasizes boolean vars to int. I changed 1/0 to FALSE/TRUE anyway. | |||
| 2014-01-31 | clean up external symbols | cremno | |
| remove unused and unneeded: - sysexit_status - type (a global variable) add mrb_ prefix to: - codedump_all - class_instance_method_list - parser_dump make various functions static, incl.: - yyparse - make_exception | |||
| 2014-01-04 | should splat and iterate elements when "*ary" speficied in the case-when ↵ | Yukihiro "Matz" Matsumoto | |
| clause; close #1627 | |||
| 2014-01-02 | Merge pull request #1634 from cremno/use-mrb_fixnum_p | Yukihiro "Matz" Matsumoto | |
| tiny word boxing optimization | |||
| 2014-01-02 | tiny word boxing optimization | cremno | |
| 2014-01-02 | codegen.c: remove superfluous return | cremno | |
| 2013-12-27 | return-value of mrb_run is invalid in top-level-scope | cubicdaiya | |
| The return-value of mrb_run in top-level-scope should be the evaluated value at last. | |||
| 2013-12-26 | adjust register position for return value; fix #1620 | Yukihiro "Matz" Matsumoto | |
| 2013-12-26 | revert fix in #1620 | Yukihiro "Matz" Matsumoto | |
| 2013-12-25 | Fix return when value expected | Carson McDonald | |
| 2013-12-25 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2013-12-24 | fix #1617 | h2so5 | |
| 2013-12-24 | class/module body to honor whether value is required or not; reduce a few ↵ | Yukihiro "Matz" Matsumoto | |
| instructions for normal cases | |||
| 2013-12-19 | fix codegen bug in NODE_CASE | h2so5 | |
