HomeSort by relevance Sort by last modified time
    Searched full:elsep (Results 1 - 3 of 3) sorted by null

  /external/javassist/src/main/javassist/compiler/ast/
CondExpr.java 24 public CondExpr(ASTree cond, ASTree thenp, ASTree elsep) {
25 super(cond, new ASTList(thenp, new ASTList(elsep)));
  /external/javassist/src/main/javassist/compiler/
Parser.java 307 Stmnt elsep; local
310 elsep = parseStatement(tbl);
313 elsep = null;
315 return new Stmnt(t, expr, new ASTList(thenp, new ASTList(elsep)));
    [all...]
CodeGen.java 382 Stmnt elsep = (Stmnt)st.tail().tail().head(); local
395 if (elsep != null && !thenHasReturned) {
403 if (elsep != null) {
404 elsep.accept(this);
    [all...]

Completed in 205 milliseconds