| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-07-03 | preserve toplevel local variable info in mrbc_context | Yukihiro Matsumoto | |
| 2012-07-03 | add context arg to mrb_parser_parse() | Yukihiro Matsumoto | |
| 2012-07-03 | add context to parser, that would hold local variable info, filename, and ↵ | Yukihiro Matsumoto | |
| line number. mrbc_context argument has been added to mrb_parse_xxx() functions. Normally, you just to need to add NULL (or 0) to the last argument of the above functions. | |||
| 2012-07-03 | modify compiler API; replace mrb_compie_xxx with mrb_load_xxx() that ↵ | Yukihiro Matsumoto | |
| combines compilatoin and execution | |||
| 2012-07-03 | constify parser input strings | Yukihiro Matsumoto | |
| 2012-07-03 | remove size_t from parser | Yukihiro Matsumoto | |
| 2012-06-30 | Merge pull request #337 from masamitsu-murase/fix_str_replace | Yukihiro "Matz" Matsumoto | |
| Fix str_replace in string.c | |||
| 2012-07-01 | Free iv of MRB_TT_DATA instance. | Masamitsu MURASE | |
| 2012-06-30 | Fix str_replace in string.c | Masamitsu MURASE | |
| - Increment refcnt of shared string. - Free buffer before replacing. - Clear MRB_STR_SHARED after decref is called. - Fix target of aux.capa. | |||
| 2012-06-29 | Make strucdata optional if ENABLE_STRUCT is activitated | Daniel Bovensiepen | |
| 2012-06-28 | allow string interpolation in symbols like :"a=#{15}" | Yukihiro Matsumoto | |
| 2012-06-28 | allow :"text" form; close #321 | Yukihiro Matsumoto | |
| 2012-06-28 | always define POOL_ALIGNMENT (default 4); reduce strength as well; close #333 | Yukihiro Matsumoto | |
| 2012-06-27 | resolve conflict in class.c | Yukihiro Matsumoto | |
| 2012-06-27 | sizeof("a") is bigger by one than strlen("a") | Yukihiro Matsumoto | |
| 2012-06-27 | use return value from sprintf/snprintf | Yukihiro Matsumoto | |
| 2012-06-26 | Merge pull request #330 from ↵ | Yukihiro "Matz" Matsumoto | |
| monaka/pr-fix-parser-y-to-supress-warning-array-subscript Supress "warning: array subscript has type ‘char’" | |||
| 2012-06-27 | Supress "warning: array subscript has type ‘char’" | Masaki Muranaka | |
| 2012-06-27 | Use sizeof to get char array sizes. | Masaki Muranaka | |
| 2012-06-27 | Use sizeof to get char array sizes. | Masaki Muranaka | |
| 2012-06-26 | Merge pull request #326 from masamitsu-murase/modify_str_format_len | Yukihiro "Matz" Matsumoto | |
| Fix str_format_len. | |||
| 2012-06-27 | do not undef config macros | Yukihiro Matsumoto | |
| 2012-06-27 | Fix str_format_len. | Masamitsu MURASE | |
| 2012-06-26 | Refactor hex_to_str(). | Masaki Muranaka | |
| 2012-06-25 | Merge pull request #323 from monaka/pr-fix-str_to_format | Yukihiro "Matz" Matsumoto | |
| Fix str_to_format. | |||
| 2012-06-26 | Fix str_to_format. See also #314. | Masaki Muranaka | |
| 2012-06-26 | Prevent memory leak when string literal is created. | Masamitsu MURASE | |
| 2012-06-25 | ci->acc should not be left uninitialized; close #303 | Yukihiro Matsumoto | |
| 2012-06-25 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro Matsumoto | |
| 2012-06-25 | use mrb_intern_str instead of mrb_intern if possible | Yukihiro Matsumoto | |
| 2012-06-24 | Merge pull request #318 from masamitsu-murase/fix_instance_tt | Yukihiro "Matz" Matsumoto | |
| Patch for inheritance of built-in class | |||
| 2012-06-24 | Merge pull request #317 from masamitsu-murase/fix_struct_new_gc | Yukihiro "Matz" Matsumoto | |
| Fix GC of struct | |||
| 2012-06-24 | Merge pull request #316 from masamitsu-murase/modify_obj_clone | Yukihiro "Matz" Matsumoto | |
| Modify Kernel#clone and Kernel#dup | |||
| 2012-06-24 | Merge pull request #313 from masamitsu-murase/fix_struct_new | Yukihiro "Matz" Matsumoto | |
| Fix Struct#new and GC | |||
| 2012-06-24 | should mark child env from method (proc) objects | Yukihiro Matsumoto | |
| 2012-06-24 | Modify gc_gray_mark for Struct. | Masamitsu MURASE | |
| 2012-06-24 | Modify obj_free to free instances of Struct. | Masamitsu MURASE | |
| 2012-06-24 | Modify Kernel#clone and Kernel#dup. | Masamitsu MURASE | |
| Kernel#clone, Kernel#dup: - 'iv' should not be shared with the original object, but it should be copied. Kernel#clone: - 'mt' of singleton_class should be copied. | |||
| 2012-06-24 | Modify instance tt. | Masamitsu MURASE | |
| 2012-06-24 | Implement garbage collection for struct. | Masamitsu MURASE | |
| 2012-06-24 | Fix Struct.new and Struct.[]. | Masamitsu MURASE | |
| Instances of Struct's subclass should have MRB_TT_STRUCT. | |||
| 2012-06-24 | pacify const assignment warning | Yukihiro Matsumoto | |
| 2012-06-24 | resolve crash issue on LLVM; longjmp cleared some local variable | Yukihiro Matsumoto | |
| 2012-06-23 | reduce calling mrb_str_new_cstr() to avoid strlen(); #301 | Yukihiro Matsumoto | |
| 2012-06-23 | check object type before retrieving instance variabls; close #311 | Yukihiro Matsumoto | |
| 2012-06-23 | remove assertion for false assumption; mrb_str_new(0, len) where len > 0 can ↵ | Yukihiro Matsumoto | |
| be used to allocate an unintialized string | |||
| 2012-06-22 | Use mrb_str_new() instead of mrb_str_new2() as possible. | Masaki Muranaka | |
| 2012-06-21 | dislose mrb_hash_keys; close #304 | Yukihiro Matsumoto | |
| 2012-06-21 | forgot to rename function mrb_sym2name -> mrb_sym2name_len | Yukihiro Matsumoto | |
| 2012-06-21 | reduce calling of strlen(); #301 | Yukihiro Matsumoto | |
