handlebars-source 4.4.0 → 4.4.1
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.
- checksums.yaml +4 -4
- data/handlebars.js +384 -597
- data/handlebars.runtime.js +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 73806210b4b86b32e24c03000bf4ee03feac389e5048d82985f431df13cb1db0
|
|
4
|
+
data.tar.gz: 6a9a425aff16238f0d8bd4a72a8117ee6b97599a1e188e87908af6822239021a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f70590884bddabaeb8da9a0ea1546d2b258992619bdcb6cd6df9e930d690c563d262b3dbd0b0936f415add6468f318d2b693ccb741d11642cecbf9e8f4957d7b
|
|
7
|
+
data.tar.gz: 595fa80b736cef944d2b4c3f4450d7f032ec62a18dc5df0d57ce2312c26166b27c8aa2cac4a123b330da110d92aff09acbd9c161e3b797dde6a76f2d06109c8f
|
data/handlebars.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**!
|
|
2
2
|
|
|
3
3
|
@license
|
|
4
|
-
handlebars v4.4.
|
|
4
|
+
handlebars v4.4.1
|
|
5
5
|
|
|
6
6
|
Copyright (C) 2011-2017 by Yehuda Katz
|
|
7
7
|
|
|
@@ -98,13 +98,13 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
98
98
|
|
|
99
99
|
var _handlebarsCompilerBase = __webpack_require__(36);
|
|
100
100
|
|
|
101
|
-
var _handlebarsCompilerCompiler = __webpack_require__(
|
|
101
|
+
var _handlebarsCompilerCompiler = __webpack_require__(41);
|
|
102
102
|
|
|
103
|
-
var _handlebarsCompilerJavascriptCompiler = __webpack_require__(
|
|
103
|
+
var _handlebarsCompilerJavascriptCompiler = __webpack_require__(42);
|
|
104
104
|
|
|
105
105
|
var _handlebarsCompilerJavascriptCompiler2 = _interopRequireDefault(_handlebarsCompilerJavascriptCompiler);
|
|
106
106
|
|
|
107
|
-
var _handlebarsCompilerVisitor = __webpack_require__(
|
|
107
|
+
var _handlebarsCompilerVisitor = __webpack_require__(39);
|
|
108
108
|
|
|
109
109
|
var _handlebarsCompilerVisitor2 = _interopRequireDefault(_handlebarsCompilerVisitor);
|
|
110
110
|
|
|
@@ -275,7 +275,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
275
275
|
|
|
276
276
|
var _logger2 = _interopRequireDefault(_logger);
|
|
277
277
|
|
|
278
|
-
var VERSION = '4.4.
|
|
278
|
+
var VERSION = '4.4.1';
|
|
279
279
|
exports.VERSION = VERSION;
|
|
280
280
|
var COMPILER_REVISION = 8;
|
|
281
281
|
exports.COMPILER_REVISION = COMPILER_REVISION;
|
|
@@ -1625,11 +1625,11 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
1625
1625
|
|
|
1626
1626
|
var _parser2 = _interopRequireDefault(_parser);
|
|
1627
1627
|
|
|
1628
|
-
var _whitespaceControl = __webpack_require__(
|
|
1628
|
+
var _whitespaceControl = __webpack_require__(38);
|
|
1629
1629
|
|
|
1630
1630
|
var _whitespaceControl2 = _interopRequireDefault(_whitespaceControl);
|
|
1631
1631
|
|
|
1632
|
-
var _helpers = __webpack_require__(
|
|
1632
|
+
var _helpers = __webpack_require__(40);
|
|
1633
1633
|
|
|
1634
1634
|
var Helpers = _interopRequireWildcard(_helpers);
|
|
1635
1635
|
|
|
@@ -1659,131 +1659,20 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
1659
1659
|
|
|
1660
1660
|
/***/ }),
|
|
1661
1661
|
/* 37 */
|
|
1662
|
-
/***/ (function(module, exports
|
|
1662
|
+
/***/ (function(module, exports) {
|
|
1663
1663
|
|
|
1664
1664
|
// File ignored in coverage tests via setting in .istanbul.yml
|
|
1665
|
-
/*
|
|
1666
|
-
/*
|
|
1667
|
-
Returns a Parser object of the following structure:
|
|
1668
|
-
|
|
1669
|
-
Parser: {
|
|
1670
|
-
yy: {}
|
|
1671
|
-
}
|
|
1672
|
-
|
|
1673
|
-
Parser.prototype: {
|
|
1674
|
-
yy: {},
|
|
1675
|
-
trace: function(),
|
|
1676
|
-
symbols_: {associative list: name ==> number},
|
|
1677
|
-
terminals_: {associative list: number ==> name},
|
|
1678
|
-
productions_: [...],
|
|
1679
|
-
performAction: function anonymous(yytext, yyleng, yylineno, yy, yystate, $$, _$),
|
|
1680
|
-
table: [...],
|
|
1681
|
-
defaultActions: {...},
|
|
1682
|
-
parseError: function(str, hash),
|
|
1683
|
-
parse: function(input),
|
|
1684
|
-
|
|
1685
|
-
lexer: {
|
|
1686
|
-
EOF: 1,
|
|
1687
|
-
parseError: function(str, hash),
|
|
1688
|
-
setInput: function(input),
|
|
1689
|
-
input: function(),
|
|
1690
|
-
unput: function(str),
|
|
1691
|
-
more: function(),
|
|
1692
|
-
less: function(n),
|
|
1693
|
-
pastInput: function(),
|
|
1694
|
-
upcomingInput: function(),
|
|
1695
|
-
showPosition: function(),
|
|
1696
|
-
test_match: function(regex_match_array, rule_index),
|
|
1697
|
-
next: function(),
|
|
1698
|
-
lex: function(),
|
|
1699
|
-
begin: function(condition),
|
|
1700
|
-
popState: function(),
|
|
1701
|
-
_currentRules: function(),
|
|
1702
|
-
topState: function(),
|
|
1703
|
-
pushState: function(condition),
|
|
1704
|
-
|
|
1705
|
-
options: {
|
|
1706
|
-
ranges: boolean (optional: true ==> token location info will include a .range[] member)
|
|
1707
|
-
flex: boolean (optional: true ==> flex-like lexing behaviour where the rules are tested exhaustively to find the longest match)
|
|
1708
|
-
backtrack_lexer: boolean (optional: true ==> lexer regexes are tested in order and for each matching regex the action code is invoked; the lexer terminates the scan when a token is returned by the action code)
|
|
1709
|
-
},
|
|
1710
|
-
|
|
1711
|
-
performAction: function(yy, yy_, $avoiding_name_collisions, YY_START),
|
|
1712
|
-
rules: [...],
|
|
1713
|
-
conditions: {associative list: name ==> set},
|
|
1714
|
-
}
|
|
1715
|
-
}
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
token location info (@$, _$, etc.): {
|
|
1719
|
-
first_line: n,
|
|
1720
|
-
last_line: n,
|
|
1721
|
-
first_column: n,
|
|
1722
|
-
last_column: n,
|
|
1723
|
-
range: [start_number, end_number] (where the numbers are indexes into the input string, regular zero-based)
|
|
1724
|
-
}
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
the parseError function receives a 'hash' object with these members for lexer and parser errors: {
|
|
1728
|
-
text: (matched text)
|
|
1729
|
-
token: (the produced terminal token, if any)
|
|
1730
|
-
line: (yylineno)
|
|
1731
|
-
}
|
|
1732
|
-
while parser (grammar) errors will also provide these members, i.e. parser errors deliver a superset of attributes: {
|
|
1733
|
-
loc: (yylloc)
|
|
1734
|
-
expected: (string describing the set of expected tokens)
|
|
1735
|
-
recoverable: (boolean: TRUE when the parser has a error recovery rule available for this particular error)
|
|
1736
|
-
}
|
|
1737
|
-
*/
|
|
1665
|
+
/* Jison generated parser */
|
|
1738
1666
|
"use strict";
|
|
1739
1667
|
|
|
1740
|
-
var _Object$create = __webpack_require__(38)["default"];
|
|
1741
|
-
|
|
1742
1668
|
exports.__esModule = true;
|
|
1743
1669
|
var handlebars = (function () {
|
|
1744
|
-
var o = function o(k, v, _o, l) {
|
|
1745
|
-
for (_o = _o || {}, l = k.length; l--; _o[k[l]] = v);return _o;
|
|
1746
|
-
},
|
|
1747
|
-
$V0 = [2, 46],
|
|
1748
|
-
$V1 = [1, 20],
|
|
1749
|
-
$V2 = [5, 14, 15, 19, 29, 34, 39, 44, 47, 48, 51, 55, 60],
|
|
1750
|
-
$V3 = [1, 35],
|
|
1751
|
-
$V4 = [1, 28],
|
|
1752
|
-
$V5 = [1, 29],
|
|
1753
|
-
$V6 = [1, 30],
|
|
1754
|
-
$V7 = [1, 31],
|
|
1755
|
-
$V8 = [1, 32],
|
|
1756
|
-
$V9 = [1, 34],
|
|
1757
|
-
$Va = [14, 15, 19, 29, 34, 39, 44, 47, 48, 51, 55, 60],
|
|
1758
|
-
$Vb = [14, 15, 19, 29, 34, 44, 47, 48, 51, 55, 60],
|
|
1759
|
-
$Vc = [1, 44],
|
|
1760
|
-
$Vd = [14, 15, 19, 29, 34, 47, 48, 51, 55, 60],
|
|
1761
|
-
$Ve = [33, 65, 72, 80, 81, 82, 83, 84, 85],
|
|
1762
|
-
$Vf = [23, 33, 54, 65, 68, 72, 75, 80, 81, 82, 83, 84, 85],
|
|
1763
|
-
$Vg = [1, 51],
|
|
1764
|
-
$Vh = [23, 33, 54, 65, 68, 72, 75, 80, 81, 82, 83, 84, 85, 87],
|
|
1765
|
-
$Vi = [2, 45],
|
|
1766
|
-
$Vj = [54, 65, 72, 80, 81, 82, 83, 84, 85],
|
|
1767
|
-
$Vk = [1, 58],
|
|
1768
|
-
$Vl = [1, 59],
|
|
1769
|
-
$Vm = [15, 18],
|
|
1770
|
-
$Vn = [1, 67],
|
|
1771
|
-
$Vo = [33, 65, 72, 75, 80, 81, 82, 83, 84, 85],
|
|
1772
|
-
$Vp = [23, 65, 72, 80, 81, 82, 83, 84, 85],
|
|
1773
|
-
$Vq = [1, 79],
|
|
1774
|
-
$Vr = [65, 68, 72, 80, 81, 82, 83, 84, 85],
|
|
1775
|
-
$Vs = [33, 75],
|
|
1776
|
-
$Vt = [23, 33, 54, 68, 72, 75],
|
|
1777
|
-
$Vu = [1, 109],
|
|
1778
|
-
$Vv = [1, 121],
|
|
1779
|
-
$Vw = [72, 77];
|
|
1780
1670
|
var parser = { trace: function trace() {},
|
|
1781
1671
|
yy: {},
|
|
1782
1672
|
symbols_: { "error": 2, "root": 3, "program": 4, "EOF": 5, "program_repetition0": 6, "statement": 7, "mustache": 8, "block": 9, "rawBlock": 10, "partial": 11, "partialBlock": 12, "content": 13, "COMMENT": 14, "CONTENT": 15, "openRawBlock": 16, "rawBlock_repetition_plus0": 17, "END_RAW_BLOCK": 18, "OPEN_RAW_BLOCK": 19, "helperName": 20, "openRawBlock_repetition0": 21, "openRawBlock_option0": 22, "CLOSE_RAW_BLOCK": 23, "openBlock": 24, "block_option0": 25, "closeBlock": 26, "openInverse": 27, "block_option1": 28, "OPEN_BLOCK": 29, "openBlock_repetition0": 30, "openBlock_option0": 31, "openBlock_option1": 32, "CLOSE": 33, "OPEN_INVERSE": 34, "openInverse_repetition0": 35, "openInverse_option0": 36, "openInverse_option1": 37, "openInverseChain": 38, "OPEN_INVERSE_CHAIN": 39, "openInverseChain_repetition0": 40, "openInverseChain_option0": 41, "openInverseChain_option1": 42, "inverseAndProgram": 43, "INVERSE": 44, "inverseChain": 45, "inverseChain_option0": 46, "OPEN_ENDBLOCK": 47, "OPEN": 48, "mustache_repetition0": 49, "mustache_option0": 50, "OPEN_UNESCAPED": 51, "mustache_repetition1": 52, "mustache_option1": 53, "CLOSE_UNESCAPED": 54, "OPEN_PARTIAL": 55, "partialName": 56, "partial_repetition0": 57, "partial_option0": 58, "openPartialBlock": 59, "OPEN_PARTIAL_BLOCK": 60, "openPartialBlock_repetition0": 61, "openPartialBlock_option0": 62, "param": 63, "sexpr": 64, "OPEN_SEXPR": 65, "sexpr_repetition0": 66, "sexpr_option0": 67, "CLOSE_SEXPR": 68, "hash": 69, "hash_repetition_plus0": 70, "hashSegment": 71, "ID": 72, "EQUALS": 73, "blockParams": 74, "OPEN_BLOCK_PARAMS": 75, "blockParams_repetition_plus0": 76, "CLOSE_BLOCK_PARAMS": 77, "path": 78, "dataName": 79, "STRING": 80, "NUMBER": 81, "BOOLEAN": 82, "UNDEFINED": 83, "NULL": 84, "DATA": 85, "pathSegments": 86, "SEP": 87, "$accept": 0, "$end": 1 },
|
|
1783
1673
|
terminals_: { 2: "error", 5: "EOF", 14: "COMMENT", 15: "CONTENT", 18: "END_RAW_BLOCK", 19: "OPEN_RAW_BLOCK", 23: "CLOSE_RAW_BLOCK", 29: "OPEN_BLOCK", 33: "CLOSE", 34: "OPEN_INVERSE", 39: "OPEN_INVERSE_CHAIN", 44: "INVERSE", 47: "OPEN_ENDBLOCK", 48: "OPEN", 51: "OPEN_UNESCAPED", 54: "CLOSE_UNESCAPED", 55: "OPEN_PARTIAL", 60: "OPEN_PARTIAL_BLOCK", 65: "OPEN_SEXPR", 68: "CLOSE_SEXPR", 72: "ID", 73: "EQUALS", 75: "OPEN_BLOCK_PARAMS", 77: "CLOSE_BLOCK_PARAMS", 80: "STRING", 81: "NUMBER", 82: "BOOLEAN", 83: "UNDEFINED", 84: "NULL", 85: "DATA", 87: "SEP" },
|
|
1784
1674
|
productions_: [0, [3, 2], [4, 1], [7, 1], [7, 1], [7, 1], [7, 1], [7, 1], [7, 1], [7, 1], [13, 1], [10, 3], [16, 5], [9, 4], [9, 4], [24, 6], [27, 6], [38, 6], [43, 2], [45, 3], [45, 1], [26, 3], [8, 5], [8, 5], [11, 5], [12, 3], [59, 5], [63, 1], [63, 1], [64, 5], [69, 1], [71, 3], [74, 3], [20, 1], [20, 1], [20, 1], [20, 1], [20, 1], [20, 1], [20, 1], [56, 1], [56, 1], [79, 2], [78, 1], [86, 3], [86, 1], [6, 0], [6, 2], [17, 1], [17, 2], [21, 0], [21, 2], [22, 0], [22, 1], [25, 0], [25, 1], [28, 0], [28, 1], [30, 0], [30, 2], [31, 0], [31, 1], [32, 0], [32, 1], [35, 0], [35, 2], [36, 0], [36, 1], [37, 0], [37, 1], [40, 0], [40, 2], [41, 0], [41, 1], [42, 0], [42, 1], [46, 0], [46, 1], [49, 0], [49, 2], [50, 0], [50, 1], [52, 0], [52, 2], [53, 0], [53, 1], [57, 0], [57, 2], [58, 0], [58, 1], [61, 0], [61, 2], [62, 0], [62, 1], [66, 0], [66, 2], [67, 0], [67, 1], [70, 1], [70, 2], [76, 1], [76, 2]],
|
|
1785
|
-
performAction: function anonymous(yytext, yyleng, yylineno, yy, yystate,
|
|
1786
|
-
/* this == yyval */
|
|
1675
|
+
performAction: function anonymous(yytext, yyleng, yylineno, yy, yystate, $$, _$) {
|
|
1787
1676
|
|
|
1788
1677
|
var $0 = $$.length - 1;
|
|
1789
1678
|
switch (yystate) {
|
|
@@ -1793,11 +1682,25 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
1793
1682
|
case 2:
|
|
1794
1683
|
this.$ = yy.prepareProgram($$[$0]);
|
|
1795
1684
|
break;
|
|
1796
|
-
case 3:
|
|
1685
|
+
case 3:
|
|
1686
|
+
this.$ = $$[$0];
|
|
1687
|
+
break;
|
|
1688
|
+
case 4:
|
|
1689
|
+
this.$ = $$[$0];
|
|
1690
|
+
break;
|
|
1691
|
+
case 5:
|
|
1692
|
+
this.$ = $$[$0];
|
|
1693
|
+
break;
|
|
1694
|
+
case 6:
|
|
1695
|
+
this.$ = $$[$0];
|
|
1696
|
+
break;
|
|
1697
|
+
case 7:
|
|
1698
|
+
this.$ = $$[$0];
|
|
1699
|
+
break;
|
|
1700
|
+
case 8:
|
|
1797
1701
|
this.$ = $$[$0];
|
|
1798
1702
|
break;
|
|
1799
1703
|
case 9:
|
|
1800
|
-
|
|
1801
1704
|
this.$ = {
|
|
1802
1705
|
type: 'CommentStatement',
|
|
1803
1706
|
value: yy.stripComment($$[$0]),
|
|
@@ -1807,7 +1710,6 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
1807
1710
|
|
|
1808
1711
|
break;
|
|
1809
1712
|
case 10:
|
|
1810
|
-
|
|
1811
1713
|
this.$ = {
|
|
1812
1714
|
type: 'ContentStatement',
|
|
1813
1715
|
original: $$[$0],
|
|
@@ -1831,29 +1733,36 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
1831
1733
|
case 15:
|
|
1832
1734
|
this.$ = { open: $$[$0 - 5], path: $$[$0 - 4], params: $$[$0 - 3], hash: $$[$0 - 2], blockParams: $$[$0 - 1], strip: yy.stripFlags($$[$0 - 5], $$[$0]) };
|
|
1833
1735
|
break;
|
|
1834
|
-
case 16:
|
|
1736
|
+
case 16:
|
|
1737
|
+
this.$ = { path: $$[$0 - 4], params: $$[$0 - 3], hash: $$[$0 - 2], blockParams: $$[$0 - 1], strip: yy.stripFlags($$[$0 - 5], $$[$0]) };
|
|
1738
|
+
break;
|
|
1739
|
+
case 17:
|
|
1835
1740
|
this.$ = { path: $$[$0 - 4], params: $$[$0 - 3], hash: $$[$0 - 2], blockParams: $$[$0 - 1], strip: yy.stripFlags($$[$0 - 5], $$[$0]) };
|
|
1836
1741
|
break;
|
|
1837
1742
|
case 18:
|
|
1838
1743
|
this.$ = { strip: yy.stripFlags($$[$0 - 1], $$[$0 - 1]), program: $$[$0] };
|
|
1839
1744
|
break;
|
|
1840
1745
|
case 19:
|
|
1841
|
-
|
|
1842
1746
|
var inverse = yy.prepareBlock($$[$0 - 2], $$[$0 - 1], $$[$0], $$[$0], false, this._$),
|
|
1843
1747
|
program = yy.prepareProgram([inverse], $$[$0 - 1].loc);
|
|
1844
1748
|
program.chained = true;
|
|
1845
1749
|
|
|
1846
1750
|
this.$ = { strip: $$[$0 - 2].strip, program: program, chain: true };
|
|
1847
1751
|
|
|
1752
|
+
break;
|
|
1753
|
+
case 20:
|
|
1754
|
+
this.$ = $$[$0];
|
|
1848
1755
|
break;
|
|
1849
1756
|
case 21:
|
|
1850
1757
|
this.$ = { path: $$[$0 - 1], strip: yy.stripFlags($$[$0 - 2], $$[$0]) };
|
|
1851
1758
|
break;
|
|
1852
|
-
case 22:
|
|
1759
|
+
case 22:
|
|
1760
|
+
this.$ = yy.prepareMustache($$[$0 - 3], $$[$0 - 2], $$[$0 - 1], $$[$0 - 4], yy.stripFlags($$[$0 - 4], $$[$0]), this._$);
|
|
1761
|
+
break;
|
|
1762
|
+
case 23:
|
|
1853
1763
|
this.$ = yy.prepareMustache($$[$0 - 3], $$[$0 - 2], $$[$0 - 1], $$[$0 - 4], yy.stripFlags($$[$0 - 4], $$[$0]), this._$);
|
|
1854
1764
|
break;
|
|
1855
1765
|
case 24:
|
|
1856
|
-
|
|
1857
1766
|
this.$ = {
|
|
1858
1767
|
type: 'PartialStatement',
|
|
1859
1768
|
name: $$[$0 - 3],
|
|
@@ -1871,8 +1780,13 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
1871
1780
|
case 26:
|
|
1872
1781
|
this.$ = { path: $$[$0 - 3], params: $$[$0 - 2], hash: $$[$0 - 1], strip: yy.stripFlags($$[$0 - 4], $$[$0]) };
|
|
1873
1782
|
break;
|
|
1783
|
+
case 27:
|
|
1784
|
+
this.$ = $$[$0];
|
|
1785
|
+
break;
|
|
1786
|
+
case 28:
|
|
1787
|
+
this.$ = $$[$0];
|
|
1788
|
+
break;
|
|
1874
1789
|
case 29:
|
|
1875
|
-
|
|
1876
1790
|
this.$ = {
|
|
1877
1791
|
type: 'SubExpression',
|
|
1878
1792
|
path: $$[$0 - 3],
|
|
@@ -1891,6 +1805,12 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
1891
1805
|
case 32:
|
|
1892
1806
|
this.$ = yy.id($$[$0 - 1]);
|
|
1893
1807
|
break;
|
|
1808
|
+
case 33:
|
|
1809
|
+
this.$ = $$[$0];
|
|
1810
|
+
break;
|
|
1811
|
+
case 34:
|
|
1812
|
+
this.$ = $$[$0];
|
|
1813
|
+
break;
|
|
1894
1814
|
case 35:
|
|
1895
1815
|
this.$ = { type: 'StringLiteral', value: $$[$0], original: $$[$0], loc: yy.locInfo(this._$) };
|
|
1896
1816
|
break;
|
|
@@ -1906,6 +1826,12 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
1906
1826
|
case 39:
|
|
1907
1827
|
this.$ = { type: 'NullLiteral', original: null, value: null, loc: yy.locInfo(this._$) };
|
|
1908
1828
|
break;
|
|
1829
|
+
case 40:
|
|
1830
|
+
this.$ = $$[$0];
|
|
1831
|
+
break;
|
|
1832
|
+
case 41:
|
|
1833
|
+
this.$ = $$[$0];
|
|
1834
|
+
break;
|
|
1909
1835
|
case 42:
|
|
1910
1836
|
this.$ = yy.preparePath(true, $$[$0], this._$);
|
|
1911
1837
|
break;
|
|
@@ -1918,81 +1844,125 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
1918
1844
|
case 45:
|
|
1919
1845
|
this.$ = [{ part: yy.id($$[$0]), original: $$[$0] }];
|
|
1920
1846
|
break;
|
|
1921
|
-
case 46:
|
|
1847
|
+
case 46:
|
|
1848
|
+
this.$ = [];
|
|
1849
|
+
break;
|
|
1850
|
+
case 47:
|
|
1851
|
+
$$[$0 - 1].push($$[$0]);
|
|
1852
|
+
break;
|
|
1853
|
+
case 48:
|
|
1854
|
+
this.$ = [$$[$0]];
|
|
1855
|
+
break;
|
|
1856
|
+
case 49:
|
|
1857
|
+
$$[$0 - 1].push($$[$0]);
|
|
1858
|
+
break;
|
|
1859
|
+
case 50:
|
|
1860
|
+
this.$ = [];
|
|
1861
|
+
break;
|
|
1862
|
+
case 51:
|
|
1863
|
+
$$[$0 - 1].push($$[$0]);
|
|
1864
|
+
break;
|
|
1865
|
+
case 58:
|
|
1866
|
+
this.$ = [];
|
|
1867
|
+
break;
|
|
1868
|
+
case 59:
|
|
1869
|
+
$$[$0 - 1].push($$[$0]);
|
|
1870
|
+
break;
|
|
1871
|
+
case 64:
|
|
1872
|
+
this.$ = [];
|
|
1873
|
+
break;
|
|
1874
|
+
case 65:
|
|
1875
|
+
$$[$0 - 1].push($$[$0]);
|
|
1876
|
+
break;
|
|
1877
|
+
case 70:
|
|
1878
|
+
this.$ = [];
|
|
1879
|
+
break;
|
|
1880
|
+
case 71:
|
|
1881
|
+
$$[$0 - 1].push($$[$0]);
|
|
1882
|
+
break;
|
|
1883
|
+
case 78:
|
|
1884
|
+
this.$ = [];
|
|
1885
|
+
break;
|
|
1886
|
+
case 79:
|
|
1887
|
+
$$[$0 - 1].push($$[$0]);
|
|
1888
|
+
break;
|
|
1889
|
+
case 82:
|
|
1890
|
+
this.$ = [];
|
|
1891
|
+
break;
|
|
1892
|
+
case 83:
|
|
1893
|
+
$$[$0 - 1].push($$[$0]);
|
|
1894
|
+
break;
|
|
1895
|
+
case 86:
|
|
1896
|
+
this.$ = [];
|
|
1897
|
+
break;
|
|
1898
|
+
case 87:
|
|
1899
|
+
$$[$0 - 1].push($$[$0]);
|
|
1900
|
+
break;
|
|
1901
|
+
case 90:
|
|
1922
1902
|
this.$ = [];
|
|
1923
1903
|
break;
|
|
1924
|
-
case
|
|
1904
|
+
case 91:
|
|
1925
1905
|
$$[$0 - 1].push($$[$0]);
|
|
1926
1906
|
break;
|
|
1927
|
-
case
|
|
1907
|
+
case 94:
|
|
1908
|
+
this.$ = [];
|
|
1909
|
+
break;
|
|
1910
|
+
case 95:
|
|
1911
|
+
$$[$0 - 1].push($$[$0]);
|
|
1912
|
+
break;
|
|
1913
|
+
case 98:
|
|
1928
1914
|
this.$ = [$$[$0]];
|
|
1929
1915
|
break;
|
|
1916
|
+
case 99:
|
|
1917
|
+
$$[$0 - 1].push($$[$0]);
|
|
1918
|
+
break;
|
|
1919
|
+
case 100:
|
|
1920
|
+
this.$ = [$$[$0]];
|
|
1921
|
+
break;
|
|
1922
|
+
case 101:
|
|
1923
|
+
$$[$0 - 1].push($$[$0]);
|
|
1924
|
+
break;
|
|
1930
1925
|
}
|
|
1931
1926
|
},
|
|
1932
|
-
table: [o([5, 14, 15, 19, 29, 34, 48, 51, 55, 60], $V0, { 3: 1, 4: 2, 6: 3 }), { 1: [3] }, { 5: [1, 4] }, o([5, 39, 44, 47], [2, 2], { 7: 5, 8: 6, 9: 7, 10: 8, 11: 9, 12: 10, 13: 11, 24: 15, 27: 16, 16: 17, 59: 19, 14: [1, 12], 15: $V1, 19: [1, 23], 29: [1, 21], 34: [1, 22], 48: [1, 13], 51: [1, 14], 55: [1, 18], 60: [1, 24] }), { 1: [2, 1] }, o($V2, [2, 47]), o($V2, [2, 3]), o($V2, [2, 4]), o($V2, [2, 5]), o($V2, [2, 6]), o($V2, [2, 7]), o($V2, [2, 8]), o($V2, [2, 9]), { 20: 25, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 20: 36, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, o($Va, $V0, { 6: 3, 4: 37 }), o($Vb, $V0, { 6: 3, 4: 38 }), { 13: 40, 15: $V1, 17: 39 }, { 20: 42, 56: 41, 64: 43, 65: $Vc, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, o($Vd, $V0, { 6: 3, 4: 45 }), o([5, 14, 15, 18, 19, 29, 34, 39, 44, 47, 48, 51, 55, 60], [2, 10]), { 20: 46, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 20: 47, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 20: 48, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 20: 42, 56: 49, 64: 43, 65: $Vc, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, o($Ve, [2, 78], { 49: 50 }), o($Vf, [2, 33]), o($Vf, [2, 34]), o($Vf, [2, 35]), o($Vf, [2, 36]), o($Vf, [2, 37]), o($Vf, [2, 38]), o($Vf, [2, 39]), o($Vf, [2, 43], { 87: $Vg }), { 72: $V3, 86: 52 }, o($Vh, $Vi), o($Vj, [2, 82], { 52: 53 }), { 25: 54, 38: 56, 39: $Vk, 43: 57, 44: $Vl, 45: 55, 47: [2, 54] }, { 28: 60, 43: 61, 44: $Vl, 47: [2, 56] }, { 13: 63, 15: $V1, 18: [1, 62] }, o($Vm, [2, 48]), o($Ve, [2, 86], { 57: 64 }), o($Ve, [2, 40]), o($Ve, [2, 41]), { 20: 65, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 26: 66, 47: $Vn }, o($Vo, [2, 58], { 30: 68 }), o($Vo, [2, 64], { 35: 69 }), o($Vp, [2, 50], { 21: 70 }), o($Ve, [2, 90], { 61: 71 }), { 20: 75, 33: [2, 80], 50: 72, 63: 73, 64: 76, 65: $Vc, 69: 74, 70: 77, 71: 78, 72: $Vq, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 72: [1, 80] }, o($Vf, [2, 42], { 87: $Vg }), { 20: 75, 53: 81, 54: [2, 84], 63: 82, 64: 76, 65: $Vc, 69: 83, 70: 77, 71: 78, 72: $Vq, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 26: 84, 47: $Vn }, { 47: [2, 55] }, o($Va, $V0, { 6: 3, 4: 85 }), { 47: [2, 20] }, { 20: 86, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, o($Vd, $V0, { 6: 3, 4: 87 }), { 26: 88, 47: $Vn }, { 47: [2, 57] }, o($V2, [2, 11]), o($Vm, [2, 49]), { 20: 75, 33: [2, 88], 58: 89, 63: 90, 64: 76, 65: $Vc, 69: 91, 70: 77, 71: 78, 72: $Vq, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, o($Vr, [2, 94], { 66: 92 }), o($V2, [2, 25]), { 20: 93, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, o($Vs, [2, 60], { 78: 26, 79: 27, 86: 33, 20: 75, 64: 76, 70: 77, 71: 78, 31: 94, 63: 95, 69: 96, 65: $Vc, 72: $Vq, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9 }), o($Vs, [2, 66], { 78: 26, 79: 27, 86: 33, 20: 75, 64: 76, 70: 77, 71: 78, 36: 97, 63: 98, 69: 99, 65: $Vc, 72: $Vq, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9 }), { 20: 75, 22: 100, 23: [2, 52], 63: 101, 64: 76, 65: $Vc, 69: 102, 70: 77, 71: 78, 72: $Vq, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 20: 75, 33: [2, 92], 62: 103, 63: 104, 64: 76, 65: $Vc, 69: 105, 70: 77, 71: 78, 72: $Vq, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 33: [1, 106] }, o($Ve, [2, 79]), { 33: [2, 81] }, o($Vf, [2, 27]), o($Vf, [2, 28]), o([23, 33, 54, 68, 75], [2, 30], { 71: 107, 72: [1, 108] }), o($Vt, [2, 98]), o($Vh, $Vi, { 73: $Vu }), o($Vh, [2, 44]), { 54: [1, 110] }, o($Vj, [2, 83]), { 54: [2, 85] }, o($V2, [2, 13]), { 38: 56, 39: $Vk, 43: 57, 44: $Vl, 45: 112, 46: 111, 47: [2, 76] }, o($Vo, [2, 70], { 40: 113 }), { 47: [2, 18] }, o($V2, [2, 14]), { 33: [1, 114] }, o($Ve, [2, 87]), { 33: [2, 89] }, { 20: 75, 63: 116, 64: 76, 65: $Vc, 67: 115, 68: [2, 96], 69: 117, 70: 77, 71: 78, 72: $Vq, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 33: [1, 118] }, { 32: 119, 33: [2, 62], 74: 120, 75: $Vv }, o($Vo, [2, 59]), o($Vs, [2, 61]), { 33: [2, 68], 37: 122, 74: 123, 75: $Vv }, o($Vo, [2, 65]), o($Vs, [2, 67]), { 23: [1, 124] }, o($Vp, [2, 51]), { 23: [2, 53] }, { 33: [1, 125] }, o($Ve, [2, 91]), { 33: [2, 93] }, o($V2, [2, 22]), o($Vt, [2, 99]), { 73: $Vu }, { 20: 75, 63: 126, 64: 76, 65: $Vc, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, o($V2, [2, 23]), { 47: [2, 19] }, { 47: [2, 77] }, o($Vs, [2, 72], { 78: 26, 79: 27, 86: 33, 20: 75, 64: 76, 70: 77, 71: 78, 41: 127, 63: 128, 69: 129, 65: $Vc, 72: $Vq, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9 }), o($V2, [2, 24]), { 68: [1, 130] }, o($Vr, [2, 95]), { 68: [2, 97] }, o($V2, [2, 21]), { 33: [1, 131] }, { 33: [2, 63] }, { 72: [1, 133], 76: 132 }, { 33: [1, 134] }, { 33: [2, 69] }, { 15: [2, 12] }, o($Vd, [2, 26]), o($Vt, [2, 31]), { 33: [2, 74], 42: 135, 74: 136, 75: $Vv }, o($Vo, [2, 71]), o($Vs, [2, 73]), o($Vf, [2, 29]), o($Va, [2, 15]), { 72: [1, 138], 77: [1, 137] }, o($Vw, [2, 100]), o($Vb, [2, 16]), { 33: [1, 139] }, { 33: [2, 75] }, { 33: [2, 32] }, o($Vw, [2, 101]), o($Va, [2, 17])],
|
|
1927
|
+
table: [{ 3: 1, 4: 2, 5: [2, 46], 6: 3, 14: [2, 46], 15: [2, 46], 19: [2, 46], 29: [2, 46], 34: [2, 46], 48: [2, 46], 51: [2, 46], 55: [2, 46], 60: [2, 46] }, { 1: [3] }, { 5: [1, 4] }, { 5: [2, 2], 7: 5, 8: 6, 9: 7, 10: 8, 11: 9, 12: 10, 13: 11, 14: [1, 12], 15: [1, 20], 16: 17, 19: [1, 23], 24: 15, 27: 16, 29: [1, 21], 34: [1, 22], 39: [2, 2], 44: [2, 2], 47: [2, 2], 48: [1, 13], 51: [1, 14], 55: [1, 18], 59: 19, 60: [1, 24] }, { 1: [2, 1] }, { 5: [2, 47], 14: [2, 47], 15: [2, 47], 19: [2, 47], 29: [2, 47], 34: [2, 47], 39: [2, 47], 44: [2, 47], 47: [2, 47], 48: [2, 47], 51: [2, 47], 55: [2, 47], 60: [2, 47] }, { 5: [2, 3], 14: [2, 3], 15: [2, 3], 19: [2, 3], 29: [2, 3], 34: [2, 3], 39: [2, 3], 44: [2, 3], 47: [2, 3], 48: [2, 3], 51: [2, 3], 55: [2, 3], 60: [2, 3] }, { 5: [2, 4], 14: [2, 4], 15: [2, 4], 19: [2, 4], 29: [2, 4], 34: [2, 4], 39: [2, 4], 44: [2, 4], 47: [2, 4], 48: [2, 4], 51: [2, 4], 55: [2, 4], 60: [2, 4] }, { 5: [2, 5], 14: [2, 5], 15: [2, 5], 19: [2, 5], 29: [2, 5], 34: [2, 5], 39: [2, 5], 44: [2, 5], 47: [2, 5], 48: [2, 5], 51: [2, 5], 55: [2, 5], 60: [2, 5] }, { 5: [2, 6], 14: [2, 6], 15: [2, 6], 19: [2, 6], 29: [2, 6], 34: [2, 6], 39: [2, 6], 44: [2, 6], 47: [2, 6], 48: [2, 6], 51: [2, 6], 55: [2, 6], 60: [2, 6] }, { 5: [2, 7], 14: [2, 7], 15: [2, 7], 19: [2, 7], 29: [2, 7], 34: [2, 7], 39: [2, 7], 44: [2, 7], 47: [2, 7], 48: [2, 7], 51: [2, 7], 55: [2, 7], 60: [2, 7] }, { 5: [2, 8], 14: [2, 8], 15: [2, 8], 19: [2, 8], 29: [2, 8], 34: [2, 8], 39: [2, 8], 44: [2, 8], 47: [2, 8], 48: [2, 8], 51: [2, 8], 55: [2, 8], 60: [2, 8] }, { 5: [2, 9], 14: [2, 9], 15: [2, 9], 19: [2, 9], 29: [2, 9], 34: [2, 9], 39: [2, 9], 44: [2, 9], 47: [2, 9], 48: [2, 9], 51: [2, 9], 55: [2, 9], 60: [2, 9] }, { 20: 25, 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 20: 36, 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 4: 37, 6: 3, 14: [2, 46], 15: [2, 46], 19: [2, 46], 29: [2, 46], 34: [2, 46], 39: [2, 46], 44: [2, 46], 47: [2, 46], 48: [2, 46], 51: [2, 46], 55: [2, 46], 60: [2, 46] }, { 4: 38, 6: 3, 14: [2, 46], 15: [2, 46], 19: [2, 46], 29: [2, 46], 34: [2, 46], 44: [2, 46], 47: [2, 46], 48: [2, 46], 51: [2, 46], 55: [2, 46], 60: [2, 46] }, { 13: 40, 15: [1, 20], 17: 39 }, { 20: 42, 56: 41, 64: 43, 65: [1, 44], 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 4: 45, 6: 3, 14: [2, 46], 15: [2, 46], 19: [2, 46], 29: [2, 46], 34: [2, 46], 47: [2, 46], 48: [2, 46], 51: [2, 46], 55: [2, 46], 60: [2, 46] }, { 5: [2, 10], 14: [2, 10], 15: [2, 10], 18: [2, 10], 19: [2, 10], 29: [2, 10], 34: [2, 10], 39: [2, 10], 44: [2, 10], 47: [2, 10], 48: [2, 10], 51: [2, 10], 55: [2, 10], 60: [2, 10] }, { 20: 46, 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 20: 47, 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 20: 48, 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 20: 42, 56: 49, 64: 43, 65: [1, 44], 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 33: [2, 78], 49: 50, 65: [2, 78], 72: [2, 78], 80: [2, 78], 81: [2, 78], 82: [2, 78], 83: [2, 78], 84: [2, 78], 85: [2, 78] }, { 23: [2, 33], 33: [2, 33], 54: [2, 33], 65: [2, 33], 68: [2, 33], 72: [2, 33], 75: [2, 33], 80: [2, 33], 81: [2, 33], 82: [2, 33], 83: [2, 33], 84: [2, 33], 85: [2, 33] }, { 23: [2, 34], 33: [2, 34], 54: [2, 34], 65: [2, 34], 68: [2, 34], 72: [2, 34], 75: [2, 34], 80: [2, 34], 81: [2, 34], 82: [2, 34], 83: [2, 34], 84: [2, 34], 85: [2, 34] }, { 23: [2, 35], 33: [2, 35], 54: [2, 35], 65: [2, 35], 68: [2, 35], 72: [2, 35], 75: [2, 35], 80: [2, 35], 81: [2, 35], 82: [2, 35], 83: [2, 35], 84: [2, 35], 85: [2, 35] }, { 23: [2, 36], 33: [2, 36], 54: [2, 36], 65: [2, 36], 68: [2, 36], 72: [2, 36], 75: [2, 36], 80: [2, 36], 81: [2, 36], 82: [2, 36], 83: [2, 36], 84: [2, 36], 85: [2, 36] }, { 23: [2, 37], 33: [2, 37], 54: [2, 37], 65: [2, 37], 68: [2, 37], 72: [2, 37], 75: [2, 37], 80: [2, 37], 81: [2, 37], 82: [2, 37], 83: [2, 37], 84: [2, 37], 85: [2, 37] }, { 23: [2, 38], 33: [2, 38], 54: [2, 38], 65: [2, 38], 68: [2, 38], 72: [2, 38], 75: [2, 38], 80: [2, 38], 81: [2, 38], 82: [2, 38], 83: [2, 38], 84: [2, 38], 85: [2, 38] }, { 23: [2, 39], 33: [2, 39], 54: [2, 39], 65: [2, 39], 68: [2, 39], 72: [2, 39], 75: [2, 39], 80: [2, 39], 81: [2, 39], 82: [2, 39], 83: [2, 39], 84: [2, 39], 85: [2, 39] }, { 23: [2, 43], 33: [2, 43], 54: [2, 43], 65: [2, 43], 68: [2, 43], 72: [2, 43], 75: [2, 43], 80: [2, 43], 81: [2, 43], 82: [2, 43], 83: [2, 43], 84: [2, 43], 85: [2, 43], 87: [1, 51] }, { 72: [1, 35], 86: 52 }, { 23: [2, 45], 33: [2, 45], 54: [2, 45], 65: [2, 45], 68: [2, 45], 72: [2, 45], 75: [2, 45], 80: [2, 45], 81: [2, 45], 82: [2, 45], 83: [2, 45], 84: [2, 45], 85: [2, 45], 87: [2, 45] }, { 52: 53, 54: [2, 82], 65: [2, 82], 72: [2, 82], 80: [2, 82], 81: [2, 82], 82: [2, 82], 83: [2, 82], 84: [2, 82], 85: [2, 82] }, { 25: 54, 38: 56, 39: [1, 58], 43: 57, 44: [1, 59], 45: 55, 47: [2, 54] }, { 28: 60, 43: 61, 44: [1, 59], 47: [2, 56] }, { 13: 63, 15: [1, 20], 18: [1, 62] }, { 15: [2, 48], 18: [2, 48] }, { 33: [2, 86], 57: 64, 65: [2, 86], 72: [2, 86], 80: [2, 86], 81: [2, 86], 82: [2, 86], 83: [2, 86], 84: [2, 86], 85: [2, 86] }, { 33: [2, 40], 65: [2, 40], 72: [2, 40], 80: [2, 40], 81: [2, 40], 82: [2, 40], 83: [2, 40], 84: [2, 40], 85: [2, 40] }, { 33: [2, 41], 65: [2, 41], 72: [2, 41], 80: [2, 41], 81: [2, 41], 82: [2, 41], 83: [2, 41], 84: [2, 41], 85: [2, 41] }, { 20: 65, 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 26: 66, 47: [1, 67] }, { 30: 68, 33: [2, 58], 65: [2, 58], 72: [2, 58], 75: [2, 58], 80: [2, 58], 81: [2, 58], 82: [2, 58], 83: [2, 58], 84: [2, 58], 85: [2, 58] }, { 33: [2, 64], 35: 69, 65: [2, 64], 72: [2, 64], 75: [2, 64], 80: [2, 64], 81: [2, 64], 82: [2, 64], 83: [2, 64], 84: [2, 64], 85: [2, 64] }, { 21: 70, 23: [2, 50], 65: [2, 50], 72: [2, 50], 80: [2, 50], 81: [2, 50], 82: [2, 50], 83: [2, 50], 84: [2, 50], 85: [2, 50] }, { 33: [2, 90], 61: 71, 65: [2, 90], 72: [2, 90], 80: [2, 90], 81: [2, 90], 82: [2, 90], 83: [2, 90], 84: [2, 90], 85: [2, 90] }, { 20: 75, 33: [2, 80], 50: 72, 63: 73, 64: 76, 65: [1, 44], 69: 74, 70: 77, 71: 78, 72: [1, 79], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 72: [1, 80] }, { 23: [2, 42], 33: [2, 42], 54: [2, 42], 65: [2, 42], 68: [2, 42], 72: [2, 42], 75: [2, 42], 80: [2, 42], 81: [2, 42], 82: [2, 42], 83: [2, 42], 84: [2, 42], 85: [2, 42], 87: [1, 51] }, { 20: 75, 53: 81, 54: [2, 84], 63: 82, 64: 76, 65: [1, 44], 69: 83, 70: 77, 71: 78, 72: [1, 79], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 26: 84, 47: [1, 67] }, { 47: [2, 55] }, { 4: 85, 6: 3, 14: [2, 46], 15: [2, 46], 19: [2, 46], 29: [2, 46], 34: [2, 46], 39: [2, 46], 44: [2, 46], 47: [2, 46], 48: [2, 46], 51: [2, 46], 55: [2, 46], 60: [2, 46] }, { 47: [2, 20] }, { 20: 86, 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 4: 87, 6: 3, 14: [2, 46], 15: [2, 46], 19: [2, 46], 29: [2, 46], 34: [2, 46], 47: [2, 46], 48: [2, 46], 51: [2, 46], 55: [2, 46], 60: [2, 46] }, { 26: 88, 47: [1, 67] }, { 47: [2, 57] }, { 5: [2, 11], 14: [2, 11], 15: [2, 11], 19: [2, 11], 29: [2, 11], 34: [2, 11], 39: [2, 11], 44: [2, 11], 47: [2, 11], 48: [2, 11], 51: [2, 11], 55: [2, 11], 60: [2, 11] }, { 15: [2, 49], 18: [2, 49] }, { 20: 75, 33: [2, 88], 58: 89, 63: 90, 64: 76, 65: [1, 44], 69: 91, 70: 77, 71: 78, 72: [1, 79], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 65: [2, 94], 66: 92, 68: [2, 94], 72: [2, 94], 80: [2, 94], 81: [2, 94], 82: [2, 94], 83: [2, 94], 84: [2, 94], 85: [2, 94] }, { 5: [2, 25], 14: [2, 25], 15: [2, 25], 19: [2, 25], 29: [2, 25], 34: [2, 25], 39: [2, 25], 44: [2, 25], 47: [2, 25], 48: [2, 25], 51: [2, 25], 55: [2, 25], 60: [2, 25] }, { 20: 93, 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 20: 75, 31: 94, 33: [2, 60], 63: 95, 64: 76, 65: [1, 44], 69: 96, 70: 77, 71: 78, 72: [1, 79], 75: [2, 60], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 20: 75, 33: [2, 66], 36: 97, 63: 98, 64: 76, 65: [1, 44], 69: 99, 70: 77, 71: 78, 72: [1, 79], 75: [2, 66], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 20: 75, 22: 100, 23: [2, 52], 63: 101, 64: 76, 65: [1, 44], 69: 102, 70: 77, 71: 78, 72: [1, 79], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 20: 75, 33: [2, 92], 62: 103, 63: 104, 64: 76, 65: [1, 44], 69: 105, 70: 77, 71: 78, 72: [1, 79], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 33: [1, 106] }, { 33: [2, 79], 65: [2, 79], 72: [2, 79], 80: [2, 79], 81: [2, 79], 82: [2, 79], 83: [2, 79], 84: [2, 79], 85: [2, 79] }, { 33: [2, 81] }, { 23: [2, 27], 33: [2, 27], 54: [2, 27], 65: [2, 27], 68: [2, 27], 72: [2, 27], 75: [2, 27], 80: [2, 27], 81: [2, 27], 82: [2, 27], 83: [2, 27], 84: [2, 27], 85: [2, 27] }, { 23: [2, 28], 33: [2, 28], 54: [2, 28], 65: [2, 28], 68: [2, 28], 72: [2, 28], 75: [2, 28], 80: [2, 28], 81: [2, 28], 82: [2, 28], 83: [2, 28], 84: [2, 28], 85: [2, 28] }, { 23: [2, 30], 33: [2, 30], 54: [2, 30], 68: [2, 30], 71: 107, 72: [1, 108], 75: [2, 30] }, { 23: [2, 98], 33: [2, 98], 54: [2, 98], 68: [2, 98], 72: [2, 98], 75: [2, 98] }, { 23: [2, 45], 33: [2, 45], 54: [2, 45], 65: [2, 45], 68: [2, 45], 72: [2, 45], 73: [1, 109], 75: [2, 45], 80: [2, 45], 81: [2, 45], 82: [2, 45], 83: [2, 45], 84: [2, 45], 85: [2, 45], 87: [2, 45] }, { 23: [2, 44], 33: [2, 44], 54: [2, 44], 65: [2, 44], 68: [2, 44], 72: [2, 44], 75: [2, 44], 80: [2, 44], 81: [2, 44], 82: [2, 44], 83: [2, 44], 84: [2, 44], 85: [2, 44], 87: [2, 44] }, { 54: [1, 110] }, { 54: [2, 83], 65: [2, 83], 72: [2, 83], 80: [2, 83], 81: [2, 83], 82: [2, 83], 83: [2, 83], 84: [2, 83], 85: [2, 83] }, { 54: [2, 85] }, { 5: [2, 13], 14: [2, 13], 15: [2, 13], 19: [2, 13], 29: [2, 13], 34: [2, 13], 39: [2, 13], 44: [2, 13], 47: [2, 13], 48: [2, 13], 51: [2, 13], 55: [2, 13], 60: [2, 13] }, { 38: 56, 39: [1, 58], 43: 57, 44: [1, 59], 45: 112, 46: 111, 47: [2, 76] }, { 33: [2, 70], 40: 113, 65: [2, 70], 72: [2, 70], 75: [2, 70], 80: [2, 70], 81: [2, 70], 82: [2, 70], 83: [2, 70], 84: [2, 70], 85: [2, 70] }, { 47: [2, 18] }, { 5: [2, 14], 14: [2, 14], 15: [2, 14], 19: [2, 14], 29: [2, 14], 34: [2, 14], 39: [2, 14], 44: [2, 14], 47: [2, 14], 48: [2, 14], 51: [2, 14], 55: [2, 14], 60: [2, 14] }, { 33: [1, 114] }, { 33: [2, 87], 65: [2, 87], 72: [2, 87], 80: [2, 87], 81: [2, 87], 82: [2, 87], 83: [2, 87], 84: [2, 87], 85: [2, 87] }, { 33: [2, 89] }, { 20: 75, 63: 116, 64: 76, 65: [1, 44], 67: 115, 68: [2, 96], 69: 117, 70: 77, 71: 78, 72: [1, 79], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 33: [1, 118] }, { 32: 119, 33: [2, 62], 74: 120, 75: [1, 121] }, { 33: [2, 59], 65: [2, 59], 72: [2, 59], 75: [2, 59], 80: [2, 59], 81: [2, 59], 82: [2, 59], 83: [2, 59], 84: [2, 59], 85: [2, 59] }, { 33: [2, 61], 75: [2, 61] }, { 33: [2, 68], 37: 122, 74: 123, 75: [1, 121] }, { 33: [2, 65], 65: [2, 65], 72: [2, 65], 75: [2, 65], 80: [2, 65], 81: [2, 65], 82: [2, 65], 83: [2, 65], 84: [2, 65], 85: [2, 65] }, { 33: [2, 67], 75: [2, 67] }, { 23: [1, 124] }, { 23: [2, 51], 65: [2, 51], 72: [2, 51], 80: [2, 51], 81: [2, 51], 82: [2, 51], 83: [2, 51], 84: [2, 51], 85: [2, 51] }, { 23: [2, 53] }, { 33: [1, 125] }, { 33: [2, 91], 65: [2, 91], 72: [2, 91], 80: [2, 91], 81: [2, 91], 82: [2, 91], 83: [2, 91], 84: [2, 91], 85: [2, 91] }, { 33: [2, 93] }, { 5: [2, 22], 14: [2, 22], 15: [2, 22], 19: [2, 22], 29: [2, 22], 34: [2, 22], 39: [2, 22], 44: [2, 22], 47: [2, 22], 48: [2, 22], 51: [2, 22], 55: [2, 22], 60: [2, 22] }, { 23: [2, 99], 33: [2, 99], 54: [2, 99], 68: [2, 99], 72: [2, 99], 75: [2, 99] }, { 73: [1, 109] }, { 20: 75, 63: 126, 64: 76, 65: [1, 44], 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 5: [2, 23], 14: [2, 23], 15: [2, 23], 19: [2, 23], 29: [2, 23], 34: [2, 23], 39: [2, 23], 44: [2, 23], 47: [2, 23], 48: [2, 23], 51: [2, 23], 55: [2, 23], 60: [2, 23] }, { 47: [2, 19] }, { 47: [2, 77] }, { 20: 75, 33: [2, 72], 41: 127, 63: 128, 64: 76, 65: [1, 44], 69: 129, 70: 77, 71: 78, 72: [1, 79], 75: [2, 72], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 5: [2, 24], 14: [2, 24], 15: [2, 24], 19: [2, 24], 29: [2, 24], 34: [2, 24], 39: [2, 24], 44: [2, 24], 47: [2, 24], 48: [2, 24], 51: [2, 24], 55: [2, 24], 60: [2, 24] }, { 68: [1, 130] }, { 65: [2, 95], 68: [2, 95], 72: [2, 95], 80: [2, 95], 81: [2, 95], 82: [2, 95], 83: [2, 95], 84: [2, 95], 85: [2, 95] }, { 68: [2, 97] }, { 5: [2, 21], 14: [2, 21], 15: [2, 21], 19: [2, 21], 29: [2, 21], 34: [2, 21], 39: [2, 21], 44: [2, 21], 47: [2, 21], 48: [2, 21], 51: [2, 21], 55: [2, 21], 60: [2, 21] }, { 33: [1, 131] }, { 33: [2, 63] }, { 72: [1, 133], 76: 132 }, { 33: [1, 134] }, { 33: [2, 69] }, { 15: [2, 12] }, { 14: [2, 26], 15: [2, 26], 19: [2, 26], 29: [2, 26], 34: [2, 26], 47: [2, 26], 48: [2, 26], 51: [2, 26], 55: [2, 26], 60: [2, 26] }, { 23: [2, 31], 33: [2, 31], 54: [2, 31], 68: [2, 31], 72: [2, 31], 75: [2, 31] }, { 33: [2, 74], 42: 135, 74: 136, 75: [1, 121] }, { 33: [2, 71], 65: [2, 71], 72: [2, 71], 75: [2, 71], 80: [2, 71], 81: [2, 71], 82: [2, 71], 83: [2, 71], 84: [2, 71], 85: [2, 71] }, { 33: [2, 73], 75: [2, 73] }, { 23: [2, 29], 33: [2, 29], 54: [2, 29], 65: [2, 29], 68: [2, 29], 72: [2, 29], 75: [2, 29], 80: [2, 29], 81: [2, 29], 82: [2, 29], 83: [2, 29], 84: [2, 29], 85: [2, 29] }, { 14: [2, 15], 15: [2, 15], 19: [2, 15], 29: [2, 15], 34: [2, 15], 39: [2, 15], 44: [2, 15], 47: [2, 15], 48: [2, 15], 51: [2, 15], 55: [2, 15], 60: [2, 15] }, { 72: [1, 138], 77: [1, 137] }, { 72: [2, 100], 77: [2, 100] }, { 14: [2, 16], 15: [2, 16], 19: [2, 16], 29: [2, 16], 34: [2, 16], 44: [2, 16], 47: [2, 16], 48: [2, 16], 51: [2, 16], 55: [2, 16], 60: [2, 16] }, { 33: [1, 139] }, { 33: [2, 75] }, { 33: [2, 32] }, { 72: [2, 101], 77: [2, 101] }, { 14: [2, 17], 15: [2, 17], 19: [2, 17], 29: [2, 17], 34: [2, 17], 39: [2, 17], 44: [2, 17], 47: [2, 17], 48: [2, 17], 51: [2, 17], 55: [2, 17], 60: [2, 17] }],
|
|
1933
1928
|
defaultActions: { 4: [2, 1], 55: [2, 55], 57: [2, 20], 61: [2, 57], 74: [2, 81], 83: [2, 85], 87: [2, 18], 91: [2, 89], 102: [2, 53], 105: [2, 93], 111: [2, 19], 112: [2, 77], 117: [2, 97], 120: [2, 63], 123: [2, 69], 124: [2, 12], 136: [2, 75], 137: [2, 32] },
|
|
1934
1929
|
parseError: function parseError(str, hash) {
|
|
1935
|
-
|
|
1936
|
-
this.trace(str);
|
|
1937
|
-
} else {
|
|
1938
|
-
var _parseError = function _parseError(msg, hash) {
|
|
1939
|
-
this.message = msg;
|
|
1940
|
-
this.hash = hash;
|
|
1941
|
-
};
|
|
1942
|
-
|
|
1943
|
-
_parseError.prototype = new Error();
|
|
1944
|
-
|
|
1945
|
-
throw new _parseError(str, hash);
|
|
1946
|
-
}
|
|
1930
|
+
throw new Error(str);
|
|
1947
1931
|
},
|
|
1948
1932
|
parse: function parse(input) {
|
|
1949
1933
|
var self = this,
|
|
1950
1934
|
stack = [0],
|
|
1951
|
-
tstack = [],
|
|
1952
1935
|
vstack = [null],
|
|
1953
1936
|
lstack = [],
|
|
1954
1937
|
table = this.table,
|
|
1955
|
-
yytext =
|
|
1938
|
+
yytext = "",
|
|
1956
1939
|
yylineno = 0,
|
|
1957
1940
|
yyleng = 0,
|
|
1958
1941
|
recovering = 0,
|
|
1959
1942
|
TERROR = 2,
|
|
1960
1943
|
EOF = 1;
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
}
|
|
1968
|
-
}
|
|
1969
|
-
lexer.setInput(input, sharedState.yy);
|
|
1970
|
-
sharedState.yy.lexer = lexer;
|
|
1971
|
-
sharedState.yy.parser = this;
|
|
1972
|
-
if (typeof lexer.yylloc == 'undefined') {
|
|
1973
|
-
lexer.yylloc = {};
|
|
1974
|
-
}
|
|
1975
|
-
var yyloc = lexer.yylloc;
|
|
1944
|
+
this.lexer.setInput(input);
|
|
1945
|
+
this.lexer.yy = this.yy;
|
|
1946
|
+
this.yy.lexer = this.lexer;
|
|
1947
|
+
this.yy.parser = this;
|
|
1948
|
+
if (typeof this.lexer.yylloc == "undefined") this.lexer.yylloc = {};
|
|
1949
|
+
var yyloc = this.lexer.yylloc;
|
|
1976
1950
|
lstack.push(yyloc);
|
|
1977
|
-
var ranges = lexer.options && lexer.options.ranges;
|
|
1978
|
-
if (typeof
|
|
1979
|
-
this.parseError = sharedState.yy.parseError;
|
|
1980
|
-
} else {
|
|
1981
|
-
this.parseError = Object.getPrototypeOf(this).parseError;
|
|
1982
|
-
}
|
|
1951
|
+
var ranges = this.lexer.options && this.lexer.options.ranges;
|
|
1952
|
+
if (typeof this.yy.parseError === "function") this.parseError = this.yy.parseError;
|
|
1983
1953
|
function popStack(n) {
|
|
1984
1954
|
stack.length = stack.length - 2 * n;
|
|
1985
1955
|
vstack.length = vstack.length - n;
|
|
1986
1956
|
lstack.length = lstack.length - n;
|
|
1987
1957
|
}
|
|
1988
|
-
|
|
1958
|
+
function lex() {
|
|
1989
1959
|
var token;
|
|
1990
|
-
token = lexer.lex() ||
|
|
1991
|
-
if (typeof token !==
|
|
1960
|
+
token = self.lexer.lex() || 1;
|
|
1961
|
+
if (typeof token !== "number") {
|
|
1992
1962
|
token = self.symbols_[token] || token;
|
|
1993
1963
|
}
|
|
1994
1964
|
return token;
|
|
1995
|
-
}
|
|
1965
|
+
}
|
|
1996
1966
|
var symbol,
|
|
1997
1967
|
preErrorSymbol,
|
|
1998
1968
|
state,
|
|
@@ -2009,50 +1979,42 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
2009
1979
|
if (this.defaultActions[state]) {
|
|
2010
1980
|
action = this.defaultActions[state];
|
|
2011
1981
|
} else {
|
|
2012
|
-
if (symbol === null || typeof symbol ==
|
|
1982
|
+
if (symbol === null || typeof symbol == "undefined") {
|
|
2013
1983
|
symbol = lex();
|
|
2014
1984
|
}
|
|
2015
1985
|
action = table[state] && table[state][symbol];
|
|
2016
1986
|
}
|
|
2017
|
-
if (typeof action ===
|
|
2018
|
-
var errStr =
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
if (this.terminals_[p] && p >
|
|
2022
|
-
expected.push('
|
|
1987
|
+
if (typeof action === "undefined" || !action.length || !action[0]) {
|
|
1988
|
+
var errStr = "";
|
|
1989
|
+
if (!recovering) {
|
|
1990
|
+
expected = [];
|
|
1991
|
+
for (p in table[state]) if (this.terminals_[p] && p > 2) {
|
|
1992
|
+
expected.push("'" + this.terminals_[p] + "'");
|
|
2023
1993
|
}
|
|
1994
|
+
if (this.lexer.showPosition) {
|
|
1995
|
+
errStr = "Parse error on line " + (yylineno + 1) + ":\n" + this.lexer.showPosition() + "\nExpecting " + expected.join(", ") + ", got '" + (this.terminals_[symbol] || symbol) + "'";
|
|
1996
|
+
} else {
|
|
1997
|
+
errStr = "Parse error on line " + (yylineno + 1) + ": Unexpected " + (symbol == 1 ? "end of input" : "'" + (this.terminals_[symbol] || symbol) + "'");
|
|
1998
|
+
}
|
|
1999
|
+
this.parseError(errStr, { text: this.lexer.match, token: this.terminals_[symbol] || symbol, line: this.lexer.yylineno, loc: yyloc, expected: expected });
|
|
2024
2000
|
}
|
|
2025
|
-
if (lexer.showPosition) {
|
|
2026
|
-
errStr = 'Parse error on line ' + (yylineno + 1) + ':\n' + lexer.showPosition() + '\nExpecting ' + expected.join(', ') + ', got \'' + (this.terminals_[symbol] || symbol) + '\'';
|
|
2027
|
-
} else {
|
|
2028
|
-
errStr = 'Parse error on line ' + (yylineno + 1) + ': Unexpected ' + (symbol == EOF ? 'end of input' : '\'' + (this.terminals_[symbol] || symbol) + '\'');
|
|
2029
|
-
}
|
|
2030
|
-
this.parseError(errStr, {
|
|
2031
|
-
text: lexer.match,
|
|
2032
|
-
token: this.terminals_[symbol] || symbol,
|
|
2033
|
-
line: lexer.yylineno,
|
|
2034
|
-
loc: yyloc,
|
|
2035
|
-
expected: expected
|
|
2036
|
-
});
|
|
2037
2001
|
}
|
|
2038
2002
|
if (action[0] instanceof Array && action.length > 1) {
|
|
2039
|
-
throw new Error(
|
|
2003
|
+
throw new Error("Parse Error: multiple actions possible at state: " + state + ", token: " + symbol);
|
|
2040
2004
|
}
|
|
2041
2005
|
switch (action[0]) {
|
|
2042
2006
|
case 1:
|
|
2043
2007
|
stack.push(symbol);
|
|
2044
|
-
vstack.push(lexer.yytext);
|
|
2045
|
-
lstack.push(lexer.yylloc);
|
|
2008
|
+
vstack.push(this.lexer.yytext);
|
|
2009
|
+
lstack.push(this.lexer.yylloc);
|
|
2046
2010
|
stack.push(action[1]);
|
|
2047
2011
|
symbol = null;
|
|
2048
2012
|
if (!preErrorSymbol) {
|
|
2049
|
-
yyleng = lexer.yyleng;
|
|
2050
|
-
yytext = lexer.yytext;
|
|
2051
|
-
yylineno = lexer.yylineno;
|
|
2052
|
-
yyloc = lexer.yylloc;
|
|
2053
|
-
if (recovering > 0)
|
|
2054
|
-
recovering--;
|
|
2055
|
-
}
|
|
2013
|
+
yyleng = this.lexer.yyleng;
|
|
2014
|
+
yytext = this.lexer.yytext;
|
|
2015
|
+
yylineno = this.lexer.yylineno;
|
|
2016
|
+
yyloc = this.lexer.yylloc;
|
|
2017
|
+
if (recovering > 0) recovering--;
|
|
2056
2018
|
} else {
|
|
2057
2019
|
symbol = preErrorSymbol;
|
|
2058
2020
|
preErrorSymbol = null;
|
|
@@ -2061,17 +2023,12 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
2061
2023
|
case 2:
|
|
2062
2024
|
len = this.productions_[action[1]][1];
|
|
2063
2025
|
yyval.$ = vstack[vstack.length - len];
|
|
2064
|
-
yyval._$ = {
|
|
2065
|
-
first_line: lstack[lstack.length - (len || 1)].first_line,
|
|
2066
|
-
last_line: lstack[lstack.length - 1].last_line,
|
|
2067
|
-
first_column: lstack[lstack.length - (len || 1)].first_column,
|
|
2068
|
-
last_column: lstack[lstack.length - 1].last_column
|
|
2069
|
-
};
|
|
2026
|
+
yyval._$ = { first_line: lstack[lstack.length - (len || 1)].first_line, last_line: lstack[lstack.length - 1].last_line, first_column: lstack[lstack.length - (len || 1)].first_column, last_column: lstack[lstack.length - 1].last_column };
|
|
2070
2027
|
if (ranges) {
|
|
2071
2028
|
yyval._$.range = [lstack[lstack.length - (len || 1)].range[0], lstack[lstack.length - 1].range[1]];
|
|
2072
2029
|
}
|
|
2073
|
-
r = this.performAction.
|
|
2074
|
-
if (typeof r !==
|
|
2030
|
+
r = this.performAction.call(yyval, yytext, yyleng, yylineno, this.yy, action[1], vstack, lstack);
|
|
2031
|
+
if (typeof r !== "undefined") {
|
|
2075
2032
|
return r;
|
|
2076
2033
|
}
|
|
2077
2034
|
if (len) {
|
|
@@ -2090,13 +2047,11 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
2090
2047
|
}
|
|
2091
2048
|
}
|
|
2092
2049
|
return true;
|
|
2093
|
-
}
|
|
2094
|
-
|
|
2050
|
+
}
|
|
2051
|
+
};
|
|
2052
|
+
/* Jison generated lexer */
|
|
2095
2053
|
var lexer = (function () {
|
|
2096
|
-
var lexer = {
|
|
2097
|
-
|
|
2098
|
-
EOF: 1,
|
|
2099
|
-
|
|
2054
|
+
var lexer = { EOF: 1,
|
|
2100
2055
|
parseError: function parseError(str, hash) {
|
|
2101
2056
|
if (this.yy.parser) {
|
|
2102
2057
|
this.yy.parser.parseError(str, hash);
|
|
@@ -2104,29 +2059,17 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
2104
2059
|
throw new Error(str);
|
|
2105
2060
|
}
|
|
2106
2061
|
},
|
|
2107
|
-
|
|
2108
|
-
// resets the lexer, sets new input
|
|
2109
|
-
setInput: function setInput(input, yy) {
|
|
2110
|
-
this.yy = yy || this.yy || {};
|
|
2062
|
+
setInput: function setInput(input) {
|
|
2111
2063
|
this._input = input;
|
|
2112
|
-
this._more = this.
|
|
2064
|
+
this._more = this._less = this.done = false;
|
|
2113
2065
|
this.yylineno = this.yyleng = 0;
|
|
2114
2066
|
this.yytext = this.matched = this.match = '';
|
|
2115
2067
|
this.conditionStack = ['INITIAL'];
|
|
2116
|
-
this.yylloc = {
|
|
2117
|
-
|
|
2118
|
-
first_column: 0,
|
|
2119
|
-
last_line: 1,
|
|
2120
|
-
last_column: 0
|
|
2121
|
-
};
|
|
2122
|
-
if (this.options.ranges) {
|
|
2123
|
-
this.yylloc.range = [0, 0];
|
|
2124
|
-
}
|
|
2068
|
+
this.yylloc = { first_line: 1, first_column: 0, last_line: 1, last_column: 0 };
|
|
2069
|
+
if (this.options.ranges) this.yylloc.range = [0, 0];
|
|
2125
2070
|
this.offset = 0;
|
|
2126
2071
|
return this;
|
|
2127
2072
|
},
|
|
2128
|
-
|
|
2129
|
-
// consumes and returns one char from the input
|
|
2130
2073
|
input: function input() {
|
|
2131
2074
|
var ch = this._input[0];
|
|
2132
2075
|
this.yytext += ch;
|
|
@@ -2141,34 +2084,27 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
2141
2084
|
} else {
|
|
2142
2085
|
this.yylloc.last_column++;
|
|
2143
2086
|
}
|
|
2144
|
-
if (this.options.ranges)
|
|
2145
|
-
this.yylloc.range[1]++;
|
|
2146
|
-
}
|
|
2087
|
+
if (this.options.ranges) this.yylloc.range[1]++;
|
|
2147
2088
|
|
|
2148
2089
|
this._input = this._input.slice(1);
|
|
2149
2090
|
return ch;
|
|
2150
2091
|
},
|
|
2151
|
-
|
|
2152
|
-
// unshifts one char (or a string) into the input
|
|
2153
2092
|
unput: function unput(ch) {
|
|
2154
2093
|
var len = ch.length;
|
|
2155
2094
|
var lines = ch.split(/(?:\r\n?|\n)/g);
|
|
2156
2095
|
|
|
2157
2096
|
this._input = ch + this._input;
|
|
2158
|
-
this.yytext = this.yytext.substr(0, this.yytext.length - len);
|
|
2097
|
+
this.yytext = this.yytext.substr(0, this.yytext.length - len - 1);
|
|
2159
2098
|
//this.yyleng -= len;
|
|
2160
2099
|
this.offset -= len;
|
|
2161
2100
|
var oldLines = this.match.split(/(?:\r\n?|\n)/g);
|
|
2162
2101
|
this.match = this.match.substr(0, this.match.length - 1);
|
|
2163
2102
|
this.matched = this.matched.substr(0, this.matched.length - 1);
|
|
2164
2103
|
|
|
2165
|
-
if (lines.length - 1)
|
|
2166
|
-
this.yylineno -= lines.length - 1;
|
|
2167
|
-
}
|
|
2104
|
+
if (lines.length - 1) this.yylineno -= lines.length - 1;
|
|
2168
2105
|
var r = this.yylloc.range;
|
|
2169
2106
|
|
|
2170
|
-
this.yylloc = {
|
|
2171
|
-
first_line: this.yylloc.first_line,
|
|
2107
|
+
this.yylloc = { first_line: this.yylloc.first_line,
|
|
2172
2108
|
last_line: this.yylineno + 1,
|
|
2173
2109
|
first_column: this.yylloc.first_column,
|
|
2174
2110
|
last_column: lines ? (lines.length === oldLines.length ? this.yylloc.first_column : 0) + oldLines[oldLines.length - lines.length].length - lines[0].length : this.yylloc.first_column - len
|
|
@@ -2177,42 +2113,19 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
2177
2113
|
if (this.options.ranges) {
|
|
2178
2114
|
this.yylloc.range = [r[0], r[0] + this.yyleng - len];
|
|
2179
2115
|
}
|
|
2180
|
-
this.yyleng = this.yytext.length;
|
|
2181
2116
|
return this;
|
|
2182
2117
|
},
|
|
2183
|
-
|
|
2184
|
-
// When called from action, caches matched text and appends it on next action
|
|
2185
2118
|
more: function more() {
|
|
2186
2119
|
this._more = true;
|
|
2187
2120
|
return this;
|
|
2188
2121
|
},
|
|
2189
|
-
|
|
2190
|
-
// When called from action, signals the lexer that this rule fails to match the input, so the next matching rule (regex) should be tested instead.
|
|
2191
|
-
reject: function reject() {
|
|
2192
|
-
if (this.options.backtrack_lexer) {
|
|
2193
|
-
this._backtrack = true;
|
|
2194
|
-
} else {
|
|
2195
|
-
return this.parseError('Lexical error on line ' + (this.yylineno + 1) + '. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n' + this.showPosition(), {
|
|
2196
|
-
text: "",
|
|
2197
|
-
token: null,
|
|
2198
|
-
line: this.yylineno
|
|
2199
|
-
});
|
|
2200
|
-
}
|
|
2201
|
-
return this;
|
|
2202
|
-
},
|
|
2203
|
-
|
|
2204
|
-
// retain first n characters of the match
|
|
2205
2122
|
less: function less(n) {
|
|
2206
2123
|
this.unput(this.match.slice(n));
|
|
2207
2124
|
},
|
|
2208
|
-
|
|
2209
|
-
// displays already matched input, i.e. for error messages
|
|
2210
2125
|
pastInput: function pastInput() {
|
|
2211
2126
|
var past = this.matched.substr(0, this.matched.length - this.match.length);
|
|
2212
2127
|
return (past.length > 20 ? '...' : '') + past.substr(-20).replace(/\n/g, "");
|
|
2213
2128
|
},
|
|
2214
|
-
|
|
2215
|
-
// displays upcoming input, i.e. for error messages
|
|
2216
2129
|
upcomingInput: function upcomingInput() {
|
|
2217
2130
|
var next = this.match;
|
|
2218
2131
|
if (next.length < 20) {
|
|
@@ -2220,92 +2133,18 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
2220
2133
|
}
|
|
2221
2134
|
return (next.substr(0, 20) + (next.length > 20 ? '...' : '')).replace(/\n/g, "");
|
|
2222
2135
|
},
|
|
2223
|
-
|
|
2224
|
-
// displays the character position where the lexing error occurred, i.e. for error messages
|
|
2225
2136
|
showPosition: function showPosition() {
|
|
2226
2137
|
var pre = this.pastInput();
|
|
2227
2138
|
var c = new Array(pre.length + 1).join("-");
|
|
2228
2139
|
return pre + this.upcomingInput() + "\n" + c + "^";
|
|
2229
2140
|
},
|
|
2230
|
-
|
|
2231
|
-
// test the lexed token: return FALSE when not a match, otherwise return token
|
|
2232
|
-
test_match: function test_match(match, indexed_rule) {
|
|
2233
|
-
var token, lines, backup;
|
|
2234
|
-
|
|
2235
|
-
if (this.options.backtrack_lexer) {
|
|
2236
|
-
// save context
|
|
2237
|
-
backup = {
|
|
2238
|
-
yylineno: this.yylineno,
|
|
2239
|
-
yylloc: {
|
|
2240
|
-
first_line: this.yylloc.first_line,
|
|
2241
|
-
last_line: this.last_line,
|
|
2242
|
-
first_column: this.yylloc.first_column,
|
|
2243
|
-
last_column: this.yylloc.last_column
|
|
2244
|
-
},
|
|
2245
|
-
yytext: this.yytext,
|
|
2246
|
-
match: this.match,
|
|
2247
|
-
matches: this.matches,
|
|
2248
|
-
matched: this.matched,
|
|
2249
|
-
yyleng: this.yyleng,
|
|
2250
|
-
offset: this.offset,
|
|
2251
|
-
_more: this._more,
|
|
2252
|
-
_input: this._input,
|
|
2253
|
-
yy: this.yy,
|
|
2254
|
-
conditionStack: this.conditionStack.slice(0),
|
|
2255
|
-
done: this.done
|
|
2256
|
-
};
|
|
2257
|
-
if (this.options.ranges) {
|
|
2258
|
-
backup.yylloc.range = this.yylloc.range.slice(0);
|
|
2259
|
-
}
|
|
2260
|
-
}
|
|
2261
|
-
|
|
2262
|
-
lines = match[0].match(/(?:\r\n?|\n).*/g);
|
|
2263
|
-
if (lines) {
|
|
2264
|
-
this.yylineno += lines.length;
|
|
2265
|
-
}
|
|
2266
|
-
this.yylloc = {
|
|
2267
|
-
first_line: this.yylloc.last_line,
|
|
2268
|
-
last_line: this.yylineno + 1,
|
|
2269
|
-
first_column: this.yylloc.last_column,
|
|
2270
|
-
last_column: lines ? lines[lines.length - 1].length - lines[lines.length - 1].match(/\r?\n?/)[0].length : this.yylloc.last_column + match[0].length
|
|
2271
|
-
};
|
|
2272
|
-
this.yytext += match[0];
|
|
2273
|
-
this.match += match[0];
|
|
2274
|
-
this.matches = match;
|
|
2275
|
-
this.yyleng = this.yytext.length;
|
|
2276
|
-
if (this.options.ranges) {
|
|
2277
|
-
this.yylloc.range = [this.offset, this.offset += this.yyleng];
|
|
2278
|
-
}
|
|
2279
|
-
this._more = false;
|
|
2280
|
-
this._backtrack = false;
|
|
2281
|
-
this._input = this._input.slice(match[0].length);
|
|
2282
|
-
this.matched += match[0];
|
|
2283
|
-
token = this.performAction.call(this, this.yy, this, indexed_rule, this.conditionStack[this.conditionStack.length - 1]);
|
|
2284
|
-
if (this.done && this._input) {
|
|
2285
|
-
this.done = false;
|
|
2286
|
-
}
|
|
2287
|
-
if (token) {
|
|
2288
|
-
return token;
|
|
2289
|
-
} else if (this._backtrack) {
|
|
2290
|
-
// recover context
|
|
2291
|
-
for (var k in backup) {
|
|
2292
|
-
this[k] = backup[k];
|
|
2293
|
-
}
|
|
2294
|
-
return false; // rule action called reject() implying the next rule should be tested instead.
|
|
2295
|
-
}
|
|
2296
|
-
return false;
|
|
2297
|
-
},
|
|
2298
|
-
|
|
2299
|
-
// return next match in input
|
|
2300
2141
|
next: function next() {
|
|
2301
2142
|
if (this.done) {
|
|
2302
2143
|
return this.EOF;
|
|
2303
2144
|
}
|
|
2304
|
-
if (!this._input)
|
|
2305
|
-
this.done = true;
|
|
2306
|
-
}
|
|
2145
|
+
if (!this._input) this.done = true;
|
|
2307
2146
|
|
|
2308
|
-
var token, match, tempMatch, index;
|
|
2147
|
+
var token, match, tempMatch, index, col, lines;
|
|
2309
2148
|
if (!this._more) {
|
|
2310
2149
|
this.yytext = '';
|
|
2311
2150
|
this.match = '';
|
|
@@ -2316,303 +2155,251 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
2316
2155
|
if (tempMatch && (!match || tempMatch[0].length > match[0].length)) {
|
|
2317
2156
|
match = tempMatch;
|
|
2318
2157
|
index = i;
|
|
2319
|
-
if (this.options.
|
|
2320
|
-
token = this.test_match(tempMatch, rules[i]);
|
|
2321
|
-
if (token !== false) {
|
|
2322
|
-
return token;
|
|
2323
|
-
} else if (this._backtrack) {
|
|
2324
|
-
match = false;
|
|
2325
|
-
continue; // rule action called reject() implying a rule MISmatch.
|
|
2326
|
-
} else {
|
|
2327
|
-
// else: this is a lexer rule which consumes input without producing a token (e.g. whitespace)
|
|
2328
|
-
return false;
|
|
2329
|
-
}
|
|
2330
|
-
} else if (!this.options.flex) {
|
|
2331
|
-
break;
|
|
2332
|
-
}
|
|
2158
|
+
if (!this.options.flex) break;
|
|
2333
2159
|
}
|
|
2334
2160
|
}
|
|
2335
2161
|
if (match) {
|
|
2336
|
-
|
|
2337
|
-
if (
|
|
2338
|
-
|
|
2162
|
+
lines = match[0].match(/(?:\r\n?|\n).*/g);
|
|
2163
|
+
if (lines) this.yylineno += lines.length;
|
|
2164
|
+
this.yylloc = { first_line: this.yylloc.last_line,
|
|
2165
|
+
last_line: this.yylineno + 1,
|
|
2166
|
+
first_column: this.yylloc.last_column,
|
|
2167
|
+
last_column: lines ? lines[lines.length - 1].length - lines[lines.length - 1].match(/\r?\n?/)[0].length : this.yylloc.last_column + match[0].length };
|
|
2168
|
+
this.yytext += match[0];
|
|
2169
|
+
this.match += match[0];
|
|
2170
|
+
this.matches = match;
|
|
2171
|
+
this.yyleng = this.yytext.length;
|
|
2172
|
+
if (this.options.ranges) {
|
|
2173
|
+
this.yylloc.range = [this.offset, this.offset += this.yyleng];
|
|
2339
2174
|
}
|
|
2340
|
-
|
|
2341
|
-
|
|
2175
|
+
this._more = false;
|
|
2176
|
+
this._input = this._input.slice(match[0].length);
|
|
2177
|
+
this.matched += match[0];
|
|
2178
|
+
token = this.performAction.call(this, this.yy, this, rules[index], this.conditionStack[this.conditionStack.length - 1]);
|
|
2179
|
+
if (this.done && this._input) this.done = false;
|
|
2180
|
+
if (token) return token;else return;
|
|
2342
2181
|
}
|
|
2343
2182
|
if (this._input === "") {
|
|
2344
2183
|
return this.EOF;
|
|
2345
2184
|
} else {
|
|
2346
|
-
return this.parseError('Lexical error on line ' + (this.yylineno + 1) + '. Unrecognized text.\n' + this.showPosition(), {
|
|
2347
|
-
text: "",
|
|
2348
|
-
token: null,
|
|
2349
|
-
line: this.yylineno
|
|
2350
|
-
});
|
|
2185
|
+
return this.parseError('Lexical error on line ' + (this.yylineno + 1) + '. Unrecognized text.\n' + this.showPosition(), { text: "", token: null, line: this.yylineno });
|
|
2351
2186
|
}
|
|
2352
2187
|
},
|
|
2353
|
-
|
|
2354
|
-
// return next match that has a token
|
|
2355
2188
|
lex: function lex() {
|
|
2356
2189
|
var r = this.next();
|
|
2357
|
-
if (r) {
|
|
2190
|
+
if (typeof r !== 'undefined') {
|
|
2358
2191
|
return r;
|
|
2359
2192
|
} else {
|
|
2360
2193
|
return this.lex();
|
|
2361
2194
|
}
|
|
2362
2195
|
},
|
|
2363
|
-
|
|
2364
|
-
// activates a new lexer condition state (pushes the new lexer condition state onto the condition stack)
|
|
2365
2196
|
begin: function begin(condition) {
|
|
2366
2197
|
this.conditionStack.push(condition);
|
|
2367
2198
|
},
|
|
2368
|
-
|
|
2369
|
-
// pop the previously active lexer condition state off the condition stack
|
|
2370
2199
|
popState: function popState() {
|
|
2371
|
-
|
|
2372
|
-
if (n > 0) {
|
|
2373
|
-
return this.conditionStack.pop();
|
|
2374
|
-
} else {
|
|
2375
|
-
return this.conditionStack[0];
|
|
2376
|
-
}
|
|
2200
|
+
return this.conditionStack.pop();
|
|
2377
2201
|
},
|
|
2378
|
-
|
|
2379
|
-
// produce the lexer rule set which is active for the currently active lexer condition state
|
|
2380
2202
|
_currentRules: function _currentRules() {
|
|
2381
|
-
|
|
2382
|
-
return this.conditions[this.conditionStack[this.conditionStack.length - 1]].rules;
|
|
2383
|
-
} else {
|
|
2384
|
-
return this.conditions["INITIAL"].rules;
|
|
2385
|
-
}
|
|
2203
|
+
return this.conditions[this.conditionStack[this.conditionStack.length - 1]].rules;
|
|
2386
2204
|
},
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
topState: function topState(n) {
|
|
2390
|
-
n = this.conditionStack.length - 1 - Math.abs(n || 0);
|
|
2391
|
-
if (n >= 0) {
|
|
2392
|
-
return this.conditionStack[n];
|
|
2393
|
-
} else {
|
|
2394
|
-
return "INITIAL";
|
|
2395
|
-
}
|
|
2205
|
+
topState: function topState() {
|
|
2206
|
+
return this.conditionStack[this.conditionStack.length - 2];
|
|
2396
2207
|
},
|
|
2397
|
-
|
|
2398
|
-
// alias for begin(condition)
|
|
2399
|
-
pushState: function pushState(condition) {
|
|
2208
|
+
pushState: function begin(condition) {
|
|
2400
2209
|
this.begin(condition);
|
|
2401
|
-
}
|
|
2210
|
+
} };
|
|
2211
|
+
lexer.options = {};
|
|
2212
|
+
lexer.performAction = function anonymous(yy, yy_, $avoiding_name_collisions, YY_START) {
|
|
2402
2213
|
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
},
|
|
2407
|
-
options: {},
|
|
2408
|
-
performAction: function anonymous(yy, yy_, $avoiding_name_collisions, YY_START) {
|
|
2214
|
+
function strip(start, end) {
|
|
2215
|
+
return yy_.yytext = yy_.yytext.substring(start, yy_.yyleng - end + start);
|
|
2216
|
+
}
|
|
2409
2217
|
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2218
|
+
var YYSTATE = YY_START;
|
|
2219
|
+
switch ($avoiding_name_collisions) {
|
|
2220
|
+
case 0:
|
|
2221
|
+
if (yy_.yytext.slice(-2) === "\\\\") {
|
|
2222
|
+
strip(0, 1);
|
|
2223
|
+
this.begin("mu");
|
|
2224
|
+
} else if (yy_.yytext.slice(-1) === "\\") {
|
|
2225
|
+
strip(0, 1);
|
|
2226
|
+
this.begin("emu");
|
|
2227
|
+
} else {
|
|
2228
|
+
this.begin("mu");
|
|
2229
|
+
}
|
|
2230
|
+
if (yy_.yytext) return 15;
|
|
2413
2231
|
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
strip(0, 1);
|
|
2422
|
-
this.begin("emu");
|
|
2423
|
-
} else {
|
|
2424
|
-
this.begin("mu");
|
|
2425
|
-
}
|
|
2426
|
-
if (yy_.yytext) return 15;
|
|
2232
|
+
break;
|
|
2233
|
+
case 1:
|
|
2234
|
+
return 15;
|
|
2235
|
+
break;
|
|
2236
|
+
case 2:
|
|
2237
|
+
this.popState();
|
|
2238
|
+
return 15;
|
|
2427
2239
|
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2240
|
+
break;
|
|
2241
|
+
case 3:
|
|
2242
|
+
this.begin('raw');return 15;
|
|
2243
|
+
break;
|
|
2244
|
+
case 4:
|
|
2245
|
+
this.popState();
|
|
2246
|
+
// Should be using `this.topState()` below, but it currently
|
|
2247
|
+
// returns the second top instead of the first top. Opened an
|
|
2248
|
+
// issue about it at https://github.com/zaach/jison/issues/291
|
|
2249
|
+
if (this.conditionStack[this.conditionStack.length - 1] === 'raw') {
|
|
2434
2250
|
return 15;
|
|
2251
|
+
} else {
|
|
2252
|
+
strip(5, 9);
|
|
2253
|
+
return 'END_RAW_BLOCK';
|
|
2254
|
+
}
|
|
2435
2255
|
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
// returns the second top instead of the first top. Opened an
|
|
2444
|
-
// issue about it at https://github.com/zaach/jison/issues/291
|
|
2445
|
-
if (this.conditionStack[this.conditionStack.length - 1] === 'raw') {
|
|
2446
|
-
return 15;
|
|
2447
|
-
} else {
|
|
2448
|
-
strip(5, 9);
|
|
2449
|
-
return 18;
|
|
2450
|
-
}
|
|
2451
|
-
|
|
2452
|
-
break;
|
|
2453
|
-
case 5:
|
|
2454
|
-
return 15;
|
|
2455
|
-
break;
|
|
2456
|
-
case 6:
|
|
2457
|
-
this.popState();
|
|
2458
|
-
return 14;
|
|
2256
|
+
break;
|
|
2257
|
+
case 5:
|
|
2258
|
+
return 15;
|
|
2259
|
+
break;
|
|
2260
|
+
case 6:
|
|
2261
|
+
this.popState();
|
|
2262
|
+
return 14;
|
|
2459
2263
|
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2264
|
+
break;
|
|
2265
|
+
case 7:
|
|
2266
|
+
return 65;
|
|
2267
|
+
break;
|
|
2268
|
+
case 8:
|
|
2269
|
+
return 68;
|
|
2270
|
+
break;
|
|
2271
|
+
case 9:
|
|
2272
|
+
return 19;
|
|
2273
|
+
break;
|
|
2274
|
+
case 10:
|
|
2275
|
+
this.popState();
|
|
2276
|
+
this.begin('raw');
|
|
2277
|
+
return 23;
|
|
2474
2278
|
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2279
|
+
break;
|
|
2280
|
+
case 11:
|
|
2281
|
+
return 55;
|
|
2282
|
+
break;
|
|
2283
|
+
case 12:
|
|
2284
|
+
return 60;
|
|
2285
|
+
break;
|
|
2286
|
+
case 13:
|
|
2287
|
+
return 29;
|
|
2288
|
+
break;
|
|
2289
|
+
case 14:
|
|
2290
|
+
return 47;
|
|
2291
|
+
break;
|
|
2292
|
+
case 15:
|
|
2293
|
+
this.popState();return 44;
|
|
2294
|
+
break;
|
|
2295
|
+
case 16:
|
|
2296
|
+
this.popState();return 44;
|
|
2297
|
+
break;
|
|
2298
|
+
case 17:
|
|
2299
|
+
return 34;
|
|
2300
|
+
break;
|
|
2301
|
+
case 18:
|
|
2302
|
+
return 39;
|
|
2303
|
+
break;
|
|
2304
|
+
case 19:
|
|
2305
|
+
return 51;
|
|
2306
|
+
break;
|
|
2307
|
+
case 20:
|
|
2308
|
+
return 48;
|
|
2309
|
+
break;
|
|
2310
|
+
case 21:
|
|
2311
|
+
this.unput(yy_.yytext);
|
|
2312
|
+
this.popState();
|
|
2313
|
+
this.begin('com');
|
|
2510
2314
|
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2315
|
+
break;
|
|
2316
|
+
case 22:
|
|
2317
|
+
this.popState();
|
|
2318
|
+
return 14;
|
|
2515
2319
|
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
-
|
|
2568
|
-
|
|
2569
|
-
|
|
2570
|
-
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
},
|
|
2585
|
-
rules: [/^(?:[^\x00]*?(?=(\{\{)))/, /^(?:[^\x00]+)/, /^(?:[^\x00]{2,}?(?=(\{\{|\\\{\{|\\\\\{\{|$)))/, /^(?:\{\{\{\{(?=[^\/]))/, /^(?:\{\{\{\{\/[^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=[=}\s\/.])\}\}\}\})/, /^(?:[^\x00]*?(?=(\{\{\{\{)))/, /^(?:[\s\S]*?--(~)?\}\})/, /^(?:\()/, /^(?:\))/, /^(?:\{\{\{\{)/, /^(?:\}\}\}\})/, /^(?:\{\{(~)?>)/, /^(?:\{\{(~)?#>)/, /^(?:\{\{(~)?#\*?)/, /^(?:\{\{(~)?\/)/, /^(?:\{\{(~)?\^\s*(~)?\}\})/, /^(?:\{\{(~)?\s*else\s*(~)?\}\})/, /^(?:\{\{(~)?\^)/, /^(?:\{\{(~)?\s*else\b)/, /^(?:\{\{(~)?\{)/, /^(?:\{\{(~)?&)/, /^(?:\{\{(~)?!--)/, /^(?:\{\{(~)?![\s\S]*?\}\})/, /^(?:\{\{(~)?\*?)/, /^(?:=)/, /^(?:\.\.)/, /^(?:\.(?=([=~}\s\/.)|])))/, /^(?:[\/.])/, /^(?:\s+)/, /^(?:\}(~)?\}\})/, /^(?:(~)?\}\})/, /^(?:"(\\["]|[^"])*")/, /^(?:'(\\[']|[^'])*')/, /^(?:@)/, /^(?:true(?=([~}\s)])))/, /^(?:false(?=([~}\s)])))/, /^(?:undefined(?=([~}\s)])))/, /^(?:null(?=([~}\s)])))/, /^(?:-?[0-9]+(?:\.[0-9]+)?(?=([~}\s)])))/, /^(?:as\s+\|)/, /^(?:\|)/, /^(?:([^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=([=~}\s\/.)|]))))/, /^(?:\[(\\\]|[^\]])*\])/, /^(?:.)/, /^(?:$)/],
|
|
2586
|
-
conditions: { "mu": { "rules": [7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "inclusive": false }, "emu": { "rules": [2], "inclusive": false }, "com": { "rules": [6], "inclusive": false }, "raw": { "rules": [3, 4, 5], "inclusive": false }, "INITIAL": { "rules": [0, 1, 44], "inclusive": true } }
|
|
2320
|
+
break;
|
|
2321
|
+
case 23:
|
|
2322
|
+
return 48;
|
|
2323
|
+
break;
|
|
2324
|
+
case 24:
|
|
2325
|
+
return 73;
|
|
2326
|
+
break;
|
|
2327
|
+
case 25:
|
|
2328
|
+
return 72;
|
|
2329
|
+
break;
|
|
2330
|
+
case 26:
|
|
2331
|
+
return 72;
|
|
2332
|
+
break;
|
|
2333
|
+
case 27:
|
|
2334
|
+
return 87;
|
|
2335
|
+
break;
|
|
2336
|
+
case 28:
|
|
2337
|
+
// ignore whitespace
|
|
2338
|
+
break;
|
|
2339
|
+
case 29:
|
|
2340
|
+
this.popState();return 54;
|
|
2341
|
+
break;
|
|
2342
|
+
case 30:
|
|
2343
|
+
this.popState();return 33;
|
|
2344
|
+
break;
|
|
2345
|
+
case 31:
|
|
2346
|
+
yy_.yytext = strip(1, 2).replace(/\\"/g, '"');return 80;
|
|
2347
|
+
break;
|
|
2348
|
+
case 32:
|
|
2349
|
+
yy_.yytext = strip(1, 2).replace(/\\'/g, "'");return 80;
|
|
2350
|
+
break;
|
|
2351
|
+
case 33:
|
|
2352
|
+
return 85;
|
|
2353
|
+
break;
|
|
2354
|
+
case 34:
|
|
2355
|
+
return 82;
|
|
2356
|
+
break;
|
|
2357
|
+
case 35:
|
|
2358
|
+
return 82;
|
|
2359
|
+
break;
|
|
2360
|
+
case 36:
|
|
2361
|
+
return 83;
|
|
2362
|
+
break;
|
|
2363
|
+
case 37:
|
|
2364
|
+
return 84;
|
|
2365
|
+
break;
|
|
2366
|
+
case 38:
|
|
2367
|
+
return 81;
|
|
2368
|
+
break;
|
|
2369
|
+
case 39:
|
|
2370
|
+
return 75;
|
|
2371
|
+
break;
|
|
2372
|
+
case 40:
|
|
2373
|
+
return 77;
|
|
2374
|
+
break;
|
|
2375
|
+
case 41:
|
|
2376
|
+
return 72;
|
|
2377
|
+
break;
|
|
2378
|
+
case 42:
|
|
2379
|
+
yy_.yytext = yy_.yytext.replace(/\\([\\\]])/g, '$1');return 72;
|
|
2380
|
+
break;
|
|
2381
|
+
case 43:
|
|
2382
|
+
return 'INVALID';
|
|
2383
|
+
break;
|
|
2384
|
+
case 44:
|
|
2385
|
+
return 5;
|
|
2386
|
+
break;
|
|
2387
|
+
}
|
|
2587
2388
|
};
|
|
2389
|
+
lexer.rules = [/^(?:[^\x00]*?(?=(\{\{)))/, /^(?:[^\x00]+)/, /^(?:[^\x00]{2,}?(?=(\{\{|\\\{\{|\\\\\{\{|$)))/, /^(?:\{\{\{\{(?=[^\/]))/, /^(?:\{\{\{\{\/[^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=[=}\s\/.])\}\}\}\})/, /^(?:[^\x00]*?(?=(\{\{\{\{)))/, /^(?:[\s\S]*?--(~)?\}\})/, /^(?:\()/, /^(?:\))/, /^(?:\{\{\{\{)/, /^(?:\}\}\}\})/, /^(?:\{\{(~)?>)/, /^(?:\{\{(~)?#>)/, /^(?:\{\{(~)?#\*?)/, /^(?:\{\{(~)?\/)/, /^(?:\{\{(~)?\^\s*(~)?\}\})/, /^(?:\{\{(~)?\s*else\s*(~)?\}\})/, /^(?:\{\{(~)?\^)/, /^(?:\{\{(~)?\s*else\b)/, /^(?:\{\{(~)?\{)/, /^(?:\{\{(~)?&)/, /^(?:\{\{(~)?!--)/, /^(?:\{\{(~)?![\s\S]*?\}\})/, /^(?:\{\{(~)?\*?)/, /^(?:=)/, /^(?:\.\.)/, /^(?:\.(?=([=~}\s\/.)|])))/, /^(?:[\/.])/, /^(?:\s+)/, /^(?:\}(~)?\}\})/, /^(?:(~)?\}\})/, /^(?:"(\\["]|[^"])*")/, /^(?:'(\\[']|[^'])*')/, /^(?:@)/, /^(?:true(?=([~}\s)])))/, /^(?:false(?=([~}\s)])))/, /^(?:undefined(?=([~}\s)])))/, /^(?:null(?=([~}\s)])))/, /^(?:-?[0-9]+(?:\.[0-9]+)?(?=([~}\s)])))/, /^(?:as\s+\|)/, /^(?:\|)/, /^(?:([^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=([=~}\s\/.)|]))))/, /^(?:\[(\\\]|[^\]])*\])/, /^(?:.)/, /^(?:$)/];
|
|
2390
|
+
lexer.conditions = { "mu": { "rules": [7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "inclusive": false }, "emu": { "rules": [2], "inclusive": false }, "com": { "rules": [6], "inclusive": false }, "raw": { "rules": [3, 4, 5], "inclusive": false }, "INITIAL": { "rules": [0, 1, 44], "inclusive": true } };
|
|
2588
2391
|
return lexer;
|
|
2589
2392
|
})();
|
|
2590
2393
|
parser.lexer = lexer;
|
|
2591
2394
|
function Parser() {
|
|
2592
2395
|
this.yy = {};
|
|
2593
|
-
}
|
|
2594
|
-
Parser.prototype = parser;parser.Parser = Parser;
|
|
2396
|
+
}Parser.prototype = parser;parser.Parser = Parser;
|
|
2595
2397
|
return new Parser();
|
|
2596
2398
|
})();exports["default"] = handlebars;
|
|
2597
2399
|
module.exports = exports["default"];
|
|
2598
2400
|
|
|
2599
2401
|
/***/ }),
|
|
2600
2402
|
/* 38 */
|
|
2601
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
2602
|
-
|
|
2603
|
-
module.exports = { "default": __webpack_require__(39), __esModule: true };
|
|
2604
|
-
|
|
2605
|
-
/***/ }),
|
|
2606
|
-
/* 39 */
|
|
2607
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
2608
|
-
|
|
2609
|
-
var $ = __webpack_require__(9);
|
|
2610
|
-
module.exports = function create(P, D){
|
|
2611
|
-
return $.create(P, D);
|
|
2612
|
-
};
|
|
2613
|
-
|
|
2614
|
-
/***/ }),
|
|
2615
|
-
/* 40 */
|
|
2616
2403
|
/***/ (function(module, exports, __webpack_require__) {
|
|
2617
2404
|
|
|
2618
2405
|
'use strict';
|
|
@@ -2621,7 +2408,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
2621
2408
|
|
|
2622
2409
|
exports.__esModule = true;
|
|
2623
2410
|
|
|
2624
|
-
var _visitor = __webpack_require__(
|
|
2411
|
+
var _visitor = __webpack_require__(39);
|
|
2625
2412
|
|
|
2626
2413
|
var _visitor2 = _interopRequireDefault(_visitor);
|
|
2627
2414
|
|
|
@@ -2836,7 +2623,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
2836
2623
|
module.exports = exports['default'];
|
|
2837
2624
|
|
|
2838
2625
|
/***/ }),
|
|
2839
|
-
/*
|
|
2626
|
+
/* 39 */
|
|
2840
2627
|
/***/ (function(module, exports, __webpack_require__) {
|
|
2841
2628
|
|
|
2842
2629
|
'use strict';
|
|
@@ -2979,7 +2766,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
2979
2766
|
module.exports = exports['default'];
|
|
2980
2767
|
|
|
2981
2768
|
/***/ }),
|
|
2982
|
-
/*
|
|
2769
|
+
/* 40 */
|
|
2983
2770
|
/***/ (function(module, exports, __webpack_require__) {
|
|
2984
2771
|
|
|
2985
2772
|
'use strict';
|
|
@@ -3210,7 +2997,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
3210
2997
|
}
|
|
3211
2998
|
|
|
3212
2999
|
/***/ }),
|
|
3213
|
-
/*
|
|
3000
|
+
/* 41 */
|
|
3214
3001
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3215
3002
|
|
|
3216
3003
|
/* eslint-disable new-cap */
|
|
@@ -3786,7 +3573,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
3786
3573
|
}
|
|
3787
3574
|
|
|
3788
3575
|
/***/ }),
|
|
3789
|
-
/*
|
|
3576
|
+
/* 42 */
|
|
3790
3577
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3791
3578
|
|
|
3792
3579
|
'use strict';
|
|
@@ -3803,7 +3590,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
3803
3590
|
|
|
3804
3591
|
var _utils = __webpack_require__(5);
|
|
3805
3592
|
|
|
3806
|
-
var _codeGen = __webpack_require__(
|
|
3593
|
+
var _codeGen = __webpack_require__(43);
|
|
3807
3594
|
|
|
3808
3595
|
var _codeGen2 = _interopRequireDefault(_codeGen);
|
|
3809
3596
|
|
|
@@ -4940,7 +4727,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
4940
4727
|
module.exports = exports['default'];
|
|
4941
4728
|
|
|
4942
4729
|
/***/ }),
|
|
4943
|
-
/*
|
|
4730
|
+
/* 43 */
|
|
4944
4731
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4945
4732
|
|
|
4946
4733
|
/* global define */
|