babel-core
Version:
Turn ES6 code into readable vanilla ES5 with source maps
188 lines (140 loc) • 4.62 kB
JavaScript
"use strict";
var _interopRequire = function (obj) { return obj && obj.__esModule ? obj["default"] : obj; };
var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } };
var repeating = _interopRequire(require("repeating"));
var trimRight = _interopRequire(require("trim-right"));
var isBoolean = _interopRequire(require("lodash/lang/isBoolean"));
var includes = _interopRequire(require("lodash/collection/includes"));
var isNumber = _interopRequire(require("lodash/lang/isNumber"));
var Buffer = (function () {
function Buffer(position, format) {
_classCallCheck(this, Buffer);
this.position = position;
this._indent = format.indent.base;
this.format = format;
this.buf = "";
}
Buffer.prototype.get = function get() {
return trimRight(this.buf);
};
Buffer.prototype.getIndent = function getIndent() {
if (this.format.compact || this.format.concise) {
return "";
} else {
return repeating(this.format.indent.style, this._indent);
}
};
Buffer.prototype.indentSize = function indentSize() {
return this.getIndent().length;
};
Buffer.prototype.indent = function indent() {
this._indent++;
};
Buffer.prototype.dedent = function dedent() {
this._indent--;
};
Buffer.prototype.semicolon = function semicolon() {
this.push(";");
};
Buffer.prototype.ensureSemicolon = function ensureSemicolon() {
if (!this.isLast(";")) this.semicolon();
};
Buffer.prototype.rightBrace = function rightBrace() {
this.newline(true);
this.push("}");
};
Buffer.prototype.keyword = function keyword(name) {
this.push(name);
this.space();
};
Buffer.prototype.space = function space() {
if (this.format.compact) return;
if (this.buf && !this.isLast(" ") && !this.isLast("\n")) {
this.push(" ");
}
};
Buffer.prototype.removeLast = function removeLast(cha) {
if (this.format.compact) return;
if (!this.isLast(cha)) return;
this.buf = this.buf.substr(0, this.buf.length - 1);
this.position.unshift(cha);
};
Buffer.prototype.newline = function newline(i, removeLast) {
if (this.format.compact) return;
if (this.format.concise) {
this.space();
return;
}
if (!removeLast) removeLast = false;
if (isNumber(i)) {
i = Math.min(2, i);
if (this.endsWith("{\n") || this.endsWith(":\n")) i--;
if (i <= 0) return;
while (i > 0) {
this._newline(removeLast);
i--;
}
return;
}
if (isBoolean(i)) {
removeLast = i;
}
this._newline(removeLast);
};
Buffer.prototype._newline = function _newline(removeLast) {
// never allow more than two lines
if (this.endsWith("\n\n")) return;
// remove the last newline
if (removeLast && this.isLast("\n")) this.removeLast("\n");
this.removeLast(" ");
this._removeSpacesAfterLastNewline();
this._push("\n");
};
/**
* If buffer ends with a newline and some spaces after it, trim those spaces.
*/
Buffer.prototype._removeSpacesAfterLastNewline = function _removeSpacesAfterLastNewline() {
var lastNewlineIndex = this.buf.lastIndexOf("\n");
if (lastNewlineIndex === -1) return;
var index = this.buf.length - 1;
while (index > lastNewlineIndex) {
if (this.buf[index] !== " ") {
break;
}
index--;
}
if (index === lastNewlineIndex) {
this.buf = this.buf.substring(0, index + 1);
}
};
Buffer.prototype.push = function push(str, noIndent) {
if (!this.format.compact && this._indent && !noIndent && str !== "\n") {
// we have an indent level and we aren't pushing a newline
var indent = this.getIndent();
// replace all newlines with newlines with the indentation
str = str.replace(/\n/g, "\n" + indent);
// we've got a newline before us so prepend on the indentation
if (this.isLast("\n")) this._push(indent);
}
this._push(str);
};
Buffer.prototype._push = function _push(str) {
this.position.push(str);
this.buf += str;
};
Buffer.prototype.endsWith = function endsWith(str) {
return this.buf.slice(-str.length) === str;
};
Buffer.prototype.isLast = function isLast(cha) {
if (this.format.compact) return false;
var buf = this.buf;
var last = buf[buf.length - 1];
if (Array.isArray(cha)) {
return includes(cha, last);
} else {
return cha === last;
}
};
return Buffer;
})();
module.exports = Buffer;