(self, operator_, qualifier1)
| 3249 | return getattr(self, attrname, None) |
| 3250 | |
| 3251 | def _get_custom_operator_dispatch(self, operator_, qualifier1): |
| 3252 | attrname = "visit_%s_op_%s" % (operator_.visit_name, qualifier1) |
| 3253 | return getattr(self, attrname, None) |
| 3254 | |
| 3255 | def visit_unary( |
| 3256 | self, unary, add_to_result_map=None, result_map_targets=(), **kw |
no outgoing calls
no test coverage detected