(self, message: str, location: Optional[SourceLocation])
| 89 | return not self.errors |
| 90 | |
| 91 | def _error(self, message: str, location: Optional[SourceLocation]) -> None: |
| 92 | self.errors.append(ValidationIssue(message, location, "error")) |
| 93 | |
| 94 | def _warning(self, message: str, location: Optional[SourceLocation]) -> None: |
| 95 | self.warnings.append(ValidationIssue(message, location, "warning")) |
no test coverage detected