(targetId: string)
| 197 | } |
| 198 | |
| 199 | private isTargetReady(targetId: string): boolean { |
| 200 | const targetNode = this.dag.nodes.get(targetId) |
| 201 | return targetNode ? this.isNodeReady(targetNode) : false |
| 202 | } |
| 203 | |
| 204 | /** |
| 205 | * Checks if the cascade target sentinel belongs to the same subflow as the source node. |
no test coverage detected