All files / node_modules/js-yaml/lib/js-yaml mark.js

71.43% Statements 5/7
0% Branches 0/8
0% Functions 0/2
71.43% Lines 5/7
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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 771x     1x                       1x                                                                             1x                                         1x  
'use strict';
 
 
var common = require('./common');
 
 
function Mark(name, buffer, position, line, column) {
  this.name     = name;
  this.buffer   = buffer;
  this.position = position;
  this.line     = line;
  this.column   = column;
}
 
 
Mark.prototype.getSnippet = function getSnippet(indent, maxLength) {
  var head, start, tail, end, snippet;
 
  if (!this.buffer) return null;
 
  indent = indent || 4;
  maxLength = maxLength || 75;
 
  head = '';
  start = this.position;
 
  while (start > 0 && '\x00\r\n\x85\u2028\u2029'.indexOf(this.buffer.charAt(start - 1)) === -1) {
    start -= 1;
    if (this.position - start > (maxLength / 2 - 1)) {
      head = ' ... ';
      start += 5;
      break;
    }
  }
 
  tail = '';
  end = this.position;
 
  while (end < this.buffer.length && '\x00\r\n\x85\u2028\u2029'.indexOf(this.buffer.charAt(end)) === -1) {
    end += 1;
    if (end - this.position > (maxLength / 2 - 1)) {
      tail = ' ... ';
      end -= 5;
      break;
    }
  }
 
  snippet = this.buffer.slice(start, end);
 
  return common.repeat(' ', indent) + head + snippet + tail + '\n' +
         common.repeat(' ', indent + this.position - start + head.length) + '^';
};
 
 
Mark.prototype.toString = function toString(compact) {
  var snippet, where = '';
 
  if (this.name) {
    where += 'in "' + this.name + '" ';
  }
 
  where += 'at line ' + (this.line + 1) + ', column ' + (this.column + 1);
 
  if (!compact) {
    snippet = this.getSnippet();
 
    if (snippet) {
      where += ':\n' + snippet;
    }
  }
 
  return where;
};
 
 
module.exports = Mark;