MCPcopy Create free account
hub / github.com/apache/fory / _warning

Method _warning

compiler/fory_compiler/ir/validator.py:94–95  ·  view source on GitHub ↗
(self, message: str, location: Optional[SourceLocation])

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls 2

ValidationIssueClass · 0.85
appendMethod · 0.45

Tested by

no test coverage detected