Home | History | Annotate | Download | only in Chapter7

Lines Matching refs:VarExprAST

183 /// VarExprAST - Expression class for var/in
184 class VarExprAST : public ExprAST {
188 VarExprAST(const std::vector<std::pair<std::string, ExprAST*> > &varnames,
431 return new VarExprAST(VarNames, Body);
862 Value *VarExprAST::Codegen() {