()
| 16 | let compiledConsole; |
| 17 | |
| 18 | function a() { |
| 19 | try { |
| 20 | return a(); |
| 21 | } catch (e) { |
| 22 | compiledConsole = consoleDescriptor.value; |
| 23 | if (compiledConsole.log) { |
| 24 | // Using `console.log` itself might not succeed yet, but the code for it |
| 25 | // has been compiled. |
| 26 | } else { |
| 27 | throw e; |
| 28 | } |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | a(); |
| 33 |
no outgoing calls
no test coverage detected