Blame view

node_modules/@babel/traverse/lib/scope/index.js 27.7 KB
ce4c83ff   wxy   初始提交
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
  "use strict";
  
  Object.defineProperty(exports, "__esModule", {
    value: true
  });
  exports.default = void 0;
  
  function _includes() {
    var data = _interopRequireDefault(require("lodash/includes"));
  
    _includes = function _includes() {
      return data;
    };
  
    return data;
  }
  
  function _repeat() {
    var data = _interopRequireDefault(require("lodash/repeat"));
  
    _repeat = function _repeat() {
      return data;
    };
  
    return data;
  }
  
  var _renamer = _interopRequireDefault(require("./lib/renamer"));
  
  var _index = _interopRequireDefault(require("../index"));
  
  function _defaults() {
    var data = _interopRequireDefault(require("lodash/defaults"));
  
    _defaults = function _defaults() {
      return data;
    };
  
    return data;
  }
  
  var _binding2 = _interopRequireDefault(require("./binding"));
  
  function _globals() {
    var data = _interopRequireDefault(require("globals"));
  
    _globals = function _globals() {
      return data;
    };
  
    return data;
  }
  
  function t() {
    var data = _interopRequireWildcard(require("@babel/types"));
  
    t = function t() {
      return data;
    };
  
    return data;
  }
  
  var _cache = require("../cache");
  
  function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }
  
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  
  function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
  
  function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
  
  function gatherNodeParts(node, parts) {
    if (t().isModuleDeclaration(node)) {
      if (node.source) {
        gatherNodeParts(node.source, parts);
      } else if (node.specifiers && node.specifiers.length) {
        var _arr = node.specifiers;
  
        for (var _i = 0; _i < _arr.length; _i++) {
          var specifier = _arr[_i];
          gatherNodeParts(specifier, parts);
        }
      } else if (node.declaration) {
        gatherNodeParts(node.declaration, parts);
      }
    } else if (t().isModuleSpecifier(node)) {
      gatherNodeParts(node.local, parts);
    } else if (t().isMemberExpression(node)) {
      gatherNodeParts(node.object, parts);
      gatherNodeParts(node.property, parts);
    } else if (t().isIdentifier(node)) {
      parts.push(node.name);
    } else if (t().isLiteral(node)) {
      parts.push(node.value);
    } else if (t().isCallExpression(node)) {
      gatherNodeParts(node.callee, parts);
    } else if (t().isObjectExpression(node) || t().isObjectPattern(node)) {
      var _arr2 = node.properties;
  
      for (var _i2 = 0; _i2 < _arr2.length; _i2++) {
        var prop = _arr2[_i2];
        gatherNodeParts(prop.key || prop.argument, parts);
      }
    }
  }
  
  var collectorVisitor = {
    For: function For(path) {
      var _arr3 = t().FOR_INIT_KEYS;
  
      for (var _i3 = 0; _i3 < _arr3.length; _i3++) {
        var key = _arr3[_i3];
        var declar = path.get(key);
  
        if (declar.isVar()) {
          var parentScope = path.scope.getFunctionParent() || path.scope.getProgramParent();
          parentScope.registerBinding("var", declar);
        }
      }
    },
    Declaration: function Declaration(path) {
      if (path.isBlockScoped()) return;
  
      if (path.isExportDeclaration() && path.get("declaration").isDeclaration()) {
        return;
      }
  
      var parent = path.scope.getFunctionParent() || path.scope.getProgramParent();
      parent.registerDeclaration(path);
    },
    ReferencedIdentifier: function ReferencedIdentifier(path, state) {
      state.references.push(path);
    },
    ForXStatement: function ForXStatement(path, state) {
      var left = path.get("left");
  
      if (left.isPattern() || left.isIdentifier()) {
        state.constantViolations.push(path);
      }
    },
    ExportDeclaration: {
      exit: function exit(path) {
        var node = path.node,
            scope = path.scope;
        var declar = node.declaration;
  
        if (t().isClassDeclaration(declar) || t().isFunctionDeclaration(declar)) {
          var _id = declar.id;
          if (!_id) return;
          var binding = scope.getBinding(_id.name);
          if (binding) binding.reference(path);
        } else if (t().isVariableDeclaration(declar)) {
          var _arr4 = declar.declarations;
  
          for (var _i4 = 0; _i4 < _arr4.length; _i4++) {
            var decl = _arr4[_i4];
            var ids = t().getBindingIdentifiers(decl);
  
            for (var name in ids) {
              var _binding = scope.getBinding(name);
  
              if (_binding) _binding.reference(path);
            }
          }
        }
      }
    },
    LabeledStatement: function LabeledStatement(path) {
      path.scope.getProgramParent().addGlobal(path.node);
      path.scope.getBlockParent().registerDeclaration(path);
    },
    AssignmentExpression: function AssignmentExpression(path, state) {
      state.assignments.push(path);
    },
    UpdateExpression: function UpdateExpression(path, state) {
      state.constantViolations.push(path);
    },
    UnaryExpression: function UnaryExpression(path, state) {
      if (path.node.operator === "delete") {
        state.constantViolations.push(path);
      }
    },
    BlockScoped: function BlockScoped(path) {
      var scope = path.scope;
      if (scope.path === path) scope = scope.parent;
      scope.getBlockParent().registerDeclaration(path);
    },
    ClassDeclaration: function ClassDeclaration(path) {
      var id = path.node.id;
      if (!id) return;
      var name = id.name;
      path.scope.bindings[name] = path.scope.getBinding(name);
    },
    Block: function Block(path) {
      var paths = path.get("body");
      var _arr5 = paths;
  
      for (var _i5 = 0; _i5 < _arr5.length; _i5++) {
        var bodyPath = _arr5[_i5];
  
        if (bodyPath.isFunctionDeclaration()) {
          path.scope.getBlockParent().registerDeclaration(bodyPath);
        }
      }
    }
  };
  var uid = 0;
  
  var Scope = function () {
    function Scope(path) {
      var node = path.node;
  
      var cached = _cache.scope.get(node);
  
      if (cached && cached.path === path) {
        return cached;
      }
  
      _cache.scope.set(node, this);
  
      this.uid = uid++;
      this.block = node;
      this.path = path;
      this.labels = new Map();
    }
  
    var _proto = Scope.prototype;
  
    _proto.traverse = function traverse(node, opts, state) {
      (0, _index.default)(node, opts, this, state, this.path);
    };
  
    _proto.generateDeclaredUidIdentifier = function generateDeclaredUidIdentifier(name) {
      var id = this.generateUidIdentifier(name);
      this.push({
        id: id
      });
      return t().cloneNode(id);
    };
  
    _proto.generateUidIdentifier = function generateUidIdentifier(name) {
      return t().identifier(this.generateUid(name));
    };
  
    _proto.generateUid = function generateUid(name) {
      if (name === void 0) {
        name = "temp";
      }
  
      name = t().toIdentifier(name).replace(/^_+/, "").replace(/[0-9]+$/g, "");
      var uid;
      var i = 0;
  
      do {
        uid = this._generateUid(name, i);
        i++;
      } while (this.hasLabel(uid) || this.hasBinding(uid) || this.hasGlobal(uid) || this.hasReference(uid));
  
      var program = this.getProgramParent();
      program.references[uid] = true;
      program.uids[uid] = true;
      return uid;
    };
  
    _proto._generateUid = function _generateUid(name, i) {
      var id = name;
      if (i > 1) id += i;
      return "_" + id;
    };
  
    _proto.generateUidBasedOnNode = function generateUidBasedOnNode(parent, defaultName) {
      var node = parent;
  
      if (t().isAssignmentExpression(parent)) {
        node = parent.left;
      } else if (t().isVariableDeclarator(parent)) {
        node = parent.id;
      } else if (t().isObjectProperty(node) || t().isObjectMethod(node)) {
        node = node.key;
      }
  
      var parts = [];
      gatherNodeParts(node, parts);
      var id = parts.join("$");
      id = id.replace(/^_/, "") || defaultName || "ref";
      return this.generateUid(id.slice(0, 20));
    };
  
    _proto.generateUidIdentifierBasedOnNode = function generateUidIdentifierBasedOnNode(parent, defaultName) {
      return t().identifier(this.generateUidBasedOnNode(parent, defaultName));
    };
  
    _proto.isStatic = function isStatic(node) {
      if (t().isThisExpression(node) || t().isSuper(node)) {
        return true;
      }
  
      if (t().isIdentifier(node)) {
        var binding = this.getBinding(node.name);
  
        if (binding) {
          return binding.constant;
        } else {
          return this.hasBinding(node.name);
        }
      }
  
      return false;
    };
  
    _proto.maybeGenerateMemoised = function maybeGenerateMemoised(node, dontPush) {
      if (this.isStatic(node)) {
        return null;
      } else {
        var _id2 = this.generateUidIdentifierBasedOnNode(node);
  
        if (!dontPush) {
          this.push({
            id: _id2
          });
          return t().cloneNode(_id2);
        }
  
        return _id2;
      }
    };
  
    _proto.checkBlockScopedCollisions = function checkBlockScopedCollisions(local, kind, name, id) {
      if (kind === "param") return;
      if (local.kind === "local") return;
      if (kind === "hoisted" && local.kind === "let") return;
      var duplicate = kind === "let" || local.kind === "let" || local.kind === "const" || local.kind === "module" || local.kind === "param" && (kind === "let" || kind === "const");
  
      if (duplicate) {
        throw this.hub.file.buildCodeFrameError(id, "Duplicate declaration \"" + name + "\"", TypeError);
      }
    };
  
    _proto.rename = function rename(oldName, newName, block) {
      var binding = this.getBinding(oldName);
  
      if (binding) {
        newName = newName || this.generateUidIdentifier(oldName).name;
        return new _renamer.default(binding, oldName, newName).rename(block);
      }
    };
  
    _proto._renameFromMap = function _renameFromMap(map, oldName, newName, value) {
      if (map[oldName]) {
        map[newName] = value;
        map[oldName] = null;
      }
    };
  
    _proto.dump = function dump() {
      var sep = (0, _repeat().default)("-", 60);
      console.log(sep);
      var scope = this;
  
      do {
        console.log("#", scope.block.type);
  
        for (var name in scope.bindings) {
          var binding = scope.bindings[name];
          console.log(" -", name, {
            constant: binding.constant,
            references: binding.references,
            violations: binding.constantViolations.length,
            kind: binding.kind
          });
        }
      } while (scope = scope.parent);
  
      console.log(sep);
    };
  
    _proto.toArray = function toArray(node, i) {
      var file = this.hub.file;
  
      if (t().isIdentifier(node)) {
        var binding = this.getBinding(node.name);
  
        if (binding && binding.constant && binding.path.isGenericType("Array")) {
          return node;
        }
      }
  
      if (t().isArrayExpression(node)) {
        return node;
      }
  
      if (t().isIdentifier(node, {
        name: "arguments"
      })) {
        return t().callExpression(t().memberExpression(t().memberExpression(t().memberExpression(t().identifier("Array"), t().identifier("prototype")), t().identifier("slice")), t().identifier("call")), [node]);
      }
  
      var helperName;
      var args = [node];
  
      if (i === true) {
        helperName = "toConsumableArray";
      } else if (i) {
        args.push(t().numericLiteral(i));
        helperName = "slicedToArray";
      } else {
        helperName = "toArray";
      }
  
      return t().callExpression(file.addHelper(helperName), args);
    };
  
    _proto.hasLabel = function hasLabel(name) {
      return !!this.getLabel(name);
    };
  
    _proto.getLabel = function getLabel(name) {
      return this.labels.get(name);
    };
  
    _proto.registerLabel = function registerLabel(path) {
      this.labels.set(path.node.label.name, path);
    };
  
    _proto.registerDeclaration = function registerDeclaration(path) {
      if (path.isFlow()) return;
  
      if (path.isLabeledStatement()) {
        this.registerLabel(path);
      } else if (path.isFunctionDeclaration()) {
        this.registerBinding("hoisted", path.get("id"), path);
      } else if (path.isVariableDeclaration()) {
        var declarations = path.get("declarations");
        var _arr6 = declarations;
  
        for (var _i6 = 0; _i6 < _arr6.length; _i6++) {
          var declar = _arr6[_i6];
          this.registerBinding(path.node.kind, declar);
        }
      } else if (path.isClassDeclaration()) {
        this.registerBinding("let", path);
      } else if (path.isImportDeclaration()) {
        var specifiers = path.get("specifiers");
        var _arr7 = specifiers;
  
        for (var _i7 = 0; _i7 < _arr7.length; _i7++) {
          var specifier = _arr7[_i7];
          this.registerBinding("module", specifier);
        }
      } else if (path.isExportDeclaration()) {
        var _declar = path.get("declaration");
  
        if (_declar.isClassDeclaration() || _declar.isFunctionDeclaration() || _declar.isVariableDeclaration()) {
          this.registerDeclaration(_declar);
        }
      } else {
        this.registerBinding("unknown", path);
      }
    };
  
    _proto.buildUndefinedNode = function buildUndefinedNode() {
      if (this.hasBinding("undefined")) {
        return t().unaryExpression("void", t().numericLiteral(0), true);
      } else {
        return t().identifier("undefined");
      }
    };
  
    _proto.registerConstantViolation = function registerConstantViolation(path) {
      var ids = path.getBindingIdentifiers();
  
      for (var name in ids) {
        var binding = this.getBinding(name);
        if (binding) binding.reassign(path);
      }
    };
  
    _proto.registerBinding = function registerBinding(kind, path, bindingPath) {
      if (bindingPath === void 0) {
        bindingPath = path;
      }
  
      if (!kind) throw new ReferenceError("no `kind`");
  
      if (path.isVariableDeclaration()) {
        var declarators = path.get("declarations");
  
        for (var _iterator = declarators, _isArray = Array.isArray(_iterator), _i8 = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) {
          var _ref;
  
          if (_isArray) {
            if (_i8 >= _iterator.length) break;
            _ref = _iterator[_i8++];
          } else {
            _i8 = _iterator.next();
            if (_i8.done) break;
            _ref = _i8.value;
          }
  
          var declar = _ref;
          this.registerBinding(kind, declar);
        }
  
        return;
      }
  
      var parent = this.getProgramParent();
      var ids = path.getBindingIdentifiers(true);
  
      for (var name in ids) {
        var _arr8 = ids[name];
  
        for (var _i9 = 0; _i9 < _arr8.length; _i9++) {
          var _id3 = _arr8[_i9];
          var local = this.getOwnBinding(name);
  
          if (local) {
            if (local.identifier === _id3) continue;
            this.checkBlockScopedCollisions(local, kind, name, _id3);
          }
  
          parent.references[name] = true;
  
          if (local) {
            this.registerConstantViolation(bindingPath);
          } else {
            this.bindings[name] = new _binding2.default({
              identifier: _id3,
              scope: this,
              path: bindingPath,
              kind: kind
            });
          }
        }
      }
    };
  
    _proto.addGlobal = function addGlobal(node) {
      this.globals[node.name] = node;
    };
  
    _proto.hasUid = function hasUid(name) {
      var scope = this;
  
      do {
        if (scope.uids[name]) return true;
      } while (scope = scope.parent);
  
      return false;
    };
  
    _proto.hasGlobal = function hasGlobal(name) {
      var scope = this;
  
      do {
        if (scope.globals[name]) return true;
      } while (scope = scope.parent);
  
      return false;
    };
  
    _proto.hasReference = function hasReference(name) {
      var scope = this;
  
      do {
        if (scope.references[name]) return true;
      } while (scope = scope.parent);
  
      return false;
    };
  
    _proto.isPure = function isPure(node, constantsOnly) {
      if (t().isIdentifier(node)) {
        var binding = this.getBinding(node.name);
        if (!binding) return false;
        if (constantsOnly) return binding.constant;
        return true;
      } else if (t().isClass(node)) {
        if (node.superClass && !this.isPure(node.superClass, constantsOnly)) {
          return false;
        }
  
        return this.isPure(node.body, constantsOnly);
      } else if (t().isClassBody(node)) {
        for (var _iterator2 = node.body, _isArray2 = Array.isArray(_iterator2), _i10 = 0, _iterator2 = _isArray2 ? _iterator2 : _iterator2[Symbol.iterator]();;) {
          var _ref2;
  
          if (_isArray2) {
            if (_i10 >= _iterator2.length) break;
            _ref2 = _iterator2[_i10++];
          } else {
            _i10 = _iterator2.next();
            if (_i10.done) break;
            _ref2 = _i10.value;
          }
  
          var method = _ref2;
          if (!this.isPure(method, constantsOnly)) return false;
        }
  
        return true;
      } else if (t().isBinary(node)) {
        return this.isPure(node.left, constantsOnly) && this.isPure(node.right, constantsOnly);
      } else if (t().isArrayExpression(node)) {
        var _arr9 = node.elements;
  
        for (var _i11 = 0; _i11 < _arr9.length; _i11++) {
          var elem = _arr9[_i11];
          if (!this.isPure(elem, constantsOnly)) return false;
        }
  
        return true;
      } else if (t().isObjectExpression(node)) {
        var _arr10 = node.properties;
  
        for (var _i12 = 0; _i12 < _arr10.length; _i12++) {
          var prop = _arr10[_i12];
          if (!this.isPure(prop, constantsOnly)) return false;
        }
  
        return true;
      } else if (t().isClassMethod(node)) {
        if (node.computed && !this.isPure(node.key, constantsOnly)) return false;
        if (node.kind === "get" || node.kind === "set") return false;
        return true;
      } else if (t().isClassProperty(node) || t().isObjectProperty(node)) {
        if (node.computed && !this.isPure(node.key, constantsOnly)) return false;
        return this.isPure(node.value, constantsOnly);
      } else if (t().isUnaryExpression(node)) {
        return this.isPure(node.argument, constantsOnly);
      } else if (t().isTaggedTemplateExpression(node)) {
        return t().matchesPattern(node.tag, "String.raw") && !this.hasBinding("String", true) && this.isPure(node.quasi, constantsOnly);
      } else if (t().isTemplateLiteral(node)) {
        var _arr11 = node.expressions;
  
        for (var _i13 = 0; _i13 < _arr11.length; _i13++) {
          var expression = _arr11[_i13];
          if (!this.isPure(expression, constantsOnly)) return false;
        }
  
        return true;
      } else {
        return t().isPureish(node);
      }
    };
  
    _proto.setData = function setData(key, val) {
      return this.data[key] = val;
    };
  
    _proto.getData = function getData(key) {
      var scope = this;
  
      do {
        var data = scope.data[key];
        if (data != null) return data;
      } while (scope = scope.parent);
    };
  
    _proto.removeData = function removeData(key) {
      var scope = this;
  
      do {
        var data = scope.data[key];
        if (data != null) scope.data[key] = null;
      } while (scope = scope.parent);
    };
  
    _proto.init = function init() {
      if (!this.references) this.crawl();
    };
  
    _proto.crawl = function crawl() {
      var path = this.path;
      this.references = Object.create(null);
      this.bindings = Object.create(null);
      this.globals = Object.create(null);
      this.uids = Object.create(null);
      this.data = Object.create(null);
  
      if (path.isLoop()) {
        var _arr12 = t().FOR_INIT_KEYS;
  
        for (var _i14 = 0; _i14 < _arr12.length; _i14++) {
          var key = _arr12[_i14];
          var node = path.get(key);
          if (node.isBlockScoped()) this.registerBinding(node.node.kind, node);
        }
      }
  
      if (path.isFunctionExpression() && path.has("id")) {
        if (!path.get("id").node[t().NOT_LOCAL_BINDING]) {
          this.registerBinding("local", path.get("id"), path);
        }
      }
  
      if (path.isClassExpression() && path.has("id")) {
        if (!path.get("id").node[t().NOT_LOCAL_BINDING]) {
          this.registerBinding("local", path);
        }
      }
  
      if (path.isFunction()) {
        var params = path.get("params");
  
        for (var _iterator3 = params, _isArray3 = Array.isArray(_iterator3), _i15 = 0, _iterator3 = _isArray3 ? _iterator3 : _iterator3[Symbol.iterator]();;) {
          var _ref3;
  
          if (_isArray3) {
            if (_i15 >= _iterator3.length) break;
            _ref3 = _iterator3[_i15++];
          } else {
            _i15 = _iterator3.next();
            if (_i15.done) break;
            _ref3 = _i15.value;
          }
  
          var param = _ref3;
          this.registerBinding("param", param);
        }
      }
  
      if (path.isCatchClause()) {
        this.registerBinding("let", path);
      }
  
      var parent = this.getProgramParent();
      if (parent.crawling) return;
      var state = {
        references: [],
        constantViolations: [],
        assignments: []
      };
      this.crawling = true;
      path.traverse(collectorVisitor, state);
      this.crawling = false;
  
      for (var _iterator4 = state.assignments, _isArray4 = Array.isArray(_iterator4), _i16 = 0, _iterator4 = _isArray4 ? _iterator4 : _iterator4[Symbol.iterator]();;) {
        var _ref4;
  
        if (_isArray4) {
          if (_i16 >= _iterator4.length) break;
          _ref4 = _iterator4[_i16++];
        } else {
          _i16 = _iterator4.next();
          if (_i16.done) break;
          _ref4 = _i16.value;
        }
  
        var _path = _ref4;
  
        var ids = _path.getBindingIdentifiers();
  
        var programParent = void 0;
  
        for (var name in ids) {
          if (_path.scope.getBinding(name)) continue;
          programParent = programParent || _path.scope.getProgramParent();
          programParent.addGlobal(ids[name]);
        }
  
        _path.scope.registerConstantViolation(_path);
      }
  
      for (var _iterator5 = state.references, _isArray5 = Array.isArray(_iterator5), _i17 = 0, _iterator5 = _isArray5 ? _iterator5 : _iterator5[Symbol.iterator]();;) {
        var _ref5;
  
        if (_isArray5) {
          if (_i17 >= _iterator5.length) break;
          _ref5 = _iterator5[_i17++];
        } else {
          _i17 = _iterator5.next();
          if (_i17.done) break;
          _ref5 = _i17.value;
        }
  
        var ref = _ref5;
        var binding = ref.scope.getBinding(ref.node.name);
  
        if (binding) {
          binding.reference(ref);
        } else {
          ref.scope.getProgramParent().addGlobal(ref.node);
        }
      }
  
      for (var _iterator6 = state.constantViolations, _isArray6 = Array.isArray(_iterator6), _i18 = 0, _iterator6 = _isArray6 ? _iterator6 : _iterator6[Symbol.iterator]();;) {
        var _ref6;
  
        if (_isArray6) {
          if (_i18 >= _iterator6.length) break;
          _ref6 = _iterator6[_i18++];
        } else {
          _i18 = _iterator6.next();
          if (_i18.done) break;
          _ref6 = _i18.value;
        }
  
        var _path2 = _ref6;
  
        _path2.scope.registerConstantViolation(_path2);
      }
    };
  
    _proto.push = function push(opts) {
      var path = this.path;
  
      if (!path.isBlockStatement() && !path.isProgram()) {
        path = this.getBlockParent().path;
      }
  
      if (path.isSwitchStatement()) {
        path = (this.getFunctionParent() || this.getProgramParent()).path;
      }
  
      if (path.isLoop() || path.isCatchClause() || path.isFunction()) {
        path.ensureBlock();
        path = path.get("body");
      }
  
      var unique = opts.unique;
      var kind = opts.kind || "var";
      var blockHoist = opts._blockHoist == null ? 2 : opts._blockHoist;
      var dataKey = "declaration:" + kind + ":" + blockHoist;
      var declarPath = !unique && path.getData(dataKey);
  
      if (!declarPath) {
        var declar = t().variableDeclaration(kind, []);
        declar._blockHoist = blockHoist;
  
        var _path$unshiftContaine = path.unshiftContainer("body", [declar]);
  
        declarPath = _path$unshiftContaine[0];
        if (!unique) path.setData(dataKey, declarPath);
      }
  
      var declarator = t().variableDeclarator(opts.id, opts.init);
      declarPath.node.declarations.push(declarator);
      this.registerBinding(kind, declarPath.get("declarations").pop());
    };
  
    _proto.getProgramParent = function getProgramParent() {
      var scope = this;
  
      do {
        if (scope.path.isProgram()) {
          return scope;
        }
      } while (scope = scope.parent);
  
      throw new Error("Couldn't find a Program");
    };
  
    _proto.getFunctionParent = function getFunctionParent() {
      var scope = this;
  
      do {
        if (scope.path.isFunctionParent()) {
          return scope;
        }
      } while (scope = scope.parent);
  
      return null;
    };
  
    _proto.getBlockParent = function getBlockParent() {
      var scope = this;
  
      do {
        if (scope.path.isBlockParent()) {
          return scope;
        }
      } while (scope = scope.parent);
  
      throw new Error("We couldn't find a BlockStatement, For, Switch, Function, Loop or Program...");
    };
  
    _proto.getAllBindings = function getAllBindings() {
      var ids = Object.create(null);
      var scope = this;
  
      do {
        (0, _defaults().default)(ids, scope.bindings);
        scope = scope.parent;
      } while (scope);
  
      return ids;
    };
  
    _proto.getAllBindingsOfKind = function getAllBindingsOfKind() {
      var ids = Object.create(null);
      var _arr13 = arguments;
  
      for (var _i19 = 0; _i19 < _arr13.length; _i19++) {
        var kind = _arr13[_i19];
        var scope = this;
  
        do {
          for (var name in scope.bindings) {
            var binding = scope.bindings[name];
            if (binding.kind === kind) ids[name] = binding;
          }
  
          scope = scope.parent;
        } while (scope);
      }
  
      return ids;
    };
  
    _proto.bindingIdentifierEquals = function bindingIdentifierEquals(name, node) {
      return this.getBindingIdentifier(name) === node;
    };
  
    _proto.getBinding = function getBinding(name) {
      var scope = this;
  
      do {
        var binding = scope.getOwnBinding(name);
        if (binding) return binding;
      } while (scope = scope.parent);
    };
  
    _proto.getOwnBinding = function getOwnBinding(name) {
      return this.bindings[name];
    };
  
    _proto.getBindingIdentifier = function getBindingIdentifier(name) {
      var info = this.getBinding(name);
      return info && info.identifier;
    };
  
    _proto.getOwnBindingIdentifier = function getOwnBindingIdentifier(name) {
      var binding = this.bindings[name];
      return binding && binding.identifier;
    };
  
    _proto.hasOwnBinding = function hasOwnBinding(name) {
      return !!this.getOwnBinding(name);
    };
  
    _proto.hasBinding = function hasBinding(name, noGlobals) {
      if (!name) return false;
      if (this.hasOwnBinding(name)) return true;
      if (this.parentHasBinding(name, noGlobals)) return true;
      if (this.hasUid(name)) return true;
      if (!noGlobals && (0, _includes().default)(Scope.globals, name)) return true;
      if (!noGlobals && (0, _includes().default)(Scope.contextVariables, name)) return true;
      return false;
    };
  
    _proto.parentHasBinding = function parentHasBinding(name, noGlobals) {
      return this.parent && this.parent.hasBinding(name, noGlobals);
    };
  
    _proto.moveBindingTo = function moveBindingTo(name, scope) {
      var info = this.getBinding(name);
  
      if (info) {
        info.scope.removeOwnBinding(name);
        info.scope = scope;
        scope.bindings[name] = info;
      }
    };
  
    _proto.removeOwnBinding = function removeOwnBinding(name) {
      delete this.bindings[name];
    };
  
    _proto.removeBinding = function removeBinding(name) {
      var info = this.getBinding(name);
  
      if (info) {
        info.scope.removeOwnBinding(name);
      }
  
      var scope = this;
  
      do {
        if (scope.uids[name]) {
          scope.uids[name] = false;
        }
      } while (scope = scope.parent);
    };
  
    _createClass(Scope, [{
      key: "parent",
      get: function get() {
        var parent = this.path.findParent(function (p) {
          return p.isScope();
        });
        return parent && parent.scope;
      }
    }, {
      key: "parentBlock",
      get: function get() {
        return this.path.parent;
      }
    }, {
      key: "hub",
      get: function get() {
        return this.path.hub;
      }
    }]);
  
    return Scope;
  }();
  
  exports.default = Scope;
  Scope.globals = Object.keys(_globals().default.builtin);
  Scope.contextVariables = ["arguments", "undefined", "Infinity", "NaN"];