Uses of Class
com.caucho.quercus.program.Arg

Packages that use Arg
com.caucho.quercus.expr   
com.caucho.quercus.function   
com.caucho.quercus.lib.reflection   
com.caucho.quercus.program   
 

Uses of Arg in com.caucho.quercus.expr
 

Methods in com.caucho.quercus.expr with parameters of type Arg
 Function ExprFactory.createFunction(Location loc, java.lang.String name, FunctionInfo info, Arg[] argList, Statement[] statementList)
          Creates a new function definition.
 Function ExprFactory.createMethodDeclaration(Location loc, InterpretedClassDef cl, java.lang.String name, FunctionInfo info, Arg[] argList)
          Creates a new object method definition.
 Function ExprFactory.createObjectMethod(Location loc, InterpretedClassDef cl, java.lang.String name, FunctionInfo info, Arg[] argList, Statement[] statementList)
          Creates a new object method definition.
 

Uses of Arg in com.caucho.quercus.function
 

Methods in com.caucho.quercus.function that return Arg
 Arg[] AbstractFunction.getArgs()
          Returns the args.
 

Uses of Arg in com.caucho.quercus.lib.reflection
 

Constructors in com.caucho.quercus.lib.reflection with parameters of type Arg
ReflectionParameter(AbstractFunction fun, Arg arg)
           
ReflectionParameter(java.lang.String clsName, AbstractFunction fun, Arg arg)
           
 

Uses of Arg in com.caucho.quercus.program
 

Fields in com.caucho.quercus.program declared as Arg
protected  Arg[] Function._args
           
protected  Arg[] Function._closureUseArgs
           
 

Methods in com.caucho.quercus.program that return Arg
 Arg[] Function.getArgs()
          Returns the args.
 Arg[] Function.getClosureUseArgs()
          Returns the args.
 

Methods in com.caucho.quercus.program with parameters of type Arg
 Value Function.callImpl(Env env, Value[] args, boolean isRef, Arg[] useParams, Value[] useArgs)
           
 void Function.setClosureUseArgs(Arg[] useArgs)
          Returns the args.
 

Constructors in com.caucho.quercus.program with parameters of type Arg
Function(ExprFactory exprFactory, Location location, java.lang.String name, FunctionInfo info, Arg[] args, Statement[] statements)
           
MethodDeclaration(ExprFactory exprFactory, Location location, ClassDef qClass, java.lang.String name, FunctionInfo info, Arg[] argList)
           
ObjectMethod(ExprFactory exprFactory, Location location, InterpretedClassDef quercusClass, java.lang.String name, FunctionInfo info, Arg[] argList, Statement[] statementList)