(dumpFilePath)
| 542 | var processes; |
| 543 | |
| 544 | function readDumpFile(dumpFilePath) { |
| 545 | Common.printOut(cst.PREFIX_MSG + 'Restoring processes located in %s', dumpFilePath); |
| 546 | try { |
| 547 | var apps = fs.readFileSync(dumpFilePath); |
| 548 | } catch (e) { |
| 549 | Common.printError(cst.PREFIX_MSG_ERR + 'Failed to read dump file in %s', dumpFilePath); |
| 550 | throw e; |
| 551 | } |
| 552 | |
| 553 | return apps; |
| 554 | } |
| 555 | |
| 556 | function parseDumpFile(dumpFilePath, apps) { |
| 557 | try { |
no outgoing calls
no test coverage detected
searching dependent graphs…