(node: object)
| 50 | |
| 51 | |
| 52 | def _is_internal_control_node(node: object) -> bool: |
| 53 | name = node.name |
| 54 | if name in ("entry", "exit"): |
| 55 | return True |
| 56 | return name.endswith(("_entry", "_exit", "_controller", "_terminate")) |
| 57 | |
| 58 | |
| 59 | class _Preview: |
no outgoing calls
no test coverage detected