Home | History | Annotate | Download | only in Chapter5

Lines Matching refs:proto

177   PrototypeAST *Proto;
180 FunctionAST(PrototypeAST *proto, ExprAST *body)
181 : Proto(proto), Body(body) {}
428 PrototypeAST *Proto = ParsePrototype();
429 if (Proto == 0) return 0;
432 return new FunctionAST(Proto, E);
439 // Make an anonymous proto.
440 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
441 return new FunctionAST(Proto, E);
699 Function *TheFunction = Proto->Codegen();