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