KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > ast > Ambiguous


1 package polyglot.ast;
2
3 /**
4  * <code>Ambiguous</code> represents an ambiguous AST node. This interface is
5  * just a tag. These nodes should not appear after the disambiguate
6  * pass.
7  */

8 public interface Ambiguous extends Node
9 {
10 }
11
Popular Tags