@devizovaburza/txs-sdk 3.1.27 → 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.cjs +147 -147
- package/dist/v1/index.d.cts +6 -6
- package/dist/v1/index.d.mts +6 -6
- package/dist/v1/index.d.ts +6 -6
- package/dist/v1/index.mjs +147 -147
- package/package.json +1 -1
package/dist/v1/index.cjs
CHANGED
|
@@ -4118,7 +4118,7 @@ var hasRequiredEsprima;
|
|
|
4118
4118
|
function requireEsprima () {
|
|
4119
4119
|
if (hasRequiredEsprima) return esprima$1.exports;
|
|
4120
4120
|
hasRequiredEsprima = 1;
|
|
4121
|
-
(function (module, exports
|
|
4121
|
+
(function (module, exports) {
|
|
4122
4122
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
4123
4123
|
/* istanbul ignore next */
|
|
4124
4124
|
module.exports = factory();
|
|
@@ -4168,7 +4168,7 @@ function requireEsprima () {
|
|
|
4168
4168
|
/************************************************************************/
|
|
4169
4169
|
/******/ ([
|
|
4170
4170
|
/* 0 */
|
|
4171
|
-
/***/ function(module, exports
|
|
4171
|
+
/***/ function(module, exports, __webpack_require__) {
|
|
4172
4172
|
/*
|
|
4173
4173
|
Copyright JS Foundation and other contributors, https://js.foundation/
|
|
4174
4174
|
|
|
@@ -4192,7 +4192,7 @@ function requireEsprima () {
|
|
|
4192
4192
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
4193
4193
|
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
4194
4194
|
*/
|
|
4195
|
-
Object.defineProperty(exports
|
|
4195
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4196
4196
|
var comment_handler_1 = __webpack_require__(1);
|
|
4197
4197
|
var jsx_parser_1 = __webpack_require__(3);
|
|
4198
4198
|
var parser_1 = __webpack_require__(8);
|
|
@@ -4243,19 +4243,19 @@ function requireEsprima () {
|
|
|
4243
4243
|
}
|
|
4244
4244
|
return ast;
|
|
4245
4245
|
}
|
|
4246
|
-
exports
|
|
4246
|
+
exports.parse = parse;
|
|
4247
4247
|
function parseModule(code, options, delegate) {
|
|
4248
4248
|
var parsingOptions = options || {};
|
|
4249
4249
|
parsingOptions.sourceType = 'module';
|
|
4250
4250
|
return parse(code, parsingOptions, delegate);
|
|
4251
4251
|
}
|
|
4252
|
-
exports
|
|
4252
|
+
exports.parseModule = parseModule;
|
|
4253
4253
|
function parseScript(code, options, delegate) {
|
|
4254
4254
|
var parsingOptions = options || {};
|
|
4255
4255
|
parsingOptions.sourceType = 'script';
|
|
4256
4256
|
return parse(code, parsingOptions, delegate);
|
|
4257
4257
|
}
|
|
4258
|
-
exports
|
|
4258
|
+
exports.parseScript = parseScript;
|
|
4259
4259
|
function tokenize(code, options, delegate) {
|
|
4260
4260
|
var tokenizer = new tokenizer_1.Tokenizer(code, options);
|
|
4261
4261
|
var tokens;
|
|
@@ -4280,17 +4280,17 @@ function requireEsprima () {
|
|
|
4280
4280
|
}
|
|
4281
4281
|
return tokens;
|
|
4282
4282
|
}
|
|
4283
|
-
exports
|
|
4283
|
+
exports.tokenize = tokenize;
|
|
4284
4284
|
var syntax_1 = __webpack_require__(2);
|
|
4285
|
-
exports
|
|
4285
|
+
exports.Syntax = syntax_1.Syntax;
|
|
4286
4286
|
// Sync with *.json manifests.
|
|
4287
|
-
exports
|
|
4287
|
+
exports.version = '4.0.1';
|
|
4288
4288
|
|
|
4289
4289
|
|
|
4290
4290
|
/***/ },
|
|
4291
4291
|
/* 1 */
|
|
4292
|
-
/***/ function(module, exports
|
|
4293
|
-
Object.defineProperty(exports
|
|
4292
|
+
/***/ function(module, exports, __webpack_require__) {
|
|
4293
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4294
4294
|
var syntax_1 = __webpack_require__(2);
|
|
4295
4295
|
var CommentHandler = (function () {
|
|
4296
4296
|
function CommentHandler() {
|
|
@@ -4437,14 +4437,14 @@ function requireEsprima () {
|
|
|
4437
4437
|
};
|
|
4438
4438
|
return CommentHandler;
|
|
4439
4439
|
}());
|
|
4440
|
-
exports
|
|
4440
|
+
exports.CommentHandler = CommentHandler;
|
|
4441
4441
|
|
|
4442
4442
|
|
|
4443
4443
|
/***/ },
|
|
4444
4444
|
/* 2 */
|
|
4445
|
-
/***/ function(module, exports
|
|
4446
|
-
Object.defineProperty(exports
|
|
4447
|
-
exports
|
|
4445
|
+
/***/ function(module, exports) {
|
|
4446
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4447
|
+
exports.Syntax = {
|
|
4448
4448
|
AssignmentExpression: 'AssignmentExpression',
|
|
4449
4449
|
AssignmentPattern: 'AssignmentPattern',
|
|
4450
4450
|
ArrayExpression: 'ArrayExpression',
|
|
@@ -4516,7 +4516,7 @@ function requireEsprima () {
|
|
|
4516
4516
|
|
|
4517
4517
|
/***/ },
|
|
4518
4518
|
/* 3 */
|
|
4519
|
-
/***/ function(module, exports
|
|
4519
|
+
/***/ function(module, exports, __webpack_require__) {
|
|
4520
4520
|
/* istanbul ignore next */
|
|
4521
4521
|
var __extends = (this && this.__extends) || (function () {
|
|
4522
4522
|
var extendStatics = Object.setPrototypeOf ||
|
|
@@ -4528,7 +4528,7 @@ function requireEsprima () {
|
|
|
4528
4528
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
4529
4529
|
};
|
|
4530
4530
|
})();
|
|
4531
|
-
Object.defineProperty(exports
|
|
4531
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4532
4532
|
var character_1 = __webpack_require__(4);
|
|
4533
4533
|
var JSXNode = __webpack_require__(5);
|
|
4534
4534
|
var jsx_syntax_1 = __webpack_require__(6);
|
|
@@ -5050,13 +5050,13 @@ function requireEsprima () {
|
|
|
5050
5050
|
};
|
|
5051
5051
|
return JSXParser;
|
|
5052
5052
|
}(parser_1.Parser));
|
|
5053
|
-
exports
|
|
5053
|
+
exports.JSXParser = JSXParser;
|
|
5054
5054
|
|
|
5055
5055
|
|
|
5056
5056
|
/***/ },
|
|
5057
5057
|
/* 4 */
|
|
5058
|
-
/***/ function(module, exports
|
|
5059
|
-
Object.defineProperty(exports
|
|
5058
|
+
/***/ function(module, exports) {
|
|
5059
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5060
5060
|
// See also tools/generate-unicode-regex.js.
|
|
5061
5061
|
var Regex = {
|
|
5062
5062
|
// Unicode v8.0.0 NonAsciiIdentifierStart:
|
|
@@ -5064,7 +5064,7 @@ function requireEsprima () {
|
|
|
5064
5064
|
// Unicode v8.0.0 NonAsciiIdentifierPart:
|
|
5065
5065
|
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]/
|
|
5066
5066
|
};
|
|
5067
|
-
exports
|
|
5067
|
+
exports.Character = {
|
|
5068
5068
|
/* tslint:disable:no-bitwise */
|
|
5069
5069
|
fromCodePoint: function (cp) {
|
|
5070
5070
|
return (cp < 0x10000) ? String.fromCharCode(cp) :
|
|
@@ -5086,7 +5086,7 @@ function requireEsprima () {
|
|
|
5086
5086
|
(cp >= 0x41 && cp <= 0x5A) ||
|
|
5087
5087
|
(cp >= 0x61 && cp <= 0x7A) ||
|
|
5088
5088
|
(cp === 0x5C) ||
|
|
5089
|
-
((cp >= 0x80) && Regex.NonAsciiIdentifierStart.test(exports
|
|
5089
|
+
((cp >= 0x80) && Regex.NonAsciiIdentifierStart.test(exports.Character.fromCodePoint(cp)));
|
|
5090
5090
|
},
|
|
5091
5091
|
isIdentifierPart: function (cp) {
|
|
5092
5092
|
return (cp === 0x24) || (cp === 0x5F) ||
|
|
@@ -5094,7 +5094,7 @@ function requireEsprima () {
|
|
|
5094
5094
|
(cp >= 0x61 && cp <= 0x7A) ||
|
|
5095
5095
|
(cp >= 0x30 && cp <= 0x39) ||
|
|
5096
5096
|
(cp === 0x5C) ||
|
|
5097
|
-
((cp >= 0x80) && Regex.NonAsciiIdentifierPart.test(exports
|
|
5097
|
+
((cp >= 0x80) && Regex.NonAsciiIdentifierPart.test(exports.Character.fromCodePoint(cp)));
|
|
5098
5098
|
},
|
|
5099
5099
|
// https://tc39.github.io/ecma262/#sec-literals-numeric-literals
|
|
5100
5100
|
isDecimalDigit: function (cp) {
|
|
@@ -5113,8 +5113,8 @@ function requireEsprima () {
|
|
|
5113
5113
|
|
|
5114
5114
|
/***/ },
|
|
5115
5115
|
/* 5 */
|
|
5116
|
-
/***/ function(module, exports
|
|
5117
|
-
Object.defineProperty(exports
|
|
5116
|
+
/***/ function(module, exports, __webpack_require__) {
|
|
5117
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5118
5118
|
var jsx_syntax_1 = __webpack_require__(6);
|
|
5119
5119
|
/* tslint:disable:max-classes-per-file */
|
|
5120
5120
|
var JSXClosingElement = (function () {
|
|
@@ -5124,7 +5124,7 @@ function requireEsprima () {
|
|
|
5124
5124
|
}
|
|
5125
5125
|
return JSXClosingElement;
|
|
5126
5126
|
}());
|
|
5127
|
-
exports
|
|
5127
|
+
exports.JSXClosingElement = JSXClosingElement;
|
|
5128
5128
|
var JSXElement = (function () {
|
|
5129
5129
|
function JSXElement(openingElement, children, closingElement) {
|
|
5130
5130
|
this.type = jsx_syntax_1.JSXSyntax.JSXElement;
|
|
@@ -5134,14 +5134,14 @@ function requireEsprima () {
|
|
|
5134
5134
|
}
|
|
5135
5135
|
return JSXElement;
|
|
5136
5136
|
}());
|
|
5137
|
-
exports
|
|
5137
|
+
exports.JSXElement = JSXElement;
|
|
5138
5138
|
var JSXEmptyExpression = (function () {
|
|
5139
5139
|
function JSXEmptyExpression() {
|
|
5140
5140
|
this.type = jsx_syntax_1.JSXSyntax.JSXEmptyExpression;
|
|
5141
5141
|
}
|
|
5142
5142
|
return JSXEmptyExpression;
|
|
5143
5143
|
}());
|
|
5144
|
-
exports
|
|
5144
|
+
exports.JSXEmptyExpression = JSXEmptyExpression;
|
|
5145
5145
|
var JSXExpressionContainer = (function () {
|
|
5146
5146
|
function JSXExpressionContainer(expression) {
|
|
5147
5147
|
this.type = jsx_syntax_1.JSXSyntax.JSXExpressionContainer;
|
|
@@ -5149,7 +5149,7 @@ function requireEsprima () {
|
|
|
5149
5149
|
}
|
|
5150
5150
|
return JSXExpressionContainer;
|
|
5151
5151
|
}());
|
|
5152
|
-
exports
|
|
5152
|
+
exports.JSXExpressionContainer = JSXExpressionContainer;
|
|
5153
5153
|
var JSXIdentifier = (function () {
|
|
5154
5154
|
function JSXIdentifier(name) {
|
|
5155
5155
|
this.type = jsx_syntax_1.JSXSyntax.JSXIdentifier;
|
|
@@ -5157,7 +5157,7 @@ function requireEsprima () {
|
|
|
5157
5157
|
}
|
|
5158
5158
|
return JSXIdentifier;
|
|
5159
5159
|
}());
|
|
5160
|
-
exports
|
|
5160
|
+
exports.JSXIdentifier = JSXIdentifier;
|
|
5161
5161
|
var JSXMemberExpression = (function () {
|
|
5162
5162
|
function JSXMemberExpression(object, property) {
|
|
5163
5163
|
this.type = jsx_syntax_1.JSXSyntax.JSXMemberExpression;
|
|
@@ -5166,7 +5166,7 @@ function requireEsprima () {
|
|
|
5166
5166
|
}
|
|
5167
5167
|
return JSXMemberExpression;
|
|
5168
5168
|
}());
|
|
5169
|
-
exports
|
|
5169
|
+
exports.JSXMemberExpression = JSXMemberExpression;
|
|
5170
5170
|
var JSXAttribute = (function () {
|
|
5171
5171
|
function JSXAttribute(name, value) {
|
|
5172
5172
|
this.type = jsx_syntax_1.JSXSyntax.JSXAttribute;
|
|
@@ -5175,7 +5175,7 @@ function requireEsprima () {
|
|
|
5175
5175
|
}
|
|
5176
5176
|
return JSXAttribute;
|
|
5177
5177
|
}());
|
|
5178
|
-
exports
|
|
5178
|
+
exports.JSXAttribute = JSXAttribute;
|
|
5179
5179
|
var JSXNamespacedName = (function () {
|
|
5180
5180
|
function JSXNamespacedName(namespace, name) {
|
|
5181
5181
|
this.type = jsx_syntax_1.JSXSyntax.JSXNamespacedName;
|
|
@@ -5184,7 +5184,7 @@ function requireEsprima () {
|
|
|
5184
5184
|
}
|
|
5185
5185
|
return JSXNamespacedName;
|
|
5186
5186
|
}());
|
|
5187
|
-
exports
|
|
5187
|
+
exports.JSXNamespacedName = JSXNamespacedName;
|
|
5188
5188
|
var JSXOpeningElement = (function () {
|
|
5189
5189
|
function JSXOpeningElement(name, selfClosing, attributes) {
|
|
5190
5190
|
this.type = jsx_syntax_1.JSXSyntax.JSXOpeningElement;
|
|
@@ -5194,7 +5194,7 @@ function requireEsprima () {
|
|
|
5194
5194
|
}
|
|
5195
5195
|
return JSXOpeningElement;
|
|
5196
5196
|
}());
|
|
5197
|
-
exports
|
|
5197
|
+
exports.JSXOpeningElement = JSXOpeningElement;
|
|
5198
5198
|
var JSXSpreadAttribute = (function () {
|
|
5199
5199
|
function JSXSpreadAttribute(argument) {
|
|
5200
5200
|
this.type = jsx_syntax_1.JSXSyntax.JSXSpreadAttribute;
|
|
@@ -5202,7 +5202,7 @@ function requireEsprima () {
|
|
|
5202
5202
|
}
|
|
5203
5203
|
return JSXSpreadAttribute;
|
|
5204
5204
|
}());
|
|
5205
|
-
exports
|
|
5205
|
+
exports.JSXSpreadAttribute = JSXSpreadAttribute;
|
|
5206
5206
|
var JSXText = (function () {
|
|
5207
5207
|
function JSXText(value, raw) {
|
|
5208
5208
|
this.type = jsx_syntax_1.JSXSyntax.JSXText;
|
|
@@ -5211,14 +5211,14 @@ function requireEsprima () {
|
|
|
5211
5211
|
}
|
|
5212
5212
|
return JSXText;
|
|
5213
5213
|
}());
|
|
5214
|
-
exports
|
|
5214
|
+
exports.JSXText = JSXText;
|
|
5215
5215
|
|
|
5216
5216
|
|
|
5217
5217
|
/***/ },
|
|
5218
5218
|
/* 6 */
|
|
5219
|
-
/***/ function(module, exports
|
|
5220
|
-
Object.defineProperty(exports
|
|
5221
|
-
exports
|
|
5219
|
+
/***/ function(module, exports) {
|
|
5220
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5221
|
+
exports.JSXSyntax = {
|
|
5222
5222
|
JSXAttribute: 'JSXAttribute',
|
|
5223
5223
|
JSXClosingElement: 'JSXClosingElement',
|
|
5224
5224
|
JSXElement: 'JSXElement',
|
|
@@ -5235,8 +5235,8 @@ function requireEsprima () {
|
|
|
5235
5235
|
|
|
5236
5236
|
/***/ },
|
|
5237
5237
|
/* 7 */
|
|
5238
|
-
/***/ function(module, exports
|
|
5239
|
-
Object.defineProperty(exports
|
|
5238
|
+
/***/ function(module, exports, __webpack_require__) {
|
|
5239
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5240
5240
|
var syntax_1 = __webpack_require__(2);
|
|
5241
5241
|
/* tslint:disable:max-classes-per-file */
|
|
5242
5242
|
var ArrayExpression = (function () {
|
|
@@ -5246,7 +5246,7 @@ function requireEsprima () {
|
|
|
5246
5246
|
}
|
|
5247
5247
|
return ArrayExpression;
|
|
5248
5248
|
}());
|
|
5249
|
-
exports
|
|
5249
|
+
exports.ArrayExpression = ArrayExpression;
|
|
5250
5250
|
var ArrayPattern = (function () {
|
|
5251
5251
|
function ArrayPattern(elements) {
|
|
5252
5252
|
this.type = syntax_1.Syntax.ArrayPattern;
|
|
@@ -5254,7 +5254,7 @@ function requireEsprima () {
|
|
|
5254
5254
|
}
|
|
5255
5255
|
return ArrayPattern;
|
|
5256
5256
|
}());
|
|
5257
|
-
exports
|
|
5257
|
+
exports.ArrayPattern = ArrayPattern;
|
|
5258
5258
|
var ArrowFunctionExpression = (function () {
|
|
5259
5259
|
function ArrowFunctionExpression(params, body, expression) {
|
|
5260
5260
|
this.type = syntax_1.Syntax.ArrowFunctionExpression;
|
|
@@ -5267,7 +5267,7 @@ function requireEsprima () {
|
|
|
5267
5267
|
}
|
|
5268
5268
|
return ArrowFunctionExpression;
|
|
5269
5269
|
}());
|
|
5270
|
-
exports
|
|
5270
|
+
exports.ArrowFunctionExpression = ArrowFunctionExpression;
|
|
5271
5271
|
var AssignmentExpression = (function () {
|
|
5272
5272
|
function AssignmentExpression(operator, left, right) {
|
|
5273
5273
|
this.type = syntax_1.Syntax.AssignmentExpression;
|
|
@@ -5277,7 +5277,7 @@ function requireEsprima () {
|
|
|
5277
5277
|
}
|
|
5278
5278
|
return AssignmentExpression;
|
|
5279
5279
|
}());
|
|
5280
|
-
exports
|
|
5280
|
+
exports.AssignmentExpression = AssignmentExpression;
|
|
5281
5281
|
var AssignmentPattern = (function () {
|
|
5282
5282
|
function AssignmentPattern(left, right) {
|
|
5283
5283
|
this.type = syntax_1.Syntax.AssignmentPattern;
|
|
@@ -5286,7 +5286,7 @@ function requireEsprima () {
|
|
|
5286
5286
|
}
|
|
5287
5287
|
return AssignmentPattern;
|
|
5288
5288
|
}());
|
|
5289
|
-
exports
|
|
5289
|
+
exports.AssignmentPattern = AssignmentPattern;
|
|
5290
5290
|
var AsyncArrowFunctionExpression = (function () {
|
|
5291
5291
|
function AsyncArrowFunctionExpression(params, body, expression) {
|
|
5292
5292
|
this.type = syntax_1.Syntax.ArrowFunctionExpression;
|
|
@@ -5299,7 +5299,7 @@ function requireEsprima () {
|
|
|
5299
5299
|
}
|
|
5300
5300
|
return AsyncArrowFunctionExpression;
|
|
5301
5301
|
}());
|
|
5302
|
-
exports
|
|
5302
|
+
exports.AsyncArrowFunctionExpression = AsyncArrowFunctionExpression;
|
|
5303
5303
|
var AsyncFunctionDeclaration = (function () {
|
|
5304
5304
|
function AsyncFunctionDeclaration(id, params, body) {
|
|
5305
5305
|
this.type = syntax_1.Syntax.FunctionDeclaration;
|
|
@@ -5312,7 +5312,7 @@ function requireEsprima () {
|
|
|
5312
5312
|
}
|
|
5313
5313
|
return AsyncFunctionDeclaration;
|
|
5314
5314
|
}());
|
|
5315
|
-
exports
|
|
5315
|
+
exports.AsyncFunctionDeclaration = AsyncFunctionDeclaration;
|
|
5316
5316
|
var AsyncFunctionExpression = (function () {
|
|
5317
5317
|
function AsyncFunctionExpression(id, params, body) {
|
|
5318
5318
|
this.type = syntax_1.Syntax.FunctionExpression;
|
|
@@ -5325,7 +5325,7 @@ function requireEsprima () {
|
|
|
5325
5325
|
}
|
|
5326
5326
|
return AsyncFunctionExpression;
|
|
5327
5327
|
}());
|
|
5328
|
-
exports
|
|
5328
|
+
exports.AsyncFunctionExpression = AsyncFunctionExpression;
|
|
5329
5329
|
var AwaitExpression = (function () {
|
|
5330
5330
|
function AwaitExpression(argument) {
|
|
5331
5331
|
this.type = syntax_1.Syntax.AwaitExpression;
|
|
@@ -5333,7 +5333,7 @@ function requireEsprima () {
|
|
|
5333
5333
|
}
|
|
5334
5334
|
return AwaitExpression;
|
|
5335
5335
|
}());
|
|
5336
|
-
exports
|
|
5336
|
+
exports.AwaitExpression = AwaitExpression;
|
|
5337
5337
|
var BinaryExpression = (function () {
|
|
5338
5338
|
function BinaryExpression(operator, left, right) {
|
|
5339
5339
|
var logical = (operator === '||' || operator === '&&');
|
|
@@ -5344,7 +5344,7 @@ function requireEsprima () {
|
|
|
5344
5344
|
}
|
|
5345
5345
|
return BinaryExpression;
|
|
5346
5346
|
}());
|
|
5347
|
-
exports
|
|
5347
|
+
exports.BinaryExpression = BinaryExpression;
|
|
5348
5348
|
var BlockStatement = (function () {
|
|
5349
5349
|
function BlockStatement(body) {
|
|
5350
5350
|
this.type = syntax_1.Syntax.BlockStatement;
|
|
@@ -5352,7 +5352,7 @@ function requireEsprima () {
|
|
|
5352
5352
|
}
|
|
5353
5353
|
return BlockStatement;
|
|
5354
5354
|
}());
|
|
5355
|
-
exports
|
|
5355
|
+
exports.BlockStatement = BlockStatement;
|
|
5356
5356
|
var BreakStatement = (function () {
|
|
5357
5357
|
function BreakStatement(label) {
|
|
5358
5358
|
this.type = syntax_1.Syntax.BreakStatement;
|
|
@@ -5360,7 +5360,7 @@ function requireEsprima () {
|
|
|
5360
5360
|
}
|
|
5361
5361
|
return BreakStatement;
|
|
5362
5362
|
}());
|
|
5363
|
-
exports
|
|
5363
|
+
exports.BreakStatement = BreakStatement;
|
|
5364
5364
|
var CallExpression = (function () {
|
|
5365
5365
|
function CallExpression(callee, args) {
|
|
5366
5366
|
this.type = syntax_1.Syntax.CallExpression;
|
|
@@ -5369,7 +5369,7 @@ function requireEsprima () {
|
|
|
5369
5369
|
}
|
|
5370
5370
|
return CallExpression;
|
|
5371
5371
|
}());
|
|
5372
|
-
exports
|
|
5372
|
+
exports.CallExpression = CallExpression;
|
|
5373
5373
|
var CatchClause = (function () {
|
|
5374
5374
|
function CatchClause(param, body) {
|
|
5375
5375
|
this.type = syntax_1.Syntax.CatchClause;
|
|
@@ -5378,7 +5378,7 @@ function requireEsprima () {
|
|
|
5378
5378
|
}
|
|
5379
5379
|
return CatchClause;
|
|
5380
5380
|
}());
|
|
5381
|
-
exports
|
|
5381
|
+
exports.CatchClause = CatchClause;
|
|
5382
5382
|
var ClassBody = (function () {
|
|
5383
5383
|
function ClassBody(body) {
|
|
5384
5384
|
this.type = syntax_1.Syntax.ClassBody;
|
|
@@ -5386,7 +5386,7 @@ function requireEsprima () {
|
|
|
5386
5386
|
}
|
|
5387
5387
|
return ClassBody;
|
|
5388
5388
|
}());
|
|
5389
|
-
exports
|
|
5389
|
+
exports.ClassBody = ClassBody;
|
|
5390
5390
|
var ClassDeclaration = (function () {
|
|
5391
5391
|
function ClassDeclaration(id, superClass, body) {
|
|
5392
5392
|
this.type = syntax_1.Syntax.ClassDeclaration;
|
|
@@ -5396,7 +5396,7 @@ function requireEsprima () {
|
|
|
5396
5396
|
}
|
|
5397
5397
|
return ClassDeclaration;
|
|
5398
5398
|
}());
|
|
5399
|
-
exports
|
|
5399
|
+
exports.ClassDeclaration = ClassDeclaration;
|
|
5400
5400
|
var ClassExpression = (function () {
|
|
5401
5401
|
function ClassExpression(id, superClass, body) {
|
|
5402
5402
|
this.type = syntax_1.Syntax.ClassExpression;
|
|
@@ -5406,7 +5406,7 @@ function requireEsprima () {
|
|
|
5406
5406
|
}
|
|
5407
5407
|
return ClassExpression;
|
|
5408
5408
|
}());
|
|
5409
|
-
exports
|
|
5409
|
+
exports.ClassExpression = ClassExpression;
|
|
5410
5410
|
var ComputedMemberExpression = (function () {
|
|
5411
5411
|
function ComputedMemberExpression(object, property) {
|
|
5412
5412
|
this.type = syntax_1.Syntax.MemberExpression;
|
|
@@ -5416,7 +5416,7 @@ function requireEsprima () {
|
|
|
5416
5416
|
}
|
|
5417
5417
|
return ComputedMemberExpression;
|
|
5418
5418
|
}());
|
|
5419
|
-
exports
|
|
5419
|
+
exports.ComputedMemberExpression = ComputedMemberExpression;
|
|
5420
5420
|
var ConditionalExpression = (function () {
|
|
5421
5421
|
function ConditionalExpression(test, consequent, alternate) {
|
|
5422
5422
|
this.type = syntax_1.Syntax.ConditionalExpression;
|
|
@@ -5426,7 +5426,7 @@ function requireEsprima () {
|
|
|
5426
5426
|
}
|
|
5427
5427
|
return ConditionalExpression;
|
|
5428
5428
|
}());
|
|
5429
|
-
exports
|
|
5429
|
+
exports.ConditionalExpression = ConditionalExpression;
|
|
5430
5430
|
var ContinueStatement = (function () {
|
|
5431
5431
|
function ContinueStatement(label) {
|
|
5432
5432
|
this.type = syntax_1.Syntax.ContinueStatement;
|
|
@@ -5434,14 +5434,14 @@ function requireEsprima () {
|
|
|
5434
5434
|
}
|
|
5435
5435
|
return ContinueStatement;
|
|
5436
5436
|
}());
|
|
5437
|
-
exports
|
|
5437
|
+
exports.ContinueStatement = ContinueStatement;
|
|
5438
5438
|
var DebuggerStatement = (function () {
|
|
5439
5439
|
function DebuggerStatement() {
|
|
5440
5440
|
this.type = syntax_1.Syntax.DebuggerStatement;
|
|
5441
5441
|
}
|
|
5442
5442
|
return DebuggerStatement;
|
|
5443
5443
|
}());
|
|
5444
|
-
exports
|
|
5444
|
+
exports.DebuggerStatement = DebuggerStatement;
|
|
5445
5445
|
var Directive = (function () {
|
|
5446
5446
|
function Directive(expression, directive) {
|
|
5447
5447
|
this.type = syntax_1.Syntax.ExpressionStatement;
|
|
@@ -5450,7 +5450,7 @@ function requireEsprima () {
|
|
|
5450
5450
|
}
|
|
5451
5451
|
return Directive;
|
|
5452
5452
|
}());
|
|
5453
|
-
exports
|
|
5453
|
+
exports.Directive = Directive;
|
|
5454
5454
|
var DoWhileStatement = (function () {
|
|
5455
5455
|
function DoWhileStatement(body, test) {
|
|
5456
5456
|
this.type = syntax_1.Syntax.DoWhileStatement;
|
|
@@ -5459,14 +5459,14 @@ function requireEsprima () {
|
|
|
5459
5459
|
}
|
|
5460
5460
|
return DoWhileStatement;
|
|
5461
5461
|
}());
|
|
5462
|
-
exports
|
|
5462
|
+
exports.DoWhileStatement = DoWhileStatement;
|
|
5463
5463
|
var EmptyStatement = (function () {
|
|
5464
5464
|
function EmptyStatement() {
|
|
5465
5465
|
this.type = syntax_1.Syntax.EmptyStatement;
|
|
5466
5466
|
}
|
|
5467
5467
|
return EmptyStatement;
|
|
5468
5468
|
}());
|
|
5469
|
-
exports
|
|
5469
|
+
exports.EmptyStatement = EmptyStatement;
|
|
5470
5470
|
var ExportAllDeclaration = (function () {
|
|
5471
5471
|
function ExportAllDeclaration(source) {
|
|
5472
5472
|
this.type = syntax_1.Syntax.ExportAllDeclaration;
|
|
@@ -5474,7 +5474,7 @@ function requireEsprima () {
|
|
|
5474
5474
|
}
|
|
5475
5475
|
return ExportAllDeclaration;
|
|
5476
5476
|
}());
|
|
5477
|
-
exports
|
|
5477
|
+
exports.ExportAllDeclaration = ExportAllDeclaration;
|
|
5478
5478
|
var ExportDefaultDeclaration = (function () {
|
|
5479
5479
|
function ExportDefaultDeclaration(declaration) {
|
|
5480
5480
|
this.type = syntax_1.Syntax.ExportDefaultDeclaration;
|
|
@@ -5482,7 +5482,7 @@ function requireEsprima () {
|
|
|
5482
5482
|
}
|
|
5483
5483
|
return ExportDefaultDeclaration;
|
|
5484
5484
|
}());
|
|
5485
|
-
exports
|
|
5485
|
+
exports.ExportDefaultDeclaration = ExportDefaultDeclaration;
|
|
5486
5486
|
var ExportNamedDeclaration = (function () {
|
|
5487
5487
|
function ExportNamedDeclaration(declaration, specifiers, source) {
|
|
5488
5488
|
this.type = syntax_1.Syntax.ExportNamedDeclaration;
|
|
@@ -5492,7 +5492,7 @@ function requireEsprima () {
|
|
|
5492
5492
|
}
|
|
5493
5493
|
return ExportNamedDeclaration;
|
|
5494
5494
|
}());
|
|
5495
|
-
exports
|
|
5495
|
+
exports.ExportNamedDeclaration = ExportNamedDeclaration;
|
|
5496
5496
|
var ExportSpecifier = (function () {
|
|
5497
5497
|
function ExportSpecifier(local, exported) {
|
|
5498
5498
|
this.type = syntax_1.Syntax.ExportSpecifier;
|
|
@@ -5501,7 +5501,7 @@ function requireEsprima () {
|
|
|
5501
5501
|
}
|
|
5502
5502
|
return ExportSpecifier;
|
|
5503
5503
|
}());
|
|
5504
|
-
exports
|
|
5504
|
+
exports.ExportSpecifier = ExportSpecifier;
|
|
5505
5505
|
var ExpressionStatement = (function () {
|
|
5506
5506
|
function ExpressionStatement(expression) {
|
|
5507
5507
|
this.type = syntax_1.Syntax.ExpressionStatement;
|
|
@@ -5509,7 +5509,7 @@ function requireEsprima () {
|
|
|
5509
5509
|
}
|
|
5510
5510
|
return ExpressionStatement;
|
|
5511
5511
|
}());
|
|
5512
|
-
exports
|
|
5512
|
+
exports.ExpressionStatement = ExpressionStatement;
|
|
5513
5513
|
var ForInStatement = (function () {
|
|
5514
5514
|
function ForInStatement(left, right, body) {
|
|
5515
5515
|
this.type = syntax_1.Syntax.ForInStatement;
|
|
@@ -5520,7 +5520,7 @@ function requireEsprima () {
|
|
|
5520
5520
|
}
|
|
5521
5521
|
return ForInStatement;
|
|
5522
5522
|
}());
|
|
5523
|
-
exports
|
|
5523
|
+
exports.ForInStatement = ForInStatement;
|
|
5524
5524
|
var ForOfStatement = (function () {
|
|
5525
5525
|
function ForOfStatement(left, right, body) {
|
|
5526
5526
|
this.type = syntax_1.Syntax.ForOfStatement;
|
|
@@ -5530,7 +5530,7 @@ function requireEsprima () {
|
|
|
5530
5530
|
}
|
|
5531
5531
|
return ForOfStatement;
|
|
5532
5532
|
}());
|
|
5533
|
-
exports
|
|
5533
|
+
exports.ForOfStatement = ForOfStatement;
|
|
5534
5534
|
var ForStatement = (function () {
|
|
5535
5535
|
function ForStatement(init, test, update, body) {
|
|
5536
5536
|
this.type = syntax_1.Syntax.ForStatement;
|
|
@@ -5541,7 +5541,7 @@ function requireEsprima () {
|
|
|
5541
5541
|
}
|
|
5542
5542
|
return ForStatement;
|
|
5543
5543
|
}());
|
|
5544
|
-
exports
|
|
5544
|
+
exports.ForStatement = ForStatement;
|
|
5545
5545
|
var FunctionDeclaration = (function () {
|
|
5546
5546
|
function FunctionDeclaration(id, params, body, generator) {
|
|
5547
5547
|
this.type = syntax_1.Syntax.FunctionDeclaration;
|
|
@@ -5554,7 +5554,7 @@ function requireEsprima () {
|
|
|
5554
5554
|
}
|
|
5555
5555
|
return FunctionDeclaration;
|
|
5556
5556
|
}());
|
|
5557
|
-
exports
|
|
5557
|
+
exports.FunctionDeclaration = FunctionDeclaration;
|
|
5558
5558
|
var FunctionExpression = (function () {
|
|
5559
5559
|
function FunctionExpression(id, params, body, generator) {
|
|
5560
5560
|
this.type = syntax_1.Syntax.FunctionExpression;
|
|
@@ -5567,7 +5567,7 @@ function requireEsprima () {
|
|
|
5567
5567
|
}
|
|
5568
5568
|
return FunctionExpression;
|
|
5569
5569
|
}());
|
|
5570
|
-
exports
|
|
5570
|
+
exports.FunctionExpression = FunctionExpression;
|
|
5571
5571
|
var Identifier = (function () {
|
|
5572
5572
|
function Identifier(name) {
|
|
5573
5573
|
this.type = syntax_1.Syntax.Identifier;
|
|
@@ -5575,7 +5575,7 @@ function requireEsprima () {
|
|
|
5575
5575
|
}
|
|
5576
5576
|
return Identifier;
|
|
5577
5577
|
}());
|
|
5578
|
-
exports
|
|
5578
|
+
exports.Identifier = Identifier;
|
|
5579
5579
|
var IfStatement = (function () {
|
|
5580
5580
|
function IfStatement(test, consequent, alternate) {
|
|
5581
5581
|
this.type = syntax_1.Syntax.IfStatement;
|
|
@@ -5585,7 +5585,7 @@ function requireEsprima () {
|
|
|
5585
5585
|
}
|
|
5586
5586
|
return IfStatement;
|
|
5587
5587
|
}());
|
|
5588
|
-
exports
|
|
5588
|
+
exports.IfStatement = IfStatement;
|
|
5589
5589
|
var ImportDeclaration = (function () {
|
|
5590
5590
|
function ImportDeclaration(specifiers, source) {
|
|
5591
5591
|
this.type = syntax_1.Syntax.ImportDeclaration;
|
|
@@ -5594,7 +5594,7 @@ function requireEsprima () {
|
|
|
5594
5594
|
}
|
|
5595
5595
|
return ImportDeclaration;
|
|
5596
5596
|
}());
|
|
5597
|
-
exports
|
|
5597
|
+
exports.ImportDeclaration = ImportDeclaration;
|
|
5598
5598
|
var ImportDefaultSpecifier = (function () {
|
|
5599
5599
|
function ImportDefaultSpecifier(local) {
|
|
5600
5600
|
this.type = syntax_1.Syntax.ImportDefaultSpecifier;
|
|
@@ -5602,7 +5602,7 @@ function requireEsprima () {
|
|
|
5602
5602
|
}
|
|
5603
5603
|
return ImportDefaultSpecifier;
|
|
5604
5604
|
}());
|
|
5605
|
-
exports
|
|
5605
|
+
exports.ImportDefaultSpecifier = ImportDefaultSpecifier;
|
|
5606
5606
|
var ImportNamespaceSpecifier = (function () {
|
|
5607
5607
|
function ImportNamespaceSpecifier(local) {
|
|
5608
5608
|
this.type = syntax_1.Syntax.ImportNamespaceSpecifier;
|
|
@@ -5610,7 +5610,7 @@ function requireEsprima () {
|
|
|
5610
5610
|
}
|
|
5611
5611
|
return ImportNamespaceSpecifier;
|
|
5612
5612
|
}());
|
|
5613
|
-
exports
|
|
5613
|
+
exports.ImportNamespaceSpecifier = ImportNamespaceSpecifier;
|
|
5614
5614
|
var ImportSpecifier = (function () {
|
|
5615
5615
|
function ImportSpecifier(local, imported) {
|
|
5616
5616
|
this.type = syntax_1.Syntax.ImportSpecifier;
|
|
@@ -5619,7 +5619,7 @@ function requireEsprima () {
|
|
|
5619
5619
|
}
|
|
5620
5620
|
return ImportSpecifier;
|
|
5621
5621
|
}());
|
|
5622
|
-
exports
|
|
5622
|
+
exports.ImportSpecifier = ImportSpecifier;
|
|
5623
5623
|
var LabeledStatement = (function () {
|
|
5624
5624
|
function LabeledStatement(label, body) {
|
|
5625
5625
|
this.type = syntax_1.Syntax.LabeledStatement;
|
|
@@ -5628,7 +5628,7 @@ function requireEsprima () {
|
|
|
5628
5628
|
}
|
|
5629
5629
|
return LabeledStatement;
|
|
5630
5630
|
}());
|
|
5631
|
-
exports
|
|
5631
|
+
exports.LabeledStatement = LabeledStatement;
|
|
5632
5632
|
var Literal = (function () {
|
|
5633
5633
|
function Literal(value, raw) {
|
|
5634
5634
|
this.type = syntax_1.Syntax.Literal;
|
|
@@ -5637,7 +5637,7 @@ function requireEsprima () {
|
|
|
5637
5637
|
}
|
|
5638
5638
|
return Literal;
|
|
5639
5639
|
}());
|
|
5640
|
-
exports
|
|
5640
|
+
exports.Literal = Literal;
|
|
5641
5641
|
var MetaProperty = (function () {
|
|
5642
5642
|
function MetaProperty(meta, property) {
|
|
5643
5643
|
this.type = syntax_1.Syntax.MetaProperty;
|
|
@@ -5646,7 +5646,7 @@ function requireEsprima () {
|
|
|
5646
5646
|
}
|
|
5647
5647
|
return MetaProperty;
|
|
5648
5648
|
}());
|
|
5649
|
-
exports
|
|
5649
|
+
exports.MetaProperty = MetaProperty;
|
|
5650
5650
|
var MethodDefinition = (function () {
|
|
5651
5651
|
function MethodDefinition(key, computed, value, kind, isStatic) {
|
|
5652
5652
|
this.type = syntax_1.Syntax.MethodDefinition;
|
|
@@ -5658,7 +5658,7 @@ function requireEsprima () {
|
|
|
5658
5658
|
}
|
|
5659
5659
|
return MethodDefinition;
|
|
5660
5660
|
}());
|
|
5661
|
-
exports
|
|
5661
|
+
exports.MethodDefinition = MethodDefinition;
|
|
5662
5662
|
var Module = (function () {
|
|
5663
5663
|
function Module(body) {
|
|
5664
5664
|
this.type = syntax_1.Syntax.Program;
|
|
@@ -5667,7 +5667,7 @@ function requireEsprima () {
|
|
|
5667
5667
|
}
|
|
5668
5668
|
return Module;
|
|
5669
5669
|
}());
|
|
5670
|
-
exports
|
|
5670
|
+
exports.Module = Module;
|
|
5671
5671
|
var NewExpression = (function () {
|
|
5672
5672
|
function NewExpression(callee, args) {
|
|
5673
5673
|
this.type = syntax_1.Syntax.NewExpression;
|
|
@@ -5676,7 +5676,7 @@ function requireEsprima () {
|
|
|
5676
5676
|
}
|
|
5677
5677
|
return NewExpression;
|
|
5678
5678
|
}());
|
|
5679
|
-
exports
|
|
5679
|
+
exports.NewExpression = NewExpression;
|
|
5680
5680
|
var ObjectExpression = (function () {
|
|
5681
5681
|
function ObjectExpression(properties) {
|
|
5682
5682
|
this.type = syntax_1.Syntax.ObjectExpression;
|
|
@@ -5684,7 +5684,7 @@ function requireEsprima () {
|
|
|
5684
5684
|
}
|
|
5685
5685
|
return ObjectExpression;
|
|
5686
5686
|
}());
|
|
5687
|
-
exports
|
|
5687
|
+
exports.ObjectExpression = ObjectExpression;
|
|
5688
5688
|
var ObjectPattern = (function () {
|
|
5689
5689
|
function ObjectPattern(properties) {
|
|
5690
5690
|
this.type = syntax_1.Syntax.ObjectPattern;
|
|
@@ -5692,7 +5692,7 @@ function requireEsprima () {
|
|
|
5692
5692
|
}
|
|
5693
5693
|
return ObjectPattern;
|
|
5694
5694
|
}());
|
|
5695
|
-
exports
|
|
5695
|
+
exports.ObjectPattern = ObjectPattern;
|
|
5696
5696
|
var Property = (function () {
|
|
5697
5697
|
function Property(kind, key, computed, value, method, shorthand) {
|
|
5698
5698
|
this.type = syntax_1.Syntax.Property;
|
|
@@ -5705,7 +5705,7 @@ function requireEsprima () {
|
|
|
5705
5705
|
}
|
|
5706
5706
|
return Property;
|
|
5707
5707
|
}());
|
|
5708
|
-
exports
|
|
5708
|
+
exports.Property = Property;
|
|
5709
5709
|
var RegexLiteral = (function () {
|
|
5710
5710
|
function RegexLiteral(value, raw, pattern, flags) {
|
|
5711
5711
|
this.type = syntax_1.Syntax.Literal;
|
|
@@ -5715,7 +5715,7 @@ function requireEsprima () {
|
|
|
5715
5715
|
}
|
|
5716
5716
|
return RegexLiteral;
|
|
5717
5717
|
}());
|
|
5718
|
-
exports
|
|
5718
|
+
exports.RegexLiteral = RegexLiteral;
|
|
5719
5719
|
var RestElement = (function () {
|
|
5720
5720
|
function RestElement(argument) {
|
|
5721
5721
|
this.type = syntax_1.Syntax.RestElement;
|
|
@@ -5723,7 +5723,7 @@ function requireEsprima () {
|
|
|
5723
5723
|
}
|
|
5724
5724
|
return RestElement;
|
|
5725
5725
|
}());
|
|
5726
|
-
exports
|
|
5726
|
+
exports.RestElement = RestElement;
|
|
5727
5727
|
var ReturnStatement = (function () {
|
|
5728
5728
|
function ReturnStatement(argument) {
|
|
5729
5729
|
this.type = syntax_1.Syntax.ReturnStatement;
|
|
@@ -5731,7 +5731,7 @@ function requireEsprima () {
|
|
|
5731
5731
|
}
|
|
5732
5732
|
return ReturnStatement;
|
|
5733
5733
|
}());
|
|
5734
|
-
exports
|
|
5734
|
+
exports.ReturnStatement = ReturnStatement;
|
|
5735
5735
|
var Script = (function () {
|
|
5736
5736
|
function Script(body) {
|
|
5737
5737
|
this.type = syntax_1.Syntax.Program;
|
|
@@ -5740,7 +5740,7 @@ function requireEsprima () {
|
|
|
5740
5740
|
}
|
|
5741
5741
|
return Script;
|
|
5742
5742
|
}());
|
|
5743
|
-
exports
|
|
5743
|
+
exports.Script = Script;
|
|
5744
5744
|
var SequenceExpression = (function () {
|
|
5745
5745
|
function SequenceExpression(expressions) {
|
|
5746
5746
|
this.type = syntax_1.Syntax.SequenceExpression;
|
|
@@ -5748,7 +5748,7 @@ function requireEsprima () {
|
|
|
5748
5748
|
}
|
|
5749
5749
|
return SequenceExpression;
|
|
5750
5750
|
}());
|
|
5751
|
-
exports
|
|
5751
|
+
exports.SequenceExpression = SequenceExpression;
|
|
5752
5752
|
var SpreadElement = (function () {
|
|
5753
5753
|
function SpreadElement(argument) {
|
|
5754
5754
|
this.type = syntax_1.Syntax.SpreadElement;
|
|
@@ -5756,7 +5756,7 @@ function requireEsprima () {
|
|
|
5756
5756
|
}
|
|
5757
5757
|
return SpreadElement;
|
|
5758
5758
|
}());
|
|
5759
|
-
exports
|
|
5759
|
+
exports.SpreadElement = SpreadElement;
|
|
5760
5760
|
var StaticMemberExpression = (function () {
|
|
5761
5761
|
function StaticMemberExpression(object, property) {
|
|
5762
5762
|
this.type = syntax_1.Syntax.MemberExpression;
|
|
@@ -5766,14 +5766,14 @@ function requireEsprima () {
|
|
|
5766
5766
|
}
|
|
5767
5767
|
return StaticMemberExpression;
|
|
5768
5768
|
}());
|
|
5769
|
-
exports
|
|
5769
|
+
exports.StaticMemberExpression = StaticMemberExpression;
|
|
5770
5770
|
var Super = (function () {
|
|
5771
5771
|
function Super() {
|
|
5772
5772
|
this.type = syntax_1.Syntax.Super;
|
|
5773
5773
|
}
|
|
5774
5774
|
return Super;
|
|
5775
5775
|
}());
|
|
5776
|
-
exports
|
|
5776
|
+
exports.Super = Super;
|
|
5777
5777
|
var SwitchCase = (function () {
|
|
5778
5778
|
function SwitchCase(test, consequent) {
|
|
5779
5779
|
this.type = syntax_1.Syntax.SwitchCase;
|
|
@@ -5782,7 +5782,7 @@ function requireEsprima () {
|
|
|
5782
5782
|
}
|
|
5783
5783
|
return SwitchCase;
|
|
5784
5784
|
}());
|
|
5785
|
-
exports
|
|
5785
|
+
exports.SwitchCase = SwitchCase;
|
|
5786
5786
|
var SwitchStatement = (function () {
|
|
5787
5787
|
function SwitchStatement(discriminant, cases) {
|
|
5788
5788
|
this.type = syntax_1.Syntax.SwitchStatement;
|
|
@@ -5791,7 +5791,7 @@ function requireEsprima () {
|
|
|
5791
5791
|
}
|
|
5792
5792
|
return SwitchStatement;
|
|
5793
5793
|
}());
|
|
5794
|
-
exports
|
|
5794
|
+
exports.SwitchStatement = SwitchStatement;
|
|
5795
5795
|
var TaggedTemplateExpression = (function () {
|
|
5796
5796
|
function TaggedTemplateExpression(tag, quasi) {
|
|
5797
5797
|
this.type = syntax_1.Syntax.TaggedTemplateExpression;
|
|
@@ -5800,7 +5800,7 @@ function requireEsprima () {
|
|
|
5800
5800
|
}
|
|
5801
5801
|
return TaggedTemplateExpression;
|
|
5802
5802
|
}());
|
|
5803
|
-
exports
|
|
5803
|
+
exports.TaggedTemplateExpression = TaggedTemplateExpression;
|
|
5804
5804
|
var TemplateElement = (function () {
|
|
5805
5805
|
function TemplateElement(value, tail) {
|
|
5806
5806
|
this.type = syntax_1.Syntax.TemplateElement;
|
|
@@ -5809,7 +5809,7 @@ function requireEsprima () {
|
|
|
5809
5809
|
}
|
|
5810
5810
|
return TemplateElement;
|
|
5811
5811
|
}());
|
|
5812
|
-
exports
|
|
5812
|
+
exports.TemplateElement = TemplateElement;
|
|
5813
5813
|
var TemplateLiteral = (function () {
|
|
5814
5814
|
function TemplateLiteral(quasis, expressions) {
|
|
5815
5815
|
this.type = syntax_1.Syntax.TemplateLiteral;
|
|
@@ -5818,14 +5818,14 @@ function requireEsprima () {
|
|
|
5818
5818
|
}
|
|
5819
5819
|
return TemplateLiteral;
|
|
5820
5820
|
}());
|
|
5821
|
-
exports
|
|
5821
|
+
exports.TemplateLiteral = TemplateLiteral;
|
|
5822
5822
|
var ThisExpression = (function () {
|
|
5823
5823
|
function ThisExpression() {
|
|
5824
5824
|
this.type = syntax_1.Syntax.ThisExpression;
|
|
5825
5825
|
}
|
|
5826
5826
|
return ThisExpression;
|
|
5827
5827
|
}());
|
|
5828
|
-
exports
|
|
5828
|
+
exports.ThisExpression = ThisExpression;
|
|
5829
5829
|
var ThrowStatement = (function () {
|
|
5830
5830
|
function ThrowStatement(argument) {
|
|
5831
5831
|
this.type = syntax_1.Syntax.ThrowStatement;
|
|
@@ -5833,7 +5833,7 @@ function requireEsprima () {
|
|
|
5833
5833
|
}
|
|
5834
5834
|
return ThrowStatement;
|
|
5835
5835
|
}());
|
|
5836
|
-
exports
|
|
5836
|
+
exports.ThrowStatement = ThrowStatement;
|
|
5837
5837
|
var TryStatement = (function () {
|
|
5838
5838
|
function TryStatement(block, handler, finalizer) {
|
|
5839
5839
|
this.type = syntax_1.Syntax.TryStatement;
|
|
@@ -5843,7 +5843,7 @@ function requireEsprima () {
|
|
|
5843
5843
|
}
|
|
5844
5844
|
return TryStatement;
|
|
5845
5845
|
}());
|
|
5846
|
-
exports
|
|
5846
|
+
exports.TryStatement = TryStatement;
|
|
5847
5847
|
var UnaryExpression = (function () {
|
|
5848
5848
|
function UnaryExpression(operator, argument) {
|
|
5849
5849
|
this.type = syntax_1.Syntax.UnaryExpression;
|
|
@@ -5853,7 +5853,7 @@ function requireEsprima () {
|
|
|
5853
5853
|
}
|
|
5854
5854
|
return UnaryExpression;
|
|
5855
5855
|
}());
|
|
5856
|
-
exports
|
|
5856
|
+
exports.UnaryExpression = UnaryExpression;
|
|
5857
5857
|
var UpdateExpression = (function () {
|
|
5858
5858
|
function UpdateExpression(operator, argument, prefix) {
|
|
5859
5859
|
this.type = syntax_1.Syntax.UpdateExpression;
|
|
@@ -5863,7 +5863,7 @@ function requireEsprima () {
|
|
|
5863
5863
|
}
|
|
5864
5864
|
return UpdateExpression;
|
|
5865
5865
|
}());
|
|
5866
|
-
exports
|
|
5866
|
+
exports.UpdateExpression = UpdateExpression;
|
|
5867
5867
|
var VariableDeclaration = (function () {
|
|
5868
5868
|
function VariableDeclaration(declarations, kind) {
|
|
5869
5869
|
this.type = syntax_1.Syntax.VariableDeclaration;
|
|
@@ -5872,7 +5872,7 @@ function requireEsprima () {
|
|
|
5872
5872
|
}
|
|
5873
5873
|
return VariableDeclaration;
|
|
5874
5874
|
}());
|
|
5875
|
-
exports
|
|
5875
|
+
exports.VariableDeclaration = VariableDeclaration;
|
|
5876
5876
|
var VariableDeclarator = (function () {
|
|
5877
5877
|
function VariableDeclarator(id, init) {
|
|
5878
5878
|
this.type = syntax_1.Syntax.VariableDeclarator;
|
|
@@ -5881,7 +5881,7 @@ function requireEsprima () {
|
|
|
5881
5881
|
}
|
|
5882
5882
|
return VariableDeclarator;
|
|
5883
5883
|
}());
|
|
5884
|
-
exports
|
|
5884
|
+
exports.VariableDeclarator = VariableDeclarator;
|
|
5885
5885
|
var WhileStatement = (function () {
|
|
5886
5886
|
function WhileStatement(test, body) {
|
|
5887
5887
|
this.type = syntax_1.Syntax.WhileStatement;
|
|
@@ -5890,7 +5890,7 @@ function requireEsprima () {
|
|
|
5890
5890
|
}
|
|
5891
5891
|
return WhileStatement;
|
|
5892
5892
|
}());
|
|
5893
|
-
exports
|
|
5893
|
+
exports.WhileStatement = WhileStatement;
|
|
5894
5894
|
var WithStatement = (function () {
|
|
5895
5895
|
function WithStatement(object, body) {
|
|
5896
5896
|
this.type = syntax_1.Syntax.WithStatement;
|
|
@@ -5899,7 +5899,7 @@ function requireEsprima () {
|
|
|
5899
5899
|
}
|
|
5900
5900
|
return WithStatement;
|
|
5901
5901
|
}());
|
|
5902
|
-
exports
|
|
5902
|
+
exports.WithStatement = WithStatement;
|
|
5903
5903
|
var YieldExpression = (function () {
|
|
5904
5904
|
function YieldExpression(argument, delegate) {
|
|
5905
5905
|
this.type = syntax_1.Syntax.YieldExpression;
|
|
@@ -5908,13 +5908,13 @@ function requireEsprima () {
|
|
|
5908
5908
|
}
|
|
5909
5909
|
return YieldExpression;
|
|
5910
5910
|
}());
|
|
5911
|
-
exports
|
|
5911
|
+
exports.YieldExpression = YieldExpression;
|
|
5912
5912
|
|
|
5913
5913
|
|
|
5914
5914
|
/***/ },
|
|
5915
5915
|
/* 8 */
|
|
5916
|
-
/***/ function(module, exports
|
|
5917
|
-
Object.defineProperty(exports
|
|
5916
|
+
/***/ function(module, exports, __webpack_require__) {
|
|
5917
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5918
5918
|
var assert_1 = __webpack_require__(9);
|
|
5919
5919
|
var error_handler_1 = __webpack_require__(10);
|
|
5920
5920
|
var messages_1 = __webpack_require__(11);
|
|
@@ -9038,31 +9038,31 @@ function requireEsprima () {
|
|
|
9038
9038
|
};
|
|
9039
9039
|
return Parser;
|
|
9040
9040
|
}());
|
|
9041
|
-
exports
|
|
9041
|
+
exports.Parser = Parser;
|
|
9042
9042
|
|
|
9043
9043
|
|
|
9044
9044
|
/***/ },
|
|
9045
9045
|
/* 9 */
|
|
9046
|
-
/***/ function(module, exports
|
|
9046
|
+
/***/ function(module, exports) {
|
|
9047
9047
|
// Ensure the condition is true, otherwise throw an error.
|
|
9048
9048
|
// This is only to have a better contract semantic, i.e. another safety net
|
|
9049
9049
|
// to catch a logic error. The condition shall be fulfilled in normal case.
|
|
9050
9050
|
// Do NOT use this to enforce a certain condition on any user input.
|
|
9051
|
-
Object.defineProperty(exports
|
|
9051
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9052
9052
|
function assert(condition, message) {
|
|
9053
9053
|
/* istanbul ignore if */
|
|
9054
9054
|
if (!condition) {
|
|
9055
9055
|
throw new Error('ASSERT: ' + message);
|
|
9056
9056
|
}
|
|
9057
9057
|
}
|
|
9058
|
-
exports
|
|
9058
|
+
exports.assert = assert;
|
|
9059
9059
|
|
|
9060
9060
|
|
|
9061
9061
|
/***/ },
|
|
9062
9062
|
/* 10 */
|
|
9063
|
-
/***/ function(module, exports
|
|
9063
|
+
/***/ function(module, exports) {
|
|
9064
9064
|
/* tslint:disable:max-classes-per-file */
|
|
9065
|
-
Object.defineProperty(exports
|
|
9065
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9066
9066
|
var ErrorHandler = (function () {
|
|
9067
9067
|
function ErrorHandler() {
|
|
9068
9068
|
this.errors = [];
|
|
@@ -9116,15 +9116,15 @@ function requireEsprima () {
|
|
|
9116
9116
|
};
|
|
9117
9117
|
return ErrorHandler;
|
|
9118
9118
|
}());
|
|
9119
|
-
exports
|
|
9119
|
+
exports.ErrorHandler = ErrorHandler;
|
|
9120
9120
|
|
|
9121
9121
|
|
|
9122
9122
|
/***/ },
|
|
9123
9123
|
/* 11 */
|
|
9124
|
-
/***/ function(module, exports
|
|
9125
|
-
Object.defineProperty(exports
|
|
9124
|
+
/***/ function(module, exports) {
|
|
9125
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9126
9126
|
// Error messages should be identical to V8.
|
|
9127
|
-
exports
|
|
9127
|
+
exports.Messages = {
|
|
9128
9128
|
BadGetterArity: 'Getter must not have any formal parameters',
|
|
9129
9129
|
BadSetterArity: 'Setter must have exactly one formal parameter',
|
|
9130
9130
|
BadSetterRestParameter: 'Setter function argument must not be a rest parameter',
|
|
@@ -9188,8 +9188,8 @@ function requireEsprima () {
|
|
|
9188
9188
|
|
|
9189
9189
|
/***/ },
|
|
9190
9190
|
/* 12 */
|
|
9191
|
-
/***/ function(module, exports
|
|
9192
|
-
Object.defineProperty(exports
|
|
9191
|
+
/***/ function(module, exports, __webpack_require__) {
|
|
9192
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9193
9193
|
var assert_1 = __webpack_require__(9);
|
|
9194
9194
|
var character_1 = __webpack_require__(4);
|
|
9195
9195
|
var messages_1 = __webpack_require__(11);
|
|
@@ -10332,32 +10332,32 @@ function requireEsprima () {
|
|
|
10332
10332
|
};
|
|
10333
10333
|
return Scanner;
|
|
10334
10334
|
}());
|
|
10335
|
-
exports
|
|
10335
|
+
exports.Scanner = Scanner;
|
|
10336
10336
|
|
|
10337
10337
|
|
|
10338
10338
|
/***/ },
|
|
10339
10339
|
/* 13 */
|
|
10340
|
-
/***/ function(module, exports
|
|
10341
|
-
Object.defineProperty(exports
|
|
10342
|
-
exports
|
|
10343
|
-
exports
|
|
10344
|
-
exports
|
|
10345
|
-
exports
|
|
10346
|
-
exports
|
|
10347
|
-
exports
|
|
10348
|
-
exports
|
|
10349
|
-
exports
|
|
10350
|
-
exports
|
|
10351
|
-
exports
|
|
10352
|
-
exports
|
|
10340
|
+
/***/ function(module, exports) {
|
|
10341
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10342
|
+
exports.TokenName = {};
|
|
10343
|
+
exports.TokenName[1 /* BooleanLiteral */] = 'Boolean';
|
|
10344
|
+
exports.TokenName[2 /* EOF */] = '<end>';
|
|
10345
|
+
exports.TokenName[3 /* Identifier */] = 'Identifier';
|
|
10346
|
+
exports.TokenName[4 /* Keyword */] = 'Keyword';
|
|
10347
|
+
exports.TokenName[5 /* NullLiteral */] = 'Null';
|
|
10348
|
+
exports.TokenName[6 /* NumericLiteral */] = 'Numeric';
|
|
10349
|
+
exports.TokenName[7 /* Punctuator */] = 'Punctuator';
|
|
10350
|
+
exports.TokenName[8 /* StringLiteral */] = 'String';
|
|
10351
|
+
exports.TokenName[9 /* RegularExpression */] = 'RegularExpression';
|
|
10352
|
+
exports.TokenName[10 /* Template */] = 'Template';
|
|
10353
10353
|
|
|
10354
10354
|
|
|
10355
10355
|
/***/ },
|
|
10356
10356
|
/* 14 */
|
|
10357
|
-
/***/ function(module, exports
|
|
10357
|
+
/***/ function(module, exports) {
|
|
10358
10358
|
// Generated by generate-xhtml-entities.js. DO NOT MODIFY!
|
|
10359
|
-
Object.defineProperty(exports
|
|
10360
|
-
exports
|
|
10359
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10360
|
+
exports.XHTMLEntities = {
|
|
10361
10361
|
quot: '\u0022',
|
|
10362
10362
|
amp: '\u0026',
|
|
10363
10363
|
apos: '\u0027',
|
|
@@ -10615,8 +10615,8 @@ function requireEsprima () {
|
|
|
10615
10615
|
|
|
10616
10616
|
/***/ },
|
|
10617
10617
|
/* 15 */
|
|
10618
|
-
/***/ function(module, exports
|
|
10619
|
-
Object.defineProperty(exports
|
|
10618
|
+
/***/ function(module, exports, __webpack_require__) {
|
|
10619
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10620
10620
|
var error_handler_1 = __webpack_require__(10);
|
|
10621
10621
|
var scanner_1 = __webpack_require__(12);
|
|
10622
10622
|
var token_1 = __webpack_require__(13);
|
|
@@ -10759,7 +10759,7 @@ function requireEsprima () {
|
|
|
10759
10759
|
};
|
|
10760
10760
|
return Tokenizer;
|
|
10761
10761
|
}());
|
|
10762
|
-
exports
|
|
10762
|
+
exports.Tokenizer = Tokenizer;
|
|
10763
10763
|
|
|
10764
10764
|
|
|
10765
10765
|
/***/ }
|