MCPcopy Index your code
hub / github.com/ember-cli/ember-cli / BuildError

Function BuildError

tests/helpers/build-error.js:5–13  ·  view source on GitHub ↗
(input)

Source from the content-addressed store, hash-verified

3module.exports = BuildError;
4
5function 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
15BuildError.prototype = Object.create(Error.prototype);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…