Parse the whole template into a `Template` node.
(self)
| 897 | return body |
| 898 | |
| 899 | def parse(self): |
| 900 | """Parse the whole template into a `Template` node.""" |
| 901 | result = nodes.Template(self.subparse(), lineno=1) |
| 902 | result.set_environment(self.environment) |
| 903 | return result |
nothing calls this directly
no test coverage detected