1	package antlr.collections;
2	
3	public interface ASTEnumeration {
4	
5	
6		public boolean hasMoreNodes();
7		public AST nextNode();
8	}
9