1 package polyglot.ast; 2 3 /** 4 * A <code>Receiver</code> represents any node that can be used as the 5 * receiver of a method or of a field access. Usually, this is just 6 * expressions and types. 7 */ 8 public interface Receiver extends Prefix, Typed 9 { 10 } 11