Uses of Class
com.caucho.quercus.statement.BlockStatement

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

Uses of BlockStatement in com.caucho.quercus.expr
 

Methods in com.caucho.quercus.expr that return BlockStatement
 BlockStatement ExprFactory.createBlockImpl(Location loc, java.util.ArrayList<Statement> statementList)
          Creates an expr statement
 BlockStatement ExprFactory.createBlockImpl(Location loc, Statement[] statements)
          Creates an expr statement
 

Method parameters in com.caucho.quercus.expr with type arguments of type BlockStatement
 Statement ExprFactory.createSwitch(Location loc, Expr value, java.util.ArrayList<Expr[]> caseList, java.util.ArrayList<BlockStatement> blockList, Statement defaultBlock, java.lang.String label)
          Creates a switch statement
 

Uses of BlockStatement in com.caucho.quercus.statement
 

Fields in com.caucho.quercus.statement declared as BlockStatement
protected  BlockStatement[] SwitchStatement._blocks
           
 

Methods in com.caucho.quercus.statement that return BlockStatement
 BlockStatement BlockStatement.append(java.util.ArrayList<Statement> statementList)
           
 

Constructor parameters in com.caucho.quercus.statement with type arguments of type BlockStatement
SwitchStatement(Location location, Expr value, java.util.ArrayList<Expr[]> caseList, java.util.ArrayList<BlockStatement> blockList, Statement defaultBlock, java.lang.String label)