summaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)Author
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
2013-08-07Merge pull request #1445 from cremno/no_strcpy_and_strcatYukihiro "Matz" Matsumoto
don't use str{cpy,cat} in mruby and mrbc
2013-08-07class.c and numeric.c: fixed MSVC warningsCremno
2013-08-07parse.y: don't use strcatCremno
2013-08-07Merge pull request #1444 from Fleurer/issue1442Yukihiro "Matz" Matsumoto
fix #1442
2013-08-07fix #1442fleuria
in the marking root phase, we only marked the root context, but leaving the current context unmarked. when we execute a fiber, the current context would be changed and trigger this issue.
2013-08-07return statement should terminate execution of a method defined by define_methodYukihiro "Matz" Matsumoto
2013-08-07rename mrb_value_p() to mrb_ptr() since _p means predicate in mruby sourceYukihiro "Matz" Matsumoto
2013-08-04revert one of the API changes: MRB_SET_VALUE_P no longer usedYuichi Nishiwaki
2013-08-03add read barrier to value.pYuichi Nishiwaki
API changes: - value.p must be accessed via mrb_value_p macro - value.p must be mutated via MRB_SET_VALUE_P macro
2013-08-02End loop if nextc is -1Carson McDonald
2013-08-01Merge pull request #1426 from Fleurer/clear-all-oldYukihiro "Matz" Matsumoto
add comments for clear_all_old()
2013-08-01revise the comment in mrb_full_gc()fleuria
the old comment "clean all the black object as old" looks confusing, it looks like "transform black object to old object", but indeed black is old,
2013-08-01add comment for clear_all_old()fleuria
2013-08-01remove unused inspect_rangeYukihiro "Matz" Matsumoto
2013-08-01ci->target_class should be updated as well; #1418Yukihiro "Matz" Matsumoto
2013-07-31move mrb_gc_arena_restore() after cipop(); a bug found by Kilo KawaiYukihiro "Matz" Matsumoto
2013-07-31stop storing target_class info for C defined methodsYukihiro "Matz" Matsumoto
2013-07-31remove unused mrb_proc_new_with_target()Yukihiro "Matz" Matsumoto
2013-07-30Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2013-07-30forget to re-initialize target_class for top-level eval; close #1418Yukihiro "Matz" Matsumoto
2013-07-29Merge pull request #1421 from carsonmcdonald/fixfor1419Yukihiro "Matz" Matsumoto
Remove pop that was done when not a return val
2013-07-28Remove pop that was done when not a return valCarson McDonald
2013-07-27Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2013-07-25refactor out longjmp() to a functionYukihiro "Matz" Matsumoto
2013-07-25replace assert with mrb_assertfleuria
2013-07-25replace gc_assert with mrb_assertfleuria
2013-07-24remove an unused local variableYukihiro "Matz" Matsumoto
2013-07-24revise gc_mark_gray_list() not to cause SEGV on Ubuntu 32bitYukihiro "Matz" Matsumoto
2013-07-24restore once removed mrb_garbage_collect()Yukihiro "Matz" Matsumoto