Files
mruby-mruby/src
sdottaka 820f6d147f Fix an error when calling a method implemented in C by super() with 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)
2014-11-19 13:29:22 +09:00
..
2012-04-20 09:39:03 +09:00
2014-10-28 23:31:25 +09:00
2013-06-17 04:49:27 +08:00
2014-11-06 13:30:42 +09:00
2013-06-17 04:49:46 +08:00
2014-08-27 19:13:40 +09:00
2014-06-23 20:06:17 +09:00
2013-03-20 23:41:06 +09:00
2013-03-21 07:43:31 +09:00
2014-11-04 14:05:36 +09:00
2014-03-16 07:44:44 +09:00
2014-10-29 01:30:30 +09:00
2014-10-28 01:52:50 +09:00