summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2013-08-14Merge pull request #1475 from carsonmcdonald/fixparseerrorYukihiro "Matz" Matsumoto
Return when block argument error
2013-08-14Fix return block argument errorCarson McDonald
2013-08-15remove Class#alloc methodYukihiro "Matz" Matsumoto
2013-08-15use newer DATA APIYukihiro "Matz" Matsumoto
2013-08-15remove Ruby defined Class#newYukihiro "Matz" Matsumoto
2013-08-15remove alloc from Time classYukihiro "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-15add compatibility macro mrb_class_new_instance()Yukihiro "Matz" Matsumoto
2013-08-14Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2013-08-14check d->type before accessing d->type->dfree; #1474 #858Yukihiro "Matz" Matsumoto
2013-08-14define allocation method for Time class; close #1474Yukihiro "Matz" Matsumoto
2013-08-14Merge pull request #1473 from carsonmcdonald/fixclassnewYukihiro "Matz" Matsumoto
Fix Class#new call to inherited and add a couple Class tests
2013-08-14longjmp too far when exception raised from C function called from mrb_funcall()Yukihiro "Matz" Matsumoto
2013-08-14fix a possible address family mismatch.Tomoyuki Sahara
2013-08-13Test for Class#inheritedCarson McDonald
2013-08-13Fix inerited to inheritedCarson McDonald
2013-08-13Add test for Class.new(*args)Carson McDonald
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-13Merge pull request #1469 from carsonmcdonald/removedebugYukihiro "Matz" Matsumoto
Remove debug printf
2013-08-14v4/v6 fallback for TCP.Tomoyuki Sahara
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-13Add two tests for issue #1467Carson McDonald
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-14Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2013-08-14ci->target_class should point to ICLASS, not MODULE; close #1467Yukihiro "Matz" Matsumoto
2013-08-13Merge pull request #1468 from suzukaze/add-array-testYukihiro "Matz" Matsumoto
I add ISO test '15.2.12.3' included modules in Arrray
2013-08-13I add ISO test '15.2.12.3' included modules in ArrrayJun Hiroe
2013-08-13define Class#new in ruby to call #initializeYukihiro "Matz" Matsumoto
2013-08-12Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2013-08-12Merge pull request #1460 from Fleurer/fix-1459Yukihiro "Matz" Matsumoto
fix #1459
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-12use CHAR_BIT instead of bare 8Yukihiro "Matz" Matsumoto
2013-08-12move (void) cast after declarationsYukihiro "Matz" Matsumoto
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-10Silence 'unused parameter' warningsJonas Kulla
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-09Merge pull request #1449 from Fleurer/fix-comment-for-major-gcYukihiro "Matz" Matsumoto
add comments for major GC
2013-08-09add comments for major GCfleuria
2013-08-08Merge pull request #1448 from cremno/bison-3.0-pure_parser-warningYukihiro "Matz" Matsumoto
fix bison 3.0 warning
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-08tests for File.socket? and File.symlink?Tomoyuki Sahara