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