1 package polyglot.ast;2 3 /**4 * An <code>AmbPrefix</code> is an ambiguous AST node composed of dot-separated5 * list of identifiers that must resolve to a prefix.6 */7 public interface AmbPrefix extends Prefix, Ambiguous8 {9 /**10 * Prefix of the prefix.11 */12 Prefix prefix();13 14 /**15 * Ambiguous name.16 */17 String name();18 }19