mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 11:40:55 +00:00
fix #703
This commit is contained in:
parent
c0d3cc6fc5
commit
2c420573d4
@ -65,7 +65,9 @@ func parserPkg(pkgRealpath, pkgpath string) error {
|
||||
for _, d := range fl.Decls {
|
||||
switch specDecl := d.(type) {
|
||||
case *ast.FuncDecl:
|
||||
parserComments(specDecl.Doc, specDecl.Name.String(), fmt.Sprint(specDecl.Recv.List[0].Type.(*ast.StarExpr).X), pkgpath)
|
||||
if specDecl.Recv != nil {
|
||||
parserComments(specDecl.Doc, specDecl.Name.String(), fmt.Sprint(specDecl.Recv.List[0].Type.(*ast.StarExpr).X), pkgpath)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user