Package | Description |
---|---|
com.caucho.quercus.expr | |
com.caucho.quercus.statement |
Modifier and Type | Class and Description |
---|---|
class |
VarTempExpr
Represents a temp PHP variable expression.
|
Modifier and Type | Field and Description |
---|---|
protected java.util.ArrayList<VarExpr> |
ClosureExpr._useArgs |
Modifier and Type | Method and Description |
---|---|
VarExpr |
ExprFactory.createVar(VarInfo var)
Creates a var expression.
|
Modifier and Type | Method and Description |
---|---|
Statement |
ExprFactory.createClassStatic(Location loc,
StringValue staticName,
VarExpr var,
Expr value)
Creates a static statement
|
Statement |
ExprFactory.createClosureStatic(Location loc,
VarExpr var,
Expr value)
Creates a static statement that is within a closure scope
|
Statement |
ExprFactory.createGlobal(Location loc,
VarExpr var)
Creates a global statement
|
Statement |
ExprFactory.createStatic(Location loc,
StringValue uniqueStaticName,
VarExpr var,
Expr value)
Creates a static statement
|
Modifier and Type | Method and Description |
---|---|
ClosureExpr |
ExprFactory.createClosure(Location loc,
Function fun,
java.util.ArrayList<VarExpr> useArgs,
boolean isInClassScope)
Creates a new closure.
|
Constructor and Description |
---|
ClosureExpr(Location location,
Function fun,
java.util.ArrayList<VarExpr> useArgs,
boolean isInClassScope) |
Modifier and Type | Field and Description |
---|---|
protected VarExpr |
ClassStaticStatement._var |
protected VarExpr |
StaticStatement._var |
protected VarExpr |
GlobalStatement._var |
protected VarExpr |
ClosureStaticStatement._var |
Constructor and Description |
---|
ClassStaticStatement(Location location,
StringValue staticName,
VarExpr var,
Expr initValue)
Creates the echo statement.
|
ClosureStaticStatement(Location location,
VarExpr var,
Expr initValue)
Creates the echo statement.
|
GlobalStatement(Location location,
VarExpr var)
Creates the echo statement.
|
StaticStatement(Location location,
StringValue uniqueStaticName,
VarExpr var,
Expr initValue)
Creates the echo statement.
|