(comment string)
| 413 | } |
| 414 | |
| 415 | func replaceCommentNewline(comment string) string { |
| 416 | for _, r := range newlineIdentifier { |
| 417 | if strings.Contains(comment, r.old) { |
| 418 | comment = strings.ReplaceAll(comment, r.old, r.new) |
| 419 | } |
| 420 | } |
| 421 | return comment |
| 422 | } |
| 423 | |
| 424 | type codeText struct { |
| 425 | importPaths []string |
no outgoing calls
no test coverage detected
searching dependent graphs…