summaryrefslogtreecommitdiffhomepage
path: root/src/error.c
AgeCommit message (Collapse)Author
2013-10-15better error position displayYukihiro "Matz" Matsumoto
2013-09-03remove Exception#verbose_backtrace; #1495Yukihiro "Matz" Matsumoto
2013-09-02rename debug function nametake_cheeze
2013-09-02support multiple filename in ireptake_cheeze
2013-09-02add verbose_backtracetake_cheeze
2013-08-25add Exception#backtracewanabe
2013-08-13define Class#new in ruby to call #initializeYukihiro "Matz" Matsumoto
2013-07-25refactor out longjmp() to a functionYukihiro "Matz" Matsumoto
2013-07-22change else formattingYukihiro "Matz" Matsumoto
2013-05-20primary mruby fiber implementationYukihiro "Matz" Matsumoto
2013-05-10change mrb_bug to get mrb_state and %S formatterYukihiro "Matz" Matsumoto
2013-05-10change mrb_warn to get mrb_state and %S formatterYukihiro "Matz" Matsumoto
2013-04-25rename every ARGS_XXX to MRB_ARGS_XXX; ref #1206Yukihiro "Matz" Matsumoto
2013-04-04Add `NameError#name`. Fix `NameError.new` and `NameError.initialize`. Enable ↵Masaki Muranaka
2nd argument for `NameError.new` in C API.
2013-03-29Remove API mrb_string_value(). There have mrb_str_to_str() in the core. And ↵Masaki Muranaka
mrb_string_value() is no merit to keep using.
2013-03-29Sort include files. Some redundant includes are removed.Masaki Muranaka
2013-03-28Merge branch 'pr-fix-mrb_format' of https://github.com/monaka/mruby into ↵Yukihiro "Matz" Matsumoto
monaka-pr-fix-mrb_format
2013-03-28Modify mrb_name_error() to use mrb_format().Masaki Muranaka
2013-03-28Fix. In some cases, %S substitutions were failed.Masaki Muranaka
2013-03-28Remove the escape backslash from the result string.Masaki Muranaka
2013-03-27use new mrb_format API from mrb_raisef; its only format specifier is "%S" ↵Yukihiro Matz Matsumoto
(stringify) and takes mrb_value; close #1062
2013-03-27implement mrb_format and mrb_vformatYukihiro Matz Matsumoto
2013-03-25remove unused functions 'mrb_strerrno' and 'mrb_bug_errno'.crimsonwoods
2013-03-24Remove unused mrb_sprintfmattn
2013-03-23Rename API mrb_str_cat2() to mrb_str_cat_cstr(). This is for naming ↵Masaki Muranaka
orthogonality. mrb_str_cat2() is also left for backward compatibility.
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 ↵Masaki Muranaka
strlen().
2013-03-19rename mrb_true_or_false_value() to mrb_bool_value()Yukihiro Matz Matsumoto
2013-03-19Use mrb_true_or_false_value() / in exc_equal().Masaki Muranaka
2013-03-16Remove stdlib.h from mruby.h. It is for portability (care for freestanding ↵Masaki Muranaka
environments). This is a first step. It will be reduced stdlib.h in each files later.
2013-03-15obsolete mrb_object; opposite of bc870ceYukihiro Matz Matsumoto
2013-03-13mrb_str_new2 -> mrb_str_new_cstrTomoyuki Sahara
2013-03-13Merge branch 'master' into pr-systemcallerrorTomoyuki Sahara
2013-03-13mrb_sys_fail raises SystemCallError if we have it.Tomoyuki Sahara
2013-03-12Remove mrb_str_new2(). Use mrb_str_new_cstr() instead.Masaki Muranaka
Make mrb_str_new_cstr() accept NULL pointer. It generates 0byte strings by NULL pointer.
2013-03-05Make some printf enclose in #ifdef ENABLE_STDIO.Masaki Muranaka
2013-03-05Modify API configuration.Masaki Muranaka
C API mrb_p() is always callable. - But it will do nothing when ENABLE_STDIO is not defined. Kernel#__printstr__ is always callable. - But it will do nothing when ENABLE_STDIO is not defined.
2013-03-05Include stdio.h in mrbconf.h instead of C extension sources.Masaki Muranaka
2013-03-03Merge pull request #931 from matsumoto-r/fix_some_indentsYukihiro "Matz" Matsumoto
Adjust some indents
2013-03-03Remove trailing whitespaces. This is just a cosmetic change.Masaki Muranaka
2013-03-02Adjust some indentsMATSUMOTO Ryosuke
2013-02-21print the error message before abort()Yukihiro Matz Matsumoto
2013-01-30Remove unused define and commented out code.Masaki Muranaka
2013-01-14Remove multiple definition of RuntimeError.Masamitsu MURASE
2012-11-02show all callinfo's.Tomoyuki Sahara
2012-10-23mrb_raisef(): new function. Same as previou version of mrb_raise().Masaki Muranaka
mrb_raise(): API modified. It cannot treat variable arguments.
2012-10-04fix indent of mrb_exc_raiseYukihiro Matsumoto
2012-09-12check if an Exception instance has a "mesg" attributeTomoyuki Sahara
fix the issue that "Exception.new.inspect" causes SIGSEGV.
2012-09-09mrb might be intialized incompletely from mrbc; close #457Yukihiro Matsumoto
2012-09-03do no generate lineno info if no filename is specifiedYukihiro Matsumoto