| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-05-03 | fix embedded documents | Nobuyoshi Nakada | |
| tabs are allowed after `=begin` and `=end`. raise `SyntaxError` if no =end is found. | |||
| 2014-05-03 | fix condition for the rest of input | Nobuyoshi Nakada | |
| the input must rest the length of a string to be peeked at least. fixes parse error at embedded documents by string eval, and `-e` command line options. | |||
| 2014-05-02 | add namespace prefix to `dump_irep` | cremno | |
| 2014-05-03 | Fix indent | Jun Hiroe | |
| 2014-05-03 | Refactor rshift | Jun Hiroe | |
| 2014-05-02 | Implement Struct#values_at and Array#values_at . | take_cheeze | |
| Add API `mrb_get_values_at()` to mruby/range.h . | |||
| 2014-05-02 | goto STOP if ridx==0 | sasaki takeru | |
| 2014-05-01 | On overflow, clear new stack space before mrb_raise | Carson McDonald | |
| 2014-04-30 | Added dump_irep in header. | Thiago Scalone | |
| 2014-04-30 | remove trailing spaces | Nobuyoshi Nakada | |
| 2014-04-30 | adjust indent | Nobuyoshi Nakada | |
| 2014-04-29 | Remove `lv_len` and use `nlocals - 1` instead. | take_cheeze | |
| Check that `lv`'s length is always `nlocals - 1`. | |||
| 2014-04-29 | Support local variables information dumping. | take_cheeze | |
| 2014-04-29 | indent codedump when file/line info is not available; ref #2147 | Yukihiro "Matz" Matsumoto | |
| 2014-04-29 | codedump for binary mrb files as well | Yukihiro "Matz" Matsumoto | |
| 2014-04-29 | Merge pull request #2158 from kyab/support_doubling_stack | Yukihiro "Matz" Matsumoto | |
| Add doubling stack extend, as fix for #2016 | |||
| 2014-04-29 | Merge pull request #2147 from take-cheeze/dump_line_file | Yukihiro "Matz" Matsumoto | |
| Print file name and line number in codedump if available. | |||
| 2014-04-29 | Add doubling stack extend, as fix for #2016 | kyab | |
| 2014-04-29 | Merge pull request #2156 from cremno/fix-disabled-stdio-2 | Yukihiro "Matz" Matsumoto | |
| fix disabled stdio | |||
| 2014-04-29 | Merge pull request #2155 from cremno/define-resize_capa-as-a-function | Yukihiro "Matz" Matsumoto | |
| define `resize_capa` as a function | |||
| 2014-04-29 | Merge pull request #2157 from cremno/remove-mrb_str_offset | Yukihiro "Matz" Matsumoto | |
| remove `mrb_str_offset` | |||
| 2014-04-29 | Merge pull request #2154 from cremno/dbl_dig | Yukihiro "Matz" Matsumoto | |
| remove `DBL_DIG` fallback definition | |||
| 2014-04-29 | remove `mrb_str_offset` | cremno | |
| 2014-04-29 | fix disabled stdio (and remove trailing spaces) | cremno | |
| 2014-04-29 | remove `DBL_DIG` fallback definition | cremno | |
| 2014-04-29 | include the missing header for `DBL_DIG` | cremno | |
| 2014-04-29 | define `resize_capa` as a function | cremno | |
| This increases readability and maintainability, and it also doesn't use reserved identifiers. | |||
| 2014-04-29 | Fix MSVC warning for symbol.c | kyab | |
| 2014-04-29 | Merge pull request #2151 from carsonmcdonald/multilinecommentfix | Yukihiro "Matz" Matsumoto | |
| Fix multiline comments | |||
| 2014-04-29 | make cioff in struct REnv from int to ptrdiff_t; close #2149 | Yukihiro "Matz" Matsumoto | |
| 2014-04-29 | cast intptr_t to mrb_int to pacify compiler warning; close #2148 | Yukihiro "Matz" Matsumoto | |
| 2014-04-29 | clear all stack everytime to prevent GC crash; ref #2109 | Yukihiro "Matz" Matsumoto | |
| 2014-04-29 | stack may be uncleared | Yukihiro "Matz" Matsumoto | |
| 2014-04-29 | fiber context may be NULL | Yukihiro "Matz" Matsumoto | |
| 2014-04-29 | clear ci->proc to prevent GC crash | Yukihiro "Matz" Matsumoto | |
| 2014-04-28 | Accept =begin and =end with spaces after | Carson McDonald | |
| 2014-04-28 | make peek_n append p->pb to list | Carson McDonald | |
| 2014-04-28 | Use int32_t as line variable type. | take_cheeze | |
| 2014-04-28 | Print file name and line number in codedump if available. | take_cheeze | |
| 2014-04-28 | should care about the case that given arguments are less then mandatory ↵ | Yukihiro "Matz" Matsumoto | |
| formal arguments and optional arguments exist; close #2144 | |||
| 2014-04-28 | fix OP_BLKPUSH dump format | Yukihiro "Matz" Matsumoto | |
| 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-27 | Merge pull request #2136 from mirichi/bug-fix2 | Yukihiro "Matz" Matsumoto | |
| area of implicit nil is not enough to nregs | |||
| 2014-04-27 | forgot to remove abort() | Yukihiro "Matz" Matsumoto | |
| 2014-04-27 | mark may be missed when eval() is called | Yukihiro "Matz" Matsumoto | |
