summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2016-12-03Needed to apply block from safe-navigation operators; fix #3310Yukihiro "Matz" Matsumoto
2016-12-03Print NODE_SCALL (&.) from mrb_parser_dump()Yukihiro "Matz" Matsumoto
2016-12-03codegen: avoid unnecessary OP_MOVE after CASEYukihiro "Matz" Matsumoto
2016-12-03Merge pull request #3319 from bouk/apost-splattYukihiro "Matz" Matsumoto
Fix segfault when using result of rest assignment
2016-12-03Check before retrieving struct RRange pointer; fix #3320Yukihiro "Matz" Matsumoto
range->edges may be NULL for example when #initialize_copy removed.
2016-12-03Merge pull request #3317 from bouk/missing-to-sYukihiro "Matz" Matsumoto
Use mrb_ptr instead of mrb_cptr in Kernel#to_s
2016-12-03Merge pull request #3315 from ksss/enumerator-with_indexYukihiro "Matz" Matsumoto
Fix some incompatibility for Enumerator#with_index
2016-12-03Merge pull request #3321 from clayton-shopify/fix-proc-crash-upstreamYukihiro "Matz" Matsumoto
Fix segfault in mrb_proc_copy.
2016-12-03Merge pull request #3316 from clayton-shopify/fix-array-size-3Yukihiro "Matz" Matsumoto
Fix more integer overflows.
2016-12-02Fix segfault in mrb_proc_copy.Clayton Smith
2016-12-01Fix segfault when using result of rest assignmentBouke van der Bijl
Reported by https://hackerone.com/haquaman
2016-12-01Use mrb_ptr instead of mrb_cptr in Kernel#to_sBouke van der Bijl
This is to avoid segfault when WORD_BOXING is enabled Reported by https://hackerone.com/brakhane
2016-12-01Fix stack move segfaulting in OP_ARYCATBouke van der Bijl
Reported by https://hackerone.com/haquaman Testcase (couldn't get it to work as a test): def nil.b b *nil end nil.b
2016-12-01Fix more integer overflows.Clayton Smith
2016-12-01avoid comparison between signed and unsigned integer; ref #3312Yukihiro "Matz" Matsumoto
2016-12-01Merge pull request #3312 from nobu/feature/multi-unicode-escapeYukihiro "Matz" Matsumoto
Feature/multi unicode escape
2016-12-01Merge pull request #3313 from yhara/add-testYukihiro "Matz" Matsumoto
Add test for recently fixed bugs
2016-12-01Fix compile error by #3309Yukihiro "Matz" Matsumoto
2016-12-01Support multiple elements \u syntaxNobuyoshi Nakada
2016-12-01Extract read_escape_unicode from read_escapeNobuyoshi Nakada
2016-12-01Fix assertion argument ordersNobuyoshi Nakada
2016-12-01Fix compile error by #3309Nobuyoshi Nakada
2016-12-01Support svalueksss
2016-12-01Support nil argument as no argumentksss
2016-12-01Add test for recently fixed bugsYutaka HARA
2016-12-01Merge pull request #3309 from clayton-shopify/fix-array-size-2Yukihiro "Matz" Matsumoto
Prevent array size calculation overflows.
2016-12-01Merge pull request #3311 from ksss/enum-generatorYukihiro "Matz" Matsumoto
Support Enumerable methods
2016-12-01Support Enumerable methodsksss
2016-11-30Prevent array size calculation overflows.Clayton Smith
2016-11-30Fixed too much void_expr_error(); fix #3307Yukihiro "Matz" Matsumoto
2016-11-30Merge branch 'ksss-enumerator-lazy'Yukihiro "Matz" Matsumoto
2016-11-30resolve conflict; ref #3306Yukihiro "Matz" Matsumoto
2016-11-30Merge pull request #3305 from ksss/lazy-to_enumYukihiro "Matz" Matsumoto
Implement Enumerable::Lazy#to_enum and enum_for
2016-11-30Change Lazy class outerksss
Lazy class should be under Enumerator instead of Enumerable
2016-11-30Implement Enumerable::Lazy#to_enum and enum_forksss
2016-11-30Prohibit instantiation of immediate objectsYukihiro "Matz" Matsumoto
2016-11-30Merge pull request #3278 from bouk/dup-classYukihiro "Matz" Matsumoto
Copy over INSTANCE_TT when duping class
2016-11-30add a test for #3296Yukihiro "Matz" Matsumoto
2016-11-30should not refer Struct class by name; fix #3296Yukihiro "Matz" Matsumoto
2016-11-30check ttype before object allocation; fix #3294Yukihiro "Matz" Matsumoto
2016-11-30Merge pull request #3304 from clayton-shopify/fix-array-sizeYukihiro "Matz" Matsumoto
Use size_t to calculate bytes needed for array.
2016-11-30Merge pull request #3303 from bouk/empty-nilYukihiro "Matz" Matsumoto
Interpret argument in 'f ()' as nil instead of nothing
2016-11-29Use size_t to calculate bytes needed for array.Clayton Smith
2016-11-29Interpret argument in 'f ()' as nil instead of nothingBouke van der Bijl
2016-11-29ary_concat: support self concatenation; fix #3302Yukihiro "Matz" Matsumoto
2016-11-28pre-allocate arena overflow errorYukihiro "Matz" Matsumoto
2016-11-27parse.y: use opt_paren_args to simplify yield ruleYukihiro "Matz" Matsumoto
2016-11-27Added Exception check in mrb_exc_set(); close #3292Yukihiro "Matz" Matsumoto
PR #3293 just checks for NoMethodError.
2016-11-27Merge pull request #3301 from dabroz/feature-64-bit-wordYukihiro "Matz" Matsumoto
Safeguard against using MRB_INT64 with MRB_WORD_BOXING in 32-bit mode
2016-11-27replace _cstr by _lit for litral C strings; ref #3300Yukihiro "Matz" Matsumoto