Interface WithTree

All Superinterfaces:
StatementTree, Tree

public interface WithTree extends StatementTree
A tree node for a 'with' statement. For example:
   with ( scope )
     statement
 
Since:
9
  • Method Details

    • getScope

      ExpressionTree getScope()
      The scope object expression for this 'with' statement.
      Returns:
      the scope object
    • getStatement

      StatementTree getStatement()
      The statement contained in this 'with' statement.
      Returns:
      the statement contained