Home | History | Annotate | Download | only in Chapter4

Lines Matching defs:Proto

148   PrototypeAST *Proto;
151 FunctionAST(PrototypeAST *proto, ExprAST *body)
152 : Proto(proto), Body(body) {}
327 PrototypeAST *Proto = ParsePrototype();
328 if (Proto == 0) return 0;
331 return new FunctionAST(Proto, E);
338 // Make an anonymous proto.
339 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
340 return new FunctionAST(Proto, E);
454 Function *TheFunction = Proto->Codegen();