1 package polyglot.ast; 2 3 /** 4 * A <code>Prefix</code> represents any node that can be used as the 5 * prefix of a <code>Receiver</code>. If the receiver is a type, its prefix 6 * can either be an enclosing type or can be a package. If the receiver is an 7 * expression, its prefix can be either an expression or a type. 8 */ 9 public interface Prefix extends Node 10 { 11 } 12