1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
| "use strict";
|
| Object.defineProperty(exports, "__esModule", {
| value: true
| });
| exports.default = _default;
|
| var _helperExplodeAssignableExpression = require("@babel/helper-explode-assignable-expression");
|
| var _t = require("@babel/types");
|
| const {
| assignmentExpression,
| sequenceExpression
| } = _t;
|
| function _default(opts) {
| const {
| build,
| operator
| } = opts;
| const visitor = {
| 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(assignmentExpression("=", exploded.ref, build(exploded.uid, node.right)));
| path.replaceWith(sequenceExpression(nodes));
| },
|
| BinaryExpression(path) {
| const {
| node
| } = path;
|
| if (node.operator === operator) {
| path.replaceWith(build(node.left, node.right));
| }
| }
|
| };
| return visitor;
| }
|
|