KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > ext > coffer > ast > Free


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 Stmt
10 {
11     Expr expr();
12     Free expr(Expr expr);
13 }
14
Popular Tags