(x)
| 194 | |
| 195 | |
| 196 | function continue_from_finally(x) { |
| 197 | var cont = true; |
| 198 | while (cont) { |
| 199 | try { |
| 200 | x++; |
| 201 | if (false) return -1; |
| 202 | cont = false; |
| 203 | continue; |
| 204 | } finally { |
| 205 | x--; |
| 206 | } |
| 207 | x--; |
| 208 | } |
| 209 | return x; |
| 210 | } |
| 211 | |
| 212 | assertEquals(0, continue_from_finally(0)); |
| 213 | assertEquals(1, continue_from_finally(1)); |
no outgoing calls
no test coverage detected
searching dependent graphs…