(self, parser: "Parser")
| 625 | tags = {"debug"} |
| 626 | |
| 627 | def parse(self, parser: "Parser") -> nodes.Output: |
| 628 | lineno = parser.stream.expect("name:debug").lineno |
| 629 | context = nodes.ContextReference() |
| 630 | result = self.call_method("_render", [context], lineno=lineno) |
| 631 | return nodes.Output([result], lineno=lineno) |
| 632 | |
| 633 | def _render(self, context: Context) -> str: |
| 634 | result = { |
nothing calls this directly
no test coverage detected