Searched defs:ASTList (Results 1 - 1 of 1) sorted by relevance

/external/javassist/src/main/javassist/compiler/ast/
H A DASTList.java22 * The right subtree must be an ASTList object or null.
24 public class ASTList extends ASTree { class in inherits:ASTree
26 private ASTList right;
28 public ASTList(ASTree _head, ASTList _tail) { method in class:ASTList
33 public ASTList(ASTree _head) { method in class:ASTList
38 public static ASTList make(ASTree e1, ASTree e2, ASTree e3) {
39 return new ASTList(e1, new ASTList(e2, new ASTList(e
[all...]

Completed in 127 milliseconds