Uses of Class
jparse.VarList

Packages that use VarList
jparse Provides the main classes that parse and evaluate Java programs. 
jparse.expr Provides classes that represent Java expressions. 
jparse.stmt Provides classes that represent Java statements. 
 

Uses of VarList in jparse
 

Constructors in jparse with parameters of type VarList
VarList(VarList list, VarAST declaration)
          Create a new list of variables by adding a declaration to an existing list
VarList(VarList list1, VarList list2)
          Create a new list of variables by merging two other lists
VarList(VarList list1, VarList list2, boolean assign)
          Create a new list of variables by merging two other lists, and optionally changing reads to writes for the first list
VarList(VarList list1, VarList list2, VarList list3)
          Create a new list of variables by merging three other lists
VarList(VarList[] lists)
          Create a new list of variables by merging an array of lists
 

Uses of VarList in jparse.expr
 

Methods in jparse.expr that return VarList
 VarList VarAST.getVarList()
           
 VarList UnaryArithAST.getVarList()
           
 VarList TypecastAST.getVarList()
           
 VarList TypeAST.getVarList()
           
 VarList ThisLiteralAST.getVarList()
           
 VarList StringLiteralAST.getVarList()
           
 VarList ShiftAST.getVarList()
           
 VarList ParenthesizedAST.getVarList()
           
 VarList NumLiteralAST.getVarList()
           
 VarList NullLiteralAST.getVarList()
           
 VarList NewAST.getVarList()
           
 VarList MethodCallAST.getVarList()
           
 VarList ListAST.getVarList()
           
 VarList InitializerAST.getVarList()
           
 VarList IndexAST.getVarList()
           
 VarList IdentifierAST.getVarList()
           
 VarList FloatLiteralAST.getVarList()
           
abstract  VarList ExpressionAST.getVarList()
          Get the list of variables read and written by this expression
 VarList ConditionalAST.getVarList()
           
 VarList CharLiteralAST.getVarList()
           
 VarList BooleanLiteralAST.getVarList()
           
 VarList BooleanAST.getVarList()
           
 VarList BitwiseAST.getVarList()
           
 VarList AssignAST.getVarList()
           
 VarList ArrayInitAST.getVarList()
           
 VarList ArithmeticAST.getVarList()
           
 

Uses of VarList in jparse.stmt
 

Methods in jparse.stmt that return VarList
 VarList WhileAST.getVarList()
           
 VarList TryAST.getVarList()
           
 VarList ThrowAST.getVarList()
           
 VarList SynchronizedAST.getVarList()
           
 VarList SwitchAST.getVarList()
           
abstract  VarList StatementAST.getVarList()
          Get the list of variables read, written, and declared by this statement
 VarList ReturnAST.getVarList()
           
 VarList LabelAST.getVarList()
           
 VarList IfElseAST.getVarList()
           
 VarList ForAST.getVarList()
           
 VarList ExpressionAST.getVarList()
           
 VarList EmptyAST.getVarList()
           
 VarList DoWhileAST.getVarList()
           
 VarList DeclarationAST.getVarList()
           
 VarList ContinueAST.getVarList()
           
 VarList CompoundAST.getVarList()
           
 VarList ClassAST.getVarList()
           
 VarList CatchAST.getVarList()
           
 VarList CaseGroupAST.getVarList()
           
 VarList BreakAST.getVarList()