com.caucho.quercus.expr
Class ObjectNewStaticExpr

java.lang.Object
  extended by com.caucho.quercus.expr.Expr
      extended by com.caucho.quercus.expr.ObjectNewStaticExpr

public class ObjectNewStaticExpr
extends Expr

Represents a PHP function expression of the form "new static()".


Field Summary
protected  Expr[] _args
           
 
Fields inherited from class com.caucho.quercus.expr.Expr
COMPILE_ARG_MAX, NULL_ARGS
 
Constructor Summary
ObjectNewStaticExpr(java.util.ArrayList<Expr> args)
           
ObjectNewStaticExpr(Expr[] args)
           
ObjectNewStaticExpr(Location location, java.util.ArrayList<Expr> args)
           
ObjectNewStaticExpr(Location location, Expr[] args)
           
 
Method Summary
 Value eval(Env env)
          Evaluates the expression.
 java.lang.String toString()
           
 
Methods inherited from class com.caucho.quercus.expr.Expr
assign, canRead, createAssign, createAssignFrom, createAssignRef, createCall, createClassConst, createClassField, createClassField, createCopy, createDeref, createFieldGet, createFieldGet, createIsset, createRef, createUnset, evalArg, evalArgs, evalArray, evalArrayAssign, evalArrayAssignTail, evalAssignRef, evalAssignValue, evalBoolean, evalChar, evalConstant, evalConstantPrefix, evalConstantSuffix, evalCopy, evalDirty, evalDouble, evalIsset, evalIssetValue, evalLong, evalObject, evalPostIncrement, evalPreIncrement, evalQuercusClass, evalRef, evalString, evalStringValue, evalTop, evalUnsetArray, evalValue, evalVar, getFileName, getFunctionLocation, getLine, getLocation, getLocationLine, isArray, isAssign, isBoolean, isConstant, isDouble, isFalse, isLiteral, isLong, isNumber, isRef, isString, isTrue, isVar, print
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

_args

protected final Expr[] _args
Constructor Detail

ObjectNewStaticExpr

public ObjectNewStaticExpr(Location location,
                           java.util.ArrayList<Expr> args)

ObjectNewStaticExpr

public ObjectNewStaticExpr(Location location,
                           Expr[] args)

ObjectNewStaticExpr

public ObjectNewStaticExpr(java.util.ArrayList<Expr> args)

ObjectNewStaticExpr

public ObjectNewStaticExpr(Expr[] args)
Method Detail

eval

public Value eval(Env env)
Evaluates the expression.

Specified by:
eval in class Expr
Parameters:
env - the calling environment.
Returns:
the expression value.

toString

public java.lang.String toString()
Overrides:
toString in class Expr