(message: string)
| 78 | let error: string | null = null; |
| 79 | |
| 80 | const throwError = (message: string) => { |
| 81 | if (!interrupt) { |
| 82 | interrupt = true; |
| 83 | error = message; |
| 84 | } |
| 85 | }; |
| 86 | |
| 87 | // Now we will iterate troughout each section. |
| 88 | // We will always assume bad-faith and make sure to have |
no outgoing calls
no test coverage detected