summaryrefslogtreecommitdiffhomepage
path: root/src/class.c
AgeCommit message (Collapse)Author
2013-10-15define Module#const_missingYukihiro "Matz" Matsumoto
2013-10-05Disable implicit integer conversion in mrb_get_argsh2so5
2013-09-23eliminate use of traditional intern API (mrb_intern()) completelyYuichi Nishiwaki
2013-09-21rename voidp to cptrYukihiro "Matz" Matsumoto
2013-09-02add verbose_backtracetake_cheeze
2013-08-26Merge pull request #1487 from h2so5/z-option-with-shared-stringYukihiro "Matz" Matsumoto
Fix a problem of 'z' option and shared string
2013-08-24Fix a problem of 'z' option and shared stringh2so5
2013-08-15remove Class#alloc methodYukihiro "Matz" Matsumoto
2013-08-15implement Class.new in C againYukihiro "Matz" Matsumoto
2013-08-13define Class#new in ruby to call #initializeYukihiro "Matz" Matsumoto
2013-08-09def statement and define_method now return symbol a la Ruby2.1Yukihiro "Matz" Matsumoto
2013-08-07class.c and numeric.c: fixed MSVC warningsCremno
2013-08-07return statement should terminate execution of a method defined by define_methodYukihiro "Matz" Matsumoto
2013-08-01Merge remote-tracking branch 'upstream/master' into lang-docDaniel Bovensiepen
2013-07-31stop storing target_class info for C defined methodsYukihiro "Matz" Matsumoto
2013-07-22change else formattingYukihiro "Matz" Matsumoto
2013-07-15Repalace int with mrb_bool because a return value is boolean.Jun Hiroe
2013-07-13singleton class super initialize failedYukihiro "Matz" Matsumoto
2013-07-13make_metaclass should skip MRB_TT_ICLASS; close #1369Yukihiro "Matz" Matsumoto
2013-07-13make_metaclass should skip MRB_TT_ICLASS; close #1369Yukihiro "Matz" Matsumoto
2013-07-11Replace mrb_intern() with mrb_intern_cstr().Jun Hiroe
2013-07-11add dummy visibility methods (public/protected/private) that do nothing; ref ↵Yukihiro "Matz" Matsumoto
#1357
2013-07-10mrb_bob_missing to use mrb_get_args("n")Yukihiro "Matz" Matsumoto
2013-07-10mrb_mod_alias to use mrb_get_args("nn")Yukihiro "Matz" Matsumoto
2013-07-07call Class#inherited when Class.new(klass)hoge
2013-07-03Add comments in mrb_get_args() func.Jun Hiroe
2013-07-03Refactor mrb_define_class() method in class.c.cJun Hiroe
2013-07-01Add mrb_class_get_under()h2so5
2013-06-27fix unnecessary exception in mrb_get_args with "z" format.mimaki
2013-06-15Merge upstreamDaniel Bovensiepen
2013-06-23Add ISO commentsDaniel Bovensiepen
2013-06-09Singleton raises TypeError on #newDaniel Bovensiepen
2013-06-09Remove incorrect removal of ivCarson McDonald
2013-06-08Raise a NameError when symbol isn't found.Carson McDonald
2013-06-08bob doesn't have new so don't undefCarson McDonald
2013-05-20primary mruby fiber implementationYukihiro "Matz" Matsumoto
2013-05-19Change fortmat to format.Carson McDonald
2013-05-18removed unused variables / assigns never usedJulien Ammous
2013-05-10change mrb_warn to get mrb_state and %S formatterYukihiro "Matz" Matsumoto
2013-04-30the receiver should be included in ancestors even when it's a singleton classYukihiro "Matz" Matsumoto
2013-04-29Revert file access mode to 0644.Masaki Muranaka
2013-04-28add extern funcs declaration and casts for cimpiling C++ compilerarton
2013-04-27detect cyclic-include in Module#includeskandhas
2013-04-26small cosmetic refactoringYukihiro "Matz" Matsumoto
2013-04-26rename mrb_interned API functionsYukihiro "Matz" Matsumoto
2013-04-26Merge branch 'suppress_intern' of https://github.com/crimsonwoods/mruby into ↵Yukihiro "Matz" Matsumoto
crimsonwoods-suppress_intern
2013-04-24Merge pull request #1211 from skandhas/pr-fix-Module-ancestorsYukihiro "Matz" Matsumoto
fix the behavior of Module#ancestors
2013-04-25fix Module#ancestors and update testskandhas
2013-04-25modify functions to suppress symbol registration into intern pool.crimsonwoods
2013-04-25rename every ARGS_XXX to MRB_ARGS_XXX; ref #1206Yukihiro "Matz" Matsumoto