MCPcopy Index your code
hub / github.com/getsentry/XcodeBuildMCP / isBuildErrorDiagnosticLine

Function isBuildErrorDiagnosticLine

src/utils/xcodebuild-line-parsers.ts:54–56  ·  view source on GitHub ↗
(line: string)

Source from the content-addressed store, hash-verified

52const BUILD_ERROR_DIAGNOSTIC_PATTERN = /(?:^|\s)(?:fatal error|error):\s+\S/iu;
53
54export function isBuildErrorDiagnosticLine(line: string): boolean {
55 return BUILD_ERROR_DIAGNOSTIC_PATTERN.test(line);
56}
57
58function normalizeSuiteName(rawSuiteName: string): string {
59 const parts = rawSuiteName.split('.').filter(Boolean);

Callers 4

processLineFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected