| 75 | // - isActive = if the *current branch* in this block is active right now. |
| 76 | // |
| 77 | interface IFBlockState { |
| 78 | type: 'IF_BLOCK'; |
| 79 | parentActive: boolean; |
| 80 | hasMatched: boolean; |
| 81 | isActive: boolean; |
| 82 | } |
| 83 | |
| 84 | const skipStack: Array<string | IFBlockState> = []; |
| 85 |
nothing calls this directly
no outgoing calls
no test coverage detected