summaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)Author
2013-09-03remove Exception#verbose_backtrace; #1495Yukihiro "Matz" Matsumoto
2013-09-03fix line number after first filetake_cheeze
2013-09-03improve checkings in debug.ctake_cheeze
2013-09-02don't use RArray in filename table generatingtake_cheeze
2013-09-02declare variable outside fortake_cheeze
2013-09-02better line type selectortake_cheeze
2013-09-02rename debug function nametake_cheeze
2013-09-02reduce node sizetake_cheeze
2013-09-02use uint16_t for line typetake_cheeze
2013-09-02support multiple filename in ireptake_cheeze
2013-09-02print singleton class name in verbose backtracetake_cheeze
2013-09-02add verbose_backtracetake_cheeze
2013-09-02fix crash in 2nd call to vsnprintftake_cheeze
2013-08-31revert #1470; fix #1493Yukihiro "Matz" Matsumoto
2013-08-26Merge branch 'mruby' into pr-typeerror-string-start-end-withTomoyuki Sahara
Conflicts: mrbgems/mruby-string-ext/src/string.c mrbgems/mruby-string-ext/test/string.rb
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-26do not use mrb_alloca() that keeps memory until mrb_state freedYukihiro "Matz" Matsumoto
2013-08-26add cast to void*Yukihiro "Matz" Matsumoto
2013-08-26undef print_backtrace_i() unless ENABLE_STDIOYukihiro "Matz" Matsumoto
2013-08-26Merge branch 'get-backtrace' of https://github.com/wanabe/mruby into ↵Yukihiro "Matz" Matsumoto
wanabe-get-backtrace
2013-08-25add Exception#backtracewanabe
2013-08-24Fix a problem of 'z' option and shared stringh2so5
2013-08-23add mrb_string_type().Tomoyuki Sahara
2013-08-19Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2013-08-18remove unnecessary returnYukang
2013-08-15Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2013-08-14Fix return block argument errorCarson McDonald
2013-08-15remove Class#alloc methodYukihiro "Matz" Matsumoto
2013-08-15redesign mruby/data.h API; use DATA_PTR() for raw data pointer, ↵Yukihiro "Matz" Matsumoto
DATA_GET_PTR() to type safe retrieval (TypeError will be raised), DATA_CHECK_GET_PTR() to get nil if type mismatched
2013-08-15implement Class.new in C againYukihiro "Matz" Matsumoto
2013-08-14check d->type before accessing d->type->dfree; #1474 #858Yukihiro "Matz" Matsumoto
2013-08-14longjmp too far when exception raised from C function called from mrb_funcall()Yukihiro "Matz" Matsumoto
2013-08-13Merge pull request #1472 from JackDanger/jackdanger/add-line-numbers-to-irbYukihiro "Matz" Matsumoto
Adding line numbers to the output of mirb.
2013-08-13Merge pull request #1470 from carsonmcdonald/morefixfor1467Yukihiro "Matz" Matsumoto
Tests and another fix for issue #1467
2013-08-13Adding line numbers to the output of mirb.Jack Danger Canty
Before: > "hi" hi > d (mirb):1: undefined method 'd' for main (NoMethodError) > d (mirb):1: undefined method 'd' for main (NoMethodError) > "hi" hi > "#{'}" line 1: unterminated string meets end of file After > "hi" hi > d (mirb):2: undefined method 'd' for main (NoMethodError) > d (mirb):3: undefined method 'd' for main (NoMethodError) > "hi" hi > "#{'}" line 5: unterminated string meets end of file
2013-08-13This check and class change is redundant because it is done in ↵Carson McDonald
class.c#mrb_include_module
2013-08-13Remove debug printfCarson McDonald
2013-08-14ci->target_class should point to ICLASS, not MODULE; close #1467Yukihiro "Matz" Matsumoto
2013-08-13define Class#new in ruby to call #initializeYukihiro "Matz" Matsumoto
2013-08-12fix #1459fleuria
gen_vmassignment() missed a pop() in a conditional branch, but we have to keep each conditional branch 's stack depth the same all the time when it left execution.
2013-08-11Merge pull request #1458 from suzukaze/fix-iso-no-in-string-classYukihiro "Matz" Matsumoto
I fix ISO no in String class in comparison with ISO_IEC_30170_2012(E)
2013-08-11I fix ISO No in String class in comparison with ↵Jun Hiroe
ISO_IEC_30170_2012(E)-Charactor_PDF_document.pdf
2013-08-09Merge pull request #1450 from Fleurer/cleanup-warninigsYukihiro "Matz" Matsumoto
clean up the warnings when GC_PROFILE is set
2013-08-09def statement and define_method now return symbol a la Ruby2.1Yukihiro "Matz" Matsumoto
2013-08-09clean up the warnings when GC_PROFILE is onfleuria
2013-08-09remove duplicated incremental_gc_until() in generational GC; #1449Yukihiro "Matz" Matsumoto
2013-08-09add comments for major GCfleuria
2013-08-09parse.y: fixed bison 3.0 warningCremno
YACC src/parse.y -> build/host/src/y.tab.c src/parse.y:936.1-12: warning: deprecated directive, use ‘%pure-parser’ [-Wdeprecated] %pure_parser
2013-08-08finish half-baked GC cycle before starting full GC; #1447Yukihiro "Matz" Matsumoto
2013-08-08allow turning off GC generational mode by default by ↵Yukihiro "Matz" Matsumoto
MRB_GC_TURN_OFF_GENERATIONAL; #1447