Class GeneralForStatement

    • Constructor Detail

      • GeneralForStatement

        public GeneralForStatement()
    • Method Detail

      • initializationExpr

        public abstract Expr initializationExpr()
      • terminationExpr

        public abstract Expr terminationExpr()
      • updateExpr

        public abstract Expr updateExpr()
      • body

        public abstract com.google.common.collect.ImmutableList<Statement> body()
      • accept

        public void accept​(AstNodeVisitor visitor)
        Description copied from interface: AstNode
        Writes the syntatically-correct Java code representation of this node.
        Specified by:
        accept in interface AstNode
        Specified by:
        accept in interface Statement