(error, filePath)
| 89 | ); |
| 90 | |
| 91 | function logError(error, filePath) { |
| 92 | if (filePath) { |
| 93 | process.stderr.write(`Error with path ${filePath}\n`); |
| 94 | } |
| 95 | process.stderr.write(error + '\n'); |
| 96 | if (error instanceof Error) { |
| 97 | process.stderr.write(error.stack + '\n'); |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | function isReservedPropName(propName) { |
| 102 | reservedPatterns.forEach(reservedPattern => { |
no outgoing calls
no test coverage detected
searching dependent graphs…