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

/external/javassist/src/main/javassist/compiler/ast/
H A DStmnt.java24 public class Stmnt extends ASTList implements TokenId { class in inherits:ASTList,TokenId
27 public Stmnt(int op, ASTree _head, ASTList _tail) { method in class:Stmnt
32 public Stmnt(int op, ASTree _head) { method in class:Stmnt
37 public Stmnt(int op) { method in class:Stmnt
41 public static Stmnt make(int op, ASTree oprand1, ASTree oprand2) {
42 return new Stmnt(op, oprand1, new ASTList(oprand2));
45 public static Stmnt make(int op, ASTree op1, ASTree op2, ASTree op3) {
46 return new Stmnt(op, op1, new ASTList(op2, new ASTList(op3)));

Completed in 166 milliseconds