Searched refs:elsep (Results 1 – 3 of 3) sorted by relevance
28 public CondExpr(ASTree cond, ASTree thenp, ASTree elsep) { in CondExpr() argument29 super(cond, new ASTList(thenp, new ASTList(elsep))); in CondExpr()
325 Stmnt elsep; in parseIf() local328 elsep = parseStatement(tbl); in parseIf()331 elsep = null; in parseIf()333 return new Stmnt(t, expr, new ASTList(thenp, new ASTList(elsep))); in parseIf()
413 Stmnt elsep = (Stmnt)st.tail().tail().head(); in atIfStmnt() local416 if (elsep != null) in atIfStmnt()417 elsep.accept(this); in atIfStmnt()433 if (elsep != null && !thenHasReturned) { in atIfStmnt()440 if (elsep != null) { in atIfStmnt()441 elsep.accept(this); in atIfStmnt()