(fileContent, index)
| 2 | const path = require("path"); |
| 3 | |
| 4 | const getLineNumberFromIndex = (fileContent, index) => { |
| 5 | return fileContent.substring(0, index).split("\n").length; |
| 6 | }; |
| 7 | |
| 8 | /** |
| 9 | * Search for lines of the form |
no outgoing calls
no test coverage detected