| Age | Commit message (Collapse) | Author |
|
arguments. This fix makes the following code workable:
Expected:
class MRBTime < Time; def self.new; super(2012, 4, 21); end; end
MRBTime.new # => Sat Apr 21 00:00:00 2012
Actual:
class MRBTime < Time; def self.new; super(2012, 4, 21); end; end
MRBTime.new # => can't convert nil into Integer (TypeError)
|
|
|
|
Mostly by renaming the shadowing variable.
If a shadowing variable was deleted,
the shadowed one can be used instead.
|
|
|
|
|
|
It's defined in mruby/version.h which gets included in mruby.h, so it's
safe to use.
|
|
Class method defined in singleton class should be evaluated in class
context not singleton class context.
fix #2515
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#2326
|
|
|
|
|
|
|
|
src/vm.c fix operation doc
[ci skip]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
formal arguments and optional arguments exist; close #2144
|
|
|
|
close #2129
|
|
|
|
|
|
|
|
|
|
|
|
|
|
It does the same as `mrb_str_cat`.
|
|
|
|
|
|
|