func hasComment()

in pkg/converter/comments.go [49:55]


func hasComment(loc *descriptor.SourceCodeInfo_Location) bool {
	if loc.GetLeadingComments() == "" && loc.GetTrailingComments() == "" {
		return false
	}

	return true
}