Per-node record stored in the manifest.
| 50 | |
| 51 | @dataclass |
| 52 | class ManifestEntry: |
| 53 | """Per-node record stored in the manifest.""" |
| 54 | name: str |
| 55 | kind: str |
| 56 | lineno: int |
| 57 | end_lineno: int |
| 58 | source_hash: str |
| 59 | target_module: str |
| 60 | |
| 61 | |
| 62 | @dataclass |