()
| 84 | // * Debugger will skip if statements; if they are falsely; then we never enter the conditional |
| 85 | |
| 86 | function test() { |
| 87 | let name = "brandon"; |
| 88 | debugger; |
| 89 | |
| 90 | if (false) { |
| 91 | name = "false"; |
| 92 | debugger; |
| 93 | } |
| 94 | if (true) { |
| 95 | name = "krandon"; |
| 96 | debugger; |
| 97 | } |
| 98 | |
| 99 | if (1) { |
| 100 | let name = "1"; |
| 101 | debugger; |
| 102 | } |
| 103 | |
| 104 | debugger; |
| 105 | } |
| 106 | |
| 107 | // test(); |
| 108 |
nothing calls this directly
no outgoing calls
no test coverage detected