(x)
| 263 | assertEquals(4222, f6(148), "largeSwitch.148"); |
| 264 | |
| 265 | function fhole(x) { |
| 266 | switch(x){ |
| 267 | case 0: |
| 268 | x = 2; |
| 269 | case 2: |
| 270 | x = 3; |
| 271 | case 3: |
| 272 | x = 4; |
| 273 | case 4: |
| 274 | x = 5; |
| 275 | break; |
| 276 | case 5: |
| 277 | x = 6; |
| 278 | break; |
| 279 | } |
| 280 | return x; |
| 281 | } |
| 282 | |
| 283 | assertEquals(1, fhole(1), "fhole.jumptablehole"); |
| 284 |
no outgoing calls
no test coverage detected
searching dependent graphs…