Sha256: 3dcd70e20270a93b8769204174a1949a133a41afbc8f1a74a9c6ab73fd60a179

Contents?: true

Size: 1.27 KB

Versions: 74

Compression:

Stored size: 1.27 KB

Contents

// YAML error class. http://stackoverflow.com/questions/8458984
//
'use strict';


function formatError(exception, compact) {
  var where = '', message = exception.reason || '(unknown reason)';

  if (!exception.mark) return message;

  if (exception.mark.name) {
    where += 'in "' + exception.mark.name + '" ';
  }

  where += '(' + (exception.mark.line + 1) + ':' + (exception.mark.column + 1) + ')';

  if (!compact && exception.mark.snippet) {
    where += '\n\n' + exception.mark.snippet;
  }

  return message + ' ' + where;
}


function YAMLException(reason, mark) {
  // Super constructor
  Error.call(this);

  this.name = 'YAMLException';
  this.reason = reason;
  this.mark = mark;
  this.message = formatError(this, false);

  // Include stack trace in error object
  if (Error.captureStackTrace) {
    // Chrome and NodeJS
    Error.captureStackTrace(this, this.constructor);
  } else {
    // FF, IE 10+ and Safari 6+. Fallback for others
    this.stack = (new Error()).stack || '';
  }
}


// Inherit from Error
YAMLException.prototype = Object.create(Error.prototype);
YAMLException.prototype.constructor = YAMLException;


YAMLException.prototype.toString = function toString(compact) {
  return this.name + ': ' + formatError(this, compact);
};


module.exports = YAMLException;

Version data entries

74 entries across 73 versions & 5 rubygems

Version Path
immosquare-cleaner-0.1.17 node_modules/js-yaml/lib/exception.js
immosquare-cleaner-0.1.16 node_modules/js-yaml/lib/exception.js
fattureincloud_ruby_sdk-2.0.18 scripts/node_modules/js-yaml/lib/exception.js
immosquare-cleaner-0.1.14 node_modules/js-yaml/lib/exception.js
immosquare-cleaner-0.1.13 node_modules/js-yaml/lib/exception.js
immosquare-cleaner-0.1.12 node_modules/js-yaml/lib/exception.js
immosquare-cleaner-0.1.11 node_modules/js-yaml/lib/exception.js
immosquare-cleaner-0.1.10 node_modules/js-yaml/lib/exception.js
immosquare-cleaner-0.1.9 node_modules/js-yaml/lib/exception.js
immosquare-cleaner-0.1.8 node_modules/js-yaml/lib/exception.js
immosquare-cleaner-0.1.7 node_modules/js-yaml/lib/exception.js
immosquare-cleaner-0.1.6 node_modules/js-yaml/lib/exception.js
decidim-0.26.8 packages/webpacker/node_modules/js-yaml/lib/exception.js
decidim-0.26.8 packages/eslint-config/node_modules/js-yaml/lib/exception.js
decidim-0.27.4 packages/webpacker/node_modules/js-yaml/lib/exception.js
fattureincloud_ruby_sdk-2.0.17 scripts/node_modules/js-yaml/lib/exception.js
fattureincloud_ruby_sdk-2.0.16 scripts/node_modules/js-yaml/lib/exception.js
fattureincloud_ruby_sdk-2.0.15 scripts/node_modules/js-yaml/lib/exception.js
fattureincloud_ruby_sdk-2.0.14 scripts/node_modules/js-yaml/lib/exception.js
fattureincloud_ruby_sdk-2.0.13 scripts/node_modules/js-yaml/lib/exception.js