Sha256: ef10a7444db126d908f18ec54efe934965f4f871148f2d5576ccd57c877ea0e0
Contents?: true
Size: 524 Bytes
Versions: 135
Compression:
Stored size: 524 Bytes
Contents
/** * Copyright 2007 Ye Zheng * Distributed under the BSD License */ package com.xruby.runtime.lang; import com.xruby.runtime.builtin.RubyArray; public abstract class RubyVarArgMethod extends RubyMethod { public RubyVarArgMethod() { super(-1, false, 0); } public RubyVarArgMethod(int argc, boolean has_asterisk_parameter, int default_argc) { super(argc, has_asterisk_parameter, default_argc); } protected abstract RubyValue run(RubyValue receiver, RubyArray args, RubyBlock block); }
Version data entries
135 entries across 135 versions & 2 rubygems