1 package polyglot.ast;2 3 /**4 * An integer literal: longs, ints, shorts, bytes, and chars.5 */6 public interface NumLit extends Lit7 {8 /** The literal's value. */9 long longValue();10 }11