Home | History | Annotate | Download | only in Chapter5

Lines Matching defs:Proto

178   PrototypeAST *Proto;
181 FunctionAST(PrototypeAST *proto, ExprAST *body)
182 : Proto(proto), Body(body) {}
430 PrototypeAST *Proto = ParsePrototype();
431 if (Proto == 0) return 0;
434 return new FunctionAST(Proto, E);
441 // Make an anonymous proto.
442 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
443 return new FunctionAST(Proto, E);
701 Function *TheFunction = Proto->Codegen();