1 package polyglot.ast; 2 3 import polyglot.types.*; 4 5 /** 6 * <code>Typed</code> represents any node that has a type 7 * associated with it. 8 */ 9 public interface Typed 10 { 11 /** 12 * Return the type of this node, or null if no type has been 13 * assigned yet. 14 */ 15 Type type(); 16 } 17