(input)
| 3 | module.exports = BuildError; |
| 4 | |
| 5 | function BuildError(input) { |
| 6 | Error.call(this); |
| 7 | this.message = input.message; |
| 8 | this.file = input.file; |
| 9 | this.filename = input.filename; // For testing errors from Uglify |
| 10 | this.line = input.line; |
| 11 | this.col = input.col; |
| 12 | this.stack = input.stack; |
| 13 | } |
| 14 | |
| 15 | BuildError.prototype = Object.create(Error.prototype); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…