1 package polyglot.ast;2 3 /**4 * <code>Lit</code> represents any Java literal.5 */6 public interface Lit extends Expr7 {8 }9