Home | History | Annotate | Download | only in Chapter3

Lines Matching defs:Proto

141   PrototypeAST *Proto;
144 FunctionAST(PrototypeAST *proto, ExprAST *body)
145 : Proto(proto), Body(body) {}
320 PrototypeAST *Proto = ParsePrototype();
321 if (Proto == 0) return 0;
324 return new FunctionAST(Proto, E);
331 // Make an anonymous proto.
332 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
333 return new FunctionAST(Proto, E);
446 Function *TheFunction = Proto->Codegen();