summaryrefslogtreecommitdiffhomepage
path: root/src/class.c
AgeCommit message (Expand)Author
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
2013-04-24Merge pull request #1211 from skandhas/pr-fix-Module-ancestorsYukihiro "Matz" Matsumoto
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
2013-04-22Use mrb_bool for the 'b' format specifier of mrb_get_argsh2so5
2013-04-20put spaces after if/whileYukihiro "Matz" Matsumoto
2013-04-20Refactor kernel.c and class.ch2so5
2013-04-05method function should return mrb_valueYukihiro "Matz" Matsumoto
2013-04-05raise NotImplementedError from Module.constants (15.2.2.3.1); close #1125Yukihiro "Matz" Matsumoto
2013-04-04Use mrb_name_error() as possible.Masaki Muranaka
2013-04-02add Module#constants (15.2.2.4.24)Yukihiro "Matz" Matsumoto
2013-03-29Sort include files. Some redundant includes are removed.Masaki Muranaka
2013-03-28Modify mrb_name_error() to use mrb_format().Masaki Muranaka
2013-03-27use new mrb_format API from mrb_raisef; its only format specifier is "%S" (st...Yukihiro Matz Matsumoto
2013-03-26remove all MRB_TT_MAIN from sourceYukihiro Matz Matsumoto
2013-03-26fixed build error on VS2012 toolchains.kurodash
2013-03-24Adjusted indent, space and tabMATSUMOTO Ryosuke
2013-03-23rename mrb_ptr_as_string() to mrb_ptr_to_str()Yukihiro Matz Matsumoto
2013-03-23Remove *printf() that have "%p" format as possible. Use tomrb_ptr_as_string()...Masaki Muranaka
2013-03-23Merge pull request #1050 from monaka/pr-cleanup-string.c-20130323Yukihiro "Matz" Matsumoto
2013-03-23Set MRB_TT_MODULE to Module.Masaki Muranaka
2013-03-23Use mrb_str_cat() instead of mrb_str_cat2() as possible.Masaki Muranaka
2013-03-22Use mrb_intern2() instead of mrb_intern(). This is for avoiding overhead by s...Masaki Muranaka
2013-03-19rename mrb_true_or_false_value() to mrb_bool_value()Yukihiro Matz Matsumoto
2013-03-19Use mrb_true_or_false_value() / in mrb_mod_eqq().Masaki Muranaka
2013-03-19Use mrb_true_or_false_value() / in mrb_mod_const_defined().Masaki Muranaka
2013-03-19Use mrb_true_or_false_value() / in mrb_mod_method_defined().Masaki Muranaka
2013-03-19Use mrb_true_or_false_value() / in mrb_mod_cvar_defined().Masaki Muranaka
2013-03-19Use mrb_true_or_false_value() / in mrb_bob_not().Masaki Muranaka
2013-03-18fix the type of argument named 'aspec'.crimsonwoods
2013-03-16Remove string.h in khash.hMasaki Muranaka
2013-03-16fix segmentation fault in BasicObject#inspecttakkaw
2013-03-15rename mrb_basic to mrb_basic_ptr; close #1011Yukihiro Matz Matsumoto
2013-03-15obsolete mrb_object; opposite of bc870ceYukihiro Matz Matsumoto
2013-03-14Add break to default case in switch statementkano4