Interface ExpressionStatementTree

All Superinterfaces:
StatementTree, Tree
All Known Implementing Classes:
ExpressionStatementTreeImpl

public interface ExpressionStatementTree extends StatementTree
Expression statement is used for processing expressions, e.g. function call or assignment operations.
   expression() ;
 
Examples:
   foo() ;
   $a = 1 ;