(self)
| 806 | |
| 807 | class depthchecker(bashlex.ast.nodevisitor): |
| 808 | def __init__(self): |
| 809 | self.depth = 0 |
| 810 | self.maxdepth = 0 |
| 811 | |
| 812 | def visitnode(self, node): |
| 813 | if "substitution" in node.kind: |
nothing calls this directly
no outgoing calls
no test coverage detected