| Age | Commit message (Collapse) | Author |
|
|
|
|
|
Extended Module#const_get to support class paths
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
mruby-1.3.0
|
|
|
|
|
|
It's incompatible with CRuby, but it is required for mruby because
it cannot detect `break` outside of loops in the parsing time, but
in the code generation time where it cannot raise `SyntaxError`.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class; fix #3575
|
|
|
|
|
|
|
|
More compatibility to CRuby.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
String#index shouldn't return nil when "".index ""
|
|
|
|
|
|
Internal method_missing works without problems.
|
|
More compatibility to CRuby.
Updated tests that assume old mruby behavior.
|
|
|
|
Proc shouldn't have `initialize` method
|
|
|
|
|
|
Fix #3352
|
|
|
|
Fix #3356
|
|
|
|
|
|
Don't generate code for NODE_NEGATE if the result isn't used
Reported by https://hackerone.com/haquaman
|
|
|
|
The issue is that when there are more than 126 arguments an array needs
to be created to pass the arguments on with.
Reported by https://hackerone.com/revskills
|