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.52 node_modules/js-yaml/lib/exception.js
fattureincloud_ruby_sdk-2.1.1 scripts/node_modules/js-yaml/lib/exception.js
immosquare-cleaner-0.1.51 node_modules/js-yaml/lib/exception.js
immosquare-cleaner-0.1.50 node_modules/js-yaml/lib/exception.js
immosquare-cleaner-0.1.49 node_modules/js-yaml/lib/exception.js
immosquare-cleaner-0.1.48 node_modules/js-yaml/lib/exception.js
immosquare-cleaner-0.1.47 node_modules/js-yaml/lib/exception.js
immosquare-cleaner-0.1.46 node_modules/js-yaml/lib/exception.js
pcp-server-ruby-sdk-0.0.6 node_modules/js-yaml/lib/exception.js
pcp-server-ruby-sdk-0.1.0 node_modules/js-yaml/lib/exception.js
immosquare-cleaner-0.1.45 node_modules/js-yaml/lib/exception.js
immosquare-cleaner-0.1.44 node_modules/js-yaml/lib/exception.js
immosquare-cleaner-0.1.43 node_modules/js-yaml/lib/exception.js
immosquare-cleaner-0.1.42 node_modules/js-yaml/lib/exception.js
immosquare-cleaner-0.1.41 node_modules/js-yaml/lib/exception.js
immosquare-cleaner-0.1.40 node_modules/js-yaml/lib/exception.js
fattureincloud_ruby_sdk-2.1.0 scripts/node_modules/js-yaml/lib/exception.js
immosquare-cleaner-0.1.39 node_modules/js-yaml/lib/exception.js
immosquare-cleaner-0.1.38 node_modules/js-yaml/lib/exception.js
decidim-0.26.10 packages/webpacker/node_modules/js-yaml/lib/exception.js