| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-03-21 | Backtick operation | mattn | |
| 2013-03-19 | %I %i literal | FUKUZAWA-Tadashi | |
| 2013-03-17 | remove disused check code | FUKUZAWA-Tadashi | |
| 2013-03-17 | implement literal %W %w %s | FUKUZAWA-Tadashi | |
| refactor string parsing | |||
| 2013-03-17 | remove bit-shift operation. | Kurebayashi, Takahiro | |
| 2013-03-14 | Add break to default case in switch statement | kano4 | |
| 2013-03-14 | Merge pull request #997 from monaka/pr-add-type-mrb_bool_t | Yukihiro "Matz" Matsumoto | |
| Define mrb_bool_t. | |||
| 2013-03-14 | symbol length make size_t from mrb_int; cancel #993 ↵ | Yukihiro Matz Matsumoto | |
| monaka/pr-cleanup-symbol.c-20130312 | |||
| 2013-03-14 | Define type mrb_bool. It is typedef-ed to _Bool on C99, unsigned int on MSVC. | Masaki Muranaka | |
| It is safer than applying 1bit bit-fields to signed int. For forward compatibility, you should substiture only 1 or 0 for the variable typed mrb_bool. | |||
| 2013-03-09 | OP_ARRAY may overflow ARG_C | Yukihiro Matz Matsumoto | |
| 2013-03-09 | Fix warnings. | Masaki Muranaka | |
| 2013-03-05 | skip empty OP_STRCAT | Yukihiro Matz Matsumoto | |
| 2013-03-05 | proper irep pool duplication check for strings | Yukihiro Matz Matsumoto | |
| 2013-03-05 | save/restore arena index for each codedump iteration | Yukihiro Matz Matsumoto | |
| 2013-03-04 | Merge branch 'heredoc' of https://github.com/FUKUZAWA-Tadashi/mruby into ↵ | Yukihiro Matz Matsumoto | |
| FUKUZAWA-Tadashi-heredoc | |||
| 2013-03-03 | Merge pull request #931 from matsumoto-r/fix_some_indents | Yukihiro "Matz" Matsumoto | |
| Adjust some indents | |||
| 2013-03-03 | implement heredoc | FUKUZAWA-Tadashi | |
| 2013-03-03 | Remove trailing whitespaces. This is just a cosmetic change. | Masaki Muranaka | |
| 2013-03-02 | Adjust some indents | MATSUMOTO Ryosuke | |
| 2013-03-02 | string interpolation in regex | Yukihiro Matz Matsumoto | |
| 2013-02-26 | Merge pull request #899 from masamitsu-murase/modify_stack_position_of_method | Yukihiro "Matz" Matsumoto | |
| Modify stack position of NODE_DEF and NODE_SDEF. | |||
| 2013-02-26 | Merge pull request #898 from masamitsu-murase/modify_return_value | Yukihiro "Matz" Matsumoto | |
| Modify handling of NODE_RETURN and NODE_NEXT. | |||
| 2013-02-27 | Modify stack position of NODE_DEF and NODE_SDEF. | Masamitsu MURASE | |
| 2013-02-27 | Return nil if argument of NODE_RETURN and NODE_NEXT is not specified. | Masamitsu MURASE | |
| 2013-02-26 | Clean code up. | Masaki Muranaka | |
| 2013-02-24 | Merge pull request #881 from masamitsu-murase/make_op_assign_faster | Yukihiro "Matz" Matsumoto | |
| Make OP_ASGN faster. | |||
| 2013-02-25 | Adjust stack position of NODE_RESCUE. | Masamitsu MURASE | |
| 2013-02-24 | Make OP_ASGN faster. | Masamitsu MURASE | |
| I think that `*=` and `/=` can be compiled to `OP_MUL` and `OP_DIV`. | |||
| 2013-02-22 | Call compile method to override to memolize instances | mattn | |
| 2013-02-22 | Fix indent | mattn | |
| 2013-02-21 | compile /a/ as ::Regexp.new("a") | Yukihiro Matz Matsumoto | |
| 2013-02-18 | vars must be declared at the start of a block | Cremno | |
| 2013-02-15 | ready to pass second argument of Regexp.new | mattn | |
| 2013-02-15 | Should be OP_LOADL | mattn | |
| 2013-02-15 | Pluggable Regexp | mattn | |
| 2013-02-03 | Modify handling of integer literal. | Masamitsu MURASE | |
| Do not assume that significand of `double` is larger than `mrb_int`. | |||
| 2013-01-27 | Merge pull request #786 from carsonmcdonald/unsignedfixes | Yukihiro "Matz" Matsumoto | |
| Fixes a number of "comparison between signed and unsigned" warnings. | |||
| 2013-01-27 | Removed tests that look outdated. The mrb_compile_string they use is gone now. | Carson McDonald | |
| 2013-01-27 | Fixes a number of "comparison between signed and unsigned" warnings. | Carson McDonald | |
| 2013-01-20 | Modify handling of NODE_UNDEF to accept multiple arguments. | Masamitsu MURASE | |
| 2013-01-16 | wrong condiiton in too many symbols check; #close #731 | Yukihiro Matz Matsumoto | |
| 2013-01-13 | more aggressive code elimination for NODE_DOT{2,3} | Yukihiro Matz Matsumoto | |
| 2013-01-13 | eliminate unused hash expression more aggresively | Yukihiro Matz Matsumoto | |
| 2013-01-13 | eliminate unused array expression more aggresively | Yukihiro Matz Matsumoto | |
| 2013-01-10 | jump address error when value taken from if statement without else clause; ↵ | Yukihiro Matz Matsumoto | |
| close #712 | |||
| 2013-01-06 | `unless` without `else` should return nil if the condition is true. | Masamitsu MURASE | |
| 2013-01-06 | Modify NODE_IF handling. | Masamitsu MURASE | |
| When "unless" is used without "else", tree->cdr->car of NODE_IF is NULL. In this case, pop() should not be called because codegen generates no code. | |||
| 2012-12-28 | minor cosmetic change after #676 | Yukihiro Matz Matsumoto | |
| 2012-12-28 | fix correct stack postion for headless case | skandhas | |
| 2012-12-28 | wrong stack position for headless case; close #675 | Yukihiro Matz Matsumoto | |
