Home
last modified time | relevance | path

Searched refs:elsep (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.java307 Stmnt elsep; in parseIf() local
310 elsep = parseStatement(tbl); in parseIf()
313 elsep = null; in parseIf()
315 return new Stmnt(t, expr, new ASTList(thenp, new ASTList(elsep))); in parseIf()
DCodeGen.java382 Stmnt elsep = (Stmnt)st.tail().tail().head(); in atIfStmnt() local
395 if (elsep != null && !thenHasReturned) { in atIfStmnt()
403 if (elsep != null) { in atIfStmnt()
404 elsep.accept(this); in atIfStmnt()