mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
280 lines
7.0 KiB
JavaScript
280 lines
7.0 KiB
JavaScript
/* eslint max-len: 0 */
|
|
|
|
"use strict";
|
|
|
|
var _interopRequireDefault = require("babel-runtime/helpers/interop-require-default")["default"];
|
|
|
|
var _interopRequireWildcard = require("babel-runtime/helpers/interop-require-wildcard")["default"];
|
|
|
|
exports.__esModule = true;
|
|
exports.UnaryExpression = UnaryExpression;
|
|
exports.DoExpression = DoExpression;
|
|
exports.ParenthesizedExpression = ParenthesizedExpression;
|
|
exports.UpdateExpression = UpdateExpression;
|
|
exports.ConditionalExpression = ConditionalExpression;
|
|
exports.NewExpression = NewExpression;
|
|
exports.SequenceExpression = SequenceExpression;
|
|
exports.ThisExpression = ThisExpression;
|
|
exports.Super = Super;
|
|
exports.Decorator = Decorator;
|
|
exports.CallExpression = CallExpression;
|
|
exports.EmptyStatement = EmptyStatement;
|
|
exports.ExpressionStatement = ExpressionStatement;
|
|
exports.AssignmentPattern = AssignmentPattern;
|
|
exports.AssignmentExpression = AssignmentExpression;
|
|
exports.BindExpression = BindExpression;
|
|
exports.MemberExpression = MemberExpression;
|
|
exports.MetaProperty = MetaProperty;
|
|
|
|
var _isInteger = require("is-integer");
|
|
|
|
var _isInteger2 = _interopRequireDefault(_isInteger);
|
|
|
|
var _lodashLangIsNumber = require("lodash/lang/isNumber");
|
|
|
|
var _lodashLangIsNumber2 = _interopRequireDefault(_lodashLangIsNumber);
|
|
|
|
var _babelTypes = require("babel-types");
|
|
|
|
var t = _interopRequireWildcard(_babelTypes);
|
|
|
|
var _node = require("../node");
|
|
|
|
var n = _interopRequireWildcard(_node);
|
|
|
|
var SCIENTIFIC_NOTATION = /e/i;
|
|
var ZERO_DECIMAL_INTEGER = /\.0+$/;
|
|
var NON_DECIMAL_LITERAL = /^0[box]/;
|
|
|
|
function UnaryExpression(node) {
|
|
var needsSpace = /[a-z]$/.test(node.operator);
|
|
var arg = node.argument;
|
|
|
|
if (t.isUpdateExpression(arg) || t.isUnaryExpression(arg)) {
|
|
needsSpace = true;
|
|
}
|
|
|
|
if (t.isUnaryExpression(arg) && arg.operator === "!") {
|
|
needsSpace = false;
|
|
}
|
|
|
|
this.push(node.operator);
|
|
if (needsSpace) this.push(" ");
|
|
this.print(node.argument, node);
|
|
}
|
|
|
|
function DoExpression(node) {
|
|
this.push("do");
|
|
this.space();
|
|
this.print(node.body, node);
|
|
}
|
|
|
|
function ParenthesizedExpression(node) {
|
|
this.push("(");
|
|
this.print(node.expression, node);
|
|
this.push(")");
|
|
}
|
|
|
|
function UpdateExpression(node) {
|
|
if (node.prefix) {
|
|
this.push(node.operator);
|
|
this.print(node.argument, node);
|
|
} else {
|
|
this.print(node.argument, node);
|
|
this.push(node.operator);
|
|
}
|
|
}
|
|
|
|
function ConditionalExpression(node) {
|
|
this.print(node.test, node);
|
|
this.space();
|
|
this.push("?");
|
|
this.space();
|
|
this.print(node.consequent, node);
|
|
this.space();
|
|
this.push(":");
|
|
this.space();
|
|
this.print(node.alternate, node);
|
|
}
|
|
|
|
function NewExpression(node, parent) {
|
|
this.push("new ");
|
|
this.print(node.callee, node);
|
|
if (node.arguments.length === 0 && this.format.minified && !t.isCallExpression(parent, { callee: node }) && !t.isMemberExpression(parent) && !t.isNewExpression(parent)) return;
|
|
|
|
this.push("(");
|
|
this.printList(node.arguments, node);
|
|
this.push(")");
|
|
}
|
|
|
|
function SequenceExpression(node) {
|
|
this.printList(node.expressions, node);
|
|
}
|
|
|
|
function ThisExpression() {
|
|
this.push("this");
|
|
}
|
|
|
|
function Super() {
|
|
this.push("super");
|
|
}
|
|
|
|
function Decorator(node) {
|
|
this.push("@");
|
|
this.print(node.expression, node);
|
|
this.newline();
|
|
}
|
|
|
|
function CallExpression(node) {
|
|
this.print(node.callee, node);
|
|
if (node.loc) this.printAuxAfterComment();
|
|
|
|
this.push("(");
|
|
|
|
var isPrettyCall = node._prettyCall && !this.format.retainLines && !this.format.compact;
|
|
|
|
var separator = undefined;
|
|
if (isPrettyCall) {
|
|
separator = ",\n";
|
|
this.newline();
|
|
this.indent();
|
|
}
|
|
|
|
this.printList(node.arguments, node, { separator: separator });
|
|
|
|
if (isPrettyCall) {
|
|
this.newline();
|
|
this.dedent();
|
|
}
|
|
|
|
this.push(")");
|
|
}
|
|
|
|
function buildYieldAwait(keyword) {
|
|
return function (node) {
|
|
this.push(keyword);
|
|
|
|
if (node.delegate) {
|
|
this.push("*");
|
|
}
|
|
|
|
if (node.argument) {
|
|
this.push(" ");
|
|
var terminatorState = this.startTerminatorless();
|
|
this.print(node.argument, node);
|
|
this.endTerminatorless(terminatorState);
|
|
}
|
|
};
|
|
}
|
|
|
|
var YieldExpression = buildYieldAwait("yield");
|
|
exports.YieldExpression = YieldExpression;
|
|
var AwaitExpression = buildYieldAwait("await");
|
|
|
|
exports.AwaitExpression = AwaitExpression;
|
|
|
|
function EmptyStatement() {
|
|
this._lastPrintedIsEmptyStatement = true;
|
|
this.semicolon();
|
|
}
|
|
|
|
function ExpressionStatement(node) {
|
|
this.print(node.expression, node);
|
|
this.semicolon();
|
|
}
|
|
|
|
function AssignmentPattern(node) {
|
|
this.print(node.left, node);
|
|
this.space();
|
|
this.push("=");
|
|
this.space();
|
|
this.print(node.right, node);
|
|
}
|
|
|
|
function AssignmentExpression(node, parent) {
|
|
// Somewhere inside a for statement `init` node but doesn't usually
|
|
// needs a paren except for `in` expressions: `for (a in b ? a : b;;)`
|
|
var parens = this._inForStatementInitCounter && node.operator === "in" && !n.needsParens(node, parent);
|
|
|
|
if (parens) {
|
|
this.push("(");
|
|
}
|
|
|
|
this.print(node.left, node);
|
|
|
|
var spaces = !this.format.compact || node.operator === "in" || node.operator === "instanceof";
|
|
if (spaces) this.push(" ");
|
|
|
|
this.push(node.operator);
|
|
|
|
if (!spaces) {
|
|
// space is mandatory to avoid outputting <!--
|
|
// http://javascript.spec.whatwg.org/#comment-syntax
|
|
spaces = node.operator === "<" && t.isUnaryExpression(node.right, { prefix: true, operator: "!" }) && t.isUnaryExpression(node.right.argument, { prefix: true, operator: "--" });
|
|
|
|
// Need spaces for operators of the same kind to avoid: `a+++b`
|
|
if (!spaces) {
|
|
var right = getLeftMost(node.right);
|
|
spaces = t.isUnaryExpression(right, { prefix: true, operator: node.operator }) || t.isUpdateExpression(right, { prefix: true, operator: node.operator + node.operator });
|
|
}
|
|
}
|
|
|
|
if (spaces) this.push(" ");
|
|
|
|
this.print(node.right, node);
|
|
|
|
if (parens) {
|
|
this.push(")");
|
|
}
|
|
}
|
|
|
|
function BindExpression(node) {
|
|
this.print(node.object, node);
|
|
this.push("::");
|
|
this.print(node.callee, node);
|
|
}
|
|
|
|
exports.BinaryExpression = AssignmentExpression;
|
|
exports.LogicalExpression = AssignmentExpression;
|
|
|
|
function MemberExpression(node) {
|
|
this.print(node.object, node);
|
|
|
|
if (!node.computed && t.isMemberExpression(node.property)) {
|
|
throw new TypeError("Got a MemberExpression for MemberExpression property");
|
|
}
|
|
|
|
var computed = node.computed;
|
|
if (t.isLiteral(node.property) && _lodashLangIsNumber2["default"](node.property.value)) {
|
|
computed = true;
|
|
}
|
|
|
|
if (computed) {
|
|
this.push("[");
|
|
this.print(node.property, node);
|
|
this.push("]");
|
|
} else {
|
|
if (t.isNumericLiteral(node.object)) {
|
|
var val = this.getPossibleRaw(node.object) || node.object.value;
|
|
if (_isInteger2["default"](+val) && !NON_DECIMAL_LITERAL.test(val) && !SCIENTIFIC_NOTATION.test(val) && !ZERO_DECIMAL_INTEGER.test(val) && !this.endsWith(".")) {
|
|
this.push(".");
|
|
}
|
|
}
|
|
|
|
this.push(".");
|
|
this.print(node.property, node);
|
|
}
|
|
}
|
|
|
|
function MetaProperty(node) {
|
|
this.print(node.meta, node);
|
|
this.push(".");
|
|
this.print(node.property, node);
|
|
}
|
|
|
|
function getLeftMost(binaryExpr) {
|
|
if (!t.isBinaryExpression(binaryExpr)) {
|
|
return binaryExpr;
|
|
}
|
|
return getLeftMost(binaryExpr.left);
|
|
} |