1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-22 10:50:54 +00:00
This commit is contained in:
astaxie 2014-08-05 08:56:04 +08:00
parent c0d3cc6fc5
commit 2c420573d4

View File

@ -65,11 +65,13 @@ func parserPkg(pkgRealpath, pkgpath string) error {
for _, d := range fl.Decls {
switch specDecl := d.(type) {
case *ast.FuncDecl:
if specDecl.Recv != nil {
parserComments(specDecl.Doc, specDecl.Name.String(), fmt.Sprint(specDecl.Recv.List[0].Type.(*ast.StarExpr).X), pkgpath)
}
}
}
}
}
genRouterCode()
savetoFile(pkgRealpath)
return nil