@devizovaburza/txs-sdk 3.1.26 → 3.1.28

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.
package/dist/v1/index.mjs CHANGED
@@ -4103,7 +4103,7 @@ var hasRequiredEsprima;
4103
4103
  function requireEsprima () {
4104
4104
  if (hasRequiredEsprima) return esprima$1.exports;
4105
4105
  hasRequiredEsprima = 1;
4106
- (function (module, exports$1) {
4106
+ (function (module, exports) {
4107
4107
  (function webpackUniversalModuleDefinition(root, factory) {
4108
4108
  /* istanbul ignore next */
4109
4109
  module.exports = factory();
@@ -4153,7 +4153,7 @@ function requireEsprima () {
4153
4153
  /************************************************************************/
4154
4154
  /******/ ([
4155
4155
  /* 0 */
4156
- /***/ function(module, exports$1, __webpack_require__) {
4156
+ /***/ function(module, exports, __webpack_require__) {
4157
4157
  /*
4158
4158
  Copyright JS Foundation and other contributors, https://js.foundation/
4159
4159
 
@@ -4177,7 +4177,7 @@ function requireEsprima () {
4177
4177
  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
4178
4178
  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4179
4179
  */
4180
- Object.defineProperty(exports$1, "__esModule", { value: true });
4180
+ Object.defineProperty(exports, "__esModule", { value: true });
4181
4181
  var comment_handler_1 = __webpack_require__(1);
4182
4182
  var jsx_parser_1 = __webpack_require__(3);
4183
4183
  var parser_1 = __webpack_require__(8);
@@ -4228,19 +4228,19 @@ function requireEsprima () {
4228
4228
  }
4229
4229
  return ast;
4230
4230
  }
4231
- exports$1.parse = parse;
4231
+ exports.parse = parse;
4232
4232
  function parseModule(code, options, delegate) {
4233
4233
  var parsingOptions = options || {};
4234
4234
  parsingOptions.sourceType = 'module';
4235
4235
  return parse(code, parsingOptions, delegate);
4236
4236
  }
4237
- exports$1.parseModule = parseModule;
4237
+ exports.parseModule = parseModule;
4238
4238
  function parseScript(code, options, delegate) {
4239
4239
  var parsingOptions = options || {};
4240
4240
  parsingOptions.sourceType = 'script';
4241
4241
  return parse(code, parsingOptions, delegate);
4242
4242
  }
4243
- exports$1.parseScript = parseScript;
4243
+ exports.parseScript = parseScript;
4244
4244
  function tokenize(code, options, delegate) {
4245
4245
  var tokenizer = new tokenizer_1.Tokenizer(code, options);
4246
4246
  var tokens;
@@ -4265,17 +4265,17 @@ function requireEsprima () {
4265
4265
  }
4266
4266
  return tokens;
4267
4267
  }
4268
- exports$1.tokenize = tokenize;
4268
+ exports.tokenize = tokenize;
4269
4269
  var syntax_1 = __webpack_require__(2);
4270
- exports$1.Syntax = syntax_1.Syntax;
4270
+ exports.Syntax = syntax_1.Syntax;
4271
4271
  // Sync with *.json manifests.
4272
- exports$1.version = '4.0.1';
4272
+ exports.version = '4.0.1';
4273
4273
 
4274
4274
 
4275
4275
  /***/ },
4276
4276
  /* 1 */
4277
- /***/ function(module, exports$1, __webpack_require__) {
4278
- Object.defineProperty(exports$1, "__esModule", { value: true });
4277
+ /***/ function(module, exports, __webpack_require__) {
4278
+ Object.defineProperty(exports, "__esModule", { value: true });
4279
4279
  var syntax_1 = __webpack_require__(2);
4280
4280
  var CommentHandler = (function () {
4281
4281
  function CommentHandler() {
@@ -4422,14 +4422,14 @@ function requireEsprima () {
4422
4422
  };
4423
4423
  return CommentHandler;
4424
4424
  }());
4425
- exports$1.CommentHandler = CommentHandler;
4425
+ exports.CommentHandler = CommentHandler;
4426
4426
 
4427
4427
 
4428
4428
  /***/ },
4429
4429
  /* 2 */
4430
- /***/ function(module, exports$1) {
4431
- Object.defineProperty(exports$1, "__esModule", { value: true });
4432
- exports$1.Syntax = {
4430
+ /***/ function(module, exports) {
4431
+ Object.defineProperty(exports, "__esModule", { value: true });
4432
+ exports.Syntax = {
4433
4433
  AssignmentExpression: 'AssignmentExpression',
4434
4434
  AssignmentPattern: 'AssignmentPattern',
4435
4435
  ArrayExpression: 'ArrayExpression',
@@ -4501,7 +4501,7 @@ function requireEsprima () {
4501
4501
 
4502
4502
  /***/ },
4503
4503
  /* 3 */
4504
- /***/ function(module, exports$1, __webpack_require__) {
4504
+ /***/ function(module, exports, __webpack_require__) {
4505
4505
  /* istanbul ignore next */
4506
4506
  var __extends = (this && this.__extends) || (function () {
4507
4507
  var extendStatics = Object.setPrototypeOf ||
@@ -4513,7 +4513,7 @@ function requireEsprima () {
4513
4513
  d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
4514
4514
  };
4515
4515
  })();
4516
- Object.defineProperty(exports$1, "__esModule", { value: true });
4516
+ Object.defineProperty(exports, "__esModule", { value: true });
4517
4517
  var character_1 = __webpack_require__(4);
4518
4518
  var JSXNode = __webpack_require__(5);
4519
4519
  var jsx_syntax_1 = __webpack_require__(6);
@@ -5035,13 +5035,13 @@ function requireEsprima () {
5035
5035
  };
5036
5036
  return JSXParser;
5037
5037
  }(parser_1.Parser));
5038
- exports$1.JSXParser = JSXParser;
5038
+ exports.JSXParser = JSXParser;
5039
5039
 
5040
5040
 
5041
5041
  /***/ },
5042
5042
  /* 4 */
5043
- /***/ function(module, exports$1) {
5044
- Object.defineProperty(exports$1, "__esModule", { value: true });
5043
+ /***/ function(module, exports) {
5044
+ Object.defineProperty(exports, "__esModule", { value: true });
5045
5045
  // See also tools/generate-unicode-regex.js.
5046
5046
  var Regex = {
5047
5047
  // Unicode v8.0.0 NonAsciiIdentifierStart:
@@ -5049,7 +5049,7 @@ function requireEsprima () {
5049
5049
  // Unicode v8.0.0 NonAsciiIdentifierPart:
5050
5050
  NonAsciiIdentifierPart: /[\xAA\xB5\xB7\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0300-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u0483-\u0487\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u05D0-\u05EA\u05F0-\u05F2\u0610-\u061A\u0620-\u0669\u066E-\u06D3\u06D5-\u06DC\u06DF-\u06E8\u06EA-\u06FC\u06FF\u0710-\u074A\u074D-\u07B1\u07C0-\u07F5\u07FA\u0800-\u082D\u0840-\u085B\u08A0-\u08B4\u08E3-\u0963\u0966-\u096F\u0971-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09F1\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A75\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AEF\u0AF9\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B6F\u0B71\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BEF\u0C00-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58-\u0C5A\u0C60-\u0C63\u0C66-\u0C6F\u0C81-\u0C83\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1\u0CF2\u0D01-\u0D03\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D-\u0D44\u0D46-\u0D48\u0D4A-\u0D4E\u0D57\u0D5F-\u0D63\u0D66-\u0D6F\u0D7A-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2\u0DF3\u0E01-\u0E3A\u0E40-\u0E4E\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB9\u0EBB-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECD\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E-\u0F47\u0F49-\u0F6C\u0F71-\u0F84\u0F86-\u0F97\u0F99-\u0FBC\u0FC6\u1000-\u1049\u1050-\u109D\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u135F\u1369-\u1371\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1714\u1720-\u1734\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17D3\u17D7\u17DC\u17DD\u17E0-\u17E9\u180B-\u180D\u1810-\u1819\u1820-\u1877\u1880-\u18AA\u18B0-\u18F5\u1900-\u191E\u1920-\u192B\u1930-\u193B\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u1A00-\u1A1B\u1A20-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA7\u1AB0-\u1ABD\u1B00-\u1B4B\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1BF3\u1C00-\u1C37\u1C40-\u1C49\u1C4D-\u1C7D\u1CD0-\u1CD2\u1CD4-\u1CF6\u1CF8\u1CF9\u1D00-\u1DF5\u1DFC-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u200C\u200D\u203F\u2040\u2054\u2071\u207F\u2090-\u209C\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2102\u2107\u210A-\u2113\u2115\u2118-\u211D\u2124\u2126\u2128\u212A-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D7F-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2DFF\u3005-\u3007\u3021-\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u3099-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FD5\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66F\uA674-\uA67D\uA67F-\uA6F1\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AD\uA7B0-\uA7B7\uA7F7-\uA827\uA840-\uA873\uA880-\uA8C4\uA8D0-\uA8D9\uA8E0-\uA8F7\uA8FB\uA8FD\uA900-\uA92D\uA930-\uA953\uA960-\uA97C\uA980-\uA9C0\uA9CF-\uA9D9\uA9E0-\uA9FE\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA60-\uAA76\uAA7A-\uAAC2\uAADB-\uAADD\uAAE0-\uAAEF\uAAF2-\uAAF6\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABEA\uABEC\uABED\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE00-\uFE0F\uFE20-\uFE2F\uFE33\uFE34\uFE4D-\uFE4F\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF3F\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDDFD\uDE80-\uDE9C\uDEA0-\uDED0\uDEE0\uDF00-\uDF1F\uDF30-\uDF4A\uDF50-\uDF7A\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCA0-\uDCA9\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00-\uDE03\uDE05\uDE06\uDE0C-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE38-\uDE3A\uDE3F\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE6\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD804[\uDC00-\uDC46\uDC66-\uDC6F\uDC7F-\uDCBA\uDCD0-\uDCE8\uDCF0-\uDCF9\uDD00-\uDD34\uDD36-\uDD3F\uDD50-\uDD73\uDD76\uDD80-\uDDC4\uDDCA-\uDDCC\uDDD0-\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE37\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEEA\uDEF0-\uDEF9\uDF00-\uDF03\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3C-\uDF44\uDF47\uDF48\uDF4B-\uDF4D\uDF50\uDF57\uDF5D-\uDF63\uDF66-\uDF6C\uDF70-\uDF74]|\uD805[\uDC80-\uDCC5\uDCC7\uDCD0-\uDCD9\uDD80-\uDDB5\uDDB8-\uDDC0\uDDD8-\uDDDD\uDE00-\uDE40\uDE44\uDE50-\uDE59\uDE80-\uDEB7\uDEC0-\uDEC9\uDF00-\uDF19\uDF1D-\uDF2B\uDF30-\uDF39]|\uD806[\uDCA0-\uDCE9\uDCFF\uDEC0-\uDEF8]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE60-\uDE69\uDED0-\uDEED\uDEF0-\uDEF4\uDF00-\uDF36\uDF40-\uDF43\uDF50-\uDF59\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50-\uDF7E\uDF8F-\uDF9F]|\uD82C[\uDC00\uDC01]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99\uDC9D\uDC9E]|\uD834[\uDD65-\uDD69\uDD6D-\uDD72\uDD7B-\uDD82\uDD85-\uDD8B\uDDAA-\uDDAD\uDE42-\uDE44]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB\uDFCE-\uDFFF]|\uD836[\uDE00-\uDE36\uDE3B-\uDE6C\uDE75\uDE84\uDE9B-\uDE9F\uDEA1-\uDEAF]|\uD83A[\uDC00-\uDCC4\uDCD0-\uDCD6]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1]|\uD87E[\uDC00-\uDE1D]|\uDB40[\uDD00-\uDDEF]/
5051
5051
  };
5052
- exports$1.Character = {
5052
+ exports.Character = {
5053
5053
  /* tslint:disable:no-bitwise */
5054
5054
  fromCodePoint: function (cp) {
5055
5055
  return (cp < 0x10000) ? String.fromCharCode(cp) :
@@ -5071,7 +5071,7 @@ function requireEsprima () {
5071
5071
  (cp >= 0x41 && cp <= 0x5A) ||
5072
5072
  (cp >= 0x61 && cp <= 0x7A) ||
5073
5073
  (cp === 0x5C) ||
5074
- ((cp >= 0x80) && Regex.NonAsciiIdentifierStart.test(exports$1.Character.fromCodePoint(cp)));
5074
+ ((cp >= 0x80) && Regex.NonAsciiIdentifierStart.test(exports.Character.fromCodePoint(cp)));
5075
5075
  },
5076
5076
  isIdentifierPart: function (cp) {
5077
5077
  return (cp === 0x24) || (cp === 0x5F) ||
@@ -5079,7 +5079,7 @@ function requireEsprima () {
5079
5079
  (cp >= 0x61 && cp <= 0x7A) ||
5080
5080
  (cp >= 0x30 && cp <= 0x39) ||
5081
5081
  (cp === 0x5C) ||
5082
- ((cp >= 0x80) && Regex.NonAsciiIdentifierPart.test(exports$1.Character.fromCodePoint(cp)));
5082
+ ((cp >= 0x80) && Regex.NonAsciiIdentifierPart.test(exports.Character.fromCodePoint(cp)));
5083
5083
  },
5084
5084
  // https://tc39.github.io/ecma262/#sec-literals-numeric-literals
5085
5085
  isDecimalDigit: function (cp) {
@@ -5098,8 +5098,8 @@ function requireEsprima () {
5098
5098
 
5099
5099
  /***/ },
5100
5100
  /* 5 */
5101
- /***/ function(module, exports$1, __webpack_require__) {
5102
- Object.defineProperty(exports$1, "__esModule", { value: true });
5101
+ /***/ function(module, exports, __webpack_require__) {
5102
+ Object.defineProperty(exports, "__esModule", { value: true });
5103
5103
  var jsx_syntax_1 = __webpack_require__(6);
5104
5104
  /* tslint:disable:max-classes-per-file */
5105
5105
  var JSXClosingElement = (function () {
@@ -5109,7 +5109,7 @@ function requireEsprima () {
5109
5109
  }
5110
5110
  return JSXClosingElement;
5111
5111
  }());
5112
- exports$1.JSXClosingElement = JSXClosingElement;
5112
+ exports.JSXClosingElement = JSXClosingElement;
5113
5113
  var JSXElement = (function () {
5114
5114
  function JSXElement(openingElement, children, closingElement) {
5115
5115
  this.type = jsx_syntax_1.JSXSyntax.JSXElement;
@@ -5119,14 +5119,14 @@ function requireEsprima () {
5119
5119
  }
5120
5120
  return JSXElement;
5121
5121
  }());
5122
- exports$1.JSXElement = JSXElement;
5122
+ exports.JSXElement = JSXElement;
5123
5123
  var JSXEmptyExpression = (function () {
5124
5124
  function JSXEmptyExpression() {
5125
5125
  this.type = jsx_syntax_1.JSXSyntax.JSXEmptyExpression;
5126
5126
  }
5127
5127
  return JSXEmptyExpression;
5128
5128
  }());
5129
- exports$1.JSXEmptyExpression = JSXEmptyExpression;
5129
+ exports.JSXEmptyExpression = JSXEmptyExpression;
5130
5130
  var JSXExpressionContainer = (function () {
5131
5131
  function JSXExpressionContainer(expression) {
5132
5132
  this.type = jsx_syntax_1.JSXSyntax.JSXExpressionContainer;
@@ -5134,7 +5134,7 @@ function requireEsprima () {
5134
5134
  }
5135
5135
  return JSXExpressionContainer;
5136
5136
  }());
5137
- exports$1.JSXExpressionContainer = JSXExpressionContainer;
5137
+ exports.JSXExpressionContainer = JSXExpressionContainer;
5138
5138
  var JSXIdentifier = (function () {
5139
5139
  function JSXIdentifier(name) {
5140
5140
  this.type = jsx_syntax_1.JSXSyntax.JSXIdentifier;
@@ -5142,7 +5142,7 @@ function requireEsprima () {
5142
5142
  }
5143
5143
  return JSXIdentifier;
5144
5144
  }());
5145
- exports$1.JSXIdentifier = JSXIdentifier;
5145
+ exports.JSXIdentifier = JSXIdentifier;
5146
5146
  var JSXMemberExpression = (function () {
5147
5147
  function JSXMemberExpression(object, property) {
5148
5148
  this.type = jsx_syntax_1.JSXSyntax.JSXMemberExpression;
@@ -5151,7 +5151,7 @@ function requireEsprima () {
5151
5151
  }
5152
5152
  return JSXMemberExpression;
5153
5153
  }());
5154
- exports$1.JSXMemberExpression = JSXMemberExpression;
5154
+ exports.JSXMemberExpression = JSXMemberExpression;
5155
5155
  var JSXAttribute = (function () {
5156
5156
  function JSXAttribute(name, value) {
5157
5157
  this.type = jsx_syntax_1.JSXSyntax.JSXAttribute;
@@ -5160,7 +5160,7 @@ function requireEsprima () {
5160
5160
  }
5161
5161
  return JSXAttribute;
5162
5162
  }());
5163
- exports$1.JSXAttribute = JSXAttribute;
5163
+ exports.JSXAttribute = JSXAttribute;
5164
5164
  var JSXNamespacedName = (function () {
5165
5165
  function JSXNamespacedName(namespace, name) {
5166
5166
  this.type = jsx_syntax_1.JSXSyntax.JSXNamespacedName;
@@ -5169,7 +5169,7 @@ function requireEsprima () {
5169
5169
  }
5170
5170
  return JSXNamespacedName;
5171
5171
  }());
5172
- exports$1.JSXNamespacedName = JSXNamespacedName;
5172
+ exports.JSXNamespacedName = JSXNamespacedName;
5173
5173
  var JSXOpeningElement = (function () {
5174
5174
  function JSXOpeningElement(name, selfClosing, attributes) {
5175
5175
  this.type = jsx_syntax_1.JSXSyntax.JSXOpeningElement;
@@ -5179,7 +5179,7 @@ function requireEsprima () {
5179
5179
  }
5180
5180
  return JSXOpeningElement;
5181
5181
  }());
5182
- exports$1.JSXOpeningElement = JSXOpeningElement;
5182
+ exports.JSXOpeningElement = JSXOpeningElement;
5183
5183
  var JSXSpreadAttribute = (function () {
5184
5184
  function JSXSpreadAttribute(argument) {
5185
5185
  this.type = jsx_syntax_1.JSXSyntax.JSXSpreadAttribute;
@@ -5187,7 +5187,7 @@ function requireEsprima () {
5187
5187
  }
5188
5188
  return JSXSpreadAttribute;
5189
5189
  }());
5190
- exports$1.JSXSpreadAttribute = JSXSpreadAttribute;
5190
+ exports.JSXSpreadAttribute = JSXSpreadAttribute;
5191
5191
  var JSXText = (function () {
5192
5192
  function JSXText(value, raw) {
5193
5193
  this.type = jsx_syntax_1.JSXSyntax.JSXText;
@@ -5196,14 +5196,14 @@ function requireEsprima () {
5196
5196
  }
5197
5197
  return JSXText;
5198
5198
  }());
5199
- exports$1.JSXText = JSXText;
5199
+ exports.JSXText = JSXText;
5200
5200
 
5201
5201
 
5202
5202
  /***/ },
5203
5203
  /* 6 */
5204
- /***/ function(module, exports$1) {
5205
- Object.defineProperty(exports$1, "__esModule", { value: true });
5206
- exports$1.JSXSyntax = {
5204
+ /***/ function(module, exports) {
5205
+ Object.defineProperty(exports, "__esModule", { value: true });
5206
+ exports.JSXSyntax = {
5207
5207
  JSXAttribute: 'JSXAttribute',
5208
5208
  JSXClosingElement: 'JSXClosingElement',
5209
5209
  JSXElement: 'JSXElement',
@@ -5220,8 +5220,8 @@ function requireEsprima () {
5220
5220
 
5221
5221
  /***/ },
5222
5222
  /* 7 */
5223
- /***/ function(module, exports$1, __webpack_require__) {
5224
- Object.defineProperty(exports$1, "__esModule", { value: true });
5223
+ /***/ function(module, exports, __webpack_require__) {
5224
+ Object.defineProperty(exports, "__esModule", { value: true });
5225
5225
  var syntax_1 = __webpack_require__(2);
5226
5226
  /* tslint:disable:max-classes-per-file */
5227
5227
  var ArrayExpression = (function () {
@@ -5231,7 +5231,7 @@ function requireEsprima () {
5231
5231
  }
5232
5232
  return ArrayExpression;
5233
5233
  }());
5234
- exports$1.ArrayExpression = ArrayExpression;
5234
+ exports.ArrayExpression = ArrayExpression;
5235
5235
  var ArrayPattern = (function () {
5236
5236
  function ArrayPattern(elements) {
5237
5237
  this.type = syntax_1.Syntax.ArrayPattern;
@@ -5239,7 +5239,7 @@ function requireEsprima () {
5239
5239
  }
5240
5240
  return ArrayPattern;
5241
5241
  }());
5242
- exports$1.ArrayPattern = ArrayPattern;
5242
+ exports.ArrayPattern = ArrayPattern;
5243
5243
  var ArrowFunctionExpression = (function () {
5244
5244
  function ArrowFunctionExpression(params, body, expression) {
5245
5245
  this.type = syntax_1.Syntax.ArrowFunctionExpression;
@@ -5252,7 +5252,7 @@ function requireEsprima () {
5252
5252
  }
5253
5253
  return ArrowFunctionExpression;
5254
5254
  }());
5255
- exports$1.ArrowFunctionExpression = ArrowFunctionExpression;
5255
+ exports.ArrowFunctionExpression = ArrowFunctionExpression;
5256
5256
  var AssignmentExpression = (function () {
5257
5257
  function AssignmentExpression(operator, left, right) {
5258
5258
  this.type = syntax_1.Syntax.AssignmentExpression;
@@ -5262,7 +5262,7 @@ function requireEsprima () {
5262
5262
  }
5263
5263
  return AssignmentExpression;
5264
5264
  }());
5265
- exports$1.AssignmentExpression = AssignmentExpression;
5265
+ exports.AssignmentExpression = AssignmentExpression;
5266
5266
  var AssignmentPattern = (function () {
5267
5267
  function AssignmentPattern(left, right) {
5268
5268
  this.type = syntax_1.Syntax.AssignmentPattern;
@@ -5271,7 +5271,7 @@ function requireEsprima () {
5271
5271
  }
5272
5272
  return AssignmentPattern;
5273
5273
  }());
5274
- exports$1.AssignmentPattern = AssignmentPattern;
5274
+ exports.AssignmentPattern = AssignmentPattern;
5275
5275
  var AsyncArrowFunctionExpression = (function () {
5276
5276
  function AsyncArrowFunctionExpression(params, body, expression) {
5277
5277
  this.type = syntax_1.Syntax.ArrowFunctionExpression;
@@ -5284,7 +5284,7 @@ function requireEsprima () {
5284
5284
  }
5285
5285
  return AsyncArrowFunctionExpression;
5286
5286
  }());
5287
- exports$1.AsyncArrowFunctionExpression = AsyncArrowFunctionExpression;
5287
+ exports.AsyncArrowFunctionExpression = AsyncArrowFunctionExpression;
5288
5288
  var AsyncFunctionDeclaration = (function () {
5289
5289
  function AsyncFunctionDeclaration(id, params, body) {
5290
5290
  this.type = syntax_1.Syntax.FunctionDeclaration;
@@ -5297,7 +5297,7 @@ function requireEsprima () {
5297
5297
  }
5298
5298
  return AsyncFunctionDeclaration;
5299
5299
  }());
5300
- exports$1.AsyncFunctionDeclaration = AsyncFunctionDeclaration;
5300
+ exports.AsyncFunctionDeclaration = AsyncFunctionDeclaration;
5301
5301
  var AsyncFunctionExpression = (function () {
5302
5302
  function AsyncFunctionExpression(id, params, body) {
5303
5303
  this.type = syntax_1.Syntax.FunctionExpression;
@@ -5310,7 +5310,7 @@ function requireEsprima () {
5310
5310
  }
5311
5311
  return AsyncFunctionExpression;
5312
5312
  }());
5313
- exports$1.AsyncFunctionExpression = AsyncFunctionExpression;
5313
+ exports.AsyncFunctionExpression = AsyncFunctionExpression;
5314
5314
  var AwaitExpression = (function () {
5315
5315
  function AwaitExpression(argument) {
5316
5316
  this.type = syntax_1.Syntax.AwaitExpression;
@@ -5318,7 +5318,7 @@ function requireEsprima () {
5318
5318
  }
5319
5319
  return AwaitExpression;
5320
5320
  }());
5321
- exports$1.AwaitExpression = AwaitExpression;
5321
+ exports.AwaitExpression = AwaitExpression;
5322
5322
  var BinaryExpression = (function () {
5323
5323
  function BinaryExpression(operator, left, right) {
5324
5324
  var logical = (operator === '||' || operator === '&&');
@@ -5329,7 +5329,7 @@ function requireEsprima () {
5329
5329
  }
5330
5330
  return BinaryExpression;
5331
5331
  }());
5332
- exports$1.BinaryExpression = BinaryExpression;
5332
+ exports.BinaryExpression = BinaryExpression;
5333
5333
  var BlockStatement = (function () {
5334
5334
  function BlockStatement(body) {
5335
5335
  this.type = syntax_1.Syntax.BlockStatement;
@@ -5337,7 +5337,7 @@ function requireEsprima () {
5337
5337
  }
5338
5338
  return BlockStatement;
5339
5339
  }());
5340
- exports$1.BlockStatement = BlockStatement;
5340
+ exports.BlockStatement = BlockStatement;
5341
5341
  var BreakStatement = (function () {
5342
5342
  function BreakStatement(label) {
5343
5343
  this.type = syntax_1.Syntax.BreakStatement;
@@ -5345,7 +5345,7 @@ function requireEsprima () {
5345
5345
  }
5346
5346
  return BreakStatement;
5347
5347
  }());
5348
- exports$1.BreakStatement = BreakStatement;
5348
+ exports.BreakStatement = BreakStatement;
5349
5349
  var CallExpression = (function () {
5350
5350
  function CallExpression(callee, args) {
5351
5351
  this.type = syntax_1.Syntax.CallExpression;
@@ -5354,7 +5354,7 @@ function requireEsprima () {
5354
5354
  }
5355
5355
  return CallExpression;
5356
5356
  }());
5357
- exports$1.CallExpression = CallExpression;
5357
+ exports.CallExpression = CallExpression;
5358
5358
  var CatchClause = (function () {
5359
5359
  function CatchClause(param, body) {
5360
5360
  this.type = syntax_1.Syntax.CatchClause;
@@ -5363,7 +5363,7 @@ function requireEsprima () {
5363
5363
  }
5364
5364
  return CatchClause;
5365
5365
  }());
5366
- exports$1.CatchClause = CatchClause;
5366
+ exports.CatchClause = CatchClause;
5367
5367
  var ClassBody = (function () {
5368
5368
  function ClassBody(body) {
5369
5369
  this.type = syntax_1.Syntax.ClassBody;
@@ -5371,7 +5371,7 @@ function requireEsprima () {
5371
5371
  }
5372
5372
  return ClassBody;
5373
5373
  }());
5374
- exports$1.ClassBody = ClassBody;
5374
+ exports.ClassBody = ClassBody;
5375
5375
  var ClassDeclaration = (function () {
5376
5376
  function ClassDeclaration(id, superClass, body) {
5377
5377
  this.type = syntax_1.Syntax.ClassDeclaration;
@@ -5381,7 +5381,7 @@ function requireEsprima () {
5381
5381
  }
5382
5382
  return ClassDeclaration;
5383
5383
  }());
5384
- exports$1.ClassDeclaration = ClassDeclaration;
5384
+ exports.ClassDeclaration = ClassDeclaration;
5385
5385
  var ClassExpression = (function () {
5386
5386
  function ClassExpression(id, superClass, body) {
5387
5387
  this.type = syntax_1.Syntax.ClassExpression;
@@ -5391,7 +5391,7 @@ function requireEsprima () {
5391
5391
  }
5392
5392
  return ClassExpression;
5393
5393
  }());
5394
- exports$1.ClassExpression = ClassExpression;
5394
+ exports.ClassExpression = ClassExpression;
5395
5395
  var ComputedMemberExpression = (function () {
5396
5396
  function ComputedMemberExpression(object, property) {
5397
5397
  this.type = syntax_1.Syntax.MemberExpression;
@@ -5401,7 +5401,7 @@ function requireEsprima () {
5401
5401
  }
5402
5402
  return ComputedMemberExpression;
5403
5403
  }());
5404
- exports$1.ComputedMemberExpression = ComputedMemberExpression;
5404
+ exports.ComputedMemberExpression = ComputedMemberExpression;
5405
5405
  var ConditionalExpression = (function () {
5406
5406
  function ConditionalExpression(test, consequent, alternate) {
5407
5407
  this.type = syntax_1.Syntax.ConditionalExpression;
@@ -5411,7 +5411,7 @@ function requireEsprima () {
5411
5411
  }
5412
5412
  return ConditionalExpression;
5413
5413
  }());
5414
- exports$1.ConditionalExpression = ConditionalExpression;
5414
+ exports.ConditionalExpression = ConditionalExpression;
5415
5415
  var ContinueStatement = (function () {
5416
5416
  function ContinueStatement(label) {
5417
5417
  this.type = syntax_1.Syntax.ContinueStatement;
@@ -5419,14 +5419,14 @@ function requireEsprima () {
5419
5419
  }
5420
5420
  return ContinueStatement;
5421
5421
  }());
5422
- exports$1.ContinueStatement = ContinueStatement;
5422
+ exports.ContinueStatement = ContinueStatement;
5423
5423
  var DebuggerStatement = (function () {
5424
5424
  function DebuggerStatement() {
5425
5425
  this.type = syntax_1.Syntax.DebuggerStatement;
5426
5426
  }
5427
5427
  return DebuggerStatement;
5428
5428
  }());
5429
- exports$1.DebuggerStatement = DebuggerStatement;
5429
+ exports.DebuggerStatement = DebuggerStatement;
5430
5430
  var Directive = (function () {
5431
5431
  function Directive(expression, directive) {
5432
5432
  this.type = syntax_1.Syntax.ExpressionStatement;
@@ -5435,7 +5435,7 @@ function requireEsprima () {
5435
5435
  }
5436
5436
  return Directive;
5437
5437
  }());
5438
- exports$1.Directive = Directive;
5438
+ exports.Directive = Directive;
5439
5439
  var DoWhileStatement = (function () {
5440
5440
  function DoWhileStatement(body, test) {
5441
5441
  this.type = syntax_1.Syntax.DoWhileStatement;
@@ -5444,14 +5444,14 @@ function requireEsprima () {
5444
5444
  }
5445
5445
  return DoWhileStatement;
5446
5446
  }());
5447
- exports$1.DoWhileStatement = DoWhileStatement;
5447
+ exports.DoWhileStatement = DoWhileStatement;
5448
5448
  var EmptyStatement = (function () {
5449
5449
  function EmptyStatement() {
5450
5450
  this.type = syntax_1.Syntax.EmptyStatement;
5451
5451
  }
5452
5452
  return EmptyStatement;
5453
5453
  }());
5454
- exports$1.EmptyStatement = EmptyStatement;
5454
+ exports.EmptyStatement = EmptyStatement;
5455
5455
  var ExportAllDeclaration = (function () {
5456
5456
  function ExportAllDeclaration(source) {
5457
5457
  this.type = syntax_1.Syntax.ExportAllDeclaration;
@@ -5459,7 +5459,7 @@ function requireEsprima () {
5459
5459
  }
5460
5460
  return ExportAllDeclaration;
5461
5461
  }());
5462
- exports$1.ExportAllDeclaration = ExportAllDeclaration;
5462
+ exports.ExportAllDeclaration = ExportAllDeclaration;
5463
5463
  var ExportDefaultDeclaration = (function () {
5464
5464
  function ExportDefaultDeclaration(declaration) {
5465
5465
  this.type = syntax_1.Syntax.ExportDefaultDeclaration;
@@ -5467,7 +5467,7 @@ function requireEsprima () {
5467
5467
  }
5468
5468
  return ExportDefaultDeclaration;
5469
5469
  }());
5470
- exports$1.ExportDefaultDeclaration = ExportDefaultDeclaration;
5470
+ exports.ExportDefaultDeclaration = ExportDefaultDeclaration;
5471
5471
  var ExportNamedDeclaration = (function () {
5472
5472
  function ExportNamedDeclaration(declaration, specifiers, source) {
5473
5473
  this.type = syntax_1.Syntax.ExportNamedDeclaration;
@@ -5477,7 +5477,7 @@ function requireEsprima () {
5477
5477
  }
5478
5478
  return ExportNamedDeclaration;
5479
5479
  }());
5480
- exports$1.ExportNamedDeclaration = ExportNamedDeclaration;
5480
+ exports.ExportNamedDeclaration = ExportNamedDeclaration;
5481
5481
  var ExportSpecifier = (function () {
5482
5482
  function ExportSpecifier(local, exported) {
5483
5483
  this.type = syntax_1.Syntax.ExportSpecifier;
@@ -5486,7 +5486,7 @@ function requireEsprima () {
5486
5486
  }
5487
5487
  return ExportSpecifier;
5488
5488
  }());
5489
- exports$1.ExportSpecifier = ExportSpecifier;
5489
+ exports.ExportSpecifier = ExportSpecifier;
5490
5490
  var ExpressionStatement = (function () {
5491
5491
  function ExpressionStatement(expression) {
5492
5492
  this.type = syntax_1.Syntax.ExpressionStatement;
@@ -5494,7 +5494,7 @@ function requireEsprima () {
5494
5494
  }
5495
5495
  return ExpressionStatement;
5496
5496
  }());
5497
- exports$1.ExpressionStatement = ExpressionStatement;
5497
+ exports.ExpressionStatement = ExpressionStatement;
5498
5498
  var ForInStatement = (function () {
5499
5499
  function ForInStatement(left, right, body) {
5500
5500
  this.type = syntax_1.Syntax.ForInStatement;
@@ -5505,7 +5505,7 @@ function requireEsprima () {
5505
5505
  }
5506
5506
  return ForInStatement;
5507
5507
  }());
5508
- exports$1.ForInStatement = ForInStatement;
5508
+ exports.ForInStatement = ForInStatement;
5509
5509
  var ForOfStatement = (function () {
5510
5510
  function ForOfStatement(left, right, body) {
5511
5511
  this.type = syntax_1.Syntax.ForOfStatement;
@@ -5515,7 +5515,7 @@ function requireEsprima () {
5515
5515
  }
5516
5516
  return ForOfStatement;
5517
5517
  }());
5518
- exports$1.ForOfStatement = ForOfStatement;
5518
+ exports.ForOfStatement = ForOfStatement;
5519
5519
  var ForStatement = (function () {
5520
5520
  function ForStatement(init, test, update, body) {
5521
5521
  this.type = syntax_1.Syntax.ForStatement;
@@ -5526,7 +5526,7 @@ function requireEsprima () {
5526
5526
  }
5527
5527
  return ForStatement;
5528
5528
  }());
5529
- exports$1.ForStatement = ForStatement;
5529
+ exports.ForStatement = ForStatement;
5530
5530
  var FunctionDeclaration = (function () {
5531
5531
  function FunctionDeclaration(id, params, body, generator) {
5532
5532
  this.type = syntax_1.Syntax.FunctionDeclaration;
@@ -5539,7 +5539,7 @@ function requireEsprima () {
5539
5539
  }
5540
5540
  return FunctionDeclaration;
5541
5541
  }());
5542
- exports$1.FunctionDeclaration = FunctionDeclaration;
5542
+ exports.FunctionDeclaration = FunctionDeclaration;
5543
5543
  var FunctionExpression = (function () {
5544
5544
  function FunctionExpression(id, params, body, generator) {
5545
5545
  this.type = syntax_1.Syntax.FunctionExpression;
@@ -5552,7 +5552,7 @@ function requireEsprima () {
5552
5552
  }
5553
5553
  return FunctionExpression;
5554
5554
  }());
5555
- exports$1.FunctionExpression = FunctionExpression;
5555
+ exports.FunctionExpression = FunctionExpression;
5556
5556
  var Identifier = (function () {
5557
5557
  function Identifier(name) {
5558
5558
  this.type = syntax_1.Syntax.Identifier;
@@ -5560,7 +5560,7 @@ function requireEsprima () {
5560
5560
  }
5561
5561
  return Identifier;
5562
5562
  }());
5563
- exports$1.Identifier = Identifier;
5563
+ exports.Identifier = Identifier;
5564
5564
  var IfStatement = (function () {
5565
5565
  function IfStatement(test, consequent, alternate) {
5566
5566
  this.type = syntax_1.Syntax.IfStatement;
@@ -5570,7 +5570,7 @@ function requireEsprima () {
5570
5570
  }
5571
5571
  return IfStatement;
5572
5572
  }());
5573
- exports$1.IfStatement = IfStatement;
5573
+ exports.IfStatement = IfStatement;
5574
5574
  var ImportDeclaration = (function () {
5575
5575
  function ImportDeclaration(specifiers, source) {
5576
5576
  this.type = syntax_1.Syntax.ImportDeclaration;
@@ -5579,7 +5579,7 @@ function requireEsprima () {
5579
5579
  }
5580
5580
  return ImportDeclaration;
5581
5581
  }());
5582
- exports$1.ImportDeclaration = ImportDeclaration;
5582
+ exports.ImportDeclaration = ImportDeclaration;
5583
5583
  var ImportDefaultSpecifier = (function () {
5584
5584
  function ImportDefaultSpecifier(local) {
5585
5585
  this.type = syntax_1.Syntax.ImportDefaultSpecifier;
@@ -5587,7 +5587,7 @@ function requireEsprima () {
5587
5587
  }
5588
5588
  return ImportDefaultSpecifier;
5589
5589
  }());
5590
- exports$1.ImportDefaultSpecifier = ImportDefaultSpecifier;
5590
+ exports.ImportDefaultSpecifier = ImportDefaultSpecifier;
5591
5591
  var ImportNamespaceSpecifier = (function () {
5592
5592
  function ImportNamespaceSpecifier(local) {
5593
5593
  this.type = syntax_1.Syntax.ImportNamespaceSpecifier;
@@ -5595,7 +5595,7 @@ function requireEsprima () {
5595
5595
  }
5596
5596
  return ImportNamespaceSpecifier;
5597
5597
  }());
5598
- exports$1.ImportNamespaceSpecifier = ImportNamespaceSpecifier;
5598
+ exports.ImportNamespaceSpecifier = ImportNamespaceSpecifier;
5599
5599
  var ImportSpecifier = (function () {
5600
5600
  function ImportSpecifier(local, imported) {
5601
5601
  this.type = syntax_1.Syntax.ImportSpecifier;
@@ -5604,7 +5604,7 @@ function requireEsprima () {
5604
5604
  }
5605
5605
  return ImportSpecifier;
5606
5606
  }());
5607
- exports$1.ImportSpecifier = ImportSpecifier;
5607
+ exports.ImportSpecifier = ImportSpecifier;
5608
5608
  var LabeledStatement = (function () {
5609
5609
  function LabeledStatement(label, body) {
5610
5610
  this.type = syntax_1.Syntax.LabeledStatement;
@@ -5613,7 +5613,7 @@ function requireEsprima () {
5613
5613
  }
5614
5614
  return LabeledStatement;
5615
5615
  }());
5616
- exports$1.LabeledStatement = LabeledStatement;
5616
+ exports.LabeledStatement = LabeledStatement;
5617
5617
  var Literal = (function () {
5618
5618
  function Literal(value, raw) {
5619
5619
  this.type = syntax_1.Syntax.Literal;
@@ -5622,7 +5622,7 @@ function requireEsprima () {
5622
5622
  }
5623
5623
  return Literal;
5624
5624
  }());
5625
- exports$1.Literal = Literal;
5625
+ exports.Literal = Literal;
5626
5626
  var MetaProperty = (function () {
5627
5627
  function MetaProperty(meta, property) {
5628
5628
  this.type = syntax_1.Syntax.MetaProperty;
@@ -5631,7 +5631,7 @@ function requireEsprima () {
5631
5631
  }
5632
5632
  return MetaProperty;
5633
5633
  }());
5634
- exports$1.MetaProperty = MetaProperty;
5634
+ exports.MetaProperty = MetaProperty;
5635
5635
  var MethodDefinition = (function () {
5636
5636
  function MethodDefinition(key, computed, value, kind, isStatic) {
5637
5637
  this.type = syntax_1.Syntax.MethodDefinition;
@@ -5643,7 +5643,7 @@ function requireEsprima () {
5643
5643
  }
5644
5644
  return MethodDefinition;
5645
5645
  }());
5646
- exports$1.MethodDefinition = MethodDefinition;
5646
+ exports.MethodDefinition = MethodDefinition;
5647
5647
  var Module = (function () {
5648
5648
  function Module(body) {
5649
5649
  this.type = syntax_1.Syntax.Program;
@@ -5652,7 +5652,7 @@ function requireEsprima () {
5652
5652
  }
5653
5653
  return Module;
5654
5654
  }());
5655
- exports$1.Module = Module;
5655
+ exports.Module = Module;
5656
5656
  var NewExpression = (function () {
5657
5657
  function NewExpression(callee, args) {
5658
5658
  this.type = syntax_1.Syntax.NewExpression;
@@ -5661,7 +5661,7 @@ function requireEsprima () {
5661
5661
  }
5662
5662
  return NewExpression;
5663
5663
  }());
5664
- exports$1.NewExpression = NewExpression;
5664
+ exports.NewExpression = NewExpression;
5665
5665
  var ObjectExpression = (function () {
5666
5666
  function ObjectExpression(properties) {
5667
5667
  this.type = syntax_1.Syntax.ObjectExpression;
@@ -5669,7 +5669,7 @@ function requireEsprima () {
5669
5669
  }
5670
5670
  return ObjectExpression;
5671
5671
  }());
5672
- exports$1.ObjectExpression = ObjectExpression;
5672
+ exports.ObjectExpression = ObjectExpression;
5673
5673
  var ObjectPattern = (function () {
5674
5674
  function ObjectPattern(properties) {
5675
5675
  this.type = syntax_1.Syntax.ObjectPattern;
@@ -5677,7 +5677,7 @@ function requireEsprima () {
5677
5677
  }
5678
5678
  return ObjectPattern;
5679
5679
  }());
5680
- exports$1.ObjectPattern = ObjectPattern;
5680
+ exports.ObjectPattern = ObjectPattern;
5681
5681
  var Property = (function () {
5682
5682
  function Property(kind, key, computed, value, method, shorthand) {
5683
5683
  this.type = syntax_1.Syntax.Property;
@@ -5690,7 +5690,7 @@ function requireEsprima () {
5690
5690
  }
5691
5691
  return Property;
5692
5692
  }());
5693
- exports$1.Property = Property;
5693
+ exports.Property = Property;
5694
5694
  var RegexLiteral = (function () {
5695
5695
  function RegexLiteral(value, raw, pattern, flags) {
5696
5696
  this.type = syntax_1.Syntax.Literal;
@@ -5700,7 +5700,7 @@ function requireEsprima () {
5700
5700
  }
5701
5701
  return RegexLiteral;
5702
5702
  }());
5703
- exports$1.RegexLiteral = RegexLiteral;
5703
+ exports.RegexLiteral = RegexLiteral;
5704
5704
  var RestElement = (function () {
5705
5705
  function RestElement(argument) {
5706
5706
  this.type = syntax_1.Syntax.RestElement;
@@ -5708,7 +5708,7 @@ function requireEsprima () {
5708
5708
  }
5709
5709
  return RestElement;
5710
5710
  }());
5711
- exports$1.RestElement = RestElement;
5711
+ exports.RestElement = RestElement;
5712
5712
  var ReturnStatement = (function () {
5713
5713
  function ReturnStatement(argument) {
5714
5714
  this.type = syntax_1.Syntax.ReturnStatement;
@@ -5716,7 +5716,7 @@ function requireEsprima () {
5716
5716
  }
5717
5717
  return ReturnStatement;
5718
5718
  }());
5719
- exports$1.ReturnStatement = ReturnStatement;
5719
+ exports.ReturnStatement = ReturnStatement;
5720
5720
  var Script = (function () {
5721
5721
  function Script(body) {
5722
5722
  this.type = syntax_1.Syntax.Program;
@@ -5725,7 +5725,7 @@ function requireEsprima () {
5725
5725
  }
5726
5726
  return Script;
5727
5727
  }());
5728
- exports$1.Script = Script;
5728
+ exports.Script = Script;
5729
5729
  var SequenceExpression = (function () {
5730
5730
  function SequenceExpression(expressions) {
5731
5731
  this.type = syntax_1.Syntax.SequenceExpression;
@@ -5733,7 +5733,7 @@ function requireEsprima () {
5733
5733
  }
5734
5734
  return SequenceExpression;
5735
5735
  }());
5736
- exports$1.SequenceExpression = SequenceExpression;
5736
+ exports.SequenceExpression = SequenceExpression;
5737
5737
  var SpreadElement = (function () {
5738
5738
  function SpreadElement(argument) {
5739
5739
  this.type = syntax_1.Syntax.SpreadElement;
@@ -5741,7 +5741,7 @@ function requireEsprima () {
5741
5741
  }
5742
5742
  return SpreadElement;
5743
5743
  }());
5744
- exports$1.SpreadElement = SpreadElement;
5744
+ exports.SpreadElement = SpreadElement;
5745
5745
  var StaticMemberExpression = (function () {
5746
5746
  function StaticMemberExpression(object, property) {
5747
5747
  this.type = syntax_1.Syntax.MemberExpression;
@@ -5751,14 +5751,14 @@ function requireEsprima () {
5751
5751
  }
5752
5752
  return StaticMemberExpression;
5753
5753
  }());
5754
- exports$1.StaticMemberExpression = StaticMemberExpression;
5754
+ exports.StaticMemberExpression = StaticMemberExpression;
5755
5755
  var Super = (function () {
5756
5756
  function Super() {
5757
5757
  this.type = syntax_1.Syntax.Super;
5758
5758
  }
5759
5759
  return Super;
5760
5760
  }());
5761
- exports$1.Super = Super;
5761
+ exports.Super = Super;
5762
5762
  var SwitchCase = (function () {
5763
5763
  function SwitchCase(test, consequent) {
5764
5764
  this.type = syntax_1.Syntax.SwitchCase;
@@ -5767,7 +5767,7 @@ function requireEsprima () {
5767
5767
  }
5768
5768
  return SwitchCase;
5769
5769
  }());
5770
- exports$1.SwitchCase = SwitchCase;
5770
+ exports.SwitchCase = SwitchCase;
5771
5771
  var SwitchStatement = (function () {
5772
5772
  function SwitchStatement(discriminant, cases) {
5773
5773
  this.type = syntax_1.Syntax.SwitchStatement;
@@ -5776,7 +5776,7 @@ function requireEsprima () {
5776
5776
  }
5777
5777
  return SwitchStatement;
5778
5778
  }());
5779
- exports$1.SwitchStatement = SwitchStatement;
5779
+ exports.SwitchStatement = SwitchStatement;
5780
5780
  var TaggedTemplateExpression = (function () {
5781
5781
  function TaggedTemplateExpression(tag, quasi) {
5782
5782
  this.type = syntax_1.Syntax.TaggedTemplateExpression;
@@ -5785,7 +5785,7 @@ function requireEsprima () {
5785
5785
  }
5786
5786
  return TaggedTemplateExpression;
5787
5787
  }());
5788
- exports$1.TaggedTemplateExpression = TaggedTemplateExpression;
5788
+ exports.TaggedTemplateExpression = TaggedTemplateExpression;
5789
5789
  var TemplateElement = (function () {
5790
5790
  function TemplateElement(value, tail) {
5791
5791
  this.type = syntax_1.Syntax.TemplateElement;
@@ -5794,7 +5794,7 @@ function requireEsprima () {
5794
5794
  }
5795
5795
  return TemplateElement;
5796
5796
  }());
5797
- exports$1.TemplateElement = TemplateElement;
5797
+ exports.TemplateElement = TemplateElement;
5798
5798
  var TemplateLiteral = (function () {
5799
5799
  function TemplateLiteral(quasis, expressions) {
5800
5800
  this.type = syntax_1.Syntax.TemplateLiteral;
@@ -5803,14 +5803,14 @@ function requireEsprima () {
5803
5803
  }
5804
5804
  return TemplateLiteral;
5805
5805
  }());
5806
- exports$1.TemplateLiteral = TemplateLiteral;
5806
+ exports.TemplateLiteral = TemplateLiteral;
5807
5807
  var ThisExpression = (function () {
5808
5808
  function ThisExpression() {
5809
5809
  this.type = syntax_1.Syntax.ThisExpression;
5810
5810
  }
5811
5811
  return ThisExpression;
5812
5812
  }());
5813
- exports$1.ThisExpression = ThisExpression;
5813
+ exports.ThisExpression = ThisExpression;
5814
5814
  var ThrowStatement = (function () {
5815
5815
  function ThrowStatement(argument) {
5816
5816
  this.type = syntax_1.Syntax.ThrowStatement;
@@ -5818,7 +5818,7 @@ function requireEsprima () {
5818
5818
  }
5819
5819
  return ThrowStatement;
5820
5820
  }());
5821
- exports$1.ThrowStatement = ThrowStatement;
5821
+ exports.ThrowStatement = ThrowStatement;
5822
5822
  var TryStatement = (function () {
5823
5823
  function TryStatement(block, handler, finalizer) {
5824
5824
  this.type = syntax_1.Syntax.TryStatement;
@@ -5828,7 +5828,7 @@ function requireEsprima () {
5828
5828
  }
5829
5829
  return TryStatement;
5830
5830
  }());
5831
- exports$1.TryStatement = TryStatement;
5831
+ exports.TryStatement = TryStatement;
5832
5832
  var UnaryExpression = (function () {
5833
5833
  function UnaryExpression(operator, argument) {
5834
5834
  this.type = syntax_1.Syntax.UnaryExpression;
@@ -5838,7 +5838,7 @@ function requireEsprima () {
5838
5838
  }
5839
5839
  return UnaryExpression;
5840
5840
  }());
5841
- exports$1.UnaryExpression = UnaryExpression;
5841
+ exports.UnaryExpression = UnaryExpression;
5842
5842
  var UpdateExpression = (function () {
5843
5843
  function UpdateExpression(operator, argument, prefix) {
5844
5844
  this.type = syntax_1.Syntax.UpdateExpression;
@@ -5848,7 +5848,7 @@ function requireEsprima () {
5848
5848
  }
5849
5849
  return UpdateExpression;
5850
5850
  }());
5851
- exports$1.UpdateExpression = UpdateExpression;
5851
+ exports.UpdateExpression = UpdateExpression;
5852
5852
  var VariableDeclaration = (function () {
5853
5853
  function VariableDeclaration(declarations, kind) {
5854
5854
  this.type = syntax_1.Syntax.VariableDeclaration;
@@ -5857,7 +5857,7 @@ function requireEsprima () {
5857
5857
  }
5858
5858
  return VariableDeclaration;
5859
5859
  }());
5860
- exports$1.VariableDeclaration = VariableDeclaration;
5860
+ exports.VariableDeclaration = VariableDeclaration;
5861
5861
  var VariableDeclarator = (function () {
5862
5862
  function VariableDeclarator(id, init) {
5863
5863
  this.type = syntax_1.Syntax.VariableDeclarator;
@@ -5866,7 +5866,7 @@ function requireEsprima () {
5866
5866
  }
5867
5867
  return VariableDeclarator;
5868
5868
  }());
5869
- exports$1.VariableDeclarator = VariableDeclarator;
5869
+ exports.VariableDeclarator = VariableDeclarator;
5870
5870
  var WhileStatement = (function () {
5871
5871
  function WhileStatement(test, body) {
5872
5872
  this.type = syntax_1.Syntax.WhileStatement;
@@ -5875,7 +5875,7 @@ function requireEsprima () {
5875
5875
  }
5876
5876
  return WhileStatement;
5877
5877
  }());
5878
- exports$1.WhileStatement = WhileStatement;
5878
+ exports.WhileStatement = WhileStatement;
5879
5879
  var WithStatement = (function () {
5880
5880
  function WithStatement(object, body) {
5881
5881
  this.type = syntax_1.Syntax.WithStatement;
@@ -5884,7 +5884,7 @@ function requireEsprima () {
5884
5884
  }
5885
5885
  return WithStatement;
5886
5886
  }());
5887
- exports$1.WithStatement = WithStatement;
5887
+ exports.WithStatement = WithStatement;
5888
5888
  var YieldExpression = (function () {
5889
5889
  function YieldExpression(argument, delegate) {
5890
5890
  this.type = syntax_1.Syntax.YieldExpression;
@@ -5893,13 +5893,13 @@ function requireEsprima () {
5893
5893
  }
5894
5894
  return YieldExpression;
5895
5895
  }());
5896
- exports$1.YieldExpression = YieldExpression;
5896
+ exports.YieldExpression = YieldExpression;
5897
5897
 
5898
5898
 
5899
5899
  /***/ },
5900
5900
  /* 8 */
5901
- /***/ function(module, exports$1, __webpack_require__) {
5902
- Object.defineProperty(exports$1, "__esModule", { value: true });
5901
+ /***/ function(module, exports, __webpack_require__) {
5902
+ Object.defineProperty(exports, "__esModule", { value: true });
5903
5903
  var assert_1 = __webpack_require__(9);
5904
5904
  var error_handler_1 = __webpack_require__(10);
5905
5905
  var messages_1 = __webpack_require__(11);
@@ -9023,31 +9023,31 @@ function requireEsprima () {
9023
9023
  };
9024
9024
  return Parser;
9025
9025
  }());
9026
- exports$1.Parser = Parser;
9026
+ exports.Parser = Parser;
9027
9027
 
9028
9028
 
9029
9029
  /***/ },
9030
9030
  /* 9 */
9031
- /***/ function(module, exports$1) {
9031
+ /***/ function(module, exports) {
9032
9032
  // Ensure the condition is true, otherwise throw an error.
9033
9033
  // This is only to have a better contract semantic, i.e. another safety net
9034
9034
  // to catch a logic error. The condition shall be fulfilled in normal case.
9035
9035
  // Do NOT use this to enforce a certain condition on any user input.
9036
- Object.defineProperty(exports$1, "__esModule", { value: true });
9036
+ Object.defineProperty(exports, "__esModule", { value: true });
9037
9037
  function assert(condition, message) {
9038
9038
  /* istanbul ignore if */
9039
9039
  if (!condition) {
9040
9040
  throw new Error('ASSERT: ' + message);
9041
9041
  }
9042
9042
  }
9043
- exports$1.assert = assert;
9043
+ exports.assert = assert;
9044
9044
 
9045
9045
 
9046
9046
  /***/ },
9047
9047
  /* 10 */
9048
- /***/ function(module, exports$1) {
9048
+ /***/ function(module, exports) {
9049
9049
  /* tslint:disable:max-classes-per-file */
9050
- Object.defineProperty(exports$1, "__esModule", { value: true });
9050
+ Object.defineProperty(exports, "__esModule", { value: true });
9051
9051
  var ErrorHandler = (function () {
9052
9052
  function ErrorHandler() {
9053
9053
  this.errors = [];
@@ -9101,15 +9101,15 @@ function requireEsprima () {
9101
9101
  };
9102
9102
  return ErrorHandler;
9103
9103
  }());
9104
- exports$1.ErrorHandler = ErrorHandler;
9104
+ exports.ErrorHandler = ErrorHandler;
9105
9105
 
9106
9106
 
9107
9107
  /***/ },
9108
9108
  /* 11 */
9109
- /***/ function(module, exports$1) {
9110
- Object.defineProperty(exports$1, "__esModule", { value: true });
9109
+ /***/ function(module, exports) {
9110
+ Object.defineProperty(exports, "__esModule", { value: true });
9111
9111
  // Error messages should be identical to V8.
9112
- exports$1.Messages = {
9112
+ exports.Messages = {
9113
9113
  BadGetterArity: 'Getter must not have any formal parameters',
9114
9114
  BadSetterArity: 'Setter must have exactly one formal parameter',
9115
9115
  BadSetterRestParameter: 'Setter function argument must not be a rest parameter',
@@ -9173,8 +9173,8 @@ function requireEsprima () {
9173
9173
 
9174
9174
  /***/ },
9175
9175
  /* 12 */
9176
- /***/ function(module, exports$1, __webpack_require__) {
9177
- Object.defineProperty(exports$1, "__esModule", { value: true });
9176
+ /***/ function(module, exports, __webpack_require__) {
9177
+ Object.defineProperty(exports, "__esModule", { value: true });
9178
9178
  var assert_1 = __webpack_require__(9);
9179
9179
  var character_1 = __webpack_require__(4);
9180
9180
  var messages_1 = __webpack_require__(11);
@@ -10317,32 +10317,32 @@ function requireEsprima () {
10317
10317
  };
10318
10318
  return Scanner;
10319
10319
  }());
10320
- exports$1.Scanner = Scanner;
10320
+ exports.Scanner = Scanner;
10321
10321
 
10322
10322
 
10323
10323
  /***/ },
10324
10324
  /* 13 */
10325
- /***/ function(module, exports$1) {
10326
- Object.defineProperty(exports$1, "__esModule", { value: true });
10327
- exports$1.TokenName = {};
10328
- exports$1.TokenName[1 /* BooleanLiteral */] = 'Boolean';
10329
- exports$1.TokenName[2 /* EOF */] = '<end>';
10330
- exports$1.TokenName[3 /* Identifier */] = 'Identifier';
10331
- exports$1.TokenName[4 /* Keyword */] = 'Keyword';
10332
- exports$1.TokenName[5 /* NullLiteral */] = 'Null';
10333
- exports$1.TokenName[6 /* NumericLiteral */] = 'Numeric';
10334
- exports$1.TokenName[7 /* Punctuator */] = 'Punctuator';
10335
- exports$1.TokenName[8 /* StringLiteral */] = 'String';
10336
- exports$1.TokenName[9 /* RegularExpression */] = 'RegularExpression';
10337
- exports$1.TokenName[10 /* Template */] = 'Template';
10325
+ /***/ function(module, exports) {
10326
+ Object.defineProperty(exports, "__esModule", { value: true });
10327
+ exports.TokenName = {};
10328
+ exports.TokenName[1 /* BooleanLiteral */] = 'Boolean';
10329
+ exports.TokenName[2 /* EOF */] = '<end>';
10330
+ exports.TokenName[3 /* Identifier */] = 'Identifier';
10331
+ exports.TokenName[4 /* Keyword */] = 'Keyword';
10332
+ exports.TokenName[5 /* NullLiteral */] = 'Null';
10333
+ exports.TokenName[6 /* NumericLiteral */] = 'Numeric';
10334
+ exports.TokenName[7 /* Punctuator */] = 'Punctuator';
10335
+ exports.TokenName[8 /* StringLiteral */] = 'String';
10336
+ exports.TokenName[9 /* RegularExpression */] = 'RegularExpression';
10337
+ exports.TokenName[10 /* Template */] = 'Template';
10338
10338
 
10339
10339
 
10340
10340
  /***/ },
10341
10341
  /* 14 */
10342
- /***/ function(module, exports$1) {
10342
+ /***/ function(module, exports) {
10343
10343
  // Generated by generate-xhtml-entities.js. DO NOT MODIFY!
10344
- Object.defineProperty(exports$1, "__esModule", { value: true });
10345
- exports$1.XHTMLEntities = {
10344
+ Object.defineProperty(exports, "__esModule", { value: true });
10345
+ exports.XHTMLEntities = {
10346
10346
  quot: '\u0022',
10347
10347
  amp: '\u0026',
10348
10348
  apos: '\u0027',
@@ -10600,8 +10600,8 @@ function requireEsprima () {
10600
10600
 
10601
10601
  /***/ },
10602
10602
  /* 15 */
10603
- /***/ function(module, exports$1, __webpack_require__) {
10604
- Object.defineProperty(exports$1, "__esModule", { value: true });
10603
+ /***/ function(module, exports, __webpack_require__) {
10604
+ Object.defineProperty(exports, "__esModule", { value: true });
10605
10605
  var error_handler_1 = __webpack_require__(10);
10606
10606
  var scanner_1 = __webpack_require__(12);
10607
10607
  var token_1 = __webpack_require__(13);
@@ -10744,7 +10744,7 @@ function requireEsprima () {
10744
10744
  };
10745
10745
  return Tokenizer;
10746
10746
  }());
10747
- exports$1.Tokenizer = Tokenizer;
10747
+ exports.Tokenizer = Tokenizer;
10748
10748
 
10749
10749
 
10750
10750
  /***/ }