Uses of Class
com.caucho.quercus.expr.VarExpr

Packages that use VarExpr
com.caucho.quercus.expr   
com.caucho.quercus.statement   
 

Uses of VarExpr in com.caucho.quercus.expr
 

Subclasses of VarExpr in com.caucho.quercus.expr
 class VarTempExpr
          Represents a temp PHP variable expression.
 

Methods in com.caucho.quercus.expr that return VarExpr
 VarExpr ExprFactory.createVar(VarInfo var)
          Creates a var expression.
 

Methods in com.caucho.quercus.expr with parameters of type VarExpr
 Statement ExprFactory.createClassStatic(Location loc, java.lang.String className, VarExpr var, Expr value)
          Creates a static statement inside a class
 Statement ExprFactory.createGlobal(Location loc, VarExpr var)
          Creates a global statement
 Statement ExprFactory.createStatic(Location loc, VarExpr var, Expr value)
          Creates a static statement
 

Method parameters in com.caucho.quercus.expr with type arguments of type VarExpr
 ClosureExpr ExprFactory.createClosure(Location loc, Function fun, java.util.ArrayList<VarExpr> useArgs)
          Creates a new closure.
 

Uses of VarExpr in com.caucho.quercus.statement
 

Fields in com.caucho.quercus.statement declared as VarExpr
protected  VarExpr ClassStaticStatement._var
           
protected  VarExpr GlobalStatement._var
           
protected  VarExpr StaticStatement._var
           
 

Constructors in com.caucho.quercus.statement with parameters of type VarExpr
ClassStaticStatement(Location location, java.lang.String className, VarExpr var, Expr initValue)
          Creates the echo statement.
GlobalStatement(Location location, VarExpr var)
          Creates the echo statement.
StaticStatement(Location location, VarExpr var, Expr initValue)
          Creates the echo statement.