(self)
| 135 | return v |
| 136 | |
| 137 | def load_tree(self): |
| 138 | if self.path: |
| 139 | with self.path.open("r") as fd: |
| 140 | raw_template = fd.read() |
| 141 | |
| 142 | self.tree = parse_jinja_template(raw_template) |
| 143 | |
| 144 | def _visit_node(self, context: Context): |
| 145 | # Check if it is an AST node in the Jinja template |
no test coverage detected