mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
281 lines
6.2 KiB
JavaScript
281 lines
6.2 KiB
JavaScript
"use strict";
|
|
|
|
var _interopRequireWildcard = require("babel-runtime/helpers/interop-require-wildcard")["default"];
|
|
|
|
exports.__esModule = true;
|
|
exports.NullableTypeAnnotation = NullableTypeAnnotation;
|
|
exports.UpdateExpression = UpdateExpression;
|
|
exports.ObjectExpression = ObjectExpression;
|
|
exports.Binary = Binary;
|
|
exports.BinaryExpression = BinaryExpression;
|
|
exports.SequenceExpression = SequenceExpression;
|
|
exports.YieldExpression = YieldExpression;
|
|
exports.ClassExpression = ClassExpression;
|
|
exports.UnaryLike = UnaryLike;
|
|
exports.FunctionExpression = FunctionExpression;
|
|
exports.ArrowFunctionExpression = ArrowFunctionExpression;
|
|
exports.ConditionalExpression = ConditionalExpression;
|
|
exports.AssignmentExpression = AssignmentExpression;
|
|
|
|
var _babelTypes = require("babel-types");
|
|
|
|
var t = _interopRequireWildcard(_babelTypes);
|
|
|
|
var PRECEDENCE = {
|
|
"||": 0,
|
|
"&&": 1,
|
|
"|": 2,
|
|
"^": 3,
|
|
"&": 4,
|
|
"==": 5,
|
|
"===": 5,
|
|
"!=": 5,
|
|
"!==": 5,
|
|
"<": 6,
|
|
">": 6,
|
|
"<=": 6,
|
|
">=": 6,
|
|
"in": 6,
|
|
"instanceof": 6,
|
|
">>": 7,
|
|
"<<": 7,
|
|
">>>": 7,
|
|
"+": 8,
|
|
"-": 8,
|
|
"*": 9,
|
|
"/": 9,
|
|
"%": 9,
|
|
"**": 10
|
|
};
|
|
|
|
function NullableTypeAnnotation(node, parent) {
|
|
return t.isArrayTypeAnnotation(parent);
|
|
}
|
|
|
|
exports.FunctionTypeAnnotation = NullableTypeAnnotation;
|
|
|
|
function UpdateExpression(node, parent) {
|
|
if (t.isMemberExpression(parent) && parent.object === node) {
|
|
// (foo++).test()
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
function ObjectExpression(node, parent, printStack) {
|
|
if (t.isExpressionStatement(parent)) {
|
|
// ({ foo: "bar" });
|
|
return true;
|
|
}
|
|
|
|
return isFirstInStatement(printStack, true);
|
|
}
|
|
|
|
function Binary(node, parent) {
|
|
if ((t.isCallExpression(parent) || t.isNewExpression(parent)) && parent.callee === node) {
|
|
return true;
|
|
}
|
|
|
|
if (t.isUnaryLike(parent)) {
|
|
return true;
|
|
}
|
|
|
|
if (t.isMemberExpression(parent) && parent.object === node) {
|
|
return true;
|
|
}
|
|
|
|
if (t.isBinary(parent)) {
|
|
var parentOp = parent.operator;
|
|
var parentPos = PRECEDENCE[parentOp];
|
|
|
|
var nodeOp = node.operator;
|
|
var nodePos = PRECEDENCE[nodeOp];
|
|
|
|
if (parentPos > nodePos) {
|
|
return true;
|
|
}
|
|
|
|
// Logical expressions with the same precedence don't need parens.
|
|
if (parentPos === nodePos && parent.right === node && !t.isLogicalExpression(parent)) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
function BinaryExpression(node, parent) {
|
|
if (node.operator === "in") {
|
|
// let i = (1 in []);
|
|
if (t.isVariableDeclarator(parent)) {
|
|
return true;
|
|
}
|
|
|
|
// for ((1 in []);;);
|
|
if (t.isFor(parent)) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
function SequenceExpression(node, parent) {
|
|
if (t.isForStatement(parent)) {
|
|
// Although parentheses wouldn"t hurt around sequence
|
|
// expressions in the head of for loops, traditional style
|
|
// dictates that e.g. i++, j++ should not be wrapped with
|
|
// parentheses.
|
|
return false;
|
|
}
|
|
|
|
if (t.isExpressionStatement(parent) && parent.expression === node) {
|
|
return false;
|
|
}
|
|
|
|
if (t.isReturnStatement(parent)) {
|
|
return false;
|
|
}
|
|
|
|
if (t.isThrowStatement(parent)) {
|
|
return false;
|
|
}
|
|
|
|
if (t.isSwitchStatement(parent) && parent.discriminant === node) {
|
|
return false;
|
|
}
|
|
|
|
if (t.isWhileStatement(parent) && parent.test === node) {
|
|
return false;
|
|
}
|
|
|
|
if (t.isIfStatement(parent) && parent.test === node) {
|
|
return false;
|
|
}
|
|
|
|
if (t.isForInStatement(parent) && parent.right === node) {
|
|
return false;
|
|
}
|
|
|
|
// Otherwise err on the side of overparenthesization, adding
|
|
// explicit exceptions above if this proves overzealous.
|
|
return true;
|
|
}
|
|
|
|
function YieldExpression(node, parent) {
|
|
return t.isBinary(parent) || t.isUnaryLike(parent) || t.isCallExpression(parent) || t.isMemberExpression(parent) || t.isNewExpression(parent);
|
|
}
|
|
|
|
exports.AwaitExpression = YieldExpression;
|
|
|
|
function ClassExpression(node, parent) {
|
|
// (class {});
|
|
if (t.isExpressionStatement(parent)) {
|
|
return true;
|
|
}
|
|
|
|
// export default (class () {});
|
|
if (t.isExportDeclaration(parent)) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
function UnaryLike(node, parent) {
|
|
if (t.isMemberExpression(parent, { object: node })) {
|
|
return true;
|
|
}
|
|
|
|
if (t.isCallExpression(parent, { callee: node }) || t.isNewExpression(parent, { callee: node })) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
function FunctionExpression(node, parent, printStack) {
|
|
// (function () {});
|
|
if (t.isExpressionStatement(parent)) {
|
|
return true;
|
|
}
|
|
|
|
// export default (function () {});
|
|
if (t.isExportDeclaration(parent)) {
|
|
return true;
|
|
}
|
|
|
|
return isFirstInStatement(printStack);
|
|
}
|
|
|
|
function ArrowFunctionExpression(node, parent) {
|
|
// export default (function () {});
|
|
if (t.isExportDeclaration(parent)) {
|
|
return true;
|
|
}
|
|
|
|
if (t.isBinaryExpression(parent) || t.isLogicalExpression(parent)) {
|
|
return true;
|
|
}
|
|
|
|
if (t.isUnaryExpression(parent)) {
|
|
return true;
|
|
}
|
|
|
|
return UnaryLike(node, parent);
|
|
}
|
|
|
|
function ConditionalExpression(node, parent) {
|
|
if (t.isUnaryLike(parent)) {
|
|
return true;
|
|
}
|
|
|
|
if (t.isBinary(parent)) {
|
|
return true;
|
|
}
|
|
|
|
if (t.isConditionalExpression(parent, { test: node })) {
|
|
return true;
|
|
}
|
|
|
|
return UnaryLike(node, parent);
|
|
}
|
|
|
|
function AssignmentExpression(node) {
|
|
if (t.isObjectPattern(node.left)) {
|
|
return true;
|
|
} else {
|
|
return ConditionalExpression.apply(undefined, arguments);
|
|
}
|
|
}
|
|
|
|
// Walk up the print stack to deterimine if our node can come first
|
|
// in statement.
|
|
function isFirstInStatement(printStack) {
|
|
var considerArrow = arguments.length <= 1 || arguments[1] === undefined ? false : arguments[1];
|
|
|
|
var i = printStack.length - 1;
|
|
var node = printStack[i];
|
|
i--;
|
|
var parent = printStack[i];
|
|
while (i > 0) {
|
|
if (t.isExpressionStatement(parent, { expression: node })) {
|
|
return true;
|
|
}
|
|
|
|
if (considerArrow && t.isArrowFunctionExpression(parent, { body: node })) {
|
|
return true;
|
|
}
|
|
|
|
if (t.isCallExpression(parent, { callee: node }) || t.isSequenceExpression(parent) && parent.expressions[0] === node || t.isMemberExpression(parent, { object: node }) || t.isConditional(parent, { test: node }) || t.isBinary(parent, { left: node }) || t.isAssignmentExpression(parent, { left: node })) {
|
|
node = parent;
|
|
i--;
|
|
parent = printStack[i];
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
} |