(self, message: str, location: Optional[SourceLocation])
| 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")) |
| 96 | |
| 97 | def _apply_type_id_defaults(self) -> None: |
| 98 | enable_auto_type_id = self.schema.get_option("enable_auto_type_id", True) |
nothing calls this directly
no test coverage detected