Home | History | Annotate | Download | only in complete

Lines Matching refs:ForExprAST

219 /// ForExprAST - Expression class for for/in.
220 class ForExprAST : public ExprAST {
224 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
432 return new ForExprAST(IdName, Start, End, Step, Body);
1331 Value *ForExprAST::Codegen() {