Parse source and return a Fory IR schema.
(self, source: str, filename: str = "<input>")
| 42 | |
| 43 | @abstractmethod |
| 44 | def parse(self, source: str, filename: str = "<input>") -> Schema: |
| 45 | """Parse source and return a Fory IR schema.""" |
| 46 | |
| 47 | def parse_file(self, path: Path) -> Schema: |
| 48 | """Parse a file and return a Fory IR schema.""" |
no outgoing calls