(filePath string)
| 213 | } |
| 214 | |
| 215 | func resolveBuiltinIncludePath(filePath string) (string, bool, error) { |
| 216 | if !strings.HasPrefix(filePath, BuiltinPathPrefix) { |
| 217 | return "", false, nil |
| 218 | } |
| 219 | if !BuiltinVirtualFileExists(filePath) { |
| 220 | return "", true, fmt.Errorf("builtin file not found: %s", filePath) |
| 221 | } |
| 222 | remoteLog.Printf("Resolved builtin path: %s", filePath) |
| 223 | return filePath, true, nil |
| 224 | } |
| 225 | |
| 226 | func findGitHubFolder(baseDir string) string { |
| 227 | githubFolder := baseDir |
no test coverage detected