babel-source 5.2.7 → 5.2.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +8 -8
  2. data/lib/babel.js +255 -366
  3. data/lib/babel/source.rb +2 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- OWIwMDhmNmVhOTFjZDRhMzc3YTMxZGExNGRiN2E1ZThkZmEzOWU2ZA==
4
+ OTcxNzQzMzA4YTJhNDRmMzRjYjdjODZkOTc3MGE2YmVjZjU4YzNiZg==
5
5
  data.tar.gz: !binary |-
6
- MTYxOWM4NTM1YmI2NzIzZjE5NmZkODI1ZjYyNWVmMzAxM2ZlYjNlNw==
6
+ MDM2OGIxMmYxN2Q4NDg0NTZmYWVlM2ViNmJmZjIxY2Y0ZjkwNDY5NQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- MWZkYzk1MjAwOGY1ZDBjZDQwMGRjMjlmZTI1MzMzOGYxMWYxYjc2MWNhYjA1
10
- OGM4OTBhODVjZGMxYTBlYjMzYTZjNzM1M2RmZGQ2YmQxMjFhY2JiMzU2OGZj
11
- YzEzODMyMjkxYzlhY2NkYmRmMzU5NTkzYzA0YzllOWUzNmI4ZmM=
9
+ ZGFiNjQwYTI1ZGJhOTZlMDMyMDI1YTFmNmIyOTRkYjQyZGUzOGQ1YjdkMTg4
10
+ OTQ2ZmYyZDA5NTkzODE0NWVkNWEyZTZiNGViYjczMTc5NDc3Yzc4MmJhMGY1
11
+ NWFkYTcyYmFmNjU0ZDhiZjc2ZTM5N2FhNjI1YjEyMTMxZDk0Mzk=
12
12
  data.tar.gz: !binary |-
13
- ZjVkYmZiZWZiMjNlZTg1YWM3ZjU1MGRjZjc1NjEzMjljMTI0YTYxZjNmZWE5
14
- MjM4NWZjNTczYmJkMzMwNmExYjBjZjQzOTViZDZmZDI4YTFlMDEwYTJiNmMw
15
- NTYwYTIzZGFhNDUwYjc5YzJhN2UyNmZjN2U1Y2QzNDQ3YTBhNDU=
13
+ NmRjNzRhMTVmYzNhZjk0NGMzNjZjMTRmYjIzZjM2M2QyYzgyYTUwYTAyMDgz
14
+ MGNjOGQ5MjNkMTNkNGU5M2QwYzk1NTUyNzg1ZTQ0Y2VmMzM4ZmQ3NGI3Yjcy
15
+ ZDZmNGJjMTYzY2VmNjNhOTI5ZDBhZjEzODcxYWE4ZDlhZDRhM2Q=
@@ -5070,7 +5070,7 @@ if (global.addEventListener) {
5070
5070
  global.attachEvent("onload", runScripts);
5071
5071
  }
5072
5072
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
5073
- },{"../../../package":510,"../transformation":71,"../transformation/file/options":55,"./node":21}],21:[function(require,module,exports){
5073
+ },{"../../../package":508,"../transformation":71,"../transformation/file/options":55,"./node":21}],21:[function(require,module,exports){
5074
5074
  "use strict";
5075
5075
 
5076
5076
  exports.__esModule = true;
@@ -5078,6 +5078,7 @@ exports.register = register;
5078
5078
  exports.polyfill = polyfill;
5079
5079
  exports.transformFile = transformFile;
5080
5080
  exports.transformFileSync = transformFileSync;
5081
+ exports.parse = parse;
5081
5082
 
5082
5083
  function _interopRequire(obj) { return obj && obj.__esModule ? obj["default"] : obj; }
5083
5084
 
@@ -5138,10 +5139,6 @@ exports.buildExternalHelpers = _interopRequire(_default5);
5138
5139
  var _version = require("../../../package");
5139
5140
 
5140
5141
  exports.version = _version.version;
5141
-
5142
- var _all = require("../helpers/parse");
5143
-
5144
- exports.parse = _all.all;
5145
5142
  exports.types = t;
5146
5143
 
5147
5144
  function register(opts) {
@@ -5183,7 +5180,26 @@ function transformFileSync(filename) {
5183
5180
  opts.filename = filename;
5184
5181
  return _transform2["default"](_fs2["default"].readFileSync(filename), opts);
5185
5182
  }
5186
- },{"../../../package":510,"../../acorn":1,"../helpers/parse":46,"../polyfill":49,"../tools/build-external-helpers":50,"../transformation":71,"../transformation/file/options":55,"../transformation/transformer":85,"../transformation/transformer-pipeline":84,"../traversal":158,"../types":167,"../util":171,"./register/node-polyfill":23,"fs":186,"lodash/lang/isFunction":421}],22:[function(require,module,exports){
5183
+
5184
+ function parse(code) {
5185
+ var opts = arguments[1] === undefined ? {} : arguments[1];
5186
+
5187
+ opts.allowHashBang = true;
5188
+ opts.sourceType = "module";
5189
+ opts.ecmaVersion = Infinity;
5190
+ opts.plugins = {
5191
+ flow: true,
5192
+ jsx: true
5193
+ };
5194
+ opts.features = {};
5195
+
5196
+ for (var key in _transform2["default"].pipeline.transformers) {
5197
+ opts.features[key] = true;
5198
+ }
5199
+
5200
+ return acorn.parse(code, opts);
5201
+ }
5202
+ },{"../../../package":508,"../../acorn":1,"../polyfill":49,"../tools/build-external-helpers":50,"../transformation":71,"../transformation/file/options":55,"../transformation/transformer":85,"../transformation/transformer-pipeline":84,"../traversal":158,"../types":167,"../util":171,"./register/node-polyfill":23,"fs":186,"lodash/lang/isFunction":419}],22:[function(require,module,exports){
5187
5203
  "use strict";
5188
5204
 
5189
5205
  exports.__esModule = true;
@@ -5412,7 +5428,7 @@ var Buffer = (function () {
5412
5428
 
5413
5429
  exports["default"] = Buffer;
5414
5430
  module.exports = exports["default"];
5415
- },{"lodash/collection/includes":335,"lodash/lang/isBoolean":419,"lodash/lang/isNumber":423,"repeating":492,"trim-right":509}],25:[function(require,module,exports){
5431
+ },{"lodash/collection/includes":334,"lodash/lang/isBoolean":417,"lodash/lang/isNumber":421,"repeating":490,"trim-right":507}],25:[function(require,module,exports){
5416
5432
  "use strict";
5417
5433
 
5418
5434
  exports.__esModule = true;
@@ -5758,7 +5774,7 @@ function MetaProperty(node, print) {
5758
5774
  this.push(".");
5759
5775
  print(node.property);
5760
5776
  }
5761
- },{"../../types":167,"is-integer":319,"lodash/lang/isNumber":423}],29:[function(require,module,exports){
5777
+ },{"../../types":167,"is-integer":319,"lodash/lang/isNumber":421}],29:[function(require,module,exports){
5762
5778
  "use strict";
5763
5779
 
5764
5780
  exports.__esModule = true;
@@ -6640,7 +6656,7 @@ function VariableDeclarator(node, print) {
6640
6656
  print(node.init);
6641
6657
  }
6642
6658
  }
6643
- },{"../../types":167,"repeating":492}],34:[function(require,module,exports){
6659
+ },{"../../types":167,"repeating":490}],34:[function(require,module,exports){
6644
6660
  "use strict";
6645
6661
 
6646
6662
  exports.__esModule = true;
@@ -7290,7 +7306,7 @@ module.exports = function (ast, opts, code) {
7290
7306
  };
7291
7307
 
7292
7308
  module.exports.CodeGenerator = CodeGenerator;
7293
- },{"../messages":47,"../types":167,"./buffer":24,"./generators/base":25,"./generators/classes":26,"./generators/comprehensions":27,"./generators/expressions":28,"./generators/flow":29,"./generators/jsx":30,"./generators/methods":31,"./generators/modules":32,"./generators/statements":33,"./generators/template-literals":34,"./generators/types":35,"./node":37,"./position":40,"./source-map":41,"./whitespace":42,"detect-indent":310,"lodash/collection/each":332,"lodash/object/extend":432,"repeating":492}],37:[function(require,module,exports){
7309
+ },{"../messages":47,"../types":167,"./buffer":24,"./generators/base":25,"./generators/classes":26,"./generators/comprehensions":27,"./generators/expressions":28,"./generators/flow":29,"./generators/jsx":30,"./generators/methods":31,"./generators/modules":32,"./generators/statements":33,"./generators/template-literals":34,"./generators/types":35,"./node":37,"./position":40,"./source-map":41,"./whitespace":42,"detect-indent":310,"lodash/collection/each":332,"lodash/object/extend":430,"repeating":490}],37:[function(require,module,exports){
7294
7310
  "use strict";
7295
7311
 
7296
7312
  exports.__esModule = true;
@@ -7428,7 +7444,7 @@ _each2["default"](Node, function (fn, key) {
7428
7444
  };
7429
7445
  });
7430
7446
  module.exports = exports["default"];
7431
- },{"../../types":167,"./parentheses":38,"./whitespace":39,"lodash/collection/each":332,"lodash/collection/some":338}],38:[function(require,module,exports){
7447
+ },{"../../types":167,"./parentheses":38,"./whitespace":39,"lodash/collection/each":332,"lodash/collection/some":337}],38:[function(require,module,exports){
7432
7448
  "use strict";
7433
7449
 
7434
7450
  exports.__esModule = true;
@@ -7789,7 +7805,7 @@ _each2["default"]({
7789
7805
  };
7790
7806
  });
7791
7807
  });
7792
- },{"../../types":167,"lodash/collection/each":332,"lodash/collection/map":336,"lodash/lang/isBoolean":419}],40:[function(require,module,exports){
7808
+ },{"../../types":167,"lodash/collection/each":332,"lodash/collection/map":335,"lodash/lang/isBoolean":417}],40:[function(require,module,exports){
7793
7809
  "use strict";
7794
7810
 
7795
7811
  exports.__esModule = true;
@@ -7907,7 +7923,7 @@ var SourceMap = (function () {
7907
7923
 
7908
7924
  exports["default"] = SourceMap;
7909
7925
  module.exports = exports["default"];
7910
- },{"../types":167,"source-map":496}],42:[function(require,module,exports){
7926
+ },{"../types":167,"source-map":494}],42:[function(require,module,exports){
7911
7927
  "use strict";
7912
7928
 
7913
7929
  exports.__esModule = true;
@@ -8038,7 +8054,7 @@ var Whitespace = (function () {
8038
8054
 
8039
8055
  exports["default"] = Whitespace;
8040
8056
  module.exports = exports["default"];
8041
- },{"lodash/collection/sortBy":339}],43:[function(require,module,exports){
8057
+ },{"lodash/collection/sortBy":338}],43:[function(require,module,exports){
8042
8058
  "use strict";
8043
8059
 
8044
8060
  exports.__esModule = true;
@@ -8158,7 +8174,7 @@ exports["default"] = function (lines, lineNumber, colNumber) {
8158
8174
 
8159
8175
  ;
8160
8176
  module.exports = exports["default"];
8161
- },{"chalk":214,"esutils":316,"js-tokens":322,"line-numbers":324,"repeating":492}],44:[function(require,module,exports){
8177
+ },{"chalk":214,"esutils":316,"js-tokens":322,"line-numbers":324,"repeating":490}],44:[function(require,module,exports){
8162
8178
  "use strict";
8163
8179
 
8164
8180
  exports.__esModule = true;
@@ -8194,7 +8210,6 @@ module.exports = exports["default"];
8194
8210
  "use strict";
8195
8211
 
8196
8212
  exports.__esModule = true;
8197
- exports.all = all;
8198
8213
 
8199
8214
  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)) newObj[key] = obj[key]; } } newObj["default"] = obj; return newObj; } }
8200
8215
 
@@ -8245,24 +8260,7 @@ exports["default"] = function (code) {
8245
8260
  return ast;
8246
8261
  };
8247
8262
 
8248
- function all(code) {
8249
- var opts = arguments[1] === undefined ? {} : arguments[1];
8250
-
8251
- opts.allowHashBang = true;
8252
- opts.sourceType = "module";
8253
- opts.ecmaVersion = Infinity;
8254
- opts.plugins = {
8255
- flow: true,
8256
- jsx: true
8257
- };
8258
- opts.features = {};
8259
-
8260
- for (var key in transform.pipeline.transformers) {
8261
- opts.features[key] = true;
8262
- }
8263
-
8264
- return acorn.parse(code, opts);
8265
- }
8263
+ module.exports = exports["default"];
8266
8264
  },{"../../acorn":1,"./normalize-ast":44,"estraverse":311}],47:[function(require,module,exports){
8267
8265
  "use strict";
8268
8266
 
@@ -8397,7 +8395,7 @@ def("ExportDefaultSpecifier").bases("Specifier").field("exported", def("Identifi
8397
8395
  def("ExportAllDeclaration").bases("Declaration").build("exported", "source").field("exported", def("Identifier")).field("source", def("Literal"));
8398
8396
 
8399
8397
  _types2["default"].finalize();
8400
- },{"./types":167,"ast-types":185,"estraverse":311,"lodash/object/extend":432}],49:[function(require,module,exports){
8398
+ },{"./types":167,"ast-types":185,"estraverse":311,"lodash/object/extend":430}],49:[function(require,module,exports){
8401
8399
  (function (global){
8402
8400
  "use strict";
8403
8401
 
@@ -8410,7 +8408,7 @@ if (global._babelPolyfill) {
8410
8408
  }
8411
8409
  global._babelPolyfill = true;
8412
8410
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
8413
- },{"core-js/shim":306,"regenerator/runtime":485}],50:[function(require,module,exports){
8411
+ },{"core-js/shim":306,"regenerator/runtime":483}],50:[function(require,module,exports){
8414
8412
  "use strict";
8415
8413
 
8416
8414
  exports.__esModule = true;
@@ -8622,7 +8620,7 @@ exports["default"] = function (loc) {
8622
8620
 
8623
8621
  ;
8624
8622
  module.exports = exports["default"];
8625
- },{"fs":186,"lodash/object/merge":436,"path":196,"strip-json-comments":507}],52:[function(require,module,exports){
8623
+ },{"fs":186,"lodash/object/merge":434,"path":196,"strip-json-comments":505}],52:[function(require,module,exports){
8626
8624
  (function (process){
8627
8625
  "use strict";
8628
8626
 
@@ -9316,7 +9314,7 @@ module.exports = exports["default"];
9316
9314
 
9317
9315
  // `err.stack` may be a readonly property in some environments
9318
9316
  }).call(this,require('_process'))
9319
- },{"../../api/node":21,"../../generation":36,"../../helpers/code-frame":43,"../../helpers/parse":46,"../../tools/resolve-rc":51,"../../traversal":158,"../../traversal/path":162,"../../traversal/scope":163,"../../types":167,"../../util":171,"../modules":79,"./../index":71,"./logger":53,"./option-parsers":54,"./options":55,"./plugin-manager":56,"_process":197,"convert-source-map":222,"lodash/collection/each":332,"lodash/collection/includes":335,"lodash/lang/clone":415,"lodash/lang/isFunction":421,"lodash/object/assign":430,"lodash/object/defaults":431,"path":196,"path-is-absolute":447,"shebang-regex":494,"slash":495,"source-map":496}],53:[function(require,module,exports){
9317
+ },{"../../api/node":21,"../../generation":36,"../../helpers/code-frame":43,"../../helpers/parse":46,"../../tools/resolve-rc":51,"../../traversal":158,"../../traversal/path":162,"../../traversal/scope":163,"../../types":167,"../../util":171,"../modules":79,"./../index":71,"./logger":53,"./option-parsers":54,"./options":55,"./plugin-manager":56,"_process":197,"convert-source-map":222,"lodash/collection/each":332,"lodash/collection/includes":334,"lodash/lang/clone":413,"lodash/lang/isFunction":419,"lodash/object/assign":428,"lodash/object/defaults":429,"path":196,"path-is-absolute":445,"shebang-regex":492,"slash":493,"source-map":494}],53:[function(require,module,exports){
9320
9318
  "use strict";
9321
9319
 
9322
9320
  exports.__esModule = true;
@@ -10114,7 +10112,7 @@ exports["default"] = function (exports, opts) {
10114
10112
 
10115
10113
  ;
10116
10114
  module.exports = exports["default"];
10117
- },{"../../messages":47,"../../types":167,"./react":66,"esutils":316,"lodash/lang/isString":427}],60:[function(require,module,exports){
10115
+ },{"../../messages":47,"../../types":167,"./react":66,"esutils":316,"lodash/lang/isString":425}],60:[function(require,module,exports){
10118
10116
  "use strict";
10119
10117
 
10120
10118
  exports.__esModule = true;
@@ -10299,7 +10297,7 @@ function toDefineObject(mutatorMap) {
10299
10297
 
10300
10298
  return toClassObject(mutatorMap);
10301
10299
  }
10302
- },{"../../traversal":158,"../../types":167,"lodash/collection/each":332,"lodash/lang/cloneDeep":416,"lodash/object/has":433}],62:[function(require,module,exports){
10300
+ },{"../../traversal":158,"../../types":167,"lodash/collection/each":332,"lodash/lang/cloneDeep":414,"lodash/object/has":431}],62:[function(require,module,exports){
10303
10301
  "use strict";
10304
10302
 
10305
10303
  exports.__esModule = true;
@@ -10729,7 +10727,7 @@ function buildChildren(node) {
10729
10727
 
10730
10728
  return elems;
10731
10729
  }
10732
- },{"../../types":167,"lodash/lang/isString":427}],67:[function(require,module,exports){
10730
+ },{"../../types":167,"lodash/lang/isString":425}],67:[function(require,module,exports){
10733
10731
  "use strict";
10734
10732
 
10735
10733
  exports.__esModule = true;
@@ -11580,7 +11578,7 @@ var DefaultFormatter = (function () {
11580
11578
 
11581
11579
  exports["default"] = DefaultFormatter;
11582
11580
  module.exports = exports["default"];
11583
- },{"../../helpers/object":45,"../../messages":47,"../../traversal":158,"../../types":167,"../../util":171,"lodash/object/extend":432}],73:[function(require,module,exports){
11581
+ },{"../../helpers/object":45,"../../messages":47,"../../traversal":158,"../../types":167,"../../util":171,"lodash/object/extend":430}],73:[function(require,module,exports){
11584
11582
  "use strict";
11585
11583
 
11586
11584
  exports.__esModule = true;
@@ -11804,7 +11802,7 @@ module.exports = exports["default"];
11804
11802
  // absolute module reference
11805
11803
 
11806
11804
  // import * as bar from "foo";
11807
- },{"../../types":167,"../../util":171,"./_default":72,"./common":77,"lodash/collection/includes":335,"lodash/object/values":437}],76:[function(require,module,exports){
11805
+ },{"../../types":167,"../../util":171,"./_default":72,"./common":77,"lodash/collection/includes":334,"lodash/object/values":435}],76:[function(require,module,exports){
11808
11806
  "use strict";
11809
11807
 
11810
11808
  exports.__esModule = true;
@@ -11973,7 +11971,7 @@ module.exports = exports["default"];
11973
11971
  // absolute module reference
11974
11972
 
11975
11973
  // absolute module reference
11976
- },{"../../types":167,"../../util":171,"./_default":72,"lodash/collection/includes":335}],78:[function(require,module,exports){
11974
+ },{"../../types":167,"../../util":171,"./_default":72,"lodash/collection/includes":334}],78:[function(require,module,exports){
11977
11975
  "use strict";
11978
11976
 
11979
11977
  exports.__esModule = true;
@@ -12274,7 +12272,7 @@ var SystemFormatter = (function (_AMDFormatter) {
12274
12272
 
12275
12273
  exports["default"] = SystemFormatter;
12276
12274
  module.exports = exports["default"];
12277
- },{"../../types":167,"../../util":171,"./_default":72,"./amd":75,"lodash/array/last":328,"lodash/collection/each":332,"lodash/collection/map":336}],81:[function(require,module,exports){
12275
+ },{"../../types":167,"../../util":171,"./_default":72,"./amd":75,"lodash/array/last":328,"lodash/collection/each":332,"lodash/collection/map":335}],81:[function(require,module,exports){
12278
12276
  "use strict";
12279
12277
 
12280
12278
  exports.__esModule = true;
@@ -12417,7 +12415,7 @@ var UMDFormatter = (function (_AMDFormatter) {
12417
12415
 
12418
12416
  exports["default"] = UMDFormatter;
12419
12417
  module.exports = exports["default"];
12420
- },{"../../types":167,"../../util":171,"./_default":72,"./amd":75,"lodash/object/values":437,"path":196}],83:[function(require,module,exports){
12418
+ },{"../../types":167,"../../util":171,"./_default":72,"./amd":75,"lodash/object/values":435,"path":196}],83:[function(require,module,exports){
12421
12419
  "use strict";
12422
12420
 
12423
12421
  exports.__esModule = true;
@@ -12480,7 +12478,7 @@ var TransformerPass = (function () {
12480
12478
 
12481
12479
  exports["default"] = TransformerPass;
12482
12480
  module.exports = exports["default"];
12483
- },{"../traversal":158,"lodash/collection/includes":335}],84:[function(require,module,exports){
12481
+ },{"../traversal":158,"lodash/collection/includes":334}],84:[function(require,module,exports){
12484
12482
  "use strict";
12485
12483
 
12486
12484
  exports.__esModule = true;
@@ -12616,7 +12614,7 @@ var TransformerPipeline = (function () {
12616
12614
 
12617
12615
  exports["default"] = TransformerPipeline;
12618
12616
  module.exports = exports["default"];
12619
- },{"../helpers/normalize-ast":44,"../helpers/object":45,"./file":52,"./transformer":85,"lodash/object/assign":430}],85:[function(require,module,exports){
12617
+ },{"../helpers/normalize-ast":44,"../helpers/object":45,"./file":52,"./transformer":85,"lodash/object/assign":428}],85:[function(require,module,exports){
12620
12618
  "use strict";
12621
12619
 
12622
12620
  exports.__esModule = true;
@@ -12757,7 +12755,7 @@ var Transformer = (function () {
12757
12755
 
12758
12756
  exports["default"] = Transformer;
12759
12757
  module.exports = exports["default"];
12760
- },{"../../acorn":1,"../messages":47,"../traversal":158,"./file":52,"./transformer-pass":83,"lodash/collection/each":332,"lodash/lang/isFunction":421,"lodash/lang/isObject":424,"lodash/object/assign":430}],86:[function(require,module,exports){
12758
+ },{"../../acorn":1,"../messages":47,"../traversal":158,"./file":52,"./transformer-pass":83,"lodash/collection/each":332,"lodash/lang/isFunction":419,"lodash/lang/isObject":422,"lodash/object/assign":428}],86:[function(require,module,exports){
12761
12759
  module.exports={
12762
12760
  "useStrict": "strict",
12763
12761
  "es5.runtime": "runtime",
@@ -13533,7 +13531,7 @@ var BlockScoping = (function () {
13533
13531
 
13534
13532
  return BlockScoping;
13535
13533
  })();
13536
- },{"../../../helpers/object":45,"../../../traversal":158,"../../../types":167,"../../../util":171,"lodash/object/extend":432,"lodash/object/values":437}],93:[function(require,module,exports){
13534
+ },{"../../../helpers/object":45,"../../../traversal":158,"../../../types":167,"../../../util":171,"lodash/object/extend":430,"lodash/object/values":435}],93:[function(require,module,exports){
13537
13535
  "use strict";
13538
13536
 
13539
13537
  exports.__esModule = true;
@@ -14136,7 +14134,7 @@ var ClassTransformer = (function () {
14136
14134
 
14137
14135
  return ClassTransformer;
14138
14136
  })();
14139
- },{"../../../messages":47,"../../../traversal":158,"../../../types":167,"../../../util":171,"../../helpers/define-map":61,"../../helpers/memoise-decorators":64,"../../helpers/name-method":65,"../../helpers/replace-supers":69,"lodash/collection/each":332,"lodash/object/has":433}],94:[function(require,module,exports){
14137
+ },{"../../../messages":47,"../../../traversal":158,"../../../types":167,"../../../util":171,"../../helpers/define-map":61,"../../helpers/memoise-decorators":64,"../../helpers/name-method":65,"../../helpers/replace-supers":69,"lodash/collection/each":332,"lodash/object/has":431}],94:[function(require,module,exports){
14140
14138
  "use strict";
14141
14139
 
14142
14140
  exports.__esModule = true;
@@ -15326,7 +15324,7 @@ exports.Function = function (node, parent, scope, file) {
15326
15324
  node.body.body.unshift(loop);
15327
15325
  return node;
15328
15326
  };
15329
- },{"../../../types":167,"../../../util":171,"lodash/lang/isNumber":423}],101:[function(require,module,exports){
15327
+ },{"../../../types":167,"../../../util":171,"lodash/lang/isNumber":421}],101:[function(require,module,exports){
15330
15328
  "use strict";
15331
15329
 
15332
15330
  exports.__esModule = true;
@@ -15513,7 +15511,7 @@ function Literal(node) {
15513
15511
  node.regex.pattern = _rewritePattern2["default"](node.regex.pattern, node.regex.flags);
15514
15512
  regex.pullFlag(node, "u");
15515
15513
  }
15516
- },{"../../helpers/regex":67,"regexpu/rewrite-pattern":491}],105:[function(require,module,exports){
15514
+ },{"../../helpers/regex":67,"regexpu/rewrite-pattern":489}],105:[function(require,module,exports){
15517
15515
  "use strict";
15518
15516
 
15519
15517
  exports.__esModule = true;
@@ -15773,7 +15771,7 @@ function NewExpression(node, parent, scope, file) {
15773
15771
 
15774
15772
  return t.newExpression(t.callExpression(t.memberExpression(file.addHelper("bind"), t.identifier("apply")), [node.callee, args]), []);
15775
15773
  }
15776
- },{"../../../types":167,"lodash/collection/includes":335}],109:[function(require,module,exports){
15774
+ },{"../../../types":167,"lodash/collection/includes":334}],109:[function(require,module,exports){
15777
15775
  "use strict";
15778
15776
 
15779
15777
  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)) newObj[key] = obj[key]; } } newObj["default"] = obj; return newObj; } }
@@ -16155,7 +16153,7 @@ var TailCallTransformer = (function () {
16155
16153
 
16156
16154
  return TailCallTransformer;
16157
16155
  })();
16158
- },{"../../../messages":47,"../../../types":167,"../../../util":171,"lodash/array/flatten":327,"lodash/collection/map":336,"lodash/collection/reduceRight":337}],110:[function(require,module,exports){
16156
+ },{"../../../messages":47,"../../../types":167,"../../../util":171,"lodash/array/flatten":327,"lodash/collection/map":335,"lodash/collection/reduceRight":336}],110:[function(require,module,exports){
16159
16157
  "use strict";
16160
16158
 
16161
16159
  exports.__esModule = true;
@@ -16623,7 +16621,7 @@ function stage(transformer, opts) {
16623
16621
  function optional(transformer, opts) {
16624
16622
  if (transformer.metadata.optional && !_includes2["default"](opts.optional, transformer.key)) return false;
16625
16623
  }
16626
- },{"lodash/collection/includes":335}],121:[function(require,module,exports){
16624
+ },{"lodash/collection/includes":334}],121:[function(require,module,exports){
16627
16625
  "use strict";
16628
16626
 
16629
16627
  exports.__esModule = true;
@@ -16758,17 +16756,9 @@ exports.__esModule = true;
16758
16756
 
16759
16757
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
16760
16758
 
16761
- var _groupBy = require("lodash/collection/groupBy");
16762
-
16763
- var _groupBy2 = _interopRequireDefault(_groupBy);
16764
-
16765
- var _flatten = require("lodash/array/flatten");
16766
-
16767
- var _flatten2 = _interopRequireDefault(_flatten);
16768
-
16769
- var _values = require("lodash/object/values");
16759
+ var _sortBy = require("lodash/collection/sortBy");
16770
16760
 
16771
- var _values2 = _interopRequireDefault(_values);
16761
+ var _sortBy2 = _interopRequireDefault(_sortBy);
16772
16762
 
16773
16763
  // Priority:
16774
16764
  //
@@ -16786,20 +16776,20 @@ var BlockStatement = {
16786
16776
  }
16787
16777
  if (!hasChange) return;
16788
16778
 
16789
- var nodePriorities = _groupBy2["default"](node.body, function (bodyNode) {
16779
+ node.body = _sortBy2["default"](node.body, function (bodyNode) {
16790
16780
  var priority = bodyNode && bodyNode._blockHoist;
16791
16781
  if (priority == null) priority = 1;
16792
16782
  if (priority === true) priority = 2;
16793
- return priority;
16794
- });
16795
16783
 
16796
- node.body = _flatten2["default"](_values2["default"](nodePriorities).reverse());
16784
+ // Higher priorities should move toward the top.
16785
+ return -1 * priority;
16786
+ });
16797
16787
  }
16798
16788
  };
16799
16789
 
16800
16790
  exports.BlockStatement = BlockStatement;
16801
16791
  exports.Program = BlockStatement;
16802
- },{"lodash/array/flatten":327,"lodash/collection/groupBy":334,"lodash/object/values":437}],123:[function(require,module,exports){
16792
+ },{"lodash/collection/sortBy":338}],123:[function(require,module,exports){
16803
16793
  "use strict";
16804
16794
 
16805
16795
  exports.__esModule = true;
@@ -17849,7 +17839,7 @@ var Program = {
17849
17839
  }
17850
17840
  };
17851
17841
  exports.Program = Program;
17852
- },{"../../../types":167,"regenerator":455}],142:[function(require,module,exports){
17842
+ },{"../../../types":167,"regenerator":453}],142:[function(require,module,exports){
17853
17843
  module.exports={
17854
17844
  "builtins": {
17855
17845
  "Symbol": "symbol",
@@ -18154,7 +18144,7 @@ exports.Identifier = function (node, parent, scope, file) {
18154
18144
  return file.get("regeneratorIdentifier");
18155
18145
  }
18156
18146
  };
18157
- },{"../../../../traversal":158,"../../../../types":167,"../../../../util":171,"./definitions":142,"lodash/collection/includes":335,"lodash/object/has":433}],144:[function(require,module,exports){
18147
+ },{"../../../../traversal":158,"../../../../types":167,"../../../../util":171,"./definitions":142,"lodash/collection/includes":334,"lodash/object/has":431}],144:[function(require,module,exports){
18158
18148
  "use strict";
18159
18149
 
18160
18150
  exports.__esModule = true;
@@ -18976,7 +18966,7 @@ traverse.hasType = function (tree, scope, type, blacklistTypes) {
18976
18966
  return state.has;
18977
18967
  };
18978
18968
  module.exports = exports["default"];
18979
- },{"../messages":47,"../types":167,"./context":156,"./explode":157,"lodash/collection/includes":335}],159:[function(require,module,exports){
18969
+ },{"../messages":47,"../types":167,"./context":156,"./explode":157,"lodash/collection/includes":334}],159:[function(require,module,exports){
18980
18970
  "use strict";
18981
18971
 
18982
18972
  exports.__esModule = true;
@@ -19351,6 +19341,8 @@ var _codeFrame2 = _interopRequireDefault(_codeFrame);
19351
19341
 
19352
19342
  var _parse = require("../../helpers/parse");
19353
19343
 
19344
+ var _parse2 = _interopRequireDefault(_parse);
19345
+
19354
19346
  var _traverse2 = require("../index");
19355
19347
 
19356
19348
  var _traverse3 = _interopRequireDefault(_traverse2);
@@ -19835,7 +19827,7 @@ var TraversalPath = (function () {
19835
19827
  TraversalPath.prototype.replaceWithSourceString = function replaceWithSourceString(replacement) {
19836
19828
  try {
19837
19829
  replacement = "(" + replacement + ")";
19838
- replacement = _parse.all(code);
19830
+ replacement = _parse2["default"](code);
19839
19831
  } catch (err) {
19840
19832
  var loc = err.loc;
19841
19833
  if (loc) {
@@ -20471,7 +20463,7 @@ module.exports = exports["default"];
20471
20463
 
20472
20464
  // otherwise it's a request for a destructuring declarator and i'm not
20473
20465
  // ready to resolve those just yet
20474
- },{"../../helpers/code-frame":43,"../../helpers/parse":46,"../../types":167,"../index":158,"../scope":163,"./conversion":159,"./evaluation":160,"./hoister":161,"lodash/collection/includes":335,"lodash/lang/isBoolean":419,"lodash/lang/isNumber":423,"lodash/lang/isRegExp":426,"lodash/lang/isString":427,"lodash/object/assign":430,"lodash/object/extend":432}],163:[function(require,module,exports){
20466
+ },{"../../helpers/code-frame":43,"../../helpers/parse":46,"../../types":167,"../index":158,"../scope":163,"./conversion":159,"./evaluation":160,"./hoister":161,"lodash/collection/includes":334,"lodash/lang/isBoolean":417,"lodash/lang/isNumber":421,"lodash/lang/isRegExp":424,"lodash/lang/isString":425,"lodash/object/assign":428,"lodash/object/extend":430}],163:[function(require,module,exports){
20475
20467
  "use strict";
20476
20468
 
20477
20469
  exports.__esModule = true;
@@ -21329,7 +21321,7 @@ exports["default"] = Scope;
21329
21321
  module.exports = exports["default"];
21330
21322
 
21331
21323
  //path.setData("scope", this);
21332
- },{"../helpers/object":45,"../messages":47,"../types":167,"./binding":155,"./explode":157,"./index":158,"globals":318,"lodash/array/flatten":327,"lodash/collection/each":332,"lodash/collection/includes":335,"lodash/object/defaults":431,"lodash/object/extend":432}],164:[function(require,module,exports){
21324
+ },{"../helpers/object":45,"../messages":47,"../types":167,"./binding":155,"./explode":157,"./index":158,"globals":318,"lodash/array/flatten":327,"lodash/collection/each":332,"lodash/collection/includes":334,"lodash/object/defaults":429,"lodash/object/extend":430}],164:[function(require,module,exports){
21333
21325
  module.exports={
21334
21326
  "ExpressionStatement": ["Statement"],
21335
21327
  "BreakStatement": ["Statement", "Terminatorless"],
@@ -21978,7 +21970,7 @@ function valueToNode(value) {
21978
21970
 
21979
21971
  throw new Error("don't know how to turn this value into a node");
21980
21972
  }
21981
- },{"../traversal":158,"./index":167,"lodash/collection/each":332,"lodash/lang/isNumber":423,"lodash/lang/isPlainObject":425,"lodash/lang/isRegExp":426,"lodash/lang/isString":427}],167:[function(require,module,exports){
21973
+ },{"../traversal":158,"./index":167,"lodash/collection/each":332,"lodash/lang/isNumber":421,"lodash/lang/isPlainObject":423,"lodash/lang/isRegExp":424,"lodash/lang/isString":425}],167:[function(require,module,exports){
21982
21974
  "use strict";
21983
21975
 
21984
21976
  exports.__esModule = true;
@@ -22342,7 +22334,7 @@ exports.__esModule = true;
22342
22334
  _assign2["default"](t, require("./retrievers"));
22343
22335
  _assign2["default"](t, require("./validators"));
22344
22336
  _assign2["default"](t, require("./converters"));
22345
- },{"./alias-keys":164,"./builder-keys":165,"./converters":166,"./retrievers":168,"./validators":169,"./visitor-keys":170,"lodash/array/compact":326,"lodash/array/uniq":330,"lodash/collection/each":332,"lodash/object/assign":430,"to-fast-properties":508}],168:[function(require,module,exports){
22337
+ },{"./alias-keys":164,"./builder-keys":165,"./converters":166,"./retrievers":168,"./validators":169,"./visitor-keys":170,"lodash/array/compact":326,"lodash/array/uniq":330,"lodash/collection/each":332,"lodash/object/assign":428,"to-fast-properties":506}],168:[function(require,module,exports){
22346
22338
  "use strict";
22347
22339
 
22348
22340
  exports.__esModule = true;
@@ -22675,7 +22667,7 @@ function isImmutable(node) {
22675
22667
 
22676
22668
  return false;
22677
22669
  }
22678
- },{"./index":167,"esutils":316,"lodash/lang/isString":427}],170:[function(require,module,exports){
22670
+ },{"./index":167,"esutils":316,"lodash/lang/isString":425}],170:[function(require,module,exports){
22679
22671
  module.exports={
22680
22672
  "ArrayExpression": ["elements"],
22681
22673
  "ArrayPattern": ["elements", "typeAnnotation"],
@@ -23069,7 +23061,7 @@ try {
23069
23061
  exports.templates = loadTemplates();
23070
23062
  }
23071
23063
  }).call(this,require('_process'),"/lib/babel")
23072
- },{"../../templates.json":511,"./helpers/parse":46,"./messages":47,"./patch":48,"./traversal":158,"./types":167,"_process":197,"debug/node":308,"fs":186,"lodash/collection/contains":331,"lodash/collection/each":332,"lodash/lang/cloneDeep":416,"lodash/lang/isBoolean":419,"lodash/lang/isEmpty":420,"lodash/lang/isRegExp":426,"lodash/lang/isString":427,"lodash/object/has":433,"lodash/string/escapeRegExp":438,"minimatch":443,"module":186,"path":196,"slash":495,"util":213}],172:[function(require,module,exports){
23064
+ },{"../../templates.json":509,"./helpers/parse":46,"./messages":47,"./patch":48,"./traversal":158,"./types":167,"_process":197,"debug/node":308,"fs":186,"lodash/collection/contains":331,"lodash/collection/each":332,"lodash/lang/cloneDeep":414,"lodash/lang/isBoolean":417,"lodash/lang/isEmpty":418,"lodash/lang/isRegExp":424,"lodash/lang/isString":425,"lodash/object/has":431,"lodash/string/escapeRegExp":436,"minimatch":441,"module":186,"path":196,"slash":493,"util":213}],172:[function(require,module,exports){
23073
23065
  var types = require("../lib/types");
23074
23066
  var Type = types.Type;
23075
23067
  var def = Type.def;
@@ -36008,7 +36000,7 @@ module.exports = function (str) {
36008
36000
  };
36009
36001
  };
36010
36002
 
36011
- },{"repeating":492}],311:[function(require,module,exports){
36003
+ },{"repeating":490}],311:[function(require,module,exports){
36012
36004
  /*
36013
36005
  Copyright (C) 2012-2013 Yusuke Suzuki <utatane.tea@gmail.com>
36014
36006
  Copyright (C) 2012 Ariya Hidayat <ariya.hidayat@gmail.com>
@@ -38380,7 +38372,7 @@ function flatten(array, isDeep, guard) {
38380
38372
 
38381
38373
  module.exports = flatten;
38382
38374
 
38383
- },{"../internal/baseFlatten":356,"../internal/isIterateeCall":405}],328:[function(require,module,exports){
38375
+ },{"../internal/baseFlatten":355,"../internal/isIterateeCall":403}],328:[function(require,module,exports){
38384
38376
  /**
38385
38377
  * Gets the last element of `array`.
38386
38378
  *
@@ -38455,7 +38447,7 @@ function pull() {
38455
38447
 
38456
38448
  module.exports = pull;
38457
38449
 
38458
- },{"../internal/baseIndexOf":363}],330:[function(require,module,exports){
38450
+ },{"../internal/baseIndexOf":362}],330:[function(require,module,exports){
38459
38451
  var baseCallback = require('../internal/baseCallback'),
38460
38452
  baseUniq = require('../internal/baseUniq'),
38461
38453
  isIterateeCall = require('../internal/isIterateeCall'),
@@ -38528,10 +38520,10 @@ function uniq(array, isSorted, iteratee, thisArg) {
38528
38520
 
38529
38521
  module.exports = uniq;
38530
38522
 
38531
- },{"../internal/baseCallback":350,"../internal/baseUniq":380,"../internal/isIterateeCall":405,"../internal/sortedUniq":412}],331:[function(require,module,exports){
38523
+ },{"../internal/baseCallback":349,"../internal/baseUniq":379,"../internal/isIterateeCall":403,"../internal/sortedUniq":410}],331:[function(require,module,exports){
38532
38524
  module.exports = require('./includes');
38533
38525
 
38534
- },{"./includes":335}],332:[function(require,module,exports){
38526
+ },{"./includes":334}],332:[function(require,module,exports){
38535
38527
  module.exports = require('./forEach');
38536
38528
 
38537
38529
  },{"./forEach":333}],333:[function(require,module,exports){
@@ -38573,68 +38565,7 @@ var forEach = createForEach(arrayEach, baseEach);
38573
38565
 
38574
38566
  module.exports = forEach;
38575
38567
 
38576
- },{"../internal/arrayEach":343,"../internal/baseEach":354,"../internal/createForEach":392}],334:[function(require,module,exports){
38577
- var createAggregator = require('../internal/createAggregator');
38578
-
38579
- /** Used for native method references. */
38580
- var objectProto = Object.prototype;
38581
-
38582
- /** Used to check objects for own properties. */
38583
- var hasOwnProperty = objectProto.hasOwnProperty;
38584
-
38585
- /**
38586
- * Creates an object composed of keys generated from the results of running
38587
- * each element of `collection` through `iteratee`. The corresponding value
38588
- * of each key is an array of the elements responsible for generating the key.
38589
- * The `iteratee` is bound to `thisArg` and invoked with three arguments:
38590
- * (value, index|key, collection).
38591
- *
38592
- * If a property name is provided for `iteratee` the created `_.property`
38593
- * style callback returns the property value of the given element.
38594
- *
38595
- * If a value is also provided for `thisArg` the created `_.matchesProperty`
38596
- * style callback returns `true` for elements that have a matching property
38597
- * value, else `false`.
38598
- *
38599
- * If an object is provided for `iteratee` the created `_.matches` style
38600
- * callback returns `true` for elements that have the properties of the given
38601
- * object, else `false`.
38602
- *
38603
- * @static
38604
- * @memberOf _
38605
- * @category Collection
38606
- * @param {Array|Object|string} collection The collection to iterate over.
38607
- * @param {Function|Object|string} [iteratee=_.identity] The function invoked
38608
- * per iteration.
38609
- * @param {*} [thisArg] The `this` binding of `iteratee`.
38610
- * @returns {Object} Returns the composed aggregate object.
38611
- * @example
38612
- *
38613
- * _.groupBy([4.2, 6.1, 6.4], function(n) {
38614
- * return Math.floor(n);
38615
- * });
38616
- * // => { '4': [4.2], '6': [6.1, 6.4] }
38617
- *
38618
- * _.groupBy([4.2, 6.1, 6.4], function(n) {
38619
- * return this.floor(n);
38620
- * }, Math);
38621
- * // => { '4': [4.2], '6': [6.1, 6.4] }
38622
- *
38623
- * // using the `_.property` callback shorthand
38624
- * _.groupBy(['one', 'two', 'three'], 'length');
38625
- * // => { '3': ['one', 'two'], '5': ['three'] }
38626
- */
38627
- var groupBy = createAggregator(function(result, value, key) {
38628
- if (hasOwnProperty.call(result, key)) {
38629
- result[key].push(value);
38630
- } else {
38631
- result[key] = [value];
38632
- }
38633
- });
38634
-
38635
- module.exports = groupBy;
38636
-
38637
- },{"../internal/createAggregator":387}],335:[function(require,module,exports){
38568
+ },{"../internal/arrayEach":342,"../internal/baseEach":353,"../internal/createForEach":390}],334:[function(require,module,exports){
38638
38569
  var baseIndexOf = require('../internal/baseIndexOf'),
38639
38570
  getLength = require('../internal/getLength'),
38640
38571
  isArray = require('../lang/isArray'),
@@ -38696,7 +38627,7 @@ function includes(collection, target, fromIndex, guard) {
38696
38627
 
38697
38628
  module.exports = includes;
38698
38629
 
38699
- },{"../internal/baseIndexOf":363,"../internal/getLength":397,"../internal/isIterateeCall":405,"../internal/isLength":407,"../lang/isArray":418,"../lang/isString":427,"../object/values":437}],336:[function(require,module,exports){
38630
+ },{"../internal/baseIndexOf":362,"../internal/getLength":395,"../internal/isIterateeCall":403,"../internal/isLength":405,"../lang/isArray":416,"../lang/isString":425,"../object/values":435}],335:[function(require,module,exports){
38700
38631
  var arrayMap = require('../internal/arrayMap'),
38701
38632
  baseCallback = require('../internal/baseCallback'),
38702
38633
  baseMap = require('../internal/baseMap'),
@@ -38766,7 +38697,7 @@ function map(collection, iteratee, thisArg) {
38766
38697
 
38767
38698
  module.exports = map;
38768
38699
 
38769
- },{"../internal/arrayMap":344,"../internal/baseCallback":350,"../internal/baseMap":368,"../lang/isArray":418}],337:[function(require,module,exports){
38700
+ },{"../internal/arrayMap":343,"../internal/baseCallback":349,"../internal/baseMap":367,"../lang/isArray":416}],336:[function(require,module,exports){
38770
38701
  var arrayReduceRight = require('../internal/arrayReduceRight'),
38771
38702
  baseEachRight = require('../internal/baseEachRight'),
38772
38703
  createReduce = require('../internal/createReduce');
@@ -38797,7 +38728,7 @@ var reduceRight = createReduce(arrayReduceRight, baseEachRight);
38797
38728
 
38798
38729
  module.exports = reduceRight;
38799
38730
 
38800
- },{"../internal/arrayReduceRight":345,"../internal/baseEachRight":355,"../internal/createReduce":393}],338:[function(require,module,exports){
38731
+ },{"../internal/arrayReduceRight":344,"../internal/baseEachRight":354,"../internal/createReduce":391}],337:[function(require,module,exports){
38801
38732
  var arraySome = require('../internal/arraySome'),
38802
38733
  baseCallback = require('../internal/baseCallback'),
38803
38734
  baseSome = require('../internal/baseSome'),
@@ -38866,7 +38797,7 @@ function some(collection, predicate, thisArg) {
38866
38797
 
38867
38798
  module.exports = some;
38868
38799
 
38869
- },{"../internal/arraySome":346,"../internal/baseCallback":350,"../internal/baseSome":377,"../internal/isIterateeCall":405,"../lang/isArray":418}],339:[function(require,module,exports){
38800
+ },{"../internal/arraySome":345,"../internal/baseCallback":349,"../internal/baseSome":376,"../internal/isIterateeCall":403,"../lang/isArray":416}],338:[function(require,module,exports){
38870
38801
  var baseCallback = require('../internal/baseCallback'),
38871
38802
  baseMap = require('../internal/baseMap'),
38872
38803
  baseSortBy = require('../internal/baseSortBy'),
@@ -38939,7 +38870,7 @@ function sortBy(collection, iteratee, thisArg) {
38939
38870
 
38940
38871
  module.exports = sortBy;
38941
38872
 
38942
- },{"../internal/baseCallback":350,"../internal/baseMap":368,"../internal/baseSortBy":378,"../internal/compareAscending":386,"../internal/isIterateeCall":405}],340:[function(require,module,exports){
38873
+ },{"../internal/baseCallback":349,"../internal/baseMap":367,"../internal/baseSortBy":377,"../internal/compareAscending":385,"../internal/isIterateeCall":403}],339:[function(require,module,exports){
38943
38874
  /** Used as the `TypeError` message for "Functions" methods. */
38944
38875
  var FUNC_ERROR_TEXT = 'Expected a function';
38945
38876
 
@@ -38999,7 +38930,7 @@ function restParam(func, start) {
38999
38930
 
39000
38931
  module.exports = restParam;
39001
38932
 
39002
- },{}],341:[function(require,module,exports){
38933
+ },{}],340:[function(require,module,exports){
39003
38934
  (function (global){
39004
38935
  var cachePush = require('./cachePush'),
39005
38936
  isNative = require('../lang/isNative');
@@ -39032,7 +38963,7 @@ SetCache.prototype.push = cachePush;
39032
38963
  module.exports = SetCache;
39033
38964
 
39034
38965
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
39035
- },{"../lang/isNative":422,"./cachePush":385}],342:[function(require,module,exports){
38966
+ },{"../lang/isNative":420,"./cachePush":384}],341:[function(require,module,exports){
39036
38967
  /**
39037
38968
  * Copies the values of `source` to `array`.
39038
38969
  *
@@ -39054,7 +38985,7 @@ function arrayCopy(source, array) {
39054
38985
 
39055
38986
  module.exports = arrayCopy;
39056
38987
 
39057
- },{}],343:[function(require,module,exports){
38988
+ },{}],342:[function(require,module,exports){
39058
38989
  /**
39059
38990
  * A specialized version of `_.forEach` for arrays without support for callback
39060
38991
  * shorthands and `this` binding.
@@ -39078,7 +39009,7 @@ function arrayEach(array, iteratee) {
39078
39009
 
39079
39010
  module.exports = arrayEach;
39080
39011
 
39081
- },{}],344:[function(require,module,exports){
39012
+ },{}],343:[function(require,module,exports){
39082
39013
  /**
39083
39014
  * A specialized version of `_.map` for arrays without support for callback
39084
39015
  * shorthands and `this` binding.
@@ -39101,7 +39032,7 @@ function arrayMap(array, iteratee) {
39101
39032
 
39102
39033
  module.exports = arrayMap;
39103
39034
 
39104
- },{}],345:[function(require,module,exports){
39035
+ },{}],344:[function(require,module,exports){
39105
39036
  /**
39106
39037
  * A specialized version of `_.reduceRight` for arrays without support for
39107
39038
  * callback shorthands and `this` binding.
@@ -39127,7 +39058,7 @@ function arrayReduceRight(array, iteratee, accumulator, initFromArray) {
39127
39058
 
39128
39059
  module.exports = arrayReduceRight;
39129
39060
 
39130
- },{}],346:[function(require,module,exports){
39061
+ },{}],345:[function(require,module,exports){
39131
39062
  /**
39132
39063
  * A specialized version of `_.some` for arrays without support for callback
39133
39064
  * shorthands and `this` binding.
@@ -39152,7 +39083,7 @@ function arraySome(array, predicate) {
39152
39083
 
39153
39084
  module.exports = arraySome;
39154
39085
 
39155
- },{}],347:[function(require,module,exports){
39086
+ },{}],346:[function(require,module,exports){
39156
39087
  /**
39157
39088
  * Used by `_.defaults` to customize its `_.assign` use.
39158
39089
  *
@@ -39167,7 +39098,7 @@ function assignDefaults(objectValue, sourceValue) {
39167
39098
 
39168
39099
  module.exports = assignDefaults;
39169
39100
 
39170
- },{}],348:[function(require,module,exports){
39101
+ },{}],347:[function(require,module,exports){
39171
39102
  var getSymbols = require('./getSymbols'),
39172
39103
  keys = require('../object/keys');
39173
39104
 
@@ -39210,7 +39141,7 @@ function assignWith(object, source, customizer) {
39210
39141
 
39211
39142
  module.exports = assignWith;
39212
39143
 
39213
- },{"../object/keys":434,"./getSymbols":398}],349:[function(require,module,exports){
39144
+ },{"../object/keys":432,"./getSymbols":396}],348:[function(require,module,exports){
39214
39145
  var baseCopy = require('./baseCopy'),
39215
39146
  getSymbols = require('./getSymbols'),
39216
39147
  isNative = require('../lang/isNative'),
@@ -39259,7 +39190,7 @@ var baseAssign = nativeAssign || function(object, source) {
39259
39190
 
39260
39191
  module.exports = baseAssign;
39261
39192
 
39262
- },{"../lang/isNative":422,"../object/keys":434,"./baseCopy":353,"./getSymbols":398}],350:[function(require,module,exports){
39193
+ },{"../lang/isNative":420,"../object/keys":432,"./baseCopy":352,"./getSymbols":396}],349:[function(require,module,exports){
39263
39194
  var baseMatches = require('./baseMatches'),
39264
39195
  baseMatchesProperty = require('./baseMatchesProperty'),
39265
39196
  bindCallback = require('./bindCallback'),
@@ -39296,7 +39227,7 @@ function baseCallback(func, thisArg, argCount) {
39296
39227
 
39297
39228
  module.exports = baseCallback;
39298
39229
 
39299
- },{"../utility/identity":441,"../utility/property":442,"./baseMatches":369,"./baseMatchesProperty":370,"./bindCallback":382}],351:[function(require,module,exports){
39230
+ },{"../utility/identity":439,"../utility/property":440,"./baseMatches":368,"./baseMatchesProperty":369,"./bindCallback":381}],350:[function(require,module,exports){
39300
39231
  var arrayCopy = require('./arrayCopy'),
39301
39232
  arrayEach = require('./arrayEach'),
39302
39233
  baseAssign = require('./baseAssign'),
@@ -39426,7 +39357,7 @@ function baseClone(value, isDeep, customizer, key, object, stackA, stackB) {
39426
39357
 
39427
39358
  module.exports = baseClone;
39428
39359
 
39429
- },{"../lang/isArray":418,"../lang/isObject":424,"./arrayCopy":342,"./arrayEach":343,"./baseAssign":349,"./baseForOwn":359,"./initCloneArray":400,"./initCloneByTag":401,"./initCloneObject":402}],352:[function(require,module,exports){
39360
+ },{"../lang/isArray":416,"../lang/isObject":422,"./arrayCopy":341,"./arrayEach":342,"./baseAssign":348,"./baseForOwn":358,"./initCloneArray":398,"./initCloneByTag":399,"./initCloneObject":400}],351:[function(require,module,exports){
39430
39361
  /**
39431
39362
  * The base implementation of `compareAscending` which compares values and
39432
39363
  * sorts them in ascending order without guaranteeing a stable sort.
@@ -39453,7 +39384,7 @@ function baseCompareAscending(value, other) {
39453
39384
 
39454
39385
  module.exports = baseCompareAscending;
39455
39386
 
39456
- },{}],353:[function(require,module,exports){
39387
+ },{}],352:[function(require,module,exports){
39457
39388
  /**
39458
39389
  * Copies properties of `source` to `object`.
39459
39390
  *
@@ -39478,7 +39409,7 @@ function baseCopy(source, props, object) {
39478
39409
 
39479
39410
  module.exports = baseCopy;
39480
39411
 
39481
- },{}],354:[function(require,module,exports){
39412
+ },{}],353:[function(require,module,exports){
39482
39413
  var baseForOwn = require('./baseForOwn'),
39483
39414
  createBaseEach = require('./createBaseEach');
39484
39415
 
@@ -39495,7 +39426,7 @@ var baseEach = createBaseEach(baseForOwn);
39495
39426
 
39496
39427
  module.exports = baseEach;
39497
39428
 
39498
- },{"./baseForOwn":359,"./createBaseEach":389}],355:[function(require,module,exports){
39429
+ },{"./baseForOwn":358,"./createBaseEach":387}],354:[function(require,module,exports){
39499
39430
  var baseForOwnRight = require('./baseForOwnRight'),
39500
39431
  createBaseEach = require('./createBaseEach');
39501
39432
 
@@ -39512,7 +39443,7 @@ var baseEachRight = createBaseEach(baseForOwnRight, true);
39512
39443
 
39513
39444
  module.exports = baseEachRight;
39514
39445
 
39515
- },{"./baseForOwnRight":360,"./createBaseEach":389}],356:[function(require,module,exports){
39446
+ },{"./baseForOwnRight":359,"./createBaseEach":387}],355:[function(require,module,exports){
39516
39447
  var isArguments = require('../lang/isArguments'),
39517
39448
  isArray = require('../lang/isArray'),
39518
39449
  isArrayLike = require('./isArrayLike'),
@@ -39557,7 +39488,7 @@ function baseFlatten(array, isDeep, isStrict) {
39557
39488
 
39558
39489
  module.exports = baseFlatten;
39559
39490
 
39560
- },{"../lang/isArguments":417,"../lang/isArray":418,"./isArrayLike":403,"./isObjectLike":408}],357:[function(require,module,exports){
39491
+ },{"../lang/isArguments":415,"../lang/isArray":416,"./isArrayLike":401,"./isObjectLike":406}],356:[function(require,module,exports){
39561
39492
  var createBaseFor = require('./createBaseFor');
39562
39493
 
39563
39494
  /**
@@ -39576,7 +39507,7 @@ var baseFor = createBaseFor();
39576
39507
 
39577
39508
  module.exports = baseFor;
39578
39509
 
39579
- },{"./createBaseFor":390}],358:[function(require,module,exports){
39510
+ },{"./createBaseFor":388}],357:[function(require,module,exports){
39580
39511
  var baseFor = require('./baseFor'),
39581
39512
  keysIn = require('../object/keysIn');
39582
39513
 
@@ -39595,7 +39526,7 @@ function baseForIn(object, iteratee) {
39595
39526
 
39596
39527
  module.exports = baseForIn;
39597
39528
 
39598
- },{"../object/keysIn":435,"./baseFor":357}],359:[function(require,module,exports){
39529
+ },{"../object/keysIn":433,"./baseFor":356}],358:[function(require,module,exports){
39599
39530
  var baseFor = require('./baseFor'),
39600
39531
  keys = require('../object/keys');
39601
39532
 
@@ -39614,7 +39545,7 @@ function baseForOwn(object, iteratee) {
39614
39545
 
39615
39546
  module.exports = baseForOwn;
39616
39547
 
39617
- },{"../object/keys":434,"./baseFor":357}],360:[function(require,module,exports){
39548
+ },{"../object/keys":432,"./baseFor":356}],359:[function(require,module,exports){
39618
39549
  var baseForRight = require('./baseForRight'),
39619
39550
  keys = require('../object/keys');
39620
39551
 
@@ -39633,7 +39564,7 @@ function baseForOwnRight(object, iteratee) {
39633
39564
 
39634
39565
  module.exports = baseForOwnRight;
39635
39566
 
39636
- },{"../object/keys":434,"./baseForRight":361}],361:[function(require,module,exports){
39567
+ },{"../object/keys":432,"./baseForRight":360}],360:[function(require,module,exports){
39637
39568
  var createBaseFor = require('./createBaseFor');
39638
39569
 
39639
39570
  /**
@@ -39650,7 +39581,7 @@ var baseForRight = createBaseFor(true);
39650
39581
 
39651
39582
  module.exports = baseForRight;
39652
39583
 
39653
- },{"./createBaseFor":390}],362:[function(require,module,exports){
39584
+ },{"./createBaseFor":388}],361:[function(require,module,exports){
39654
39585
  var toObject = require('./toObject');
39655
39586
 
39656
39587
  /**
@@ -39681,7 +39612,7 @@ function baseGet(object, path, pathKey) {
39681
39612
 
39682
39613
  module.exports = baseGet;
39683
39614
 
39684
- },{"./toObject":413}],363:[function(require,module,exports){
39615
+ },{"./toObject":411}],362:[function(require,module,exports){
39685
39616
  var indexOfNaN = require('./indexOfNaN');
39686
39617
 
39687
39618
  /**
@@ -39710,7 +39641,7 @@ function baseIndexOf(array, value, fromIndex) {
39710
39641
 
39711
39642
  module.exports = baseIndexOf;
39712
39643
 
39713
- },{"./indexOfNaN":399}],364:[function(require,module,exports){
39644
+ },{"./indexOfNaN":397}],363:[function(require,module,exports){
39714
39645
  var baseIsEqualDeep = require('./baseIsEqualDeep');
39715
39646
 
39716
39647
  /**
@@ -39745,7 +39676,7 @@ function baseIsEqual(value, other, customizer, isLoose, stackA, stackB) {
39745
39676
 
39746
39677
  module.exports = baseIsEqual;
39747
39678
 
39748
- },{"./baseIsEqualDeep":365}],365:[function(require,module,exports){
39679
+ },{"./baseIsEqualDeep":364}],364:[function(require,module,exports){
39749
39680
  var equalArrays = require('./equalArrays'),
39750
39681
  equalByTag = require('./equalByTag'),
39751
39682
  equalObjects = require('./equalObjects'),
@@ -39849,7 +39780,7 @@ function baseIsEqualDeep(object, other, equalFunc, customizer, isLoose, stackA,
39849
39780
 
39850
39781
  module.exports = baseIsEqualDeep;
39851
39782
 
39852
- },{"../lang/isArray":418,"../lang/isTypedArray":428,"./equalArrays":394,"./equalByTag":395,"./equalObjects":396}],366:[function(require,module,exports){
39783
+ },{"../lang/isArray":416,"../lang/isTypedArray":426,"./equalArrays":392,"./equalByTag":393,"./equalObjects":394}],365:[function(require,module,exports){
39853
39784
  /**
39854
39785
  * The base implementation of `_.isFunction` without support for environments
39855
39786
  * with incorrect `typeof` results.
@@ -39866,7 +39797,7 @@ function baseIsFunction(value) {
39866
39797
 
39867
39798
  module.exports = baseIsFunction;
39868
39799
 
39869
- },{}],367:[function(require,module,exports){
39800
+ },{}],366:[function(require,module,exports){
39870
39801
  var baseIsEqual = require('./baseIsEqual');
39871
39802
 
39872
39803
  /**
@@ -39917,7 +39848,7 @@ function baseIsMatch(object, props, values, strictCompareFlags, customizer) {
39917
39848
 
39918
39849
  module.exports = baseIsMatch;
39919
39850
 
39920
- },{"./baseIsEqual":364}],368:[function(require,module,exports){
39851
+ },{"./baseIsEqual":363}],367:[function(require,module,exports){
39921
39852
  var baseEach = require('./baseEach'),
39922
39853
  isArrayLike = require('./isArrayLike');
39923
39854
 
@@ -39942,7 +39873,7 @@ function baseMap(collection, iteratee) {
39942
39873
 
39943
39874
  module.exports = baseMap;
39944
39875
 
39945
- },{"./baseEach":354,"./isArrayLike":403}],369:[function(require,module,exports){
39876
+ },{"./baseEach":353,"./isArrayLike":401}],368:[function(require,module,exports){
39946
39877
  var baseIsMatch = require('./baseIsMatch'),
39947
39878
  constant = require('../utility/constant'),
39948
39879
  isStrictComparable = require('./isStrictComparable'),
@@ -39991,7 +39922,7 @@ function baseMatches(source) {
39991
39922
 
39992
39923
  module.exports = baseMatches;
39993
39924
 
39994
- },{"../object/keys":434,"../utility/constant":440,"./baseIsMatch":367,"./isStrictComparable":409,"./toObject":413}],370:[function(require,module,exports){
39925
+ },{"../object/keys":432,"../utility/constant":438,"./baseIsMatch":366,"./isStrictComparable":407,"./toObject":411}],369:[function(require,module,exports){
39995
39926
  var baseGet = require('./baseGet'),
39996
39927
  baseIsEqual = require('./baseIsEqual'),
39997
39928
  baseSlice = require('./baseSlice'),
@@ -40039,7 +39970,7 @@ function baseMatchesProperty(path, value) {
40039
39970
 
40040
39971
  module.exports = baseMatchesProperty;
40041
39972
 
40042
- },{"../array/last":328,"../lang/isArray":418,"./baseGet":362,"./baseIsEqual":364,"./baseSlice":376,"./isKey":406,"./isStrictComparable":409,"./toObject":413,"./toPath":414}],371:[function(require,module,exports){
39973
+ },{"../array/last":328,"../lang/isArray":416,"./baseGet":361,"./baseIsEqual":363,"./baseSlice":375,"./isKey":404,"./isStrictComparable":407,"./toObject":411,"./toPath":412}],370:[function(require,module,exports){
40043
39974
  var arrayEach = require('./arrayEach'),
40044
39975
  baseMergeDeep = require('./baseMergeDeep'),
40045
39976
  getSymbols = require('./getSymbols'),
@@ -40106,7 +40037,7 @@ function baseMerge(object, source, customizer, stackA, stackB) {
40106
40037
 
40107
40038
  module.exports = baseMerge;
40108
40039
 
40109
- },{"../lang/isArray":418,"../lang/isObject":424,"../lang/isTypedArray":428,"../object/keys":434,"./arrayEach":343,"./baseMergeDeep":372,"./getSymbols":398,"./isArrayLike":403,"./isObjectLike":408}],372:[function(require,module,exports){
40040
+ },{"../lang/isArray":416,"../lang/isObject":422,"../lang/isTypedArray":426,"../object/keys":432,"./arrayEach":342,"./baseMergeDeep":371,"./getSymbols":396,"./isArrayLike":401,"./isObjectLike":406}],371:[function(require,module,exports){
40110
40041
  var arrayCopy = require('./arrayCopy'),
40111
40042
  isArguments = require('../lang/isArguments'),
40112
40043
  isArray = require('../lang/isArray'),
@@ -40175,7 +40106,7 @@ function baseMergeDeep(object, source, key, mergeFunc, customizer, stackA, stack
40175
40106
 
40176
40107
  module.exports = baseMergeDeep;
40177
40108
 
40178
- },{"../lang/isArguments":417,"../lang/isArray":418,"../lang/isPlainObject":425,"../lang/isTypedArray":428,"../lang/toPlainObject":429,"./arrayCopy":342,"./isArrayLike":403}],373:[function(require,module,exports){
40109
+ },{"../lang/isArguments":415,"../lang/isArray":416,"../lang/isPlainObject":423,"../lang/isTypedArray":426,"../lang/toPlainObject":427,"./arrayCopy":341,"./isArrayLike":401}],372:[function(require,module,exports){
40179
40110
  /**
40180
40111
  * The base implementation of `_.property` without support for deep paths.
40181
40112
  *
@@ -40191,7 +40122,7 @@ function baseProperty(key) {
40191
40122
 
40192
40123
  module.exports = baseProperty;
40193
40124
 
40194
- },{}],374:[function(require,module,exports){
40125
+ },{}],373:[function(require,module,exports){
40195
40126
  var baseGet = require('./baseGet'),
40196
40127
  toPath = require('./toPath');
40197
40128
 
@@ -40212,7 +40143,7 @@ function basePropertyDeep(path) {
40212
40143
 
40213
40144
  module.exports = basePropertyDeep;
40214
40145
 
40215
- },{"./baseGet":362,"./toPath":414}],375:[function(require,module,exports){
40146
+ },{"./baseGet":361,"./toPath":412}],374:[function(require,module,exports){
40216
40147
  /**
40217
40148
  * The base implementation of `_.reduce` and `_.reduceRight` without support
40218
40149
  * for callback shorthands and `this` binding, which iterates over `collection`
@@ -40238,7 +40169,7 @@ function baseReduce(collection, iteratee, accumulator, initFromCollection, eachF
40238
40169
 
40239
40170
  module.exports = baseReduce;
40240
40171
 
40241
- },{}],376:[function(require,module,exports){
40172
+ },{}],375:[function(require,module,exports){
40242
40173
  /**
40243
40174
  * The base implementation of `_.slice` without an iteratee call guard.
40244
40175
  *
@@ -40272,7 +40203,7 @@ function baseSlice(array, start, end) {
40272
40203
 
40273
40204
  module.exports = baseSlice;
40274
40205
 
40275
- },{}],377:[function(require,module,exports){
40206
+ },{}],376:[function(require,module,exports){
40276
40207
  var baseEach = require('./baseEach');
40277
40208
 
40278
40209
  /**
@@ -40297,7 +40228,7 @@ function baseSome(collection, predicate) {
40297
40228
 
40298
40229
  module.exports = baseSome;
40299
40230
 
40300
- },{"./baseEach":354}],378:[function(require,module,exports){
40231
+ },{"./baseEach":353}],377:[function(require,module,exports){
40301
40232
  /**
40302
40233
  * The base implementation of `_.sortBy` which uses `comparer` to define
40303
40234
  * the sort order of `array` and replaces criteria objects with their
@@ -40320,7 +40251,7 @@ function baseSortBy(array, comparer) {
40320
40251
 
40321
40252
  module.exports = baseSortBy;
40322
40253
 
40323
- },{}],379:[function(require,module,exports){
40254
+ },{}],378:[function(require,module,exports){
40324
40255
  /**
40325
40256
  * Converts `value` to a string if it is not one. An empty string is returned
40326
40257
  * for `null` or `undefined` values.
@@ -40338,7 +40269,7 @@ function baseToString(value) {
40338
40269
 
40339
40270
  module.exports = baseToString;
40340
40271
 
40341
- },{}],380:[function(require,module,exports){
40272
+ },{}],379:[function(require,module,exports){
40342
40273
  var baseIndexOf = require('./baseIndexOf'),
40343
40274
  cacheIndexOf = require('./cacheIndexOf'),
40344
40275
  createCache = require('./createCache');
@@ -40397,7 +40328,7 @@ function baseUniq(array, iteratee) {
40397
40328
 
40398
40329
  module.exports = baseUniq;
40399
40330
 
40400
- },{"./baseIndexOf":363,"./cacheIndexOf":384,"./createCache":391}],381:[function(require,module,exports){
40331
+ },{"./baseIndexOf":362,"./cacheIndexOf":383,"./createCache":389}],380:[function(require,module,exports){
40401
40332
  /**
40402
40333
  * The base implementation of `_.values` and `_.valuesIn` which creates an
40403
40334
  * array of `object` property values corresponding to the property names
@@ -40421,7 +40352,7 @@ function baseValues(object, props) {
40421
40352
 
40422
40353
  module.exports = baseValues;
40423
40354
 
40424
- },{}],382:[function(require,module,exports){
40355
+ },{}],381:[function(require,module,exports){
40425
40356
  var identity = require('../utility/identity');
40426
40357
 
40427
40358
  /**
@@ -40462,7 +40393,7 @@ function bindCallback(func, thisArg, argCount) {
40462
40393
 
40463
40394
  module.exports = bindCallback;
40464
40395
 
40465
- },{"../utility/identity":441}],383:[function(require,module,exports){
40396
+ },{"../utility/identity":439}],382:[function(require,module,exports){
40466
40397
  (function (global){
40467
40398
  var constant = require('../utility/constant'),
40468
40399
  isNative = require('../lang/isNative');
@@ -40521,7 +40452,7 @@ if (!bufferSlice) {
40521
40452
  module.exports = bufferClone;
40522
40453
 
40523
40454
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
40524
- },{"../lang/isNative":422,"../utility/constant":440}],384:[function(require,module,exports){
40455
+ },{"../lang/isNative":420,"../utility/constant":438}],383:[function(require,module,exports){
40525
40456
  var isObject = require('../lang/isObject');
40526
40457
 
40527
40458
  /**
@@ -40542,7 +40473,7 @@ function cacheIndexOf(cache, value) {
40542
40473
 
40543
40474
  module.exports = cacheIndexOf;
40544
40475
 
40545
- },{"../lang/isObject":424}],385:[function(require,module,exports){
40476
+ },{"../lang/isObject":422}],384:[function(require,module,exports){
40546
40477
  var isObject = require('../lang/isObject');
40547
40478
 
40548
40479
  /**
@@ -40564,7 +40495,7 @@ function cachePush(value) {
40564
40495
 
40565
40496
  module.exports = cachePush;
40566
40497
 
40567
- },{"../lang/isObject":424}],386:[function(require,module,exports){
40498
+ },{"../lang/isObject":422}],385:[function(require,module,exports){
40568
40499
  var baseCompareAscending = require('./baseCompareAscending');
40569
40500
 
40570
40501
  /**
@@ -40582,49 +40513,7 @@ function compareAscending(object, other) {
40582
40513
 
40583
40514
  module.exports = compareAscending;
40584
40515
 
40585
- },{"./baseCompareAscending":352}],387:[function(require,module,exports){
40586
- var baseCallback = require('./baseCallback'),
40587
- baseEach = require('./baseEach'),
40588
- isArray = require('../lang/isArray');
40589
-
40590
- /**
40591
- * Creates a function that aggregates a collection, creating an accumulator
40592
- * object composed from the results of running each element in the collection
40593
- * through an iteratee.
40594
- *
40595
- * **Note:** This function is used to create `_.countBy`, `_.groupBy`, `_.indexBy`,
40596
- * and `_.partition`.
40597
- *
40598
- * @private
40599
- * @param {Function} setter The function to set keys and values of the accumulator object.
40600
- * @param {Function} [initializer] The function to initialize the accumulator object.
40601
- * @returns {Function} Returns the new aggregator function.
40602
- */
40603
- function createAggregator(setter, initializer) {
40604
- return function(collection, iteratee, thisArg) {
40605
- var result = initializer ? initializer() : {};
40606
- iteratee = baseCallback(iteratee, thisArg, 3);
40607
-
40608
- if (isArray(collection)) {
40609
- var index = -1,
40610
- length = collection.length;
40611
-
40612
- while (++index < length) {
40613
- var value = collection[index];
40614
- setter(result, value, iteratee(value, index, collection), collection);
40615
- }
40616
- } else {
40617
- baseEach(collection, function(value, key, collection) {
40618
- setter(result, value, iteratee(value, key, collection), collection);
40619
- });
40620
- }
40621
- return result;
40622
- };
40623
- }
40624
-
40625
- module.exports = createAggregator;
40626
-
40627
- },{"../lang/isArray":418,"./baseCallback":350,"./baseEach":354}],388:[function(require,module,exports){
40516
+ },{"./baseCompareAscending":351}],386:[function(require,module,exports){
40628
40517
  var bindCallback = require('./bindCallback'),
40629
40518
  isIterateeCall = require('./isIterateeCall'),
40630
40519
  restParam = require('../function/restParam');
@@ -40670,7 +40559,7 @@ function createAssigner(assigner) {
40670
40559
 
40671
40560
  module.exports = createAssigner;
40672
40561
 
40673
- },{"../function/restParam":340,"./bindCallback":382,"./isIterateeCall":405}],389:[function(require,module,exports){
40562
+ },{"../function/restParam":339,"./bindCallback":381,"./isIterateeCall":403}],387:[function(require,module,exports){
40674
40563
  var getLength = require('./getLength'),
40675
40564
  isLength = require('./isLength'),
40676
40565
  toObject = require('./toObject');
@@ -40703,7 +40592,7 @@ function createBaseEach(eachFunc, fromRight) {
40703
40592
 
40704
40593
  module.exports = createBaseEach;
40705
40594
 
40706
- },{"./getLength":397,"./isLength":407,"./toObject":413}],390:[function(require,module,exports){
40595
+ },{"./getLength":395,"./isLength":405,"./toObject":411}],388:[function(require,module,exports){
40707
40596
  var toObject = require('./toObject');
40708
40597
 
40709
40598
  /**
@@ -40732,7 +40621,7 @@ function createBaseFor(fromRight) {
40732
40621
 
40733
40622
  module.exports = createBaseFor;
40734
40623
 
40735
- },{"./toObject":413}],391:[function(require,module,exports){
40624
+ },{"./toObject":411}],389:[function(require,module,exports){
40736
40625
  (function (global){
40737
40626
  var SetCache = require('./SetCache'),
40738
40627
  constant = require('../utility/constant'),
@@ -40758,7 +40647,7 @@ var createCache = !(nativeCreate && Set) ? constant(null) : function(values) {
40758
40647
  module.exports = createCache;
40759
40648
 
40760
40649
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
40761
- },{"../lang/isNative":422,"../utility/constant":440,"./SetCache":341}],392:[function(require,module,exports){
40650
+ },{"../lang/isNative":420,"../utility/constant":438,"./SetCache":340}],390:[function(require,module,exports){
40762
40651
  var bindCallback = require('./bindCallback'),
40763
40652
  isArray = require('../lang/isArray');
40764
40653
 
@@ -40780,7 +40669,7 @@ function createForEach(arrayFunc, eachFunc) {
40780
40669
 
40781
40670
  module.exports = createForEach;
40782
40671
 
40783
- },{"../lang/isArray":418,"./bindCallback":382}],393:[function(require,module,exports){
40672
+ },{"../lang/isArray":416,"./bindCallback":381}],391:[function(require,module,exports){
40784
40673
  var baseCallback = require('./baseCallback'),
40785
40674
  baseReduce = require('./baseReduce'),
40786
40675
  isArray = require('../lang/isArray');
@@ -40804,7 +40693,7 @@ function createReduce(arrayFunc, eachFunc) {
40804
40693
 
40805
40694
  module.exports = createReduce;
40806
40695
 
40807
- },{"../lang/isArray":418,"./baseCallback":350,"./baseReduce":375}],394:[function(require,module,exports){
40696
+ },{"../lang/isArray":416,"./baseCallback":349,"./baseReduce":374}],392:[function(require,module,exports){
40808
40697
  /**
40809
40698
  * A specialized version of `baseIsEqualDeep` for arrays with support for
40810
40699
  * partial deep comparisons.
@@ -40860,7 +40749,7 @@ function equalArrays(array, other, equalFunc, customizer, isLoose, stackA, stack
40860
40749
 
40861
40750
  module.exports = equalArrays;
40862
40751
 
40863
- },{}],395:[function(require,module,exports){
40752
+ },{}],393:[function(require,module,exports){
40864
40753
  /** `Object#toString` result references. */
40865
40754
  var boolTag = '[object Boolean]',
40866
40755
  dateTag = '[object Date]',
@@ -40910,7 +40799,7 @@ function equalByTag(object, other, tag) {
40910
40799
 
40911
40800
  module.exports = equalByTag;
40912
40801
 
40913
- },{}],396:[function(require,module,exports){
40802
+ },{}],394:[function(require,module,exports){
40914
40803
  var keys = require('../object/keys');
40915
40804
 
40916
40805
  /** Used for native method references. */
@@ -40986,7 +40875,7 @@ function equalObjects(object, other, equalFunc, customizer, isLoose, stackA, sta
40986
40875
 
40987
40876
  module.exports = equalObjects;
40988
40877
 
40989
- },{"../object/keys":434}],397:[function(require,module,exports){
40878
+ },{"../object/keys":432}],395:[function(require,module,exports){
40990
40879
  var baseProperty = require('./baseProperty');
40991
40880
 
40992
40881
  /**
@@ -41003,7 +40892,7 @@ var getLength = baseProperty('length');
41003
40892
 
41004
40893
  module.exports = getLength;
41005
40894
 
41006
- },{"./baseProperty":373}],398:[function(require,module,exports){
40895
+ },{"./baseProperty":372}],396:[function(require,module,exports){
41007
40896
  var constant = require('../utility/constant'),
41008
40897
  isNative = require('../lang/isNative'),
41009
40898
  toObject = require('./toObject');
@@ -41024,7 +40913,7 @@ var getSymbols = !getOwnPropertySymbols ? constant([]) : function(object) {
41024
40913
 
41025
40914
  module.exports = getSymbols;
41026
40915
 
41027
- },{"../lang/isNative":422,"../utility/constant":440,"./toObject":413}],399:[function(require,module,exports){
40916
+ },{"../lang/isNative":420,"../utility/constant":438,"./toObject":411}],397:[function(require,module,exports){
41028
40917
  /**
41029
40918
  * Gets the index at which the first occurrence of `NaN` is found in `array`.
41030
40919
  *
@@ -41049,7 +40938,7 @@ function indexOfNaN(array, fromIndex, fromRight) {
41049
40938
 
41050
40939
  module.exports = indexOfNaN;
41051
40940
 
41052
- },{}],400:[function(require,module,exports){
40941
+ },{}],398:[function(require,module,exports){
41053
40942
  /** Used for native method references. */
41054
40943
  var objectProto = Object.prototype;
41055
40944
 
@@ -41077,7 +40966,7 @@ function initCloneArray(array) {
41077
40966
 
41078
40967
  module.exports = initCloneArray;
41079
40968
 
41080
- },{}],401:[function(require,module,exports){
40969
+ },{}],399:[function(require,module,exports){
41081
40970
  var bufferClone = require('./bufferClone');
41082
40971
 
41083
40972
  /** `Object#toString` result references. */
@@ -41142,7 +41031,7 @@ function initCloneByTag(object, tag, isDeep) {
41142
41031
 
41143
41032
  module.exports = initCloneByTag;
41144
41033
 
41145
- },{"./bufferClone":383}],402:[function(require,module,exports){
41034
+ },{"./bufferClone":382}],400:[function(require,module,exports){
41146
41035
  /**
41147
41036
  * Initializes an object clone.
41148
41037
  *
@@ -41160,7 +41049,7 @@ function initCloneObject(object) {
41160
41049
 
41161
41050
  module.exports = initCloneObject;
41162
41051
 
41163
- },{}],403:[function(require,module,exports){
41052
+ },{}],401:[function(require,module,exports){
41164
41053
  var getLength = require('./getLength'),
41165
41054
  isLength = require('./isLength');
41166
41055
 
@@ -41177,7 +41066,7 @@ function isArrayLike(value) {
41177
41066
 
41178
41067
  module.exports = isArrayLike;
41179
41068
 
41180
- },{"./getLength":397,"./isLength":407}],404:[function(require,module,exports){
41069
+ },{"./getLength":395,"./isLength":405}],402:[function(require,module,exports){
41181
41070
  /**
41182
41071
  * Used as the [maximum length](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.max_safe_integer)
41183
41072
  * of an array-like value.
@@ -41200,7 +41089,7 @@ function isIndex(value, length) {
41200
41089
 
41201
41090
  module.exports = isIndex;
41202
41091
 
41203
- },{}],405:[function(require,module,exports){
41092
+ },{}],403:[function(require,module,exports){
41204
41093
  var isArrayLike = require('./isArrayLike'),
41205
41094
  isIndex = require('./isIndex'),
41206
41095
  isObject = require('../lang/isObject');
@@ -41230,7 +41119,7 @@ function isIterateeCall(value, index, object) {
41230
41119
 
41231
41120
  module.exports = isIterateeCall;
41232
41121
 
41233
- },{"../lang/isObject":424,"./isArrayLike":403,"./isIndex":404}],406:[function(require,module,exports){
41122
+ },{"../lang/isObject":422,"./isArrayLike":401,"./isIndex":402}],404:[function(require,module,exports){
41234
41123
  var isArray = require('../lang/isArray'),
41235
41124
  toObject = require('./toObject');
41236
41125
 
@@ -41260,7 +41149,7 @@ function isKey(value, object) {
41260
41149
 
41261
41150
  module.exports = isKey;
41262
41151
 
41263
- },{"../lang/isArray":418,"./toObject":413}],407:[function(require,module,exports){
41152
+ },{"../lang/isArray":416,"./toObject":411}],405:[function(require,module,exports){
41264
41153
  /**
41265
41154
  * Used as the [maximum length](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.max_safe_integer)
41266
41155
  * of an array-like value.
@@ -41282,7 +41171,7 @@ function isLength(value) {
41282
41171
 
41283
41172
  module.exports = isLength;
41284
41173
 
41285
- },{}],408:[function(require,module,exports){
41174
+ },{}],406:[function(require,module,exports){
41286
41175
  /**
41287
41176
  * Checks if `value` is object-like.
41288
41177
  *
@@ -41296,7 +41185,7 @@ function isObjectLike(value) {
41296
41185
 
41297
41186
  module.exports = isObjectLike;
41298
41187
 
41299
- },{}],409:[function(require,module,exports){
41188
+ },{}],407:[function(require,module,exports){
41300
41189
  var isObject = require('../lang/isObject');
41301
41190
 
41302
41191
  /**
@@ -41313,7 +41202,7 @@ function isStrictComparable(value) {
41313
41202
 
41314
41203
  module.exports = isStrictComparable;
41315
41204
 
41316
- },{"../lang/isObject":424}],410:[function(require,module,exports){
41205
+ },{"../lang/isObject":422}],408:[function(require,module,exports){
41317
41206
  var baseForIn = require('./baseForIn'),
41318
41207
  isObjectLike = require('./isObjectLike');
41319
41208
 
@@ -41365,7 +41254,7 @@ function shimIsPlainObject(value) {
41365
41254
 
41366
41255
  module.exports = shimIsPlainObject;
41367
41256
 
41368
- },{"./baseForIn":358,"./isObjectLike":408}],411:[function(require,module,exports){
41257
+ },{"./baseForIn":357,"./isObjectLike":406}],409:[function(require,module,exports){
41369
41258
  var isArguments = require('../lang/isArguments'),
41370
41259
  isArray = require('../lang/isArray'),
41371
41260
  isIndex = require('./isIndex'),
@@ -41409,7 +41298,7 @@ function shimKeys(object) {
41409
41298
 
41410
41299
  module.exports = shimKeys;
41411
41300
 
41412
- },{"../lang/isArguments":417,"../lang/isArray":418,"../object/keysIn":435,"../support":439,"./isIndex":404,"./isLength":407}],412:[function(require,module,exports){
41301
+ },{"../lang/isArguments":415,"../lang/isArray":416,"../object/keysIn":433,"../support":437,"./isIndex":402,"./isLength":405}],410:[function(require,module,exports){
41413
41302
  /**
41414
41303
  * An implementation of `_.uniq` optimized for sorted arrays without support
41415
41304
  * for callback shorthands and `this` binding.
@@ -41440,7 +41329,7 @@ function sortedUniq(array, iteratee) {
41440
41329
 
41441
41330
  module.exports = sortedUniq;
41442
41331
 
41443
- },{}],413:[function(require,module,exports){
41332
+ },{}],411:[function(require,module,exports){
41444
41333
  var isObject = require('../lang/isObject');
41445
41334
 
41446
41335
  /**
@@ -41456,7 +41345,7 @@ function toObject(value) {
41456
41345
 
41457
41346
  module.exports = toObject;
41458
41347
 
41459
- },{"../lang/isObject":424}],414:[function(require,module,exports){
41348
+ },{"../lang/isObject":422}],412:[function(require,module,exports){
41460
41349
  var baseToString = require('./baseToString'),
41461
41350
  isArray = require('../lang/isArray');
41462
41351
 
@@ -41486,7 +41375,7 @@ function toPath(value) {
41486
41375
 
41487
41376
  module.exports = toPath;
41488
41377
 
41489
- },{"../lang/isArray":418,"./baseToString":379}],415:[function(require,module,exports){
41378
+ },{"../lang/isArray":416,"./baseToString":378}],413:[function(require,module,exports){
41490
41379
  var baseClone = require('../internal/baseClone'),
41491
41380
  bindCallback = require('../internal/bindCallback'),
41492
41381
  isIterateeCall = require('../internal/isIterateeCall');
@@ -41557,7 +41446,7 @@ function clone(value, isDeep, customizer, thisArg) {
41557
41446
 
41558
41447
  module.exports = clone;
41559
41448
 
41560
- },{"../internal/baseClone":351,"../internal/bindCallback":382,"../internal/isIterateeCall":405}],416:[function(require,module,exports){
41449
+ },{"../internal/baseClone":350,"../internal/bindCallback":381,"../internal/isIterateeCall":403}],414:[function(require,module,exports){
41561
41450
  var baseClone = require('../internal/baseClone'),
41562
41451
  bindCallback = require('../internal/bindCallback');
41563
41452
 
@@ -41613,7 +41502,7 @@ function cloneDeep(value, customizer, thisArg) {
41613
41502
 
41614
41503
  module.exports = cloneDeep;
41615
41504
 
41616
- },{"../internal/baseClone":351,"../internal/bindCallback":382}],417:[function(require,module,exports){
41505
+ },{"../internal/baseClone":350,"../internal/bindCallback":381}],415:[function(require,module,exports){
41617
41506
  var isArrayLike = require('../internal/isArrayLike'),
41618
41507
  isObjectLike = require('../internal/isObjectLike');
41619
41508
 
@@ -41651,7 +41540,7 @@ function isArguments(value) {
41651
41540
 
41652
41541
  module.exports = isArguments;
41653
41542
 
41654
- },{"../internal/isArrayLike":403,"../internal/isObjectLike":408}],418:[function(require,module,exports){
41543
+ },{"../internal/isArrayLike":401,"../internal/isObjectLike":406}],416:[function(require,module,exports){
41655
41544
  var isLength = require('../internal/isLength'),
41656
41545
  isNative = require('./isNative'),
41657
41546
  isObjectLike = require('../internal/isObjectLike');
@@ -41693,7 +41582,7 @@ var isArray = nativeIsArray || function(value) {
41693
41582
 
41694
41583
  module.exports = isArray;
41695
41584
 
41696
- },{"../internal/isLength":407,"../internal/isObjectLike":408,"./isNative":422}],419:[function(require,module,exports){
41585
+ },{"../internal/isLength":405,"../internal/isObjectLike":406,"./isNative":420}],417:[function(require,module,exports){
41697
41586
  var isObjectLike = require('../internal/isObjectLike');
41698
41587
 
41699
41588
  /** `Object#toString` result references. */
@@ -41730,7 +41619,7 @@ function isBoolean(value) {
41730
41619
 
41731
41620
  module.exports = isBoolean;
41732
41621
 
41733
- },{"../internal/isObjectLike":408}],420:[function(require,module,exports){
41622
+ },{"../internal/isObjectLike":406}],418:[function(require,module,exports){
41734
41623
  var isArguments = require('./isArguments'),
41735
41624
  isArray = require('./isArray'),
41736
41625
  isArrayLike = require('../internal/isArrayLike'),
@@ -41779,7 +41668,7 @@ function isEmpty(value) {
41779
41668
 
41780
41669
  module.exports = isEmpty;
41781
41670
 
41782
- },{"../internal/isArrayLike":403,"../internal/isObjectLike":408,"../object/keys":434,"./isArguments":417,"./isArray":418,"./isFunction":421,"./isString":427}],421:[function(require,module,exports){
41671
+ },{"../internal/isArrayLike":401,"../internal/isObjectLike":406,"../object/keys":432,"./isArguments":415,"./isArray":416,"./isFunction":419,"./isString":425}],419:[function(require,module,exports){
41783
41672
  (function (global){
41784
41673
  var baseIsFunction = require('../internal/baseIsFunction'),
41785
41674
  isNative = require('./isNative');
@@ -41825,7 +41714,7 @@ var isFunction = !(baseIsFunction(/x/) || (Uint8Array && !baseIsFunction(Uint8Ar
41825
41714
  module.exports = isFunction;
41826
41715
 
41827
41716
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
41828
- },{"../internal/baseIsFunction":366,"./isNative":422}],422:[function(require,module,exports){
41717
+ },{"../internal/baseIsFunction":365,"./isNative":420}],420:[function(require,module,exports){
41829
41718
  var escapeRegExp = require('../string/escapeRegExp'),
41830
41719
  isObjectLike = require('../internal/isObjectLike');
41831
41720
 
@@ -41881,7 +41770,7 @@ function isNative(value) {
41881
41770
 
41882
41771
  module.exports = isNative;
41883
41772
 
41884
- },{"../internal/isObjectLike":408,"../string/escapeRegExp":438}],423:[function(require,module,exports){
41773
+ },{"../internal/isObjectLike":406,"../string/escapeRegExp":436}],421:[function(require,module,exports){
41885
41774
  var isObjectLike = require('../internal/isObjectLike');
41886
41775
 
41887
41776
  /** `Object#toString` result references. */
@@ -41924,7 +41813,7 @@ function isNumber(value) {
41924
41813
 
41925
41814
  module.exports = isNumber;
41926
41815
 
41927
- },{"../internal/isObjectLike":408}],424:[function(require,module,exports){
41816
+ },{"../internal/isObjectLike":406}],422:[function(require,module,exports){
41928
41817
  /**
41929
41818
  * Checks if `value` is the [language type](https://es5.github.io/#x8) of `Object`.
41930
41819
  * (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)
@@ -41954,7 +41843,7 @@ function isObject(value) {
41954
41843
 
41955
41844
  module.exports = isObject;
41956
41845
 
41957
- },{}],425:[function(require,module,exports){
41846
+ },{}],423:[function(require,module,exports){
41958
41847
  var isNative = require('./isNative'),
41959
41848
  shimIsPlainObject = require('../internal/shimIsPlainObject');
41960
41849
 
@@ -42017,7 +41906,7 @@ var isPlainObject = !getPrototypeOf ? shimIsPlainObject : function(value) {
42017
41906
 
42018
41907
  module.exports = isPlainObject;
42019
41908
 
42020
- },{"../internal/shimIsPlainObject":410,"./isNative":422}],426:[function(require,module,exports){
41909
+ },{"../internal/shimIsPlainObject":408,"./isNative":420}],424:[function(require,module,exports){
42021
41910
  var isObjectLike = require('../internal/isObjectLike');
42022
41911
 
42023
41912
  /** `Object#toString` result references. */
@@ -42054,7 +41943,7 @@ function isRegExp(value) {
42054
41943
 
42055
41944
  module.exports = isRegExp;
42056
41945
 
42057
- },{"../internal/isObjectLike":408}],427:[function(require,module,exports){
41946
+ },{"../internal/isObjectLike":406}],425:[function(require,module,exports){
42058
41947
  var isObjectLike = require('../internal/isObjectLike');
42059
41948
 
42060
41949
  /** `Object#toString` result references. */
@@ -42091,7 +41980,7 @@ function isString(value) {
42091
41980
 
42092
41981
  module.exports = isString;
42093
41982
 
42094
- },{"../internal/isObjectLike":408}],428:[function(require,module,exports){
41983
+ },{"../internal/isObjectLike":406}],426:[function(require,module,exports){
42095
41984
  var isLength = require('../internal/isLength'),
42096
41985
  isObjectLike = require('../internal/isObjectLike');
42097
41986
 
@@ -42167,7 +42056,7 @@ function isTypedArray(value) {
42167
42056
 
42168
42057
  module.exports = isTypedArray;
42169
42058
 
42170
- },{"../internal/isLength":407,"../internal/isObjectLike":408}],429:[function(require,module,exports){
42059
+ },{"../internal/isLength":405,"../internal/isObjectLike":406}],427:[function(require,module,exports){
42171
42060
  var baseCopy = require('../internal/baseCopy'),
42172
42061
  keysIn = require('../object/keysIn');
42173
42062
 
@@ -42200,7 +42089,7 @@ function toPlainObject(value) {
42200
42089
 
42201
42090
  module.exports = toPlainObject;
42202
42091
 
42203
- },{"../internal/baseCopy":353,"../object/keysIn":435}],430:[function(require,module,exports){
42092
+ },{"../internal/baseCopy":352,"../object/keysIn":433}],428:[function(require,module,exports){
42204
42093
  var assignWith = require('../internal/assignWith'),
42205
42094
  baseAssign = require('../internal/baseAssign'),
42206
42095
  createAssigner = require('../internal/createAssigner');
@@ -42245,7 +42134,7 @@ var assign = createAssigner(function(object, source, customizer) {
42245
42134
 
42246
42135
  module.exports = assign;
42247
42136
 
42248
- },{"../internal/assignWith":348,"../internal/baseAssign":349,"../internal/createAssigner":388}],431:[function(require,module,exports){
42137
+ },{"../internal/assignWith":347,"../internal/baseAssign":348,"../internal/createAssigner":386}],429:[function(require,module,exports){
42249
42138
  var assign = require('./assign'),
42250
42139
  assignDefaults = require('../internal/assignDefaults'),
42251
42140
  restParam = require('../function/restParam');
@@ -42279,10 +42168,10 @@ var defaults = restParam(function(args) {
42279
42168
 
42280
42169
  module.exports = defaults;
42281
42170
 
42282
- },{"../function/restParam":340,"../internal/assignDefaults":347,"./assign":430}],432:[function(require,module,exports){
42171
+ },{"../function/restParam":339,"../internal/assignDefaults":346,"./assign":428}],430:[function(require,module,exports){
42283
42172
  module.exports = require('./assign');
42284
42173
 
42285
- },{"./assign":430}],433:[function(require,module,exports){
42174
+ },{"./assign":428}],431:[function(require,module,exports){
42286
42175
  var baseGet = require('../internal/baseGet'),
42287
42176
  baseSlice = require('../internal/baseSlice'),
42288
42177
  isKey = require('../internal/isKey'),
@@ -42333,7 +42222,7 @@ function has(object, path) {
42333
42222
 
42334
42223
  module.exports = has;
42335
42224
 
42336
- },{"../array/last":328,"../internal/baseGet":362,"../internal/baseSlice":376,"../internal/isKey":406,"../internal/toPath":414}],434:[function(require,module,exports){
42225
+ },{"../array/last":328,"../internal/baseGet":361,"../internal/baseSlice":375,"../internal/isKey":404,"../internal/toPath":412}],432:[function(require,module,exports){
42337
42226
  var isArrayLike = require('../internal/isArrayLike'),
42338
42227
  isNative = require('../lang/isNative'),
42339
42228
  isObject = require('../lang/isObject'),
@@ -42380,7 +42269,7 @@ var keys = !nativeKeys ? shimKeys : function(object) {
42380
42269
 
42381
42270
  module.exports = keys;
42382
42271
 
42383
- },{"../internal/isArrayLike":403,"../internal/shimKeys":411,"../lang/isNative":422,"../lang/isObject":424}],435:[function(require,module,exports){
42272
+ },{"../internal/isArrayLike":401,"../internal/shimKeys":409,"../lang/isNative":420,"../lang/isObject":422}],433:[function(require,module,exports){
42384
42273
  var isArguments = require('../lang/isArguments'),
42385
42274
  isArray = require('../lang/isArray'),
42386
42275
  isIndex = require('../internal/isIndex'),
@@ -42447,7 +42336,7 @@ function keysIn(object) {
42447
42336
 
42448
42337
  module.exports = keysIn;
42449
42338
 
42450
- },{"../internal/isIndex":404,"../internal/isLength":407,"../lang/isArguments":417,"../lang/isArray":418,"../lang/isObject":424,"../support":439}],436:[function(require,module,exports){
42339
+ },{"../internal/isIndex":402,"../internal/isLength":405,"../lang/isArguments":415,"../lang/isArray":416,"../lang/isObject":422,"../support":437}],434:[function(require,module,exports){
42451
42340
  var baseMerge = require('../internal/baseMerge'),
42452
42341
  createAssigner = require('../internal/createAssigner');
42453
42342
 
@@ -42503,7 +42392,7 @@ var merge = createAssigner(baseMerge);
42503
42392
 
42504
42393
  module.exports = merge;
42505
42394
 
42506
- },{"../internal/baseMerge":371,"../internal/createAssigner":388}],437:[function(require,module,exports){
42395
+ },{"../internal/baseMerge":370,"../internal/createAssigner":386}],435:[function(require,module,exports){
42507
42396
  var baseValues = require('../internal/baseValues'),
42508
42397
  keys = require('./keys');
42509
42398
 
@@ -42538,7 +42427,7 @@ function values(object) {
42538
42427
 
42539
42428
  module.exports = values;
42540
42429
 
42541
- },{"../internal/baseValues":381,"./keys":434}],438:[function(require,module,exports){
42430
+ },{"../internal/baseValues":380,"./keys":432}],436:[function(require,module,exports){
42542
42431
  var baseToString = require('../internal/baseToString');
42543
42432
 
42544
42433
  /**
@@ -42572,7 +42461,7 @@ function escapeRegExp(string) {
42572
42461
 
42573
42462
  module.exports = escapeRegExp;
42574
42463
 
42575
- },{"../internal/baseToString":379}],439:[function(require,module,exports){
42464
+ },{"../internal/baseToString":378}],437:[function(require,module,exports){
42576
42465
  (function (global){
42577
42466
  /** Used for native method references. */
42578
42467
  var objectProto = Object.prototype;
@@ -42653,7 +42542,7 @@ var support = {};
42653
42542
  module.exports = support;
42654
42543
 
42655
42544
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
42656
- },{}],440:[function(require,module,exports){
42545
+ },{}],438:[function(require,module,exports){
42657
42546
  /**
42658
42547
  * Creates a function that returns `value`.
42659
42548
  *
@@ -42678,7 +42567,7 @@ function constant(value) {
42678
42567
 
42679
42568
  module.exports = constant;
42680
42569
 
42681
- },{}],441:[function(require,module,exports){
42570
+ },{}],439:[function(require,module,exports){
42682
42571
  /**
42683
42572
  * This method returns the first argument provided to it.
42684
42573
  *
@@ -42700,7 +42589,7 @@ function identity(value) {
42700
42589
 
42701
42590
  module.exports = identity;
42702
42591
 
42703
- },{}],442:[function(require,module,exports){
42592
+ },{}],440:[function(require,module,exports){
42704
42593
  var baseProperty = require('../internal/baseProperty'),
42705
42594
  basePropertyDeep = require('../internal/basePropertyDeep'),
42706
42595
  isKey = require('../internal/isKey');
@@ -42733,7 +42622,7 @@ function property(path) {
42733
42622
 
42734
42623
  module.exports = property;
42735
42624
 
42736
- },{"../internal/baseProperty":373,"../internal/basePropertyDeep":374,"../internal/isKey":406}],443:[function(require,module,exports){
42625
+ },{"../internal/baseProperty":372,"../internal/basePropertyDeep":373,"../internal/isKey":404}],441:[function(require,module,exports){
42737
42626
  module.exports = minimatch
42738
42627
  minimatch.Minimatch = Minimatch
42739
42628
 
@@ -43602,7 +43491,7 @@ function regExpEscape (s) {
43602
43491
  return s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&')
43603
43492
  }
43604
43493
 
43605
- },{"brace-expansion":444,"path":196}],444:[function(require,module,exports){
43494
+ },{"brace-expansion":442,"path":196}],442:[function(require,module,exports){
43606
43495
  var concatMap = require('concat-map');
43607
43496
  var balanced = require('balanced-match');
43608
43497
 
@@ -43795,7 +43684,7 @@ function expand(str, isTop) {
43795
43684
  }
43796
43685
 
43797
43686
 
43798
- },{"balanced-match":445,"concat-map":446}],445:[function(require,module,exports){
43687
+ },{"balanced-match":443,"concat-map":444}],443:[function(require,module,exports){
43799
43688
  module.exports = balanced;
43800
43689
  function balanced(a, b, str) {
43801
43690
  var bal = 0;
@@ -43835,7 +43724,7 @@ function balanced(a, b, str) {
43835
43724
  }
43836
43725
  }
43837
43726
 
43838
- },{}],446:[function(require,module,exports){
43727
+ },{}],444:[function(require,module,exports){
43839
43728
  module.exports = function (xs, fn) {
43840
43729
  var res = [];
43841
43730
  for (var i = 0; i < xs.length; i++) {
@@ -43850,7 +43739,7 @@ var isArray = Array.isArray || function (xs) {
43850
43739
  return Object.prototype.toString.call(xs) === '[object Array]';
43851
43740
  };
43852
43741
 
43853
- },{}],447:[function(require,module,exports){
43742
+ },{}],445:[function(require,module,exports){
43854
43743
  (function (process){
43855
43744
  'use strict';
43856
43745
 
@@ -43874,7 +43763,7 @@ module.exports.posix = posix;
43874
43763
  module.exports.win32 = win32;
43875
43764
 
43876
43765
  }).call(this,require('_process'))
43877
- },{"_process":197}],448:[function(require,module,exports){
43766
+ },{"_process":197}],446:[function(require,module,exports){
43878
43767
  "use strict";
43879
43768
 
43880
43769
  var originalObject = Object;
@@ -44005,7 +43894,7 @@ function makeAccessor(secretCreatorFn) {
44005
43894
 
44006
43895
  defProp(exports, "makeAccessor", makeAccessor);
44007
43896
 
44008
- },{}],449:[function(require,module,exports){
43897
+ },{}],447:[function(require,module,exports){
44009
43898
  /**
44010
43899
  * Copyright (c) 2014, Facebook, Inc.
44011
43900
  * All rights reserved.
@@ -45198,7 +45087,7 @@ Ep.explodeExpression = function(path, ignoreResult) {
45198
45087
  }
45199
45088
  };
45200
45089
 
45201
- },{"./leap":451,"./meta":452,"./util":453,"assert":187,"recast":482}],450:[function(require,module,exports){
45090
+ },{"./leap":449,"./meta":450,"./util":451,"assert":187,"recast":480}],448:[function(require,module,exports){
45202
45091
  /**
45203
45092
  * Copyright (c) 2014, Facebook, Inc.
45204
45093
  * All rights reserved.
@@ -45353,7 +45242,7 @@ exports.hoist = function(funPath) {
45353
45242
  return b.variableDeclaration("var", declarations);
45354
45243
  };
45355
45244
 
45356
- },{"assert":187,"recast":482}],451:[function(require,module,exports){
45245
+ },{"assert":187,"recast":480}],449:[function(require,module,exports){
45357
45246
  /**
45358
45247
  * Copyright (c) 2014, Facebook, Inc.
45359
45248
  * All rights reserved.
@@ -45532,7 +45421,7 @@ LMp.getContinueLoc = function(label) {
45532
45421
  return this._findLeapLocation("continueLoc", label);
45533
45422
  };
45534
45423
 
45535
- },{"./emit":449,"assert":187,"recast":482,"util":213}],452:[function(require,module,exports){
45424
+ },{"./emit":447,"assert":187,"recast":480,"util":213}],450:[function(require,module,exports){
45536
45425
  /**
45537
45426
  * Copyright (c) 2014, Facebook, Inc.
45538
45427
  * All rights reserved.
@@ -45634,7 +45523,7 @@ for (var type in leapTypes) {
45634
45523
  exports.hasSideEffects = makePredicate("hasSideEffects", sideEffectTypes);
45635
45524
  exports.containsLeap = makePredicate("containsLeap", leapTypes);
45636
45525
 
45637
- },{"assert":187,"private":448,"recast":482}],453:[function(require,module,exports){
45526
+ },{"assert":187,"private":446,"recast":480}],451:[function(require,module,exports){
45638
45527
  /**
45639
45528
  * Copyright (c) 2014, Facebook, Inc.
45640
45529
  * All rights reserved.
@@ -45736,7 +45625,7 @@ exports.isReference = function(path, name) {
45736
45625
  }
45737
45626
  };
45738
45627
 
45739
- },{"assert":187,"recast":482}],454:[function(require,module,exports){
45628
+ },{"assert":187,"recast":480}],452:[function(require,module,exports){
45740
45629
  /**
45741
45630
  * Copyright (c) 2014, Facebook, Inc.
45742
45631
  * All rights reserved.
@@ -46131,7 +46020,7 @@ var awaitVisitor = types.PathVisitor.fromMethodsObject({
46131
46020
  }
46132
46021
  });
46133
46022
 
46134
- },{"..":455,"./emit":449,"./hoist":450,"./util":453,"assert":187,"fs":186,"private":448,"recast":482}],455:[function(require,module,exports){
46023
+ },{"..":453,"./emit":447,"./hoist":448,"./util":451,"assert":187,"fs":186,"private":446,"recast":480}],453:[function(require,module,exports){
46135
46024
  (function (__dirname){
46136
46025
  /**
46137
46026
  * Copyright (c) 2014, Facebook, Inc.
@@ -46292,7 +46181,7 @@ exports.compile = compile;
46292
46181
  exports.transform = transform;
46293
46182
 
46294
46183
  }).call(this,"/node_modules/regenerator")
46295
- },{"./lib/util":453,"./lib/visit":454,"./runtime":485,"assert":187,"defs":456,"esprima-fb":471,"fs":186,"path":196,"recast":482,"through":484}],456:[function(require,module,exports){
46184
+ },{"./lib/util":451,"./lib/visit":452,"./runtime":483,"assert":187,"defs":454,"esprima-fb":469,"fs":186,"path":196,"recast":480,"through":482}],454:[function(require,module,exports){
46296
46185
  "use strict";
46297
46186
 
46298
46187
  var assert = require("assert");
@@ -46974,7 +46863,7 @@ function run(src, config) {
46974
46863
 
46975
46864
  module.exports = run;
46976
46865
 
46977
- },{"./error":457,"./jshint_globals/vars.js":458,"./options":459,"./scope":460,"./stats":461,"alter":462,"assert":187,"ast-traverse":464,"breakable":465,"simple-fmt":467,"simple-is":468,"stringmap":469,"stringset":470}],457:[function(require,module,exports){
46866
+ },{"./error":455,"./jshint_globals/vars.js":456,"./options":457,"./scope":458,"./stats":459,"alter":460,"assert":187,"ast-traverse":462,"breakable":463,"simple-fmt":465,"simple-is":466,"stringmap":467,"stringset":468}],455:[function(require,module,exports){
46978
46867
  "use strict";
46979
46868
 
46980
46869
  var fmt = require("simple-fmt");
@@ -47004,7 +46893,7 @@ error.reset();
47004
46893
 
47005
46894
  module.exports = error;
47006
46895
 
47007
- },{"assert":187,"simple-fmt":467}],458:[function(require,module,exports){
46896
+ },{"assert":187,"simple-fmt":465}],456:[function(require,module,exports){
47008
46897
  // jshint -W001
47009
46898
 
47010
46899
  "use strict";
@@ -47401,7 +47290,7 @@ exports.yui = {
47401
47290
  };
47402
47291
 
47403
47292
 
47404
- },{}],459:[function(require,module,exports){
47293
+ },{}],457:[function(require,module,exports){
47405
47294
  // default configuration
47406
47295
 
47407
47296
  module.exports = {
@@ -47411,7 +47300,7 @@ module.exports = {
47411
47300
  parse: require("esprima-fb").parse,
47412
47301
  };
47413
47302
 
47414
- },{"esprima-fb":466}],460:[function(require,module,exports){
47303
+ },{"esprima-fb":464}],458:[function(require,module,exports){
47415
47304
  "use strict";
47416
47305
 
47417
47306
  var assert = require("assert");
@@ -47637,7 +47526,7 @@ Scope.prototype.traverse = function(options) {
47637
47526
 
47638
47527
  module.exports = Scope;
47639
47528
 
47640
- },{"./error":457,"./options":459,"assert":187,"simple-fmt":467,"simple-is":468,"stringmap":469,"stringset":470}],461:[function(require,module,exports){
47529
+ },{"./error":455,"./options":457,"assert":187,"simple-fmt":465,"simple-is":466,"stringmap":467,"stringset":468}],459:[function(require,module,exports){
47641
47530
  var fmt = require("simple-fmt");
47642
47531
  var is = require("simple-is");
47643
47532
  var assert = require("assert");
@@ -47689,7 +47578,7 @@ Stats.prototype.toString = function() {
47689
47578
 
47690
47579
  module.exports = Stats;
47691
47580
 
47692
- },{"assert":187,"simple-fmt":467,"simple-is":468}],462:[function(require,module,exports){
47581
+ },{"assert":187,"simple-fmt":465,"simple-is":466}],460:[function(require,module,exports){
47693
47582
  // alter.js
47694
47583
  // MIT licensed, see LICENSE file
47695
47584
  // Copyright (c) 2013 Olov Lassus <olov.lassus@gmail.com>
@@ -47736,7 +47625,7 @@ if (typeof module !== "undefined" && typeof module.exports !== "undefined") {
47736
47625
  module.exports = alter;
47737
47626
  }
47738
47627
 
47739
- },{"assert":187,"stable":463}],463:[function(require,module,exports){
47628
+ },{"assert":187,"stable":461}],461:[function(require,module,exports){
47740
47629
  //! stable.js 0.1.5, https://github.com/Two-Screen/stable
47741
47630
  //! © 2014 Angry Bytes and contributors. MIT licensed.
47742
47631
 
@@ -47849,7 +47738,7 @@ else {
47849
47738
 
47850
47739
  })();
47851
47740
 
47852
- },{}],464:[function(require,module,exports){
47741
+ },{}],462:[function(require,module,exports){
47853
47742
  function traverse(root, options) {
47854
47743
  "use strict";
47855
47744
 
@@ -47898,7 +47787,7 @@ if (typeof module !== "undefined" && typeof module.exports !== "undefined") {
47898
47787
  module.exports = traverse;
47899
47788
  }
47900
47789
 
47901
- },{}],465:[function(require,module,exports){
47790
+ },{}],463:[function(require,module,exports){
47902
47791
  // breakable.js
47903
47792
  // MIT licensed, see LICENSE file
47904
47793
  // Copyright (c) 2013-2014 Olov Lassus <olov.lassus@gmail.com>
@@ -47936,7 +47825,7 @@ if (typeof module !== "undefined" && typeof module.exports !== "undefined") {
47936
47825
  module.exports = breakable;
47937
47826
  }
47938
47827
 
47939
- },{}],466:[function(require,module,exports){
47828
+ },{}],464:[function(require,module,exports){
47940
47829
  /*
47941
47830
  Copyright (C) 2013 Ariya Hidayat <ariya.hidayat@gmail.com>
47942
47831
  Copyright (C) 2013 Thaddee Tyl <thaddee.tyl@gmail.com>
@@ -55554,7 +55443,7 @@ parseYieldExpression: true, parseAwaitExpression: true
55554
55443
  }));
55555
55444
  /* vim: set sw=4 ts=4 et tw=80 : */
55556
55445
 
55557
- },{}],467:[function(require,module,exports){
55446
+ },{}],465:[function(require,module,exports){
55558
55447
  // simple-fmt.js
55559
55448
  // MIT licensed, see LICENSE file
55560
55449
  // Copyright (c) 2013 Olov Lassus <olov.lassus@gmail.com>
@@ -55589,7 +55478,7 @@ if (typeof module !== "undefined" && typeof module.exports !== "undefined") {
55589
55478
  module.exports = fmt;
55590
55479
  }
55591
55480
 
55592
- },{}],468:[function(require,module,exports){
55481
+ },{}],466:[function(require,module,exports){
55593
55482
  // simple-is.js
55594
55483
  // MIT licensed, see LICENSE file
55595
55484
  // Copyright (c) 2013 Olov Lassus <olov.lassus@gmail.com>
@@ -55647,7 +55536,7 @@ if (typeof module !== "undefined" && typeof module.exports !== "undefined") {
55647
55536
  module.exports = is;
55648
55537
  }
55649
55538
 
55650
- },{}],469:[function(require,module,exports){
55539
+ },{}],467:[function(require,module,exports){
55651
55540
  // stringmap.js
55652
55541
  // MIT licensed, see LICENSE file
55653
55542
  // Copyright (c) 2013 Olov Lassus <olov.lassus@gmail.com>
@@ -55893,7 +55782,7 @@ if (typeof module !== "undefined" && typeof module.exports !== "undefined") {
55893
55782
  module.exports = StringMap;
55894
55783
  }
55895
55784
 
55896
- },{}],470:[function(require,module,exports){
55785
+ },{}],468:[function(require,module,exports){
55897
55786
  // stringset.js
55898
55787
  // MIT licensed, see LICENSE file
55899
55788
  // Copyright (c) 2013 Olov Lassus <olov.lassus@gmail.com>
@@ -56076,7 +55965,7 @@ if (typeof module !== "undefined" && typeof module.exports !== "undefined") {
56076
55965
  module.exports = StringSet;
56077
55966
  }
56078
55967
 
56079
- },{}],471:[function(require,module,exports){
55968
+ },{}],469:[function(require,module,exports){
56080
55969
  /*
56081
55970
  Copyright (C) 2013 Ariya Hidayat <ariya.hidayat@gmail.com>
56082
55971
  Copyright (C) 2013 Thaddee Tyl <thaddee.tyl@gmail.com>
@@ -63782,7 +63671,7 @@ if (typeof module !== "undefined" && typeof module.exports !== "undefined") {
63782
63671
  }));
63783
63672
  /* vim: set sw=4 ts=4 et tw=80 : */
63784
63673
 
63785
- },{}],472:[function(require,module,exports){
63674
+ },{}],470:[function(require,module,exports){
63786
63675
  var assert = require("assert");
63787
63676
  var types = require("./types");
63788
63677
  var n = types.namedTypes;
@@ -64134,7 +64023,7 @@ exports.printComments = function(path, print) {
64134
64023
  return concat(leadingParts);
64135
64024
  };
64136
64025
 
64137
- },{"./lines":474,"./types":480,"./util":481,"assert":187,"private":448}],473:[function(require,module,exports){
64026
+ },{"./lines":472,"./types":478,"./util":479,"assert":187,"private":446}],471:[function(require,module,exports){
64138
64027
  var assert = require("assert");
64139
64028
  var types = require("./types");
64140
64029
  var n = types.namedTypes;
@@ -64604,7 +64493,7 @@ FPp.firstInStatement = function() {
64604
64493
  return true;
64605
64494
  };
64606
64495
 
64607
- },{"./types":480,"assert":187}],474:[function(require,module,exports){
64496
+ },{"./types":478,"assert":187}],472:[function(require,module,exports){
64608
64497
  var assert = require("assert");
64609
64498
  var sourceMap = require("source-map");
64610
64499
  var normalizeOptions = require("./options").normalize;
@@ -65452,7 +65341,7 @@ Lp.concat = function(other) {
65452
65341
  // Lines.prototype will be fully populated.
65453
65342
  var emptyLines = fromString("");
65454
65343
 
65455
- },{"./mapping":475,"./options":476,"./types":480,"./util":481,"assert":187,"private":448,"source-map":496}],475:[function(require,module,exports){
65344
+ },{"./mapping":473,"./options":474,"./types":478,"./util":479,"assert":187,"private":446,"source-map":494}],473:[function(require,module,exports){
65456
65345
  var assert = require("assert");
65457
65346
  var types = require("./types");
65458
65347
  var isString = types.builtInTypes.string;
@@ -65731,7 +65620,7 @@ function skipChars(
65731
65620
  return sourceCursor;
65732
65621
  }
65733
65622
 
65734
- },{"./lines":474,"./types":480,"./util":481,"assert":187}],476:[function(require,module,exports){
65623
+ },{"./lines":472,"./types":478,"./util":479,"assert":187}],474:[function(require,module,exports){
65735
65624
  var defaults = {
65736
65625
  // If you want to use a different branch of esprima, or any other
65737
65626
  // module that supports a .parse function, pass that module object to
@@ -65818,7 +65707,7 @@ exports.normalize = function(options) {
65818
65707
  };
65819
65708
  };
65820
65709
 
65821
- },{"esprima-fb":483}],477:[function(require,module,exports){
65710
+ },{"esprima-fb":481}],475:[function(require,module,exports){
65822
65711
  var assert = require("assert");
65823
65712
  var types = require("./types");
65824
65713
  var n = types.namedTypes;
@@ -65946,7 +65835,7 @@ TCp.copy = function(node) {
65946
65835
  return copy;
65947
65836
  };
65948
65837
 
65949
- },{"./comments":472,"./lines":474,"./options":476,"./patcher":478,"./types":480,"./util":481,"assert":187}],478:[function(require,module,exports){
65838
+ },{"./comments":470,"./lines":472,"./options":474,"./patcher":476,"./types":478,"./util":479,"assert":187}],476:[function(require,module,exports){
65950
65839
  var assert = require("assert");
65951
65840
  var linesModule = require("./lines");
65952
65841
  var types = require("./types");
@@ -66428,7 +66317,7 @@ function findChildReprints(newPath, oldPath, reprints) {
66428
66317
  return true;
66429
66318
  }
66430
66319
 
66431
- },{"./fast-path":473,"./lines":474,"./types":480,"./util":481,"assert":187}],479:[function(require,module,exports){
66320
+ },{"./fast-path":471,"./lines":472,"./types":478,"./util":479,"assert":187}],477:[function(require,module,exports){
66432
66321
  var assert = require("assert");
66433
66322
  var sourceMap = require("source-map");
66434
66323
  var printComments = require("./comments").printComments;
@@ -67974,7 +67863,7 @@ function maybeAddSemicolon(lines) {
67974
67863
  return lines;
67975
67864
  }
67976
67865
 
67977
- },{"./comments":472,"./fast-path":473,"./lines":474,"./options":476,"./patcher":478,"./types":480,"./util":481,"assert":187,"source-map":496}],480:[function(require,module,exports){
67866
+ },{"./comments":470,"./fast-path":471,"./lines":472,"./options":474,"./patcher":476,"./types":478,"./util":479,"assert":187,"source-map":494}],478:[function(require,module,exports){
67978
67867
  var types = require("ast-types");
67979
67868
  var def = types.Type.def;
67980
67869
 
@@ -67987,7 +67876,7 @@ types.finalize();
67987
67876
 
67988
67877
  module.exports = types;
67989
67878
 
67990
- },{"ast-types":185}],481:[function(require,module,exports){
67879
+ },{"ast-types":185}],479:[function(require,module,exports){
67991
67880
  var assert = require("assert");
67992
67881
  var types = require("./types");
67993
67882
  var getFieldValue = types.getFieldValue;
@@ -68141,7 +68030,7 @@ exports.fixFaultyLocations = function(node) {
68141
68030
  }
68142
68031
  };
68143
68032
 
68144
- },{"./types":480,"assert":187,"source-map":496}],482:[function(require,module,exports){
68033
+ },{"./types":478,"assert":187,"source-map":494}],480:[function(require,module,exports){
68145
68034
  (function (process){
68146
68035
  var types = require("./lib/types");
68147
68036
  var parse = require("./lib/parser").parse;
@@ -68244,7 +68133,7 @@ Object.defineProperties(exports, {
68244
68133
  });
68245
68134
 
68246
68135
  }).call(this,require('_process'))
68247
- },{"./lib/parser":477,"./lib/printer":479,"./lib/types":480,"_process":197,"fs":186}],483:[function(require,module,exports){
68136
+ },{"./lib/parser":475,"./lib/printer":477,"./lib/types":478,"_process":197,"fs":186}],481:[function(require,module,exports){
68248
68137
  /*
68249
68138
  Copyright (C) 2013 Ariya Hidayat <ariya.hidayat@gmail.com>
68250
68139
  Copyright (C) 2013 Thaddee Tyl <thaddee.tyl@gmail.com>
@@ -76006,7 +75895,7 @@ Object.defineProperties(exports, {
76006
75895
  }));
76007
75896
  /* vim: set sw=4 ts=4 et tw=80 : */
76008
75897
 
76009
- },{}],484:[function(require,module,exports){
75898
+ },{}],482:[function(require,module,exports){
76010
75899
  (function (process){
76011
75900
  var Stream = require('stream')
76012
75901
 
@@ -76118,7 +76007,7 @@ function through (write, end, opts) {
76118
76007
 
76119
76008
 
76120
76009
  }).call(this,require('_process'))
76121
- },{"_process":197,"stream":209}],485:[function(require,module,exports){
76010
+ },{"_process":197,"stream":209}],483:[function(require,module,exports){
76122
76011
  (function (global){
76123
76012
  /**
76124
76013
  * Copyright (c) 2014, Facebook, Inc.
@@ -76686,7 +76575,7 @@ function through (write, end, opts) {
76686
76575
  );
76687
76576
 
76688
76577
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
76689
- },{}],486:[function(require,module,exports){
76578
+ },{}],484:[function(require,module,exports){
76690
76579
  // Generated by `/scripts/character-class-escape-sets.js`. Do not edit.
76691
76580
  var regenerate = require('regenerate');
76692
76581
 
@@ -76792,7 +76681,7 @@ exports.UNICODE_IGNORE_CASE = {
76792
76681
  .addRange(0x7B, 0x10FFFF)
76793
76682
  };
76794
76683
 
76795
- },{"regenerate":488}],487:[function(require,module,exports){
76684
+ },{"regenerate":486}],485:[function(require,module,exports){
76796
76685
  module.exports={
76797
76686
  "75": 8490,
76798
76687
  "83": 383,
@@ -76988,7 +76877,7 @@ module.exports={
76988
76877
  "71903": 71871
76989
76878
  }
76990
76879
 
76991
- },{}],488:[function(require,module,exports){
76880
+ },{}],486:[function(require,module,exports){
76992
76881
  (function (global){
76993
76882
  /*! https://mths.be/regenerate v1.2.0 by @mathias | MIT license */
76994
76883
  ;(function(root) {
@@ -78150,7 +78039,7 @@ module.exports={
78150
78039
  }(this));
78151
78040
 
78152
78041
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
78153
- },{}],489:[function(require,module,exports){
78042
+ },{}],487:[function(require,module,exports){
78154
78043
  (function (global){
78155
78044
  /*!
78156
78045
  * RegJSGen
@@ -78562,7 +78451,7 @@ module.exports={
78562
78451
  }.call(this));
78563
78452
 
78564
78453
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
78565
- },{}],490:[function(require,module,exports){
78454
+ },{}],488:[function(require,module,exports){
78566
78455
  // regjsparser
78567
78456
  //
78568
78457
  // ==================================================================
@@ -79511,7 +79400,7 @@ module.exports={
79511
79400
 
79512
79401
  }());
79513
79402
 
79514
- },{}],491:[function(require,module,exports){
79403
+ },{}],489:[function(require,module,exports){
79515
79404
  var generate = require('regjsgen').generate;
79516
79405
  var parse = require('regjsparser').parse;
79517
79406
  var regenerate = require('regenerate');
@@ -79706,7 +79595,7 @@ module.exports = function(pattern, flags) {
79706
79595
  return generate(tree);
79707
79596
  };
79708
79597
 
79709
- },{"./data/character-class-escape-sets.js":486,"./data/iu-mappings.json":487,"regenerate":488,"regjsgen":489,"regjsparser":490}],492:[function(require,module,exports){
79598
+ },{"./data/character-class-escape-sets.js":484,"./data/iu-mappings.json":485,"regenerate":486,"regjsgen":487,"regjsparser":488}],490:[function(require,module,exports){
79710
79599
  'use strict';
79711
79600
  var isFinite = require('is-finite');
79712
79601
 
@@ -79732,13 +79621,13 @@ module.exports = function (str, n) {
79732
79621
  return ret;
79733
79622
  };
79734
79623
 
79735
- },{"is-finite":493}],493:[function(require,module,exports){
79624
+ },{"is-finite":491}],491:[function(require,module,exports){
79736
79625
  arguments[4][320][0].apply(exports,arguments)
79737
- },{"dup":320}],494:[function(require,module,exports){
79626
+ },{"dup":320}],492:[function(require,module,exports){
79738
79627
  'use strict';
79739
79628
  module.exports = /^#!.*/;
79740
79629
 
79741
- },{}],495:[function(require,module,exports){
79630
+ },{}],493:[function(require,module,exports){
79742
79631
  'use strict';
79743
79632
  module.exports = function (str) {
79744
79633
  var isExtendedLengthPath = /^\\\\\?\\/.test(str);
@@ -79751,7 +79640,7 @@ module.exports = function (str) {
79751
79640
  return str.replace(/\\/g, '/');
79752
79641
  };
79753
79642
 
79754
- },{}],496:[function(require,module,exports){
79643
+ },{}],494:[function(require,module,exports){
79755
79644
  /*
79756
79645
  * Copyright 2009-2011 Mozilla Foundation and contributors
79757
79646
  * Licensed under the New BSD license. See LICENSE.txt or:
@@ -79761,7 +79650,7 @@ exports.SourceMapGenerator = require('./source-map/source-map-generator').Source
79761
79650
  exports.SourceMapConsumer = require('./source-map/source-map-consumer').SourceMapConsumer;
79762
79651
  exports.SourceNode = require('./source-map/source-node').SourceNode;
79763
79652
 
79764
- },{"./source-map/source-map-consumer":502,"./source-map/source-map-generator":503,"./source-map/source-node":504}],497:[function(require,module,exports){
79653
+ },{"./source-map/source-map-consumer":500,"./source-map/source-map-generator":501,"./source-map/source-node":502}],495:[function(require,module,exports){
79765
79654
  /* -*- Mode: js; js-indent-level: 2; -*- */
79766
79655
  /*
79767
79656
  * Copyright 2011 Mozilla Foundation and contributors
@@ -79860,7 +79749,7 @@ define(function (require, exports, module) {
79860
79749
 
79861
79750
  });
79862
79751
 
79863
- },{"./util":505,"amdefine":506}],498:[function(require,module,exports){
79752
+ },{"./util":503,"amdefine":504}],496:[function(require,module,exports){
79864
79753
  /* -*- Mode: js; js-indent-level: 2; -*- */
79865
79754
  /*
79866
79755
  * Copyright 2011 Mozilla Foundation and contributors
@@ -80003,7 +79892,7 @@ define(function (require, exports, module) {
80003
79892
 
80004
79893
  });
80005
79894
 
80006
- },{"./base64":499,"amdefine":506}],499:[function(require,module,exports){
79895
+ },{"./base64":497,"amdefine":504}],497:[function(require,module,exports){
80007
79896
  /* -*- Mode: js; js-indent-level: 2; -*- */
80008
79897
  /*
80009
79898
  * Copyright 2011 Mozilla Foundation and contributors
@@ -80047,7 +79936,7 @@ define(function (require, exports, module) {
80047
79936
 
80048
79937
  });
80049
79938
 
80050
- },{"amdefine":506}],500:[function(require,module,exports){
79939
+ },{"amdefine":504}],498:[function(require,module,exports){
80051
79940
  /* -*- Mode: js; js-indent-level: 2; -*- */
80052
79941
  /*
80053
79942
  * Copyright 2011 Mozilla Foundation and contributors
@@ -80166,7 +80055,7 @@ define(function (require, exports, module) {
80166
80055
 
80167
80056
  });
80168
80057
 
80169
- },{"amdefine":506}],501:[function(require,module,exports){
80058
+ },{"amdefine":504}],499:[function(require,module,exports){
80170
80059
  /* -*- Mode: js; js-indent-level: 2; -*- */
80171
80060
  /*
80172
80061
  * Copyright 2014 Mozilla Foundation and contributors
@@ -80254,7 +80143,7 @@ define(function (require, exports, module) {
80254
80143
 
80255
80144
  });
80256
80145
 
80257
- },{"./util":505,"amdefine":506}],502:[function(require,module,exports){
80146
+ },{"./util":503,"amdefine":504}],500:[function(require,module,exports){
80258
80147
  /* -*- Mode: js; js-indent-level: 2; -*- */
80259
80148
  /*
80260
80149
  * Copyright 2011 Mozilla Foundation and contributors
@@ -81214,7 +81103,7 @@ define(function (require, exports, module) {
81214
81103
 
81215
81104
  });
81216
81105
 
81217
- },{"./array-set":497,"./base64-vlq":498,"./binary-search":500,"./util":505,"amdefine":506}],503:[function(require,module,exports){
81106
+ },{"./array-set":495,"./base64-vlq":496,"./binary-search":498,"./util":503,"amdefine":504}],501:[function(require,module,exports){
81218
81107
  /* -*- Mode: js; js-indent-level: 2; -*- */
81219
81108
  /*
81220
81109
  * Copyright 2011 Mozilla Foundation and contributors
@@ -81616,7 +81505,7 @@ define(function (require, exports, module) {
81616
81505
 
81617
81506
  });
81618
81507
 
81619
- },{"./array-set":497,"./base64-vlq":498,"./mapping-list":501,"./util":505,"amdefine":506}],504:[function(require,module,exports){
81508
+ },{"./array-set":495,"./base64-vlq":496,"./mapping-list":499,"./util":503,"amdefine":504}],502:[function(require,module,exports){
81620
81509
  /* -*- Mode: js; js-indent-level: 2; -*- */
81621
81510
  /*
81622
81511
  * Copyright 2011 Mozilla Foundation and contributors
@@ -82032,7 +81921,7 @@ define(function (require, exports, module) {
82032
81921
 
82033
81922
  });
82034
81923
 
82035
- },{"./source-map-generator":503,"./util":505,"amdefine":506}],505:[function(require,module,exports){
81924
+ },{"./source-map-generator":501,"./util":503,"amdefine":504}],503:[function(require,module,exports){
82036
81925
  /* -*- Mode: js; js-indent-level: 2; -*- */
82037
81926
  /*
82038
81927
  * Copyright 2011 Mozilla Foundation and contributors
@@ -82353,7 +82242,7 @@ define(function (require, exports, module) {
82353
82242
 
82354
82243
  });
82355
82244
 
82356
- },{"amdefine":506}],506:[function(require,module,exports){
82245
+ },{"amdefine":504}],504:[function(require,module,exports){
82357
82246
  (function (process,__filename){
82358
82247
  /** vim: et:ts=4:sw=4:sts=4
82359
82248
  * @license amdefine 0.1.0 Copyright (c) 2011, The Dojo Foundation All Rights Reserved.
@@ -82656,7 +82545,7 @@ function amdefine(module, requireFn) {
82656
82545
  module.exports = amdefine;
82657
82546
 
82658
82547
  }).call(this,require('_process'),"/node_modules/source-map/node_modules/amdefine/amdefine.js")
82659
- },{"_process":197,"path":196}],507:[function(require,module,exports){
82548
+ },{"_process":197,"path":196}],505:[function(require,module,exports){
82660
82549
  /*!
82661
82550
  strip-json-comments
82662
82551
  Strip comments from JSON. Lets you use comments in your JSON files!
@@ -82725,7 +82614,7 @@ module.exports = amdefine;
82725
82614
  }
82726
82615
  })();
82727
82616
 
82728
- },{}],508:[function(require,module,exports){
82617
+ },{}],506:[function(require,module,exports){
82729
82618
  'use strict';
82730
82619
  module.exports = function toFastProperties(obj) {
82731
82620
  /*jshint -W027*/
@@ -82736,17 +82625,17 @@ module.exports = function toFastProperties(obj) {
82736
82625
  eval(obj);
82737
82626
  };
82738
82627
 
82739
- },{}],509:[function(require,module,exports){
82628
+ },{}],507:[function(require,module,exports){
82740
82629
  'use strict';
82741
82630
  module.exports = function (str) {
82742
82631
  return str.replace(/[\s\uFEFF\xA0]+$/g, '');
82743
82632
  };
82744
82633
 
82745
- },{}],510:[function(require,module,exports){
82634
+ },{}],508:[function(require,module,exports){
82746
82635
  module.exports={
82747
82636
  "name": "babel-core",
82748
82637
  "description": "Turn ES6 code into readable vanilla ES5 with source maps",
82749
- "version": "5.2.7",
82638
+ "version": "5.2.8",
82750
82639
  "author": "Sebastian McKenzie <sebmck@gmail.com>",
82751
82640
  "homepage": "https://babeljs.io/",
82752
82641
  "repository": "babel/babel",
@@ -82820,7 +82709,7 @@ module.exports={
82820
82709
  }
82821
82710
  }
82822
82711
 
82823
- },{}],511:[function(require,module,exports){
82712
+ },{}],509:[function(require,module,exports){
82824
82713
  module.exports={"abstract-expression-call":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"PROPERTY","type":"Identifier","end":null},"property":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"referenceGet","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"OBJECT","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"call","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"OBJECT","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"abstract-expression-delete":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"PROPERTY","type":"Identifier","end":null},"property":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"referenceDelete","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"OBJECT","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"abstract-expression-get":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"PROPERTY","type":"Identifier","end":null},"property":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"referenceGet","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"OBJECT","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"abstract-expression-set":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"PROPERTY","type":"Identifier","end":null},"property":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"referenceSet","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"OBJECT","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"VALUE","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"array-comprehension-container":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"KEY","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"elements":[],"type":"ArrayExpression","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"KEY","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"array-from":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Array","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"from","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"VALUE","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"array-push":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"KEY","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"push","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"STATEMENT","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"call":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"OBJECT","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"call","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"CONTEXT","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"class-decorator":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"CLASS_REF","type":"Identifier","end":null},"right":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"DECORATOR","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"CLASS_REF","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"operator":"||","right":{"start":null,"loc":null,"range":null,"name":"CLASS_REF","type":"Identifier","end":null},"type":"LogicalExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"class-super-constructor-call-loose":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"SUPER_NAME","type":"Identifier","end":null},"operator":"!=","right":{"start":null,"loc":null,"range":null,"value":null,"raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"SUPER_NAME","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"apply","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"type":"ThisExpression","end":null},{"start":null,"loc":null,"range":null,"name":"arguments","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"Program","end":null},"class-super-constructor-call":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"SUPER_NAME","type":"Identifier","end":null},"operator":"!=","right":{"start":null,"loc":null,"range":null,"value":null,"raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"SUPER_NAME","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"apply","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"type":"ThisExpression","end":null},{"start":null,"loc":null,"range":null,"name":"arguments","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"Program","end":null},"class-super-native-constructor-call":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"SUPER_NAME","type":"Identifier","end":null},"operator":"!=","right":{"start":null,"loc":null,"range":null,"value":null,"raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"NATIVE_REF","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"SUPER_NAME","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"arguments","type":"Identifier","end":null},"type":"SpreadElement","end":null,"_paths":null}],"type":"NewExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"NATIVE_REF","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"__proto__","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"CLASS_NAME","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"prototype","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"NATIVE_REF","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"Program","end":null},"default-parameter":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"VARIABLE_NAME","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"ARGUMENTS","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"ARGUMENT_KEY","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"name":"undefined","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"name":"DEFAULT_VALUE","type":"Identifier","end":null},"alternate":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"ARGUMENTS","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"ARGUMENT_KEY","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"ConditionalExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"let","type":"VariableDeclaration","end":null}],"type":"Program","end":null},"exports-assign":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"exports","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"KEY","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"name":"VALUE","type":"Identifier","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"exports-default-assign":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"module","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"exports","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"name":"VALUE","type":"Identifier","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"exports-from-assign":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"defineProperty","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"exports","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"ID","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"properties":[{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"enumerable","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"kind":"init","type":"Property","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"get","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"get","type":"Identifier","end":null},"generator":false,"expression":false,"params":[],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"INIT","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"_scopeInfo":null,"_paths":null},"kind":"init","type":"Property","end":null,"_paths":null}],"type":"ObjectExpression","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"exports-module-declaration-loose":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"exports","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"__esModule","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"exports-module-declaration":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"defineProperty","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"exports","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"value":"__esModule","raw":null,"type":"Literal","end":null},{"start":null,"loc":null,"range":null,"properties":[{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"kind":"init","type":"Property","end":null,"_paths":null}],"type":"ObjectExpression","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"for-of-array":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"KEY","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":0,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"KEY","type":"Identifier","end":null},"operator":"<","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"ARR","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"update":{"loc":null,"start":null,"range":null,"operator":"++","prefix":false,"argument":{"start":null,"loc":null,"range":null,"name":"KEY","type":"Identifier","end":null},"type":"UpdateExpression","end":null,"_paths":null},"body":{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"name":"BODY","type":"Identifier","end":null},"type":"ExpressionStatement","end":null,"_paths":null},"type":"ForStatement","end":null,"_scopeInfo":null,"_paths":null}],"type":"Program","end":null},"for-of-loose":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"LOOP_OBJECT","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"name":"OBJECT","type":"Identifier","end":null},"type":"VariableDeclarator","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"IS_ARRAY","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Array","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"isArray","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"LOOP_OBJECT","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"INDEX","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":0,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"LOOP_OBJECT","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"IS_ARRAY","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"name":"LOOP_OBJECT","type":"Identifier","end":null},"alternate":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"LOOP_OBJECT","type":"Identifier","end":null},"property":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"iterator","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"ConditionalExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":null,"update":null,"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"ID","type":"Identifier","end":null},"init":null,"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"IS_ARRAY","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"INDEX","type":"Identifier","end":null},"operator":">=","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"LOOP_OBJECT","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"label":null,"type":"BreakStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"ID","type":"Identifier","end":null},"right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"LOOP_OBJECT","type":"Identifier","end":null},"property":{"loc":null,"start":null,"range":null,"operator":"++","prefix":false,"argument":{"start":null,"loc":null,"range":null,"name":"INDEX","type":"Identifier","end":null},"type":"UpdateExpression","end":null,"_paths":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"INDEX","type":"Identifier","end":null},"right":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"LOOP_OBJECT","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"next","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"INDEX","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"done","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"label":null,"type":"BreakStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"ID","type":"Identifier","end":null},"right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"INDEX","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"ForStatement","end":null,"_scopeInfo":null,"_paths":null}],"type":"Program","end":null},"for-of":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"ITERATOR_COMPLETION","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"ITERATOR_HAD_ERROR_KEY","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":false,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"ITERATOR_ERROR_KEY","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"name":"undefined","type":"Identifier","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"block":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"ITERATOR_KEY","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"OBJECT","type":"Identifier","end":null},"property":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"iterator","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"STEP_KEY","type":"Identifier","end":null},"init":null,"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"start":null,"loc":null,"range":null,"operator":"!","prefix":true,"argument":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"ITERATOR_COMPLETION","type":"Identifier","end":null},"right":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"STEP_KEY","type":"Identifier","end":null},"right":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"ITERATOR_KEY","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"next","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"parenthesizedExpression":true,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"done","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"UnaryExpression","end":null,"_paths":null},"update":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"ITERATOR_COMPLETION","type":"Identifier","end":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"body":{"start":null,"loc":null,"range":null,"body":[],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"ForStatement","end":null,"_scopeInfo":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"handler":{"start":null,"loc":null,"range":null,"param":{"start":null,"loc":null,"range":null,"name":"err","type":"Identifier","end":null},"guard":null,"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"ITERATOR_HAD_ERROR_KEY","type":"Identifier","end":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"ITERATOR_ERROR_KEY","type":"Identifier","end":null},"right":{"start":null,"loc":null,"range":null,"name":"err","type":"Identifier","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"CatchClause","end":null,"_scopeInfo":null,"_paths":null},"guardedHandlers":[],"finalizer":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"block":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"!","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"ITERATOR_COMPLETION","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"ITERATOR_KEY","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"value":"return","raw":null,"type":"Literal","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"ITERATOR_KEY","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"value":"return","raw":null,"type":"Literal","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"handler":null,"guardedHandlers":[],"finalizer":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"ITERATOR_HAD_ERROR_KEY","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"ITERATOR_ERROR_KEY","type":"Identifier","end":null},"type":"ThrowStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"TryStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"TryStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-async-to-generator":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"fn","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"gen","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"fn","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"apply","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"type":"ThisExpression","end":null},{"start":null,"loc":null,"range":null,"name":"arguments","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"Promise","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"resolve","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"reject","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"callNext","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"step","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"bind","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"value":null,"raw":null,"type":"Literal","end":null},{"start":null,"loc":null,"range":null,"value":"next","raw":null,"type":"Literal","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"callThrow","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"step","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"bind","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"value":null,"raw":null,"type":"Literal","end":null},{"start":null,"loc":null,"range":null,"value":"throw","raw":null,"type":"Literal","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"step","type":"Identifier","end":null},"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"arg","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"block":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"info","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"gen","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"arg","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"info","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"handler":{"start":null,"loc":null,"range":null,"param":{"start":null,"loc":null,"range":null,"name":"error","type":"Identifier","end":null},"guard":null,"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"reject","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"error","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":null,"type":"ReturnStatement","end":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"CatchClause","end":null,"_scopeInfo":null,"_paths":null},"guardedHandlers":[],"finalizer":null,"type":"TryStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"info","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"done","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"resolve","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Promise","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"resolve","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"then","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"callNext","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"callThrow","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionDeclaration","end":null,"_scopeInfo":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"callNext","type":"Identifier","end":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"_scopeInfo":null,"_paths":null}],"type":"NewExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"_scopeInfo":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-bind":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Function","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"prototype","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"bind","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-class-call-check":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"instance","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"Constructor","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"operator":"!","prefix":true,"argument":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"instance","type":"Identifier","end":null},"operator":"instanceof","right":{"start":null,"loc":null,"range":null,"name":"Constructor","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"UnaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"TypeError","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"value":"Cannot call a class as a function","raw":null,"type":"Literal","end":null}],"type":"NewExpression","end":null,"_paths":null},"type":"ThrowStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-create-class":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"defineProperties","type":"Identifier","end":null},"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"props","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":0,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"operator":"<","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"props","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"update":{"loc":null,"start":null,"range":null,"operator":"++","prefix":false,"argument":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"type":"UpdateExpression","end":null,"_paths":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"props","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"enumerable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"enumerable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"operator":"||","right":{"start":null,"loc":null,"range":null,"value":false,"raw":null,"type":"Literal","end":null},"type":"LogicalExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"configurable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"value":"value","raw":null,"type":"Literal","end":null},"operator":"in","right":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"writable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"defineProperty","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"ForStatement","end":null,"_scopeInfo":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionDeclaration","end":null,"_scopeInfo":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"Constructor","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"protoProps","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"staticProps","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"protoProps","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"defineProperties","type":"Identifier","end":null},"arguments":[{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Constructor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"prototype","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"name":"protoProps","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"staticProps","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"defineProperties","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"Constructor","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"staticProps","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"Constructor","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"_scopeInfo":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-create-decorated-class":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"defineProperties","type":"Identifier","end":null},"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"descriptors","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"initializers","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":0,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"operator":"<","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptors","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"update":{"loc":null,"start":null,"range":null,"operator":"++","prefix":false,"argument":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"type":"UpdateExpression","end":null,"_paths":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptors","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"decorators","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"decorators","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"operator":"delete","prefix":true,"argument":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"UnaryExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"leadingComments":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"operator":"delete","prefix":true,"argument":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"decorators","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"UnaryExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"enumerable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"enumerable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"operator":"||","right":{"start":null,"loc":null,"range":null,"value":false,"raw":null,"type":"Literal","end":null},"type":"LogicalExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"configurable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"value":"value","raw":null,"type":"Literal","end":null},"operator":"in","right":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"operator":"||","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"initializer","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"writable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"decorators","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"f","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":0,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"f","type":"Identifier","end":null},"operator":"<","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"decorators","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"update":{"loc":null,"start":null,"range":null,"operator":"++","prefix":false,"argument":{"start":null,"loc":null,"range":null,"name":"f","type":"Identifier","end":null},"type":"UpdateExpression","end":null,"_paths":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"decorator","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"decorators","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"f","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"decorator","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"value":"function","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"right":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"decorator","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"operator":"||","right":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"type":"LogicalExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"TypeError","type":"Identifier","end":null},"arguments":[{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"value":"The decorator for method ","raw":null,"type":"Literal","end":null},"operator":"+","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"operator":"+","right":{"start":null,"loc":null,"range":null,"value":" is of the invalid type ","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"operator":"+","right":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"decorator","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null}],"type":"NewExpression","end":null,"_paths":null},"type":"ThrowStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"ForStatement","end":null,"_scopeInfo":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"initializer","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"operator":"!==","right":{"start":null,"loc":null,"range":null,"name":"undefined","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"initializers","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"label":null,"type":"ContinueStatement","end":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"defineProperty","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"ForStatement","end":null,"_scopeInfo":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionDeclaration","end":null,"_scopeInfo":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"Constructor","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"protoProps","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"staticProps","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"protoInitializers","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"staticInitializers","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"protoProps","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"defineProperties","type":"Identifier","end":null},"arguments":[{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Constructor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"prototype","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"name":"protoProps","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"protoInitializers","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"staticProps","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"defineProperties","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"Constructor","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"staticProps","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"staticInitializers","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"Constructor","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"_scopeInfo":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-create-decorated-object":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"descriptors","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"properties":[],"type":"ObjectExpression","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":0,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"operator":"<","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptors","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"update":{"loc":null,"start":null,"range":null,"operator":"++","prefix":false,"argument":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"type":"UpdateExpression","end":null,"_paths":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptors","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"decorators","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"decorators","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"operator":"delete","prefix":true,"argument":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"UnaryExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"leadingComments":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"operator":"delete","prefix":true,"argument":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"decorators","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"UnaryExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"enumerable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"configurable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"writable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"decorators","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"f","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":0,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"f","type":"Identifier","end":null},"operator":"<","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"decorators","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"update":{"loc":null,"start":null,"range":null,"operator":"++","prefix":false,"argument":{"start":null,"loc":null,"range":null,"name":"f","type":"Identifier","end":null},"type":"UpdateExpression","end":null,"_paths":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"decorator","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"decorators","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"f","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"decorator","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"value":"function","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"right":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"decorator","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"operator":"||","right":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"type":"LogicalExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"TypeError","type":"Identifier","end":null},"arguments":[{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"value":"The decorator for method ","raw":null,"type":"Literal","end":null},"operator":"+","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"operator":"+","right":{"start":null,"loc":null,"range":null,"value":" is of the invalid type ","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"operator":"+","right":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"decorator","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null}],"type":"NewExpression","end":null,"_paths":null},"type":"ThrowStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"ForStatement","end":null,"_scopeInfo":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"initializer","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"initializer","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"call","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"defineProperty","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"ForStatement","end":null,"_scopeInfo":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-default-props":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"defaultProps","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"props","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"defaultProps","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"left":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"propName","type":"Identifier","end":null},"init":null,"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"right":{"start":null,"loc":null,"range":null,"name":"defaultProps","type":"Identifier","end":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"props","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"propName","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"value":"undefined","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"props","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"propName","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"defaultProps","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"propName","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"ForInStatement","end":null,"_scopeInfo":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"props","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-defaults":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"defaults","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"keys","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"getOwnPropertyNames","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"defaults","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":0,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"operator":"<","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"keys","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"update":{"loc":null,"start":null,"range":null,"operator":"++","prefix":false,"argument":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"type":"UpdateExpression","end":null,"_paths":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"keys","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"getOwnPropertyDescriptor","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"defaults","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"configurable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"name":"undefined","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"defineProperty","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"ForStatement","end":null,"_scopeInfo":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-define-decorated-property-descriptor":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"descriptors","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"_descriptor","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptors","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"properties":[],"type":"ObjectExpression","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null,"leadingComments":null},{"start":null,"loc":null,"range":null,"left":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"_key","type":"Identifier","end":null},"init":null,"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"right":{"start":null,"loc":null,"range":null,"name":"_descriptor","type":"Identifier","end":null},"body":{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"_key","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"_descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"_key","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},"type":"ForInStatement","end":null,"_scopeInfo":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"operator":"!","prefix":true,"argument":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"initializer","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"UnaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"argument":null,"type":"ReturnStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"leadingComments":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"initializer","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"call","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"defineProperty","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-define-property":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"defineProperty","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"properties":[{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"kind":"init","type":"Property","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"enumerable","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"kind":"init","type":"Property","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"configurable","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"kind":"init","type":"Property","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"writable","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"kind":"init","type":"Property","end":null,"_paths":null}],"type":"ObjectExpression","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-extends":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"assign","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"operator":"||","right":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":1,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"operator":"<","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"arguments","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"update":{"loc":null,"start":null,"range":null,"operator":"++","prefix":false,"argument":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"type":"UpdateExpression","end":null,"_paths":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"source","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"arguments","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"left":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"init":null,"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"right":{"start":null,"loc":null,"range":null,"name":"source","type":"Identifier","end":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"prototype","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"hasOwnProperty","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"call","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"source","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"source","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"ForInStatement","end":null,"_scopeInfo":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"ForStatement","end":null,"_scopeInfo":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"_scopeInfo":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-get":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"get","type":"Identifier","end":null},"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"object","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"property","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"receiver","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"desc","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"getOwnPropertyDescriptor","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"object","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"property","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"desc","type":"Identifier","end":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"name":"undefined","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"parent","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"getPrototypeOf","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"object","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"parent","type":"Identifier","end":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"value":null,"raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"undefined","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"get","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"parent","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"property","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"receiver","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"value":"value","raw":null,"type":"Literal","end":null},"operator":"in","right":{"start":null,"loc":null,"range":null,"name":"desc","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"desc","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"getter","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"desc","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"get","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"getter","type":"Identifier","end":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"name":"undefined","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"undefined","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"getter","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"call","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"receiver","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"IfStatement","end":null,"_paths":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-has-own":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"prototype","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"hasOwnProperty","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-inherits":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"subClass","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"superClass","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"superClass","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"!==","right":{"start":null,"loc":null,"range":null,"value":"function","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"superClass","type":"Identifier","end":null},"operator":"!==","right":{"start":null,"loc":null,"range":null,"value":null,"raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"TypeError","type":"Identifier","end":null},"arguments":[{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"value":"Super expression must either be null or a function, not ","raw":null,"type":"Literal","end":null},"operator":"+","right":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"superClass","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null}],"type":"NewExpression","end":null,"_paths":null},"type":"ThrowStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"subClass","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"prototype","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"create","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"superClass","type":"Identifier","end":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"superClass","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"prototype","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"properties":[{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"constructor","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"properties":[{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"name":"subClass","type":"Identifier","end":null},"kind":"init","type":"Property","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"enumerable","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"value":false,"raw":null,"type":"Literal","end":null},"kind":"init","type":"Property","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"writable","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"kind":"init","type":"Property","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"configurable","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"kind":"init","type":"Property","end":null,"_paths":null}],"type":"ObjectExpression","end":null},"kind":"init","type":"Property","end":null,"_paths":null}],"type":"ObjectExpression","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"superClass","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"subClass","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"__proto__","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"name":"superClass","type":"Identifier","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-instanceof":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"left","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"right","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"right","type":"Identifier","end":null},"operator":"!=","right":{"start":null,"loc":null,"range":null,"value":null,"raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"right","type":"Identifier","end":null},"property":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"hasInstance","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"right","type":"Identifier","end":null},"property":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"hasInstance","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"left","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"left","type":"Identifier","end":null},"operator":"instanceof","right":{"start":null,"loc":null,"range":null,"name":"right","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-interop-require-default":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"__esModule","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"alternate":{"start":null,"loc":null,"range":null,"properties":[{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"value":"default","raw":null,"type":"Literal","end":null},"value":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"kind":"init","type":"Property","end":null,"_paths":null}],"type":"ObjectExpression","end":null},"type":"ConditionalExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-interop-require-wildcard":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"__esModule","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"newObj","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"properties":[],"type":"ObjectExpression","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"operator":"!=","right":{"start":null,"loc":null,"range":null,"value":null,"raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"left":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"init":null,"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"right":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"prototype","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"hasOwnProperty","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"call","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"newObj","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"ForInStatement","end":null,"_scopeInfo":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"newObj","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"value":"default","raw":null,"type":"Literal","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"newObj","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-interop-require":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"__esModule","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"value":"default","raw":null,"type":"Literal","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"alternate":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"type":"ConditionalExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-ludicrous-in":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"RIGHT","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"LEFT","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"operator":"!==","right":{"start":null,"loc":null,"range":null,"name":"undefined","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-ludicrous-proxy-create":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"proxy","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"directory","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"directory","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"push","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"proxy","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"proxy","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-ludicrous-proxy-directory":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"elements":[],"type":"ArrayExpression","end":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-object-destructuring-empty":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"operator":"==","right":{"start":null,"loc":null,"range":null,"value":null,"raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"TypeError","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"value":"Cannot destructure undefined","raw":null,"type":"Literal","end":null}],"type":"NewExpression","end":null,"_paths":null},"type":"ThrowStatement","end":null,"_paths":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-object-without-properties":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"keys","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"properties":[],"type":"ObjectExpression","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"left":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"init":null,"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"right":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"keys","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"indexOf","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"operator":">=","right":{"start":null,"loc":null,"range":null,"value":0,"raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"label":null,"type":"ContinueStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"operator":"!","prefix":true,"argument":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"prototype","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"hasOwnProperty","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"call","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"UnaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"label":null,"type":"ContinueStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"ForInStatement","end":null,"_scopeInfo":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-self-global":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"global","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"value":"undefined","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"name":"self","type":"Identifier","end":null},"alternate":{"start":null,"loc":null,"range":null,"name":"global","type":"Identifier","end":null},"type":"ConditionalExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-set":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"set","type":"Identifier","end":null},"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"object","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"property","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"receiver","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"desc","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"getOwnPropertyDescriptor","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"object","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"property","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"desc","type":"Identifier","end":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"name":"undefined","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"parent","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"getPrototypeOf","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"object","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"parent","type":"Identifier","end":null},"operator":"!==","right":{"start":null,"loc":null,"range":null,"value":null,"raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"set","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"parent","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"property","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"receiver","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"value":"value","raw":null,"type":"Literal","end":null},"operator":"in","right":{"start":null,"loc":null,"range":null,"name":"desc","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"desc","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"writable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"desc","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"setter","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"desc","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"set","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"setter","type":"Identifier","end":null},"operator":"!==","right":{"start":null,"loc":null,"range":null,"name":"undefined","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"setter","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"call","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"receiver","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"IfStatement","end":null,"_paths":null},"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-slice":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Array","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"prototype","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"slice","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-sliced-to-array-loose":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Array","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"isArray","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"iterator","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"operator":"in","right":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"_arr","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"elements":[],"type":"ArrayExpression","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"_iterator","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null},"property":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"iterator","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"_step","type":"Identifier","end":null},"init":null,"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"start":null,"loc":null,"range":null,"operator":"!","prefix":true,"argument":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"_step","type":"Identifier","end":null},"right":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"_iterator","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"next","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"parenthesizedExpression":true,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"done","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"UnaryExpression","end":null,"_paths":null},"update":null,"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"_arr","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"push","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"_step","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"_arr","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"label":null,"type":"BreakStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"ForStatement","end":null,"_scopeInfo":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"_arr","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"TypeError","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"value":"Invalid attempt to destructure non-iterable instance","raw":null,"type":"Literal","end":null}],"type":"NewExpression","end":null,"_paths":null},"type":"ThrowStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"IfStatement","end":null,"_paths":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-sliced-to-array":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Array","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"isArray","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"iterator","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"operator":"in","right":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"_arr","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"elements":[],"type":"ArrayExpression","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null,"leadingComments":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"_n","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"_d","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":false,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"_e","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"name":"undefined","type":"Identifier","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"block":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"_i","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null},"property":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"iterator","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"_s","type":"Identifier","end":null},"init":null,"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"start":null,"loc":null,"range":null,"operator":"!","prefix":true,"argument":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"_n","type":"Identifier","end":null},"right":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"_s","type":"Identifier","end":null},"right":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"_i","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"next","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"parenthesizedExpression":true,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"done","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"UnaryExpression","end":null,"_paths":null},"update":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"_n","type":"Identifier","end":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"_arr","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"push","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"_s","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"_arr","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"label":null,"type":"BreakStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"ForStatement","end":null,"_scopeInfo":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"handler":{"start":null,"loc":null,"range":null,"param":{"start":null,"loc":null,"range":null,"name":"err","type":"Identifier","end":null},"guard":null,"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"_d","type":"Identifier","end":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"_e","type":"Identifier","end":null},"right":{"start":null,"loc":null,"range":null,"name":"err","type":"Identifier","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"CatchClause","end":null,"_scopeInfo":null,"_paths":null},"guardedHandlers":[],"finalizer":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"block":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"!","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"_n","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"_i","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"value":"return","raw":null,"type":"Literal","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"_i","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"value":"return","raw":null,"type":"Literal","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"handler":null,"guardedHandlers":[],"finalizer":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"_d","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"_e","type":"Identifier","end":null},"type":"ThrowStatement","end":null,"_paths":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"TryStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"TryStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"_arr","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"TypeError","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"value":"Invalid attempt to destructure non-iterable instance","raw":null,"type":"Literal","end":null}],"type":"NewExpression","end":null,"_paths":null},"type":"ThrowStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"IfStatement","end":null,"_paths":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-tagged-template-literal-loose":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"strings","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"raw","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"strings","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"raw","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"name":"raw","type":"Identifier","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"strings","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-tagged-template-literal":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"strings","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"raw","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"freeze","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"defineProperties","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"strings","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"properties":[{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"raw","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"properties":[{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"value":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"freeze","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"raw","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"kind":"init","type":"Property","end":null,"_paths":null}],"type":"ObjectExpression","end":null},"kind":"init","type":"Property","end":null,"_paths":null}],"type":"ObjectExpression","end":null}],"type":"CallExpression","end":null,"_paths":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-temporal-assert-defined":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"val","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"name","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"undef","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"val","type":"Identifier","end":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"name":"undef","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"ReferenceError","type":"Identifier","end":null},"arguments":[{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"name","type":"Identifier","end":null},"operator":"+","right":{"start":null,"loc":null,"range":null,"value":" is not defined - temporal dead zone","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null}],"type":"NewExpression","end":null,"_paths":null},"type":"ThrowStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-temporal-undefined":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"properties":[],"type":"ObjectExpression","end":null,"parenthesizedExpression":true},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-to-array":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"test":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Array","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"isArray","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null},"alternate":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Array","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"from","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ConditionalExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-to-consumable-array":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Array","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"isArray","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":0,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"arr2","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"Array","type":"Identifier","end":null},"arguments":[{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"operator":"<","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"update":{"loc":null,"start":null,"range":null,"operator":"++","prefix":false,"argument":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"type":"UpdateExpression","end":null,"_paths":null},"body":{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"arr2","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},"type":"ForStatement","end":null,"_scopeInfo":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"arr2","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Array","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"from","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-typeof":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"constructor","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"value":"symbol","raw":null,"type":"Literal","end":null},"alternate":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"type":"ConditionalExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"let-scoping-return":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"RETURN","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"value":"object","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"RETURN","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"v","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"Program","end":null},"named-function":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"GET_OUTER_ID","type":"Identifier","end":null},"generator":false,"expression":false,"params":[],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"FUNCTION_ID","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionDeclaration","end":null,"_scopeInfo":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"FUNCTION","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"property-method-assignment-wrapper-generator":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"FUNCTION_KEY","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"FUNCTION_ID","type":"Identifier","end":null},"generator":true,"expression":false,"params":[],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"delegate":true,"argument":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"FUNCTION_KEY","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"apply","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"type":"ThisExpression","end":null},{"start":null,"loc":null,"range":null,"name":"arguments","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"YieldExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionDeclaration","end":null,"_scopeInfo":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"FUNCTION_ID","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"toString","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"FUNCTION_KEY","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"toString","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"_scopeInfo":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"FUNCTION_ID","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"FUNCTION","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"property-method-assignment-wrapper":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"FUNCTION_KEY","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"FUNCTION_ID","type":"Identifier","end":null},"generator":false,"expression":false,"params":[],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"FUNCTION_KEY","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"apply","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"type":"ThisExpression","end":null},{"start":null,"loc":null,"range":null,"name":"arguments","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionDeclaration","end":null,"_scopeInfo":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"FUNCTION_ID","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"toString","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"FUNCTION_KEY","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"toString","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"_scopeInfo":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"FUNCTION_ID","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"FUNCTION","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"prototype-identifier":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"CLASS_NAME","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"prototype","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"require-assign-key":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"VARIABLE_NAME","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"require","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"MODULE_NAME","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"KEY","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null}],"type":"Program","end":null},"require":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"require","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"MODULE_NAME","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"rest":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"LEN","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"ARGUMENTS","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"ARRAY","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"Array","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"ARRAY_LEN","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"KEY","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"name":"START","type":"Identifier","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"KEY","type":"Identifier","end":null},"operator":"<","right":{"start":null,"loc":null,"range":null,"name":"LEN","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"update":{"loc":null,"start":null,"range":null,"operator":"++","prefix":false,"argument":{"start":null,"loc":null,"range":null,"name":"KEY","type":"Identifier","end":null},"type":"UpdateExpression","end":null,"_paths":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"ARRAY","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"ARRAY_KEY","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"ARGUMENTS","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"KEY","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"ForStatement","end":null,"_scopeInfo":null,"_paths":null}],"type":"Program","end":null},"self-contained-helpers-head":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"exports","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"value":"default","raw":null,"type":"Literal","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"name":"HELPER","type":"Identifier","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"exports","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"__esModule","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"system":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"System","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"register","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"MODULE_NAME","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"MODULE_DEPENDENCIES","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"EXPORT_IDENTIFIER","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"properties":[{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"setters","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"name":"SETTERS","type":"Identifier","end":null},"kind":"init","type":"Property","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"execute","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"name":"EXECUTE","type":"Identifier","end":null},"kind":"init","type":"Property","end":null,"_paths":null}],"type":"ObjectExpression","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"_scopeInfo":null,"_paths":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"tail-call-body":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"AGAIN_ID","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"body":{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"AGAIN_ID","type":"Identifier","end":null},"body":{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"name":"BLOCK","type":"Identifier","end":null},"type":"ExpressionStatement","end":null,"_paths":null},"type":"WhileStatement","end":null,"_scopeInfo":null,"_paths":null},"label":{"start":null,"loc":null,"range":null,"name":"FUNCTION_ID","type":"Identifier","end":null},"type":"LabeledStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null}],"type":"Program","end":null},"test-exports":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"exports","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"!==","right":{"start":null,"loc":null,"range":null,"value":"undefined","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"test-module":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"module","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"!==","right":{"start":null,"loc":null,"range":null,"value":"undefined","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"umd-commonjs-strict":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"root","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"factory","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"define","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"value":"function","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"define","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"amd","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"define","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"AMD_ARGUMENTS","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"factory","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"exports","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"value":"object","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"factory","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"COMMON_ARGUMENTS","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"factory","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"BROWSER_ARGUMENTS","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"IfStatement","end":null,"_paths":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"UMD_ROOT","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"FACTORY_PARAMETERS","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"name":"FACTORY_BODY","type":"Identifier","end":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"_scopeInfo":null,"_paths":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"umd-runner-body":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"global","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"factory","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"define","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"value":"function","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"define","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"amd","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"define","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"AMD_ARGUMENTS","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"factory","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"COMMON_TEST","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"factory","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"COMMON_ARGUMENTS","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"mod","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"properties":[{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"exports","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"properties":[],"type":"ObjectExpression","end":null},"kind":"init","type":"Property","end":null,"_paths":null}],"type":"ObjectExpression","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"factory","type":"Identifier","end":null},"arguments":[{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"mod","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"exports","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"name":"BROWSER_ARGUMENTS","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"global","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"GLOBAL_ARG","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"mod","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"exports","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null,"_scopeInfo":null},"type":"IfStatement","end":null,"_paths":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_scopeInfo":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null}}
82825
82714
  },{}]},{},[20])(20)
82826
82715
  });