(status: unknown)
| 472 | } |
| 473 | |
| 474 | private stringifyStatusValue(status: unknown): string | null { |
| 475 | if ( |
| 476 | typeof status === "string" || |
| 477 | typeof status === "number" || |
| 478 | typeof status === "boolean" |
| 479 | ) { |
| 480 | return String(status); |
| 481 | } |
| 482 | |
| 483 | return null; |
| 484 | } |
| 485 | |
| 486 | /** |
| 487 | * Clear only forward dependencies (tasks this task depends on) |
no outgoing calls
no test coverage detected