(self, node: nodes.ASTNode)
| 303 | return self._id |
| 304 | |
| 305 | def match(self, node: nodes.ASTNode) -> bool: |
| 306 | return self.ctx.match(node, self._compiled) |
| 307 | |
| 308 | def apply(self, context: nodes.Context): |
| 309 | logger.debug(f"Applying AST pattern {self.id} at {context.node.line_no}") |
no outgoing calls