summaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Expand)Author
2014-11-17fix mrb_notimplement typoRobert Mosolgo
2014-11-17Implement C API mrb_notimplementksss
2014-11-12add Float::{INFINITY,NAN} if availableYukihiro "Matz" Matsumoto
2014-11-06%zu format is not supported by MSVCHiroshi Mimaki
2014-11-04avoid using rewind(3) to load mrb filesYukihiro "Matz" Matsumoto
2014-11-04read whole mrb file at once to calculate correct padding offset; ref #2630Yukihiro "Matz" Matsumoto
2014-11-04specify alignment specifier for GCC and MSC; ref #2630Yukihiro "Matz" Matsumoto
2014-11-04Fix misaligned access when reading irep; close #2630Yukihiro "Matz" Matsumoto
2014-10-30avoid wrong ArgumentError from mrb_get_args() when surrounding method takes m...Yukihiro "Matz" Matsumoto
2014-10-30add cast to return from aget_index(); ref #2627Yukihiro "Matz" Matsumoto
2014-10-29Handle Array#[float, int] Close #2626mattn
2014-10-29Fix mrb_convert_to_integer.Jun Hiroe
2014-10-28Refactor for_body funcJun Hiroe
2014-10-28Merge pull request #2623 from suzukaze/fix-indentYukihiro "Matz" Matsumoto
2014-10-28Merge pull request #2621 from suzukaze/fix-parse_stringYukihiro "Matz" Matsumoto
2014-10-28Fix indentJun Hiroe
2014-10-28Replace int with mrb_bool in parse_string funcJun Hiroe
2014-10-28Replace int with mrb_bool in local_var_p funcJun Hiroe
2014-10-27Refactor yylex funcJun Hiroe
2014-10-27Refactor mrbc_context_new funcJun Hiroe
2014-10-20instance_methods etc should not include undef'ed method names; based on a pat...Yukihiro "Matz" Matsumoto
2014-10-15fix typo (i->idx)Jan Berdajs
2014-10-02fixed. cygwin-gcc(ver4.8.3) warning in conv_digit()Hiroyuki Matsuzaki
2014-10-02cast MRB_ENV_STACK_LEN to (mrb_int); ref #2600Yukihiro "Matz" Matsumoto
2014-10-02Pacify MSVC warnings for numeric.c, proc.c, and symbol.cHiroshi Mimaki
2014-10-01load.c to use mrb_ro_data_p()Yukihiro "Matz" Matsumoto
2014-09-30mrbconf.h option MRB_USE_ETEXT_EDATA to reduce memory.Yukihiro "Matz" Matsumoto
2014-09-30mrb_sym2name_len() should initialize lenp even when proper symbol does not existYukihiro "Matz" Matsumoto
2014-09-30remove unnecessary trailing comma to remove pre C99 declaration error with -W...Yukihiro "Matz" Matsumoto
2014-09-30O(1) mrb_sym2name_len(); close #2591Yukihiro "Matz" Matsumoto
2014-09-21Fix `mrb_get_args` arguments types found by mruby-clang-plugin.take_cheeze
2014-09-19code reduce by using mrb_get_args("n")Yukihiro "Matz" Matsumoto
2014-09-19`Module#const_defined?` to take second optional argument as CRuby; fix #2593Yukihiro "Matz" Matsumoto
2014-09-19change class argument of mrb_const_defined_at from `struct RClass*` to `mrb_v...Yukihiro "Matz" Matsumoto
2014-09-19const_defined? to check superclasses; ref #2593Yukihiro "Matz" Matsumoto
2014-09-15change mrb_sym type from uint16_t to uint32_tYukihiro "Matz" Matsumoto
2014-09-12constify pointer from RARRAY_PTR to detect potential write barrier bugs.Yukihiro "Matz" Matsumoto
2014-09-09Add inline to str_with_class().Tatsuhiko Kubo
2014-09-08fixed wandering filename problemYukihiro "Matz" Matsumoto
2014-09-05support native byteorder in mrb files; ref 3492beYukihiro "Matz" Matsumoto
2014-09-05condition refactoring in load.cYukihiro "Matz" Matsumoto
2014-09-05add some MRB_API to function prototypesYukihiro "Matz" Matsumoto
2014-09-05use uint16_t instead of short; ref #2568Yukihiro "Matz" Matsumoto
2014-09-04fix strict aliasing rule violationcremno
2014-09-04instance variable name validation based on <ctype.h>; fix #2584Yukihiro "Matz" Matsumoto
2014-09-04wrong iseq conversion flagYukihiro "Matz" Matsumoto
2014-09-04avoid iseq allocation from static irep binary. it reduces 424KB allocation fo...Yukihiro "Matz" Matsumoto
2014-09-04rename a local variable current_node -> nodetype; ref #2583Yukihiro "Matz" Matsumoto
2014-09-03get rid of shadowing variablescremno
2014-09-03Merge pull request #2582 from iij/pr-attr-accessor-save-arenaYukihiro "Matz" Matsumoto