mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
41 lines
939 B
JavaScript
41 lines
939 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = _default;
|
|
|
|
var _helperExplodeAssignableExpression = require("@babel/helper-explode-assignable-expression");
|
|
|
|
var t = require("@babel/types");
|
|
|
|
function _default(opts) {
|
|
const {
|
|
build,
|
|
operator
|
|
} = opts;
|
|
return {
|
|
AssignmentExpression(path) {
|
|
const {
|
|
node,
|
|
scope
|
|
} = path;
|
|
if (node.operator !== operator + "=") return;
|
|
const nodes = [];
|
|
const exploded = (0, _helperExplodeAssignableExpression.default)(node.left, nodes, this, scope);
|
|
nodes.push(t.assignmentExpression("=", exploded.ref, build(exploded.uid, node.right)));
|
|
path.replaceWith(t.sequenceExpression(nodes));
|
|
},
|
|
|
|
BinaryExpression(path) {
|
|
const {
|
|
node
|
|
} = path;
|
|
|
|
if (node.operator === operator) {
|
|
path.replaceWith(build(node.left, node.right));
|
|
}
|
|
}
|
|
|
|
};
|
|
} |