Parse the whole template into a `Template` node.
(self)
| 890 | return body |
| 891 | |
| 892 | def parse(self): |
| 893 | """Parse the whole template into a `Template` node.""" |
| 894 | result = nodes.Template(self.subparse(), lineno=1) |
| 895 | result.set_environment(self.environment) |
| 896 | return result |
nothing calls this directly
no test coverage detected