Code coverage report for dist/cjs/handlebars/exception.js

Statements: 100% (14 / 14)      Branches: 100% (6 / 6)      Functions: 100% (1 / 1)      Lines: 100% (14 / 14)      Ignored: none     

All files » dist/cjs/handlebars/ » exception.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28    1   1 48 48 16   16     48     48 336     48 16 16       1   1
"use strict";
 
var errorProps = ['description', 'fileName', 'lineNumber', 'message', 'name', 'number', 'stack'];
 
function Exception(message, node) {
  var line;
  if (node && node.firstLine) {
    line = node.firstLine;
 
    message += ' - ' + line + ':' + node.firstColumn;
  }
 
  var tmp = Error.prototype.constructor.call(this, message);
 
  // Unfortunately errors are not enumerable in Chrome (at least), so `for prop in tmp` doesn't work.
  for (var idx = 0; idx < errorProps.length; idx++) {
    this[errorProps[idx]] = tmp[errorProps[idx]];
  }
 
  if (line) {
    this.lineNumber = line;
    this.column = node.firstColumn;
  }
}
 
Exception.prototype = new Error();
 
exports["default"] = Exception;