| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.addDeprecatedGenerators = addDeprecatedGenerators;
- function addDeprecatedGenerators(PrinterClass) {
- const deprecatedBabel7Generators = {
- Noop() {},
- TSExpressionWithTypeArguments(node) {
- this.print(node.expression);
- this.print(node.typeParameters);
- },
- DecimalLiteral(node) {
- const raw = this.getPossibleRaw(node);
- if (!this.format.minified && raw !== undefined) {
- this.word(raw);
- return;
- }
- this.word(node.value + "m");
- },
- RecordExpression(node) {
- const props = node.properties;
- let startToken;
- let endToken;
- if (this.format.recordAndTupleSyntaxType === "bar") {
- startToken = "{|";
- endToken = "|}";
- } else if (this.format.recordAndTupleSyntaxType !== "hash" && this.format.recordAndTupleSyntaxType != null) {
- throw new Error(`The "recordAndTupleSyntaxType" generator option must be "bar" or "hash" (${JSON.stringify(this.format.recordAndTupleSyntaxType)} received).`);
- } else {
- startToken = "#{";
- endToken = "}";
- }
- this.token(startToken);
- if (props.length) {
- this.space();
- this.printList(props, this.shouldPrintTrailingComma(endToken), true, true);
- this.space();
- }
- this.token(endToken);
- },
- TupleExpression(node) {
- const elems = node.elements;
- const len = elems.length;
- let startToken;
- let endToken;
- if (this.format.recordAndTupleSyntaxType === "bar") {
- startToken = "[|";
- endToken = "|]";
- } else if (this.format.recordAndTupleSyntaxType === "hash") {
- startToken = "#[";
- endToken = "]";
- } else {
- throw new Error(`${this.format.recordAndTupleSyntaxType} is not a valid recordAndTuple syntax type`);
- }
- this.token(startToken);
- for (let i = 0; i < elems.length; i++) {
- const elem = elems[i];
- if (elem) {
- if (i > 0) this.space();
- this.print(elem);
- if (i < len - 1 || this.shouldPrintTrailingComma(endToken)) {
- this.token(",", false, i);
- }
- }
- }
- this.token(endToken);
- }
- };
- Object.assign(PrinterClass.prototype, deprecatedBabel7Generators);
- }
- //# sourceMappingURL=deprecated.js.map
|