(op)
| 284 | seed_ops &= within_ops |
| 285 | |
| 286 | def is_within(op): |
| 287 | return (within_ops is None or op in within_ops) and ( |
| 288 | within_ops_fn is None or within_ops_fn(op)) |
| 289 | |
| 290 | result = list(seed_ops) |
| 291 | wave = set(seed_ops) |
no outgoing calls
no test coverage detected