com.caucho.quercus.statement
Class ContinueStatement
java.lang.Object
com.caucho.quercus.statement.Statement
com.caucho.quercus.statement.ContinueStatement
public class ContinueStatement
- extends Statement
Represents a continue expression statement in a PHP program.
Method Summary |
Value |
execute(Env env)
Executes the statement, returning the expression value. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
_target
protected final Expr _target
_loopLabelList
protected final java.util.ArrayList<java.lang.String> _loopLabelList
ContinueStatement
public ContinueStatement(Location location,
Expr target,
java.util.ArrayList<java.lang.String> loopLabelList)
execute
public Value execute(Env env)
- Executes the statement, returning the expression value.
- Specified by:
execute
in class Statement