(cls)
| 363 | }; |
| 364 | |
| 365 | function createError(cls) { |
| 366 | cls.prototype = Object.create(Error.prototype); |
| 367 | cls.prototype.constructor = cls; |
| 368 | return cls; |
| 369 | } |
| 370 | |
| 371 | function ModifiedTreeError(modulePath, changes) { |
| 372 | var msg = 'you have made modifications to the module %(name)s (%(path)s)'; |
no outgoing calls
no test coverage detected
searching dependent graphs…