1 package polyglot.ext.coffer.ast;2 3 import polyglot.ast.*;4 5 /**6 * This statement revokes the key associated with a tracked expression.7 * The expression cannot be evaluated after this statement executes.8 */9 public interface Free extends Stmt10 {11 Expr expr();12 Free expr(Expr expr);13 }14