* Pre walk switch cases. * @param {SwitchCase[]} switchCases switch statement
(switchCases)
| 3376 | * @param {SwitchCase[]} switchCases switch statement |
| 3377 | */ |
| 3378 | preWalkSwitchCases(switchCases) { |
| 3379 | for (let index = 0, len = switchCases.length; index < len; index++) { |
| 3380 | const switchCase = switchCases[index]; |
| 3381 | this.preWalkStatements(switchCase.consequent); |
| 3382 | } |
| 3383 | } |
| 3384 | |
| 3385 | /** |
| 3386 | * Processes the provided switch case. |
no test coverage detected