Searched refs:elsep (Results 1 – 3 of 3) sorted by relevance
24 public CondExpr(ASTree cond, ASTree thenp, ASTree elsep) { in CondExpr() argument25 super(cond, new ASTList(thenp, new ASTList(elsep))); in CondExpr()
307 Stmnt elsep; in parseIf() local310 elsep = parseStatement(tbl); in parseIf()313 elsep = null; in parseIf()315 return new Stmnt(t, expr, new ASTList(thenp, new ASTList(elsep))); in parseIf()
382 Stmnt elsep = (Stmnt)st.tail().tail().head(); in atIfStmnt() local395 if (elsep != null && !thenHasReturned) { in atIfStmnt()403 if (elsep != null) { in atIfStmnt()404 elsep.accept(this); in atIfStmnt()