1 package polyglot.ast;2 3 /**4 * A <code>ForInit</code> represents a statement that can be used as a5 * initializer in a "for" statement.6 */7 public interface ForInit extends Stmt8 {9 }10