Annotations for a single compiled source file.
| 136 | |
| 137 | |
| 138 | class AnnotatedSource: |
| 139 | """Annotations for a single compiled source file.""" |
| 140 | |
| 141 | def __init__(self, path: str, annotations: dict[int, list[Annotation]]) -> None: |
| 142 | self.path = path |
| 143 | self.annotations = annotations |
| 144 | |
| 145 | |
| 146 | def generate_annotated_html( |
no outgoing calls
no test coverage detected
searching dependent graphs…