1 package polyglot.ast; 2 3 /** 4 * A <code>ClassLit</code> represents a class literal expression. 5 * A class literal expressions is an expression consisting of the 6 * name of a class, interface, array, or primitive type followed by a period (.) 7 * and the token class. 8 */ 9 public interface ClassLit extends Lit { 10 TypeNode typeNode(); 11 } 12