KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > ast > AmbExpr


1 package polyglot.ast;
2
3 /**
4  * An <code>AmbExpr</code> is an ambiguous AST node composed of a single
5  * identifier that must resolve to an expression.
6  */

7 public interface AmbExpr extends Expr, Ambiguous
8 {
9     /**
10      * Ambiguous name.
11      */

12     String JavaDoc name();
13     AmbExpr name(String JavaDoc name);
14 }
15
Popular Tags