|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Arity | |
---|---|
org.jruby.ast | |
org.jruby.ast.types | |
org.jruby.compiler | |
org.jruby.compiler.impl | |
org.jruby.internal.runtime.methods | |
org.jruby.runtime | |
org.jruby.runtime.callback |
Uses of Arity in org.jruby.ast |
---|
Methods in org.jruby.ast that return Arity | |
---|---|
Arity |
ArgsNode.getArity()
|
Arity |
AssignableNode.getArity()
Almost all assignables are only assigned a single value. |
Arity |
InstVarNode.getArity()
A variable accessor takes no arguments. |
Arity |
MultipleAsgnNode.getArity()
Number of arguments is dependent on headNodes size |
Arity |
ZSuperNode.getArity()
'super' can take any number of arguments. |
Arity |
ZeroArgNode.getArity()
Zero arguments... |
Uses of Arity in org.jruby.ast.types |
---|
Methods in org.jruby.ast.types that return Arity | |
---|---|
Arity |
IArityNode.getArity()
|
Uses of Arity in org.jruby.compiler |
---|
Methods in org.jruby.compiler with parameters of type Arity | |
---|---|
void |
Compiler.processRequiredArgs(Arity arity,
int totalArgs)
|
Uses of Arity in org.jruby.compiler.impl |
---|
Methods in org.jruby.compiler.impl that return Arity | |
---|---|
Arity |
StandardASMCompiler.popArity()
|
Methods in org.jruby.compiler.impl with parameters of type Arity | |
---|---|
void |
StandardASMCompiler.processRequiredArgs(Arity arity,
int totalArgs)
|
void |
StandardASMCompiler.pushArity(Arity arity)
|
Uses of Arity in org.jruby.internal.runtime.methods |
---|
Methods in org.jruby.internal.runtime.methods that return Arity | |
---|---|
Arity |
AliasMethod.getArity()
|
Arity |
CompiledMethod.getArity()
|
Arity |
DefaultMethod.getArity()
|
Arity |
DynamicMethod.getArity()
|
Arity |
FullFunctionCallbackMethod.getArity()
|
Arity |
FullFunctionReflectedMethod.getArity()
|
Arity |
FullInvocationMethod.getArity()
|
Arity |
ProcMethod.getArity()
|
Arity |
SimpleCallbackMethod.getArity()
|
Arity |
SimpleInvocationMethod.getArity()
|
Arity |
SimpleReflectedMethod.getArity()
|
Arity |
YARVMethod.getArity()
|
Methods in org.jruby.internal.runtime.methods with parameters of type Arity | |
---|---|
DynamicMethod |
DumpingInvocationMethodFactory.getCompiledMethod(RubyModule implementationClass,
java.lang.Class type,
java.lang.String method,
Arity arity,
Visibility visibility,
SinglyLinkedList cref,
StaticScope scope)
|
DynamicMethod |
InvocationMethodFactory.getCompiledMethod(RubyModule implementationClass,
java.lang.Class type,
java.lang.String method,
Arity arity,
Visibility visibility,
SinglyLinkedList cref,
StaticScope scope)
|
DynamicMethod |
ReflectionMethodFactory.getCompiledMethod(RubyModule implementationClass,
java.lang.Class type,
java.lang.String methodName,
Arity arity,
Visibility visibility,
SinglyLinkedList cref,
StaticScope scope)
|
DynamicMethod |
DumpingInvocationMethodFactory.getFullMethod(RubyModule implementationClass,
java.lang.Class type,
java.lang.String method,
Arity arity,
Visibility visibility)
|
DynamicMethod |
DumpingInvocationMethodFactory.getSimpleMethod(RubyModule implementationClass,
java.lang.Class type,
java.lang.String method,
Arity arity,
Visibility visibility)
|
Constructors in org.jruby.internal.runtime.methods with parameters of type Arity | |
---|---|
CompiledMethod(RubyModule implementationClass,
Arity arity,
Visibility visibility,
SinglyLinkedList cref,
StaticScope staticScope)
|
|
FullFunctionReflectedMethod(RubyModule implementationClass,
java.lang.Class type,
java.lang.String methodName,
Arity arity,
Visibility visibility)
|
|
FullInvocationMethod(RubyModule implementationClass,
Arity arity,
Visibility visibility)
|
|
SimpleInvocationMethod(RubyModule implementationClass,
Arity arity,
Visibility visibility)
|
|
SimpleReflectedMethod(RubyModule implementationClass,
java.lang.Class type,
java.lang.String methodName,
Arity arity,
Visibility visibility)
|
Uses of Arity in org.jruby.runtime |
---|
Fields in org.jruby.runtime declared as Arity | |
---|---|
protected Arity |
Block.arity
|
static Arity |
Arity.NO_ARGUMENTS
|
static Arity |
Arity.ONE_ARGUMENT
|
static Arity |
Arity.ONE_REQUIRED
|
static Arity |
Arity.OPTIONAL
|
static Arity |
Arity.THREE_ARGUMENTS
|
static Arity |
Arity.THREE_REQUIRED
|
static Arity |
Arity.TWO_ARGUMENTS
|
static Arity |
Arity.TWO_REQUIRED
|
Methods in org.jruby.runtime that return Arity | |
---|---|
Arity |
Block.arity()
What is the arity of this block? |
Arity |
CallBlock.arity()
|
Arity |
CompiledBlock.arity()
|
Arity |
MethodBlock.arity()
What is the arity of this block? |
static Arity |
Arity.createArity(int value)
|
static Arity |
Arity.fixed(int arity)
|
static Arity |
Arity.noArguments()
|
static Arity |
Arity.optional()
|
static Arity |
Arity.procArityOf(Node node)
|
static Arity |
Arity.required(int minimum)
|
static Arity |
Arity.singleArgument()
|
static Arity |
Arity.twoArguments()
|
Methods in org.jruby.runtime with parameters of type Arity | |
---|---|
abstract DynamicMethod |
MethodFactory.getCompiledMethod(RubyModule implementationClass,
java.lang.Class type,
java.lang.String method,
Arity arity,
Visibility visibility,
SinglyLinkedList cref,
StaticScope scope)
|
Constructors in org.jruby.runtime with parameters of type Arity | |
---|---|
CallBlock(IRubyObject self,
RubyModule imClass,
Arity arity,
BlockCallback callback,
ThreadContext ctx)
|
|
CompiledBlock(ThreadContext context,
IRubyObject self,
Arity arity,
DynamicScope dynamicScope,
CompiledBlockCallback callback)
|
Uses of Arity in org.jruby.runtime.callback |
---|
Methods in org.jruby.runtime.callback that return Arity | |
---|---|
Arity |
Callback.getArity()
|
Arity |
FastInvocationCallback.getArity()
|
Arity |
InvocationCallback.getArity()
|
Arity |
ReflectionCallback.getArity()
Returns the arity of the wrapped Ruby method. |
Methods in org.jruby.runtime.callback with parameters of type Arity | |
---|---|
void |
FastInvocationCallback.setArity(Arity arity)
|
void |
InvocationCallback.setArity(Arity arity)
|
Constructors in org.jruby.runtime.callback with parameters of type Arity | |
---|---|
ReflectionCallback(java.lang.Class type,
java.lang.String methodName,
java.lang.Class[] argumentTypes,
boolean isRestArgs,
boolean isStaticMethod,
Arity arity,
boolean fast)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |