(currentContent, processedContent string, extractTools bool)
| 81 | } |
| 82 | |
| 83 | func includeExpansionComplete(currentContent, processedContent string, extractTools bool) bool { |
| 84 | if extractTools { |
| 85 | return !strings.Contains(processedContent, "@include") && !strings.Contains(processedContent, "@import") |
| 86 | } |
| 87 | return processedContent == currentContent |
| 88 | } |
| 89 | |
| 90 | func buildIncludedFilesManifest(baseDir string, visited map[string]struct { |
| 91 | }) []string { |
no outgoing calls
no test coverage detected