Class ForStatement

  • All Implemented Interfaces:
    INode, java.io.Serializable

    public class ForStatement
    extends java.lang.Object
    implements INode
    JTB node class for the production ForStatement:
    Corresponding grammar:
    f0 -> "for"
    f1 -> "("
    f2 -> ( %0 #0 VariableModifiers() #1 Type() #2 < IDENTIFIER > #3 ":" #4 Expression()
    .. .. | %1 #0 [ ForInit() ]
    .. .. . .. #1 ";"
    .. .. . .. #2 [ Expression() ]
    .. .. . .. #3 ";"
    .. .. . .. #4 [ ForUpdate() ] )
    f3 -> ")"
    f4 -> Statement()
    s: 755358653
    See Also:
    Serialized Form
    • Constructor Detail

      • ForStatement

        public ForStatement​(Token n0,
                            Token n1,
                            NodeChoice n2,
                            Token n3,
                            Statement n4)
        Constructs the node with all its children nodes.
        Parameters:
        n0 - - first child node
        n1 - - next child node
        n2 - - next child node
        n3 - - next child node
        n4 - - next child node
    • Method Detail

      • accept

        public int accept​(IIntVisitor vis)
        Accepts a IIntVisitor visitor with user return data.
        Specified by:
        accept in interface INode
        Parameters:
        vis - - the visitor
        Returns:
        the user Return data
      • accept

        public void accept​(IVoidVisitor vis)
        Accepts a IVoidVisitor visitor} visitor with user return data.
        Specified by:
        accept in interface INode
        Parameters:
        vis - - the visitor