()
| 20 | // foo("food"); |
| 21 | |
| 22 | function test() { |
| 23 | let name = "brandon"; |
| 24 | debugger; |
| 25 | |
| 26 | if (false) { |
| 27 | name = "false"; |
| 28 | debugger; |
| 29 | } |
| 30 | if (true) { |
| 31 | name = "krandon"; |
| 32 | debugger; |
| 33 | } |
| 34 | |
| 35 | if (1) { |
| 36 | let name = "1"; |
| 37 | debugger; |
| 38 | } |
| 39 | |
| 40 | debugger; |
| 41 | } |
| 42 | |
| 43 | // test(); |
| 44 |
nothing calls this directly
no outgoing calls
no test coverage detected