MCPcopy Create free account
hub / github.com/FastLED/FastLED / CheckResult

Class CheckResult

ci/lint_cpp/test_unity_build.py:123–131  ·  view source on GitHub ↗

Result of unity build structure validation.

Source from the content-addressed store, hash-verified

121
122@dataclass
123class CheckResult:
124 """Result of unity build structure validation."""
125
126 success: bool
127 violations: list[str]
128
129 def __bool__(self) -> bool:
130 """Allow CheckResult to be used in boolean context."""
131 return self.success
132
133
134def _parse_build_filename(filename: str) -> tuple[str, bool]:

Callers 3

check_scanned_dataFunction · 0.85
check_single_fileFunction · 0.85
checkFunction · 0.85

Calls

no outgoing calls

Tested by 3

check_scanned_dataFunction · 0.68
check_single_fileFunction · 0.68
checkFunction · 0.68