(body)
| 43 | } |
| 44 | |
| 45 | function breakWithLabelUsed(body) { |
| 46 | return traverser.find(body, ({type, label}) => type === 'BreakStatement' && label); |
| 47 | } |
| 48 | |
| 49 | function continueWithLabelUsed(body) { |
| 50 | return traverser.find(body, ({type, label}) => type === 'ContinueStatement' && label); |
no outgoing calls
no test coverage detected
searching dependent graphs…