Add comment for clear functions

pull/94/head
Pagran 5 years ago
parent 60231b10b0
commit 05b4f88c71

@ -28,6 +28,7 @@ func prependComment(group *ast.CommentGroup, comment *ast.Comment) *ast.CommentG
return group
}
// Remove all comments from CommentGroup except //go: directives.
func clearCommentGroup(group *ast.CommentGroup) *ast.CommentGroup {
if group == nil {
return nil
@ -46,6 +47,7 @@ func clearCommentGroup(group *ast.CommentGroup) *ast.CommentGroup {
return &ast.CommentGroup{List: comments}
}
// Remove all comments from Doc (if any) except //go: directives.
func clearNodeComments(node ast.Node) {
switch n := node.(type) {
case *ast.Field:

Loading…
Cancel
Save