Interface TupleExpressionTree

All Superinterfaces:
ExpressionTree, HasTextRange, JclTree

@Beta public interface TupleExpressionTree extends ExpressionTree
A parenthesized list of expressions.
For example, in the following code:
  //SYSUT1 DD DSN=A.B.C,DISP=(MOD,CATLG,DELETE)
 
The value of the keyword parameter DISP is a tuple expression containing the expressions MOD, CATLG, and DELETE.
  • Method Details

    • openingParenthesis

      SyntaxToken openingParenthesis()
      Returns:
      the opening parenthesis token.
    • expressions

      ExpressionList expressions()
      Returns:
      the list of expressions in the tuple.
    • closingParenthesis

      SyntaxToken closingParenthesis()
      Returns:
      the closing parenthesis token.