All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jruby.internal.runtime.methods.IRMethodArgs Maven / Gradle / Ivy

There is a newer version: 9.4.12.0
Show newest version
package org.jruby.internal.runtime.methods;

import org.jruby.runtime.ArgumentDescriptor;
import org.jruby.runtime.Signature;

/**
 * Represents a method object that can return a Signature and an array of ArgumentDescriptors.
 */
public interface IRMethodArgs {
    // FIXME: Should get pushed to DynamicMethod

    /**
     * Get the Signature for this method.
     */
    public Signature getSignature();

    /**
     * Get the array of ArgumentDescriptors that represent the arguments to this method.
     */
    public ArgumentDescriptor[] getArgumentDescriptors();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy