summaryrefslogtreecommitdiffhomepage
path: root/src/class.c
AgeCommit message (Expand)Author
2016-01-22Fix SEGV by stack extension in mrb_get_args()Kouhei Sutou
2015-11-27include changed from by quotes ("") to by brackets (<>); close #3032Yukihiro "Matz" Matsumoto
2015-10-28mrb_get_args should consume argument even when type specifier with bang get n...Yukihiro "Matz" Matsumoto
2015-09-05remove `origin` member to implement prepend from struct RClass; ref #2885Yukihiro "Matz" Matsumoto
2015-09-04Merge branch 'module-prepend' of https://github.com/polyfox/mruby into polyfo...Yukihiro "Matz" Matsumoto
2015-07-16Make include_module_at staticCorey Powell
2015-07-16use mrb_str_cat_str() instead of mrb_str_append()cremno
2015-07-14Remove non-applicable "hack" commentCorey Powell
2015-07-14Applied gc patch to fix ORIGIN ICLASS method table leakCorey Powell
2015-07-14Renamed parameters in include_module_atCorey Powell
2015-07-14mrb_get_args: improve function description about !Yukihiro "Matz" Matsumoto
2015-07-14mrb_get_args: allow d!Yukihiro "Matz" Matsumoto
2015-07-14mrb_get_args: allow A,H,s,z,a,d specifiers to take ! to accept nil.Yukihiro "Matz" Matsumoto
2015-07-13included_modules, origin fixCorey Powell
2015-07-13Bugfix, included_modules would include classesCorey Powell
2015-07-13Removed comment beside method_removedCorey Powell
2015-07-13Added Module#method_removed hookCorey Powell
2015-07-13Fixed Modules not being fully initialized before #initialize was calledCorey Powell
2015-07-13Added changed check to the mrb_include_moduleCorey Powell
2015-07-13Remove some remnant debug codeCorey Powell
2015-07-13Additional patches to make this workCorey Powell
2015-07-13Comment in a refactor to match MRI, but that fails 320 tests.Blaž Hrastnik
2015-07-13origin must be initializedBlaž Hrastnik
2015-07-13Expose insert position, which should be at origin for include and klass forBlaž Hrastnik
2015-07-13Implement Module#prepend.Blaž Hrastnik
2015-07-13allow '!' after 'S' specifier of mrb_get_args() that allow nil.Yukihiro "Matz" Matsumoto
2015-07-13refactor mrb_bob_missing to share raising NoMethodError code; fix #2878Yukihiro "Matz" Matsumoto
2015-06-24Remove unnecessary backticks.Franck Verrot
2015-06-22Fixes #912Jared Breeden
2015-05-29check if outer is a class or modulecremno
2015-05-28remove unnecessary including of <ctype.h>cremno
2015-05-15remove mrb_define_method_vm() functioncremno
2014-12-12Fix crash if #inspect does not return a string valuesdottaka
2014-11-19separate mrb_notimplement() and mrb_notimplement_m(); ref #2636Yukihiro "Matz" Matsumoto
2014-11-17fix mrb_notimplement typoRobert Mosolgo
2014-11-17Implement C API mrb_notimplementksss
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-03Merge pull request #2582 from iij/pr-attr-accessor-save-arenaYukihiro "Matz" Matsumoto
2014-09-03save and restore arena index to prevent arena overflow.Tomoyuki Sahara
2014-09-03Use mrb_str_cat_lit() instead of mrb_str_cat_cstr() for string-literals.Tatsuhiko Kubo
2014-09-02implement attr_reader and attr_writer in C; use cfunc closure to speed-upYukihiro "Matz" Matsumoto
2014-08-29Fix mismatches for MRB_API declarations.Tatsuhiko Kubo
2014-08-21changed to call check_cv_name_str in check_cv_name_sym and adjust indentkkkkkt
2014-08-20Remove empty lines.Tatsuhiko Kubo
2014-08-20Use specified macro(NULL) instead of magic-number.Tatsuhiko Kubo
2014-08-16use mrb_false_value instead of mrb_bool_valuego kikuta
2014-08-16refactor class.c methods (fix indent, remove unneed temp value. )go kikuta