(self, node, pipe)
| 217 | ) |
| 218 | |
| 219 | def visitpipe(self, node, pipe): |
| 220 | self.groups[0].results.append( |
| 221 | MatchResult( |
| 222 | node.pos[0], |
| 223 | node.pos[1], |
| 224 | help_constants.PIPELINES, |
| 225 | None, |
| 226 | {"kind": "pipe"}, |
| 227 | ) |
| 228 | ) |
| 229 | |
| 230 | def visitredirect(self, node, input, r_type, output, heredoc): |
| 231 | helptext = [help_constants.REDIRECTION] |
nothing calls this directly
no test coverage detected