babel-source 5.4.4 → 5.4.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. checksums.yaml +8 -8
  2. data/lib/babel.js +505 -516
  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
- ZGJjYWIxZWQ5YjdiMzU5YmI5NzgwMWU1ZDg0YzUwNjlmM2Q5MGZkMw==
4
+ Y2Y3NTFjMDRmYjQ5MmRmNjIwNWZhZWIyZTVhMjc1ZTczNTFjNmU1NQ==
5
5
  data.tar.gz: !binary |-
6
- ZGViODBhY2QxMjU4OWM1MjMyNDYzNmVmMThlZGFlYjhlYzhhMTdlZA==
6
+ MTcwNGJiZTJlMzM3YmIxMTQzODMzYTBjYTMwZjM5NjljZDIzYzA2OA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ZDY3MGM1YjExNDg3NjMxNjk5YmRmNWEwZTg4NGFhY2VhNTAzOWQ1ZTExMTlj
10
- MzFhZjc5YTQ4NGMzMjRlZDgwNTE3NzU5NzkwZjE0NGI2NTdkZDliNDczZDE5
11
- MWNlM2QwMjY3YzVlMWIwNWUyYTVkMzZjN2RmYjAxOGRjNWJmMWY=
9
+ NjQ1ODJkM2ExMDYzODMxZTRiNTIyNWE0MmY0ODFmMDAwY2Q3ZGVmZWVmYzgy
10
+ ZjVhMTFmNzcxMjcxODQyOGZiMTE4ZDJiNTIwYjk1MjdiYjU2YjA0NjkwNjEy
11
+ OGQxOTViYWNjZjk5Njk0NjAxMTk3YTJiNDk3NmNhNTlmOWQyMGY=
12
12
  data.tar.gz: !binary |-
13
- ZTk4NTJlMDMzODZiMTY5NWIxMGY4YzFmNjI4NzIwOTcxNTBjMzI4MmMyNGZi
14
- Yzk5ZjA1YWU1ZDM5ZDg2ZmU2MjVmMTA4NWUzNjAxYWRjM2Y0YWM4N2EwYWY4
15
- MWVkOWJjNjAyYzdiOWNmNGQ2Yjk3YzVhNWVhNjViYmZiYjU1OGE=
13
+ ODlkYjllM2FhNWI0M2QxNjU2YTk2OGNjYTQwNDU3Yjg1YzM5YjJiMjNlMzZk
14
+ NzQwZGU1ZDU2MTJhOTQ2OTA5MjBiNzViYzA3ZTc2OTUyZThiZjg2YzJjNWRh
15
+ NjMzZDBlYmFlYjQ4MTI5YTIxMWI2YmYzZDJmM2M4OWFiYWJmNTE=
data/lib/babel.js CHANGED
@@ -1670,13 +1670,7 @@ pp.parseComprehension = function (node, isGenerator) {
1670
1670
  "use strict";
1671
1671
 
1672
1672
  exports.__esModule = true;
1673
-
1674
- // Test whether a given character code starts an identifier.
1675
-
1676
1673
  exports.isIdentifierStart = isIdentifierStart;
1677
-
1678
- // Test whether a given character is part of an identifier.
1679
-
1680
1674
  exports.isIdentifierChar = isIdentifierChar;
1681
1675
  function makePredicate(words) {
1682
1676
  words = words.split(" ");
@@ -1742,6 +1736,9 @@ function isInAstralSet(code, set) {
1742
1736
  if (pos >= code) return true;
1743
1737
  }
1744
1738
  }
1739
+
1740
+ // Test whether a given character code starts an identifier.
1741
+
1745
1742
  function isIdentifierStart(code, astral) {
1746
1743
  if (code < 65) return code === 36;
1747
1744
  if (code < 91) return true;
@@ -1752,6 +1749,8 @@ function isIdentifierStart(code, astral) {
1752
1749
  return isInAstralSet(code, astralIdentifierStartCodes);
1753
1750
  }
1754
1751
 
1752
+ // Test whether a given character is part of an identifier.
1753
+
1755
1754
  function isIdentifierChar(code, astral) {
1756
1755
  if (code < 48) return code === 36;
1757
1756
  if (code < 58) return true;
@@ -1788,28 +1787,8 @@ function isIdentifierChar(code, astral) {
1788
1787
  "use strict";
1789
1788
 
1790
1789
  exports.__esModule = true;
1791
-
1792
- // The main exported interface (under `self.acorn` when in the
1793
- // browser) is a `parse` function that takes a code string and
1794
- // returns an abstract syntax tree as specified by [Mozilla parser
1795
- // API][api].
1796
- //
1797
- // [api]: https://developer.mozilla.org/en-US/docs/SpiderMonkey/Parser_API
1798
-
1799
1790
  exports.parse = parse;
1800
-
1801
- // This function tries to parse a single expression at a given
1802
- // offset in a string. Useful for parsing mixed-language formats
1803
- // that embed JavaScript expressions.
1804
-
1805
1791
  exports.parseExpressionAt = parseExpressionAt;
1806
-
1807
- // Acorn is organized as a tokenizer and a recursive-descent parser.
1808
- // The `tokenize` export provides an interface to the tokenizer.
1809
- // Because the tokenizer is optimized for being efficiently used by
1810
- // the Acorn parser itself, this interface is somewhat crude and not
1811
- // very modular.
1812
-
1813
1792
  exports.tokenizer = tokenizer;
1814
1793
 
1815
1794
  var _state = require("./state");
@@ -1863,7 +1842,15 @@ var _whitespace = require("./whitespace");
1863
1842
  exports.isNewLine = _whitespace.isNewLine;
1864
1843
  exports.lineBreak = _whitespace.lineBreak;
1865
1844
  exports.lineBreakG = _whitespace.lineBreakG;
1866
- var version = "1.0.0";exports.version = version;
1845
+ var version = "1.0.0";
1846
+
1847
+ exports.version = version;
1848
+ // The main exported interface (under `self.acorn` when in the
1849
+ // browser) is a `parse` function that takes a code string and
1850
+ // returns an abstract syntax tree as specified by [Mozilla parser
1851
+ // API][api].
1852
+ //
1853
+ // [api]: https://developer.mozilla.org/en-US/docs/SpiderMonkey/Parser_API
1867
1854
 
1868
1855
  function parse(input, options) {
1869
1856
  var p = parser(options, input);
@@ -1872,12 +1859,22 @@ function parse(input, options) {
1872
1859
  return p.parseTopLevel(p.options.program || p.startNodeAt(startPos));
1873
1860
  }
1874
1861
 
1862
+ // This function tries to parse a single expression at a given
1863
+ // offset in a string. Useful for parsing mixed-language formats
1864
+ // that embed JavaScript expressions.
1865
+
1875
1866
  function parseExpressionAt(input, pos, options) {
1876
1867
  var p = parser(options, input, pos);
1877
1868
  p.nextToken();
1878
1869
  return p.parseExpression();
1879
1870
  }
1880
1871
 
1872
+ // Acorn is organized as a tokenizer and a recursive-descent parser.
1873
+ // The `tokenize` export provides an interface to the tokenizer.
1874
+ // Because the tokenizer is optimized for being efficiently used by
1875
+ // the Acorn parser itself, this interface is somewhat crude and not
1876
+ // very modular.
1877
+
1881
1878
  function tokenizer(input, options) {
1882
1879
  return parser(options, input);
1883
1880
  }
@@ -1889,13 +1886,6 @@ function parser(options, input) {
1889
1886
  "use strict";
1890
1887
 
1891
1888
  exports.__esModule = true;
1892
-
1893
- // The `getLineInfo` function is mostly useful when the
1894
- // `locations` option is off (for performance reasons) and you
1895
- // want to find the line/column position for a given character
1896
- // offset. `input` should be the code string that the offset refers
1897
- // into.
1898
-
1899
1889
  exports.getLineInfo = getLineInfo;
1900
1890
 
1901
1891
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
@@ -1934,6 +1924,12 @@ var SourceLocation = function SourceLocation(p, start, end) {
1934
1924
 
1935
1925
  exports.SourceLocation = SourceLocation;
1936
1926
 
1927
+ // The `getLineInfo` function is mostly useful when the
1928
+ // `locations` option is off (for performance reasons) and you
1929
+ // want to find the line/column position for a given character
1930
+ // offset. `input` should be the code string that the offset refers
1931
+ // into.
1932
+
1937
1933
  function getLineInfo(input, offset) {
1938
1934
  for (var line = 1, cur = 0;;) {
1939
1935
  _whitespace.lineBreakG.lastIndex = cur;
@@ -2269,9 +2265,6 @@ pp.finishNodeAt = function (node, type, pos) {
2269
2265
  "use strict";
2270
2266
 
2271
2267
  exports.__esModule = true;
2272
-
2273
- // Interpret and default an options object
2274
-
2275
2268
  exports.getOptions = getOptions;
2276
2269
 
2277
2270
  var _util = require("./util");
@@ -2362,7 +2355,10 @@ var defaultOptions = {
2362
2355
  // Babel-specific options
2363
2356
  features: {},
2364
2357
  strictMode: null
2365
- };exports.defaultOptions = defaultOptions;
2358
+ };
2359
+
2360
+ exports.defaultOptions = defaultOptions;
2361
+ // Interpret and default an options object
2366
2362
 
2367
2363
  function getOptions(opts) {
2368
2364
  var options = {};
@@ -4347,15 +4343,14 @@ kw("delete", { beforeExpr: true, prefix: true, startsExpr: true });
4347
4343
 
4348
4344
  exports.__esModule = true;
4349
4345
  exports.isArray = isArray;
4350
-
4351
- // Checks if an object has a property.
4352
-
4353
4346
  exports.has = has;
4354
4347
 
4355
4348
  function isArray(obj) {
4356
4349
  return Object.prototype.toString.call(obj) === "[object Array]";
4357
4350
  }
4358
4351
 
4352
+ // Checks if an object has a property.
4353
+
4359
4354
  function has(obj, propName) {
4360
4355
  return Object.prototype.hasOwnProperty.call(obj, propName);
4361
4356
  }
@@ -4471,7 +4466,7 @@ if (global.addEventListener) {
4471
4466
  global.attachEvent("onload", runScripts);
4472
4467
  }
4473
4468
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
4474
- },{"../../../package":517,"../transformation":71,"../transformation/file/options":55,"./node":20}],20:[function(require,module,exports){
4469
+ },{"../../../package":519,"../transformation":71,"../transformation/file/options":55,"./node":20}],20:[function(require,module,exports){
4475
4470
  "use strict";
4476
4471
 
4477
4472
  exports.__esModule = true;
@@ -4600,7 +4595,7 @@ function parse(code) {
4600
4595
 
4601
4596
  return acorn.parse(code, opts);
4602
4597
  }
4603
- },{"../../../package":517,"../../acorn":1,"../polyfill":49,"../tools/build-external-helpers":50,"../transformation":71,"../transformation/file/options":55,"../transformation/transformer":85,"../transformation/transformer-pipeline":84,"../traversal":157,"../types":169,"../util":173,"./register/node-polyfill":22,"fs":189,"lodash/lang/isFunction":427}],21:[function(require,module,exports){
4598
+ },{"../../../package":519,"../../acorn":1,"../polyfill":49,"../tools/build-external-helpers":50,"../transformation":71,"../transformation/file/options":55,"../transformation/transformer":85,"../transformation/transformer-pipeline":84,"../traversal":157,"../types":169,"../util":173,"./register/node-polyfill":22,"fs":189,"lodash/lang/isFunction":428}],21:[function(require,module,exports){
4604
4599
  // required to safely use babel/register within a browserify codebase
4605
4600
 
4606
4601
  "use strict";
@@ -4831,7 +4826,7 @@ var Buffer = (function () {
4831
4826
 
4832
4827
  exports["default"] = Buffer;
4833
4828
  module.exports = exports["default"];
4834
- },{"lodash/collection/includes":341,"lodash/lang/isBoolean":425,"lodash/lang/isNumber":429,"repeating":499,"trim-right":516}],24:[function(require,module,exports){
4829
+ },{"lodash/collection/includes":342,"lodash/lang/isBoolean":426,"lodash/lang/isNumber":430,"repeating":500,"trim-right":518}],24:[function(require,module,exports){
4835
4830
  "use strict";
4836
4831
 
4837
4832
  exports.__esModule = true;
@@ -5082,7 +5077,9 @@ function CallExpression(node, print) {
5082
5077
 
5083
5078
  var separator = ",";
5084
5079
 
5085
- if (node._prettyCall) {
5080
+ var isPrettyCall = node._prettyCall && !this.format.retainLines;
5081
+
5082
+ if (isPrettyCall) {
5086
5083
  separator += "\n";
5087
5084
  this.newline();
5088
5085
  this.indent();
@@ -5092,7 +5089,7 @@ function CallExpression(node, print) {
5092
5089
 
5093
5090
  print.list(node.arguments, { separator: separator });
5094
5091
 
5095
- if (node._prettyCall) {
5092
+ if (isPrettyCall) {
5096
5093
  this.newline();
5097
5094
  this.dedent();
5098
5095
  }
@@ -5109,7 +5106,7 @@ var buildYieldAwait = function buildYieldAwait(keyword) {
5109
5106
  }
5110
5107
 
5111
5108
  if (node.argument) {
5112
- this.space();
5109
+ this.push(" ");
5113
5110
  print(node.argument);
5114
5111
  }
5115
5112
  };
@@ -5184,7 +5181,7 @@ function MetaProperty(node, print) {
5184
5181
  this.push(".");
5185
5182
  print(node.property);
5186
5183
  }
5187
- },{"../../types":169,"is-integer":326,"lodash/lang/isNumber":429}],28:[function(require,module,exports){
5184
+ },{"../../types":169,"is-integer":326,"lodash/lang/isNumber":430}],28:[function(require,module,exports){
5188
5185
  "use strict";
5189
5186
 
5190
5187
  exports.__esModule = true;
@@ -5558,7 +5555,7 @@ function JSXClosingElement(node, print) {
5558
5555
  }
5559
5556
 
5560
5557
  function JSXEmptyExpression() {}
5561
- },{"../../types":169,"lodash/collection/each":339}],30:[function(require,module,exports){
5558
+ },{"../../types":169,"lodash/collection/each":340}],30:[function(require,module,exports){
5562
5559
  "use strict";
5563
5560
 
5564
5561
  exports.__esModule = true;
@@ -5813,7 +5810,7 @@ function ImportNamespaceSpecifier(node, print) {
5813
5810
  this.push("* as ");
5814
5811
  print(node.local);
5815
5812
  }
5816
- },{"../../types":169,"lodash/collection/each":339}],32:[function(require,module,exports){
5813
+ },{"../../types":169,"lodash/collection/each":340}],32:[function(require,module,exports){
5817
5814
  "use strict";
5818
5815
 
5819
5816
  exports.__esModule = true;
@@ -6069,7 +6066,7 @@ function VariableDeclarator(node, print) {
6069
6066
  print(node.init);
6070
6067
  }
6071
6068
  }
6072
- },{"../../types":169,"repeating":499}],33:[function(require,module,exports){
6069
+ },{"../../types":169,"repeating":500}],33:[function(require,module,exports){
6073
6070
  "use strict";
6074
6071
 
6075
6072
  exports.__esModule = true;
@@ -6110,7 +6107,7 @@ function TemplateLiteral(node, print) {
6110
6107
 
6111
6108
  this._push("`");
6112
6109
  }
6113
- },{"lodash/collection/each":339}],34:[function(require,module,exports){
6110
+ },{"lodash/collection/each":340}],34:[function(require,module,exports){
6114
6111
  "use strict";
6115
6112
 
6116
6113
  exports.__esModule = true;
@@ -6254,7 +6251,7 @@ function _stringLiteral(val) {
6254
6251
 
6255
6252
  this.push(val);
6256
6253
  }
6257
- },{"../../types":169,"lodash/collection/each":339}],35:[function(require,module,exports){
6254
+ },{"../../types":169,"lodash/collection/each":340}],35:[function(require,module,exports){
6258
6255
  "use strict";
6259
6256
 
6260
6257
  var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();
@@ -6740,7 +6737,7 @@ module.exports = function (ast, opts, code) {
6740
6737
  };
6741
6738
 
6742
6739
  module.exports.CodeGenerator = CodeGenerator;
6743
- },{"../messages":47,"../types":169,"./buffer":23,"./generators/base":24,"./generators/classes":25,"./generators/comprehensions":26,"./generators/expressions":27,"./generators/flow":28,"./generators/jsx":29,"./generators/methods":30,"./generators/modules":31,"./generators/statements":32,"./generators/template-literals":33,"./generators/types":34,"./node":36,"./position":39,"./source-map":40,"./whitespace":41,"detect-indent":315,"lodash/collection/each":339,"lodash/object/extend":438,"repeating":499}],36:[function(require,module,exports){
6740
+ },{"../messages":47,"../types":169,"./buffer":23,"./generators/base":24,"./generators/classes":25,"./generators/comprehensions":26,"./generators/expressions":27,"./generators/flow":28,"./generators/jsx":29,"./generators/methods":30,"./generators/modules":31,"./generators/statements":32,"./generators/template-literals":33,"./generators/types":34,"./node":36,"./position":39,"./source-map":40,"./whitespace":41,"detect-indent":315,"lodash/collection/each":340,"lodash/object/extend":439,"repeating":500}],36:[function(require,module,exports){
6744
6741
  "use strict";
6745
6742
 
6746
6743
  exports.__esModule = true;
@@ -6878,7 +6875,7 @@ exports["default"] = Node;
6878
6875
  };
6879
6876
  });
6880
6877
  module.exports = exports["default"];
6881
- },{"../../types":169,"./parentheses":37,"./whitespace":38,"lodash/collection/each":339,"lodash/collection/some":344}],37:[function(require,module,exports){
6878
+ },{"../../types":169,"./parentheses":37,"./whitespace":38,"lodash/collection/each":340,"lodash/collection/some":345}],37:[function(require,module,exports){
6882
6879
  "use strict";
6883
6880
 
6884
6881
  exports.__esModule = true;
@@ -7066,7 +7063,7 @@ function AssignmentExpression(node) {
7066
7063
  return ConditionalExpression.apply(undefined, arguments);
7067
7064
  }
7068
7065
  }
7069
- },{"../../types":169,"lodash/collection/each":339}],38:[function(require,module,exports){
7066
+ },{"../../types":169,"lodash/collection/each":340}],38:[function(require,module,exports){
7070
7067
  "use strict";
7071
7068
 
7072
7069
  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; } }
@@ -7239,7 +7236,7 @@ exports.list = {
7239
7236
  };
7240
7237
  });
7241
7238
  });
7242
- },{"../../types":169,"lodash/collection/each":339,"lodash/collection/map":342,"lodash/lang/isBoolean":425}],39:[function(require,module,exports){
7239
+ },{"../../types":169,"lodash/collection/each":340,"lodash/collection/map":343,"lodash/lang/isBoolean":426}],39:[function(require,module,exports){
7243
7240
  "use strict";
7244
7241
 
7245
7242
  exports.__esModule = true;
@@ -7357,7 +7354,7 @@ var SourceMap = (function () {
7357
7354
 
7358
7355
  exports["default"] = SourceMap;
7359
7356
  module.exports = exports["default"];
7360
- },{"../types":169,"source-map":503}],41:[function(require,module,exports){
7357
+ },{"../types":169,"source-map":505}],41:[function(require,module,exports){
7361
7358
  "use strict";
7362
7359
 
7363
7360
  exports.__esModule = true;
@@ -7488,7 +7485,7 @@ var Whitespace = (function () {
7488
7485
 
7489
7486
  exports["default"] = Whitespace;
7490
7487
  module.exports = exports["default"];
7491
- },{"lodash/collection/sortBy":345}],42:[function(require,module,exports){
7488
+ },{"lodash/collection/sortBy":346}],42:[function(require,module,exports){
7492
7489
  "use strict";
7493
7490
 
7494
7491
  exports.__esModule = true;
@@ -7608,7 +7605,7 @@ exports["default"] = function (lines, lineNumber, colNumber) {
7608
7605
 
7609
7606
  ;
7610
7607
  module.exports = exports["default"];
7611
- },{"chalk":217,"esutils":323,"js-tokens":329,"line-numbers":331,"repeating":499}],43:[function(require,module,exports){
7608
+ },{"chalk":217,"esutils":323,"js-tokens":330,"line-numbers":332,"repeating":500}],43:[function(require,module,exports){
7612
7609
  "use strict";
7613
7610
 
7614
7611
  exports.__esModule = true;
@@ -7649,7 +7646,7 @@ exports["default"] = function (dest, src) {
7649
7646
  };
7650
7647
 
7651
7648
  module.exports = exports["default"];
7652
- },{"lodash/object/merge":442}],44:[function(require,module,exports){
7649
+ },{"lodash/object/merge":443}],44:[function(require,module,exports){
7653
7650
  "use strict";
7654
7651
 
7655
7652
  exports.__esModule = true;
@@ -7874,7 +7871,7 @@ def("ExportAllDeclaration").bases("Declaration").build("exported", "source").fie
7874
7871
  def("BindExpression").bases("Expression").build("object", "callee").field("object", or(def("Expression"), null)).field("callee", def("Expression"));
7875
7872
 
7876
7873
  _astTypes2["default"].finalize();
7877
- },{"./types":169,"ast-types":188,"estraverse":318,"lodash/object/extend":438}],49:[function(require,module,exports){
7874
+ },{"./types":169,"ast-types":188,"estraverse":318,"lodash/object/extend":439}],49:[function(require,module,exports){
7878
7875
  (function (global){
7879
7876
  "use strict";
7880
7877
 
@@ -7887,7 +7884,7 @@ if (global._babelPolyfill) {
7887
7884
  }
7888
7885
  global._babelPolyfill = true;
7889
7886
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
7890
- },{"core-js/shim":311,"regenerator/runtime":492}],50:[function(require,module,exports){
7887
+ },{"core-js/shim":311,"regenerator/runtime":493}],50:[function(require,module,exports){
7891
7888
  "use strict";
7892
7889
 
7893
7890
  exports.__esModule = true;
@@ -7993,7 +7990,7 @@ exports["default"] = function (whitelist) {
7993
7990
 
7994
7991
  ;
7995
7992
  module.exports = exports["default"];
7996
- },{"../generation":35,"../messages":47,"../transformation/file":52,"../types":169,"../util":173,"lodash/collection/each":339}],51:[function(require,module,exports){
7993
+ },{"../generation":35,"../messages":47,"../transformation/file":52,"../types":169,"../util":173,"lodash/collection/each":340}],51:[function(require,module,exports){
7997
7994
  "use strict";
7998
7995
 
7999
7996
  exports.__esModule = true;
@@ -8076,7 +8073,7 @@ exports["default"] = function (loc) {
8076
8073
 
8077
8074
  ;
8078
8075
  module.exports = exports["default"];
8079
- },{"../helpers/merge":43,"fs":189,"path":199,"strip-json-comments":514}],52:[function(require,module,exports){
8076
+ },{"../helpers/merge":43,"fs":189,"path":199,"strip-json-comments":516}],52:[function(require,module,exports){
8080
8077
  (function (process){
8081
8078
  "use strict";
8082
8079
 
@@ -8800,7 +8797,7 @@ module.exports = exports["default"];
8800
8797
 
8801
8798
  // `err.stack` may be a readonly property in some environments
8802
8799
  }).call(this,require('_process'))
8803
- },{"../../api/node":20,"../../generation":35,"../../helpers/code-frame":42,"../../helpers/merge":43,"../../helpers/parse":46,"../../tools/resolve-rc":51,"../../traversal":157,"../../traversal/path":161,"../../traversal/scope":164,"../../types":169,"../../util":173,"../modules":79,"../transformer":85,"./../index":71,"./logger":53,"./option-parsers":54,"./options":55,"./plugin-manager":56,"_process":200,"convert-source-map":225,"lodash/collection/includes":341,"lodash/lang/clone":421,"lodash/lang/isFunction":427,"lodash/object/assign":436,"lodash/object/defaults":437,"path":199,"path-is-absolute":454,"shebang-regex":501,"slash":502,"source-map":503}],53:[function(require,module,exports){
8800
+ },{"../../api/node":20,"../../generation":35,"../../helpers/code-frame":42,"../../helpers/merge":43,"../../helpers/parse":46,"../../tools/resolve-rc":51,"../../traversal":157,"../../traversal/path":161,"../../traversal/scope":164,"../../types":169,"../../util":173,"../modules":79,"../transformer":85,"./../index":71,"./logger":53,"./option-parsers":54,"./options":55,"./plugin-manager":56,"_process":200,"convert-source-map":225,"lodash/collection/includes":342,"lodash/lang/clone":422,"lodash/lang/isFunction":428,"lodash/object/assign":437,"lodash/object/defaults":438,"path":199,"path-is-absolute":455,"shebang-regex":503,"slash":504,"source-map":505}],53:[function(require,module,exports){
8804
8801
  "use strict";
8805
8802
 
8806
8803
  exports.__esModule = true;
@@ -9610,7 +9607,7 @@ exports["default"] = function (exports, opts) {
9610
9607
 
9611
9608
  ;
9612
9609
  module.exports = exports["default"];
9613
- },{"../../messages":47,"../../types":169,"./react":66,"esutils":323,"lodash/lang/isString":433}],60:[function(require,module,exports){
9610
+ },{"../../messages":47,"../../types":169,"./react":66,"esutils":323,"lodash/lang/isString":434}],60:[function(require,module,exports){
9614
9611
  "use strict";
9615
9612
 
9616
9613
  exports.__esModule = true;
@@ -9795,7 +9792,7 @@ function toDefineObject(mutatorMap) {
9795
9792
 
9796
9793
  return toClassObject(mutatorMap);
9797
9794
  }
9798
- },{"../../traversal":157,"../../types":169,"lodash/collection/each":339,"lodash/lang/cloneDeep":422,"lodash/object/has":439}],62:[function(require,module,exports){
9795
+ },{"../../traversal":157,"../../types":169,"lodash/collection/each":340,"lodash/lang/cloneDeep":423,"lodash/object/has":440}],62:[function(require,module,exports){
9799
9796
  "use strict";
9800
9797
 
9801
9798
  exports.__esModule = true;
@@ -10225,7 +10222,7 @@ function buildChildren(node) {
10225
10222
 
10226
10223
  return elems;
10227
10224
  }
10228
- },{"../../types":169,"lodash/lang/isString":433}],67:[function(require,module,exports){
10225
+ },{"../../types":169,"lodash/lang/isString":434}],67:[function(require,module,exports){
10229
10226
  "use strict";
10230
10227
 
10231
10228
  exports.__esModule = true;
@@ -10254,7 +10251,7 @@ function pullFlag(node, flag) {
10254
10251
  (0, _lodashArrayPull2["default"])(flags, flag);
10255
10252
  node.regex.flags = flags.join("");
10256
10253
  }
10257
- },{"../../types":169,"lodash/array/pull":336}],68:[function(require,module,exports){
10254
+ },{"../../types":169,"lodash/array/pull":337}],68:[function(require,module,exports){
10258
10255
  "use strict";
10259
10256
 
10260
10257
  exports.__esModule = true;
@@ -11099,7 +11096,7 @@ var DefaultFormatter = (function () {
11099
11096
 
11100
11097
  exports["default"] = DefaultFormatter;
11101
11098
  module.exports = exports["default"];
11102
- },{"../../helpers/object":45,"../../messages":47,"../../traversal":157,"../../types":169,"../../util":173,"lodash/object/extend":438}],73:[function(require,module,exports){
11099
+ },{"../../helpers/object":45,"../../messages":47,"../../traversal":157,"../../types":169,"../../util":173,"lodash/object/extend":439}],73:[function(require,module,exports){
11103
11100
  "use strict";
11104
11101
 
11105
11102
  exports.__esModule = true;
@@ -11327,7 +11324,7 @@ module.exports = exports["default"];
11327
11324
  // absolute module reference
11328
11325
 
11329
11326
  // import * as bar from "foo";
11330
- },{"../../types":169,"../../util":173,"./_default":72,"./common":77,"lodash/collection/includes":341,"lodash/object/values":444}],76:[function(require,module,exports){
11327
+ },{"../../types":169,"../../util":173,"./_default":72,"./common":77,"lodash/collection/includes":342,"lodash/object/values":445}],76:[function(require,module,exports){
11331
11328
  "use strict";
11332
11329
 
11333
11330
  exports.__esModule = true;
@@ -11496,7 +11493,7 @@ module.exports = exports["default"];
11496
11493
  // absolute module reference
11497
11494
 
11498
11495
  // absolute module reference
11499
- },{"../../types":169,"../../util":173,"./_default":72,"lodash/collection/includes":341}],78:[function(require,module,exports){
11496
+ },{"../../types":169,"../../util":173,"./_default":72,"lodash/collection/includes":342}],78:[function(require,module,exports){
11500
11497
  "use strict";
11501
11498
 
11502
11499
  exports.__esModule = true;
@@ -11802,7 +11799,7 @@ var SystemFormatter = (function (_AMDFormatter) {
11802
11799
 
11803
11800
  exports["default"] = SystemFormatter;
11804
11801
  module.exports = exports["default"];
11805
- },{"../../helpers/object":45,"../../types":169,"../../util":173,"./_default":72,"./amd":75,"lodash/array/last":335,"lodash/collection/each":339,"lodash/collection/map":342}],81:[function(require,module,exports){
11802
+ },{"../../helpers/object":45,"../../types":169,"../../util":173,"./_default":72,"./amd":75,"lodash/array/last":336,"lodash/collection/each":340,"lodash/collection/map":343}],81:[function(require,module,exports){
11806
11803
  "use strict";
11807
11804
 
11808
11805
  exports.__esModule = true;
@@ -11945,7 +11942,7 @@ var UMDFormatter = (function (_AMDFormatter) {
11945
11942
 
11946
11943
  exports["default"] = UMDFormatter;
11947
11944
  module.exports = exports["default"];
11948
- },{"../../types":169,"../../util":173,"./_default":72,"./amd":75,"lodash/object/values":444,"path":199}],83:[function(require,module,exports){
11945
+ },{"../../types":169,"../../util":173,"./_default":72,"./amd":75,"lodash/object/values":445,"path":199}],83:[function(require,module,exports){
11949
11946
  "use strict";
11950
11947
 
11951
11948
  exports.__esModule = true;
@@ -11999,7 +11996,7 @@ var TransformerPass = (function () {
11999
11996
 
12000
11997
  exports["default"] = TransformerPass;
12001
11998
  module.exports = exports["default"];
12002
- },{"../traversal":157,"lodash/collection/includes":341}],84:[function(require,module,exports){
11999
+ },{"../traversal":157,"lodash/collection/includes":342}],84:[function(require,module,exports){
12003
12000
  "use strict";
12004
12001
 
12005
12002
  exports.__esModule = true;
@@ -12136,7 +12133,7 @@ var TransformerPipeline = (function () {
12136
12133
 
12137
12134
  exports["default"] = TransformerPipeline;
12138
12135
  module.exports = exports["default"];
12139
- },{"../helpers/normalize-ast":44,"../helpers/object":45,"./file":52,"./transformer":85,"lodash/object/assign":436}],85:[function(require,module,exports){
12136
+ },{"../helpers/normalize-ast":44,"../helpers/object":45,"./file":52,"./transformer":85,"lodash/object/assign":437}],85:[function(require,module,exports){
12140
12137
  "use strict";
12141
12138
 
12142
12139
  exports.__esModule = true;
@@ -12265,7 +12262,7 @@ var Transformer = (function () {
12265
12262
 
12266
12263
  exports["default"] = Transformer;
12267
12264
  module.exports = exports["default"];
12268
- },{"../../acorn":1,"../messages":47,"../traversal":157,"./file":52,"./transformer-pass":83,"lodash/collection/each":339,"lodash/lang/isFunction":427,"lodash/lang/isObject":430,"lodash/object/assign":436}],86:[function(require,module,exports){
12265
+ },{"../../acorn":1,"../messages":47,"../traversal":157,"./file":52,"./transformer-pass":83,"lodash/collection/each":340,"lodash/lang/isFunction":428,"lodash/lang/isObject":431,"lodash/object/assign":437}],86:[function(require,module,exports){
12269
12266
  module.exports={
12270
12267
  "useStrict": "strict",
12271
12268
  "es5.runtime": "runtime",
@@ -13066,7 +13063,7 @@ var BlockScoping = (function () {
13066
13063
 
13067
13064
  return BlockScoping;
13068
13065
  })();
13069
- },{"../../../helpers/object":45,"../../../traversal":157,"../../../types":169,"../../../util":173,"lodash/object/extend":438,"lodash/object/values":444}],93:[function(require,module,exports){
13066
+ },{"../../../helpers/object":45,"../../../traversal":157,"../../../types":169,"../../../util":173,"lodash/object/extend":439,"lodash/object/values":445}],93:[function(require,module,exports){
13070
13067
  "use strict";
13071
13068
 
13072
13069
  exports.__esModule = true;
@@ -13665,7 +13662,7 @@ var ClassTransformer = (function () {
13665
13662
 
13666
13663
  return ClassTransformer;
13667
13664
  })();
13668
- },{"../../../messages":47,"../../../traversal":157,"../../../types":169,"../../../util":173,"../../helpers/define-map":61,"../../helpers/memoise-decorators":64,"../../helpers/name-method":65,"../../helpers/replace-supers":69,"lodash/collection/each":339,"lodash/object/has":439}],94:[function(require,module,exports){
13665
+ },{"../../../messages":47,"../../../traversal":157,"../../../types":169,"../../../util":173,"../../helpers/define-map":61,"../../helpers/memoise-decorators":64,"../../helpers/name-method":65,"../../helpers/replace-supers":69,"lodash/collection/each":340,"lodash/object/has":440}],94:[function(require,module,exports){
13669
13666
  "use strict";
13670
13667
 
13671
13668
  exports.__esModule = true;
@@ -14824,7 +14821,7 @@ function Func(node, parent, scope, file) {
14824
14821
  loop._blockHoist = node.params.length + 1;
14825
14822
  node.body.body.unshift(loop);
14826
14823
  }
14827
- },{"../../../types":169,"../../../util":173,"lodash/lang/isNumber":429}],101:[function(require,module,exports){
14824
+ },{"../../../types":169,"../../../util":173,"lodash/lang/isNumber":430}],101:[function(require,module,exports){
14828
14825
  "use strict";
14829
14826
 
14830
14827
  exports.__esModule = true;
@@ -14988,7 +14985,7 @@ function Literal(node) {
14988
14985
  node.regex.pattern = (0, _regexpuRewritePattern2["default"])(node.regex.pattern, node.regex.flags);
14989
14986
  regex.pullFlag(node, "u");
14990
14987
  }
14991
- },{"../../helpers/regex":67,"regexpu/rewrite-pattern":498}],105:[function(require,module,exports){
14988
+ },{"../../helpers/regex":67,"regexpu/rewrite-pattern":499}],105:[function(require,module,exports){
14992
14989
  "use strict";
14993
14990
 
14994
14991
  exports.__esModule = true;
@@ -15251,7 +15248,7 @@ function NewExpression(node, parent, scope, file) {
15251
15248
 
15252
15249
  return t.newExpression(t.callExpression(t.memberExpression(file.addHelper("bind"), t.identifier("apply")), [node.callee, args]), []);
15253
15250
  }
15254
- },{"../../../types":169,"lodash/collection/includes":341}],109:[function(require,module,exports){
15251
+ },{"../../../types":169,"lodash/collection/includes":342}],109:[function(require,module,exports){
15255
15252
  "use strict";
15256
15253
 
15257
15254
  exports.__esModule = true;
@@ -15338,7 +15335,7 @@ var visitor = {
15338
15335
  },
15339
15336
 
15340
15337
  ReferencedIdentifier: function ReferencedIdentifier(node, parent, scope, state) {
15341
- if (node.name === "arguments" && !state.isShadowed) {
15338
+ if (node.name === "arguments" && (!state.isShadowed || node._shadowedFunctionLiteral)) {
15342
15339
  state.needsArguments = true;
15343
15340
  state.argumentsPaths.push(this);
15344
15341
  }
@@ -15499,6 +15496,7 @@ var TailCallTransformer = (function () {
15499
15496
  var decl = t.variableDeclarator(this.argumentsId);
15500
15497
  if (this.argumentsId) {
15501
15498
  decl.init = t.identifier("arguments");
15499
+ decl.init._shadowedFunctionLiteral = true;
15502
15500
  }
15503
15501
  topVars.push(decl);
15504
15502
  }
@@ -15575,9 +15573,8 @@ var TailCallTransformer = (function () {
15575
15573
  };
15576
15574
 
15577
15575
  TailCallTransformer.prototype.subTransformCallExpression = function subTransformCallExpression(node) {
15578
- var callee = node.callee,
15579
- thisBinding,
15580
- args;
15576
+ var callee = node.callee;
15577
+ var thisBinding, args;
15581
15578
 
15582
15579
  if (t.isMemberExpression(callee, { computed: false }) && t.isIdentifier(callee.property)) {
15583
15580
  switch (callee.property.name) {
@@ -15587,6 +15584,7 @@ var TailCallTransformer = (function () {
15587
15584
 
15588
15585
  case "apply":
15589
15586
  args = node.arguments[1] || t.identifier("undefined");
15587
+ this.needsArguments = true;
15590
15588
  break;
15591
15589
 
15592
15590
  default:
@@ -15616,6 +15614,10 @@ var TailCallTransformer = (function () {
15616
15614
  args = t.arrayExpression(node.arguments);
15617
15615
  }
15618
15616
 
15617
+ if (t.isArrayExpression(args) && args.elements.length > this.node.params.length) {
15618
+ this.needsArguments = true;
15619
+ }
15620
+
15619
15621
  var argumentsId = this.getArgumentsId();
15620
15622
  var params = this.getParams();
15621
15623
 
@@ -15660,7 +15662,7 @@ var TailCallTransformer = (function () {
15660
15662
 
15661
15663
  return TailCallTransformer;
15662
15664
  })();
15663
- },{"../../../messages":47,"../../../traversal":157,"../../../types":169,"../../../util":173,"lodash/array/flatten":334,"lodash/collection/map":342,"lodash/collection/reduceRight":343}],110:[function(require,module,exports){
15665
+ },{"../../../messages":47,"../../../traversal":157,"../../../types":169,"../../../util":173,"lodash/array/flatten":335,"lodash/collection/map":343,"lodash/collection/reduceRight":344}],110:[function(require,module,exports){
15664
15666
  "use strict";
15665
15667
 
15666
15668
  exports.__esModule = true;
@@ -16161,7 +16163,7 @@ function stage(transformer, opts) {
16161
16163
  function optional(transformer, opts) {
16162
16164
  if (transformer.metadata.optional && !(0, _lodashCollectionIncludes2["default"])(opts.optional, transformer.key)) return false;
16163
16165
  }
16164
- },{"lodash/collection/includes":341}],122:[function(require,module,exports){
16166
+ },{"lodash/collection/includes":342}],122:[function(require,module,exports){
16165
16167
  "use strict";
16166
16168
 
16167
16169
  exports.__esModule = true;
@@ -16296,7 +16298,7 @@ var BlockStatement = {
16296
16298
 
16297
16299
  exports.BlockStatement = BlockStatement;
16298
16300
  exports.Program = BlockStatement;
16299
- },{"lodash/collection/sortBy":345}],124:[function(require,module,exports){
16301
+ },{"lodash/collection/sortBy":346}],124:[function(require,module,exports){
16300
16302
  "use strict";
16301
16303
 
16302
16304
  exports.__esModule = true;
@@ -16349,7 +16351,7 @@ var ExportDeclaration = buildListClone("specifiers", "local", "exported");
16349
16351
  exports.ExportDeclaration = ExportDeclaration;
16350
16352
  var ImportDeclaration = buildListClone("specifiers", "local", "imported");
16351
16353
  exports.ImportDeclaration = ImportDeclaration;
16352
- },{"../../../types":169,"lodash/lang/clone":421}],125:[function(require,module,exports){
16354
+ },{"../../../types":169,"lodash/lang/clone":422}],125:[function(require,module,exports){
16353
16355
  "use strict";
16354
16356
 
16355
16357
  exports.__esModule = true;
@@ -16443,6 +16445,14 @@ var _types = require("../../../types");
16443
16445
 
16444
16446
  var t = _interopRequireWildcard(_types);
16445
16447
 
16448
+ function getDeclar(node) {
16449
+ var declar = node.declaration;
16450
+ t.inheritsComments(declar, node);
16451
+ t.removeComments(node);
16452
+ declar._ignoreUserWhitespace = true;
16453
+ return declar;
16454
+ }
16455
+
16446
16456
  var metadata = {
16447
16457
  group: "builtin-setup"
16448
16458
  };
@@ -16462,26 +16472,26 @@ function ExportDefaultDeclaration(node, parent, scope) {
16462
16472
 
16463
16473
  var declar = node.declaration;
16464
16474
 
16465
- var getDeclar = function getDeclar() {
16466
- declar._ignoreUserWhitespace = true;
16467
- return declar;
16468
- };
16469
-
16470
16475
  if (t.isClassDeclaration(declar)) {
16471
16476
  // export default class Foo {};
16477
+ var nodes = [getDeclar(node), node];
16472
16478
  node.declaration = declar.id;
16473
- return [getDeclar(), node];
16479
+ return nodes;
16474
16480
  } else if (t.isClassExpression(declar)) {
16475
16481
  // export default class {};
16476
16482
  var temp = scope.generateUidIdentifier("default");
16477
- declar = t.variableDeclaration("var", [t.variableDeclarator(temp, declar)]);
16483
+ node.declaration = t.variableDeclaration("var", [t.variableDeclarator(temp, declar)]);
16484
+
16485
+ var nodes = [getDeclar(node), node];
16478
16486
  node.declaration = temp;
16479
- return [getDeclar(), node];
16487
+ return nodes;
16480
16488
  } else if (t.isFunctionDeclaration(declar)) {
16481
16489
  // export default function Foo() {}
16482
16490
  node._blockHoist = 2;
16491
+
16492
+ var nodes = [getDeclar(node), node];
16483
16493
  node.declaration = declar.id;
16484
- return [getDeclar(), node];
16494
+ return nodes;
16485
16495
  }
16486
16496
  }
16487
16497
 
@@ -16494,22 +16504,20 @@ function ExportNamedDeclaration(node, parent, scope) {
16494
16504
 
16495
16505
  var declar = node.declaration;
16496
16506
 
16497
- var getDeclar = function getDeclar() {
16498
- declar._ignoreUserWhitespace = true;
16499
- return declar;
16500
- };
16501
-
16502
16507
  if (t.isClassDeclaration(declar)) {
16503
16508
  // export class Foo {}
16504
16509
  node.specifiers = [buildExportSpecifier(declar.id)];
16510
+ var nodes = [getDeclar(node), node];
16505
16511
  node.declaration = null;
16506
- return [getDeclar(), node];
16512
+ return nodes;
16507
16513
  } else if (t.isFunctionDeclaration(declar)) {
16508
16514
  // export function Foo() {}
16509
16515
  node.specifiers = [buildExportSpecifier(declar.id)];
16510
- node.declaration = null;
16511
16516
  node._blockHoist = 2;
16512
- return [getDeclar(), node];
16517
+
16518
+ var nodes = [getDeclar(node), node];
16519
+ node.declaration = null;
16520
+ return nodes;
16513
16521
  } else if (t.isVariableDeclaration(declar)) {
16514
16522
  // export var foo = "bar";
16515
16523
  var specifiers = [];
@@ -16547,7 +16555,7 @@ var Program = {
16547
16555
  }
16548
16556
  };
16549
16557
  exports.Program = Program;
16550
- },{"../../../types":169,"lodash/lang/clone":421}],128:[function(require,module,exports){
16558
+ },{"../../../types":169,"lodash/lang/clone":422}],128:[function(require,module,exports){
16551
16559
  "use strict";
16552
16560
 
16553
16561
  exports.__esModule = true;
@@ -17426,7 +17434,7 @@ function convertTraversalPathToNodePath(path) {
17426
17434
 
17427
17435
  return nodePath;
17428
17436
  }
17429
- },{"../../../types":169,"ast-types":188,"regenerator":462}],146:[function(require,module,exports){
17437
+ },{"../../../types":169,"ast-types":188,"regenerator":463}],146:[function(require,module,exports){
17430
17438
  module.exports={
17431
17439
  "builtins": {
17432
17440
  "Symbol": "symbol",
@@ -17728,7 +17736,7 @@ var MemberExpression = {
17728
17736
  }
17729
17737
  };
17730
17738
  exports.MemberExpression = MemberExpression;
17731
- },{"../../../../traversal":157,"../../../../types":169,"../../../../util":173,"./definitions":146,"lodash/collection/includes":341,"lodash/object/has":439}],148:[function(require,module,exports){
17739
+ },{"../../../../traversal":157,"../../../../types":169,"../../../../util":173,"./definitions":146,"lodash/collection/includes":342,"lodash/object/has":440}],148:[function(require,module,exports){
17732
17740
  "use strict";
17733
17741
 
17734
17742
  exports.__esModule = true;
@@ -17923,7 +17931,7 @@ function ObjectExpression(node, parent, scope, file) {
17923
17931
  return t.callExpression(file.addHelper("extends"), args);
17924
17932
  }
17925
17933
  }
17926
- },{"../../../types":169,"lodash/array/pull":336}],152:[function(require,module,exports){
17934
+ },{"../../../types":169,"lodash/array/pull":337}],152:[function(require,module,exports){
17927
17935
  "use strict";
17928
17936
 
17929
17937
  exports.__esModule = true;
@@ -18071,7 +18079,7 @@ function Identifier(node, parent, scope, file) {
18071
18079
 
18072
18080
  throw file.errorWithNode(node, msg, ReferenceError);
18073
18081
  }
18074
- },{"../../../messages":47,"leven":330}],156:[function(require,module,exports){
18082
+ },{"../../../messages":47,"leven":331}],156:[function(require,module,exports){
18075
18083
  "use strict";
18076
18084
 
18077
18085
  exports.__esModule = true;
@@ -18182,7 +18190,7 @@ var TraversalContext = (function () {
18182
18190
 
18183
18191
  exports["default"] = TraversalContext;
18184
18192
  module.exports = exports["default"];
18185
- },{"../types":169,"./path":161,"lodash/array/compact":333}],157:[function(require,module,exports){
18193
+ },{"../types":169,"./path":161,"lodash/array/compact":334}],157:[function(require,module,exports){
18186
18194
  "use strict";
18187
18195
 
18188
18196
  exports.__esModule = true;
@@ -18313,15 +18321,10 @@ traverse.hasType = function (tree, scope, type, blacklistTypes) {
18313
18321
  return state.has;
18314
18322
  };
18315
18323
  module.exports = exports["default"];
18316
- },{"../messages":47,"../types":169,"./context":156,"./visitors":165,"lodash/collection/includes":341}],158:[function(require,module,exports){
18324
+ },{"../messages":47,"../types":169,"./context":156,"./visitors":165,"lodash/collection/includes":342}],158:[function(require,module,exports){
18317
18325
  "use strict";
18318
18326
 
18319
18327
  exports.__esModule = true;
18320
-
18321
- /**
18322
- * Description
18323
- */
18324
-
18325
18328
  exports.toComputedKey = toComputedKey;
18326
18329
 
18327
18330
  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; } }
@@ -18330,6 +18333,10 @@ var _types = require("../../types");
18330
18333
 
18331
18334
  var t = _interopRequireWildcard(_types);
18332
18335
 
18336
+ /**
18337
+ * Description
18338
+ */
18339
+
18333
18340
  function toComputedKey() {
18334
18341
  var node = this.node;
18335
18342
 
@@ -18371,6 +18378,12 @@ function toComputedKey() {
18371
18378
 
18372
18379
  exports.__esModule = true;
18373
18380
  exports.evaluateTruthy = evaluateTruthy;
18381
+ exports.evaluate = evaluate;
18382
+
18383
+ function evaluateTruthy() {
18384
+ var res = this.evaluate();
18385
+ if (res.confident) return !!res.value;
18386
+ }
18374
18387
 
18375
18388
  /**
18376
18389
  * Walk the input `node` and statically evaluate it.
@@ -18387,13 +18400,6 @@ exports.evaluateTruthy = evaluateTruthy;
18387
18400
  *
18388
18401
  */
18389
18402
 
18390
- exports.evaluate = evaluate;
18391
-
18392
- function evaluateTruthy() {
18393
- var res = this.evaluate();
18394
- if (res.confident) return !!res.value;
18395
- }
18396
-
18397
18403
  function evaluate() {
18398
18404
  var confident = true;
18399
18405
 
@@ -20031,7 +20037,7 @@ module.exports = exports["default"];
20031
20037
 
20032
20038
  // otherwise it's a request for a destructuring declarator and i'm not
20033
20039
  // ready to resolve those just yet
20034
- },{"../../helpers/code-frame":42,"../../helpers/parse":46,"../../messages":47,"../../types":169,"../index":157,"../scope":164,"../visitors":165,"./conversion":158,"./evaluation":159,"./hoister":160,"./virtual-types":162,"lodash/collection/includes":341,"lodash/lang/isBoolean":425,"lodash/lang/isNumber":429,"lodash/lang/isRegExp":432,"lodash/lang/isString":433,"lodash/object/assign":436,"lodash/object/extend":438}],162:[function(require,module,exports){
20040
+ },{"../../helpers/code-frame":42,"../../helpers/parse":46,"../../messages":47,"../../types":169,"../index":157,"../scope":164,"../visitors":165,"./conversion":158,"./evaluation":159,"./hoister":160,"./virtual-types":162,"lodash/collection/includes":342,"lodash/lang/isBoolean":426,"lodash/lang/isNumber":430,"lodash/lang/isRegExp":433,"lodash/lang/isString":434,"lodash/object/assign":437,"lodash/object/extend":439}],162:[function(require,module,exports){
20035
20041
  "use strict";
20036
20042
 
20037
20043
  exports.__esModule = true;
@@ -20043,7 +20049,7 @@ var _types = require("../../types");
20043
20049
  var t = _interopRequireWildcard(_types);
20044
20050
 
20045
20051
  var ReferencedIdentifier = {
20046
- type: "Identifier",
20052
+ types: ["Identifier", "JSXIdentifier"],
20047
20053
  checkPath: function checkPath(path, opts) {
20048
20054
  return t.isReferencedIdentifier(path.node, path.parent, opts);
20049
20055
  }
@@ -20051,7 +20057,7 @@ var ReferencedIdentifier = {
20051
20057
 
20052
20058
  exports.ReferencedIdentifier = ReferencedIdentifier;
20053
20059
  var Scope = {
20054
- type: "Scopable",
20060
+ types: ["Scopable"],
20055
20061
  checkPath: function checkPath(path) {
20056
20062
  return t.isScope(path.node, path.parent);
20057
20063
  }
@@ -20073,7 +20079,7 @@ var BlockScoped = {
20073
20079
 
20074
20080
  exports.BlockScoped = BlockScoped;
20075
20081
  var Var = {
20076
- type: "VariableDeclaration",
20082
+ types: ["VariableDeclaration"],
20077
20083
  checkPath: function checkPath(path) {
20078
20084
  return t.isVar(path.node);
20079
20085
  }
@@ -21153,7 +21159,7 @@ exports["default"] = Scope;
21153
21159
  module.exports = exports["default"];
21154
21160
 
21155
21161
  //path.setData("scope", this);
21156
- },{"../../helpers/object":45,"../../messages":47,"../../types":169,"../index":157,"../visitors":165,"./binding":163,"globals":325,"lodash/array/flatten":334,"lodash/collection/each":339,"lodash/collection/includes":341,"lodash/object/defaults":437,"lodash/object/extend":438}],165:[function(require,module,exports){
21162
+ },{"../../helpers/object":45,"../../messages":47,"../../types":169,"../index":157,"../visitors":165,"./binding":163,"globals":325,"lodash/array/flatten":335,"lodash/collection/each":340,"lodash/collection/includes":342,"lodash/object/defaults":438,"lodash/object/extend":439}],165:[function(require,module,exports){
21157
21163
  "use strict";
21158
21164
 
21159
21165
  exports.__esModule = true;
@@ -21214,12 +21220,17 @@ function explode(visitor, mergeConflicts) {
21214
21220
  // clear it from the visitor
21215
21221
  delete visitor[nodeType];
21216
21222
 
21217
- if (wrapper.type) {
21218
- // merge the visitor if necessary or just put it back in
21219
- if (visitor[wrapper.type]) {
21220
- mergePair(visitor[wrapper.type], fns);
21221
- } else {
21222
- visitor[wrapper.type] = fns;
21223
+ if (wrapper.types) {
21224
+ var _arr = wrapper.types;
21225
+
21226
+ for (var _i = 0; _i < _arr.length; _i++) {
21227
+ var type = _arr[_i];
21228
+ // merge the visitor if necessary or just put it back in
21229
+ if (visitor[type]) {
21230
+ mergePair(visitor[type], fns);
21231
+ } else {
21232
+ visitor[type] = fns;
21233
+ }
21223
21234
  }
21224
21235
  } else {
21225
21236
  mergePair(visitor, fns);
@@ -21238,9 +21249,9 @@ function explode(visitor, mergeConflicts) {
21238
21249
  // clear it form the visitor
21239
21250
  delete visitor[nodeType];
21240
21251
 
21241
- var _arr = aliases;
21242
- for (var _i = 0; _i < _arr.length; _i++) {
21243
- var alias = _arr[_i];
21252
+ var _arr2 = aliases;
21253
+ for (var _i2 = 0; _i2 < _arr2.length; _i2++) {
21254
+ var alias = _arr2[_i2];
21244
21255
  var existing = visitor[alias];
21245
21256
  if (existing) {
21246
21257
  if (mergeConflicts) {
@@ -21284,9 +21295,9 @@ function verify(visitor) {
21284
21295
  function merge(visitors) {
21285
21296
  var rootVisitor = {};
21286
21297
 
21287
- var _arr2 = visitors;
21288
- for (var _i2 = 0; _i2 < _arr2.length; _i2++) {
21289
- var visitor = _arr2[_i2];
21298
+ var _arr3 = visitors;
21299
+ for (var _i3 = 0; _i3 < _arr3.length; _i3++) {
21300
+ var visitor = _arr3[_i3];
21290
21301
  for (var type in visitor) {
21291
21302
  var nodeVisitor = rootVisitor[type] = rootVisitor[type] || {};
21292
21303
  mergePair(nodeVisitor, visitor[type]);
@@ -21674,60 +21685,13 @@ module.exports={
21674
21685
  "use strict";
21675
21686
 
21676
21687
  exports.__esModule = true;
21677
-
21678
- /**
21679
- * Description
21680
- */
21681
-
21682
21688
  exports.toComputedKey = toComputedKey;
21683
-
21684
- /**
21685
- * Turn an array of statement `nodes` into a `SequenceExpression`.
21686
- *
21687
- * Variable declarations are turned into simple assignments and their
21688
- * declarations hoisted to the top of the current scope.
21689
- *
21690
- * Expression statements are just resolved to their expression.
21691
- */
21692
-
21693
21689
  exports.toSequenceExpression = toSequenceExpression;
21694
-
21695
- /**
21696
- * Description
21697
- */
21698
-
21699
21690
  exports.toKeyAlias = toKeyAlias;
21700
-
21701
- /*
21702
- * Description
21703
- */
21704
-
21705
21691
  exports.toIdentifier = toIdentifier;
21706
-
21707
- /**
21708
- * Description
21709
- *
21710
- * @returns {Object|Boolean}
21711
- */
21712
-
21713
21692
  exports.toStatement = toStatement;
21714
-
21715
- /**
21716
- * Description
21717
- */
21718
-
21719
21693
  exports.toExpression = toExpression;
21720
-
21721
- /**
21722
- * Description
21723
- */
21724
-
21725
21694
  exports.toBlock = toBlock;
21726
-
21727
- /**
21728
- * Description
21729
- */
21730
-
21731
21695
  exports.valueToNode = valueToNode;
21732
21696
 
21733
21697
  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; } }
@@ -21762,6 +21726,10 @@ var _index = require("./index");
21762
21726
 
21763
21727
  var t = _interopRequireWildcard(_index);
21764
21728
 
21729
+ /**
21730
+ * Description
21731
+ */
21732
+
21765
21733
  function toComputedKey(node) {
21766
21734
  var key = arguments[1] === undefined ? node.key || node.property : arguments[1];
21767
21735
  return (function () {
@@ -21772,6 +21740,15 @@ function toComputedKey(node) {
21772
21740
  })();
21773
21741
  }
21774
21742
 
21743
+ /**
21744
+ * Turn an array of statement `nodes` into a `SequenceExpression`.
21745
+ *
21746
+ * Variable declarations are turned into simple assignments and their
21747
+ * declarations hoisted to the top of the current scope.
21748
+ *
21749
+ * Expression statements are just resolved to their expression.
21750
+ */
21751
+
21775
21752
  function toSequenceExpression(nodes, scope) {
21776
21753
  var declars = [];
21777
21754
  var bailed = false;
@@ -21847,6 +21824,10 @@ function toSequenceExpression(nodes, scope) {
21847
21824
  }
21848
21825
  }
21849
21826
 
21827
+ /**
21828
+ * Description
21829
+ */
21830
+
21850
21831
  function toKeyAlias(node) {
21851
21832
  var key = arguments[1] === undefined ? node.key : arguments[1];
21852
21833
  return (function () {
@@ -21863,6 +21844,10 @@ function toKeyAlias(node) {
21863
21844
  })();
21864
21845
  }
21865
21846
 
21847
+ /*
21848
+ * Description
21849
+ */
21850
+
21866
21851
  function toIdentifier(name) {
21867
21852
  if (t.isIdentifier(name)) return name.name;
21868
21853
 
@@ -21886,6 +21871,12 @@ function toIdentifier(name) {
21886
21871
  return name || "_";
21887
21872
  }
21888
21873
 
21874
+ /**
21875
+ * Description
21876
+ *
21877
+ * @returns {Object|Boolean}
21878
+ */
21879
+
21889
21880
  function toStatement(node, ignore) {
21890
21881
  if (t.isStatement(node)) {
21891
21882
  return node;
@@ -21921,6 +21912,10 @@ function toStatement(node, ignore) {
21921
21912
  return node;
21922
21913
  }
21923
21914
 
21915
+ /**
21916
+ * Description
21917
+ */
21918
+
21924
21919
  function toExpression(node) {
21925
21920
  if (t.isExpressionStatement(node)) {
21926
21921
  node = node.expression;
@@ -21939,6 +21934,10 @@ function toExpression(node) {
21939
21934
  }
21940
21935
  }
21941
21936
 
21937
+ /**
21938
+ * Description
21939
+ */
21940
+
21942
21941
  function toBlock(node, parent) {
21943
21942
  if (t.isBlockStatement(node)) {
21944
21943
  return node;
@@ -21963,6 +21962,10 @@ function toBlock(node, parent) {
21963
21962
  return t.blockStatement(node);
21964
21963
  }
21965
21964
 
21965
+ /**
21966
+ * Description
21967
+ */
21968
+
21966
21969
  function valueToNode(value) {
21967
21970
  if (value === undefined) {
21968
21971
  return t.identifier("undefined");
@@ -21992,83 +21995,21 @@ function valueToNode(value) {
21992
21995
 
21993
21996
  throw new Error("don't know how to turn this value into a node");
21994
21997
  }
21995
- },{"../traversal":157,"./index":169,"lodash/collection/each":339,"lodash/lang/isNumber":429,"lodash/lang/isPlainObject":431,"lodash/lang/isRegExp":432,"lodash/lang/isString":433}],169:[function(require,module,exports){
21998
+ },{"../traversal":157,"./index":169,"lodash/collection/each":340,"lodash/lang/isNumber":430,"lodash/lang/isPlainObject":432,"lodash/lang/isRegExp":433,"lodash/lang/isString":434}],169:[function(require,module,exports){
21996
21999
  "use strict";
21997
22000
 
21998
22001
  exports.__esModule = true;
21999
-
22000
- /**
22001
- * Returns whether `node` is of given `type`.
22002
- *
22003
- * For better performance, use this instead of `is[Type]` when `type` is unknown.
22004
- * Optionally, pass `skipAliasCheck` to directly compare `node.type` with `type`.
22005
- */
22006
-
22007
22002
  exports.is = is;
22008
22003
  exports.isType = isType;
22009
-
22010
- /*
22011
- * Description
22012
- */
22013
-
22014
22004
  exports.shallowEqual = shallowEqual;
22015
-
22016
- /**
22017
- * Description
22018
- */
22019
-
22020
22005
  exports.appendToMemberExpression = appendToMemberExpression;
22021
-
22022
- /**
22023
- * Description
22024
- */
22025
-
22026
22006
  exports.prependToMemberExpression = prependToMemberExpression;
22027
-
22028
- /**
22029
- * Description
22030
- */
22031
-
22032
22007
  exports.ensureBlock = ensureBlock;
22033
-
22034
- /**
22035
- * Description
22036
- */
22037
-
22038
22008
  exports.clone = clone;
22039
-
22040
- /**
22041
- * Description
22042
- */
22043
-
22044
22009
  exports.cloneDeep = cloneDeep;
22045
-
22046
- /**
22047
- * Build a function that when called will return whether or not the
22048
- * input `node` `MemberExpression` matches the input `match`.
22049
- *
22050
- * For example, given the match `React.createClass` it would match the
22051
- * parsed nodes of `React.createClass` and `React["createClass"]`.
22052
- */
22053
-
22054
22010
  exports.buildMatchMemberExpression = buildMatchMemberExpression;
22055
-
22056
- /**
22057
- * Description
22058
- */
22059
-
22060
22011
  exports.removeComments = removeComments;
22061
-
22062
- /**
22063
- * Description
22064
- */
22065
-
22066
22012
  exports.inheritsComments = inheritsComments;
22067
-
22068
- /**
22069
- * Description
22070
- */
22071
-
22072
22013
  exports.inherits = inherits;
22073
22014
 
22074
22015
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
@@ -22149,7 +22090,15 @@ t.FLIPPED_ALIAS_KEYS = {};
22149
22090
  registerType(type, false);
22150
22091
  });
22151
22092
 
22152
- var TYPES = Object.keys(t.VISITOR_KEYS).concat(Object.keys(t.FLIPPED_ALIAS_KEYS));exports.TYPES = TYPES;
22093
+ var TYPES = Object.keys(t.VISITOR_KEYS).concat(Object.keys(t.FLIPPED_ALIAS_KEYS));
22094
+
22095
+ exports.TYPES = TYPES;
22096
+ /**
22097
+ * Returns whether `node` is of given `type`.
22098
+ *
22099
+ * For better performance, use this instead of `is[Type]` when `type` is unknown.
22100
+ * Optionally, pass `skipAliasCheck` to directly compare `node.type` with `type`.
22101
+ */
22153
22102
 
22154
22103
  function is(type, node, opts, skipAliasCheck) {
22155
22104
  if (!node) return false;
@@ -22208,6 +22157,11 @@ function isType(nodeType, targetType) {
22208
22157
  return node;
22209
22158
  };
22210
22159
  });
22160
+
22161
+ /*
22162
+ * Description
22163
+ */
22164
+
22211
22165
  function shallowEqual(actual, expected) {
22212
22166
  var keys = Object.keys(expected);
22213
22167
 
@@ -22222,6 +22176,10 @@ function shallowEqual(actual, expected) {
22222
22176
  return true;
22223
22177
  }
22224
22178
 
22179
+ /**
22180
+ * Description
22181
+ */
22182
+
22225
22183
  function appendToMemberExpression(member, append, computed) {
22226
22184
  member.object = t.memberExpression(member.object, member.property, member.computed);
22227
22185
  member.property = append;
@@ -22229,17 +22187,29 @@ function appendToMemberExpression(member, append, computed) {
22229
22187
  return member;
22230
22188
  }
22231
22189
 
22190
+ /**
22191
+ * Description
22192
+ */
22193
+
22232
22194
  function prependToMemberExpression(member, append) {
22233
22195
  member.object = t.memberExpression(append, member.object);
22234
22196
  return member;
22235
22197
  }
22236
22198
 
22199
+ /**
22200
+ * Description
22201
+ */
22202
+
22237
22203
  function ensureBlock(node) {
22238
22204
  var key = arguments[1] === undefined ? "body" : arguments[1];
22239
22205
 
22240
22206
  return node[key] = t.toBlock(node[key], node);
22241
22207
  }
22242
22208
 
22209
+ /**
22210
+ * Description
22211
+ */
22212
+
22243
22213
  function clone(node) {
22244
22214
  var newNode = {};
22245
22215
  for (var key in node) {
@@ -22249,6 +22219,10 @@ function clone(node) {
22249
22219
  return newNode;
22250
22220
  }
22251
22221
 
22222
+ /**
22223
+ * Description
22224
+ */
22225
+
22252
22226
  function cloneDeep(node) {
22253
22227
  var newNode = {};
22254
22228
 
@@ -22271,6 +22245,14 @@ function cloneDeep(node) {
22271
22245
  return newNode;
22272
22246
  }
22273
22247
 
22248
+ /**
22249
+ * Build a function that when called will return whether or not the
22250
+ * input `node` `MemberExpression` matches the input `match`.
22251
+ *
22252
+ * For example, given the match `React.createClass` it would match the
22253
+ * parsed nodes of `React.createClass` and `React["createClass"]`.
22254
+ */
22255
+
22274
22256
  function buildMatchMemberExpression(match, allowPartial) {
22275
22257
  var parts = match.split(".");
22276
22258
 
@@ -22318,6 +22300,10 @@ function buildMatchMemberExpression(match, allowPartial) {
22318
22300
  };
22319
22301
  }
22320
22302
 
22303
+ /**
22304
+ * Description
22305
+ */
22306
+
22321
22307
  function removeComments(child) {
22322
22308
  var _arr3 = COMMENT_KEYS;
22323
22309
 
@@ -22328,6 +22314,10 @@ function removeComments(child) {
22328
22314
  return child;
22329
22315
  }
22330
22316
 
22317
+ /**
22318
+ * Description
22319
+ */
22320
+
22331
22321
  function inheritsComments(child, parent) {
22332
22322
  if (child && parent) {
22333
22323
  var _arr4 = COMMENT_KEYS;
@@ -22340,6 +22330,10 @@ function inheritsComments(child, parent) {
22340
22330
  return child;
22341
22331
  }
22342
22332
 
22333
+ /**
22334
+ * Description
22335
+ */
22336
+
22343
22337
  function inherits(child, parent) {
22344
22338
  if (!child || !parent) return child;
22345
22339
 
@@ -22363,22 +22357,11 @@ exports.__esModule = true;
22363
22357
  (0, _lodashObjectAssign2["default"])(t, require("./retrievers"));
22364
22358
  (0, _lodashObjectAssign2["default"])(t, require("./validators"));
22365
22359
  (0, _lodashObjectAssign2["default"])(t, require("./converters"));
22366
- },{"./alias-keys":166,"./builder-keys":167,"./converters":168,"./retrievers":170,"./validators":171,"./visitor-keys":172,"lodash/array/compact":333,"lodash/array/uniq":337,"lodash/collection/each":339,"lodash/object/assign":436,"to-fast-properties":515}],170:[function(require,module,exports){
22360
+ },{"./alias-keys":166,"./builder-keys":167,"./converters":168,"./retrievers":170,"./validators":171,"./visitor-keys":172,"lodash/array/compact":334,"lodash/array/uniq":338,"lodash/collection/each":340,"lodash/object/assign":437,"to-fast-properties":517}],170:[function(require,module,exports){
22367
22361
  "use strict";
22368
22362
 
22369
22363
  exports.__esModule = true;
22370
-
22371
- /**
22372
- * Return a list of binding identifiers associated with
22373
- * the input `node`.
22374
- */
22375
-
22376
22364
  exports.getBindingIdentifiers = getBindingIdentifiers;
22377
-
22378
- /**
22379
- * Description
22380
- */
22381
-
22382
22365
  exports.getLastStatements = getLastStatements;
22383
22366
 
22384
22367
  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; } }
@@ -22393,6 +22376,11 @@ var _index = require("./index");
22393
22376
 
22394
22377
  var t = _interopRequireWildcard(_index);
22395
22378
 
22379
+ /**
22380
+ * Return a list of binding identifiers associated with
22381
+ * the input `node`.
22382
+ */
22383
+
22396
22384
  function getBindingIdentifiers(node) {
22397
22385
  var search = [].concat(node);
22398
22386
  var ids = (0, _helpersObject2["default"])();
@@ -22446,6 +22434,11 @@ getBindingIdentifiers.keys = {
22446
22434
  ArrayPattern: ["elements"],
22447
22435
  ObjectPattern: ["properties"]
22448
22436
  };
22437
+
22438
+ /**
22439
+ * Description
22440
+ */
22441
+
22449
22442
  function getLastStatements(node) {
22450
22443
  var nodes = [];
22451
22444
 
@@ -22470,60 +22463,14 @@ function getLastStatements(node) {
22470
22463
  "use strict";
22471
22464
 
22472
22465
  exports.__esModule = true;
22473
-
22474
- /**
22475
- * Check if the input `node` is a reference to a bound variable.
22476
- */
22477
-
22478
22466
  exports.isReferenced = isReferenced;
22479
-
22480
- /**
22481
- * Check if the input `node` is an `Identifier` and `isReferenced`.
22482
- */
22483
-
22484
22467
  exports.isReferencedIdentifier = isReferencedIdentifier;
22485
-
22486
- /**
22487
- * Check if the input `name` is a valid identifier name
22488
- * and isn't a reserved word.
22489
- */
22490
-
22491
22468
  exports.isValidIdentifier = isValidIdentifier;
22492
-
22493
- /**
22494
- * Description
22495
- */
22496
-
22497
22469
  exports.isLet = isLet;
22498
-
22499
- /**
22500
- * Description
22501
- */
22502
-
22503
22470
  exports.isBlockScoped = isBlockScoped;
22504
-
22505
- /**
22506
- * Description
22507
- */
22508
-
22509
22471
  exports.isVar = isVar;
22510
-
22511
- /**
22512
- * Description
22513
- */
22514
-
22515
22472
  exports.isSpecifierDefault = isSpecifierDefault;
22516
-
22517
- /**
22518
- * Description
22519
- */
22520
-
22521
22473
  exports.isScope = isScope;
22522
-
22523
- /**
22524
- * Description
22525
- */
22526
-
22527
22474
  exports.isImmutable = isImmutable;
22528
22475
 
22529
22476
  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; } }
@@ -22538,6 +22485,10 @@ var _index = require("./index");
22538
22485
 
22539
22486
  var t = _interopRequireWildcard(_index);
22540
22487
 
22488
+ /**
22489
+ * Check if the input `node` is a reference to a bound variable.
22490
+ */
22491
+
22541
22492
  function isReferenced(node, parent) {
22542
22493
  switch (parent.type) {
22543
22494
  // yes: PARENT[NODE]
@@ -22651,10 +22602,19 @@ function isReferenced(node, parent) {
22651
22602
  return true;
22652
22603
  }
22653
22604
 
22605
+ /**
22606
+ * Check if the input `node` is an `Identifier` and `isReferenced`.
22607
+ */
22608
+
22654
22609
  function isReferencedIdentifier(node, parent, opts) {
22655
22610
  return (t.isIdentifier(node, opts) || t.isJSXIdentifier(node, opts)) && t.isReferenced(node, parent);
22656
22611
  }
22657
22612
 
22613
+ /**
22614
+ * Check if the input `name` is a valid identifier name
22615
+ * and isn't a reserved word.
22616
+ */
22617
+
22658
22618
  function isValidIdentifier(name) {
22659
22619
  if (typeof name !== "string" || _esutils2["default"].keyword.isReservedWordES6(name, true)) {
22660
22620
  return false;
@@ -22663,22 +22623,42 @@ function isValidIdentifier(name) {
22663
22623
  }
22664
22624
  }
22665
22625
 
22626
+ /**
22627
+ * Description
22628
+ */
22629
+
22666
22630
  function isLet(node) {
22667
22631
  return t.isVariableDeclaration(node) && (node.kind !== "var" || node._let);
22668
22632
  }
22669
22633
 
22634
+ /**
22635
+ * Description
22636
+ */
22637
+
22670
22638
  function isBlockScoped(node) {
22671
22639
  return t.isFunctionDeclaration(node) || t.isClassDeclaration(node) || t.isLet(node);
22672
22640
  }
22673
22641
 
22642
+ /**
22643
+ * Description
22644
+ */
22645
+
22674
22646
  function isVar(node) {
22675
22647
  return t.isVariableDeclaration(node, { kind: "var" }) && !node._let;
22676
22648
  }
22677
22649
 
22650
+ /**
22651
+ * Description
22652
+ */
22653
+
22678
22654
  function isSpecifierDefault(specifier) {
22679
22655
  return t.isImportDefaultSpecifier(specifier) || t.isExportDefaultSpecifier(specifier) || t.isIdentifier(specifier.imported || specifier.exported, { name: "default" });
22680
22656
  }
22681
22657
 
22658
+ /**
22659
+ * Description
22660
+ */
22661
+
22682
22662
  function isScope(node, parent) {
22683
22663
  if (t.isBlockStatement(node) && t.isFunction(parent, { body: node })) {
22684
22664
  return false;
@@ -22687,6 +22667,10 @@ function isScope(node, parent) {
22687
22667
  return t.isScopable(node);
22688
22668
  }
22689
22669
 
22670
+ /**
22671
+ * Description
22672
+ */
22673
+
22690
22674
  function isImmutable(node) {
22691
22675
  if (t.isType(node.type, "Immutable")) return true;
22692
22676
 
@@ -22848,9 +22832,6 @@ exports.regexify = regexify;
22848
22832
  exports.arrayify = arrayify;
22849
22833
  exports.booleanify = booleanify;
22850
22834
  exports.shouldIgnore = shouldIgnore;
22851
-
22852
- //
22853
-
22854
22835
  exports.template = template;
22855
22836
  exports.parseTemplate = parseTemplate;
22856
22837
 
@@ -23059,6 +23040,9 @@ var templateVisitor = {
23059
23040
  }
23060
23041
  }
23061
23042
  };
23043
+
23044
+ //
23045
+
23062
23046
  function template(name, nodes, keepExpression) {
23063
23047
  var ast = exports.templates[name];
23064
23048
  if (!ast) throw new ReferenceError("unknown template " + name);
@@ -23122,7 +23106,7 @@ try {
23122
23106
  exports.templates = loadTemplates();
23123
23107
  }
23124
23108
  }).call(this,require('_process'),"/lib/babel")
23125
- },{"../../templates.json":518,"./helpers/parse":46,"./messages":47,"./patch":48,"./traversal":157,"./types":169,"_process":200,"fs":189,"lodash/collection/contains":338,"lodash/lang/cloneDeep":422,"lodash/lang/isBoolean":425,"lodash/lang/isEmpty":426,"lodash/lang/isRegExp":432,"lodash/lang/isString":433,"lodash/object/has":439,"lodash/string/escapeRegExp":445,"lodash/string/startsWith":446,"minimatch":450,"module":189,"path":199,"slash":502,"util":216}],174:[function(require,module,exports){
23109
+ },{"../../templates.json":520,"./helpers/parse":46,"./messages":47,"./patch":48,"./traversal":157,"./types":169,"_process":200,"fs":189,"lodash/collection/contains":339,"lodash/lang/cloneDeep":423,"lodash/lang/isBoolean":426,"lodash/lang/isEmpty":427,"lodash/lang/isRegExp":433,"lodash/lang/isString":434,"lodash/object/has":440,"lodash/string/escapeRegExp":446,"lodash/string/startsWith":447,"minimatch":451,"module":189,"path":199,"slash":504,"util":216}],174:[function(require,module,exports){
23126
23110
  'use strict';
23127
23111
 
23128
23112
  module.exports = function(acorn) {
@@ -36808,7 +36792,7 @@ module.exports = function (str) {
36808
36792
  };
36809
36793
  };
36810
36794
 
36811
- },{"repeating":499}],316:[function(require,module,exports){
36795
+ },{"repeating":500}],316:[function(require,module,exports){
36812
36796
  /* vim: set sw=4 sts=4 : */
36813
36797
  (function () {
36814
36798
 
@@ -41877,18 +41861,21 @@ module.exports = Number.isInteger || function(val) {
41877
41861
  parseInt(val, 10) === val;
41878
41862
  };
41879
41863
 
41880
- },{"is-finite":327,"is-nan":328}],327:[function(require,module,exports){
41864
+ },{"is-finite":327,"is-nan":329}],327:[function(require,module,exports){
41881
41865
  'use strict';
41866
+ var numberIsNan = require('number-is-nan');
41867
+
41882
41868
  module.exports = Number.isFinite || function (val) {
41883
- // Number.isNaN() => val !== val
41884
- if (typeof val !== 'number' || val !== val || val === Infinity || val === -Infinity) {
41885
- return false;
41886
- }
41869
+ return !(typeof val !== 'number' || numberIsNan(val) || val === Infinity || val === -Infinity);
41870
+ };
41887
41871
 
41888
- return true;
41872
+ },{"number-is-nan":328}],328:[function(require,module,exports){
41873
+ 'use strict';
41874
+ module.exports = Number.isNaN || function (x) {
41875
+ return x !== x;
41889
41876
  };
41890
41877
 
41891
- },{}],328:[function(require,module,exports){
41878
+ },{}],329:[function(require,module,exports){
41892
41879
  "use strict";
41893
41880
 
41894
41881
  /* https://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.isnan */
@@ -41898,7 +41885,7 @@ module.exports = function isNaN(value) {
41898
41885
  };
41899
41886
 
41900
41887
 
41901
- },{}],329:[function(require,module,exports){
41888
+ },{}],330:[function(require,module,exports){
41902
41889
  // Copyright 2014, 2015 Simon Lydell
41903
41890
  // X11 (“MIT”) Licensed. (See LICENSE.)
41904
41891
 
@@ -41919,7 +41906,7 @@ module.exports.matchToToken = function(match) {
41919
41906
  return token
41920
41907
  }
41921
41908
 
41922
- },{}],330:[function(require,module,exports){
41909
+ },{}],331:[function(require,module,exports){
41923
41910
  'use strict';
41924
41911
  var arr = [];
41925
41912
  var charCodeCache = [];
@@ -41967,7 +41954,7 @@ module.exports = function (a, b) {
41967
41954
  return ret;
41968
41955
  };
41969
41956
 
41970
- },{}],331:[function(require,module,exports){
41957
+ },{}],332:[function(require,module,exports){
41971
41958
  // Copyright 2014, 2015 Simon Lydell
41972
41959
  // X11 (“MIT”) Licensed. (See LICENSE.)
41973
41960
 
@@ -42001,7 +41988,7 @@ function lineNumbers(code, options) {
42001
41988
 
42002
41989
  module.exports = lineNumbers
42003
41990
 
42004
- },{"left-pad":332}],332:[function(require,module,exports){
41991
+ },{"left-pad":333}],333:[function(require,module,exports){
42005
41992
  module.exports = leftpad;
42006
41993
 
42007
41994
  function leftpad (str, len, ch) {
@@ -42020,7 +42007,7 @@ function leftpad (str, len, ch) {
42020
42007
  return str;
42021
42008
  }
42022
42009
 
42023
- },{}],333:[function(require,module,exports){
42010
+ },{}],334:[function(require,module,exports){
42024
42011
  /**
42025
42012
  * Creates an array with all falsey values removed. The values `false`, `null`,
42026
42013
  * `0`, `""`, `undefined`, and `NaN` are falsey.
@@ -42052,7 +42039,7 @@ function compact(array) {
42052
42039
 
42053
42040
  module.exports = compact;
42054
42041
 
42055
- },{}],334:[function(require,module,exports){
42042
+ },{}],335:[function(require,module,exports){
42056
42043
  var baseFlatten = require('../internal/baseFlatten'),
42057
42044
  isIterateeCall = require('../internal/isIterateeCall');
42058
42045
 
@@ -42086,7 +42073,7 @@ function flatten(array, isDeep, guard) {
42086
42073
 
42087
42074
  module.exports = flatten;
42088
42075
 
42089
- },{"../internal/baseFlatten":362,"../internal/isIterateeCall":411}],335:[function(require,module,exports){
42076
+ },{"../internal/baseFlatten":363,"../internal/isIterateeCall":412}],336:[function(require,module,exports){
42090
42077
  /**
42091
42078
  * Gets the last element of `array`.
42092
42079
  *
@@ -42107,7 +42094,7 @@ function last(array) {
42107
42094
 
42108
42095
  module.exports = last;
42109
42096
 
42110
- },{}],336:[function(require,module,exports){
42097
+ },{}],337:[function(require,module,exports){
42111
42098
  var baseIndexOf = require('../internal/baseIndexOf');
42112
42099
 
42113
42100
  /** Used for native method references. */
@@ -42161,7 +42148,7 @@ function pull() {
42161
42148
 
42162
42149
  module.exports = pull;
42163
42150
 
42164
- },{"../internal/baseIndexOf":369}],337:[function(require,module,exports){
42151
+ },{"../internal/baseIndexOf":370}],338:[function(require,module,exports){
42165
42152
  var baseCallback = require('../internal/baseCallback'),
42166
42153
  baseUniq = require('../internal/baseUniq'),
42167
42154
  isIterateeCall = require('../internal/isIterateeCall'),
@@ -42234,13 +42221,13 @@ function uniq(array, isSorted, iteratee, thisArg) {
42234
42221
 
42235
42222
  module.exports = uniq;
42236
42223
 
42237
- },{"../internal/baseCallback":356,"../internal/baseUniq":386,"../internal/isIterateeCall":411,"../internal/sortedUniq":418}],338:[function(require,module,exports){
42224
+ },{"../internal/baseCallback":357,"../internal/baseUniq":387,"../internal/isIterateeCall":412,"../internal/sortedUniq":419}],339:[function(require,module,exports){
42238
42225
  module.exports = require('./includes');
42239
42226
 
42240
- },{"./includes":341}],339:[function(require,module,exports){
42227
+ },{"./includes":342}],340:[function(require,module,exports){
42241
42228
  module.exports = require('./forEach');
42242
42229
 
42243
- },{"./forEach":340}],340:[function(require,module,exports){
42230
+ },{"./forEach":341}],341:[function(require,module,exports){
42244
42231
  var arrayEach = require('../internal/arrayEach'),
42245
42232
  baseEach = require('../internal/baseEach'),
42246
42233
  createForEach = require('../internal/createForEach');
@@ -42279,7 +42266,7 @@ var forEach = createForEach(arrayEach, baseEach);
42279
42266
 
42280
42267
  module.exports = forEach;
42281
42268
 
42282
- },{"../internal/arrayEach":349,"../internal/baseEach":360,"../internal/createForEach":397}],341:[function(require,module,exports){
42269
+ },{"../internal/arrayEach":350,"../internal/baseEach":361,"../internal/createForEach":398}],342:[function(require,module,exports){
42283
42270
  var baseIndexOf = require('../internal/baseIndexOf'),
42284
42271
  getLength = require('../internal/getLength'),
42285
42272
  isArray = require('../lang/isArray'),
@@ -42341,7 +42328,7 @@ function includes(collection, target, fromIndex, guard) {
42341
42328
 
42342
42329
  module.exports = includes;
42343
42330
 
42344
- },{"../internal/baseIndexOf":369,"../internal/getLength":402,"../internal/isIterateeCall":411,"../internal/isLength":413,"../lang/isArray":424,"../lang/isString":433,"../object/values":444}],342:[function(require,module,exports){
42331
+ },{"../internal/baseIndexOf":370,"../internal/getLength":403,"../internal/isIterateeCall":412,"../internal/isLength":414,"../lang/isArray":425,"../lang/isString":434,"../object/values":445}],343:[function(require,module,exports){
42345
42332
  var arrayMap = require('../internal/arrayMap'),
42346
42333
  baseCallback = require('../internal/baseCallback'),
42347
42334
  baseMap = require('../internal/baseMap'),
@@ -42411,7 +42398,7 @@ function map(collection, iteratee, thisArg) {
42411
42398
 
42412
42399
  module.exports = map;
42413
42400
 
42414
- },{"../internal/arrayMap":350,"../internal/baseCallback":356,"../internal/baseMap":374,"../lang/isArray":424}],343:[function(require,module,exports){
42401
+ },{"../internal/arrayMap":351,"../internal/baseCallback":357,"../internal/baseMap":375,"../lang/isArray":425}],344:[function(require,module,exports){
42415
42402
  var arrayReduceRight = require('../internal/arrayReduceRight'),
42416
42403
  baseEachRight = require('../internal/baseEachRight'),
42417
42404
  createReduce = require('../internal/createReduce');
@@ -42442,7 +42429,7 @@ var reduceRight = createReduce(arrayReduceRight, baseEachRight);
42442
42429
 
42443
42430
  module.exports = reduceRight;
42444
42431
 
42445
- },{"../internal/arrayReduceRight":351,"../internal/baseEachRight":361,"../internal/createReduce":398}],344:[function(require,module,exports){
42432
+ },{"../internal/arrayReduceRight":352,"../internal/baseEachRight":362,"../internal/createReduce":399}],345:[function(require,module,exports){
42446
42433
  var arraySome = require('../internal/arraySome'),
42447
42434
  baseCallback = require('../internal/baseCallback'),
42448
42435
  baseSome = require('../internal/baseSome'),
@@ -42511,7 +42498,7 @@ function some(collection, predicate, thisArg) {
42511
42498
 
42512
42499
  module.exports = some;
42513
42500
 
42514
- },{"../internal/arraySome":352,"../internal/baseCallback":356,"../internal/baseSome":383,"../internal/isIterateeCall":411,"../lang/isArray":424}],345:[function(require,module,exports){
42501
+ },{"../internal/arraySome":353,"../internal/baseCallback":357,"../internal/baseSome":384,"../internal/isIterateeCall":412,"../lang/isArray":425}],346:[function(require,module,exports){
42515
42502
  var baseCallback = require('../internal/baseCallback'),
42516
42503
  baseMap = require('../internal/baseMap'),
42517
42504
  baseSortBy = require('../internal/baseSortBy'),
@@ -42584,7 +42571,7 @@ function sortBy(collection, iteratee, thisArg) {
42584
42571
 
42585
42572
  module.exports = sortBy;
42586
42573
 
42587
- },{"../internal/baseCallback":356,"../internal/baseMap":374,"../internal/baseSortBy":384,"../internal/compareAscending":392,"../internal/isIterateeCall":411}],346:[function(require,module,exports){
42574
+ },{"../internal/baseCallback":357,"../internal/baseMap":375,"../internal/baseSortBy":385,"../internal/compareAscending":393,"../internal/isIterateeCall":412}],347:[function(require,module,exports){
42588
42575
  /** Used as the `TypeError` message for "Functions" methods. */
42589
42576
  var FUNC_ERROR_TEXT = 'Expected a function';
42590
42577
 
@@ -42644,7 +42631,7 @@ function restParam(func, start) {
42644
42631
 
42645
42632
  module.exports = restParam;
42646
42633
 
42647
- },{}],347:[function(require,module,exports){
42634
+ },{}],348:[function(require,module,exports){
42648
42635
  (function (global){
42649
42636
  var cachePush = require('./cachePush'),
42650
42637
  getNative = require('./getNative');
@@ -42677,7 +42664,7 @@ SetCache.prototype.push = cachePush;
42677
42664
  module.exports = SetCache;
42678
42665
 
42679
42666
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
42680
- },{"./cachePush":391,"./getNative":404}],348:[function(require,module,exports){
42667
+ },{"./cachePush":392,"./getNative":405}],349:[function(require,module,exports){
42681
42668
  /**
42682
42669
  * Copies the values of `source` to `array`.
42683
42670
  *
@@ -42699,7 +42686,7 @@ function arrayCopy(source, array) {
42699
42686
 
42700
42687
  module.exports = arrayCopy;
42701
42688
 
42702
- },{}],349:[function(require,module,exports){
42689
+ },{}],350:[function(require,module,exports){
42703
42690
  /**
42704
42691
  * A specialized version of `_.forEach` for arrays without support for callback
42705
42692
  * shorthands and `this` binding.
@@ -42723,7 +42710,7 @@ function arrayEach(array, iteratee) {
42723
42710
 
42724
42711
  module.exports = arrayEach;
42725
42712
 
42726
- },{}],350:[function(require,module,exports){
42713
+ },{}],351:[function(require,module,exports){
42727
42714
  /**
42728
42715
  * A specialized version of `_.map` for arrays without support for callback
42729
42716
  * shorthands and `this` binding.
@@ -42746,7 +42733,7 @@ function arrayMap(array, iteratee) {
42746
42733
 
42747
42734
  module.exports = arrayMap;
42748
42735
 
42749
- },{}],351:[function(require,module,exports){
42736
+ },{}],352:[function(require,module,exports){
42750
42737
  /**
42751
42738
  * A specialized version of `_.reduceRight` for arrays without support for
42752
42739
  * callback shorthands and `this` binding.
@@ -42772,7 +42759,7 @@ function arrayReduceRight(array, iteratee, accumulator, initFromArray) {
42772
42759
 
42773
42760
  module.exports = arrayReduceRight;
42774
42761
 
42775
- },{}],352:[function(require,module,exports){
42762
+ },{}],353:[function(require,module,exports){
42776
42763
  /**
42777
42764
  * A specialized version of `_.some` for arrays without support for callback
42778
42765
  * shorthands and `this` binding.
@@ -42797,7 +42784,7 @@ function arraySome(array, predicate) {
42797
42784
 
42798
42785
  module.exports = arraySome;
42799
42786
 
42800
- },{}],353:[function(require,module,exports){
42787
+ },{}],354:[function(require,module,exports){
42801
42788
  /**
42802
42789
  * Used by `_.defaults` to customize its `_.assign` use.
42803
42790
  *
@@ -42812,7 +42799,7 @@ function assignDefaults(objectValue, sourceValue) {
42812
42799
 
42813
42800
  module.exports = assignDefaults;
42814
42801
 
42815
- },{}],354:[function(require,module,exports){
42802
+ },{}],355:[function(require,module,exports){
42816
42803
  var keys = require('../object/keys');
42817
42804
 
42818
42805
  /**
@@ -42846,7 +42833,7 @@ function assignWith(object, source, customizer) {
42846
42833
 
42847
42834
  module.exports = assignWith;
42848
42835
 
42849
- },{"../object/keys":440}],355:[function(require,module,exports){
42836
+ },{"../object/keys":441}],356:[function(require,module,exports){
42850
42837
  var baseCopy = require('./baseCopy'),
42851
42838
  keys = require('../object/keys');
42852
42839
 
@@ -42867,7 +42854,7 @@ function baseAssign(object, source) {
42867
42854
 
42868
42855
  module.exports = baseAssign;
42869
42856
 
42870
- },{"../object/keys":440,"./baseCopy":359}],356:[function(require,module,exports){
42857
+ },{"../object/keys":441,"./baseCopy":360}],357:[function(require,module,exports){
42871
42858
  var baseMatches = require('./baseMatches'),
42872
42859
  baseMatchesProperty = require('./baseMatchesProperty'),
42873
42860
  bindCallback = require('./bindCallback'),
@@ -42904,7 +42891,7 @@ function baseCallback(func, thisArg, argCount) {
42904
42891
 
42905
42892
  module.exports = baseCallback;
42906
42893
 
42907
- },{"../utility/identity":448,"../utility/property":449,"./baseMatches":375,"./baseMatchesProperty":376,"./bindCallback":388}],357:[function(require,module,exports){
42894
+ },{"../utility/identity":449,"../utility/property":450,"./baseMatches":376,"./baseMatchesProperty":377,"./bindCallback":389}],358:[function(require,module,exports){
42908
42895
  var arrayCopy = require('./arrayCopy'),
42909
42896
  arrayEach = require('./arrayEach'),
42910
42897
  baseAssign = require('./baseAssign'),
@@ -43034,7 +43021,7 @@ function baseClone(value, isDeep, customizer, key, object, stackA, stackB) {
43034
43021
 
43035
43022
  module.exports = baseClone;
43036
43023
 
43037
- },{"../lang/isArray":424,"../lang/isObject":430,"./arrayCopy":348,"./arrayEach":349,"./baseAssign":355,"./baseForOwn":365,"./initCloneArray":406,"./initCloneByTag":407,"./initCloneObject":408}],358:[function(require,module,exports){
43024
+ },{"../lang/isArray":425,"../lang/isObject":431,"./arrayCopy":349,"./arrayEach":350,"./baseAssign":356,"./baseForOwn":366,"./initCloneArray":407,"./initCloneByTag":408,"./initCloneObject":409}],359:[function(require,module,exports){
43038
43025
  /**
43039
43026
  * The base implementation of `compareAscending` which compares values and
43040
43027
  * sorts them in ascending order without guaranteeing a stable sort.
@@ -43070,7 +43057,7 @@ function baseCompareAscending(value, other) {
43070
43057
 
43071
43058
  module.exports = baseCompareAscending;
43072
43059
 
43073
- },{}],359:[function(require,module,exports){
43060
+ },{}],360:[function(require,module,exports){
43074
43061
  /**
43075
43062
  * Copies properties of `source` to `object`.
43076
43063
  *
@@ -43095,7 +43082,7 @@ function baseCopy(source, props, object) {
43095
43082
 
43096
43083
  module.exports = baseCopy;
43097
43084
 
43098
- },{}],360:[function(require,module,exports){
43085
+ },{}],361:[function(require,module,exports){
43099
43086
  var baseForOwn = require('./baseForOwn'),
43100
43087
  createBaseEach = require('./createBaseEach');
43101
43088
 
@@ -43112,7 +43099,7 @@ var baseEach = createBaseEach(baseForOwn);
43112
43099
 
43113
43100
  module.exports = baseEach;
43114
43101
 
43115
- },{"./baseForOwn":365,"./createBaseEach":394}],361:[function(require,module,exports){
43102
+ },{"./baseForOwn":366,"./createBaseEach":395}],362:[function(require,module,exports){
43116
43103
  var baseForOwnRight = require('./baseForOwnRight'),
43117
43104
  createBaseEach = require('./createBaseEach');
43118
43105
 
@@ -43129,7 +43116,7 @@ var baseEachRight = createBaseEach(baseForOwnRight, true);
43129
43116
 
43130
43117
  module.exports = baseEachRight;
43131
43118
 
43132
- },{"./baseForOwnRight":366,"./createBaseEach":394}],362:[function(require,module,exports){
43119
+ },{"./baseForOwnRight":367,"./createBaseEach":395}],363:[function(require,module,exports){
43133
43120
  var isArguments = require('../lang/isArguments'),
43134
43121
  isArray = require('../lang/isArray'),
43135
43122
  isArrayLike = require('./isArrayLike'),
@@ -43174,7 +43161,7 @@ function baseFlatten(array, isDeep, isStrict) {
43174
43161
 
43175
43162
  module.exports = baseFlatten;
43176
43163
 
43177
- },{"../lang/isArguments":423,"../lang/isArray":424,"./isArrayLike":409,"./isObjectLike":414}],363:[function(require,module,exports){
43164
+ },{"../lang/isArguments":424,"../lang/isArray":425,"./isArrayLike":410,"./isObjectLike":415}],364:[function(require,module,exports){
43178
43165
  var createBaseFor = require('./createBaseFor');
43179
43166
 
43180
43167
  /**
@@ -43193,7 +43180,7 @@ var baseFor = createBaseFor();
43193
43180
 
43194
43181
  module.exports = baseFor;
43195
43182
 
43196
- },{"./createBaseFor":395}],364:[function(require,module,exports){
43183
+ },{"./createBaseFor":396}],365:[function(require,module,exports){
43197
43184
  var baseFor = require('./baseFor'),
43198
43185
  keysIn = require('../object/keysIn');
43199
43186
 
@@ -43212,7 +43199,7 @@ function baseForIn(object, iteratee) {
43212
43199
 
43213
43200
  module.exports = baseForIn;
43214
43201
 
43215
- },{"../object/keysIn":441,"./baseFor":363}],365:[function(require,module,exports){
43202
+ },{"../object/keysIn":442,"./baseFor":364}],366:[function(require,module,exports){
43216
43203
  var baseFor = require('./baseFor'),
43217
43204
  keys = require('../object/keys');
43218
43205
 
@@ -43231,7 +43218,7 @@ function baseForOwn(object, iteratee) {
43231
43218
 
43232
43219
  module.exports = baseForOwn;
43233
43220
 
43234
- },{"../object/keys":440,"./baseFor":363}],366:[function(require,module,exports){
43221
+ },{"../object/keys":441,"./baseFor":364}],367:[function(require,module,exports){
43235
43222
  var baseForRight = require('./baseForRight'),
43236
43223
  keys = require('../object/keys');
43237
43224
 
@@ -43250,7 +43237,7 @@ function baseForOwnRight(object, iteratee) {
43250
43237
 
43251
43238
  module.exports = baseForOwnRight;
43252
43239
 
43253
- },{"../object/keys":440,"./baseForRight":367}],367:[function(require,module,exports){
43240
+ },{"../object/keys":441,"./baseForRight":368}],368:[function(require,module,exports){
43254
43241
  var createBaseFor = require('./createBaseFor');
43255
43242
 
43256
43243
  /**
@@ -43267,7 +43254,7 @@ var baseForRight = createBaseFor(true);
43267
43254
 
43268
43255
  module.exports = baseForRight;
43269
43256
 
43270
- },{"./createBaseFor":395}],368:[function(require,module,exports){
43257
+ },{"./createBaseFor":396}],369:[function(require,module,exports){
43271
43258
  var toObject = require('./toObject');
43272
43259
 
43273
43260
  /**
@@ -43298,7 +43285,7 @@ function baseGet(object, path, pathKey) {
43298
43285
 
43299
43286
  module.exports = baseGet;
43300
43287
 
43301
- },{"./toObject":419}],369:[function(require,module,exports){
43288
+ },{"./toObject":420}],370:[function(require,module,exports){
43302
43289
  var indexOfNaN = require('./indexOfNaN');
43303
43290
 
43304
43291
  /**
@@ -43327,7 +43314,7 @@ function baseIndexOf(array, value, fromIndex) {
43327
43314
 
43328
43315
  module.exports = baseIndexOf;
43329
43316
 
43330
- },{"./indexOfNaN":405}],370:[function(require,module,exports){
43317
+ },{"./indexOfNaN":406}],371:[function(require,module,exports){
43331
43318
  var baseIsEqualDeep = require('./baseIsEqualDeep'),
43332
43319
  isObject = require('../lang/isObject');
43333
43320
 
@@ -43356,7 +43343,7 @@ function baseIsEqual(value, other, customizer, isLoose, stackA, stackB) {
43356
43343
 
43357
43344
  module.exports = baseIsEqual;
43358
43345
 
43359
- },{"../lang/isObject":430,"./baseIsEqualDeep":371}],371:[function(require,module,exports){
43346
+ },{"../lang/isObject":431,"./baseIsEqualDeep":372}],372:[function(require,module,exports){
43360
43347
  var equalArrays = require('./equalArrays'),
43361
43348
  equalByTag = require('./equalByTag'),
43362
43349
  equalObjects = require('./equalObjects'),
@@ -43460,7 +43447,7 @@ function baseIsEqualDeep(object, other, equalFunc, customizer, isLoose, stackA,
43460
43447
 
43461
43448
  module.exports = baseIsEqualDeep;
43462
43449
 
43463
- },{"../lang/isArray":424,"../lang/isTypedArray":434,"./equalArrays":399,"./equalByTag":400,"./equalObjects":401}],372:[function(require,module,exports){
43450
+ },{"../lang/isArray":425,"../lang/isTypedArray":435,"./equalArrays":400,"./equalByTag":401,"./equalObjects":402}],373:[function(require,module,exports){
43464
43451
  /**
43465
43452
  * The base implementation of `_.isFunction` without support for environments
43466
43453
  * with incorrect `typeof` results.
@@ -43477,7 +43464,7 @@ function baseIsFunction(value) {
43477
43464
 
43478
43465
  module.exports = baseIsFunction;
43479
43466
 
43480
- },{}],373:[function(require,module,exports){
43467
+ },{}],374:[function(require,module,exports){
43481
43468
  var baseIsEqual = require('./baseIsEqual'),
43482
43469
  toObject = require('./toObject');
43483
43470
 
@@ -43531,7 +43518,7 @@ function baseIsMatch(object, matchData, customizer) {
43531
43518
 
43532
43519
  module.exports = baseIsMatch;
43533
43520
 
43534
- },{"./baseIsEqual":370,"./toObject":419}],374:[function(require,module,exports){
43521
+ },{"./baseIsEqual":371,"./toObject":420}],375:[function(require,module,exports){
43535
43522
  var baseEach = require('./baseEach'),
43536
43523
  isArrayLike = require('./isArrayLike');
43537
43524
 
@@ -43556,7 +43543,7 @@ function baseMap(collection, iteratee) {
43556
43543
 
43557
43544
  module.exports = baseMap;
43558
43545
 
43559
- },{"./baseEach":360,"./isArrayLike":409}],375:[function(require,module,exports){
43546
+ },{"./baseEach":361,"./isArrayLike":410}],376:[function(require,module,exports){
43560
43547
  var baseIsMatch = require('./baseIsMatch'),
43561
43548
  getMatchData = require('./getMatchData'),
43562
43549
  toObject = require('./toObject');
@@ -43588,7 +43575,7 @@ function baseMatches(source) {
43588
43575
 
43589
43576
  module.exports = baseMatches;
43590
43577
 
43591
- },{"./baseIsMatch":373,"./getMatchData":403,"./toObject":419}],376:[function(require,module,exports){
43578
+ },{"./baseIsMatch":374,"./getMatchData":404,"./toObject":420}],377:[function(require,module,exports){
43592
43579
  var baseGet = require('./baseGet'),
43593
43580
  baseIsEqual = require('./baseIsEqual'),
43594
43581
  baseSlice = require('./baseSlice'),
@@ -43636,7 +43623,7 @@ function baseMatchesProperty(path, srcValue) {
43636
43623
 
43637
43624
  module.exports = baseMatchesProperty;
43638
43625
 
43639
- },{"../array/last":335,"../lang/isArray":424,"./baseGet":368,"./baseIsEqual":370,"./baseSlice":382,"./isKey":412,"./isStrictComparable":415,"./toObject":419,"./toPath":420}],377:[function(require,module,exports){
43626
+ },{"../array/last":336,"../lang/isArray":425,"./baseGet":369,"./baseIsEqual":371,"./baseSlice":383,"./isKey":413,"./isStrictComparable":416,"./toObject":420,"./toPath":421}],378:[function(require,module,exports){
43640
43627
  var arrayEach = require('./arrayEach'),
43641
43628
  baseMergeDeep = require('./baseMergeDeep'),
43642
43629
  isArray = require('../lang/isArray'),
@@ -43694,7 +43681,7 @@ function baseMerge(object, source, customizer, stackA, stackB) {
43694
43681
 
43695
43682
  module.exports = baseMerge;
43696
43683
 
43697
- },{"../lang/isArray":424,"../lang/isObject":430,"../lang/isTypedArray":434,"../object/keys":440,"./arrayEach":349,"./baseMergeDeep":378,"./isArrayLike":409,"./isObjectLike":414}],378:[function(require,module,exports){
43684
+ },{"../lang/isArray":425,"../lang/isObject":431,"../lang/isTypedArray":435,"../object/keys":441,"./arrayEach":350,"./baseMergeDeep":379,"./isArrayLike":410,"./isObjectLike":415}],379:[function(require,module,exports){
43698
43685
  var arrayCopy = require('./arrayCopy'),
43699
43686
  isArguments = require('../lang/isArguments'),
43700
43687
  isArray = require('../lang/isArray'),
@@ -43763,7 +43750,7 @@ function baseMergeDeep(object, source, key, mergeFunc, customizer, stackA, stack
43763
43750
 
43764
43751
  module.exports = baseMergeDeep;
43765
43752
 
43766
- },{"../lang/isArguments":423,"../lang/isArray":424,"../lang/isPlainObject":431,"../lang/isTypedArray":434,"../lang/toPlainObject":435,"./arrayCopy":348,"./isArrayLike":409}],379:[function(require,module,exports){
43753
+ },{"../lang/isArguments":424,"../lang/isArray":425,"../lang/isPlainObject":432,"../lang/isTypedArray":435,"../lang/toPlainObject":436,"./arrayCopy":349,"./isArrayLike":410}],380:[function(require,module,exports){
43767
43754
  /**
43768
43755
  * The base implementation of `_.property` without support for deep paths.
43769
43756
  *
@@ -43779,7 +43766,7 @@ function baseProperty(key) {
43779
43766
 
43780
43767
  module.exports = baseProperty;
43781
43768
 
43782
- },{}],380:[function(require,module,exports){
43769
+ },{}],381:[function(require,module,exports){
43783
43770
  var baseGet = require('./baseGet'),
43784
43771
  toPath = require('./toPath');
43785
43772
 
@@ -43800,7 +43787,7 @@ function basePropertyDeep(path) {
43800
43787
 
43801
43788
  module.exports = basePropertyDeep;
43802
43789
 
43803
- },{"./baseGet":368,"./toPath":420}],381:[function(require,module,exports){
43790
+ },{"./baseGet":369,"./toPath":421}],382:[function(require,module,exports){
43804
43791
  /**
43805
43792
  * The base implementation of `_.reduce` and `_.reduceRight` without support
43806
43793
  * for callback shorthands and `this` binding, which iterates over `collection`
@@ -43826,7 +43813,7 @@ function baseReduce(collection, iteratee, accumulator, initFromCollection, eachF
43826
43813
 
43827
43814
  module.exports = baseReduce;
43828
43815
 
43829
- },{}],382:[function(require,module,exports){
43816
+ },{}],383:[function(require,module,exports){
43830
43817
  /**
43831
43818
  * The base implementation of `_.slice` without an iteratee call guard.
43832
43819
  *
@@ -43860,7 +43847,7 @@ function baseSlice(array, start, end) {
43860
43847
 
43861
43848
  module.exports = baseSlice;
43862
43849
 
43863
- },{}],383:[function(require,module,exports){
43850
+ },{}],384:[function(require,module,exports){
43864
43851
  var baseEach = require('./baseEach');
43865
43852
 
43866
43853
  /**
@@ -43885,7 +43872,7 @@ function baseSome(collection, predicate) {
43885
43872
 
43886
43873
  module.exports = baseSome;
43887
43874
 
43888
- },{"./baseEach":360}],384:[function(require,module,exports){
43875
+ },{"./baseEach":361}],385:[function(require,module,exports){
43889
43876
  /**
43890
43877
  * The base implementation of `_.sortBy` which uses `comparer` to define
43891
43878
  * the sort order of `array` and replaces criteria objects with their
@@ -43908,7 +43895,7 @@ function baseSortBy(array, comparer) {
43908
43895
 
43909
43896
  module.exports = baseSortBy;
43910
43897
 
43911
- },{}],385:[function(require,module,exports){
43898
+ },{}],386:[function(require,module,exports){
43912
43899
  /**
43913
43900
  * Converts `value` to a string if it's not one. An empty string is returned
43914
43901
  * for `null` or `undefined` values.
@@ -43926,7 +43913,7 @@ function baseToString(value) {
43926
43913
 
43927
43914
  module.exports = baseToString;
43928
43915
 
43929
- },{}],386:[function(require,module,exports){
43916
+ },{}],387:[function(require,module,exports){
43930
43917
  var baseIndexOf = require('./baseIndexOf'),
43931
43918
  cacheIndexOf = require('./cacheIndexOf'),
43932
43919
  createCache = require('./createCache');
@@ -43985,7 +43972,7 @@ function baseUniq(array, iteratee) {
43985
43972
 
43986
43973
  module.exports = baseUniq;
43987
43974
 
43988
- },{"./baseIndexOf":369,"./cacheIndexOf":390,"./createCache":396}],387:[function(require,module,exports){
43975
+ },{"./baseIndexOf":370,"./cacheIndexOf":391,"./createCache":397}],388:[function(require,module,exports){
43989
43976
  /**
43990
43977
  * The base implementation of `_.values` and `_.valuesIn` which creates an
43991
43978
  * array of `object` property values corresponding to the property names
@@ -44009,7 +43996,7 @@ function baseValues(object, props) {
44009
43996
 
44010
43997
  module.exports = baseValues;
44011
43998
 
44012
- },{}],388:[function(require,module,exports){
43999
+ },{}],389:[function(require,module,exports){
44013
44000
  var identity = require('../utility/identity');
44014
44001
 
44015
44002
  /**
@@ -44050,7 +44037,7 @@ function bindCallback(func, thisArg, argCount) {
44050
44037
 
44051
44038
  module.exports = bindCallback;
44052
44039
 
44053
- },{"../utility/identity":448}],389:[function(require,module,exports){
44040
+ },{"../utility/identity":449}],390:[function(require,module,exports){
44054
44041
  (function (global){
44055
44042
  var constant = require('../utility/constant'),
44056
44043
  getNative = require('./getNative');
@@ -44109,7 +44096,7 @@ if (!bufferSlice) {
44109
44096
  module.exports = bufferClone;
44110
44097
 
44111
44098
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
44112
- },{"../utility/constant":447,"./getNative":404}],390:[function(require,module,exports){
44099
+ },{"../utility/constant":448,"./getNative":405}],391:[function(require,module,exports){
44113
44100
  var isObject = require('../lang/isObject');
44114
44101
 
44115
44102
  /**
@@ -44130,7 +44117,7 @@ function cacheIndexOf(cache, value) {
44130
44117
 
44131
44118
  module.exports = cacheIndexOf;
44132
44119
 
44133
- },{"../lang/isObject":430}],391:[function(require,module,exports){
44120
+ },{"../lang/isObject":431}],392:[function(require,module,exports){
44134
44121
  var isObject = require('../lang/isObject');
44135
44122
 
44136
44123
  /**
@@ -44152,7 +44139,7 @@ function cachePush(value) {
44152
44139
 
44153
44140
  module.exports = cachePush;
44154
44141
 
44155
- },{"../lang/isObject":430}],392:[function(require,module,exports){
44142
+ },{"../lang/isObject":431}],393:[function(require,module,exports){
44156
44143
  var baseCompareAscending = require('./baseCompareAscending');
44157
44144
 
44158
44145
  /**
@@ -44170,7 +44157,7 @@ function compareAscending(object, other) {
44170
44157
 
44171
44158
  module.exports = compareAscending;
44172
44159
 
44173
- },{"./baseCompareAscending":358}],393:[function(require,module,exports){
44160
+ },{"./baseCompareAscending":359}],394:[function(require,module,exports){
44174
44161
  var bindCallback = require('./bindCallback'),
44175
44162
  isIterateeCall = require('./isIterateeCall'),
44176
44163
  restParam = require('../function/restParam');
@@ -44216,7 +44203,7 @@ function createAssigner(assigner) {
44216
44203
 
44217
44204
  module.exports = createAssigner;
44218
44205
 
44219
- },{"../function/restParam":346,"./bindCallback":388,"./isIterateeCall":411}],394:[function(require,module,exports){
44206
+ },{"../function/restParam":347,"./bindCallback":389,"./isIterateeCall":412}],395:[function(require,module,exports){
44220
44207
  var getLength = require('./getLength'),
44221
44208
  isLength = require('./isLength'),
44222
44209
  toObject = require('./toObject');
@@ -44249,7 +44236,7 @@ function createBaseEach(eachFunc, fromRight) {
44249
44236
 
44250
44237
  module.exports = createBaseEach;
44251
44238
 
44252
- },{"./getLength":402,"./isLength":413,"./toObject":419}],395:[function(require,module,exports){
44239
+ },{"./getLength":403,"./isLength":414,"./toObject":420}],396:[function(require,module,exports){
44253
44240
  var toObject = require('./toObject');
44254
44241
 
44255
44242
  /**
@@ -44278,7 +44265,7 @@ function createBaseFor(fromRight) {
44278
44265
 
44279
44266
  module.exports = createBaseFor;
44280
44267
 
44281
- },{"./toObject":419}],396:[function(require,module,exports){
44268
+ },{"./toObject":420}],397:[function(require,module,exports){
44282
44269
  (function (global){
44283
44270
  var SetCache = require('./SetCache'),
44284
44271
  constant = require('../utility/constant'),
@@ -44304,7 +44291,7 @@ var createCache = !(nativeCreate && Set) ? constant(null) : function(values) {
44304
44291
  module.exports = createCache;
44305
44292
 
44306
44293
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
44307
- },{"../utility/constant":447,"./SetCache":347,"./getNative":404}],397:[function(require,module,exports){
44294
+ },{"../utility/constant":448,"./SetCache":348,"./getNative":405}],398:[function(require,module,exports){
44308
44295
  var bindCallback = require('./bindCallback'),
44309
44296
  isArray = require('../lang/isArray');
44310
44297
 
@@ -44326,7 +44313,7 @@ function createForEach(arrayFunc, eachFunc) {
44326
44313
 
44327
44314
  module.exports = createForEach;
44328
44315
 
44329
- },{"../lang/isArray":424,"./bindCallback":388}],398:[function(require,module,exports){
44316
+ },{"../lang/isArray":425,"./bindCallback":389}],399:[function(require,module,exports){
44330
44317
  var baseCallback = require('./baseCallback'),
44331
44318
  baseReduce = require('./baseReduce'),
44332
44319
  isArray = require('../lang/isArray');
@@ -44350,7 +44337,7 @@ function createReduce(arrayFunc, eachFunc) {
44350
44337
 
44351
44338
  module.exports = createReduce;
44352
44339
 
44353
- },{"../lang/isArray":424,"./baseCallback":356,"./baseReduce":381}],399:[function(require,module,exports){
44340
+ },{"../lang/isArray":425,"./baseCallback":357,"./baseReduce":382}],400:[function(require,module,exports){
44354
44341
  var arraySome = require('./arraySome');
44355
44342
 
44356
44343
  /**
@@ -44403,7 +44390,7 @@ function equalArrays(array, other, equalFunc, customizer, isLoose, stackA, stack
44403
44390
 
44404
44391
  module.exports = equalArrays;
44405
44392
 
44406
- },{"./arraySome":352}],400:[function(require,module,exports){
44393
+ },{"./arraySome":353}],401:[function(require,module,exports){
44407
44394
  /** `Object#toString` result references. */
44408
44395
  var boolTag = '[object Boolean]',
44409
44396
  dateTag = '[object Date]',
@@ -44453,7 +44440,7 @@ function equalByTag(object, other, tag) {
44453
44440
 
44454
44441
  module.exports = equalByTag;
44455
44442
 
44456
- },{}],401:[function(require,module,exports){
44443
+ },{}],402:[function(require,module,exports){
44457
44444
  var keys = require('../object/keys');
44458
44445
 
44459
44446
  /** Used for native method references. */
@@ -44522,7 +44509,7 @@ function equalObjects(object, other, equalFunc, customizer, isLoose, stackA, sta
44522
44509
 
44523
44510
  module.exports = equalObjects;
44524
44511
 
44525
- },{"../object/keys":440}],402:[function(require,module,exports){
44512
+ },{"../object/keys":441}],403:[function(require,module,exports){
44526
44513
  var baseProperty = require('./baseProperty');
44527
44514
 
44528
44515
  /**
@@ -44539,7 +44526,7 @@ var getLength = baseProperty('length');
44539
44526
 
44540
44527
  module.exports = getLength;
44541
44528
 
44542
- },{"./baseProperty":379}],403:[function(require,module,exports){
44529
+ },{"./baseProperty":380}],404:[function(require,module,exports){
44543
44530
  var isStrictComparable = require('./isStrictComparable'),
44544
44531
  pairs = require('../object/pairs');
44545
44532
 
@@ -44562,7 +44549,7 @@ function getMatchData(object) {
44562
44549
 
44563
44550
  module.exports = getMatchData;
44564
44551
 
44565
- },{"../object/pairs":443,"./isStrictComparable":415}],404:[function(require,module,exports){
44552
+ },{"../object/pairs":444,"./isStrictComparable":416}],405:[function(require,module,exports){
44566
44553
  var isNative = require('../lang/isNative');
44567
44554
 
44568
44555
  /**
@@ -44580,7 +44567,7 @@ function getNative(object, key) {
44580
44567
 
44581
44568
  module.exports = getNative;
44582
44569
 
44583
- },{"../lang/isNative":428}],405:[function(require,module,exports){
44570
+ },{"../lang/isNative":429}],406:[function(require,module,exports){
44584
44571
  /**
44585
44572
  * Gets the index at which the first occurrence of `NaN` is found in `array`.
44586
44573
  *
@@ -44605,7 +44592,7 @@ function indexOfNaN(array, fromIndex, fromRight) {
44605
44592
 
44606
44593
  module.exports = indexOfNaN;
44607
44594
 
44608
- },{}],406:[function(require,module,exports){
44595
+ },{}],407:[function(require,module,exports){
44609
44596
  /** Used for native method references. */
44610
44597
  var objectProto = Object.prototype;
44611
44598
 
@@ -44633,7 +44620,7 @@ function initCloneArray(array) {
44633
44620
 
44634
44621
  module.exports = initCloneArray;
44635
44622
 
44636
- },{}],407:[function(require,module,exports){
44623
+ },{}],408:[function(require,module,exports){
44637
44624
  var bufferClone = require('./bufferClone');
44638
44625
 
44639
44626
  /** `Object#toString` result references. */
@@ -44698,7 +44685,7 @@ function initCloneByTag(object, tag, isDeep) {
44698
44685
 
44699
44686
  module.exports = initCloneByTag;
44700
44687
 
44701
- },{"./bufferClone":389}],408:[function(require,module,exports){
44688
+ },{"./bufferClone":390}],409:[function(require,module,exports){
44702
44689
  /**
44703
44690
  * Initializes an object clone.
44704
44691
  *
@@ -44716,7 +44703,7 @@ function initCloneObject(object) {
44716
44703
 
44717
44704
  module.exports = initCloneObject;
44718
44705
 
44719
- },{}],409:[function(require,module,exports){
44706
+ },{}],410:[function(require,module,exports){
44720
44707
  var getLength = require('./getLength'),
44721
44708
  isLength = require('./isLength');
44722
44709
 
@@ -44733,7 +44720,7 @@ function isArrayLike(value) {
44733
44720
 
44734
44721
  module.exports = isArrayLike;
44735
44722
 
44736
- },{"./getLength":402,"./isLength":413}],410:[function(require,module,exports){
44723
+ },{"./getLength":403,"./isLength":414}],411:[function(require,module,exports){
44737
44724
  /**
44738
44725
  * Used as the [maximum length](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.max_safe_integer)
44739
44726
  * of an array-like value.
@@ -44756,7 +44743,7 @@ function isIndex(value, length) {
44756
44743
 
44757
44744
  module.exports = isIndex;
44758
44745
 
44759
- },{}],411:[function(require,module,exports){
44746
+ },{}],412:[function(require,module,exports){
44760
44747
  var isArrayLike = require('./isArrayLike'),
44761
44748
  isIndex = require('./isIndex'),
44762
44749
  isObject = require('../lang/isObject');
@@ -44786,7 +44773,7 @@ function isIterateeCall(value, index, object) {
44786
44773
 
44787
44774
  module.exports = isIterateeCall;
44788
44775
 
44789
- },{"../lang/isObject":430,"./isArrayLike":409,"./isIndex":410}],412:[function(require,module,exports){
44776
+ },{"../lang/isObject":431,"./isArrayLike":410,"./isIndex":411}],413:[function(require,module,exports){
44790
44777
  var isArray = require('../lang/isArray'),
44791
44778
  toObject = require('./toObject');
44792
44779
 
@@ -44816,7 +44803,7 @@ function isKey(value, object) {
44816
44803
 
44817
44804
  module.exports = isKey;
44818
44805
 
44819
- },{"../lang/isArray":424,"./toObject":419}],413:[function(require,module,exports){
44806
+ },{"../lang/isArray":425,"./toObject":420}],414:[function(require,module,exports){
44820
44807
  /**
44821
44808
  * Used as the [maximum length](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.max_safe_integer)
44822
44809
  * of an array-like value.
@@ -44838,7 +44825,7 @@ function isLength(value) {
44838
44825
 
44839
44826
  module.exports = isLength;
44840
44827
 
44841
- },{}],414:[function(require,module,exports){
44828
+ },{}],415:[function(require,module,exports){
44842
44829
  /**
44843
44830
  * Checks if `value` is object-like.
44844
44831
  *
@@ -44852,7 +44839,7 @@ function isObjectLike(value) {
44852
44839
 
44853
44840
  module.exports = isObjectLike;
44854
44841
 
44855
- },{}],415:[function(require,module,exports){
44842
+ },{}],416:[function(require,module,exports){
44856
44843
  var isObject = require('../lang/isObject');
44857
44844
 
44858
44845
  /**
@@ -44869,7 +44856,7 @@ function isStrictComparable(value) {
44869
44856
 
44870
44857
  module.exports = isStrictComparable;
44871
44858
 
44872
- },{"../lang/isObject":430}],416:[function(require,module,exports){
44859
+ },{"../lang/isObject":431}],417:[function(require,module,exports){
44873
44860
  var baseForIn = require('./baseForIn'),
44874
44861
  isObjectLike = require('./isObjectLike');
44875
44862
 
@@ -44921,7 +44908,7 @@ function shimIsPlainObject(value) {
44921
44908
 
44922
44909
  module.exports = shimIsPlainObject;
44923
44910
 
44924
- },{"./baseForIn":364,"./isObjectLike":414}],417:[function(require,module,exports){
44911
+ },{"./baseForIn":365,"./isObjectLike":415}],418:[function(require,module,exports){
44925
44912
  var isArguments = require('../lang/isArguments'),
44926
44913
  isArray = require('../lang/isArray'),
44927
44914
  isIndex = require('./isIndex'),
@@ -44964,7 +44951,7 @@ function shimKeys(object) {
44964
44951
 
44965
44952
  module.exports = shimKeys;
44966
44953
 
44967
- },{"../lang/isArguments":423,"../lang/isArray":424,"../object/keysIn":441,"./isIndex":410,"./isLength":413}],418:[function(require,module,exports){
44954
+ },{"../lang/isArguments":424,"../lang/isArray":425,"../object/keysIn":442,"./isIndex":411,"./isLength":414}],419:[function(require,module,exports){
44968
44955
  /**
44969
44956
  * An implementation of `_.uniq` optimized for sorted arrays without support
44970
44957
  * for callback shorthands and `this` binding.
@@ -44995,7 +44982,7 @@ function sortedUniq(array, iteratee) {
44995
44982
 
44996
44983
  module.exports = sortedUniq;
44997
44984
 
44998
- },{}],419:[function(require,module,exports){
44985
+ },{}],420:[function(require,module,exports){
44999
44986
  var isObject = require('../lang/isObject');
45000
44987
 
45001
44988
  /**
@@ -45011,7 +44998,7 @@ function toObject(value) {
45011
44998
 
45012
44999
  module.exports = toObject;
45013
45000
 
45014
- },{"../lang/isObject":430}],420:[function(require,module,exports){
45001
+ },{"../lang/isObject":431}],421:[function(require,module,exports){
45015
45002
  var baseToString = require('./baseToString'),
45016
45003
  isArray = require('../lang/isArray');
45017
45004
 
@@ -45041,7 +45028,7 @@ function toPath(value) {
45041
45028
 
45042
45029
  module.exports = toPath;
45043
45030
 
45044
- },{"../lang/isArray":424,"./baseToString":385}],421:[function(require,module,exports){
45031
+ },{"../lang/isArray":425,"./baseToString":386}],422:[function(require,module,exports){
45045
45032
  var baseClone = require('../internal/baseClone'),
45046
45033
  bindCallback = require('../internal/bindCallback'),
45047
45034
  isIterateeCall = require('../internal/isIterateeCall');
@@ -45113,7 +45100,7 @@ function clone(value, isDeep, customizer, thisArg) {
45113
45100
 
45114
45101
  module.exports = clone;
45115
45102
 
45116
- },{"../internal/baseClone":357,"../internal/bindCallback":388,"../internal/isIterateeCall":411}],422:[function(require,module,exports){
45103
+ },{"../internal/baseClone":358,"../internal/bindCallback":389,"../internal/isIterateeCall":412}],423:[function(require,module,exports){
45117
45104
  var baseClone = require('../internal/baseClone'),
45118
45105
  bindCallback = require('../internal/bindCallback');
45119
45106
 
@@ -45170,7 +45157,7 @@ function cloneDeep(value, customizer, thisArg) {
45170
45157
 
45171
45158
  module.exports = cloneDeep;
45172
45159
 
45173
- },{"../internal/baseClone":357,"../internal/bindCallback":388}],423:[function(require,module,exports){
45160
+ },{"../internal/baseClone":358,"../internal/bindCallback":389}],424:[function(require,module,exports){
45174
45161
  var isArrayLike = require('../internal/isArrayLike'),
45175
45162
  isObjectLike = require('../internal/isObjectLike');
45176
45163
 
@@ -45208,7 +45195,7 @@ function isArguments(value) {
45208
45195
 
45209
45196
  module.exports = isArguments;
45210
45197
 
45211
- },{"../internal/isArrayLike":409,"../internal/isObjectLike":414}],424:[function(require,module,exports){
45198
+ },{"../internal/isArrayLike":410,"../internal/isObjectLike":415}],425:[function(require,module,exports){
45212
45199
  var getNative = require('../internal/getNative'),
45213
45200
  isLength = require('../internal/isLength'),
45214
45201
  isObjectLike = require('../internal/isObjectLike');
@@ -45250,7 +45237,7 @@ var isArray = nativeIsArray || function(value) {
45250
45237
 
45251
45238
  module.exports = isArray;
45252
45239
 
45253
- },{"../internal/getNative":404,"../internal/isLength":413,"../internal/isObjectLike":414}],425:[function(require,module,exports){
45240
+ },{"../internal/getNative":405,"../internal/isLength":414,"../internal/isObjectLike":415}],426:[function(require,module,exports){
45254
45241
  var isObjectLike = require('../internal/isObjectLike');
45255
45242
 
45256
45243
  /** `Object#toString` result references. */
@@ -45287,7 +45274,7 @@ function isBoolean(value) {
45287
45274
 
45288
45275
  module.exports = isBoolean;
45289
45276
 
45290
- },{"../internal/isObjectLike":414}],426:[function(require,module,exports){
45277
+ },{"../internal/isObjectLike":415}],427:[function(require,module,exports){
45291
45278
  var isArguments = require('./isArguments'),
45292
45279
  isArray = require('./isArray'),
45293
45280
  isArrayLike = require('../internal/isArrayLike'),
@@ -45336,7 +45323,7 @@ function isEmpty(value) {
45336
45323
 
45337
45324
  module.exports = isEmpty;
45338
45325
 
45339
- },{"../internal/isArrayLike":409,"../internal/isObjectLike":414,"../object/keys":440,"./isArguments":423,"./isArray":424,"./isFunction":427,"./isString":433}],427:[function(require,module,exports){
45326
+ },{"../internal/isArrayLike":410,"../internal/isObjectLike":415,"../object/keys":441,"./isArguments":424,"./isArray":425,"./isFunction":428,"./isString":434}],428:[function(require,module,exports){
45340
45327
  (function (global){
45341
45328
  var baseIsFunction = require('../internal/baseIsFunction'),
45342
45329
  getNative = require('../internal/getNative');
@@ -45382,7 +45369,7 @@ var isFunction = !(baseIsFunction(/x/) || (Uint8Array && !baseIsFunction(Uint8Ar
45382
45369
  module.exports = isFunction;
45383
45370
 
45384
45371
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
45385
- },{"../internal/baseIsFunction":372,"../internal/getNative":404}],428:[function(require,module,exports){
45372
+ },{"../internal/baseIsFunction":373,"../internal/getNative":405}],429:[function(require,module,exports){
45386
45373
  var escapeRegExp = require('../string/escapeRegExp'),
45387
45374
  isObjectLike = require('../internal/isObjectLike');
45388
45375
 
@@ -45441,7 +45428,7 @@ function isNative(value) {
45441
45428
 
45442
45429
  module.exports = isNative;
45443
45430
 
45444
- },{"../internal/isObjectLike":414,"../string/escapeRegExp":445}],429:[function(require,module,exports){
45431
+ },{"../internal/isObjectLike":415,"../string/escapeRegExp":446}],430:[function(require,module,exports){
45445
45432
  var isObjectLike = require('../internal/isObjectLike');
45446
45433
 
45447
45434
  /** `Object#toString` result references. */
@@ -45484,7 +45471,7 @@ function isNumber(value) {
45484
45471
 
45485
45472
  module.exports = isNumber;
45486
45473
 
45487
- },{"../internal/isObjectLike":414}],430:[function(require,module,exports){
45474
+ },{"../internal/isObjectLike":415}],431:[function(require,module,exports){
45488
45475
  /**
45489
45476
  * Checks if `value` is the [language type](https://es5.github.io/#x8) of `Object`.
45490
45477
  * (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)
@@ -45514,7 +45501,7 @@ function isObject(value) {
45514
45501
 
45515
45502
  module.exports = isObject;
45516
45503
 
45517
- },{}],431:[function(require,module,exports){
45504
+ },{}],432:[function(require,module,exports){
45518
45505
  var getNative = require('../internal/getNative'),
45519
45506
  shimIsPlainObject = require('../internal/shimIsPlainObject');
45520
45507
 
@@ -45577,7 +45564,7 @@ var isPlainObject = !getPrototypeOf ? shimIsPlainObject : function(value) {
45577
45564
 
45578
45565
  module.exports = isPlainObject;
45579
45566
 
45580
- },{"../internal/getNative":404,"../internal/shimIsPlainObject":416}],432:[function(require,module,exports){
45567
+ },{"../internal/getNative":405,"../internal/shimIsPlainObject":417}],433:[function(require,module,exports){
45581
45568
  var isObjectLike = require('../internal/isObjectLike');
45582
45569
 
45583
45570
  /** `Object#toString` result references. */
@@ -45614,7 +45601,7 @@ function isRegExp(value) {
45614
45601
 
45615
45602
  module.exports = isRegExp;
45616
45603
 
45617
- },{"../internal/isObjectLike":414}],433:[function(require,module,exports){
45604
+ },{"../internal/isObjectLike":415}],434:[function(require,module,exports){
45618
45605
  var isObjectLike = require('../internal/isObjectLike');
45619
45606
 
45620
45607
  /** `Object#toString` result references. */
@@ -45651,7 +45638,7 @@ function isString(value) {
45651
45638
 
45652
45639
  module.exports = isString;
45653
45640
 
45654
- },{"../internal/isObjectLike":414}],434:[function(require,module,exports){
45641
+ },{"../internal/isObjectLike":415}],435:[function(require,module,exports){
45655
45642
  var isLength = require('../internal/isLength'),
45656
45643
  isObjectLike = require('../internal/isObjectLike');
45657
45644
 
@@ -45727,7 +45714,7 @@ function isTypedArray(value) {
45727
45714
 
45728
45715
  module.exports = isTypedArray;
45729
45716
 
45730
- },{"../internal/isLength":413,"../internal/isObjectLike":414}],435:[function(require,module,exports){
45717
+ },{"../internal/isLength":414,"../internal/isObjectLike":415}],436:[function(require,module,exports){
45731
45718
  var baseCopy = require('../internal/baseCopy'),
45732
45719
  keysIn = require('../object/keysIn');
45733
45720
 
@@ -45760,7 +45747,7 @@ function toPlainObject(value) {
45760
45747
 
45761
45748
  module.exports = toPlainObject;
45762
45749
 
45763
- },{"../internal/baseCopy":359,"../object/keysIn":441}],436:[function(require,module,exports){
45750
+ },{"../internal/baseCopy":360,"../object/keysIn":442}],437:[function(require,module,exports){
45764
45751
  var assignWith = require('../internal/assignWith'),
45765
45752
  baseAssign = require('../internal/baseAssign'),
45766
45753
  createAssigner = require('../internal/createAssigner');
@@ -45805,7 +45792,7 @@ var assign = createAssigner(function(object, source, customizer) {
45805
45792
 
45806
45793
  module.exports = assign;
45807
45794
 
45808
- },{"../internal/assignWith":354,"../internal/baseAssign":355,"../internal/createAssigner":393}],437:[function(require,module,exports){
45795
+ },{"../internal/assignWith":355,"../internal/baseAssign":356,"../internal/createAssigner":394}],438:[function(require,module,exports){
45809
45796
  var assign = require('./assign'),
45810
45797
  assignDefaults = require('../internal/assignDefaults'),
45811
45798
  restParam = require('../function/restParam');
@@ -45839,10 +45826,10 @@ var defaults = restParam(function(args) {
45839
45826
 
45840
45827
  module.exports = defaults;
45841
45828
 
45842
- },{"../function/restParam":346,"../internal/assignDefaults":353,"./assign":436}],438:[function(require,module,exports){
45829
+ },{"../function/restParam":347,"../internal/assignDefaults":354,"./assign":437}],439:[function(require,module,exports){
45843
45830
  module.exports = require('./assign');
45844
45831
 
45845
- },{"./assign":436}],439:[function(require,module,exports){
45832
+ },{"./assign":437}],440:[function(require,module,exports){
45846
45833
  var baseGet = require('../internal/baseGet'),
45847
45834
  baseSlice = require('../internal/baseSlice'),
45848
45835
  isArguments = require('../lang/isArguments'),
@@ -45901,7 +45888,7 @@ function has(object, path) {
45901
45888
 
45902
45889
  module.exports = has;
45903
45890
 
45904
- },{"../array/last":335,"../internal/baseGet":368,"../internal/baseSlice":382,"../internal/isIndex":410,"../internal/isKey":412,"../internal/isLength":413,"../internal/toPath":420,"../lang/isArguments":423,"../lang/isArray":424}],440:[function(require,module,exports){
45891
+ },{"../array/last":336,"../internal/baseGet":369,"../internal/baseSlice":383,"../internal/isIndex":411,"../internal/isKey":413,"../internal/isLength":414,"../internal/toPath":421,"../lang/isArguments":424,"../lang/isArray":425}],441:[function(require,module,exports){
45905
45892
  var getNative = require('../internal/getNative'),
45906
45893
  isArrayLike = require('../internal/isArrayLike'),
45907
45894
  isObject = require('../lang/isObject'),
@@ -45948,7 +45935,7 @@ var keys = !nativeKeys ? shimKeys : function(object) {
45948
45935
 
45949
45936
  module.exports = keys;
45950
45937
 
45951
- },{"../internal/getNative":404,"../internal/isArrayLike":409,"../internal/shimKeys":417,"../lang/isObject":430}],441:[function(require,module,exports){
45938
+ },{"../internal/getNative":405,"../internal/isArrayLike":410,"../internal/shimKeys":418,"../lang/isObject":431}],442:[function(require,module,exports){
45952
45939
  var isArguments = require('../lang/isArguments'),
45953
45940
  isArray = require('../lang/isArray'),
45954
45941
  isIndex = require('../internal/isIndex'),
@@ -46014,7 +46001,7 @@ function keysIn(object) {
46014
46001
 
46015
46002
  module.exports = keysIn;
46016
46003
 
46017
- },{"../internal/isIndex":410,"../internal/isLength":413,"../lang/isArguments":423,"../lang/isArray":424,"../lang/isObject":430}],442:[function(require,module,exports){
46004
+ },{"../internal/isIndex":411,"../internal/isLength":414,"../lang/isArguments":424,"../lang/isArray":425,"../lang/isObject":431}],443:[function(require,module,exports){
46018
46005
  var baseMerge = require('../internal/baseMerge'),
46019
46006
  createAssigner = require('../internal/createAssigner');
46020
46007
 
@@ -46070,7 +46057,7 @@ var merge = createAssigner(baseMerge);
46070
46057
 
46071
46058
  module.exports = merge;
46072
46059
 
46073
- },{"../internal/baseMerge":377,"../internal/createAssigner":393}],443:[function(require,module,exports){
46060
+ },{"../internal/baseMerge":378,"../internal/createAssigner":394}],444:[function(require,module,exports){
46074
46061
  var keys = require('./keys'),
46075
46062
  toObject = require('../internal/toObject');
46076
46063
 
@@ -46105,7 +46092,7 @@ function pairs(object) {
46105
46092
 
46106
46093
  module.exports = pairs;
46107
46094
 
46108
- },{"../internal/toObject":419,"./keys":440}],444:[function(require,module,exports){
46095
+ },{"../internal/toObject":420,"./keys":441}],445:[function(require,module,exports){
46109
46096
  var baseValues = require('../internal/baseValues'),
46110
46097
  keys = require('./keys');
46111
46098
 
@@ -46140,7 +46127,7 @@ function values(object) {
46140
46127
 
46141
46128
  module.exports = values;
46142
46129
 
46143
- },{"../internal/baseValues":387,"./keys":440}],445:[function(require,module,exports){
46130
+ },{"../internal/baseValues":388,"./keys":441}],446:[function(require,module,exports){
46144
46131
  var baseToString = require('../internal/baseToString');
46145
46132
 
46146
46133
  /**
@@ -46174,7 +46161,7 @@ function escapeRegExp(string) {
46174
46161
 
46175
46162
  module.exports = escapeRegExp;
46176
46163
 
46177
- },{"../internal/baseToString":385}],446:[function(require,module,exports){
46164
+ },{"../internal/baseToString":386}],447:[function(require,module,exports){
46178
46165
  var baseToString = require('../internal/baseToString');
46179
46166
 
46180
46167
  /* Native method references for those with the same name as other `lodash` methods. */
@@ -46212,7 +46199,7 @@ function startsWith(string, target, position) {
46212
46199
 
46213
46200
  module.exports = startsWith;
46214
46201
 
46215
- },{"../internal/baseToString":385}],447:[function(require,module,exports){
46202
+ },{"../internal/baseToString":386}],448:[function(require,module,exports){
46216
46203
  /**
46217
46204
  * Creates a function that returns `value`.
46218
46205
  *
@@ -46237,7 +46224,7 @@ function constant(value) {
46237
46224
 
46238
46225
  module.exports = constant;
46239
46226
 
46240
- },{}],448:[function(require,module,exports){
46227
+ },{}],449:[function(require,module,exports){
46241
46228
  /**
46242
46229
  * This method returns the first argument provided to it.
46243
46230
  *
@@ -46259,7 +46246,7 @@ function identity(value) {
46259
46246
 
46260
46247
  module.exports = identity;
46261
46248
 
46262
- },{}],449:[function(require,module,exports){
46249
+ },{}],450:[function(require,module,exports){
46263
46250
  var baseProperty = require('../internal/baseProperty'),
46264
46251
  basePropertyDeep = require('../internal/basePropertyDeep'),
46265
46252
  isKey = require('../internal/isKey');
@@ -46292,7 +46279,7 @@ function property(path) {
46292
46279
 
46293
46280
  module.exports = property;
46294
46281
 
46295
- },{"../internal/baseProperty":379,"../internal/basePropertyDeep":380,"../internal/isKey":412}],450:[function(require,module,exports){
46282
+ },{"../internal/baseProperty":380,"../internal/basePropertyDeep":381,"../internal/isKey":413}],451:[function(require,module,exports){
46296
46283
  module.exports = minimatch
46297
46284
  minimatch.Minimatch = Minimatch
46298
46285
 
@@ -47161,7 +47148,7 @@ function regExpEscape (s) {
47161
47148
  return s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&')
47162
47149
  }
47163
47150
 
47164
- },{"brace-expansion":451,"path":199}],451:[function(require,module,exports){
47151
+ },{"brace-expansion":452,"path":199}],452:[function(require,module,exports){
47165
47152
  var concatMap = require('concat-map');
47166
47153
  var balanced = require('balanced-match');
47167
47154
 
@@ -47354,7 +47341,7 @@ function expand(str, isTop) {
47354
47341
  }
47355
47342
 
47356
47343
 
47357
- },{"balanced-match":452,"concat-map":453}],452:[function(require,module,exports){
47344
+ },{"balanced-match":453,"concat-map":454}],453:[function(require,module,exports){
47358
47345
  module.exports = balanced;
47359
47346
  function balanced(a, b, str) {
47360
47347
  var bal = 0;
@@ -47394,7 +47381,7 @@ function balanced(a, b, str) {
47394
47381
  }
47395
47382
  }
47396
47383
 
47397
- },{}],453:[function(require,module,exports){
47384
+ },{}],454:[function(require,module,exports){
47398
47385
  module.exports = function (xs, fn) {
47399
47386
  var res = [];
47400
47387
  for (var i = 0; i < xs.length; i++) {
@@ -47409,7 +47396,7 @@ var isArray = Array.isArray || function (xs) {
47409
47396
  return Object.prototype.toString.call(xs) === '[object Array]';
47410
47397
  };
47411
47398
 
47412
- },{}],454:[function(require,module,exports){
47399
+ },{}],455:[function(require,module,exports){
47413
47400
  (function (process){
47414
47401
  'use strict';
47415
47402
 
@@ -47433,7 +47420,7 @@ module.exports.posix = posix;
47433
47420
  module.exports.win32 = win32;
47434
47421
 
47435
47422
  }).call(this,require('_process'))
47436
- },{"_process":200}],455:[function(require,module,exports){
47423
+ },{"_process":200}],456:[function(require,module,exports){
47437
47424
  "use strict";
47438
47425
 
47439
47426
  var originalObject = Object;
@@ -47564,7 +47551,7 @@ function makeAccessor(secretCreatorFn) {
47564
47551
 
47565
47552
  defProp(exports, "makeAccessor", makeAccessor);
47566
47553
 
47567
- },{}],456:[function(require,module,exports){
47554
+ },{}],457:[function(require,module,exports){
47568
47555
  /**
47569
47556
  * Copyright (c) 2014, Facebook, Inc.
47570
47557
  * All rights reserved.
@@ -48757,7 +48744,7 @@ Ep.explodeExpression = function(path, ignoreResult) {
48757
48744
  }
48758
48745
  };
48759
48746
 
48760
- },{"./leap":458,"./meta":459,"./util":460,"assert":190,"recast":489}],457:[function(require,module,exports){
48747
+ },{"./leap":459,"./meta":460,"./util":461,"assert":190,"recast":490}],458:[function(require,module,exports){
48761
48748
  /**
48762
48749
  * Copyright (c) 2014, Facebook, Inc.
48763
48750
  * All rights reserved.
@@ -48912,7 +48899,7 @@ exports.hoist = function(funPath) {
48912
48899
  return b.variableDeclaration("var", declarations);
48913
48900
  };
48914
48901
 
48915
- },{"assert":190,"recast":489}],458:[function(require,module,exports){
48902
+ },{"assert":190,"recast":490}],459:[function(require,module,exports){
48916
48903
  /**
48917
48904
  * Copyright (c) 2014, Facebook, Inc.
48918
48905
  * All rights reserved.
@@ -49091,7 +49078,7 @@ LMp.getContinueLoc = function(label) {
49091
49078
  return this._findLeapLocation("continueLoc", label);
49092
49079
  };
49093
49080
 
49094
- },{"./emit":456,"assert":190,"recast":489,"util":216}],459:[function(require,module,exports){
49081
+ },{"./emit":457,"assert":190,"recast":490,"util":216}],460:[function(require,module,exports){
49095
49082
  /**
49096
49083
  * Copyright (c) 2014, Facebook, Inc.
49097
49084
  * All rights reserved.
@@ -49193,7 +49180,7 @@ for (var type in leapTypes) {
49193
49180
  exports.hasSideEffects = makePredicate("hasSideEffects", sideEffectTypes);
49194
49181
  exports.containsLeap = makePredicate("containsLeap", leapTypes);
49195
49182
 
49196
- },{"assert":190,"private":455,"recast":489}],460:[function(require,module,exports){
49183
+ },{"assert":190,"private":456,"recast":490}],461:[function(require,module,exports){
49197
49184
  /**
49198
49185
  * Copyright (c) 2014, Facebook, Inc.
49199
49186
  * All rights reserved.
@@ -49295,7 +49282,7 @@ exports.isReference = function(path, name) {
49295
49282
  }
49296
49283
  };
49297
49284
 
49298
- },{"assert":190,"recast":489}],461:[function(require,module,exports){
49285
+ },{"assert":190,"recast":490}],462:[function(require,module,exports){
49299
49286
  /**
49300
49287
  * Copyright (c) 2014, Facebook, Inc.
49301
49288
  * All rights reserved.
@@ -49690,7 +49677,7 @@ var awaitVisitor = types.PathVisitor.fromMethodsObject({
49690
49677
  }
49691
49678
  });
49692
49679
 
49693
- },{"..":462,"./emit":456,"./hoist":457,"./util":460,"assert":190,"fs":189,"private":455,"recast":489}],462:[function(require,module,exports){
49680
+ },{"..":463,"./emit":457,"./hoist":458,"./util":461,"assert":190,"fs":189,"private":456,"recast":490}],463:[function(require,module,exports){
49694
49681
  (function (__dirname){
49695
49682
  /**
49696
49683
  * Copyright (c) 2014, Facebook, Inc.
@@ -49851,7 +49838,7 @@ exports.compile = compile;
49851
49838
  exports.transform = transform;
49852
49839
 
49853
49840
  }).call(this,"/node_modules/regenerator")
49854
- },{"./lib/util":460,"./lib/visit":461,"./runtime":492,"assert":190,"defs":463,"esprima-fb":478,"fs":189,"path":199,"recast":489,"through":491}],463:[function(require,module,exports){
49841
+ },{"./lib/util":461,"./lib/visit":462,"./runtime":493,"assert":190,"defs":464,"esprima-fb":479,"fs":189,"path":199,"recast":490,"through":492}],464:[function(require,module,exports){
49855
49842
  "use strict";
49856
49843
 
49857
49844
  var assert = require("assert");
@@ -50533,7 +50520,7 @@ function run(src, config) {
50533
50520
 
50534
50521
  module.exports = run;
50535
50522
 
50536
- },{"./error":464,"./jshint_globals/vars.js":465,"./options":466,"./scope":467,"./stats":468,"alter":469,"assert":190,"ast-traverse":471,"breakable":472,"simple-fmt":474,"simple-is":475,"stringmap":476,"stringset":477}],464:[function(require,module,exports){
50523
+ },{"./error":465,"./jshint_globals/vars.js":466,"./options":467,"./scope":468,"./stats":469,"alter":470,"assert":190,"ast-traverse":472,"breakable":473,"simple-fmt":475,"simple-is":476,"stringmap":477,"stringset":478}],465:[function(require,module,exports){
50537
50524
  "use strict";
50538
50525
 
50539
50526
  var fmt = require("simple-fmt");
@@ -50563,7 +50550,7 @@ error.reset();
50563
50550
 
50564
50551
  module.exports = error;
50565
50552
 
50566
- },{"assert":190,"simple-fmt":474}],465:[function(require,module,exports){
50553
+ },{"assert":190,"simple-fmt":475}],466:[function(require,module,exports){
50567
50554
  // jshint -W001
50568
50555
 
50569
50556
  "use strict";
@@ -50960,7 +50947,7 @@ exports.yui = {
50960
50947
  };
50961
50948
 
50962
50949
 
50963
- },{}],466:[function(require,module,exports){
50950
+ },{}],467:[function(require,module,exports){
50964
50951
  // default configuration
50965
50952
 
50966
50953
  module.exports = {
@@ -50970,7 +50957,7 @@ module.exports = {
50970
50957
  parse: require("esprima-fb").parse,
50971
50958
  };
50972
50959
 
50973
- },{"esprima-fb":473}],467:[function(require,module,exports){
50960
+ },{"esprima-fb":474}],468:[function(require,module,exports){
50974
50961
  "use strict";
50975
50962
 
50976
50963
  var assert = require("assert");
@@ -51196,7 +51183,7 @@ Scope.prototype.traverse = function(options) {
51196
51183
 
51197
51184
  module.exports = Scope;
51198
51185
 
51199
- },{"./error":464,"./options":466,"assert":190,"simple-fmt":474,"simple-is":475,"stringmap":476,"stringset":477}],468:[function(require,module,exports){
51186
+ },{"./error":465,"./options":467,"assert":190,"simple-fmt":475,"simple-is":476,"stringmap":477,"stringset":478}],469:[function(require,module,exports){
51200
51187
  var fmt = require("simple-fmt");
51201
51188
  var is = require("simple-is");
51202
51189
  var assert = require("assert");
@@ -51248,7 +51235,7 @@ Stats.prototype.toString = function() {
51248
51235
 
51249
51236
  module.exports = Stats;
51250
51237
 
51251
- },{"assert":190,"simple-fmt":474,"simple-is":475}],469:[function(require,module,exports){
51238
+ },{"assert":190,"simple-fmt":475,"simple-is":476}],470:[function(require,module,exports){
51252
51239
  // alter.js
51253
51240
  // MIT licensed, see LICENSE file
51254
51241
  // Copyright (c) 2013 Olov Lassus <olov.lassus@gmail.com>
@@ -51295,7 +51282,7 @@ if (typeof module !== "undefined" && typeof module.exports !== "undefined") {
51295
51282
  module.exports = alter;
51296
51283
  }
51297
51284
 
51298
- },{"assert":190,"stable":470}],470:[function(require,module,exports){
51285
+ },{"assert":190,"stable":471}],471:[function(require,module,exports){
51299
51286
  //! stable.js 0.1.5, https://github.com/Two-Screen/stable
51300
51287
  //! © 2014 Angry Bytes and contributors. MIT licensed.
51301
51288
 
@@ -51408,7 +51395,7 @@ else {
51408
51395
 
51409
51396
  })();
51410
51397
 
51411
- },{}],471:[function(require,module,exports){
51398
+ },{}],472:[function(require,module,exports){
51412
51399
  function traverse(root, options) {
51413
51400
  "use strict";
51414
51401
 
@@ -51457,7 +51444,7 @@ if (typeof module !== "undefined" && typeof module.exports !== "undefined") {
51457
51444
  module.exports = traverse;
51458
51445
  }
51459
51446
 
51460
- },{}],472:[function(require,module,exports){
51447
+ },{}],473:[function(require,module,exports){
51461
51448
  // breakable.js
51462
51449
  // MIT licensed, see LICENSE file
51463
51450
  // Copyright (c) 2013-2014 Olov Lassus <olov.lassus@gmail.com>
@@ -51495,7 +51482,7 @@ if (typeof module !== "undefined" && typeof module.exports !== "undefined") {
51495
51482
  module.exports = breakable;
51496
51483
  }
51497
51484
 
51498
- },{}],473:[function(require,module,exports){
51485
+ },{}],474:[function(require,module,exports){
51499
51486
  /*
51500
51487
  Copyright (C) 2013 Ariya Hidayat <ariya.hidayat@gmail.com>
51501
51488
  Copyright (C) 2013 Thaddee Tyl <thaddee.tyl@gmail.com>
@@ -59113,7 +59100,7 @@ parseYieldExpression: true, parseAwaitExpression: true
59113
59100
  }));
59114
59101
  /* vim: set sw=4 ts=4 et tw=80 : */
59115
59102
 
59116
- },{}],474:[function(require,module,exports){
59103
+ },{}],475:[function(require,module,exports){
59117
59104
  // simple-fmt.js
59118
59105
  // MIT licensed, see LICENSE file
59119
59106
  // Copyright (c) 2013 Olov Lassus <olov.lassus@gmail.com>
@@ -59148,7 +59135,7 @@ if (typeof module !== "undefined" && typeof module.exports !== "undefined") {
59148
59135
  module.exports = fmt;
59149
59136
  }
59150
59137
 
59151
- },{}],475:[function(require,module,exports){
59138
+ },{}],476:[function(require,module,exports){
59152
59139
  // simple-is.js
59153
59140
  // MIT licensed, see LICENSE file
59154
59141
  // Copyright (c) 2013 Olov Lassus <olov.lassus@gmail.com>
@@ -59206,7 +59193,7 @@ if (typeof module !== "undefined" && typeof module.exports !== "undefined") {
59206
59193
  module.exports = is;
59207
59194
  }
59208
59195
 
59209
- },{}],476:[function(require,module,exports){
59196
+ },{}],477:[function(require,module,exports){
59210
59197
  // stringmap.js
59211
59198
  // MIT licensed, see LICENSE file
59212
59199
  // Copyright (c) 2013 Olov Lassus <olov.lassus@gmail.com>
@@ -59452,7 +59439,7 @@ if (typeof module !== "undefined" && typeof module.exports !== "undefined") {
59452
59439
  module.exports = StringMap;
59453
59440
  }
59454
59441
 
59455
- },{}],477:[function(require,module,exports){
59442
+ },{}],478:[function(require,module,exports){
59456
59443
  // stringset.js
59457
59444
  // MIT licensed, see LICENSE file
59458
59445
  // Copyright (c) 2013 Olov Lassus <olov.lassus@gmail.com>
@@ -59635,7 +59622,7 @@ if (typeof module !== "undefined" && typeof module.exports !== "undefined") {
59635
59622
  module.exports = StringSet;
59636
59623
  }
59637
59624
 
59638
- },{}],478:[function(require,module,exports){
59625
+ },{}],479:[function(require,module,exports){
59639
59626
  /*
59640
59627
  Copyright (C) 2013 Ariya Hidayat <ariya.hidayat@gmail.com>
59641
59628
  Copyright (C) 2013 Thaddee Tyl <thaddee.tyl@gmail.com>
@@ -67341,7 +67328,7 @@ if (typeof module !== "undefined" && typeof module.exports !== "undefined") {
67341
67328
  }));
67342
67329
  /* vim: set sw=4 ts=4 et tw=80 : */
67343
67330
 
67344
- },{}],479:[function(require,module,exports){
67331
+ },{}],480:[function(require,module,exports){
67345
67332
  var assert = require("assert");
67346
67333
  var types = require("./types");
67347
67334
  var n = types.namedTypes;
@@ -67693,7 +67680,7 @@ exports.printComments = function(path, print) {
67693
67680
  return concat(leadingParts);
67694
67681
  };
67695
67682
 
67696
- },{"./lines":481,"./types":487,"./util":488,"assert":190,"private":455}],480:[function(require,module,exports){
67683
+ },{"./lines":482,"./types":488,"./util":489,"assert":190,"private":456}],481:[function(require,module,exports){
67697
67684
  var assert = require("assert");
67698
67685
  var types = require("./types");
67699
67686
  var n = types.namedTypes;
@@ -68163,7 +68150,7 @@ FPp.firstInStatement = function() {
68163
68150
  return true;
68164
68151
  };
68165
68152
 
68166
- },{"./types":487,"assert":190}],481:[function(require,module,exports){
68153
+ },{"./types":488,"assert":190}],482:[function(require,module,exports){
68167
68154
  var assert = require("assert");
68168
68155
  var sourceMap = require("source-map");
68169
68156
  var normalizeOptions = require("./options").normalize;
@@ -69011,7 +68998,7 @@ Lp.concat = function(other) {
69011
68998
  // Lines.prototype will be fully populated.
69012
68999
  var emptyLines = fromString("");
69013
69000
 
69014
- },{"./mapping":482,"./options":483,"./types":487,"./util":488,"assert":190,"private":455,"source-map":503}],482:[function(require,module,exports){
69001
+ },{"./mapping":483,"./options":484,"./types":488,"./util":489,"assert":190,"private":456,"source-map":505}],483:[function(require,module,exports){
69015
69002
  var assert = require("assert");
69016
69003
  var types = require("./types");
69017
69004
  var isString = types.builtInTypes.string;
@@ -69290,7 +69277,7 @@ function skipChars(
69290
69277
  return sourceCursor;
69291
69278
  }
69292
69279
 
69293
- },{"./lines":481,"./types":487,"./util":488,"assert":190}],483:[function(require,module,exports){
69280
+ },{"./lines":482,"./types":488,"./util":489,"assert":190}],484:[function(require,module,exports){
69294
69281
  var defaults = {
69295
69282
  // If you want to use a different branch of esprima, or any other
69296
69283
  // module that supports a .parse function, pass that module object to
@@ -69377,7 +69364,7 @@ exports.normalize = function(options) {
69377
69364
  };
69378
69365
  };
69379
69366
 
69380
- },{"esprima-fb":490}],484:[function(require,module,exports){
69367
+ },{"esprima-fb":491}],485:[function(require,module,exports){
69381
69368
  var assert = require("assert");
69382
69369
  var types = require("./types");
69383
69370
  var n = types.namedTypes;
@@ -69505,7 +69492,7 @@ TCp.copy = function(node) {
69505
69492
  return copy;
69506
69493
  };
69507
69494
 
69508
- },{"./comments":479,"./lines":481,"./options":483,"./patcher":485,"./types":487,"./util":488,"assert":190}],485:[function(require,module,exports){
69495
+ },{"./comments":480,"./lines":482,"./options":484,"./patcher":486,"./types":488,"./util":489,"assert":190}],486:[function(require,module,exports){
69509
69496
  var assert = require("assert");
69510
69497
  var linesModule = require("./lines");
69511
69498
  var types = require("./types");
@@ -69987,7 +69974,7 @@ function findChildReprints(newPath, oldPath, reprints) {
69987
69974
  return true;
69988
69975
  }
69989
69976
 
69990
- },{"./fast-path":480,"./lines":481,"./types":487,"./util":488,"assert":190}],486:[function(require,module,exports){
69977
+ },{"./fast-path":481,"./lines":482,"./types":488,"./util":489,"assert":190}],487:[function(require,module,exports){
69991
69978
  var assert = require("assert");
69992
69979
  var sourceMap = require("source-map");
69993
69980
  var printComments = require("./comments").printComments;
@@ -71533,7 +71520,7 @@ function maybeAddSemicolon(lines) {
71533
71520
  return lines;
71534
71521
  }
71535
71522
 
71536
- },{"./comments":479,"./fast-path":480,"./lines":481,"./options":483,"./patcher":485,"./types":487,"./util":488,"assert":190,"source-map":503}],487:[function(require,module,exports){
71523
+ },{"./comments":480,"./fast-path":481,"./lines":482,"./options":484,"./patcher":486,"./types":488,"./util":489,"assert":190,"source-map":505}],488:[function(require,module,exports){
71537
71524
  var types = require("ast-types");
71538
71525
  var def = types.Type.def;
71539
71526
 
@@ -71546,7 +71533,7 @@ types.finalize();
71546
71533
 
71547
71534
  module.exports = types;
71548
71535
 
71549
- },{"ast-types":188}],488:[function(require,module,exports){
71536
+ },{"ast-types":188}],489:[function(require,module,exports){
71550
71537
  var assert = require("assert");
71551
71538
  var types = require("./types");
71552
71539
  var getFieldValue = types.getFieldValue;
@@ -71700,7 +71687,7 @@ exports.fixFaultyLocations = function(node) {
71700
71687
  }
71701
71688
  };
71702
71689
 
71703
- },{"./types":487,"assert":190,"source-map":503}],489:[function(require,module,exports){
71690
+ },{"./types":488,"assert":190,"source-map":505}],490:[function(require,module,exports){
71704
71691
  (function (process){
71705
71692
  var types = require("./lib/types");
71706
71693
  var parse = require("./lib/parser").parse;
@@ -71803,7 +71790,7 @@ Object.defineProperties(exports, {
71803
71790
  });
71804
71791
 
71805
71792
  }).call(this,require('_process'))
71806
- },{"./lib/parser":484,"./lib/printer":486,"./lib/types":487,"_process":200,"fs":189}],490:[function(require,module,exports){
71793
+ },{"./lib/parser":485,"./lib/printer":487,"./lib/types":488,"_process":200,"fs":189}],491:[function(require,module,exports){
71807
71794
  /*
71808
71795
  Copyright (C) 2013 Ariya Hidayat <ariya.hidayat@gmail.com>
71809
71796
  Copyright (C) 2013 Thaddee Tyl <thaddee.tyl@gmail.com>
@@ -79565,7 +79552,7 @@ Object.defineProperties(exports, {
79565
79552
  }));
79566
79553
  /* vim: set sw=4 ts=4 et tw=80 : */
79567
79554
 
79568
- },{}],491:[function(require,module,exports){
79555
+ },{}],492:[function(require,module,exports){
79569
79556
  (function (process){
79570
79557
  var Stream = require('stream')
79571
79558
 
@@ -79677,7 +79664,7 @@ function through (write, end, opts) {
79677
79664
 
79678
79665
 
79679
79666
  }).call(this,require('_process'))
79680
- },{"_process":200,"stream":212}],492:[function(require,module,exports){
79667
+ },{"_process":200,"stream":212}],493:[function(require,module,exports){
79681
79668
  (function (global){
79682
79669
  /**
79683
79670
  * Copyright (c) 2014, Facebook, Inc.
@@ -80245,7 +80232,7 @@ function through (write, end, opts) {
80245
80232
  );
80246
80233
 
80247
80234
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
80248
- },{}],493:[function(require,module,exports){
80235
+ },{}],494:[function(require,module,exports){
80249
80236
  // Generated by `/scripts/character-class-escape-sets.js`. Do not edit.
80250
80237
  var regenerate = require('regenerate');
80251
80238
 
@@ -80351,7 +80338,7 @@ exports.UNICODE_IGNORE_CASE = {
80351
80338
  .addRange(0x7B, 0x10FFFF)
80352
80339
  };
80353
80340
 
80354
- },{"regenerate":495}],494:[function(require,module,exports){
80341
+ },{"regenerate":496}],495:[function(require,module,exports){
80355
80342
  module.exports={
80356
80343
  "75": 8490,
80357
80344
  "83": 383,
@@ -80547,7 +80534,7 @@ module.exports={
80547
80534
  "71903": 71871
80548
80535
  }
80549
80536
 
80550
- },{}],495:[function(require,module,exports){
80537
+ },{}],496:[function(require,module,exports){
80551
80538
  (function (global){
80552
80539
  /*! https://mths.be/regenerate v1.2.0 by @mathias | MIT license */
80553
80540
  ;(function(root) {
@@ -81709,7 +81696,7 @@ module.exports={
81709
81696
  }(this));
81710
81697
 
81711
81698
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
81712
- },{}],496:[function(require,module,exports){
81699
+ },{}],497:[function(require,module,exports){
81713
81700
  (function (global){
81714
81701
  /*!
81715
81702
  * RegJSGen
@@ -82121,7 +82108,7 @@ module.exports={
82121
82108
  }.call(this));
82122
82109
 
82123
82110
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
82124
- },{}],497:[function(require,module,exports){
82111
+ },{}],498:[function(require,module,exports){
82125
82112
  // regjsparser
82126
82113
  //
82127
82114
  // ==================================================================
@@ -83070,7 +83057,7 @@ module.exports={
83070
83057
 
83071
83058
  }());
83072
83059
 
83073
- },{}],498:[function(require,module,exports){
83060
+ },{}],499:[function(require,module,exports){
83074
83061
  var generate = require('regjsgen').generate;
83075
83062
  var parse = require('regjsparser').parse;
83076
83063
  var regenerate = require('regenerate');
@@ -83265,7 +83252,7 @@ module.exports = function(pattern, flags) {
83265
83252
  return generate(tree);
83266
83253
  };
83267
83254
 
83268
- },{"./data/character-class-escape-sets.js":493,"./data/iu-mappings.json":494,"regenerate":495,"regjsgen":496,"regjsparser":497}],499:[function(require,module,exports){
83255
+ },{"./data/character-class-escape-sets.js":494,"./data/iu-mappings.json":495,"regenerate":496,"regjsgen":497,"regjsparser":498}],500:[function(require,module,exports){
83269
83256
  'use strict';
83270
83257
  var isFinite = require('is-finite');
83271
83258
 
@@ -83291,13 +83278,15 @@ module.exports = function (str, n) {
83291
83278
  return ret;
83292
83279
  };
83293
83280
 
83294
- },{"is-finite":500}],500:[function(require,module,exports){
83281
+ },{"is-finite":501}],501:[function(require,module,exports){
83295
83282
  arguments[4][327][0].apply(exports,arguments)
83296
- },{"dup":327}],501:[function(require,module,exports){
83283
+ },{"dup":327,"number-is-nan":502}],502:[function(require,module,exports){
83284
+ arguments[4][328][0].apply(exports,arguments)
83285
+ },{"dup":328}],503:[function(require,module,exports){
83297
83286
  'use strict';
83298
83287
  module.exports = /^#!.*/;
83299
83288
 
83300
- },{}],502:[function(require,module,exports){
83289
+ },{}],504:[function(require,module,exports){
83301
83290
  'use strict';
83302
83291
  module.exports = function (str) {
83303
83292
  var isExtendedLengthPath = /^\\\\\?\\/.test(str);
@@ -83310,7 +83299,7 @@ module.exports = function (str) {
83310
83299
  return str.replace(/\\/g, '/');
83311
83300
  };
83312
83301
 
83313
- },{}],503:[function(require,module,exports){
83302
+ },{}],505:[function(require,module,exports){
83314
83303
  /*
83315
83304
  * Copyright 2009-2011 Mozilla Foundation and contributors
83316
83305
  * Licensed under the New BSD license. See LICENSE.txt or:
@@ -83320,7 +83309,7 @@ exports.SourceMapGenerator = require('./source-map/source-map-generator').Source
83320
83309
  exports.SourceMapConsumer = require('./source-map/source-map-consumer').SourceMapConsumer;
83321
83310
  exports.SourceNode = require('./source-map/source-node').SourceNode;
83322
83311
 
83323
- },{"./source-map/source-map-consumer":509,"./source-map/source-map-generator":510,"./source-map/source-node":511}],504:[function(require,module,exports){
83312
+ },{"./source-map/source-map-consumer":511,"./source-map/source-map-generator":512,"./source-map/source-node":513}],506:[function(require,module,exports){
83324
83313
  /* -*- Mode: js; js-indent-level: 2; -*- */
83325
83314
  /*
83326
83315
  * Copyright 2011 Mozilla Foundation and contributors
@@ -83419,7 +83408,7 @@ define(function (require, exports, module) {
83419
83408
 
83420
83409
  });
83421
83410
 
83422
- },{"./util":512,"amdefine":513}],505:[function(require,module,exports){
83411
+ },{"./util":514,"amdefine":515}],507:[function(require,module,exports){
83423
83412
  /* -*- Mode: js; js-indent-level: 2; -*- */
83424
83413
  /*
83425
83414
  * Copyright 2011 Mozilla Foundation and contributors
@@ -83562,7 +83551,7 @@ define(function (require, exports, module) {
83562
83551
 
83563
83552
  });
83564
83553
 
83565
- },{"./base64":506,"amdefine":513}],506:[function(require,module,exports){
83554
+ },{"./base64":508,"amdefine":515}],508:[function(require,module,exports){
83566
83555
  /* -*- Mode: js; js-indent-level: 2; -*- */
83567
83556
  /*
83568
83557
  * Copyright 2011 Mozilla Foundation and contributors
@@ -83606,7 +83595,7 @@ define(function (require, exports, module) {
83606
83595
 
83607
83596
  });
83608
83597
 
83609
- },{"amdefine":513}],507:[function(require,module,exports){
83598
+ },{"amdefine":515}],509:[function(require,module,exports){
83610
83599
  /* -*- Mode: js; js-indent-level: 2; -*- */
83611
83600
  /*
83612
83601
  * Copyright 2011 Mozilla Foundation and contributors
@@ -83725,7 +83714,7 @@ define(function (require, exports, module) {
83725
83714
 
83726
83715
  });
83727
83716
 
83728
- },{"amdefine":513}],508:[function(require,module,exports){
83717
+ },{"amdefine":515}],510:[function(require,module,exports){
83729
83718
  /* -*- Mode: js; js-indent-level: 2; -*- */
83730
83719
  /*
83731
83720
  * Copyright 2014 Mozilla Foundation and contributors
@@ -83813,7 +83802,7 @@ define(function (require, exports, module) {
83813
83802
 
83814
83803
  });
83815
83804
 
83816
- },{"./util":512,"amdefine":513}],509:[function(require,module,exports){
83805
+ },{"./util":514,"amdefine":515}],511:[function(require,module,exports){
83817
83806
  /* -*- Mode: js; js-indent-level: 2; -*- */
83818
83807
  /*
83819
83808
  * Copyright 2011 Mozilla Foundation and contributors
@@ -84773,7 +84762,7 @@ define(function (require, exports, module) {
84773
84762
 
84774
84763
  });
84775
84764
 
84776
- },{"./array-set":504,"./base64-vlq":505,"./binary-search":507,"./util":512,"amdefine":513}],510:[function(require,module,exports){
84765
+ },{"./array-set":506,"./base64-vlq":507,"./binary-search":509,"./util":514,"amdefine":515}],512:[function(require,module,exports){
84777
84766
  /* -*- Mode: js; js-indent-level: 2; -*- */
84778
84767
  /*
84779
84768
  * Copyright 2011 Mozilla Foundation and contributors
@@ -85175,7 +85164,7 @@ define(function (require, exports, module) {
85175
85164
 
85176
85165
  });
85177
85166
 
85178
- },{"./array-set":504,"./base64-vlq":505,"./mapping-list":508,"./util":512,"amdefine":513}],511:[function(require,module,exports){
85167
+ },{"./array-set":506,"./base64-vlq":507,"./mapping-list":510,"./util":514,"amdefine":515}],513:[function(require,module,exports){
85179
85168
  /* -*- Mode: js; js-indent-level: 2; -*- */
85180
85169
  /*
85181
85170
  * Copyright 2011 Mozilla Foundation and contributors
@@ -85591,7 +85580,7 @@ define(function (require, exports, module) {
85591
85580
 
85592
85581
  });
85593
85582
 
85594
- },{"./source-map-generator":510,"./util":512,"amdefine":513}],512:[function(require,module,exports){
85583
+ },{"./source-map-generator":512,"./util":514,"amdefine":515}],514:[function(require,module,exports){
85595
85584
  /* -*- Mode: js; js-indent-level: 2; -*- */
85596
85585
  /*
85597
85586
  * Copyright 2011 Mozilla Foundation and contributors
@@ -85912,7 +85901,7 @@ define(function (require, exports, module) {
85912
85901
 
85913
85902
  });
85914
85903
 
85915
- },{"amdefine":513}],513:[function(require,module,exports){
85904
+ },{"amdefine":515}],515:[function(require,module,exports){
85916
85905
  (function (process,__filename){
85917
85906
  /** vim: et:ts=4:sw=4:sts=4
85918
85907
  * @license amdefine 0.1.0 Copyright (c) 2011, The Dojo Foundation All Rights Reserved.
@@ -86215,7 +86204,7 @@ function amdefine(module, requireFn) {
86215
86204
  module.exports = amdefine;
86216
86205
 
86217
86206
  }).call(this,require('_process'),"/node_modules/source-map/node_modules/amdefine/amdefine.js")
86218
- },{"_process":200,"path":199}],514:[function(require,module,exports){
86207
+ },{"_process":200,"path":199}],516:[function(require,module,exports){
86219
86208
  /*!
86220
86209
  strip-json-comments
86221
86210
  Strip comments from JSON. Lets you use comments in your JSON files!
@@ -86284,7 +86273,7 @@ module.exports = amdefine;
86284
86273
  }
86285
86274
  })();
86286
86275
 
86287
- },{}],515:[function(require,module,exports){
86276
+ },{}],517:[function(require,module,exports){
86288
86277
  'use strict';
86289
86278
  module.exports = function toFastProperties(obj) {
86290
86279
  /*jshint -W027*/
@@ -86295,17 +86284,17 @@ module.exports = function toFastProperties(obj) {
86295
86284
  eval(obj);
86296
86285
  };
86297
86286
 
86298
- },{}],516:[function(require,module,exports){
86287
+ },{}],518:[function(require,module,exports){
86299
86288
  'use strict';
86300
86289
  module.exports = function (str) {
86301
86290
  return str.replace(/[\s\uFEFF\xA0]+$/g, '');
86302
86291
  };
86303
86292
 
86304
- },{}],517:[function(require,module,exports){
86293
+ },{}],519:[function(require,module,exports){
86305
86294
  module.exports={
86306
86295
  "name": "babel-core",
86307
86296
  "description": "A compiler for writing next generation JavaScript",
86308
- "version": "5.4.4",
86297
+ "version": "5.4.5",
86309
86298
  "author": "Sebastian McKenzie <sebmck@gmail.com>",
86310
86299
  "homepage": "https://babeljs.io/",
86311
86300
  "license": "MIT",
@@ -86382,7 +86371,7 @@ module.exports={
86382
86371
  }
86383
86372
  }
86384
86373
 
86385
- },{}],518:[function(require,module,exports){
86374
+ },{}],520:[function(require,module,exports){
86386
86375
  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,"_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},"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},"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},"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,"_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,"_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},"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},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"ForStatement","end":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},"type":"ForStatement","end":null,"_paths":null}],"type":"BlockStatement","end":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},"type":"CatchClause","end":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},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":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},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"TryStatement","end":null,"_paths":null}],"type":"BlockStatement","end":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},"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},"type":"CatchClause","end":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},"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},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionDeclaration","end":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,"_paths":null}],"type":"NewExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_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},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_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},"type":"ForStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionDeclaration","end":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,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_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},"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},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"ForStatement","end":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},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":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},"type":"ForStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionDeclaration","end":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,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_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},"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},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"ForStatement","end":null,"_paths":null}],"type":"BlockStatement","end":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}],"type":"BlockStatement","end":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},"type":"ForStatement","end":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,"_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},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"ForInStatement","end":null,"_paths":null}],"type":"BlockStatement","end":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,"_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},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"ForStatement","end":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,"_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,"test":{"start":null,"loc":null,"range":null,"operator":"!","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"_descriptor","type":"Identifier","end":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,"_paths":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,"_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,"leadingComments":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,"_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,"_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},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"ForInStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"ForStatement","end":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,"_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},"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},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":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},"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},"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},"type":"IfStatement","end":null,"_paths":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_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},"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,"_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},"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},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_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,"_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},"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},"type":"ForInStatement","end":null,"_paths":null}],"type":"BlockStatement","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":"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},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_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,"_paths":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,"_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},"type":"ForInStatement","end":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,"_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},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":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},"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},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":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,"_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},"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},"type":"ForStatement","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},"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},"type":"IfStatement","end":null,"_paths":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_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},"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},"type":"ForStatement","end":null,"_paths":null}],"type":"BlockStatement","end":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},"type":"CatchClause","end":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},"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},"type":"TryStatement","end":null,"_paths":null}],"type":"BlockStatement","end":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},"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},"type":"IfStatement","end":null,"_paths":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_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,"_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,"_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},"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,"_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,"_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,"_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},"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},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_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,"_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,"_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,"_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,"_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,"_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,"_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,"_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,"_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,"_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},"type":"ForStatement","end":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,"_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,"_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}],"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},"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},"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},"type":"IfStatement","end":null,"_paths":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_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,"_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},"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},"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},"type":"IfStatement","end":null,"_paths":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null}}
86387
86376
  },{}]},{},[19])(19)
86388
86377
  });