(file, fullPath)
| 266 | }, readError); |
| 267 | } |
| 268 | function fileReadSuccess(file, fullPath) { |
| 269 | // relative path should not start with "/" |
| 270 | file.relativePath = fullPath.substring(1); |
| 271 | files.push(file); |
| 272 | decrement(); |
| 273 | } |
| 274 | function readError(fileError) { |
| 275 | decrement(); |
| 276 | throw fileError; |
no test coverage detected
searching dependent graphs…