1 package polyglot.ast;2 3 /** 4 * An <code>CharLit</code> represents a literal in java of5 * <code>char</code> type.6 */7 public interface CharLit extends NumLit8 { 9 /**10 * The literal's value.11 */12 char value();13 14 /**15 * Set the literal's value.16 */17 CharLit value(char value);18 }19