(self, ast)
| 351 | maybe_show_tree(self, tree) |
| 352 | |
| 353 | def str_with_template(self, ast): |
| 354 | stream = sys.stdout |
| 355 | stream.write(self.str_with_template1(ast, "", None)) |
| 356 | stream.write("\n") |
| 357 | |
| 358 | def str_with_template1(self, ast, indent, sibNum=None) -> str: |
| 359 | rv = str(ast.kind) |
no test coverage detected