java.lang.Object
com.aquima.interactions.expressions.parser.ParseNodeBase
com.aquima.interactions.expressions.r7.parser.nodes.GroupingNode
All Implemented Interfaces:
IParseNode

public class GroupingNode extends ParseNodeBase
This node is used to group statements in an expression.
Since:
6.0
Author:
O. Kerpershoek
  • Constructor Details

    • GroupingNode

      public GroupingNode(IParseNode node)
      Constructs the node with the expression that is grouped.
      Parameters:
      node - The expression node that is grouped by this node.
  • Method Details

    • getExpression

      public IParseNode getExpression()
      This method returns the expression node that is grouped by this node.
      Returns:
      the expression node that is grouped by this node.