(body)
| 47 | } |
| 48 | |
| 49 | function continueWithLabelUsed(body) { |
| 50 | return traverser.find(body, ({type, label}) => type === 'ContinueStatement' && label); |
| 51 | } |
| 52 | |
| 53 | function breakUsed(body) { |
| 54 | return traverser.find(body, 'BreakStatement', {skipTypes: [...loopStatements, 'SwitchStatement']}); |
no outgoing calls
no test coverage detected
searching dependent graphs…