UNPKG

twreporter-react

Version:

React-Redux site for The Reporter Foundation in Taiwan

279 lines (218 loc) 7.36 kB
/* @flow */ "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+$/; function UnaryExpression(node /*: Object*/) { 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 /*: Object*/) { this.push("do"); this.space(); this.print(node.body, node); } function ParenthesizedExpression(node /*: Object*/) { this.push("("); this.print(node.expression, node); this.push(")"); } function UpdateExpression(node /*: Object*/) { 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 /*: Object*/) { 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 /*: Object*/, parent /*: Object*/) { 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 /*: Object*/) { this.printList(node.expressions, node); } function ThisExpression() { this.push("this"); } function Super() { this.push("super"); } function Decorator(node /*: Object*/) { this.push("@"); this.print(node.expression, node); this.newline(); } function CallExpression(node /*: Object*/) { 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 /*: string*/) { return function (node /*: Object*/) { 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 /*: Object*/) { this.print(node.expression, node); this.semicolon(); } function AssignmentPattern(node /*: Object*/) { this.print(node.left, node); this.space(); this.push("="); this.space(); this.print(node.right, node); } function AssignmentExpression(node /*: Object*/, parent /*: Object*/) { // 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 /*: Object*/) { this.print(node.object, node); this.push("::"); this.print(node.callee, node); } exports.BinaryExpression = AssignmentExpression; exports.LogicalExpression = AssignmentExpression; function MemberExpression(node /*: Object*/) { 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) && !SCIENTIFIC_NOTATION.test(val) && !ZERO_DECIMAL_INTEGER.test(val) && !this.endsWith(".")) { this.push("."); } } this.push("."); this.print(node.property, node); } } function MetaProperty(node /*: Object*/) { 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); }