summaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Expand)Author
2012-06-03Add Class#superclass; a patch made by @bovi; close #234Yukihiro Matsumoto
2012-06-03make shared string to reference-counted C structure to reduce GC pressureYukihiro Matsumoto
2012-06-03small refactoring after mruby coding conventionYukihiro Matsumoto
2012-06-02Merge pull request #230 from MobiRuby/Class_newYukihiro "Matz" Matsumoto
2012-06-03remove unsafe macros in hash.hYukihiro Matsumoto
2012-06-03support Class.new()Yuichiro MASUI
2012-06-02simpler implementation of Hash#empty?Yukihiro Matsumoto
2012-06-02hash->ht might be NULL; it shouldn't thoughYukihiro Matsumoto
2012-06-02hash->ht might be NULL; it shouldn't thoughYukihiro Matsumoto
2012-06-02Merge branch 'master' of github.com:mruby/mrubyYukihiro Matsumoto
2012-06-02naming convention consistency for hash.hYukihiro Matsumoto
2012-06-02refactoring around mrb_hash_newYukihiro Matsumoto
2012-06-02remove unused mrb_mem_clearYukihiro Matsumoto
2012-06-02clean appendix comments from array.cYukihiro Matsumoto
2012-06-02unify long,size_t to int in array.[ch]Yukihiro Matsumoto
2012-06-02changed prototype mrb_ary_replace to (mrb_state*,mrb_value,mrb_value)Yukihiro Matsumoto
2012-06-02small refactoring around Array#concatYukihiro Matsumoto
2012-06-02remove ary_reverse that no longer usedYukihiro Matsumoto
2012-06-02add proper type check (using mrb_get_args) in Array#replaceYukihiro Matsumoto
2012-06-02avoid using mrb_value in Array#+Yukihiro Matsumoto
2012-06-02Merge pull request #228 from fceller/masterYukihiro "Matz" Matsumoto
2012-06-02fixed prototype: g++ will complain about definition not being a prototype, sh...Frank Celler
2012-06-02Merge branch 'master' of github.com:mruby/mrubyYukihiro Matsumoto
2012-06-02Array#reverse revisitedYukihiro Matsumoto
2012-06-02Merge pull request #225 from MobiRuby/fixed_const_missingYukihiro "Matz" Matsumoto
2012-06-02Merge branch 'master' of github.com:mruby/mrubyYukihiro Matsumoto
2012-06-02'mrb_sym' used as 'uint32_t'. it's broken portability; based on the work from...Yukihiro Matsumoto
2012-06-02fixed const_get && const_missing issueYuichiro MASUI
2012-06-02Merge pull request #217 from takahashim/fix-use-mrb_mallocYukihiro "Matz" Matsumoto
2012-06-02Use "if" instead "switch".Masaki Muranaka
2012-06-02ensure str_modify is called at the beginning of modifying methodsYukihiro Matsumoto
2012-06-02use mrb_malloc instead of malloctakahashim
2012-06-02mrb_str_concat was broken for shared strings; close #214Yukihiro Matsumoto
2012-06-01OP_RETURN operand should be stack position of the new scope, not the current ...Yukihiro Matsumoto
2012-06-01rest argument offset might be -1 that means emptyYukihiro Matsumoto
2012-06-01remove unused mrb_f_send; and rename mrb_f_send_m to mrb_f_sendYukihiro Matsumoto
2012-06-01remove spawn (and backtick) method that cannot be implemented without platfor...Yukihiro Matsumoto
2012-06-01reorder arguments to mrb_get_args in mrb_f_send_mYukihiro Matsumoto
2012-06-01symbol table key should be mrb_sym, not int32_tYukihiro Matsumoto
2012-06-01Merge branch 'master' of github.com:mruby/mrubyYukihiro Matsumoto
2012-05-31Merge pull request #211 from MobiRuby/add_kernel_sendYukihiro "Matz" Matsumoto
2012-06-01Merge branch 'master' of github.com:mruby/mrubyYukihiro Matsumoto
2012-06-01add Kernel#sendYuichiro MASUI
2012-06-01remove unnecessary header inclusion from hash.cYukihiro Matsumoto
2012-06-01new API mrb_gc_protect() to add object to arenaYukihiro Matsumoto
2012-06-01small refactoring; hash->ht should not be NULLYukihiro Matsumoto
2012-06-01values need not to dup unlike keysYukihiro Matsumoto
2012-06-01reorder mrb_ary_new_from_values() args to (argc, argv)Yukihiro Matsumoto
2012-06-01remove prototype for mrb_exec_recursive_paired()Yukihiro Matsumoto
2012-06-01stop using mrb_exec_recursive_paired() from Array comparisonYukihiro Matsumoto