| 18 | |
| 19 | |
| 20 | class RendererProtocol(Protocol): |
| 21 | __output__: ClassVar[str] |
| 22 | |
| 23 | def render( |
| 24 | self, tokens: Sequence[Token], options: OptionsDict, env: EnvType |
| 25 | ) -> Any: ... |
| 26 | |
| 27 | |
| 28 | class RendererHTML(RendererProtocol): |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…