in pkg/converter/comments.go [57:60]
func buildComment(loc *descriptor.SourceCodeInfo_Location) string {
comment := strings.TrimSpace(loc.GetLeadingComments()) + "\n\n" + strings.TrimSpace(loc.GetTrailingComments())
return strings.Trim(comment, "\n")
}