Home | History | Annotate | Download | only in complete

Lines Matching refs:VarExprAST

231 /// VarExprAST - Expression class for var/in
232 class VarExprAST : public ExprAST {
236 VarExprAST(const std::vector<std::pair<std::string, ExprAST*> > &varnames,
478 return new VarExprAST(VarNames, Body);
1431 Value *VarExprAST::Codegen() {