1 package polyglot.ast;2 3 import java.util.*;4 5 /**6 * Any statement with sub-statements.7 */8 public interface CompoundStmt extends Stmt 9 { 10 }11