Sebastian McKenzie ae7d5367f1 6.0.0
I'm extremely stupid and didn't commit as I go. To anyone reading this
I'm extremely sorry. A lot of these changes are very broad and I plan on
releasing Babel 6.0.0 today live on stage at Ember Camp London so I'm
afraid I couldn't wait. If you're ever in London I'll buy you a beer
(or assorted beverage!) to make up for it, also I'll kiss your feet and
give you a back massage, maybe.
2015-10-29 17:51:24 +00:00

226 lines
5.1 KiB
JavaScript

/* @flow */
import isInteger from "is-integer";
import isNumber from "lodash/lang/isNumber";
import * as t from "babel-types";
import n from "../node";
const SCIENTIFIC_NOTATION = /e/i;
export function UnaryExpression(node: Object) {
let needsSpace = /[a-z]$/.test(node.operator);
let 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);
}
export function DoExpression(node: Object) {
this.push("do");
this.space();
this.print(node.body, node);
}
export function ParenthesizedExpression(node: Object) {
this.push("(");
this.print(node.expression, node);
this.push(")");
}
export 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);
}
}
export 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);
}
export function NewExpression(node: Object) {
this.push("new ");
this.print(node.callee, node);
this.push("(");
this.printList(node.arguments, node);
this.push(")");
}
export function SequenceExpression(node: Object) {
this.printList(node.expressions, node);
}
export function ThisExpression() {
this.push("this");
}
export function Super() {
this.push("super");
}
export function Decorator(node: Object) {
this.push("@");
this.print(node.expression, node);
this.newline();
}
export function CallExpression(node: Object) {
this.print(node.callee, node);
this.push("(");
let isPrettyCall = node._prettyCall && !this.format.retainLines && !this.format.compact;
let separator;
if (isPrettyCall) {
separator = ",\n";
this.newline();
this.indent();
}
this.printList(node.arguments, node, { separator });
if (isPrettyCall) {
this.newline();
this.dedent();
}
this.push(")");
}
function buildYieldAwait(keyword: string) {
return function (node: Object) {
this.push(keyword);
if (node.delegate || node.all) {
this.push("*");
}
if (node.argument) {
this.push(" ");
let terminatorState = this.startTerminatorless();
this.print(node.argument, node);
this.endTerminatorless(terminatorState);
}
};
}
export let YieldExpression = buildYieldAwait("yield");
export let AwaitExpression = buildYieldAwait("await");
export function EmptyStatement() {
this.semicolon();
}
export function ExpressionStatement(node: Object) {
this.print(node.expression, node);
this.semicolon();
}
export function AssignmentPattern(node: Object) {
this.print(node.left, node);
this.push(" = ");
this.print(node.right, node);
}
export 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;;)`
let parens = this._inForStatementInit && node.operator === "in" &&
!n.needsParens(node, parent);
if (parens) {
this.push("(");
}
this.print(node.left, node);
let spaces = !this.format.compact || node.operator === "in" || node.operator === "instanceof";
spaces = true; // todo: https://github.com/babel/babel/issues/1835
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: "--" });
}
if (spaces) this.push(" ");
this.print(node.right, node);
if (parens) {
this.push(")");
}
}
export function BindExpression(node: Object) {
this.print(node.object, node);
this.push("::");
this.print(node.callee, node);
}
export {
AssignmentExpression as BinaryExpression,
AssignmentExpression as LogicalExpression
};
export 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");
}
let computed = node.computed;
if (t.isLiteral(node.property) && isNumber(node.property.value)) {
computed = true;
}
if (computed) {
this.push("[");
this.print(node.property, node);
this.push("]");
} else {
if (t.isLiteral(node.object)) {
let val = this.getPossibleRaw(node.object) || this._stringLiteral(node.object);
if (isInteger(+val) && !SCIENTIFIC_NOTATION.test(val) && !this.endsWith(".")) {
this.push(".");
}
}
this.push(".");
this.print(node.property, node);
}
}
export function MetaProperty(node: Object) {
this.print(node.meta, node);
this.push(".");
this.print(node.property, node);
}