Home
last modified time | relevance | path

Searched refs:thenp (Results 1 – 3 of 3) sorted by relevance

/external/javassist/src/main/javassist/compiler/ast/
DCondExpr.java24 public CondExpr(ASTree cond, ASTree thenp, ASTree elsep) { in CondExpr() argument
25 super(cond, new ASTList(thenp, new ASTList(elsep))); in CondExpr()
/external/javassist/src/main/javassist/compiler/
DParser.java306 Stmnt thenp = parseStatement(tbl); in parseIf() local
315 return new Stmnt(t, expr, new ASTList(thenp, new ASTList(elsep))); in parseIf()
DCodeGen.java381 Stmnt thenp = (Stmnt)st.tail().head(); in atIfStmnt() local
389 if (thenp != null) in atIfStmnt()
390 thenp.accept(this); in atIfStmnt()