Home | History | Annotate | Download | only in Chapter2

Lines Matching refs:PrototypeAST

116 /// PrototypeAST - This class represents the "prototype" for a function,
119 class PrototypeAST {
123 PrototypeAST(const std::string &name, const std::vector<std::string> &args)
130 PrototypeAST *Proto;
133 FunctionAST(PrototypeAST *proto, ExprAST *body)
167 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
283 static PrototypeAST *ParsePrototype() {
302 return new PrototypeAST(FnName, ArgNames);
308 PrototypeAST *Proto = ParsePrototype();
320 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
327 static PrototypeAST *ParseExtern() {