@designliquido/delegua 1.4.2 → 1.5.0
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/analisador-semantico/analisador-semantico-base.d.ts +2 -2
- package/analisador-semantico/analisador-semantico-base.d.ts.map +1 -1
- package/analisador-semantico/analisador-semantico-base.js.map +1 -1
- package/analisador-semantico/analisador-semantico.js +2 -2
- package/analisador-semantico/analisador-semantico.js.map +1 -1
- package/bin/package.json +1 -1
- package/interfaces/componente-modulo-classe-interface.d.ts +10 -0
- package/interfaces/componente-modulo-classe-interface.d.ts.map +1 -0
- package/interfaces/componente-modulo-classe-interface.js +3 -0
- package/interfaces/componente-modulo-classe-interface.js.map +1 -0
- package/interfaces/componente-modulo-funcao-interface.d.ts +10 -0
- package/interfaces/componente-modulo-funcao-interface.d.ts.map +1 -0
- package/interfaces/componente-modulo-funcao-interface.js +3 -0
- package/interfaces/componente-modulo-funcao-interface.js.map +1 -0
- package/interfaces/index.d.ts +3 -0
- package/interfaces/index.d.ts.map +1 -1
- package/interfaces/index.js +3 -0
- package/interfaces/index.js.map +1 -1
- package/interfaces/modulo-interface.d.ts +9 -0
- package/interfaces/modulo-interface.d.ts.map +1 -0
- package/interfaces/modulo-interface.js +3 -0
- package/interfaces/modulo-interface.js.map +1 -0
- package/interfaces/simbolo-interface.d.ts +2 -0
- package/interfaces/simbolo-interface.d.ts.map +1 -1
- package/lexador/dialetos/lexador-calango.d.ts.map +1 -1
- package/lexador/dialetos/lexador-calango.js +4 -1
- package/lexador/dialetos/lexador-calango.js.map +1 -1
- package/lexador/dialetos/lexador-egua-classico.d.ts.map +1 -1
- package/lexador/dialetos/lexador-egua-classico.js +4 -1
- package/lexador/dialetos/lexador-egua-classico.js.map +1 -1
- package/lexador/dialetos/lexador-pitugues.d.ts.map +1 -1
- package/lexador/dialetos/lexador-pitugues.js +4 -1
- package/lexador/dialetos/lexador-pitugues.js.map +1 -1
- package/lexador/dialetos/lexador-portugol-ipt.d.ts.map +1 -1
- package/lexador/dialetos/lexador-portugol-ipt.js +6 -1
- package/lexador/dialetos/lexador-portugol-ipt.js.map +1 -1
- package/lexador/dialetos/lexador-prisma.d.ts.map +1 -1
- package/lexador/dialetos/lexador-prisma.js +4 -1
- package/lexador/dialetos/lexador-prisma.js.map +1 -1
- package/lexador/dialetos/lexador-tenda.d.ts.map +1 -1
- package/lexador/dialetos/lexador-tenda.js +4 -1
- package/lexador/dialetos/lexador-tenda.js.map +1 -1
- package/lexador/lexador-base-linha-unica.d.ts.map +1 -1
- package/lexador/lexador-base-linha-unica.js +6 -1
- package/lexador/lexador-base-linha-unica.js.map +1 -1
- package/lexador/lexador-base.d.ts.map +1 -1
- package/lexador/lexador-base.js +6 -1
- package/lexador/lexador-base.js.map +1 -1
- package/lexador/lexador.d.ts.map +1 -1
- package/lexador/lexador.js +6 -1
- package/lexador/lexador.js.map +1 -1
- package/lexador/micro-lexador-pitugues.d.ts.map +1 -1
- package/lexador/micro-lexador-pitugues.js +6 -1
- package/lexador/micro-lexador-pitugues.js.map +1 -1
- package/lexador/micro-lexador.d.ts.map +1 -1
- package/lexador/micro-lexador.js +6 -1
- package/lexador/micro-lexador.js.map +1 -1
- package/lexador/simbolo.d.ts +3 -1
- package/lexador/simbolo.d.ts.map +1 -1
- package/lexador/simbolo.js +3 -1
- package/lexador/simbolo.js.map +1 -1
- package/package.json +1 -1
- package/umd/delegua.js +421 -359
package/umd/delegua.js
CHANGED
|
@@ -355,7 +355,7 @@ class AnalisadorSemanticoBase {
|
|
|
355
355
|
}
|
|
356
356
|
exports.AnalisadorSemanticoBase = AnalisadorSemanticoBase;
|
|
357
357
|
|
|
358
|
-
},{"../construtos":62,"../declaracoes":109,"../interfaces":
|
|
358
|
+
},{"../construtos":62,"../declaracoes":109,"../interfaces":147}],2:[function(require,module,exports){
|
|
359
359
|
"use strict";
|
|
360
360
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
361
361
|
exports.AnalisadorSemantico = void 0;
|
|
@@ -1154,8 +1154,8 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
1154
1154
|
textoOriginal: 'qualquer',
|
|
1155
1155
|
textoSubstituto: tipoMelhor,
|
|
1156
1156
|
linha: declaracao.simbolo.linha,
|
|
1157
|
-
colunaInicio:
|
|
1158
|
-
colunaFim:
|
|
1157
|
+
colunaInicio: declaracao.simbolo.colunaInicio,
|
|
1158
|
+
colunaFim: declaracao.simbolo.colunaFim,
|
|
1159
1159
|
}]);
|
|
1160
1160
|
}
|
|
1161
1161
|
}
|
|
@@ -1291,7 +1291,7 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
1291
1291
|
}
|
|
1292
1292
|
exports.AnalisadorSemantico = AnalisadorSemantico;
|
|
1293
1293
|
|
|
1294
|
-
},{"../avaliador-sintatico/comum":11,"../construtos":62,"../declaracoes":109,"../interfaces/erros":
|
|
1294
|
+
},{"../avaliador-sintatico/comum":11,"../construtos":62,"../declaracoes":109,"../interfaces/erros":144,"./analisador-semantico-base":1,"./gerenciador-escopos":5,"./pilha-variaveis":7}],3:[function(require,module,exports){
|
|
1295
1295
|
"use strict";
|
|
1296
1296
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1297
1297
|
|
|
@@ -1696,7 +1696,7 @@ class AvaliadorSintaticoBase {
|
|
|
1696
1696
|
}
|
|
1697
1697
|
exports.AvaliadorSintaticoBase = AvaliadorSintaticoBase;
|
|
1698
1698
|
|
|
1699
|
-
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/comum":
|
|
1699
|
+
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/comum":216,"./erro-avaliador-sintatico":20}],10:[function(require,module,exports){
|
|
1700
1700
|
"use strict";
|
|
1701
1701
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
1702
1702
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -3896,7 +3896,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
3896
3896
|
}
|
|
3897
3897
|
exports.AvaliadorSintatico = AvaliadorSintatico;
|
|
3898
3898
|
|
|
3899
|
-
},{"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-numero":30,"../bibliotecas/primitivas-texto":31,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../construtos/tuplas":80,"../declaracoes":109,"../inferenciador":135,"../informacao-elemento-sintatico":136,"../tipos-de-dados/delegua":
|
|
3899
|
+
},{"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-numero":30,"../bibliotecas/primitivas-texto":31,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../construtos/tuplas":80,"../declaracoes":109,"../inferenciador":135,"../informacao-elemento-sintatico":136,"../tipos-de-dados/delegua":212,"../tipos-de-simbolos/delegua":217,"./avaliador-sintatico-base":9,"./comum":11,"./elemento-montao-tipos":19,"./erro-avaliador-sintatico":20,"./informacao-escopo":22,"./montao-tipos":25,"./pilha-escopos":26,"browser-process-hrtime":408}],11:[function(require,module,exports){
|
|
3900
3900
|
"use strict";
|
|
3901
3901
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3902
3902
|
exports.buscarRetornos = buscarRetornos;
|
|
@@ -4661,7 +4661,7 @@ class AvaliadorSintaticoEguaClassico {
|
|
|
4661
4661
|
}
|
|
4662
4662
|
exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
|
|
4663
4663
|
|
|
4664
|
-
},{"../../construtos":62,"../../declaracoes":109,"../../tipos-de-simbolos/egua-classico":
|
|
4664
|
+
},{"../../construtos":62,"../../declaracoes":109,"../../tipos-de-simbolos/egua-classico":218,"../erro-avaliador-sintatico":20}],13:[function(require,module,exports){
|
|
4665
4665
|
"use strict";
|
|
4666
4666
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4667
4667
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -6198,7 +6198,7 @@ class AvaliadorSintaticoPitugues {
|
|
|
6198
6198
|
}
|
|
6199
6199
|
exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
|
|
6200
6200
|
|
|
6201
|
-
},{"../../bibliotecas/dialetos/pitugues/primitivas-tupla":28,"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../declaracoes":109,"../../inferenciador":135,"../../informacao-elemento-sintatico":136,"../../lexador":
|
|
6201
|
+
},{"../../bibliotecas/dialetos/pitugues/primitivas-tupla":28,"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../declaracoes":109,"../../inferenciador":135,"../../informacao-elemento-sintatico":136,"../../lexador":202,"../../lexador/micro-lexador-pitugues":207,"../../tipos-de-dados/dialetos/pitugues":213,"../../tipos-de-simbolos/pitugues":221,"../comum":11,"../erro-avaliador-sintatico":20,"../informacao-escopo":22,"../pilha-escopos":26,"./micro-avaliador-sintatico-pitugues":18,"browser-process-hrtime":408}],14:[function(require,module,exports){
|
|
6202
6202
|
"use strict";
|
|
6203
6203
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
6204
6204
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -6372,7 +6372,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
|
|
|
6372
6372
|
}
|
|
6373
6373
|
exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
|
|
6374
6374
|
|
|
6375
|
-
},{"../../construtos":62,"../../declaracoes":109,"../../tipos-de-simbolos/portugol-ipt":
|
|
6375
|
+
},{"../../construtos":62,"../../declaracoes":109,"../../tipos-de-simbolos/portugol-ipt":222,"../avaliador-sintatico-base":9}],15:[function(require,module,exports){
|
|
6376
6376
|
"use strict";
|
|
6377
6377
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
6378
6378
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -7122,7 +7122,7 @@ class AvaliadorSintaticoPrisma extends avaliador_sintatico_base_1.AvaliadorSinta
|
|
|
7122
7122
|
}
|
|
7123
7123
|
exports.AvaliadorSintaticoPrisma = AvaliadorSintaticoPrisma;
|
|
7124
7124
|
|
|
7125
|
-
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../declaracoes":109,"../../inferenciador":135,"../../informacao-elemento-sintatico":136,"../../lexador":
|
|
7125
|
+
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../declaracoes":109,"../../inferenciador":135,"../../informacao-elemento-sintatico":136,"../../lexador":202,"../../tipos-de-simbolos/prisma":223,"../avaliador-sintatico-base":9,"../comum":11,"../informacao-escopo":22,"../pilha-escopos":26,"browser-process-hrtime":408}],16:[function(require,module,exports){
|
|
7126
7126
|
"use strict";
|
|
7127
7127
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
7128
7128
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -8105,7 +8105,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
|
|
|
8105
8105
|
}
|
|
8106
8106
|
exports.AvaliadorSintaticoTenda = AvaliadorSintaticoTenda;
|
|
8107
8107
|
|
|
8108
|
-
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../construtos/tuplas":80,"../../declaracoes":109,"../../inferenciador":135,"../../informacao-elemento-sintatico":136,"../../lexador/simbolo":
|
|
8108
|
+
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../construtos/tuplas":80,"../../declaracoes":109,"../../inferenciador":135,"../../informacao-elemento-sintatico":136,"../../lexador/simbolo":210,"../../tipos-de-dados/delegua":212,"../../tipos-de-simbolos/tenda":224,"../avaliador-sintatico-base":9,"./../erro-avaliador-sintatico":20,"./../informacao-escopo":22,"./../pilha-escopos":26,"browser-process-hrtime":408}],17:[function(require,module,exports){
|
|
8109
8109
|
"use strict";
|
|
8110
8110
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
8111
8111
|
if (k2 === undefined) k2 = k;
|
|
@@ -8369,7 +8369,7 @@ class MicroAvaliadorSintaticoPitugues extends micro_avaliador_sintatico_base_1.M
|
|
|
8369
8369
|
}
|
|
8370
8370
|
exports.MicroAvaliadorSintaticoPitugues = MicroAvaliadorSintaticoPitugues;
|
|
8371
8371
|
|
|
8372
|
-
},{"../../construtos":62,"../../declaracoes":109,"../../inferenciador":135,"../../tipos-de-simbolos/pitugues":
|
|
8372
|
+
},{"../../construtos":62,"../../declaracoes":109,"../../inferenciador":135,"../../tipos-de-simbolos/pitugues":221,"../micro-avaliador-sintatico-base":23}],19:[function(require,module,exports){
|
|
8373
8373
|
"use strict";
|
|
8374
8374
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8375
8375
|
exports.ElementoMontaoTipos = void 0;
|
|
@@ -8551,7 +8551,7 @@ class MicroAvaliadorSintaticoBase {
|
|
|
8551
8551
|
}
|
|
8552
8552
|
exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
|
|
8553
8553
|
|
|
8554
|
-
},{"../construtos":62,"../tipos-de-simbolos/comum":
|
|
8554
|
+
},{"../construtos":62,"../tipos-de-simbolos/comum":216,"./erro-avaliador-sintatico":20}],24:[function(require,module,exports){
|
|
8555
8555
|
"use strict";
|
|
8556
8556
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8557
8557
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -8773,7 +8773,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
|
|
|
8773
8773
|
}
|
|
8774
8774
|
exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
|
|
8775
8775
|
|
|
8776
|
-
},{"../construtos":62,"../tipos-de-simbolos/microgramaticas/delegua":
|
|
8776
|
+
},{"../construtos":62,"../tipos-de-simbolos/microgramaticas/delegua":220,"./micro-avaliador-sintatico-base":23}],25:[function(require,module,exports){
|
|
8777
8777
|
"use strict";
|
|
8778
8778
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8779
8779
|
exports.MontaoTipos = void 0;
|
|
@@ -9964,7 +9964,7 @@ async function vetor(interpretador, tupla) {
|
|
|
9964
9964
|
return Promise.resolve(resultadoFinal);
|
|
9965
9965
|
}
|
|
9966
9966
|
|
|
9967
|
-
},{"../construtos":62,"../excecoes":129,"../interpretador/estruturas":
|
|
9967
|
+
},{"../construtos":62,"../excecoes":129,"../interpretador/estruturas":176,"../interpretador/estruturas/descritor-tipo-classe":174,"../interpretador/estruturas/funcao-padrao":175,"../interpretador/estruturas/objeto-delegua-classe":179,"../quebras":211}],28:[function(require,module,exports){
|
|
9968
9968
|
"use strict";
|
|
9969
9969
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9970
9970
|
const excecoes_1 = require("../../../excecoes");
|
|
@@ -13971,7 +13971,7 @@ class RegraParadigmaConsistente {
|
|
|
13971
13971
|
}
|
|
13972
13972
|
exports.RegraParadigmaConsistente = RegraParadigmaConsistente;
|
|
13973
13973
|
|
|
13974
|
-
},{"../../construtos/leia":64,"../../declaracoes":109,"../../lexador/mapeamento-paradigmas":
|
|
13974
|
+
},{"../../construtos/leia":64,"../../declaracoes":109,"../../lexador/mapeamento-paradigmas":206}],128:[function(require,module,exports){
|
|
13975
13975
|
"use strict";
|
|
13976
13976
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13977
13977
|
exports.ErroEmTempoDeExecucao = void 0;
|
|
@@ -14769,7 +14769,7 @@ class FormatadorDelegua {
|
|
|
14769
14769
|
}
|
|
14770
14770
|
exports.FormatadorDelegua = FormatadorDelegua;
|
|
14771
14771
|
|
|
14772
|
-
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":
|
|
14772
|
+
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":217}],131:[function(require,module,exports){
|
|
14773
14773
|
"use strict";
|
|
14774
14774
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14775
14775
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -15187,7 +15187,7 @@ class FormatadorPitugues {
|
|
|
15187
15187
|
}
|
|
15188
15188
|
exports.FormatadorPitugues = FormatadorPitugues;
|
|
15189
15189
|
|
|
15190
|
-
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/pitugues":
|
|
15190
|
+
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/pitugues":221}],132:[function(require,module,exports){
|
|
15191
15191
|
"use strict";
|
|
15192
15192
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15193
15193
|
if (k2 === undefined) k2 = k;
|
|
@@ -15280,7 +15280,7 @@ __exportStar(require("./interpretador"), exports);
|
|
|
15280
15280
|
__exportStar(require("./lexador"), exports);
|
|
15281
15281
|
__exportStar(require("./tradutores"), exports);
|
|
15282
15282
|
|
|
15283
|
-
},{"./analisador-semantico":6,"./avaliador-sintatico":21,"./construtos":62,"./declaracoes":109,"./estilizador":123,"./formatadores":132,"./geracao-identificadores":133,"./interfaces":
|
|
15283
|
+
},{"./analisador-semantico":6,"./avaliador-sintatico":21,"./construtos":62,"./declaracoes":109,"./estilizador":123,"./formatadores":132,"./geracao-identificadores":133,"./interfaces":147,"./interpretador":182,"./lexador":202,"./tradutores":225}],135:[function(require,module,exports){
|
|
15284
15284
|
"use strict";
|
|
15285
15285
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
15286
15286
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -15410,7 +15410,7 @@ function tipoInferenciaParaTipoDadosElementar(tipoInferencia) {
|
|
|
15410
15410
|
}
|
|
15411
15411
|
}
|
|
15412
15412
|
|
|
15413
|
-
},{"./tipos-de-dados/delegua":
|
|
15413
|
+
},{"./tipos-de-dados/delegua":212,"./tipos-de-dados/primitivos":214,"./tipos-de-simbolos/delegua":217}],136:[function(require,module,exports){
|
|
15414
15414
|
"use strict";
|
|
15415
15415
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15416
15416
|
exports.InformacaoElementoSintatico = void 0;
|
|
@@ -15444,6 +15444,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
15444
15444
|
},{}],140:[function(require,module,exports){
|
|
15445
15445
|
"use strict";
|
|
15446
15446
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15447
|
+
|
|
15448
|
+
},{}],141:[function(require,module,exports){
|
|
15449
|
+
"use strict";
|
|
15450
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15451
|
+
|
|
15452
|
+
},{}],142:[function(require,module,exports){
|
|
15453
|
+
"use strict";
|
|
15454
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15447
15455
|
exports.DiagnosticoSeveridade = void 0;
|
|
15448
15456
|
var DiagnosticoSeveridade;
|
|
15449
15457
|
(function (DiagnosticoSeveridade) {
|
|
@@ -15453,11 +15461,11 @@ var DiagnosticoSeveridade;
|
|
|
15453
15461
|
DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
|
|
15454
15462
|
})(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
|
|
15455
15463
|
|
|
15456
|
-
},{}],
|
|
15464
|
+
},{}],143:[function(require,module,exports){
|
|
15457
15465
|
"use strict";
|
|
15458
15466
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15459
15467
|
|
|
15460
|
-
},{}],
|
|
15468
|
+
},{}],144:[function(require,module,exports){
|
|
15461
15469
|
"use strict";
|
|
15462
15470
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15463
15471
|
if (k2 === undefined) k2 = k;
|
|
@@ -15478,15 +15486,15 @@ __exportStar(require("./correcao-sugerida-interface"), exports);
|
|
|
15478
15486
|
__exportStar(require("./diagnostico-analisador-semantico"), exports);
|
|
15479
15487
|
__exportStar(require("./erro-interpretador-interface"), exports);
|
|
15480
15488
|
|
|
15481
|
-
},{"./correcao-sugerida-interface":
|
|
15489
|
+
},{"./correcao-sugerida-interface":141,"./diagnostico-analisador-semantico":142,"./erro-interpretador-interface":143}],145:[function(require,module,exports){
|
|
15482
15490
|
"use strict";
|
|
15483
15491
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15484
15492
|
|
|
15485
|
-
},{}],
|
|
15493
|
+
},{}],146:[function(require,module,exports){
|
|
15486
15494
|
"use strict";
|
|
15487
15495
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15488
15496
|
|
|
15489
|
-
},{}],
|
|
15497
|
+
},{}],147:[function(require,module,exports){
|
|
15490
15498
|
"use strict";
|
|
15491
15499
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15492
15500
|
if (k2 === undefined) k2 = k;
|
|
@@ -15504,11 +15512,14 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15504
15512
|
};
|
|
15505
15513
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15506
15514
|
__exportStar(require("./avaliador-sintatico-interface"), exports);
|
|
15515
|
+
__exportStar(require("./componente-modulo-classe-interface"), exports);
|
|
15516
|
+
__exportStar(require("./componente-modulo-funcao-interface"), exports);
|
|
15507
15517
|
__exportStar(require("./estilizador-comum-interface"), exports);
|
|
15508
15518
|
__exportStar(require("./formatador-comum-interface"), exports);
|
|
15509
15519
|
__exportStar(require("./interpretador-com-depuracao-interface"), exports);
|
|
15510
15520
|
__exportStar(require("./interpretador-interface"), exports);
|
|
15511
15521
|
__exportStar(require("./lexador-interface"), exports);
|
|
15522
|
+
__exportStar(require("./modulo-interface"), exports);
|
|
15512
15523
|
__exportStar(require("./parametro-interface"), exports);
|
|
15513
15524
|
__exportStar(require("./pilha-interface"), exports);
|
|
15514
15525
|
__exportStar(require("./primitiva-interface"), exports);
|
|
@@ -15524,15 +15535,7 @@ __exportStar(require("./construtos"), exports);
|
|
|
15524
15535
|
__exportStar(require("./erros"), exports);
|
|
15525
15536
|
__exportStar(require("./retornos"), exports);
|
|
15526
15537
|
|
|
15527
|
-
},{"./avaliador-sintatico-interface":137,"./
|
|
15528
|
-
"use strict";
|
|
15529
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15530
|
-
|
|
15531
|
-
},{}],147:[function(require,module,exports){
|
|
15532
|
-
"use strict";
|
|
15533
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15534
|
-
|
|
15535
|
-
},{}],148:[function(require,module,exports){
|
|
15538
|
+
},{"./avaliador-sintatico-interface":137,"./componente-modulo-classe-interface":138,"./componente-modulo-funcao-interface":139,"./construtos":140,"./erros":144,"./estilizador-comum-interface":145,"./formatador-comum-interface":146,"./interpretador-com-depuracao-interface":148,"./interpretador-interface":149,"./lexador-interface":150,"./modulo-interface":151,"./parametro-interface":152,"./pilha-interface":153,"./primitiva-interface":154,"./resolvedor-interface":155,"./resultado-parcial-interpretador-interface":156,"./retornos":157,"./retornos/retorno-execucao-interface":160,"./simbolo-interface":163,"./tradutor-interface":164,"./variavel-interface":165,"./visitante-comum-interface":166,"./visitante-delegua-interface":167}],148:[function(require,module,exports){
|
|
15536
15539
|
"use strict";
|
|
15537
15540
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15538
15541
|
|
|
@@ -15558,6 +15561,18 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
15558
15561
|
|
|
15559
15562
|
},{}],154:[function(require,module,exports){
|
|
15560
15563
|
"use strict";
|
|
15564
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15565
|
+
|
|
15566
|
+
},{}],155:[function(require,module,exports){
|
|
15567
|
+
"use strict";
|
|
15568
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15569
|
+
|
|
15570
|
+
},{}],156:[function(require,module,exports){
|
|
15571
|
+
"use strict";
|
|
15572
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15573
|
+
|
|
15574
|
+
},{}],157:[function(require,module,exports){
|
|
15575
|
+
"use strict";
|
|
15561
15576
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15562
15577
|
if (k2 === undefined) k2 = k;
|
|
15563
15578
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -15579,47 +15594,47 @@ __exportStar(require("./retorno-execucao-interface"), exports);
|
|
|
15579
15594
|
__exportStar(require("./retorno-interpretador-interface"), exports);
|
|
15580
15595
|
__exportStar(require("./retorno-lexador"), exports);
|
|
15581
15596
|
|
|
15582
|
-
},{"./retorno-analisador-semantico":
|
|
15597
|
+
},{"./retorno-analisador-semantico":158,"./retorno-avaliador-sintatico":159,"./retorno-execucao-interface":160,"./retorno-interpretador-interface":161,"./retorno-lexador":162}],158:[function(require,module,exports){
|
|
15583
15598
|
"use strict";
|
|
15584
15599
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15585
15600
|
|
|
15586
|
-
},{}],
|
|
15601
|
+
},{}],159:[function(require,module,exports){
|
|
15587
15602
|
"use strict";
|
|
15588
15603
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15589
15604
|
|
|
15590
|
-
},{}],
|
|
15605
|
+
},{}],160:[function(require,module,exports){
|
|
15591
15606
|
"use strict";
|
|
15592
15607
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15593
15608
|
|
|
15594
|
-
},{}],
|
|
15609
|
+
},{}],161:[function(require,module,exports){
|
|
15595
15610
|
"use strict";
|
|
15596
15611
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15597
15612
|
|
|
15598
|
-
},{}],
|
|
15613
|
+
},{}],162:[function(require,module,exports){
|
|
15599
15614
|
"use strict";
|
|
15600
15615
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15601
15616
|
|
|
15602
|
-
},{}],
|
|
15617
|
+
},{}],163:[function(require,module,exports){
|
|
15603
15618
|
"use strict";
|
|
15604
15619
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15605
15620
|
|
|
15606
|
-
},{}],
|
|
15621
|
+
},{}],164:[function(require,module,exports){
|
|
15607
15622
|
"use strict";
|
|
15608
15623
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15609
15624
|
|
|
15610
|
-
},{}],
|
|
15625
|
+
},{}],165:[function(require,module,exports){
|
|
15611
15626
|
"use strict";
|
|
15612
15627
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15613
15628
|
|
|
15614
|
-
},{}],
|
|
15629
|
+
},{}],166:[function(require,module,exports){
|
|
15615
15630
|
"use strict";
|
|
15616
15631
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15617
15632
|
|
|
15618
|
-
},{}],
|
|
15633
|
+
},{}],167:[function(require,module,exports){
|
|
15619
15634
|
"use strict";
|
|
15620
15635
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15621
15636
|
|
|
15622
|
-
},{}],
|
|
15637
|
+
},{}],168:[function(require,module,exports){
|
|
15623
15638
|
"use strict";
|
|
15624
15639
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15625
15640
|
if (k2 === undefined) k2 = k;
|
|
@@ -16010,7 +16025,7 @@ function obterAjudaFuncaoPadrao(funcaoPadrao) {
|
|
|
16010
16025
|
}
|
|
16011
16026
|
}
|
|
16012
16027
|
|
|
16013
|
-
},{"../bibliotecas/biblioteca-global":27,"../construtos":62,"./estruturas/funcao-padrao":
|
|
16028
|
+
},{"../bibliotecas/biblioteca-global":27,"../construtos":62,"./estruturas/funcao-padrao":175}],169:[function(require,module,exports){
|
|
16014
16029
|
"use strict";
|
|
16015
16030
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16016
16031
|
exports.EspacoMemoria = void 0;
|
|
@@ -16035,7 +16050,7 @@ class EspacoMemoria {
|
|
|
16035
16050
|
}
|
|
16036
16051
|
exports.EspacoMemoria = EspacoMemoria;
|
|
16037
16052
|
|
|
16038
|
-
},{}],
|
|
16053
|
+
},{}],170:[function(require,module,exports){
|
|
16039
16054
|
"use strict";
|
|
16040
16055
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16041
16056
|
exports.Chamavel = void 0;
|
|
@@ -16049,7 +16064,7 @@ class Chamavel {
|
|
|
16049
16064
|
}
|
|
16050
16065
|
exports.Chamavel = Chamavel;
|
|
16051
16066
|
|
|
16052
|
-
},{}],
|
|
16067
|
+
},{}],171:[function(require,module,exports){
|
|
16053
16068
|
"use strict";
|
|
16054
16069
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16055
16070
|
exports.ClasseDeModulo = void 0;
|
|
@@ -16070,7 +16085,7 @@ class ClasseDeModulo extends chamavel_1.Chamavel {
|
|
|
16070
16085
|
}
|
|
16071
16086
|
exports.ClasseDeModulo = ClasseDeModulo;
|
|
16072
16087
|
|
|
16073
|
-
},{"./chamavel":
|
|
16088
|
+
},{"./chamavel":170}],172:[function(require,module,exports){
|
|
16074
16089
|
"use strict";
|
|
16075
16090
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16076
16091
|
exports.ClassePadrao = void 0;
|
|
@@ -16111,7 +16126,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
|
|
|
16111
16126
|
}
|
|
16112
16127
|
exports.ClassePadrao = ClassePadrao;
|
|
16113
16128
|
|
|
16114
|
-
},{"./chamavel":
|
|
16129
|
+
},{"./chamavel":170}],173:[function(require,module,exports){
|
|
16115
16130
|
"use strict";
|
|
16116
16131
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16117
16132
|
exports.DeleguaFuncao = void 0;
|
|
@@ -16256,7 +16271,7 @@ class DeleguaFuncao extends chamavel_1.Chamavel {
|
|
|
16256
16271
|
}
|
|
16257
16272
|
exports.DeleguaFuncao = DeleguaFuncao;
|
|
16258
16273
|
|
|
16259
|
-
},{"../../declaracoes":109,"../../quebras":
|
|
16274
|
+
},{"../../declaracoes":109,"../../quebras":211,"../espaco-memoria":169,"./chamavel":170}],174:[function(require,module,exports){
|
|
16260
16275
|
"use strict";
|
|
16261
16276
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16262
16277
|
exports.DescritorTipoClasse = void 0;
|
|
@@ -16337,7 +16352,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
|
|
|
16337
16352
|
}
|
|
16338
16353
|
exports.DescritorTipoClasse = DescritorTipoClasse;
|
|
16339
16354
|
|
|
16340
|
-
},{"../../excecoes":129,"./chamavel":
|
|
16355
|
+
},{"../../excecoes":129,"./chamavel":170,"./objeto-delegua-classe":179}],175:[function(require,module,exports){
|
|
16341
16356
|
"use strict";
|
|
16342
16357
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16343
16358
|
exports.FuncaoPadrao = void 0;
|
|
@@ -16374,7 +16389,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
|
|
|
16374
16389
|
}
|
|
16375
16390
|
exports.FuncaoPadrao = FuncaoPadrao;
|
|
16376
16391
|
|
|
16377
|
-
},{"./chamavel":
|
|
16392
|
+
},{"./chamavel":170}],176:[function(require,module,exports){
|
|
16378
16393
|
"use strict";
|
|
16379
16394
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16380
16395
|
if (k2 === undefined) k2 = k;
|
|
@@ -16403,7 +16418,7 @@ __exportStar(require("./objeto-delegua-classe"), exports);
|
|
|
16403
16418
|
__exportStar(require("./objeto-padrao"), exports);
|
|
16404
16419
|
__exportStar(require("./referencia-montao"), exports);
|
|
16405
16420
|
|
|
16406
|
-
},{"./chamavel":
|
|
16421
|
+
},{"./chamavel":170,"./classe-de-modulo":171,"./classe-padrao":172,"./delegua-funcao":173,"./descritor-tipo-classe":174,"./funcao-padrao":175,"./metodo-primitiva":177,"./modulo":178,"./objeto-delegua-classe":179,"./objeto-padrao":180,"./referencia-montao":181}],177:[function(require,module,exports){
|
|
16407
16422
|
"use strict";
|
|
16408
16423
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16409
16424
|
exports.MetodoPrimitiva = void 0;
|
|
@@ -16449,7 +16464,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
|
|
|
16449
16464
|
}
|
|
16450
16465
|
exports.MetodoPrimitiva = MetodoPrimitiva;
|
|
16451
16466
|
|
|
16452
|
-
},{"./chamavel":
|
|
16467
|
+
},{"./chamavel":170}],178:[function(require,module,exports){
|
|
16453
16468
|
"use strict";
|
|
16454
16469
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16455
16470
|
exports.DeleguaModulo = void 0;
|
|
@@ -16475,7 +16490,7 @@ class DeleguaModulo {
|
|
|
16475
16490
|
}
|
|
16476
16491
|
exports.DeleguaModulo = DeleguaModulo;
|
|
16477
16492
|
|
|
16478
|
-
},{}],
|
|
16493
|
+
},{}],179:[function(require,module,exports){
|
|
16479
16494
|
"use strict";
|
|
16480
16495
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16481
16496
|
exports.ObjetoDeleguaClasse = void 0;
|
|
@@ -16543,7 +16558,7 @@ class ObjetoDeleguaClasse {
|
|
|
16543
16558
|
}
|
|
16544
16559
|
exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
|
|
16545
16560
|
|
|
16546
|
-
},{"../../excecoes":129}],
|
|
16561
|
+
},{"../../excecoes":129}],180:[function(require,module,exports){
|
|
16547
16562
|
"use strict";
|
|
16548
16563
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16549
16564
|
exports.ObjetoPadrao = void 0;
|
|
@@ -16577,7 +16592,7 @@ class ObjetoPadrao {
|
|
|
16577
16592
|
}
|
|
16578
16593
|
exports.ObjetoPadrao = ObjetoPadrao;
|
|
16579
16594
|
|
|
16580
|
-
},{}],
|
|
16595
|
+
},{}],181:[function(require,module,exports){
|
|
16581
16596
|
"use strict";
|
|
16582
16597
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16583
16598
|
exports.ReferenciaMontao = void 0;
|
|
@@ -16602,7 +16617,7 @@ class ReferenciaMontao {
|
|
|
16602
16617
|
}
|
|
16603
16618
|
exports.ReferenciaMontao = ReferenciaMontao;
|
|
16604
16619
|
|
|
16605
|
-
},{}],
|
|
16620
|
+
},{}],182:[function(require,module,exports){
|
|
16606
16621
|
"use strict";
|
|
16607
16622
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16608
16623
|
if (k2 === undefined) k2 = k;
|
|
@@ -16622,7 +16637,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
16622
16637
|
__exportStar(require("./interpretador"), exports);
|
|
16623
16638
|
__exportStar(require("./interpretador-base"), exports);
|
|
16624
16639
|
|
|
16625
|
-
},{"./interpretador":
|
|
16640
|
+
},{"./interpretador":184,"./interpretador-base":183}],183:[function(require,module,exports){
|
|
16626
16641
|
(function (process){(function (){
|
|
16627
16642
|
"use strict";
|
|
16628
16643
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
@@ -18580,7 +18595,7 @@ class InterpretadorBase {
|
|
|
18580
18595
|
exports.InterpretadorBase = InterpretadorBase;
|
|
18581
18596
|
|
|
18582
18597
|
}).call(this)}).call(this,require('_process'))
|
|
18583
|
-
},{"../avaliador-sintatico":21,"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../excecoes":129,"../inferenciador":135,"../lexador":
|
|
18598
|
+
},{"../avaliador-sintatico":21,"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../excecoes":129,"../inferenciador":135,"../lexador":202,"../quebras":211,"../tipos-de-dados/delegua":212,"../tipos-de-dados/primitivos":214,"../tipos-de-simbolos/delegua":217,"./espaco-memoria":169,"./estruturas":176,"./estruturas/metodo-primitiva":177,"./pilha-escopos-execucao":186,"_process":462,"browser-process-hrtime":408}],184:[function(require,module,exports){
|
|
18584
18599
|
"use strict";
|
|
18585
18600
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
18586
18601
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -19678,7 +19693,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
19678
19693
|
}
|
|
19679
19694
|
exports.Interpretador = Interpretador;
|
|
19680
19695
|
|
|
19681
|
-
},{"../bibliotecas/dialetos/pitugues/primitivas-tupla":28,"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-numero":30,"../bibliotecas/primitivas-texto":31,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../declaracoes":109,"../excecoes":129,"../inferenciador":135,"../quebras":
|
|
19696
|
+
},{"../bibliotecas/dialetos/pitugues/primitivas-tupla":28,"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-numero":30,"../bibliotecas/primitivas-texto":31,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../declaracoes":109,"../excecoes":129,"../inferenciador":135,"../quebras":211,"../tipos-de-dados/delegua":212,"../tipos-de-dados/primitivos":214,"../tipos-de-simbolos/delegua":217,"./comum":168,"./estruturas":176,"./interpretador-base":183,"./montao":185}],185:[function(require,module,exports){
|
|
19682
19697
|
"use strict";
|
|
19683
19698
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19684
19699
|
exports.Montao = void 0;
|
|
@@ -19735,7 +19750,7 @@ class Montao {
|
|
|
19735
19750
|
}
|
|
19736
19751
|
exports.Montao = Montao;
|
|
19737
19752
|
|
|
19738
|
-
},{"../excecoes":129,"../geracao-identificadores":133}],
|
|
19753
|
+
},{"../excecoes":129,"../geracao-identificadores":133}],186:[function(require,module,exports){
|
|
19739
19754
|
"use strict";
|
|
19740
19755
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
19741
19756
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -20032,7 +20047,7 @@ class PilhaEscoposExecucao {
|
|
|
20032
20047
|
}
|
|
20033
20048
|
exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
|
|
20034
20049
|
|
|
20035
|
-
},{"../excecoes":129,"../inferenciador":135,"../lexador":
|
|
20050
|
+
},{"../excecoes":129,"../inferenciador":135,"../lexador":202,"../tipos-de-dados/delegua":212,"./estruturas":176}],187:[function(require,module,exports){
|
|
20036
20051
|
"use strict";
|
|
20037
20052
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
20038
20053
|
if (k2 === undefined) k2 = k;
|
|
@@ -20057,7 +20072,7 @@ __exportStar(require("./lexador-portugol-ipt"), exports);
|
|
|
20057
20072
|
__exportStar(require("./lexador-prisma"), exports);
|
|
20058
20073
|
__exportStar(require("./lexador-tenda"), exports);
|
|
20059
20074
|
|
|
20060
|
-
},{"./lexador-calango":
|
|
20075
|
+
},{"./lexador-calango":188,"./lexador-egua-classico":189,"./lexador-guarani":190,"./lexador-pitugues":191,"./lexador-portugol-ipt":192,"./lexador-prisma":193,"./lexador-tenda":194}],188:[function(require,module,exports){
|
|
20061
20076
|
"use strict";
|
|
20062
20077
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
20063
20078
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -20128,7 +20143,10 @@ class LexadorCalango {
|
|
|
20128
20143
|
}
|
|
20129
20144
|
adicionarSimbolo(tipo, literal) {
|
|
20130
20145
|
const texto = this.codigo[this.linha].substring(this.inicioSimbolo, this.atual);
|
|
20131
|
-
|
|
20146
|
+
const comprimento = Math.max(texto.length, 1);
|
|
20147
|
+
const colunaInicio = this.inicioSimbolo + 1;
|
|
20148
|
+
const colunaFim = this.inicioSimbolo + comprimento;
|
|
20149
|
+
this.simbolos.push(new simbolo_1.Simbolo(tipo, texto, literal, this.linha, -1, colunaInicio, colunaFim));
|
|
20132
20150
|
}
|
|
20133
20151
|
simboloAtual() {
|
|
20134
20152
|
if (this.eFinalDaLinha())
|
|
@@ -20290,7 +20308,7 @@ class LexadorCalango {
|
|
|
20290
20308
|
}
|
|
20291
20309
|
exports.LexadorCalango = LexadorCalango;
|
|
20292
20310
|
|
|
20293
|
-
},{"../../tipos-de-simbolos/calango":
|
|
20311
|
+
},{"../../tipos-de-simbolos/calango":215,"../simbolo":210,"./palavras-reservadas/calango":195}],189:[function(require,module,exports){
|
|
20294
20312
|
"use strict";
|
|
20295
20313
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
20296
20314
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -20365,7 +20383,10 @@ class LexadorEguaClassico {
|
|
|
20365
20383
|
}
|
|
20366
20384
|
adicionarSimbolo(tipo, literal = null) {
|
|
20367
20385
|
const texto = this.codigo.substring(this.inicioSimbolo, this.atual);
|
|
20368
|
-
|
|
20386
|
+
const comprimento = Math.max(texto.length, 1);
|
|
20387
|
+
const colunaInicio = this.inicioSimbolo + 1;
|
|
20388
|
+
const colunaFim = this.inicioSimbolo + comprimento;
|
|
20389
|
+
this.simbolos.push(new simbolo_1.Simbolo(tipo, texto, literal, this.linha, -1, colunaInicio, colunaFim));
|
|
20369
20390
|
}
|
|
20370
20391
|
proximoIgualA(esperado) {
|
|
20371
20392
|
if (this.eFinalDoCodigo()) {
|
|
@@ -20580,7 +20601,7 @@ class LexadorEguaClassico {
|
|
|
20580
20601
|
}
|
|
20581
20602
|
exports.LexadorEguaClassico = LexadorEguaClassico;
|
|
20582
20603
|
|
|
20583
|
-
},{"../../tipos-de-simbolos/egua-classico":
|
|
20604
|
+
},{"../../tipos-de-simbolos/egua-classico":218,"../simbolo":210,"./palavras-reservadas/egua-classico":196}],190:[function(require,module,exports){
|
|
20584
20605
|
"use strict";
|
|
20585
20606
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
20586
20607
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -20699,7 +20720,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
|
|
|
20699
20720
|
}
|
|
20700
20721
|
exports.LexadorGuarani = LexadorGuarani;
|
|
20701
20722
|
|
|
20702
|
-
},{"../../tipos-de-simbolos/guarani":
|
|
20723
|
+
},{"../../tipos-de-simbolos/guarani":219,"../lexador-base":204,"./palavras-reservadas/guarani":197}],191:[function(require,module,exports){
|
|
20703
20724
|
"use strict";
|
|
20704
20725
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
20705
20726
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -20795,7 +20816,10 @@ class LexadorPitugues {
|
|
|
20795
20816
|
}
|
|
20796
20817
|
adicionarSimbolo(tipo, literal = null, linha = null) {
|
|
20797
20818
|
const texto = this.codigo[this.linha].substring(this.inicioSimbolo, this.atual);
|
|
20798
|
-
|
|
20819
|
+
const comprimento = Math.max(texto.length, 1);
|
|
20820
|
+
const colunaInicio = this.inicioSimbolo + 1;
|
|
20821
|
+
const colunaFim = this.inicioSimbolo + comprimento;
|
|
20822
|
+
this.simbolos.push(new simbolo_1.Simbolo(tipo, texto, literal, linha || this.linha + 1, this.hashArquivo, colunaInicio, colunaFim));
|
|
20799
20823
|
}
|
|
20800
20824
|
simboloAtual() {
|
|
20801
20825
|
if (this.eFinalDaLinha())
|
|
@@ -21211,7 +21235,7 @@ class LexadorPitugues {
|
|
|
21211
21235
|
}
|
|
21212
21236
|
exports.LexadorPitugues = LexadorPitugues;
|
|
21213
21237
|
|
|
21214
|
-
},{"../../tipos-de-simbolos/pitugues":
|
|
21238
|
+
},{"../../tipos-de-simbolos/pitugues":221,"../simbolo":210,"./palavras-reservadas/pitugues":198,"browser-process-hrtime":408}],192:[function(require,module,exports){
|
|
21215
21239
|
"use strict";
|
|
21216
21240
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21217
21241
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21283,7 +21307,12 @@ class LexadorPortugolIpt {
|
|
|
21283
21307
|
}
|
|
21284
21308
|
adicionarSimbolo(tipo, literal) {
|
|
21285
21309
|
const texto = this.codigo[this.linha].substring(this.inicioSimbolo, this.atual);
|
|
21286
|
-
|
|
21310
|
+
const lexema = literal || texto;
|
|
21311
|
+
const comprimentoLexema = typeof lexema === 'string' ? lexema.length : 0;
|
|
21312
|
+
const comprimento = Math.max(comprimentoLexema, texto.length) || 1;
|
|
21313
|
+
const colunaInicio = this.inicioSimbolo + 1;
|
|
21314
|
+
const colunaFim = this.inicioSimbolo + comprimento;
|
|
21315
|
+
this.simbolos.push(new simbolo_1.Simbolo(tipo, lexema, literal, this.linha + 1, this.hashArquivo, colunaInicio, colunaFim));
|
|
21287
21316
|
}
|
|
21288
21317
|
eFinalDaLinha() {
|
|
21289
21318
|
return this.atual >= this.codigo[this.linha].length;
|
|
@@ -21463,7 +21492,7 @@ class LexadorPortugolIpt {
|
|
|
21463
21492
|
}
|
|
21464
21493
|
exports.LexadorPortugolIpt = LexadorPortugolIpt;
|
|
21465
21494
|
|
|
21466
|
-
},{"../../tipos-de-simbolos/portugol-ipt":
|
|
21495
|
+
},{"../../tipos-de-simbolos/portugol-ipt":222,"../simbolo":210,"./palavras-reservadas/portugol-ipt":199}],193:[function(require,module,exports){
|
|
21467
21496
|
"use strict";
|
|
21468
21497
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21469
21498
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21551,7 +21580,10 @@ class LexadorPrisma {
|
|
|
21551
21580
|
}
|
|
21552
21581
|
adicionarSimbolo(tipo, literal = null) {
|
|
21553
21582
|
const texto = this.codigo[this.linha].substring(this.inicioSimbolo, this.atual);
|
|
21554
|
-
|
|
21583
|
+
const comprimento = Math.max(texto.length, 1);
|
|
21584
|
+
const colunaInicio = this.inicioSimbolo + 1;
|
|
21585
|
+
const colunaFim = this.inicioSimbolo + comprimento;
|
|
21586
|
+
this.simbolos.push(new simbolo_1.Simbolo(tipo, texto, literal, this.linha + 1, this.hashArquivo, colunaInicio, colunaFim));
|
|
21555
21587
|
}
|
|
21556
21588
|
analisarTexto(delimitador = '"') {
|
|
21557
21589
|
const inicioTexto = this.linha;
|
|
@@ -21821,7 +21853,7 @@ class LexadorPrisma {
|
|
|
21821
21853
|
}
|
|
21822
21854
|
exports.LexadorPrisma = LexadorPrisma;
|
|
21823
21855
|
|
|
21824
|
-
},{"../../tipos-de-simbolos/prisma":
|
|
21856
|
+
},{"../../tipos-de-simbolos/prisma":223,"../simbolo":210,"./palavras-reservadas/prisma":200,"browser-process-hrtime":408}],194:[function(require,module,exports){
|
|
21825
21857
|
"use strict";
|
|
21826
21858
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21827
21859
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21918,7 +21950,10 @@ class LexadorTenda {
|
|
|
21918
21950
|
}
|
|
21919
21951
|
adicionarSimbolo(tipo, literal = null) {
|
|
21920
21952
|
const texto = this.codigo[this.linha].substring(this.inicioSimbolo, this.atual);
|
|
21921
|
-
|
|
21953
|
+
const comprimento = Math.max(texto.length, 1);
|
|
21954
|
+
const colunaInicio = this.inicioSimbolo + 1;
|
|
21955
|
+
const colunaFim = this.inicioSimbolo + comprimento;
|
|
21956
|
+
this.simbolos.push(new simbolo_1.Simbolo(tipo, texto, literal, this.linha + 1, this.hashArquivo, colunaInicio, colunaFim));
|
|
21922
21957
|
}
|
|
21923
21958
|
simboloAtual() {
|
|
21924
21959
|
if (this.eFinalDaLinha())
|
|
@@ -22212,7 +22247,7 @@ class LexadorTenda {
|
|
|
22212
22247
|
}
|
|
22213
22248
|
exports.LexadorTenda = LexadorTenda;
|
|
22214
22249
|
|
|
22215
|
-
},{"../../tipos-de-simbolos/tenda":
|
|
22250
|
+
},{"../../tipos-de-simbolos/tenda":224,"../simbolo":210,"./palavras-reservadas/tenda":201,"browser-process-hrtime":408}],195:[function(require,module,exports){
|
|
22216
22251
|
"use strict";
|
|
22217
22252
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
22218
22253
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -22233,7 +22268,7 @@ exports.default = {
|
|
|
22233
22268
|
fimSe: calango_1.default.FIM_SE,
|
|
22234
22269
|
};
|
|
22235
22270
|
|
|
22236
|
-
},{"../../../tipos-de-simbolos/calango":
|
|
22271
|
+
},{"../../../tipos-de-simbolos/calango":215}],196:[function(require,module,exports){
|
|
22237
22272
|
"use strict";
|
|
22238
22273
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
22239
22274
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -22274,7 +22309,7 @@ exports.palavrasReservadas = {
|
|
|
22274
22309
|
verdadeiro: egua_classico_1.default.VERDADEIRO,
|
|
22275
22310
|
};
|
|
22276
22311
|
|
|
22277
|
-
},{"../../../tipos-de-simbolos/egua-classico":
|
|
22312
|
+
},{"../../../tipos-de-simbolos/egua-classico":218}],197:[function(require,module,exports){
|
|
22278
22313
|
"use strict";
|
|
22279
22314
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
22280
22315
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -22286,7 +22321,7 @@ exports.palavrasReservadas = {
|
|
|
22286
22321
|
hai: guarani_1.default.HAI,
|
|
22287
22322
|
};
|
|
22288
22323
|
|
|
22289
|
-
},{"../../../tipos-de-simbolos/guarani":
|
|
22324
|
+
},{"../../../tipos-de-simbolos/guarani":219}],198:[function(require,module,exports){
|
|
22290
22325
|
"use strict";
|
|
22291
22326
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
22292
22327
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -22349,7 +22384,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
22349
22384
|
verdadeiro: pitugues_1.default.VERDADEIRO,
|
|
22350
22385
|
};
|
|
22351
22386
|
|
|
22352
|
-
},{"../../../tipos-de-simbolos/pitugues":
|
|
22387
|
+
},{"../../../tipos-de-simbolos/pitugues":221}],199:[function(require,module,exports){
|
|
22353
22388
|
"use strict";
|
|
22354
22389
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
22355
22390
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -22371,7 +22406,7 @@ exports.palavrasReservadas = {
|
|
|
22371
22406
|
senão: portugol_ipt_1.default.SENAO,
|
|
22372
22407
|
};
|
|
22373
22408
|
|
|
22374
|
-
},{"../../../tipos-de-simbolos/portugol-ipt":
|
|
22409
|
+
},{"../../../tipos-de-simbolos/portugol-ipt":222}],200:[function(require,module,exports){
|
|
22375
22410
|
"use strict";
|
|
22376
22411
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
22377
22412
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -22419,7 +22454,7 @@ exports.palavrasReservadas = {
|
|
|
22419
22454
|
verdadeiro: prisma_1.default.VERDADEIRO,
|
|
22420
22455
|
};
|
|
22421
22456
|
|
|
22422
|
-
},{"../../../tipos-de-simbolos/prisma":
|
|
22457
|
+
},{"../../../tipos-de-simbolos/prisma":223}],201:[function(require,module,exports){
|
|
22423
22458
|
"use strict";
|
|
22424
22459
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
22425
22460
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -22477,7 +22512,7 @@ exports.palavrasReservadas = {
|
|
|
22477
22512
|
Texto: tenda_1.default.BIBLIOTECA_GLOBAL,
|
|
22478
22513
|
};
|
|
22479
22514
|
|
|
22480
|
-
},{"../../../tipos-de-simbolos/tenda":
|
|
22515
|
+
},{"../../../tipos-de-simbolos/tenda":224}],202:[function(require,module,exports){
|
|
22481
22516
|
"use strict";
|
|
22482
22517
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
22483
22518
|
if (k2 === undefined) k2 = k;
|
|
@@ -22500,7 +22535,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
|
|
|
22500
22535
|
__exportStar(require("./micro-lexador"), exports);
|
|
22501
22536
|
__exportStar(require("./simbolo"), exports);
|
|
22502
22537
|
|
|
22503
|
-
},{"./dialetos":
|
|
22538
|
+
},{"./dialetos":187,"./lexador":205,"./lexador-base-linha-unica":203,"./micro-lexador":208,"./simbolo":210}],203:[function(require,module,exports){
|
|
22504
22539
|
"use strict";
|
|
22505
22540
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22506
22541
|
exports.LexadorBaseLinhaUnica = void 0;
|
|
@@ -22566,7 +22601,12 @@ class LexadorBaseLinhaUnica {
|
|
|
22566
22601
|
}
|
|
22567
22602
|
adicionarSimbolo(tipo, literal) {
|
|
22568
22603
|
const texto = this.codigo.substring(this.inicioSimbolo, this.atual);
|
|
22569
|
-
|
|
22604
|
+
const lexema = literal || texto;
|
|
22605
|
+
const comprimentoLexema = typeof lexema === 'string' ? lexema.length : 0;
|
|
22606
|
+
const comprimento = Math.max(comprimentoLexema, texto.length) || 1;
|
|
22607
|
+
const colunaInicio = this.inicioSimbolo + 1;
|
|
22608
|
+
const colunaFim = this.inicioSimbolo + comprimento;
|
|
22609
|
+
this.simbolos.push(new simbolo_1.Simbolo(tipo, lexema, literal, this.linha + 1, this.hashArquivo, colunaInicio, colunaFim));
|
|
22570
22610
|
}
|
|
22571
22611
|
simboloAtual() {
|
|
22572
22612
|
if (this.eFinalDoCodigo())
|
|
@@ -22584,7 +22624,7 @@ class LexadorBaseLinhaUnica {
|
|
|
22584
22624
|
}
|
|
22585
22625
|
exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
|
|
22586
22626
|
|
|
22587
|
-
},{"./simbolo":
|
|
22627
|
+
},{"./simbolo":210}],204:[function(require,module,exports){
|
|
22588
22628
|
"use strict";
|
|
22589
22629
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22590
22630
|
exports.LexadorBase = void 0;
|
|
@@ -22700,7 +22740,12 @@ class LexadorBase {
|
|
|
22700
22740
|
}
|
|
22701
22741
|
adicionarSimbolo(tipo, literal) {
|
|
22702
22742
|
const texto = this.codigo[this.linha].substring(this.inicioSimbolo, this.atual);
|
|
22703
|
-
|
|
22743
|
+
const lexema = literal || texto;
|
|
22744
|
+
const comprimentoLexema = typeof lexema === 'string' ? lexema.length : 0;
|
|
22745
|
+
const comprimento = Math.max(comprimentoLexema, texto.length) || 1;
|
|
22746
|
+
const colunaInicio = this.inicioSimbolo + 1;
|
|
22747
|
+
const colunaFim = this.inicioSimbolo + comprimento;
|
|
22748
|
+
this.simbolos.push(new simbolo_1.Simbolo(tipo, lexema, literal, this.linha + 1, this.hashArquivo, colunaInicio, colunaFim));
|
|
22704
22749
|
}
|
|
22705
22750
|
simboloAtual() {
|
|
22706
22751
|
if (this.eFinalDoCodigo())
|
|
@@ -22718,7 +22763,7 @@ class LexadorBase {
|
|
|
22718
22763
|
}
|
|
22719
22764
|
exports.LexadorBase = LexadorBase;
|
|
22720
22765
|
|
|
22721
|
-
},{"./simbolo":
|
|
22766
|
+
},{"./simbolo":210}],205:[function(require,module,exports){
|
|
22722
22767
|
"use strict";
|
|
22723
22768
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
22724
22769
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -22820,7 +22865,12 @@ class Lexador {
|
|
|
22820
22865
|
}
|
|
22821
22866
|
adicionarSimbolo(tipo, literal = null) {
|
|
22822
22867
|
const texto = this.codigo[this.linha].substring(this.inicioSimbolo, this.atual);
|
|
22823
|
-
|
|
22868
|
+
const lexema = literal || texto;
|
|
22869
|
+
const comprimentoLexema = typeof lexema === 'string' ? lexema.length : 0;
|
|
22870
|
+
const comprimento = Math.max(comprimentoLexema, texto.length) || 1;
|
|
22871
|
+
const colunaInicio = this.inicioSimbolo + 1;
|
|
22872
|
+
const colunaFim = this.inicioSimbolo + comprimento;
|
|
22873
|
+
this.simbolos.push(new simbolo_1.Simbolo(tipo, lexema, literal, this.linha + 1, this.hashArquivo, colunaInicio, colunaFim));
|
|
22824
22874
|
}
|
|
22825
22875
|
simboloAtual() {
|
|
22826
22876
|
if (this.eFinalDaLinha())
|
|
@@ -23278,7 +23328,7 @@ class Lexador {
|
|
|
23278
23328
|
}
|
|
23279
23329
|
exports.Lexador = Lexador;
|
|
23280
23330
|
|
|
23281
|
-
},{"../tipos-de-simbolos/delegua":
|
|
23331
|
+
},{"../tipos-de-simbolos/delegua":217,"./palavras-reservadas":209,"./simbolo":210,"browser-process-hrtime":408}],206:[function(require,module,exports){
|
|
23282
23332
|
"use strict";
|
|
23283
23333
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
23284
23334
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -23462,7 +23512,7 @@ function pertenceAoParadigma(lexema, paradigma) {
|
|
|
23462
23512
|
return paradigmaLexema === paradigma;
|
|
23463
23513
|
}
|
|
23464
23514
|
|
|
23465
|
-
},{"../tipos-de-simbolos/delegua":
|
|
23515
|
+
},{"../tipos-de-simbolos/delegua":217}],207:[function(require,module,exports){
|
|
23466
23516
|
"use strict";
|
|
23467
23517
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
23468
23518
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -23525,7 +23575,12 @@ class MicroLexadorPitugues {
|
|
|
23525
23575
|
}
|
|
23526
23576
|
adicionarSimbolo(tipo, literal = null) {
|
|
23527
23577
|
const texto = this.codigo.substring(this.inicioSimbolo, this.atual);
|
|
23528
|
-
|
|
23578
|
+
const lexema = literal || texto;
|
|
23579
|
+
const comprimentoLexema = typeof lexema === 'string' ? lexema.length : 0;
|
|
23580
|
+
const comprimento = Math.max(comprimentoLexema, texto.length) || 1;
|
|
23581
|
+
const colunaInicio = this.inicioSimbolo + 1;
|
|
23582
|
+
const colunaFim = this.inicioSimbolo + comprimento;
|
|
23583
|
+
this.simbolos.push(new simbolo_1.Simbolo(tipo, lexema, literal, 1, -1, colunaInicio, colunaFim));
|
|
23529
23584
|
}
|
|
23530
23585
|
analisarTexto(delimitador = '"') {
|
|
23531
23586
|
while (this.codigo[this.atual] !== delimitador && !this.eFinalDoCodigo()) {
|
|
@@ -23677,7 +23732,7 @@ class MicroLexadorPitugues {
|
|
|
23677
23732
|
}
|
|
23678
23733
|
exports.MicroLexadorPitugues = MicroLexadorPitugues;
|
|
23679
23734
|
|
|
23680
|
-
},{"../tipos-de-simbolos/pitugues":
|
|
23735
|
+
},{"../tipos-de-simbolos/pitugues":221,"./palavras-reservadas":209,"./simbolo":210}],208:[function(require,module,exports){
|
|
23681
23736
|
"use strict";
|
|
23682
23737
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
23683
23738
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -23736,7 +23791,12 @@ class MicroLexador {
|
|
|
23736
23791
|
}
|
|
23737
23792
|
adicionarSimbolo(tipo, literal = null) {
|
|
23738
23793
|
const texto = this.codigo.substring(this.inicioSimbolo, this.atual);
|
|
23739
|
-
|
|
23794
|
+
const lexema = literal || texto;
|
|
23795
|
+
const comprimentoLexema = typeof lexema === 'string' ? lexema.length : 0;
|
|
23796
|
+
const comprimento = Math.max(comprimentoLexema, texto.length) || 1;
|
|
23797
|
+
const colunaInicio = this.inicioSimbolo + 1;
|
|
23798
|
+
const colunaFim = this.inicioSimbolo + comprimento;
|
|
23799
|
+
this.simbolos.push(new simbolo_1.Simbolo(tipo, lexema, literal, 1, -1, colunaInicio, colunaFim));
|
|
23740
23800
|
}
|
|
23741
23801
|
analisarTexto(delimitador = '"') {
|
|
23742
23802
|
while (this.codigo[this.atual] !== delimitador && !this.eFinalDoCodigo()) {
|
|
@@ -23910,7 +23970,7 @@ class MicroLexador {
|
|
|
23910
23970
|
}
|
|
23911
23971
|
exports.MicroLexador = MicroLexador;
|
|
23912
23972
|
|
|
23913
|
-
},{"../tipos-de-simbolos/microgramaticas/delegua":
|
|
23973
|
+
},{"../tipos-de-simbolos/microgramaticas/delegua":220,"./palavras-reservadas":209,"./simbolo":210}],209:[function(require,module,exports){
|
|
23914
23974
|
"use strict";
|
|
23915
23975
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
23916
23976
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -23992,17 +24052,19 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
23992
24052
|
verdadeiro: delegua_1.default.VERDADEIRO,
|
|
23993
24053
|
};
|
|
23994
24054
|
|
|
23995
|
-
},{"../tipos-de-simbolos/delegua":
|
|
24055
|
+
},{"../tipos-de-simbolos/delegua":217}],210:[function(require,module,exports){
|
|
23996
24056
|
"use strict";
|
|
23997
24057
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23998
24058
|
exports.Simbolo = void 0;
|
|
23999
24059
|
class Simbolo {
|
|
24000
|
-
constructor(tipo, lexema, literal, linha, hashArquivo) {
|
|
24060
|
+
constructor(tipo, lexema, literal, linha, hashArquivo, colunaInicio = 0, colunaFim = 0) {
|
|
24001
24061
|
this.tipo = tipo;
|
|
24002
24062
|
this.lexema = lexema;
|
|
24003
24063
|
this.literal = literal;
|
|
24004
24064
|
this.linha = linha;
|
|
24005
24065
|
this.hashArquivo = hashArquivo;
|
|
24066
|
+
this.colunaInicio = colunaInicio;
|
|
24067
|
+
this.colunaFim = colunaFim;
|
|
24006
24068
|
}
|
|
24007
24069
|
paraTexto() {
|
|
24008
24070
|
return this.tipo + ' ' + this.lexema + ' ' + this.literal;
|
|
@@ -24010,7 +24072,7 @@ class Simbolo {
|
|
|
24010
24072
|
}
|
|
24011
24073
|
exports.Simbolo = Simbolo;
|
|
24012
24074
|
|
|
24013
|
-
},{}],
|
|
24075
|
+
},{}],211:[function(require,module,exports){
|
|
24014
24076
|
"use strict";
|
|
24015
24077
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24016
24078
|
exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
|
|
@@ -24035,7 +24097,7 @@ class ContinuarQuebra extends Quebra {
|
|
|
24035
24097
|
}
|
|
24036
24098
|
exports.ContinuarQuebra = ContinuarQuebra;
|
|
24037
24099
|
|
|
24038
|
-
},{}],
|
|
24100
|
+
},{}],212:[function(require,module,exports){
|
|
24039
24101
|
"use strict";
|
|
24040
24102
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24041
24103
|
exports.default = {
|
|
@@ -24069,7 +24131,7 @@ exports.default = {
|
|
|
24069
24131
|
VETOR_TEXTO: 'texto[]',
|
|
24070
24132
|
};
|
|
24071
24133
|
|
|
24072
|
-
},{}],
|
|
24134
|
+
},{}],213:[function(require,module,exports){
|
|
24073
24135
|
"use strict";
|
|
24074
24136
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24075
24137
|
exports.default = {
|
|
@@ -24099,7 +24161,7 @@ exports.default = {
|
|
|
24099
24161
|
VETOR_TEXTO: 'texto[]',
|
|
24100
24162
|
};
|
|
24101
24163
|
|
|
24102
|
-
},{}],
|
|
24164
|
+
},{}],214:[function(require,module,exports){
|
|
24103
24165
|
"use strict";
|
|
24104
24166
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24105
24167
|
exports.default = {
|
|
@@ -24118,7 +24180,7 @@ exports.default = {
|
|
|
24118
24180
|
TEXTO: 'string',
|
|
24119
24181
|
};
|
|
24120
24182
|
|
|
24121
|
-
},{}],
|
|
24183
|
+
},{}],215:[function(require,module,exports){
|
|
24122
24184
|
"use strict";
|
|
24123
24185
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24124
24186
|
exports.default = {
|
|
@@ -24162,7 +24224,7 @@ exports.default = {
|
|
|
24162
24224
|
VIRGULA: 'VIRGULA',
|
|
24163
24225
|
};
|
|
24164
24226
|
|
|
24165
|
-
},{}],
|
|
24227
|
+
},{}],216:[function(require,module,exports){
|
|
24166
24228
|
"use strict";
|
|
24167
24229
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24168
24230
|
exports.default = {
|
|
@@ -24188,7 +24250,7 @@ exports.default = {
|
|
|
24188
24250
|
VIRGULA: 'VIRGULA',
|
|
24189
24251
|
};
|
|
24190
24252
|
|
|
24191
|
-
},{}],
|
|
24253
|
+
},{}],217:[function(require,module,exports){
|
|
24192
24254
|
"use strict";
|
|
24193
24255
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24194
24256
|
exports.default = {
|
|
@@ -24290,7 +24352,7 @@ exports.default = {
|
|
|
24290
24352
|
VIRGULA: 'VIRGULA',
|
|
24291
24353
|
};
|
|
24292
24354
|
|
|
24293
|
-
},{}],
|
|
24355
|
+
},{}],218:[function(require,module,exports){
|
|
24294
24356
|
"use strict";
|
|
24295
24357
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24296
24358
|
exports.default = {
|
|
@@ -24368,7 +24430,7 @@ exports.default = {
|
|
|
24368
24430
|
VIRGULA: 'VIRGULA',
|
|
24369
24431
|
};
|
|
24370
24432
|
|
|
24371
|
-
},{}],
|
|
24433
|
+
},{}],219:[function(require,module,exports){
|
|
24372
24434
|
"use strict";
|
|
24373
24435
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24374
24436
|
exports.default = {
|
|
@@ -24385,7 +24447,7 @@ exports.default = {
|
|
|
24385
24447
|
VIRGULA: 'VIRGULA',
|
|
24386
24448
|
};
|
|
24387
24449
|
|
|
24388
|
-
},{}],
|
|
24450
|
+
},{}],220:[function(require,module,exports){
|
|
24389
24451
|
"use strict";
|
|
24390
24452
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24391
24453
|
exports.default = {
|
|
@@ -24438,7 +24500,7 @@ exports.default = {
|
|
|
24438
24500
|
VIRGULA: 'VIRGULA',
|
|
24439
24501
|
};
|
|
24440
24502
|
|
|
24441
|
-
},{}],
|
|
24503
|
+
},{}],221:[function(require,module,exports){
|
|
24442
24504
|
"use strict";
|
|
24443
24505
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24444
24506
|
exports.default = {
|
|
@@ -24528,7 +24590,7 @@ exports.default = {
|
|
|
24528
24590
|
VIRGULA: 'VIRGULA',
|
|
24529
24591
|
};
|
|
24530
24592
|
|
|
24531
|
-
},{}],
|
|
24593
|
+
},{}],222:[function(require,module,exports){
|
|
24532
24594
|
"use strict";
|
|
24533
24595
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24534
24596
|
exports.default = {
|
|
@@ -24567,7 +24629,7 @@ exports.default = {
|
|
|
24567
24629
|
VIRGULA: 'VIRGULA',
|
|
24568
24630
|
};
|
|
24569
24631
|
|
|
24570
|
-
},{}],
|
|
24632
|
+
},{}],223:[function(require,module,exports){
|
|
24571
24633
|
"use strict";
|
|
24572
24634
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24573
24635
|
exports.default = {
|
|
@@ -24647,7 +24709,7 @@ exports.default = {
|
|
|
24647
24709
|
VIRGULA: 'VIRGULA',
|
|
24648
24710
|
};
|
|
24649
24711
|
|
|
24650
|
-
},{}],
|
|
24712
|
+
},{}],224:[function(require,module,exports){
|
|
24651
24713
|
"use strict";
|
|
24652
24714
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24653
24715
|
// Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
|
|
@@ -24742,7 +24804,7 @@ exports.default = {
|
|
|
24742
24804
|
VIRGULA: 'VIRGULA',
|
|
24743
24805
|
};
|
|
24744
24806
|
|
|
24745
|
-
},{}],
|
|
24807
|
+
},{}],225:[function(require,module,exports){
|
|
24746
24808
|
"use strict";
|
|
24747
24809
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
24748
24810
|
if (k2 === undefined) k2 = k;
|
|
@@ -24773,7 +24835,7 @@ __exportStar(require("./tradutor-reverso-python"), exports);
|
|
|
24773
24835
|
__exportStar(require("./tradutor-reverso-tenda"), exports);
|
|
24774
24836
|
__exportStar(require("./tradutor-ruby"), exports);
|
|
24775
24837
|
|
|
24776
|
-
},{"./tradutor-assembly-arm":
|
|
24838
|
+
},{"./tradutor-assembly-arm":234,"./tradutor-assembly-x64":235,"./tradutor-assemblyscript":236,"./tradutor-calango":237,"./tradutor-elixir":238,"./tradutor-javascript":239,"./tradutor-mermaidjs":240,"./tradutor-portugol-ipt":241,"./tradutor-python":242,"./tradutor-reverso-javascript":243,"./tradutor-reverso-python":244,"./tradutor-reverso-tenda":245,"./tradutor-ruby":246}],226:[function(require,module,exports){
|
|
24777
24839
|
"use strict";
|
|
24778
24840
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24779
24841
|
exports.ArestaFluxograma = void 0;
|
|
@@ -24785,7 +24847,7 @@ class ArestaFluxograma {
|
|
|
24785
24847
|
}
|
|
24786
24848
|
exports.ArestaFluxograma = ArestaFluxograma;
|
|
24787
24849
|
|
|
24788
|
-
},{}],
|
|
24850
|
+
},{}],227:[function(require,module,exports){
|
|
24789
24851
|
"use strict";
|
|
24790
24852
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
24791
24853
|
if (k2 === undefined) k2 = k;
|
|
@@ -24808,7 +24870,7 @@ __exportStar(require("./subgrafo-funcao"), exports);
|
|
|
24808
24870
|
__exportStar(require("./subgrafo-metodo"), exports);
|
|
24809
24871
|
__exportStar(require("./vertice-fluxograma"), exports);
|
|
24810
24872
|
|
|
24811
|
-
},{"./aresta-fluxograma":
|
|
24873
|
+
},{"./aresta-fluxograma":226,"./subgrafo-classe":228,"./subgrafo-funcao":229,"./subgrafo-metodo":230,"./vertice-fluxograma":231}],228:[function(require,module,exports){
|
|
24812
24874
|
"use strict";
|
|
24813
24875
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24814
24876
|
exports.SubgrafoClasse = void 0;
|
|
@@ -24854,7 +24916,7 @@ class SubgrafoClasse {
|
|
|
24854
24916
|
}
|
|
24855
24917
|
exports.SubgrafoClasse = SubgrafoClasse;
|
|
24856
24918
|
|
|
24857
|
-
},{}],
|
|
24919
|
+
},{}],229:[function(require,module,exports){
|
|
24858
24920
|
"use strict";
|
|
24859
24921
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24860
24922
|
exports.SubgrafoFuncao = void 0;
|
|
@@ -24869,7 +24931,7 @@ class SubgrafoFuncao {
|
|
|
24869
24931
|
}
|
|
24870
24932
|
exports.SubgrafoFuncao = SubgrafoFuncao;
|
|
24871
24933
|
|
|
24872
|
-
},{}],
|
|
24934
|
+
},{}],230:[function(require,module,exports){
|
|
24873
24935
|
"use strict";
|
|
24874
24936
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24875
24937
|
exports.SubgrafoMetodo = void 0;
|
|
@@ -24886,7 +24948,7 @@ class SubgrafoMetodo {
|
|
|
24886
24948
|
}
|
|
24887
24949
|
exports.SubgrafoMetodo = SubgrafoMetodo;
|
|
24888
24950
|
|
|
24889
|
-
},{}],
|
|
24951
|
+
},{}],231:[function(require,module,exports){
|
|
24890
24952
|
"use strict";
|
|
24891
24953
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24892
24954
|
exports.VerticeFluxograma = void 0;
|
|
@@ -24903,7 +24965,7 @@ class VerticeFluxograma {
|
|
|
24903
24965
|
}
|
|
24904
24966
|
exports.VerticeFluxograma = VerticeFluxograma;
|
|
24905
24967
|
|
|
24906
|
-
},{}],
|
|
24968
|
+
},{}],232:[function(require,module,exports){
|
|
24907
24969
|
"use strict";
|
|
24908
24970
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
24909
24971
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -26143,7 +26205,7 @@ __decorate([
|
|
|
26143
26205
|
Decorators_1.Override
|
|
26144
26206
|
], Python3Lexer.prototype, "nextToken", null);
|
|
26145
26207
|
|
|
26146
|
-
},{"./python3-parser":
|
|
26208
|
+
},{"./python3-parser":233,"antlr4ts/CommonToken":256,"antlr4ts/Decorators":260,"antlr4ts/Lexer":268,"antlr4ts/Token":285,"antlr4ts/VocabularyImpl":291,"antlr4ts/atn/ATNDeserializer":297,"antlr4ts/atn/LexerATNSimulator":318,"antlr4ts/misc/Utils":379}],233:[function(require,module,exports){
|
|
26147
26209
|
"use strict";
|
|
26148
26210
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
26149
26211
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -37390,7 +37452,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
37390
37452
|
}
|
|
37391
37453
|
exports.Yield_argContext = Yield_argContext;
|
|
37392
37454
|
|
|
37393
|
-
},{"antlr4ts/FailedPredicateException":
|
|
37455
|
+
},{"antlr4ts/FailedPredicateException":264,"antlr4ts/NoViableAltException":272,"antlr4ts/Parser":273,"antlr4ts/ParserRuleContext":276,"antlr4ts/RecognitionException":279,"antlr4ts/Token":285,"antlr4ts/VocabularyImpl":291,"antlr4ts/atn/ATN":293,"antlr4ts/atn/ATNDeserializer":297,"antlr4ts/atn/ParserATNSimulator":334,"antlr4ts/misc/Utils":379}],234:[function(require,module,exports){
|
|
37394
37456
|
"use strict";
|
|
37395
37457
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37396
37458
|
exports.TradutorAssemblyARM = void 0;
|
|
@@ -38106,7 +38168,7 @@ ${labelFim}:`;
|
|
|
38106
38168
|
}
|
|
38107
38169
|
exports.TradutorAssemblyARM = TradutorAssemblyARM;
|
|
38108
38170
|
|
|
38109
|
-
},{"../construtos":62,"../declaracoes":109}],
|
|
38171
|
+
},{"../construtos":62,"../declaracoes":109}],235:[function(require,module,exports){
|
|
38110
38172
|
"use strict";
|
|
38111
38173
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38112
38174
|
exports.TradutorAssemblyX64 = void 0;
|
|
@@ -38774,7 +38836,7 @@ ${labelFim}:`;
|
|
|
38774
38836
|
}
|
|
38775
38837
|
exports.TradutorAssemblyX64 = TradutorAssemblyX64;
|
|
38776
38838
|
|
|
38777
|
-
},{"../construtos":62,"../declaracoes":109}],
|
|
38839
|
+
},{"../construtos":62,"../declaracoes":109}],236:[function(require,module,exports){
|
|
38778
38840
|
"use strict";
|
|
38779
38841
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
38780
38842
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -39409,7 +39471,7 @@ class TradutorAssemblyScript {
|
|
|
39409
39471
|
}
|
|
39410
39472
|
exports.TradutorAssemblyScript = TradutorAssemblyScript;
|
|
39411
39473
|
|
|
39412
|
-
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":
|
|
39474
|
+
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":217}],237:[function(require,module,exports){
|
|
39413
39475
|
"use strict";
|
|
39414
39476
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39415
39477
|
exports.TradutorCalango = void 0;
|
|
@@ -39464,7 +39526,7 @@ class TradutorCalango {
|
|
|
39464
39526
|
}
|
|
39465
39527
|
exports.TradutorCalango = TradutorCalango;
|
|
39466
39528
|
|
|
39467
|
-
},{}],
|
|
39529
|
+
},{}],238:[function(require,module,exports){
|
|
39468
39530
|
"use strict";
|
|
39469
39531
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
39470
39532
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -40391,7 +40453,7 @@ class TradutorElixir {
|
|
|
40391
40453
|
}
|
|
40392
40454
|
exports.TradutorElixir = TradutorElixir;
|
|
40393
40455
|
|
|
40394
|
-
},{"../tipos-de-simbolos/delegua":
|
|
40456
|
+
},{"../tipos-de-simbolos/delegua":217}],239:[function(require,module,exports){
|
|
40395
40457
|
"use strict";
|
|
40396
40458
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
40397
40459
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -41151,7 +41213,7 @@ class TradutorJavaScript {
|
|
|
41151
41213
|
}
|
|
41152
41214
|
exports.TradutorJavaScript = TradutorJavaScript;
|
|
41153
41215
|
|
|
41154
|
-
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":
|
|
41216
|
+
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":217}],240:[function(require,module,exports){
|
|
41155
41217
|
"use strict";
|
|
41156
41218
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
41157
41219
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -41979,7 +42041,7 @@ class TradutorMermaidJs {
|
|
|
41979
42041
|
}
|
|
41980
42042
|
exports.TradutorMermaidJs = TradutorMermaidJs;
|
|
41981
42043
|
|
|
41982
|
-
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":
|
|
42044
|
+
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":217,"./mermaid":227}],241:[function(require,module,exports){
|
|
41983
42045
|
"use strict";
|
|
41984
42046
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
41985
42047
|
exports.TradutorPortugolIpt = void 0;
|
|
@@ -42041,7 +42103,7 @@ class TradutorPortugolIpt {
|
|
|
42041
42103
|
}
|
|
42042
42104
|
exports.TradutorPortugolIpt = TradutorPortugolIpt;
|
|
42043
42105
|
|
|
42044
|
-
},{"../avaliador-sintatico/dialetos":17,"../lexador/dialetos":
|
|
42106
|
+
},{"../avaliador-sintatico/dialetos":17,"../lexador/dialetos":187}],242:[function(require,module,exports){
|
|
42045
42107
|
"use strict";
|
|
42046
42108
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
42047
42109
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -42727,7 +42789,7 @@ class TradutorPython {
|
|
|
42727
42789
|
}
|
|
42728
42790
|
exports.TradutorPython = TradutorPython;
|
|
42729
42791
|
|
|
42730
|
-
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":
|
|
42792
|
+
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":217}],243:[function(require,module,exports){
|
|
42731
42793
|
"use strict";
|
|
42732
42794
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
42733
42795
|
exports.TradutorReversoJavaScript = void 0;
|
|
@@ -43122,7 +43184,7 @@ class TradutorReversoJavaScript {
|
|
|
43122
43184
|
}
|
|
43123
43185
|
exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
|
|
43124
43186
|
|
|
43125
|
-
},{}],
|
|
43187
|
+
},{}],244:[function(require,module,exports){
|
|
43126
43188
|
"use strict";
|
|
43127
43189
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
43128
43190
|
exports.TradutorReversoPython = void 0;
|
|
@@ -43195,7 +43257,7 @@ class TradutorReversoPython {
|
|
|
43195
43257
|
}
|
|
43196
43258
|
exports.TradutorReversoPython = TradutorReversoPython;
|
|
43197
43259
|
|
|
43198
|
-
},{"./python/python3-lexer":
|
|
43260
|
+
},{"./python/python3-lexer":232,"./python/python3-parser":233,"antlr4ts":362,"antlr4ts/tree/ParseTreeWalker":381}],245:[function(require,module,exports){
|
|
43199
43261
|
"use strict";
|
|
43200
43262
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
43201
43263
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -43789,7 +43851,7 @@ class TradutorReversoTenda {
|
|
|
43789
43851
|
}
|
|
43790
43852
|
exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
43791
43853
|
|
|
43792
|
-
},{"../construtos":62,"../tipos-de-simbolos/tenda":
|
|
43854
|
+
},{"../construtos":62,"../tipos-de-simbolos/tenda":224}],246:[function(require,module,exports){
|
|
43793
43855
|
"use strict";
|
|
43794
43856
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
43795
43857
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -44477,7 +44539,7 @@ class TradutorRuby {
|
|
|
44477
44539
|
}
|
|
44478
44540
|
exports.TradutorRuby = TradutorRuby;
|
|
44479
44541
|
|
|
44480
|
-
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":
|
|
44542
|
+
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":217}],247:[function(require,module,exports){
|
|
44481
44543
|
"use strict";
|
|
44482
44544
|
/*!
|
|
44483
44545
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44485,7 +44547,7 @@ exports.TradutorRuby = TradutorRuby;
|
|
|
44485
44547
|
*/
|
|
44486
44548
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44487
44549
|
|
|
44488
|
-
},{}],
|
|
44550
|
+
},{}],248:[function(require,module,exports){
|
|
44489
44551
|
"use strict";
|
|
44490
44552
|
/*!
|
|
44491
44553
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44493,7 +44555,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
44493
44555
|
*/
|
|
44494
44556
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44495
44557
|
|
|
44496
|
-
},{}],
|
|
44558
|
+
},{}],249:[function(require,module,exports){
|
|
44497
44559
|
"use strict";
|
|
44498
44560
|
/*!
|
|
44499
44561
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44655,7 +44717,7 @@ __decorate([
|
|
|
44655
44717
|
], ANTLRInputStream.prototype, "toString", null);
|
|
44656
44718
|
exports.ANTLRInputStream = ANTLRInputStream;
|
|
44657
44719
|
|
|
44658
|
-
},{"./Decorators":
|
|
44720
|
+
},{"./Decorators":260,"./IntStream":266,"assert":403}],250:[function(require,module,exports){
|
|
44659
44721
|
"use strict";
|
|
44660
44722
|
/*!
|
|
44661
44723
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44738,7 +44800,7 @@ __decorate([
|
|
|
44738
44800
|
], BailErrorStrategy.prototype, "sync", null);
|
|
44739
44801
|
exports.BailErrorStrategy = BailErrorStrategy;
|
|
44740
44802
|
|
|
44741
|
-
},{"./Decorators":
|
|
44803
|
+
},{"./Decorators":260,"./DefaultErrorStrategy":261,"./InputMismatchException":265,"./misc/ParseCancellationException":377}],251:[function(require,module,exports){
|
|
44742
44804
|
"use strict";
|
|
44743
44805
|
/*!
|
|
44744
44806
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45228,7 +45290,7 @@ BufferedTokenStream = __decorate([
|
|
|
45228
45290
|
], BufferedTokenStream);
|
|
45229
45291
|
exports.BufferedTokenStream = BufferedTokenStream;
|
|
45230
45292
|
|
|
45231
|
-
},{"./CommonToken":
|
|
45293
|
+
},{"./CommonToken":256,"./Decorators":260,"./Lexer":268,"./Token":285,"./misc/Interval":372,"assert":403}],252:[function(require,module,exports){
|
|
45232
45294
|
"use strict";
|
|
45233
45295
|
/*!
|
|
45234
45296
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45236,7 +45298,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
|
|
|
45236
45298
|
*/
|
|
45237
45299
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
45238
45300
|
|
|
45239
|
-
},{}],
|
|
45301
|
+
},{}],253:[function(require,module,exports){
|
|
45240
45302
|
"use strict";
|
|
45241
45303
|
/*!
|
|
45242
45304
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45370,7 +45432,7 @@ var CharStreams;
|
|
|
45370
45432
|
// }
|
|
45371
45433
|
})(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
|
|
45372
45434
|
|
|
45373
|
-
},{"./CodePointBuffer":
|
|
45435
|
+
},{"./CodePointBuffer":254,"./CodePointCharStream":255,"./IntStream":266}],254:[function(require,module,exports){
|
|
45374
45436
|
"use strict";
|
|
45375
45437
|
/*!
|
|
45376
45438
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45605,7 +45667,7 @@ exports.CodePointBuffer = CodePointBuffer;
|
|
|
45605
45667
|
CodePointBuffer.Builder = Builder;
|
|
45606
45668
|
})(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
|
|
45607
45669
|
|
|
45608
|
-
},{"./misc/Character":
|
|
45670
|
+
},{"./misc/Character":368,"assert":403}],255:[function(require,module,exports){
|
|
45609
45671
|
"use strict";
|
|
45610
45672
|
/*!
|
|
45611
45673
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45755,7 +45817,7 @@ __decorate([
|
|
|
45755
45817
|
], CodePointCharStream.prototype, "getText", null);
|
|
45756
45818
|
exports.CodePointCharStream = CodePointCharStream;
|
|
45757
45819
|
|
|
45758
|
-
},{"./Decorators":
|
|
45820
|
+
},{"./Decorators":260,"./IntStream":266,"./misc/Interval":372,"assert":403}],256:[function(require,module,exports){
|
|
45759
45821
|
"use strict";
|
|
45760
45822
|
/*!
|
|
45761
45823
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45985,7 +46047,7 @@ CommonToken = __decorate([
|
|
|
45985
46047
|
], CommonToken);
|
|
45986
46048
|
exports.CommonToken = CommonToken;
|
|
45987
46049
|
|
|
45988
|
-
},{"./Decorators":
|
|
46050
|
+
},{"./Decorators":260,"./Token":285,"./misc/Interval":372}],257:[function(require,module,exports){
|
|
45989
46051
|
"use strict";
|
|
45990
46052
|
/*!
|
|
45991
46053
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46049,7 +46111,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
|
|
|
46049
46111
|
CommonTokenFactory.DEFAULT = new CommonTokenFactory();
|
|
46050
46112
|
})(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
|
|
46051
46113
|
|
|
46052
|
-
},{"./CommonToken":
|
|
46114
|
+
},{"./CommonToken":256,"./Decorators":260,"./misc/Interval":372}],258:[function(require,module,exports){
|
|
46053
46115
|
"use strict";
|
|
46054
46116
|
/*!
|
|
46055
46117
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46176,7 +46238,7 @@ CommonTokenStream = __decorate([
|
|
|
46176
46238
|
], CommonTokenStream);
|
|
46177
46239
|
exports.CommonTokenStream = CommonTokenStream;
|
|
46178
46240
|
|
|
46179
|
-
},{"./BufferedTokenStream":
|
|
46241
|
+
},{"./BufferedTokenStream":251,"./Decorators":260,"./Token":285}],259:[function(require,module,exports){
|
|
46180
46242
|
"use strict";
|
|
46181
46243
|
/*!
|
|
46182
46244
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46210,7 +46272,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
|
|
|
46210
46272
|
*/
|
|
46211
46273
|
ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
|
|
46212
46274
|
|
|
46213
|
-
},{}],
|
|
46275
|
+
},{}],260:[function(require,module,exports){
|
|
46214
46276
|
"use strict";
|
|
46215
46277
|
/*!
|
|
46216
46278
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46237,7 +46299,7 @@ function SuppressWarnings(options) {
|
|
|
46237
46299
|
}
|
|
46238
46300
|
exports.SuppressWarnings = SuppressWarnings;
|
|
46239
46301
|
|
|
46240
|
-
},{}],
|
|
46302
|
+
},{}],261:[function(require,module,exports){
|
|
46241
46303
|
"use strict";
|
|
46242
46304
|
/*!
|
|
46243
46305
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47051,7 +47113,7 @@ __decorate([
|
|
|
47051
47113
|
], DefaultErrorStrategy.prototype, "consumeUntil", null);
|
|
47052
47114
|
exports.DefaultErrorStrategy = DefaultErrorStrategy;
|
|
47053
47115
|
|
|
47054
|
-
},{"./Decorators":
|
|
47116
|
+
},{"./Decorators":260,"./FailedPredicateException":264,"./InputMismatchException":265,"./NoViableAltException":272,"./Token":285,"./atn/ATNState":299,"./atn/ATNStateType":300,"./atn/PredictionContext":340,"./misc/IntervalSet":373}],262:[function(require,module,exports){
|
|
47055
47117
|
"use strict";
|
|
47056
47118
|
/*!
|
|
47057
47119
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47127,7 +47189,7 @@ var Dependents;
|
|
|
47127
47189
|
Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
|
|
47128
47190
|
})(Dependents = exports.Dependents || (exports.Dependents = {}));
|
|
47129
47191
|
|
|
47130
|
-
},{}],
|
|
47192
|
+
},{}],263:[function(require,module,exports){
|
|
47131
47193
|
"use strict";
|
|
47132
47194
|
/*!
|
|
47133
47195
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47275,7 +47337,7 @@ __decorate([
|
|
|
47275
47337
|
], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
|
|
47276
47338
|
exports.DiagnosticErrorListener = DiagnosticErrorListener;
|
|
47277
47339
|
|
|
47278
|
-
},{"./Decorators":
|
|
47340
|
+
},{"./Decorators":260,"./misc/BitSet":367,"./misc/Interval":372}],264:[function(require,module,exports){
|
|
47279
47341
|
"use strict";
|
|
47280
47342
|
/*!
|
|
47281
47343
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47340,7 +47402,7 @@ FailedPredicateException = __decorate([
|
|
|
47340
47402
|
], FailedPredicateException);
|
|
47341
47403
|
exports.FailedPredicateException = FailedPredicateException;
|
|
47342
47404
|
|
|
47343
|
-
},{"./Decorators":
|
|
47405
|
+
},{"./Decorators":260,"./RecognitionException":279,"./atn/PredicateTransition":339}],265:[function(require,module,exports){
|
|
47344
47406
|
"use strict";
|
|
47345
47407
|
/*!
|
|
47346
47408
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47380,7 +47442,7 @@ InputMismatchException = __decorate([
|
|
|
47380
47442
|
], InputMismatchException);
|
|
47381
47443
|
exports.InputMismatchException = InputMismatchException;
|
|
47382
47444
|
|
|
47383
|
-
},{"./Decorators":
|
|
47445
|
+
},{"./Decorators":260,"./RecognitionException":279}],266:[function(require,module,exports){
|
|
47384
47446
|
"use strict";
|
|
47385
47447
|
/*!
|
|
47386
47448
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47403,7 +47465,7 @@ var IntStream;
|
|
|
47403
47465
|
IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
|
|
47404
47466
|
})(IntStream = exports.IntStream || (exports.IntStream = {}));
|
|
47405
47467
|
|
|
47406
|
-
},{}],
|
|
47468
|
+
},{}],267:[function(require,module,exports){
|
|
47407
47469
|
"use strict";
|
|
47408
47470
|
/*!
|
|
47409
47471
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47450,7 +47512,7 @@ __decorate([
|
|
|
47450
47512
|
], InterpreterRuleContext.prototype, "ruleIndex", null);
|
|
47451
47513
|
exports.InterpreterRuleContext = InterpreterRuleContext;
|
|
47452
47514
|
|
|
47453
|
-
},{"./Decorators":
|
|
47515
|
+
},{"./Decorators":260,"./ParserRuleContext":276}],268:[function(require,module,exports){
|
|
47454
47516
|
"use strict";
|
|
47455
47517
|
/*!
|
|
47456
47518
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47786,7 +47848,7 @@ __decorate([
|
|
|
47786
47848
|
], Lexer.prototype, "charPositionInLine", null);
|
|
47787
47849
|
exports.Lexer = Lexer;
|
|
47788
47850
|
|
|
47789
|
-
},{"./CommonTokenFactory":
|
|
47851
|
+
},{"./CommonTokenFactory":257,"./Decorators":260,"./IntStream":266,"./LexerNoViableAltException":270,"./Recognizer":280,"./Token":285,"./atn/LexerATNSimulator":318,"./misc/IntegerStack":371,"./misc/Interval":372}],269:[function(require,module,exports){
|
|
47790
47852
|
"use strict";
|
|
47791
47853
|
/*!
|
|
47792
47854
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47866,7 +47928,7 @@ LexerInterpreter = __decorate([
|
|
|
47866
47928
|
], LexerInterpreter);
|
|
47867
47929
|
exports.LexerInterpreter = LexerInterpreter;
|
|
47868
47930
|
|
|
47869
|
-
},{"./Decorators":
|
|
47931
|
+
},{"./Decorators":260,"./Lexer":268,"./atn/LexerATNSimulator":318}],270:[function(require,module,exports){
|
|
47870
47932
|
"use strict";
|
|
47871
47933
|
/*!
|
|
47872
47934
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47923,7 +47985,7 @@ LexerNoViableAltException = __decorate([
|
|
|
47923
47985
|
], LexerNoViableAltException);
|
|
47924
47986
|
exports.LexerNoViableAltException = LexerNoViableAltException;
|
|
47925
47987
|
|
|
47926
|
-
},{"./Decorators":
|
|
47988
|
+
},{"./Decorators":260,"./RecognitionException":279,"./misc/Interval":372,"./misc/Utils":379}],271:[function(require,module,exports){
|
|
47927
47989
|
"use strict";
|
|
47928
47990
|
/*!
|
|
47929
47991
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48133,7 +48195,7 @@ ListTokenSource = __decorate([
|
|
|
48133
48195
|
], ListTokenSource);
|
|
48134
48196
|
exports.ListTokenSource = ListTokenSource;
|
|
48135
48197
|
|
|
48136
|
-
},{"./CommonTokenFactory":
|
|
48198
|
+
},{"./CommonTokenFactory":257,"./Decorators":260,"./Token":285}],272:[function(require,module,exports){
|
|
48137
48199
|
"use strict";
|
|
48138
48200
|
/*!
|
|
48139
48201
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48188,7 +48250,7 @@ __decorate([
|
|
|
48188
48250
|
], NoViableAltException.prototype, "_startToken", void 0);
|
|
48189
48251
|
exports.NoViableAltException = NoViableAltException;
|
|
48190
48252
|
|
|
48191
|
-
},{"./Decorators":
|
|
48253
|
+
},{"./Decorators":260,"./Parser":273,"./RecognitionException":279}],273:[function(require,module,exports){
|
|
48192
48254
|
(function (process){(function (){
|
|
48193
48255
|
"use strict";
|
|
48194
48256
|
/*!
|
|
@@ -49034,7 +49096,7 @@ __decorate([
|
|
|
49034
49096
|
exports.Parser = Parser;
|
|
49035
49097
|
|
|
49036
49098
|
}).call(this)}).call(this,require('_process'))
|
|
49037
|
-
},{"./Decorators":
|
|
49099
|
+
},{"./Decorators":260,"./DefaultErrorStrategy":261,"./Lexer":268,"./ProxyParserErrorListener":278,"./Recognizer":280,"./Token":285,"./atn/ATNDeserializationOptions":296,"./atn/ATNDeserializer":297,"./atn/ParseInfo":333,"./atn/ParserATNSimulator":334,"./atn/ProfilingATNSimulator":343,"./misc/IntegerStack":371,"./misc/Utils":379,"./tree/ErrorNode":380,"./tree/TerminalNode":383,"./tree/pattern/ParseTreePatternMatcher":388,"_process":462}],274:[function(require,module,exports){
|
|
49038
49100
|
"use strict";
|
|
49039
49101
|
/*!
|
|
49040
49102
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49042,7 +49104,7 @@ exports.Parser = Parser;
|
|
|
49042
49104
|
*/
|
|
49043
49105
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49044
49106
|
|
|
49045
|
-
},{}],
|
|
49107
|
+
},{}],275:[function(require,module,exports){
|
|
49046
49108
|
"use strict";
|
|
49047
49109
|
/*!
|
|
49048
49110
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49450,7 +49512,7 @@ ParserInterpreter = __decorate([
|
|
|
49450
49512
|
], ParserInterpreter);
|
|
49451
49513
|
exports.ParserInterpreter = ParserInterpreter;
|
|
49452
49514
|
|
|
49453
|
-
},{"./Decorators":
|
|
49515
|
+
},{"./Decorators":260,"./FailedPredicateException":264,"./InputMismatchException":265,"./InterpreterRuleContext":267,"./Parser":273,"./RecognitionException":279,"./Token":285,"./atn/ATNState":299,"./atn/ATNStateType":300,"./atn/LoopEndState":330,"./atn/ParserATNSimulator":334,"./atn/StarLoopEntryState":352,"./misc/BitSet":367}],276:[function(require,module,exports){
|
|
49454
49516
|
"use strict";
|
|
49455
49517
|
/*!
|
|
49456
49518
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49751,7 +49813,7 @@ __decorate([
|
|
|
49751
49813
|
], ParserRuleContext.prototype, "sourceInterval", null);
|
|
49752
49814
|
exports.ParserRuleContext = ParserRuleContext;
|
|
49753
49815
|
|
|
49754
|
-
},{"./Decorators":
|
|
49816
|
+
},{"./Decorators":260,"./RuleContext":281,"./misc/Interval":372,"./tree/ErrorNode":380,"./tree/TerminalNode":383}],277:[function(require,module,exports){
|
|
49755
49817
|
"use strict";
|
|
49756
49818
|
/*!
|
|
49757
49819
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49801,7 +49863,7 @@ __decorate([
|
|
|
49801
49863
|
], ProxyErrorListener.prototype, "syntaxError", null);
|
|
49802
49864
|
exports.ProxyErrorListener = ProxyErrorListener;
|
|
49803
49865
|
|
|
49804
|
-
},{"./Decorators":
|
|
49866
|
+
},{"./Decorators":260}],278:[function(require,module,exports){
|
|
49805
49867
|
"use strict";
|
|
49806
49868
|
/*!
|
|
49807
49869
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49860,7 +49922,7 @@ __decorate([
|
|
|
49860
49922
|
], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
|
|
49861
49923
|
exports.ProxyParserErrorListener = ProxyParserErrorListener;
|
|
49862
49924
|
|
|
49863
|
-
},{"./Decorators":
|
|
49925
|
+
},{"./Decorators":260,"./ProxyErrorListener":277}],279:[function(require,module,exports){
|
|
49864
49926
|
"use strict";
|
|
49865
49927
|
/*!
|
|
49866
49928
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49965,7 +50027,7 @@ class RecognitionException extends Error {
|
|
|
49965
50027
|
}
|
|
49966
50028
|
exports.RecognitionException = RecognitionException;
|
|
49967
50029
|
|
|
49968
|
-
},{}],
|
|
50030
|
+
},{}],280:[function(require,module,exports){
|
|
49969
50031
|
"use strict";
|
|
49970
50032
|
/*!
|
|
49971
50033
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50184,7 +50246,7 @@ __decorate([
|
|
|
50184
50246
|
], Recognizer.prototype, "getErrorListeners", null);
|
|
50185
50247
|
exports.Recognizer = Recognizer;
|
|
50186
50248
|
|
|
50187
|
-
},{"./ConsoleErrorListener":
|
|
50249
|
+
},{"./ConsoleErrorListener":259,"./Decorators":260,"./ProxyErrorListener":277,"./Token":285,"./misc/Utils":379}],281:[function(require,module,exports){
|
|
50188
50250
|
"use strict";
|
|
50189
50251
|
/*!
|
|
50190
50252
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50401,7 +50463,7 @@ __decorate([
|
|
|
50401
50463
|
], RuleContext.prototype, "toStringTree", null);
|
|
50402
50464
|
exports.RuleContext = RuleContext;
|
|
50403
50465
|
|
|
50404
|
-
},{"./Decorators":
|
|
50466
|
+
},{"./Decorators":260,"./ParserRuleContext":276,"./Recognizer":280,"./atn/ATN":293,"./misc/Interval":372,"./tree/RuleNode":382,"./tree/Trees":384}],282:[function(require,module,exports){
|
|
50405
50467
|
"use strict";
|
|
50406
50468
|
/*!
|
|
50407
50469
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50452,7 +50514,7 @@ __decorate([
|
|
|
50452
50514
|
], RuleContextWithAltNum.prototype, "altNumber", null);
|
|
50453
50515
|
exports.RuleContextWithAltNum = RuleContextWithAltNum;
|
|
50454
50516
|
|
|
50455
|
-
},{"./Decorators":
|
|
50517
|
+
},{"./Decorators":260,"./ParserRuleContext":276,"./atn/ATN":293}],283:[function(require,module,exports){
|
|
50456
50518
|
"use strict";
|
|
50457
50519
|
/*!
|
|
50458
50520
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50475,7 +50537,7 @@ function RuleDependency(dependency) {
|
|
|
50475
50537
|
}
|
|
50476
50538
|
exports.RuleDependency = RuleDependency;
|
|
50477
50539
|
|
|
50478
|
-
},{}],
|
|
50540
|
+
},{}],284:[function(require,module,exports){
|
|
50479
50541
|
"use strict";
|
|
50480
50542
|
/*!
|
|
50481
50543
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50494,7 +50556,7 @@ function RuleVersion(version) {
|
|
|
50494
50556
|
}
|
|
50495
50557
|
exports.RuleVersion = RuleVersion;
|
|
50496
50558
|
|
|
50497
|
-
},{}],
|
|
50559
|
+
},{}],285:[function(require,module,exports){
|
|
50498
50560
|
"use strict";
|
|
50499
50561
|
/*!
|
|
50500
50562
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50534,7 +50596,7 @@ var Token;
|
|
|
50534
50596
|
Token.MIN_USER_CHANNEL_VALUE = 2;
|
|
50535
50597
|
})(Token = exports.Token || (exports.Token = {}));
|
|
50536
50598
|
|
|
50537
|
-
},{"./IntStream":
|
|
50599
|
+
},{"./IntStream":266}],286:[function(require,module,exports){
|
|
50538
50600
|
"use strict";
|
|
50539
50601
|
/*!
|
|
50540
50602
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50542,7 +50604,7 @@ var Token;
|
|
|
50542
50604
|
*/
|
|
50543
50605
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50544
50606
|
|
|
50545
|
-
},{}],
|
|
50607
|
+
},{}],287:[function(require,module,exports){
|
|
50546
50608
|
"use strict";
|
|
50547
50609
|
/*!
|
|
50548
50610
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50550,7 +50612,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
50550
50612
|
*/
|
|
50551
50613
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50552
50614
|
|
|
50553
|
-
},{}],
|
|
50615
|
+
},{}],288:[function(require,module,exports){
|
|
50554
50616
|
"use strict";
|
|
50555
50617
|
/*!
|
|
50556
50618
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50558,7 +50620,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
50558
50620
|
*/
|
|
50559
50621
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50560
50622
|
|
|
50561
|
-
},{}],
|
|
50623
|
+
},{}],289:[function(require,module,exports){
|
|
50562
50624
|
"use strict";
|
|
50563
50625
|
/*!
|
|
50564
50626
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51066,7 +51128,7 @@ __decorate([
|
|
|
51066
51128
|
Decorators_1.Override
|
|
51067
51129
|
], ReplaceOp.prototype, "toString", null);
|
|
51068
51130
|
|
|
51069
|
-
},{"./Decorators":
|
|
51131
|
+
},{"./Decorators":260,"./Token":285,"./misc/Interval":372}],290:[function(require,module,exports){
|
|
51070
51132
|
"use strict";
|
|
51071
51133
|
/*!
|
|
51072
51134
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51074,7 +51136,7 @@ __decorate([
|
|
|
51074
51136
|
*/
|
|
51075
51137
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51076
51138
|
|
|
51077
|
-
},{}],
|
|
51139
|
+
},{}],291:[function(require,module,exports){
|
|
51078
51140
|
"use strict";
|
|
51079
51141
|
/*!
|
|
51080
51142
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51194,7 +51256,7 @@ __decorate([
|
|
|
51194
51256
|
], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
|
|
51195
51257
|
exports.VocabularyImpl = VocabularyImpl;
|
|
51196
51258
|
|
|
51197
|
-
},{"./Decorators":
|
|
51259
|
+
},{"./Decorators":260,"./Token":285}],292:[function(require,module,exports){
|
|
51198
51260
|
"use strict";
|
|
51199
51261
|
/*!
|
|
51200
51262
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51202,7 +51264,7 @@ exports.VocabularyImpl = VocabularyImpl;
|
|
|
51202
51264
|
*/
|
|
51203
51265
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51204
51266
|
|
|
51205
|
-
},{}],
|
|
51267
|
+
},{}],293:[function(require,module,exports){
|
|
51206
51268
|
"use strict";
|
|
51207
51269
|
/*!
|
|
51208
51270
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51424,7 +51486,7 @@ exports.ATN = ATN;
|
|
|
51424
51486
|
})(ATN = exports.ATN || (exports.ATN = {}));
|
|
51425
51487
|
exports.ATN = ATN;
|
|
51426
51488
|
|
|
51427
|
-
},{"../Decorators":
|
|
51489
|
+
},{"../Decorators":260,"../Token":285,"../dfa/DFA":358,"../misc/Array2DHashMap":363,"../misc/IntervalSet":373,"../misc/ObjectEqualityComparator":376,"./InvalidState":316,"./LL1Analyzer":317,"./PredictionContext":340,"assert":403}],294:[function(require,module,exports){
|
|
51428
51490
|
"use strict";
|
|
51429
51491
|
/*!
|
|
51430
51492
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51949,7 +52011,7 @@ ActionSemanticContextATNConfig = __decorate([
|
|
|
51949
52011
|
__param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
|
|
51950
52012
|
], ActionSemanticContextATNConfig);
|
|
51951
52013
|
|
|
51952
|
-
},{"../Decorators":
|
|
52014
|
+
},{"../Decorators":260,"../misc/Array2DHashMap":363,"../misc/MurmurHash":375,"../misc/ObjectEqualityComparator":376,"./DecisionState":313,"./PredictionContext":340,"./SemanticContext":348,"assert":403}],295:[function(require,module,exports){
|
|
51953
52015
|
"use strict";
|
|
51954
52016
|
/*!
|
|
51955
52017
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52396,7 +52458,7 @@ __decorate([
|
|
|
52396
52458
|
], ATNConfigSet.prototype, "hashCode", null);
|
|
52397
52459
|
exports.ATNConfigSet = ATNConfigSet;
|
|
52398
52460
|
|
|
52399
|
-
},{"../Decorators":
|
|
52461
|
+
},{"../Decorators":260,"../misc/Array2DHashMap":363,"../misc/Array2DHashSet":364,"../misc/ArrayEqualityComparator":365,"../misc/BitSet":367,"../misc/ObjectEqualityComparator":376,"../misc/Utils":379,"./ATN":293,"./ATNConfig":294,"./PredictionContext":340,"./PredictionContextCache":341,"./SemanticContext":348,"assert":403}],296:[function(require,module,exports){
|
|
52400
52462
|
"use strict";
|
|
52401
52463
|
/*!
|
|
52402
52464
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52475,7 +52537,7 @@ __decorate([
|
|
|
52475
52537
|
], ATNDeserializationOptions, "defaultOptions", null);
|
|
52476
52538
|
exports.ATNDeserializationOptions = ATNDeserializationOptions;
|
|
52477
52539
|
|
|
52478
|
-
},{"../Decorators":
|
|
52540
|
+
},{"../Decorators":260}],297:[function(require,module,exports){
|
|
52479
52541
|
"use strict";
|
|
52480
52542
|
/*!
|
|
52481
52543
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53562,7 +53624,7 @@ __decorate([
|
|
|
53562
53624
|
], ATNDeserializer.prototype, "edgeFactory", null);
|
|
53563
53625
|
exports.ATNDeserializer = ATNDeserializer;
|
|
53564
53626
|
|
|
53565
|
-
},{"../Decorators":
|
|
53627
|
+
},{"../Decorators":260,"../Token":285,"../dfa/DFA":358,"../misc/Array2DHashSet":364,"../misc/BitSet":367,"../misc/IntervalSet":373,"../misc/UUID":378,"./ATN":293,"./ATNDeserializationOptions":296,"./ATNStateType":300,"./ActionTransition":302,"./AtomTransition":304,"./BasicBlockStartState":305,"./BasicState":306,"./BlockEndState":307,"./BlockStartState":308,"./DecisionState":313,"./EpsilonTransition":314,"./InvalidState":316,"./LexerChannelAction":320,"./LexerCustomAction":321,"./LexerModeAction":323,"./LexerMoreAction":324,"./LexerPopModeAction":325,"./LexerPushModeAction":326,"./LexerSkipAction":327,"./LexerTypeAction":328,"./LoopEndState":330,"./NotSetTransition":331,"./ParserATNSimulator":334,"./PlusBlockStartState":335,"./PlusLoopbackState":336,"./PrecedencePredicateTransition":337,"./PredicateTransition":339,"./RangeTransition":344,"./RuleStartState":345,"./RuleStopState":346,"./RuleTransition":347,"./SetTransition":349,"./StarBlockStartState":351,"./StarLoopEntryState":352,"./StarLoopbackState":353,"./TokensStartState":354,"./WildcardTransition":356}],298:[function(require,module,exports){
|
|
53566
53628
|
"use strict";
|
|
53567
53629
|
/*!
|
|
53568
53630
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53626,7 +53688,7 @@ exports.ATNSimulator = ATNSimulator;
|
|
|
53626
53688
|
})(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
|
|
53627
53689
|
exports.ATNSimulator = ATNSimulator;
|
|
53628
53690
|
|
|
53629
|
-
},{"../Decorators":
|
|
53691
|
+
},{"../Decorators":260,"../dfa/DFAState":360,"./ATNConfigSet":295,"./PredictionContext":340}],299:[function(require,module,exports){
|
|
53630
53692
|
"use strict";
|
|
53631
53693
|
/*!
|
|
53632
53694
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53813,7 +53875,7 @@ exports.ATNState = ATNState;
|
|
|
53813
53875
|
ATNState.INVALID_STATE_NUMBER = -1;
|
|
53814
53876
|
})(ATNState = exports.ATNState || (exports.ATNState = {}));
|
|
53815
53877
|
|
|
53816
|
-
},{"../Decorators":
|
|
53878
|
+
},{"../Decorators":260}],300:[function(require,module,exports){
|
|
53817
53879
|
"use strict";
|
|
53818
53880
|
/*!
|
|
53819
53881
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53839,7 +53901,7 @@ var ATNStateType;
|
|
|
53839
53901
|
ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
|
|
53840
53902
|
})(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
|
|
53841
53903
|
|
|
53842
|
-
},{}],
|
|
53904
|
+
},{}],301:[function(require,module,exports){
|
|
53843
53905
|
"use strict";
|
|
53844
53906
|
/*!
|
|
53845
53907
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53859,7 +53921,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
|
|
|
53859
53921
|
}
|
|
53860
53922
|
exports.AbstractPredicateTransition = AbstractPredicateTransition;
|
|
53861
53923
|
|
|
53862
|
-
},{"./Transition":
|
|
53924
|
+
},{"./Transition":355}],302:[function(require,module,exports){
|
|
53863
53925
|
"use strict";
|
|
53864
53926
|
/*!
|
|
53865
53927
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53915,7 +53977,7 @@ ActionTransition = __decorate([
|
|
|
53915
53977
|
], ActionTransition);
|
|
53916
53978
|
exports.ActionTransition = ActionTransition;
|
|
53917
53979
|
|
|
53918
|
-
},{"../Decorators":
|
|
53980
|
+
},{"../Decorators":260,"./Transition":355}],303:[function(require,module,exports){
|
|
53919
53981
|
"use strict";
|
|
53920
53982
|
/*!
|
|
53921
53983
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54002,7 +54064,7 @@ AmbiguityInfo = __decorate([
|
|
|
54002
54064
|
], AmbiguityInfo);
|
|
54003
54065
|
exports.AmbiguityInfo = AmbiguityInfo;
|
|
54004
54066
|
|
|
54005
|
-
},{"../Decorators":
|
|
54067
|
+
},{"../Decorators":260,"./DecisionEventInfo":311}],304:[function(require,module,exports){
|
|
54006
54068
|
"use strict";
|
|
54007
54069
|
/*!
|
|
54008
54070
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54060,7 +54122,7 @@ AtomTransition = __decorate([
|
|
|
54060
54122
|
], AtomTransition);
|
|
54061
54123
|
exports.AtomTransition = AtomTransition;
|
|
54062
54124
|
|
|
54063
|
-
},{"../Decorators":
|
|
54125
|
+
},{"../Decorators":260,"../misc/IntervalSet":373,"./Transition":355}],305:[function(require,module,exports){
|
|
54064
54126
|
"use strict";
|
|
54065
54127
|
/*!
|
|
54066
54128
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54092,7 +54154,7 @@ __decorate([
|
|
|
54092
54154
|
], BasicBlockStartState.prototype, "stateType", null);
|
|
54093
54155
|
exports.BasicBlockStartState = BasicBlockStartState;
|
|
54094
54156
|
|
|
54095
|
-
},{"../Decorators":
|
|
54157
|
+
},{"../Decorators":260,"./ATNStateType":300,"./BlockStartState":308}],306:[function(require,module,exports){
|
|
54096
54158
|
"use strict";
|
|
54097
54159
|
/*!
|
|
54098
54160
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54124,7 +54186,7 @@ __decorate([
|
|
|
54124
54186
|
], BasicState.prototype, "stateType", null);
|
|
54125
54187
|
exports.BasicState = BasicState;
|
|
54126
54188
|
|
|
54127
|
-
},{"../Decorators":
|
|
54189
|
+
},{"../Decorators":260,"./ATNState":299,"./ATNStateType":300}],307:[function(require,module,exports){
|
|
54128
54190
|
"use strict";
|
|
54129
54191
|
/*!
|
|
54130
54192
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54153,7 +54215,7 @@ __decorate([
|
|
|
54153
54215
|
], BlockEndState.prototype, "stateType", null);
|
|
54154
54216
|
exports.BlockEndState = BlockEndState;
|
|
54155
54217
|
|
|
54156
|
-
},{"../Decorators":
|
|
54218
|
+
},{"../Decorators":260,"./ATNState":299,"./ATNStateType":300}],308:[function(require,module,exports){
|
|
54157
54219
|
"use strict";
|
|
54158
54220
|
/*!
|
|
54159
54221
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54167,7 +54229,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
|
|
|
54167
54229
|
}
|
|
54168
54230
|
exports.BlockStartState = BlockStartState;
|
|
54169
54231
|
|
|
54170
|
-
},{"./DecisionState":
|
|
54232
|
+
},{"./DecisionState":313}],309:[function(require,module,exports){
|
|
54171
54233
|
"use strict";
|
|
54172
54234
|
/*!
|
|
54173
54235
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54237,7 +54299,7 @@ __decorate([
|
|
|
54237
54299
|
], ConflictInfo.prototype, "hashCode", null);
|
|
54238
54300
|
exports.ConflictInfo = ConflictInfo;
|
|
54239
54301
|
|
|
54240
|
-
},{"../Decorators":
|
|
54302
|
+
},{"../Decorators":260,"../misc/Utils":379}],310:[function(require,module,exports){
|
|
54241
54303
|
"use strict";
|
|
54242
54304
|
/*!
|
|
54243
54305
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54297,7 +54359,7 @@ ContextSensitivityInfo = __decorate([
|
|
|
54297
54359
|
], ContextSensitivityInfo);
|
|
54298
54360
|
exports.ContextSensitivityInfo = ContextSensitivityInfo;
|
|
54299
54361
|
|
|
54300
|
-
},{"../Decorators":
|
|
54362
|
+
},{"../Decorators":260,"./DecisionEventInfo":311}],311:[function(require,module,exports){
|
|
54301
54363
|
"use strict";
|
|
54302
54364
|
/*!
|
|
54303
54365
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54349,7 +54411,7 @@ DecisionEventInfo = __decorate([
|
|
|
54349
54411
|
], DecisionEventInfo);
|
|
54350
54412
|
exports.DecisionEventInfo = DecisionEventInfo;
|
|
54351
54413
|
|
|
54352
|
-
},{"../Decorators":
|
|
54414
|
+
},{"../Decorators":260}],312:[function(require,module,exports){
|
|
54353
54415
|
"use strict";
|
|
54354
54416
|
/*!
|
|
54355
54417
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54562,7 +54624,7 @@ __decorate([
|
|
|
54562
54624
|
], DecisionInfo.prototype, "toString", null);
|
|
54563
54625
|
exports.DecisionInfo = DecisionInfo;
|
|
54564
54626
|
|
|
54565
|
-
},{"../Decorators":
|
|
54627
|
+
},{"../Decorators":260}],313:[function(require,module,exports){
|
|
54566
54628
|
"use strict";
|
|
54567
54629
|
/*!
|
|
54568
54630
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54582,7 +54644,7 @@ class DecisionState extends ATNState_1.ATNState {
|
|
|
54582
54644
|
}
|
|
54583
54645
|
exports.DecisionState = DecisionState;
|
|
54584
54646
|
|
|
54585
|
-
},{"./ATNState":
|
|
54647
|
+
},{"./ATNState":299}],314:[function(require,module,exports){
|
|
54586
54648
|
"use strict";
|
|
54587
54649
|
/*!
|
|
54588
54650
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54648,7 +54710,7 @@ EpsilonTransition = __decorate([
|
|
|
54648
54710
|
], EpsilonTransition);
|
|
54649
54711
|
exports.EpsilonTransition = EpsilonTransition;
|
|
54650
54712
|
|
|
54651
|
-
},{"../Decorators":
|
|
54713
|
+
},{"../Decorators":260,"./Transition":355}],315:[function(require,module,exports){
|
|
54652
54714
|
"use strict";
|
|
54653
54715
|
/*!
|
|
54654
54716
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54701,7 +54763,7 @@ ErrorInfo = __decorate([
|
|
|
54701
54763
|
], ErrorInfo);
|
|
54702
54764
|
exports.ErrorInfo = ErrorInfo;
|
|
54703
54765
|
|
|
54704
|
-
},{"../Decorators":
|
|
54766
|
+
},{"../Decorators":260,"./DecisionEventInfo":311}],316:[function(require,module,exports){
|
|
54705
54767
|
"use strict";
|
|
54706
54768
|
/*!
|
|
54707
54769
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54732,7 +54794,7 @@ __decorate([
|
|
|
54732
54794
|
], InvalidState.prototype, "stateType", null);
|
|
54733
54795
|
exports.InvalidState = InvalidState;
|
|
54734
54796
|
|
|
54735
|
-
},{"../Decorators":
|
|
54797
|
+
},{"../Decorators":260,"./ATNStateType":300,"./BasicState":306}],317:[function(require,module,exports){
|
|
54736
54798
|
"use strict";
|
|
54737
54799
|
/*!
|
|
54738
54800
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54954,7 +55016,7 @@ LL1Analyzer = __decorate([
|
|
|
54954
55016
|
], LL1Analyzer);
|
|
54955
55017
|
exports.LL1Analyzer = LL1Analyzer;
|
|
54956
55018
|
|
|
54957
|
-
},{"../Decorators":
|
|
55019
|
+
},{"../Decorators":260,"../Token":285,"../misc/Array2DHashSet":364,"../misc/BitSet":367,"../misc/IntervalSet":373,"../misc/ObjectEqualityComparator":376,"./ATNConfig":294,"./AbstractPredicateTransition":301,"./NotSetTransition":331,"./PredictionContext":340,"./RuleStopState":346,"./RuleTransition":347,"./WildcardTransition":356}],318:[function(require,module,exports){
|
|
54958
55020
|
"use strict";
|
|
54959
55021
|
/*!
|
|
54960
55022
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55671,7 +55733,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
|
|
|
55671
55733
|
})(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
|
|
55672
55734
|
exports.LexerATNSimulator = LexerATNSimulator;
|
|
55673
55735
|
|
|
55674
|
-
},{"../Decorators":
|
|
55736
|
+
},{"../Decorators":260,"../IntStream":266,"../Lexer":268,"../LexerNoViableAltException":270,"../Token":285,"../dfa/AcceptStateInfo":357,"../dfa/DFAState":360,"../misc/Interval":372,"./ATN":293,"./ATNConfig":294,"./ATNConfigSet":295,"./ATNSimulator":298,"./LexerActionExecutor":319,"./OrderedATNConfigSet":332,"./PredictionContext":340,"./RuleStopState":346,"assert":403}],319:[function(require,module,exports){
|
|
55675
55737
|
"use strict";
|
|
55676
55738
|
/*!
|
|
55677
55739
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55872,7 +55934,7 @@ LexerActionExecutor = __decorate([
|
|
|
55872
55934
|
], LexerActionExecutor);
|
|
55873
55935
|
exports.LexerActionExecutor = LexerActionExecutor;
|
|
55874
55936
|
|
|
55875
|
-
},{"../Decorators":
|
|
55937
|
+
},{"../Decorators":260,"../misc/ArrayEqualityComparator":365,"../misc/MurmurHash":375,"./LexerIndexedCustomAction":322}],320:[function(require,module,exports){
|
|
55876
55938
|
"use strict";
|
|
55877
55939
|
/*!
|
|
55878
55940
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55977,7 +56039,7 @@ __decorate([
|
|
|
55977
56039
|
], LexerChannelAction.prototype, "toString", null);
|
|
55978
56040
|
exports.LexerChannelAction = LexerChannelAction;
|
|
55979
56041
|
|
|
55980
|
-
},{"../Decorators":
|
|
56042
|
+
},{"../Decorators":260,"../misc/MurmurHash":375}],321:[function(require,module,exports){
|
|
55981
56043
|
"use strict";
|
|
55982
56044
|
/*!
|
|
55983
56045
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56106,7 +56168,7 @@ __decorate([
|
|
|
56106
56168
|
], LexerCustomAction.prototype, "equals", null);
|
|
56107
56169
|
exports.LexerCustomAction = LexerCustomAction;
|
|
56108
56170
|
|
|
56109
|
-
},{"../Decorators":
|
|
56171
|
+
},{"../Decorators":260,"../misc/MurmurHash":375}],322:[function(require,module,exports){
|
|
56110
56172
|
"use strict";
|
|
56111
56173
|
/*!
|
|
56112
56174
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56241,7 +56303,7 @@ LexerIndexedCustomAction = __decorate([
|
|
|
56241
56303
|
], LexerIndexedCustomAction);
|
|
56242
56304
|
exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
|
|
56243
56305
|
|
|
56244
|
-
},{"../Decorators":
|
|
56306
|
+
},{"../Decorators":260,"../misc/MurmurHash":375}],323:[function(require,module,exports){
|
|
56245
56307
|
"use strict";
|
|
56246
56308
|
/*!
|
|
56247
56309
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56346,7 +56408,7 @@ __decorate([
|
|
|
56346
56408
|
], LexerModeAction.prototype, "toString", null);
|
|
56347
56409
|
exports.LexerModeAction = LexerModeAction;
|
|
56348
56410
|
|
|
56349
|
-
},{"../Decorators":
|
|
56411
|
+
},{"../Decorators":260,"../misc/MurmurHash":375}],324:[function(require,module,exports){
|
|
56350
56412
|
"use strict";
|
|
56351
56413
|
/*!
|
|
56352
56414
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56442,7 +56504,7 @@ exports.LexerMoreAction = LexerMoreAction;
|
|
|
56442
56504
|
LexerMoreAction.INSTANCE = new LexerMoreAction();
|
|
56443
56505
|
})(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
|
|
56444
56506
|
|
|
56445
|
-
},{"../Decorators":
|
|
56507
|
+
},{"../Decorators":260,"../misc/MurmurHash":375}],325:[function(require,module,exports){
|
|
56446
56508
|
"use strict";
|
|
56447
56509
|
/*!
|
|
56448
56510
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56538,7 +56600,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
|
|
|
56538
56600
|
LexerPopModeAction.INSTANCE = new LexerPopModeAction();
|
|
56539
56601
|
})(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
|
|
56540
56602
|
|
|
56541
|
-
},{"../Decorators":
|
|
56603
|
+
},{"../Decorators":260,"../misc/MurmurHash":375}],326:[function(require,module,exports){
|
|
56542
56604
|
"use strict";
|
|
56543
56605
|
/*!
|
|
56544
56606
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56643,7 +56705,7 @@ __decorate([
|
|
|
56643
56705
|
], LexerPushModeAction.prototype, "toString", null);
|
|
56644
56706
|
exports.LexerPushModeAction = LexerPushModeAction;
|
|
56645
56707
|
|
|
56646
|
-
},{"../Decorators":
|
|
56708
|
+
},{"../Decorators":260,"../misc/MurmurHash":375}],327:[function(require,module,exports){
|
|
56647
56709
|
"use strict";
|
|
56648
56710
|
/*!
|
|
56649
56711
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56739,7 +56801,7 @@ exports.LexerSkipAction = LexerSkipAction;
|
|
|
56739
56801
|
LexerSkipAction.INSTANCE = new LexerSkipAction();
|
|
56740
56802
|
})(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
|
|
56741
56803
|
|
|
56742
|
-
},{"../Decorators":
|
|
56804
|
+
},{"../Decorators":260,"../misc/MurmurHash":375}],328:[function(require,module,exports){
|
|
56743
56805
|
"use strict";
|
|
56744
56806
|
/*!
|
|
56745
56807
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56843,7 +56905,7 @@ __decorate([
|
|
|
56843
56905
|
], LexerTypeAction.prototype, "toString", null);
|
|
56844
56906
|
exports.LexerTypeAction = LexerTypeAction;
|
|
56845
56907
|
|
|
56846
|
-
},{"../Decorators":
|
|
56908
|
+
},{"../Decorators":260,"../misc/MurmurHash":375}],329:[function(require,module,exports){
|
|
56847
56909
|
"use strict";
|
|
56848
56910
|
/*!
|
|
56849
56911
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56895,7 +56957,7 @@ LookaheadEventInfo = __decorate([
|
|
|
56895
56957
|
], LookaheadEventInfo);
|
|
56896
56958
|
exports.LookaheadEventInfo = LookaheadEventInfo;
|
|
56897
56959
|
|
|
56898
|
-
},{"../Decorators":
|
|
56960
|
+
},{"../Decorators":260,"./DecisionEventInfo":311}],330:[function(require,module,exports){
|
|
56899
56961
|
"use strict";
|
|
56900
56962
|
/*!
|
|
56901
56963
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56924,7 +56986,7 @@ __decorate([
|
|
|
56924
56986
|
], LoopEndState.prototype, "stateType", null);
|
|
56925
56987
|
exports.LoopEndState = LoopEndState;
|
|
56926
56988
|
|
|
56927
|
-
},{"../Decorators":
|
|
56989
|
+
},{"../Decorators":260,"./ATNState":299,"./ATNStateType":300}],331:[function(require,module,exports){
|
|
56928
56990
|
"use strict";
|
|
56929
56991
|
/*!
|
|
56930
56992
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56973,7 +57035,7 @@ NotSetTransition = __decorate([
|
|
|
56973
57035
|
], NotSetTransition);
|
|
56974
57036
|
exports.NotSetTransition = NotSetTransition;
|
|
56975
57037
|
|
|
56976
|
-
},{"../Decorators":
|
|
57038
|
+
},{"../Decorators":260,"./SetTransition":349}],332:[function(require,module,exports){
|
|
56977
57039
|
"use strict";
|
|
56978
57040
|
/*!
|
|
56979
57041
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57028,7 +57090,7 @@ __decorate([
|
|
|
57028
57090
|
], OrderedATNConfigSet.prototype, "canMerge", null);
|
|
57029
57091
|
exports.OrderedATNConfigSet = OrderedATNConfigSet;
|
|
57030
57092
|
|
|
57031
|
-
},{"../Decorators":
|
|
57093
|
+
},{"../Decorators":260,"./ATNConfigSet":295}],333:[function(require,module,exports){
|
|
57032
57094
|
"use strict";
|
|
57033
57095
|
/*!
|
|
57034
57096
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57190,7 +57252,7 @@ ParseInfo = __decorate([
|
|
|
57190
57252
|
], ParseInfo);
|
|
57191
57253
|
exports.ParseInfo = ParseInfo;
|
|
57192
57254
|
|
|
57193
|
-
},{"../Decorators":
|
|
57255
|
+
},{"../Decorators":260}],334:[function(require,module,exports){
|
|
57194
57256
|
"use strict";
|
|
57195
57257
|
/*!
|
|
57196
57258
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59463,7 +59525,7 @@ ParserATNSimulator = __decorate([
|
|
|
59463
59525
|
], ParserATNSimulator);
|
|
59464
59526
|
exports.ParserATNSimulator = ParserATNSimulator;
|
|
59465
59527
|
|
|
59466
|
-
},{"../Decorators":
|
|
59528
|
+
},{"../Decorators":260,"../IntStream":266,"../NoViableAltException":272,"../ParserRuleContext":276,"../Token":285,"../VocabularyImpl":291,"../dfa/AcceptStateInfo":357,"../dfa/DFAState":360,"../misc/Array2DHashSet":364,"../misc/Arrays":366,"../misc/BitSet":367,"../misc/IntegerList":370,"../misc/Interval":372,"../misc/ObjectEqualityComparator":376,"./ATN":293,"./ATNConfig":294,"./ATNConfigSet":295,"./ATNSimulator":298,"./ATNStateType":300,"./ActionTransition":302,"./AtomTransition":304,"./ConflictInfo":309,"./DecisionState":313,"./NotSetTransition":331,"./PredictionContext":340,"./PredictionContextCache":341,"./PredictionMode":342,"./RuleStopState":346,"./RuleTransition":347,"./SemanticContext":348,"./SetTransition":349,"./SimulatorState":350,"assert":403}],335:[function(require,module,exports){
|
|
59467
59529
|
"use strict";
|
|
59468
59530
|
/*!
|
|
59469
59531
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59496,7 +59558,7 @@ __decorate([
|
|
|
59496
59558
|
], PlusBlockStartState.prototype, "stateType", null);
|
|
59497
59559
|
exports.PlusBlockStartState = PlusBlockStartState;
|
|
59498
59560
|
|
|
59499
|
-
},{"../Decorators":
|
|
59561
|
+
},{"../Decorators":260,"./ATNStateType":300,"./BlockStartState":308}],336:[function(require,module,exports){
|
|
59500
59562
|
"use strict";
|
|
59501
59563
|
/*!
|
|
59502
59564
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59527,7 +59589,7 @@ __decorate([
|
|
|
59527
59589
|
], PlusLoopbackState.prototype, "stateType", null);
|
|
59528
59590
|
exports.PlusLoopbackState = PlusLoopbackState;
|
|
59529
59591
|
|
|
59530
|
-
},{"../Decorators":
|
|
59592
|
+
},{"../Decorators":260,"./ATNStateType":300,"./DecisionState":313}],337:[function(require,module,exports){
|
|
59531
59593
|
"use strict";
|
|
59532
59594
|
/*!
|
|
59533
59595
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59590,7 +59652,7 @@ PrecedencePredicateTransition = __decorate([
|
|
|
59590
59652
|
], PrecedencePredicateTransition);
|
|
59591
59653
|
exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
|
|
59592
59654
|
|
|
59593
|
-
},{"../Decorators":
|
|
59655
|
+
},{"../Decorators":260,"./AbstractPredicateTransition":301,"./SemanticContext":348}],338:[function(require,module,exports){
|
|
59594
59656
|
"use strict";
|
|
59595
59657
|
/*!
|
|
59596
59658
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59653,7 +59715,7 @@ PredicateEvalInfo = __decorate([
|
|
|
59653
59715
|
], PredicateEvalInfo);
|
|
59654
59716
|
exports.PredicateEvalInfo = PredicateEvalInfo;
|
|
59655
59717
|
|
|
59656
|
-
},{"../Decorators":
|
|
59718
|
+
},{"../Decorators":260,"./DecisionEventInfo":311}],339:[function(require,module,exports){
|
|
59657
59719
|
"use strict";
|
|
59658
59720
|
/*!
|
|
59659
59721
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59719,7 +59781,7 @@ PredicateTransition = __decorate([
|
|
|
59719
59781
|
], PredicateTransition);
|
|
59720
59782
|
exports.PredicateTransition = PredicateTransition;
|
|
59721
59783
|
|
|
59722
|
-
},{"../Decorators":
|
|
59784
|
+
},{"../Decorators":260,"./AbstractPredicateTransition":301,"./SemanticContext":348}],340:[function(require,module,exports){
|
|
59723
59785
|
"use strict";
|
|
59724
59786
|
/*!
|
|
59725
59787
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60410,7 +60472,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
|
|
|
60410
60472
|
PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
|
|
60411
60473
|
})(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
|
|
60412
60474
|
|
|
60413
|
-
},{"../Decorators":
|
|
60475
|
+
},{"../Decorators":260,"../misc/Array2DHashMap":363,"../misc/Array2DHashSet":364,"../misc/Arrays":366,"../misc/MurmurHash":375,"./PredictionContextCache":341,"assert":403}],341:[function(require,module,exports){
|
|
60414
60476
|
"use strict";
|
|
60415
60477
|
/*!
|
|
60416
60478
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60551,7 +60613,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
|
|
|
60551
60613
|
PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
|
|
60552
60614
|
})(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
|
|
60553
60615
|
|
|
60554
|
-
},{"../Decorators":
|
|
60616
|
+
},{"../Decorators":260,"../misc/Array2DHashMap":363,"../misc/ObjectEqualityComparator":376,"./PredictionContext":340,"assert":403}],342:[function(require,module,exports){
|
|
60555
60617
|
"use strict";
|
|
60556
60618
|
/*!
|
|
60557
60619
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60712,7 +60774,7 @@ var PredictionMode;
|
|
|
60712
60774
|
PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
|
|
60713
60775
|
})(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
|
|
60714
60776
|
|
|
60715
|
-
},{"../Decorators":
|
|
60777
|
+
},{"../Decorators":260,"../misc/Array2DHashMap":363,"../misc/MurmurHash":375,"./RuleStopState":346}],343:[function(require,module,exports){
|
|
60716
60778
|
(function (process){(function (){
|
|
60717
60779
|
"use strict";
|
|
60718
60780
|
/*!
|
|
@@ -60981,7 +61043,7 @@ __decorate([
|
|
|
60981
61043
|
exports.ProfilingATNSimulator = ProfilingATNSimulator;
|
|
60982
61044
|
|
|
60983
61045
|
}).call(this)}).call(this,require('_process'))
|
|
60984
|
-
},{"../Decorators":
|
|
61046
|
+
},{"../Decorators":260,"./ATN":293,"./ATNSimulator":298,"./AmbiguityInfo":303,"./ContextSensitivityInfo":310,"./DecisionInfo":312,"./ErrorInfo":315,"./LookaheadEventInfo":329,"./ParserATNSimulator":334,"./PredicateEvalInfo":338,"./SemanticContext":348,"./SimulatorState":350,"_process":462}],344:[function(require,module,exports){
|
|
60985
61047
|
"use strict";
|
|
60986
61048
|
/*!
|
|
60987
61049
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61039,7 +61101,7 @@ RangeTransition = __decorate([
|
|
|
61039
61101
|
], RangeTransition);
|
|
61040
61102
|
exports.RangeTransition = RangeTransition;
|
|
61041
61103
|
|
|
61042
|
-
},{"../Decorators":
|
|
61104
|
+
},{"../Decorators":260,"../misc/IntervalSet":373,"./Transition":355}],345:[function(require,module,exports){
|
|
61043
61105
|
"use strict";
|
|
61044
61106
|
/*!
|
|
61045
61107
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61072,7 +61134,7 @@ __decorate([
|
|
|
61072
61134
|
], RuleStartState.prototype, "stateType", null);
|
|
61073
61135
|
exports.RuleStartState = RuleStartState;
|
|
61074
61136
|
|
|
61075
|
-
},{"../Decorators":
|
|
61137
|
+
},{"../Decorators":260,"./ATNState":299,"./ATNStateType":300}],346:[function(require,module,exports){
|
|
61076
61138
|
"use strict";
|
|
61077
61139
|
/*!
|
|
61078
61140
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61111,7 +61173,7 @@ __decorate([
|
|
|
61111
61173
|
], RuleStopState.prototype, "stateType", null);
|
|
61112
61174
|
exports.RuleStopState = RuleStopState;
|
|
61113
61175
|
|
|
61114
|
-
},{"../Decorators":
|
|
61176
|
+
},{"../Decorators":260,"./ATNState":299,"./ATNStateType":300}],347:[function(require,module,exports){
|
|
61115
61177
|
"use strict";
|
|
61116
61178
|
/*!
|
|
61117
61179
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61167,7 +61229,7 @@ RuleTransition = __decorate([
|
|
|
61167
61229
|
], RuleTransition);
|
|
61168
61230
|
exports.RuleTransition = RuleTransition;
|
|
61169
61231
|
|
|
61170
|
-
},{"../Decorators":
|
|
61232
|
+
},{"../Decorators":260,"./Transition":355}],348:[function(require,module,exports){
|
|
61171
61233
|
"use strict";
|
|
61172
61234
|
/*!
|
|
61173
61235
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61647,7 +61709,7 @@ exports.SemanticContext = SemanticContext;
|
|
|
61647
61709
|
SemanticContext.OR = OR;
|
|
61648
61710
|
})(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
|
|
61649
61711
|
|
|
61650
|
-
},{"../Decorators":
|
|
61712
|
+
},{"../Decorators":260,"../misc/Array2DHashSet":364,"../misc/ArrayEqualityComparator":365,"../misc/MurmurHash":375,"../misc/ObjectEqualityComparator":376,"../misc/Utils":379}],349:[function(require,module,exports){
|
|
61651
61713
|
"use strict";
|
|
61652
61714
|
/*!
|
|
61653
61715
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61713,7 +61775,7 @@ SetTransition = __decorate([
|
|
|
61713
61775
|
], SetTransition);
|
|
61714
61776
|
exports.SetTransition = SetTransition;
|
|
61715
61777
|
|
|
61716
|
-
},{"../Decorators":
|
|
61778
|
+
},{"../Decorators":260,"../Token":285,"../misc/IntervalSet":373,"./Transition":355}],350:[function(require,module,exports){
|
|
61717
61779
|
"use strict";
|
|
61718
61780
|
/*!
|
|
61719
61781
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61749,7 +61811,7 @@ SimulatorState = __decorate([
|
|
|
61749
61811
|
], SimulatorState);
|
|
61750
61812
|
exports.SimulatorState = SimulatorState;
|
|
61751
61813
|
|
|
61752
|
-
},{"../Decorators":
|
|
61814
|
+
},{"../Decorators":260,"../ParserRuleContext":276}],351:[function(require,module,exports){
|
|
61753
61815
|
"use strict";
|
|
61754
61816
|
/*!
|
|
61755
61817
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61777,7 +61839,7 @@ __decorate([
|
|
|
61777
61839
|
], StarBlockStartState.prototype, "stateType", null);
|
|
61778
61840
|
exports.StarBlockStartState = StarBlockStartState;
|
|
61779
61841
|
|
|
61780
|
-
},{"../Decorators":
|
|
61842
|
+
},{"../Decorators":260,"./ATNStateType":300,"./BlockStartState":308}],352:[function(require,module,exports){
|
|
61781
61843
|
"use strict";
|
|
61782
61844
|
/*!
|
|
61783
61845
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61834,7 +61896,7 @@ __decorate([
|
|
|
61834
61896
|
], StarLoopEntryState.prototype, "stateType", null);
|
|
61835
61897
|
exports.StarLoopEntryState = StarLoopEntryState;
|
|
61836
61898
|
|
|
61837
|
-
},{"../Decorators":
|
|
61899
|
+
},{"../Decorators":260,"../misc/BitSet":367,"./ATNStateType":300,"./DecisionState":313}],353:[function(require,module,exports){
|
|
61838
61900
|
"use strict";
|
|
61839
61901
|
/*!
|
|
61840
61902
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61865,7 +61927,7 @@ __decorate([
|
|
|
61865
61927
|
], StarLoopbackState.prototype, "stateType", null);
|
|
61866
61928
|
exports.StarLoopbackState = StarLoopbackState;
|
|
61867
61929
|
|
|
61868
|
-
},{"../Decorators":
|
|
61930
|
+
},{"../Decorators":260,"./ATNState":299,"./ATNStateType":300}],354:[function(require,module,exports){
|
|
61869
61931
|
"use strict";
|
|
61870
61932
|
/*!
|
|
61871
61933
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61894,7 +61956,7 @@ __decorate([
|
|
|
61894
61956
|
], TokensStartState.prototype, "stateType", null);
|
|
61895
61957
|
exports.TokensStartState = TokensStartState;
|
|
61896
61958
|
|
|
61897
|
-
},{"../Decorators":
|
|
61959
|
+
},{"../Decorators":260,"./ATNStateType":300,"./DecisionState":313}],355:[function(require,module,exports){
|
|
61898
61960
|
"use strict";
|
|
61899
61961
|
/*!
|
|
61900
61962
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61968,7 +62030,7 @@ Transition = __decorate([
|
|
|
61968
62030
|
], Transition);
|
|
61969
62031
|
exports.Transition = Transition;
|
|
61970
62032
|
|
|
61971
|
-
},{"../Decorators":
|
|
62033
|
+
},{"../Decorators":260}],356:[function(require,module,exports){
|
|
61972
62034
|
"use strict";
|
|
61973
62035
|
/*!
|
|
61974
62036
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62016,7 +62078,7 @@ WildcardTransition = __decorate([
|
|
|
62016
62078
|
], WildcardTransition);
|
|
62017
62079
|
exports.WildcardTransition = WildcardTransition;
|
|
62018
62080
|
|
|
62019
|
-
},{"../Decorators":
|
|
62081
|
+
},{"../Decorators":260,"./Transition":355}],357:[function(require,module,exports){
|
|
62020
62082
|
"use strict";
|
|
62021
62083
|
/*!
|
|
62022
62084
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62058,7 +62120,7 @@ class AcceptStateInfo {
|
|
|
62058
62120
|
}
|
|
62059
62121
|
exports.AcceptStateInfo = AcceptStateInfo;
|
|
62060
62122
|
|
|
62061
|
-
},{}],
|
|
62123
|
+
},{}],358:[function(require,module,exports){
|
|
62062
62124
|
"use strict";
|
|
62063
62125
|
/*!
|
|
62064
62126
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62233,7 +62295,7 @@ DFA = __decorate([
|
|
|
62233
62295
|
], DFA);
|
|
62234
62296
|
exports.DFA = DFA;
|
|
62235
62297
|
|
|
62236
|
-
},{"../Decorators":
|
|
62298
|
+
},{"../Decorators":260,"../VocabularyImpl":291,"../atn/ATNConfigSet":295,"../atn/StarLoopEntryState":352,"../misc/Array2DHashSet":364,"../misc/ObjectEqualityComparator":376,"./DFASerializer":359,"./DFAState":360,"./LexerDFASerializer":361}],359:[function(require,module,exports){
|
|
62237
62299
|
"use strict";
|
|
62238
62300
|
/*!
|
|
62239
62301
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62375,7 +62437,7 @@ __decorate([
|
|
|
62375
62437
|
], DFASerializer.prototype, "toString", null);
|
|
62376
62438
|
exports.DFASerializer = DFASerializer;
|
|
62377
62439
|
|
|
62378
|
-
},{"../Decorators":
|
|
62440
|
+
},{"../Decorators":260,"../Recognizer":280,"../VocabularyImpl":291,"../atn/ATNSimulator":298,"../atn/PredictionContext":340}],360:[function(require,module,exports){
|
|
62379
62441
|
"use strict";
|
|
62380
62442
|
/*!
|
|
62381
62443
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62606,7 +62668,7 @@ exports.DFAState = DFAState;
|
|
|
62606
62668
|
DFAState.PredPrediction = PredPrediction;
|
|
62607
62669
|
})(DFAState = exports.DFAState || (exports.DFAState = {}));
|
|
62608
62670
|
|
|
62609
|
-
},{"../Decorators":
|
|
62671
|
+
},{"../Decorators":260,"../atn/ATN":293,"../atn/PredictionContext":340,"../misc/BitSet":367,"../misc/MurmurHash":375,"assert":403}],361:[function(require,module,exports){
|
|
62610
62672
|
"use strict";
|
|
62611
62673
|
/*!
|
|
62612
62674
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62643,7 +62705,7 @@ LexerDFASerializer = __decorate([
|
|
|
62643
62705
|
], LexerDFASerializer);
|
|
62644
62706
|
exports.LexerDFASerializer = LexerDFASerializer;
|
|
62645
62707
|
|
|
62646
|
-
},{"../Decorators":
|
|
62708
|
+
},{"../Decorators":260,"../VocabularyImpl":291,"./DFASerializer":359}],362:[function(require,module,exports){
|
|
62647
62709
|
"use strict";
|
|
62648
62710
|
/*!
|
|
62649
62711
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62709,7 +62771,7 @@ __exportStar(require("./Vocabulary"), exports);
|
|
|
62709
62771
|
__exportStar(require("./VocabularyImpl"), exports);
|
|
62710
62772
|
__exportStar(require("./WritableToken"), exports);
|
|
62711
62773
|
|
|
62712
|
-
},{"./ANTLRErrorListener":
|
|
62774
|
+
},{"./ANTLRErrorListener":247,"./ANTLRErrorStrategy":248,"./ANTLRInputStream":249,"./BailErrorStrategy":250,"./BufferedTokenStream":251,"./CharStream":252,"./CharStreams":253,"./CodePointBuffer":254,"./CodePointCharStream":255,"./CommonToken":256,"./CommonTokenFactory":257,"./CommonTokenStream":258,"./ConsoleErrorListener":259,"./DefaultErrorStrategy":261,"./Dependents":262,"./DiagnosticErrorListener":263,"./FailedPredicateException":264,"./InputMismatchException":265,"./IntStream":266,"./InterpreterRuleContext":267,"./Lexer":268,"./LexerInterpreter":269,"./LexerNoViableAltException":270,"./ListTokenSource":271,"./NoViableAltException":272,"./Parser":273,"./ParserErrorListener":274,"./ParserInterpreter":275,"./ParserRuleContext":276,"./ProxyErrorListener":277,"./ProxyParserErrorListener":278,"./RecognitionException":279,"./Recognizer":280,"./RuleContext":281,"./RuleContextWithAltNum":282,"./RuleDependency":283,"./RuleVersion":284,"./Token":285,"./TokenFactory":286,"./TokenSource":287,"./TokenStream":288,"./TokenStreamRewriter":289,"./Vocabulary":290,"./VocabularyImpl":291,"./WritableToken":292}],363:[function(require,module,exports){
|
|
62713
62775
|
"use strict";
|
|
62714
62776
|
/*!
|
|
62715
62777
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62792,7 +62854,7 @@ class Array2DHashMap {
|
|
|
62792
62854
|
}
|
|
62793
62855
|
exports.Array2DHashMap = Array2DHashMap;
|
|
62794
62856
|
|
|
62795
|
-
},{"./Array2DHashSet":
|
|
62857
|
+
},{"./Array2DHashSet":364}],364:[function(require,module,exports){
|
|
62796
62858
|
"use strict";
|
|
62797
62859
|
/*!
|
|
62798
62860
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63159,7 +63221,7 @@ __decorate([
|
|
|
63159
63221
|
], Array2DHashSet.prototype, "createBuckets", null);
|
|
63160
63222
|
exports.Array2DHashSet = Array2DHashSet;
|
|
63161
63223
|
|
|
63162
|
-
},{"../Decorators":
|
|
63224
|
+
},{"../Decorators":260,"./DefaultEqualityComparator":369,"./MurmurHash":375,"assert":403}],365:[function(require,module,exports){
|
|
63163
63225
|
"use strict";
|
|
63164
63226
|
/*!
|
|
63165
63227
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63231,7 +63293,7 @@ __decorate([
|
|
|
63231
63293
|
], ArrayEqualityComparator.prototype, "equals", null);
|
|
63232
63294
|
exports.ArrayEqualityComparator = ArrayEqualityComparator;
|
|
63233
63295
|
|
|
63234
|
-
},{"../Decorators":
|
|
63296
|
+
},{"../Decorators":260,"./MurmurHash":375,"./ObjectEqualityComparator":376}],366:[function(require,module,exports){
|
|
63235
63297
|
"use strict";
|
|
63236
63298
|
/*!
|
|
63237
63299
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63301,7 +63363,7 @@ var Arrays;
|
|
|
63301
63363
|
Arrays.toString = toString;
|
|
63302
63364
|
})(Arrays = exports.Arrays || (exports.Arrays = {}));
|
|
63303
63365
|
|
|
63304
|
-
},{}],
|
|
63366
|
+
},{}],367:[function(require,module,exports){
|
|
63305
63367
|
"use strict";
|
|
63306
63368
|
/*!
|
|
63307
63369
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63973,7 +64035,7 @@ class BitSetIterator {
|
|
|
63973
64035
|
[Symbol.iterator]() { return this; }
|
|
63974
64036
|
}
|
|
63975
64037
|
|
|
63976
|
-
},{"./MurmurHash":
|
|
64038
|
+
},{"./MurmurHash":375,"util":467}],368:[function(require,module,exports){
|
|
63977
64039
|
"use strict";
|
|
63978
64040
|
/*!
|
|
63979
64041
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63994,7 +64056,7 @@ function isSupplementaryCodePoint(ch) {
|
|
|
63994
64056
|
}
|
|
63995
64057
|
exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
|
|
63996
64058
|
|
|
63997
|
-
},{}],
|
|
64059
|
+
},{}],369:[function(require,module,exports){
|
|
63998
64060
|
"use strict";
|
|
63999
64061
|
/*!
|
|
64000
64062
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64065,7 +64127,7 @@ __decorate([
|
|
|
64065
64127
|
], DefaultEqualityComparator.prototype, "equals", null);
|
|
64066
64128
|
exports.DefaultEqualityComparator = DefaultEqualityComparator;
|
|
64067
64129
|
|
|
64068
|
-
},{"../Decorators":
|
|
64130
|
+
},{"../Decorators":260,"./MurmurHash":375,"./ObjectEqualityComparator":376}],370:[function(require,module,exports){
|
|
64069
64131
|
"use strict";
|
|
64070
64132
|
/*!
|
|
64071
64133
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64359,7 +64421,7 @@ __decorate([
|
|
|
64359
64421
|
], IntegerList.prototype, "toString", null);
|
|
64360
64422
|
exports.IntegerList = IntegerList;
|
|
64361
64423
|
|
|
64362
|
-
},{"../Decorators":
|
|
64424
|
+
},{"../Decorators":260,"./Arrays":366}],371:[function(require,module,exports){
|
|
64363
64425
|
"use strict";
|
|
64364
64426
|
/*!
|
|
64365
64427
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64389,7 +64451,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
|
|
|
64389
64451
|
}
|
|
64390
64452
|
exports.IntegerStack = IntegerStack;
|
|
64391
64453
|
|
|
64392
|
-
},{"./IntegerList":
|
|
64454
|
+
},{"./IntegerList":370}],372:[function(require,module,exports){
|
|
64393
64455
|
"use strict";
|
|
64394
64456
|
/*!
|
|
64395
64457
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64532,7 +64594,7 @@ __decorate([
|
|
|
64532
64594
|
], Interval.prototype, "toString", null);
|
|
64533
64595
|
exports.Interval = Interval;
|
|
64534
64596
|
|
|
64535
|
-
},{"../Decorators":
|
|
64597
|
+
},{"../Decorators":260}],373:[function(require,module,exports){
|
|
64536
64598
|
"use strict";
|
|
64537
64599
|
/*!
|
|
64538
64600
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65178,7 +65240,7 @@ __decorate([
|
|
|
65178
65240
|
], IntervalSet, "subtract", null);
|
|
65179
65241
|
exports.IntervalSet = IntervalSet;
|
|
65180
65242
|
|
|
65181
|
-
},{"../Decorators":
|
|
65243
|
+
},{"../Decorators":260,"../Lexer":268,"../Token":285,"./ArrayEqualityComparator":365,"./IntegerList":370,"./Interval":372,"./MurmurHash":375}],374:[function(require,module,exports){
|
|
65182
65244
|
"use strict";
|
|
65183
65245
|
/*!
|
|
65184
65246
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65211,7 +65273,7 @@ class MultiMap extends Map {
|
|
|
65211
65273
|
}
|
|
65212
65274
|
exports.MultiMap = MultiMap;
|
|
65213
65275
|
|
|
65214
|
-
},{}],
|
|
65276
|
+
},{}],375:[function(require,module,exports){
|
|
65215
65277
|
"use strict";
|
|
65216
65278
|
/*!
|
|
65217
65279
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65326,7 +65388,7 @@ var MurmurHash;
|
|
|
65326
65388
|
}
|
|
65327
65389
|
})(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
|
|
65328
65390
|
|
|
65329
|
-
},{}],
|
|
65391
|
+
},{}],376:[function(require,module,exports){
|
|
65330
65392
|
"use strict";
|
|
65331
65393
|
/*!
|
|
65332
65394
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65385,7 +65447,7 @@ __decorate([
|
|
|
65385
65447
|
], ObjectEqualityComparator.prototype, "equals", null);
|
|
65386
65448
|
exports.ObjectEqualityComparator = ObjectEqualityComparator;
|
|
65387
65449
|
|
|
65388
|
-
},{"../Decorators":
|
|
65450
|
+
},{"../Decorators":260}],377:[function(require,module,exports){
|
|
65389
65451
|
"use strict";
|
|
65390
65452
|
/*!
|
|
65391
65453
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65414,7 +65476,7 @@ class ParseCancellationException extends Error {
|
|
|
65414
65476
|
}
|
|
65415
65477
|
exports.ParseCancellationException = ParseCancellationException;
|
|
65416
65478
|
|
|
65417
|
-
},{}],
|
|
65479
|
+
},{}],378:[function(require,module,exports){
|
|
65418
65480
|
"use strict";
|
|
65419
65481
|
/*!
|
|
65420
65482
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65468,7 +65530,7 @@ class UUID {
|
|
|
65468
65530
|
}
|
|
65469
65531
|
exports.UUID = UUID;
|
|
65470
65532
|
|
|
65471
|
-
},{"./MurmurHash":
|
|
65533
|
+
},{"./MurmurHash":375}],379:[function(require,module,exports){
|
|
65472
65534
|
"use strict";
|
|
65473
65535
|
/*!
|
|
65474
65536
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65643,7 +65705,7 @@ exports.toCharArray = toCharArray;
|
|
|
65643
65705
|
// return s;
|
|
65644
65706
|
// }
|
|
65645
65707
|
|
|
65646
|
-
},{}],
|
|
65708
|
+
},{}],380:[function(require,module,exports){
|
|
65647
65709
|
"use strict";
|
|
65648
65710
|
/*!
|
|
65649
65711
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65679,7 +65741,7 @@ __decorate([
|
|
|
65679
65741
|
], ErrorNode.prototype, "accept", null);
|
|
65680
65742
|
exports.ErrorNode = ErrorNode;
|
|
65681
65743
|
|
|
65682
|
-
},{"../Decorators":
|
|
65744
|
+
},{"../Decorators":260,"./TerminalNode":383}],381:[function(require,module,exports){
|
|
65683
65745
|
"use strict";
|
|
65684
65746
|
/*!
|
|
65685
65747
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65784,7 +65846,7 @@ exports.ParseTreeWalker = ParseTreeWalker;
|
|
|
65784
65846
|
ParseTreeWalker.DEFAULT = new ParseTreeWalker();
|
|
65785
65847
|
})(ParseTreeWalker = exports.ParseTreeWalker || (exports.ParseTreeWalker = {}));
|
|
65786
65848
|
|
|
65787
|
-
},{"./ErrorNode":
|
|
65849
|
+
},{"./ErrorNode":380,"./RuleNode":382,"./TerminalNode":383}],382:[function(require,module,exports){
|
|
65788
65850
|
"use strict";
|
|
65789
65851
|
/*!
|
|
65790
65852
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65796,7 +65858,7 @@ class RuleNode {
|
|
|
65796
65858
|
}
|
|
65797
65859
|
exports.RuleNode = RuleNode;
|
|
65798
65860
|
|
|
65799
|
-
},{}],
|
|
65861
|
+
},{}],383:[function(require,module,exports){
|
|
65800
65862
|
"use strict";
|
|
65801
65863
|
/*!
|
|
65802
65864
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65888,7 +65950,7 @@ __decorate([
|
|
|
65888
65950
|
], TerminalNode.prototype, "toString", null);
|
|
65889
65951
|
exports.TerminalNode = TerminalNode;
|
|
65890
65952
|
|
|
65891
|
-
},{"../Decorators":
|
|
65953
|
+
},{"../Decorators":260,"../Token":285,"../misc/Interval":372}],384:[function(require,module,exports){
|
|
65892
65954
|
"use strict";
|
|
65893
65955
|
/*!
|
|
65894
65956
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66132,7 +66194,7 @@ __decorate([
|
|
|
66132
66194
|
], Trees, "getRootOfSubtreeEnclosingRegion", null);
|
|
66133
66195
|
exports.Trees = Trees;
|
|
66134
66196
|
|
|
66135
|
-
},{"../CommonToken":
|
|
66197
|
+
},{"../CommonToken":256,"../Decorators":260,"../Parser":273,"../ParserRuleContext":276,"../Token":285,"../atn/ATN":293,"../misc/Utils":379,"./ErrorNode":380,"./RuleNode":382,"./TerminalNode":383}],385:[function(require,module,exports){
|
|
66136
66198
|
"use strict";
|
|
66137
66199
|
/*!
|
|
66138
66200
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66156,7 +66218,7 @@ class Chunk {
|
|
|
66156
66218
|
}
|
|
66157
66219
|
exports.Chunk = Chunk;
|
|
66158
66220
|
|
|
66159
|
-
},{}],
|
|
66221
|
+
},{}],386:[function(require,module,exports){
|
|
66160
66222
|
"use strict";
|
|
66161
66223
|
/*!
|
|
66162
66224
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66336,7 +66398,7 @@ ParseTreeMatch = __decorate([
|
|
|
66336
66398
|
], ParseTreeMatch);
|
|
66337
66399
|
exports.ParseTreeMatch = ParseTreeMatch;
|
|
66338
66400
|
|
|
66339
|
-
},{"../../Decorators":
|
|
66401
|
+
},{"../../Decorators":260}],387:[function(require,module,exports){
|
|
66340
66402
|
"use strict";
|
|
66341
66403
|
/*!
|
|
66342
66404
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66494,7 +66556,7 @@ ParseTreePattern = __decorate([
|
|
|
66494
66556
|
], ParseTreePattern);
|
|
66495
66557
|
exports.ParseTreePattern = ParseTreePattern;
|
|
66496
66558
|
|
|
66497
|
-
},{"../../Decorators":
|
|
66559
|
+
},{"../../Decorators":260,"../xpath/XPath":393}],388:[function(require,module,exports){
|
|
66498
66560
|
"use strict";
|
|
66499
66561
|
/*!
|
|
66500
66562
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66972,7 +67034,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
|
|
|
66972
67034
|
ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
|
|
66973
67035
|
})(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
|
|
66974
67036
|
|
|
66975
|
-
},{"../../BailErrorStrategy":
|
|
67037
|
+
},{"../../BailErrorStrategy":250,"../../CharStreams":253,"../../CommonTokenStream":258,"../../Decorators":260,"../../ListTokenSource":271,"../../ParserInterpreter":275,"../../ParserRuleContext":276,"../../RecognitionException":279,"../../Token":285,"../../misc/MultiMap":374,"../../misc/ParseCancellationException":377,"../RuleNode":382,"../TerminalNode":383,"./ParseTreeMatch":386,"./ParseTreePattern":387,"./RuleTagToken":389,"./TagChunk":390,"./TextChunk":391,"./TokenTagToken":392}],389:[function(require,module,exports){
|
|
66976
67038
|
"use strict";
|
|
66977
67039
|
/*!
|
|
66978
67040
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67170,7 +67232,7 @@ RuleTagToken = __decorate([
|
|
|
67170
67232
|
], RuleTagToken);
|
|
67171
67233
|
exports.RuleTagToken = RuleTagToken;
|
|
67172
67234
|
|
|
67173
|
-
},{"../../Decorators":
|
|
67235
|
+
},{"../../Decorators":260,"../../Token":285}],390:[function(require,module,exports){
|
|
67174
67236
|
"use strict";
|
|
67175
67237
|
/*!
|
|
67176
67238
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67257,7 +67319,7 @@ __decorate([
|
|
|
67257
67319
|
], TagChunk.prototype, "toString", null);
|
|
67258
67320
|
exports.TagChunk = TagChunk;
|
|
67259
67321
|
|
|
67260
|
-
},{"../../Decorators":
|
|
67322
|
+
},{"../../Decorators":260,"./Chunk":385}],391:[function(require,module,exports){
|
|
67261
67323
|
"use strict";
|
|
67262
67324
|
/*!
|
|
67263
67325
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67327,7 +67389,7 @@ TextChunk = __decorate([
|
|
|
67327
67389
|
], TextChunk);
|
|
67328
67390
|
exports.TextChunk = TextChunk;
|
|
67329
67391
|
|
|
67330
|
-
},{"../../Decorators":
|
|
67392
|
+
},{"../../Decorators":260,"./Chunk":385}],392:[function(require,module,exports){
|
|
67331
67393
|
"use strict";
|
|
67332
67394
|
/*!
|
|
67333
67395
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67422,7 +67484,7 @@ TokenTagToken = __decorate([
|
|
|
67422
67484
|
], TokenTagToken);
|
|
67423
67485
|
exports.TokenTagToken = TokenTagToken;
|
|
67424
67486
|
|
|
67425
|
-
},{"../../CommonToken":
|
|
67487
|
+
},{"../../CommonToken":256,"../../Decorators":260}],393:[function(require,module,exports){
|
|
67426
67488
|
"use strict";
|
|
67427
67489
|
/*!
|
|
67428
67490
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67619,7 +67681,7 @@ exports.XPath = XPath;
|
|
|
67619
67681
|
XPath.WILDCARD = "*"; // word not operator/separator
|
|
67620
67682
|
XPath.NOT = "!"; // word for invert operator
|
|
67621
67683
|
|
|
67622
|
-
},{"../../CharStreams":
|
|
67684
|
+
},{"../../CharStreams":253,"../../CommonTokenStream":258,"../../LexerNoViableAltException":270,"../../ParserRuleContext":276,"../../Token":285,"./XPathLexer":395,"./XPathLexerErrorListener":396,"./XPathRuleAnywhereElement":397,"./XPathRuleElement":398,"./XPathTokenAnywhereElement":399,"./XPathTokenElement":400,"./XPathWildcardAnywhereElement":401,"./XPathWildcardElement":402}],394:[function(require,module,exports){
|
|
67623
67685
|
"use strict";
|
|
67624
67686
|
/*!
|
|
67625
67687
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67654,7 +67716,7 @@ __decorate([
|
|
|
67654
67716
|
], XPathElement.prototype, "toString", null);
|
|
67655
67717
|
exports.XPathElement = XPathElement;
|
|
67656
67718
|
|
|
67657
|
-
},{"../../Decorators":
|
|
67719
|
+
},{"../../Decorators":260}],395:[function(require,module,exports){
|
|
67658
67720
|
"use strict";
|
|
67659
67721
|
// Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
67660
67722
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -68129,7 +68191,7 @@ XPathLexer._serializedATN = Utils.join([
|
|
|
68129
68191
|
XPathLexer._serializedATNSegment1,
|
|
68130
68192
|
], "");
|
|
68131
68193
|
|
|
68132
|
-
},{"../../Lexer":
|
|
68194
|
+
},{"../../Lexer":268,"../../VocabularyImpl":291,"../../atn/ATNDeserializer":297,"../../atn/LexerATNSimulator":318,"../../misc/Utils":379}],396:[function(require,module,exports){
|
|
68133
68195
|
"use strict";
|
|
68134
68196
|
/*!
|
|
68135
68197
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68154,7 +68216,7 @@ __decorate([
|
|
|
68154
68216
|
], XPathLexerErrorListener.prototype, "syntaxError", null);
|
|
68155
68217
|
exports.XPathLexerErrorListener = XPathLexerErrorListener;
|
|
68156
68218
|
|
|
68157
|
-
},{"../../Decorators":
|
|
68219
|
+
},{"../../Decorators":260}],397:[function(require,module,exports){
|
|
68158
68220
|
"use strict";
|
|
68159
68221
|
/*!
|
|
68160
68222
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68188,7 +68250,7 @@ __decorate([
|
|
|
68188
68250
|
], XPathRuleAnywhereElement.prototype, "evaluate", null);
|
|
68189
68251
|
exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
|
|
68190
68252
|
|
|
68191
|
-
},{"../../Decorators":
|
|
68253
|
+
},{"../../Decorators":260,"../Trees":384,"./XPathElement":394}],398:[function(require,module,exports){
|
|
68192
68254
|
"use strict";
|
|
68193
68255
|
/*!
|
|
68194
68256
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68231,7 +68293,7 @@ __decorate([
|
|
|
68231
68293
|
], XPathRuleElement.prototype, "evaluate", null);
|
|
68232
68294
|
exports.XPathRuleElement = XPathRuleElement;
|
|
68233
68295
|
|
|
68234
|
-
},{"../../Decorators":
|
|
68296
|
+
},{"../../Decorators":260,"../../ParserRuleContext":276,"../Trees":384,"./XPathElement":394}],399:[function(require,module,exports){
|
|
68235
68297
|
"use strict";
|
|
68236
68298
|
/*!
|
|
68237
68299
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68263,7 +68325,7 @@ __decorate([
|
|
|
68263
68325
|
], XPathTokenAnywhereElement.prototype, "evaluate", null);
|
|
68264
68326
|
exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
|
|
68265
68327
|
|
|
68266
|
-
},{"../../Decorators":
|
|
68328
|
+
},{"../../Decorators":260,"../Trees":384,"./XPathElement":394}],400:[function(require,module,exports){
|
|
68267
68329
|
"use strict";
|
|
68268
68330
|
/*!
|
|
68269
68331
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68306,7 +68368,7 @@ __decorate([
|
|
|
68306
68368
|
], XPathTokenElement.prototype, "evaluate", null);
|
|
68307
68369
|
exports.XPathTokenElement = XPathTokenElement;
|
|
68308
68370
|
|
|
68309
|
-
},{"../../Decorators":
|
|
68371
|
+
},{"../../Decorators":260,"../TerminalNode":383,"../Trees":384,"./XPathElement":394}],401:[function(require,module,exports){
|
|
68310
68372
|
"use strict";
|
|
68311
68373
|
/*!
|
|
68312
68374
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68342,7 +68404,7 @@ __decorate([
|
|
|
68342
68404
|
], XPathWildcardAnywhereElement.prototype, "evaluate", null);
|
|
68343
68405
|
exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
|
|
68344
68406
|
|
|
68345
|
-
},{"../../Decorators":
|
|
68407
|
+
},{"../../Decorators":260,"../Trees":384,"./XPath":393,"./XPathElement":394}],402:[function(require,module,exports){
|
|
68346
68408
|
"use strict";
|
|
68347
68409
|
/*!
|
|
68348
68410
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68382,7 +68444,7 @@ __decorate([
|
|
|
68382
68444
|
], XPathWildcardElement.prototype, "evaluate", null);
|
|
68383
68445
|
exports.XPathWildcardElement = XPathWildcardElement;
|
|
68384
68446
|
|
|
68385
|
-
},{"../../Decorators":
|
|
68447
|
+
},{"../../Decorators":260,"../Trees":384,"./XPath":393,"./XPathElement":394}],403:[function(require,module,exports){
|
|
68386
68448
|
(function (global){(function (){
|
|
68387
68449
|
'use strict';
|
|
68388
68450
|
|
|
@@ -68892,7 +68954,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
68892
68954
|
};
|
|
68893
68955
|
|
|
68894
68956
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
68895
|
-
},{"object.assign/polyfill":
|
|
68957
|
+
},{"object.assign/polyfill":460,"util/":406}],404:[function(require,module,exports){
|
|
68896
68958
|
if (typeof Object.create === 'function') {
|
|
68897
68959
|
// implementation from standard node.js 'util' module
|
|
68898
68960
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -68917,14 +68979,14 @@ if (typeof Object.create === 'function') {
|
|
|
68917
68979
|
}
|
|
68918
68980
|
}
|
|
68919
68981
|
|
|
68920
|
-
},{}],
|
|
68982
|
+
},{}],405:[function(require,module,exports){
|
|
68921
68983
|
module.exports = function isBuffer(arg) {
|
|
68922
68984
|
return arg && typeof arg === 'object'
|
|
68923
68985
|
&& typeof arg.copy === 'function'
|
|
68924
68986
|
&& typeof arg.fill === 'function'
|
|
68925
68987
|
&& typeof arg.readUInt8 === 'function';
|
|
68926
68988
|
}
|
|
68927
|
-
},{}],
|
|
68989
|
+
},{}],406:[function(require,module,exports){
|
|
68928
68990
|
(function (process,global){(function (){
|
|
68929
68991
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
68930
68992
|
//
|
|
@@ -69514,7 +69576,7 @@ function hasOwnProperty(obj, prop) {
|
|
|
69514
69576
|
}
|
|
69515
69577
|
|
|
69516
69578
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
69517
|
-
},{"./support/isBuffer":
|
|
69579
|
+
},{"./support/isBuffer":405,"_process":462,"inherits":404}],407:[function(require,module,exports){
|
|
69518
69580
|
(function (global){(function (){
|
|
69519
69581
|
'use strict';
|
|
69520
69582
|
|
|
@@ -69535,7 +69597,7 @@ module.exports = function availableTypedArrays() {
|
|
|
69535
69597
|
};
|
|
69536
69598
|
|
|
69537
69599
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
69538
|
-
},{"possible-typed-array-names":
|
|
69600
|
+
},{"possible-typed-array-names":461}],408:[function(require,module,exports){
|
|
69539
69601
|
(function (process,global){(function (){
|
|
69540
69602
|
module.exports = process.hrtime || hrtime
|
|
69541
69603
|
|
|
@@ -69566,7 +69628,7 @@ function hrtime(previousTimestamp){
|
|
|
69566
69628
|
return [seconds,nanoseconds]
|
|
69567
69629
|
}
|
|
69568
69630
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
69569
|
-
},{"_process":
|
|
69631
|
+
},{"_process":462}],409:[function(require,module,exports){
|
|
69570
69632
|
'use strict';
|
|
69571
69633
|
|
|
69572
69634
|
var bind = require('function-bind');
|
|
@@ -69578,7 +69640,7 @@ var $reflectApply = require('./reflectApply');
|
|
|
69578
69640
|
/** @type {import('./actualApply')} */
|
|
69579
69641
|
module.exports = $reflectApply || bind.call($call, $apply);
|
|
69580
69642
|
|
|
69581
|
-
},{"./functionApply":
|
|
69643
|
+
},{"./functionApply":411,"./functionCall":412,"./reflectApply":414,"function-bind":430}],410:[function(require,module,exports){
|
|
69582
69644
|
'use strict';
|
|
69583
69645
|
|
|
69584
69646
|
var bind = require('function-bind');
|
|
@@ -69590,19 +69652,19 @@ module.exports = function applyBind() {
|
|
|
69590
69652
|
return actualApply(bind, $apply, arguments);
|
|
69591
69653
|
};
|
|
69592
69654
|
|
|
69593
|
-
},{"./actualApply":
|
|
69655
|
+
},{"./actualApply":409,"./functionApply":411,"function-bind":430}],411:[function(require,module,exports){
|
|
69594
69656
|
'use strict';
|
|
69595
69657
|
|
|
69596
69658
|
/** @type {import('./functionApply')} */
|
|
69597
69659
|
module.exports = Function.prototype.apply;
|
|
69598
69660
|
|
|
69599
|
-
},{}],
|
|
69661
|
+
},{}],412:[function(require,module,exports){
|
|
69600
69662
|
'use strict';
|
|
69601
69663
|
|
|
69602
69664
|
/** @type {import('./functionCall')} */
|
|
69603
69665
|
module.exports = Function.prototype.call;
|
|
69604
69666
|
|
|
69605
|
-
},{}],
|
|
69667
|
+
},{}],413:[function(require,module,exports){
|
|
69606
69668
|
'use strict';
|
|
69607
69669
|
|
|
69608
69670
|
var bind = require('function-bind');
|
|
@@ -69619,13 +69681,13 @@ module.exports = function callBindBasic(args) {
|
|
|
69619
69681
|
return $actualApply(bind, $call, args);
|
|
69620
69682
|
};
|
|
69621
69683
|
|
|
69622
|
-
},{"./actualApply":
|
|
69684
|
+
},{"./actualApply":409,"./functionCall":412,"es-errors/type":425,"function-bind":430}],414:[function(require,module,exports){
|
|
69623
69685
|
'use strict';
|
|
69624
69686
|
|
|
69625
69687
|
/** @type {import('./reflectApply')} */
|
|
69626
69688
|
module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
|
|
69627
69689
|
|
|
69628
|
-
},{}],
|
|
69690
|
+
},{}],415:[function(require,module,exports){
|
|
69629
69691
|
'use strict';
|
|
69630
69692
|
|
|
69631
69693
|
var setFunctionLength = require('set-function-length');
|
|
@@ -69651,7 +69713,7 @@ if ($defineProperty) {
|
|
|
69651
69713
|
module.exports.apply = applyBind;
|
|
69652
69714
|
}
|
|
69653
69715
|
|
|
69654
|
-
},{"call-bind-apply-helpers":
|
|
69716
|
+
},{"call-bind-apply-helpers":413,"call-bind-apply-helpers/applyBind":410,"es-define-property":419,"set-function-length":464}],416:[function(require,module,exports){
|
|
69655
69717
|
'use strict';
|
|
69656
69718
|
|
|
69657
69719
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -69672,7 +69734,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
69672
69734
|
return intrinsic;
|
|
69673
69735
|
};
|
|
69674
69736
|
|
|
69675
|
-
},{"call-bind-apply-helpers":
|
|
69737
|
+
},{"call-bind-apply-helpers":413,"get-intrinsic":431}],417:[function(require,module,exports){
|
|
69676
69738
|
'use strict';
|
|
69677
69739
|
|
|
69678
69740
|
var $defineProperty = require('es-define-property');
|
|
@@ -69730,7 +69792,7 @@ module.exports = function defineDataProperty(
|
|
|
69730
69792
|
}
|
|
69731
69793
|
};
|
|
69732
69794
|
|
|
69733
|
-
},{"es-define-property":
|
|
69795
|
+
},{"es-define-property":419,"es-errors/syntax":424,"es-errors/type":425,"gopd":436}],418:[function(require,module,exports){
|
|
69734
69796
|
'use strict';
|
|
69735
69797
|
|
|
69736
69798
|
var callBind = require('call-bind-apply-helpers');
|
|
@@ -69762,7 +69824,7 @@ module.exports = desc && typeof desc.get === 'function'
|
|
|
69762
69824
|
}
|
|
69763
69825
|
: false;
|
|
69764
69826
|
|
|
69765
|
-
},{"call-bind-apply-helpers":
|
|
69827
|
+
},{"call-bind-apply-helpers":413,"gopd":436}],419:[function(require,module,exports){
|
|
69766
69828
|
'use strict';
|
|
69767
69829
|
|
|
69768
69830
|
/** @type {import('.')} */
|
|
@@ -69778,55 +69840,55 @@ if ($defineProperty) {
|
|
|
69778
69840
|
|
|
69779
69841
|
module.exports = $defineProperty;
|
|
69780
69842
|
|
|
69781
|
-
},{}],
|
|
69843
|
+
},{}],420:[function(require,module,exports){
|
|
69782
69844
|
'use strict';
|
|
69783
69845
|
|
|
69784
69846
|
/** @type {import('./eval')} */
|
|
69785
69847
|
module.exports = EvalError;
|
|
69786
69848
|
|
|
69787
|
-
},{}],
|
|
69849
|
+
},{}],421:[function(require,module,exports){
|
|
69788
69850
|
'use strict';
|
|
69789
69851
|
|
|
69790
69852
|
/** @type {import('.')} */
|
|
69791
69853
|
module.exports = Error;
|
|
69792
69854
|
|
|
69793
|
-
},{}],
|
|
69855
|
+
},{}],422:[function(require,module,exports){
|
|
69794
69856
|
'use strict';
|
|
69795
69857
|
|
|
69796
69858
|
/** @type {import('./range')} */
|
|
69797
69859
|
module.exports = RangeError;
|
|
69798
69860
|
|
|
69799
|
-
},{}],
|
|
69861
|
+
},{}],423:[function(require,module,exports){
|
|
69800
69862
|
'use strict';
|
|
69801
69863
|
|
|
69802
69864
|
/** @type {import('./ref')} */
|
|
69803
69865
|
module.exports = ReferenceError;
|
|
69804
69866
|
|
|
69805
|
-
},{}],
|
|
69867
|
+
},{}],424:[function(require,module,exports){
|
|
69806
69868
|
'use strict';
|
|
69807
69869
|
|
|
69808
69870
|
/** @type {import('./syntax')} */
|
|
69809
69871
|
module.exports = SyntaxError;
|
|
69810
69872
|
|
|
69811
|
-
},{}],
|
|
69873
|
+
},{}],425:[function(require,module,exports){
|
|
69812
69874
|
'use strict';
|
|
69813
69875
|
|
|
69814
69876
|
/** @type {import('./type')} */
|
|
69815
69877
|
module.exports = TypeError;
|
|
69816
69878
|
|
|
69817
|
-
},{}],
|
|
69879
|
+
},{}],426:[function(require,module,exports){
|
|
69818
69880
|
'use strict';
|
|
69819
69881
|
|
|
69820
69882
|
/** @type {import('./uri')} */
|
|
69821
69883
|
module.exports = URIError;
|
|
69822
69884
|
|
|
69823
|
-
},{}],
|
|
69885
|
+
},{}],427:[function(require,module,exports){
|
|
69824
69886
|
'use strict';
|
|
69825
69887
|
|
|
69826
69888
|
/** @type {import('.')} */
|
|
69827
69889
|
module.exports = Object;
|
|
69828
69890
|
|
|
69829
|
-
},{}],
|
|
69891
|
+
},{}],428:[function(require,module,exports){
|
|
69830
69892
|
'use strict';
|
|
69831
69893
|
|
|
69832
69894
|
var isCallable = require('is-callable');
|
|
@@ -69897,7 +69959,7 @@ module.exports = function forEach(list, iterator, thisArg) {
|
|
|
69897
69959
|
}
|
|
69898
69960
|
};
|
|
69899
69961
|
|
|
69900
|
-
},{"is-callable":
|
|
69962
|
+
},{"is-callable":444}],429:[function(require,module,exports){
|
|
69901
69963
|
'use strict';
|
|
69902
69964
|
|
|
69903
69965
|
/* eslint no-invalid-this: 1 */
|
|
@@ -69983,14 +70045,14 @@ module.exports = function bind(that) {
|
|
|
69983
70045
|
return bound;
|
|
69984
70046
|
};
|
|
69985
70047
|
|
|
69986
|
-
},{}],
|
|
70048
|
+
},{}],430:[function(require,module,exports){
|
|
69987
70049
|
'use strict';
|
|
69988
70050
|
|
|
69989
70051
|
var implementation = require('./implementation');
|
|
69990
70052
|
|
|
69991
70053
|
module.exports = Function.prototype.bind || implementation;
|
|
69992
70054
|
|
|
69993
|
-
},{"./implementation":
|
|
70055
|
+
},{"./implementation":429}],431:[function(require,module,exports){
|
|
69994
70056
|
'use strict';
|
|
69995
70057
|
|
|
69996
70058
|
var undefined;
|
|
@@ -70370,7 +70432,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
70370
70432
|
return value;
|
|
70371
70433
|
};
|
|
70372
70434
|
|
|
70373
|
-
},{"call-bind-apply-helpers/functionApply":
|
|
70435
|
+
},{"call-bind-apply-helpers/functionApply":411,"call-bind-apply-helpers/functionCall":412,"es-define-property":419,"es-errors":421,"es-errors/eval":420,"es-errors/range":422,"es-errors/ref":423,"es-errors/syntax":424,"es-errors/type":425,"es-errors/uri":426,"es-object-atoms":427,"function-bind":430,"get-proto":434,"get-proto/Object.getPrototypeOf":432,"get-proto/Reflect.getPrototypeOf":433,"gopd":436,"has-symbols":438,"hasown":441,"math-intrinsics/abs":448,"math-intrinsics/floor":449,"math-intrinsics/max":451,"math-intrinsics/min":452,"math-intrinsics/pow":453,"math-intrinsics/round":454,"math-intrinsics/sign":455}],432:[function(require,module,exports){
|
|
70374
70436
|
'use strict';
|
|
70375
70437
|
|
|
70376
70438
|
var $Object = require('es-object-atoms');
|
|
@@ -70378,13 +70440,13 @@ var $Object = require('es-object-atoms');
|
|
|
70378
70440
|
/** @type {import('./Object.getPrototypeOf')} */
|
|
70379
70441
|
module.exports = $Object.getPrototypeOf || null;
|
|
70380
70442
|
|
|
70381
|
-
},{"es-object-atoms":
|
|
70443
|
+
},{"es-object-atoms":427}],433:[function(require,module,exports){
|
|
70382
70444
|
'use strict';
|
|
70383
70445
|
|
|
70384
70446
|
/** @type {import('./Reflect.getPrototypeOf')} */
|
|
70385
70447
|
module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
|
|
70386
70448
|
|
|
70387
|
-
},{}],
|
|
70449
|
+
},{}],434:[function(require,module,exports){
|
|
70388
70450
|
'use strict';
|
|
70389
70451
|
|
|
70390
70452
|
var reflectGetProto = require('./Reflect.getPrototypeOf');
|
|
@@ -70413,13 +70475,13 @@ module.exports = reflectGetProto
|
|
|
70413
70475
|
}
|
|
70414
70476
|
: null;
|
|
70415
70477
|
|
|
70416
|
-
},{"./Object.getPrototypeOf":
|
|
70478
|
+
},{"./Object.getPrototypeOf":432,"./Reflect.getPrototypeOf":433,"dunder-proto/get":418}],435:[function(require,module,exports){
|
|
70417
70479
|
'use strict';
|
|
70418
70480
|
|
|
70419
70481
|
/** @type {import('./gOPD')} */
|
|
70420
70482
|
module.exports = Object.getOwnPropertyDescriptor;
|
|
70421
70483
|
|
|
70422
|
-
},{}],
|
|
70484
|
+
},{}],436:[function(require,module,exports){
|
|
70423
70485
|
'use strict';
|
|
70424
70486
|
|
|
70425
70487
|
/** @type {import('.')} */
|
|
@@ -70436,7 +70498,7 @@ if ($gOPD) {
|
|
|
70436
70498
|
|
|
70437
70499
|
module.exports = $gOPD;
|
|
70438
70500
|
|
|
70439
|
-
},{"./gOPD":
|
|
70501
|
+
},{"./gOPD":435}],437:[function(require,module,exports){
|
|
70440
70502
|
'use strict';
|
|
70441
70503
|
|
|
70442
70504
|
var $defineProperty = require('es-define-property');
|
|
@@ -70460,7 +70522,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
|
|
|
70460
70522
|
|
|
70461
70523
|
module.exports = hasPropertyDescriptors;
|
|
70462
70524
|
|
|
70463
|
-
},{"es-define-property":
|
|
70525
|
+
},{"es-define-property":419}],438:[function(require,module,exports){
|
|
70464
70526
|
'use strict';
|
|
70465
70527
|
|
|
70466
70528
|
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
|
@@ -70476,7 +70538,7 @@ module.exports = function hasNativeSymbols() {
|
|
|
70476
70538
|
return hasSymbolSham();
|
|
70477
70539
|
};
|
|
70478
70540
|
|
|
70479
|
-
},{"./shams":
|
|
70541
|
+
},{"./shams":439}],439:[function(require,module,exports){
|
|
70480
70542
|
'use strict';
|
|
70481
70543
|
|
|
70482
70544
|
/** @type {import('./shams')} */
|
|
@@ -70523,7 +70585,7 @@ module.exports = function hasSymbols() {
|
|
|
70523
70585
|
return true;
|
|
70524
70586
|
};
|
|
70525
70587
|
|
|
70526
|
-
},{}],
|
|
70588
|
+
},{}],440:[function(require,module,exports){
|
|
70527
70589
|
'use strict';
|
|
70528
70590
|
|
|
70529
70591
|
var hasSymbols = require('has-symbols/shams');
|
|
@@ -70533,7 +70595,7 @@ module.exports = function hasToStringTagShams() {
|
|
|
70533
70595
|
return hasSymbols() && !!Symbol.toStringTag;
|
|
70534
70596
|
};
|
|
70535
70597
|
|
|
70536
|
-
},{"has-symbols/shams":
|
|
70598
|
+
},{"has-symbols/shams":439}],441:[function(require,module,exports){
|
|
70537
70599
|
'use strict';
|
|
70538
70600
|
|
|
70539
70601
|
var call = Function.prototype.call;
|
|
@@ -70543,7 +70605,7 @@ var bind = require('function-bind');
|
|
|
70543
70605
|
/** @type {import('.')} */
|
|
70544
70606
|
module.exports = bind.call(call, $hasOwn);
|
|
70545
70607
|
|
|
70546
|
-
},{"function-bind":
|
|
70608
|
+
},{"function-bind":430}],442:[function(require,module,exports){
|
|
70547
70609
|
if (typeof Object.create === 'function') {
|
|
70548
70610
|
// implementation from standard node.js 'util' module
|
|
70549
70611
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -70572,7 +70634,7 @@ if (typeof Object.create === 'function') {
|
|
|
70572
70634
|
}
|
|
70573
70635
|
}
|
|
70574
70636
|
|
|
70575
|
-
},{}],
|
|
70637
|
+
},{}],443:[function(require,module,exports){
|
|
70576
70638
|
'use strict';
|
|
70577
70639
|
|
|
70578
70640
|
var hasToStringTag = require('has-tostringtag/shams')();
|
|
@@ -70618,7 +70680,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
|
70618
70680
|
/** @type {import('.')} */
|
|
70619
70681
|
module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
70620
70682
|
|
|
70621
|
-
},{"call-bound":
|
|
70683
|
+
},{"call-bound":416,"has-tostringtag/shams":440}],444:[function(require,module,exports){
|
|
70622
70684
|
'use strict';
|
|
70623
70685
|
|
|
70624
70686
|
var fnToStr = Function.prototype.toString;
|
|
@@ -70721,7 +70783,7 @@ module.exports = reflectApply
|
|
|
70721
70783
|
return tryFunctionObject(value);
|
|
70722
70784
|
};
|
|
70723
70785
|
|
|
70724
|
-
},{}],
|
|
70786
|
+
},{}],445:[function(require,module,exports){
|
|
70725
70787
|
'use strict';
|
|
70726
70788
|
|
|
70727
70789
|
var callBound = require('call-bound');
|
|
@@ -70770,7 +70832,7 @@ module.exports = function isGeneratorFunction(fn) {
|
|
|
70770
70832
|
return getProto(fn) === GeneratorFunction;
|
|
70771
70833
|
};
|
|
70772
70834
|
|
|
70773
|
-
},{"call-bound":
|
|
70835
|
+
},{"call-bound":416,"get-proto":434,"has-tostringtag/shams":440,"safe-regex-test":463}],446:[function(require,module,exports){
|
|
70774
70836
|
'use strict';
|
|
70775
70837
|
|
|
70776
70838
|
var callBound = require('call-bound');
|
|
@@ -70841,7 +70903,7 @@ if (hasToStringTag) {
|
|
|
70841
70903
|
|
|
70842
70904
|
module.exports = fn;
|
|
70843
70905
|
|
|
70844
|
-
},{"call-bound":
|
|
70906
|
+
},{"call-bound":416,"gopd":436,"has-tostringtag/shams":440,"hasown":441}],447:[function(require,module,exports){
|
|
70845
70907
|
'use strict';
|
|
70846
70908
|
|
|
70847
70909
|
var whichTypedArray = require('which-typed-array');
|
|
@@ -70851,19 +70913,19 @@ module.exports = function isTypedArray(value) {
|
|
|
70851
70913
|
return !!whichTypedArray(value);
|
|
70852
70914
|
};
|
|
70853
70915
|
|
|
70854
|
-
},{"which-typed-array":
|
|
70916
|
+
},{"which-typed-array":468}],448:[function(require,module,exports){
|
|
70855
70917
|
'use strict';
|
|
70856
70918
|
|
|
70857
70919
|
/** @type {import('./abs')} */
|
|
70858
70920
|
module.exports = Math.abs;
|
|
70859
70921
|
|
|
70860
|
-
},{}],
|
|
70922
|
+
},{}],449:[function(require,module,exports){
|
|
70861
70923
|
'use strict';
|
|
70862
70924
|
|
|
70863
70925
|
/** @type {import('./floor')} */
|
|
70864
70926
|
module.exports = Math.floor;
|
|
70865
70927
|
|
|
70866
|
-
},{}],
|
|
70928
|
+
},{}],450:[function(require,module,exports){
|
|
70867
70929
|
'use strict';
|
|
70868
70930
|
|
|
70869
70931
|
/** @type {import('./isNaN')} */
|
|
@@ -70871,31 +70933,31 @@ module.exports = Number.isNaN || function isNaN(a) {
|
|
|
70871
70933
|
return a !== a;
|
|
70872
70934
|
};
|
|
70873
70935
|
|
|
70874
|
-
},{}],
|
|
70936
|
+
},{}],451:[function(require,module,exports){
|
|
70875
70937
|
'use strict';
|
|
70876
70938
|
|
|
70877
70939
|
/** @type {import('./max')} */
|
|
70878
70940
|
module.exports = Math.max;
|
|
70879
70941
|
|
|
70880
|
-
},{}],
|
|
70942
|
+
},{}],452:[function(require,module,exports){
|
|
70881
70943
|
'use strict';
|
|
70882
70944
|
|
|
70883
70945
|
/** @type {import('./min')} */
|
|
70884
70946
|
module.exports = Math.min;
|
|
70885
70947
|
|
|
70886
|
-
},{}],
|
|
70948
|
+
},{}],453:[function(require,module,exports){
|
|
70887
70949
|
'use strict';
|
|
70888
70950
|
|
|
70889
70951
|
/** @type {import('./pow')} */
|
|
70890
70952
|
module.exports = Math.pow;
|
|
70891
70953
|
|
|
70892
|
-
},{}],
|
|
70954
|
+
},{}],454:[function(require,module,exports){
|
|
70893
70955
|
'use strict';
|
|
70894
70956
|
|
|
70895
70957
|
/** @type {import('./round')} */
|
|
70896
70958
|
module.exports = Math.round;
|
|
70897
70959
|
|
|
70898
|
-
},{}],
|
|
70960
|
+
},{}],455:[function(require,module,exports){
|
|
70899
70961
|
'use strict';
|
|
70900
70962
|
|
|
70901
70963
|
var $isNaN = require('./isNaN');
|
|
@@ -70908,7 +70970,7 @@ module.exports = function sign(number) {
|
|
|
70908
70970
|
return number < 0 ? -1 : +1;
|
|
70909
70971
|
};
|
|
70910
70972
|
|
|
70911
|
-
},{"./isNaN":
|
|
70973
|
+
},{"./isNaN":450}],456:[function(require,module,exports){
|
|
70912
70974
|
'use strict';
|
|
70913
70975
|
|
|
70914
70976
|
var keysShim;
|
|
@@ -71032,7 +71094,7 @@ if (!Object.keys) {
|
|
|
71032
71094
|
}
|
|
71033
71095
|
module.exports = keysShim;
|
|
71034
71096
|
|
|
71035
|
-
},{"./isArguments":
|
|
71097
|
+
},{"./isArguments":458}],457:[function(require,module,exports){
|
|
71036
71098
|
'use strict';
|
|
71037
71099
|
|
|
71038
71100
|
var slice = Array.prototype.slice;
|
|
@@ -71066,7 +71128,7 @@ keysShim.shim = function shimObjectKeys() {
|
|
|
71066
71128
|
|
|
71067
71129
|
module.exports = keysShim;
|
|
71068
71130
|
|
|
71069
|
-
},{"./implementation":
|
|
71131
|
+
},{"./implementation":456,"./isArguments":458}],458:[function(require,module,exports){
|
|
71070
71132
|
'use strict';
|
|
71071
71133
|
|
|
71072
71134
|
var toStr = Object.prototype.toString;
|
|
@@ -71085,7 +71147,7 @@ module.exports = function isArguments(value) {
|
|
|
71085
71147
|
return isArgs;
|
|
71086
71148
|
};
|
|
71087
71149
|
|
|
71088
|
-
},{}],
|
|
71150
|
+
},{}],459:[function(require,module,exports){
|
|
71089
71151
|
'use strict';
|
|
71090
71152
|
|
|
71091
71153
|
// modified from https://github.com/es-shims/es6-shim
|
|
@@ -71133,7 +71195,7 @@ module.exports = function assign(target, source1) {
|
|
|
71133
71195
|
return to; // step 4
|
|
71134
71196
|
};
|
|
71135
71197
|
|
|
71136
|
-
},{"call-bound":
|
|
71198
|
+
},{"call-bound":416,"es-object-atoms":427,"has-symbols/shams":439,"object-keys":457}],460:[function(require,module,exports){
|
|
71137
71199
|
'use strict';
|
|
71138
71200
|
|
|
71139
71201
|
var implementation = require('./implementation');
|
|
@@ -71190,7 +71252,7 @@ module.exports = function getPolyfill() {
|
|
|
71190
71252
|
return Object.assign;
|
|
71191
71253
|
};
|
|
71192
71254
|
|
|
71193
|
-
},{"./implementation":
|
|
71255
|
+
},{"./implementation":459}],461:[function(require,module,exports){
|
|
71194
71256
|
'use strict';
|
|
71195
71257
|
|
|
71196
71258
|
/** @type {import('.')} */
|
|
@@ -71209,7 +71271,7 @@ module.exports = [
|
|
|
71209
71271
|
'BigUint64Array'
|
|
71210
71272
|
];
|
|
71211
71273
|
|
|
71212
|
-
},{}],
|
|
71274
|
+
},{}],462:[function(require,module,exports){
|
|
71213
71275
|
// shim for using process in browser
|
|
71214
71276
|
var process = module.exports = {};
|
|
71215
71277
|
|
|
@@ -71395,7 +71457,7 @@ process.chdir = function (dir) {
|
|
|
71395
71457
|
};
|
|
71396
71458
|
process.umask = function() { return 0; };
|
|
71397
71459
|
|
|
71398
|
-
},{}],
|
|
71460
|
+
},{}],463:[function(require,module,exports){
|
|
71399
71461
|
'use strict';
|
|
71400
71462
|
|
|
71401
71463
|
var callBound = require('call-bound');
|
|
@@ -71414,7 +71476,7 @@ module.exports = function regexTester(regex) {
|
|
|
71414
71476
|
};
|
|
71415
71477
|
};
|
|
71416
71478
|
|
|
71417
|
-
},{"call-bound":
|
|
71479
|
+
},{"call-bound":416,"es-errors/type":425,"is-regex":446}],464:[function(require,module,exports){
|
|
71418
71480
|
'use strict';
|
|
71419
71481
|
|
|
71420
71482
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -71458,9 +71520,9 @@ module.exports = function setFunctionLength(fn, length) {
|
|
|
71458
71520
|
return fn;
|
|
71459
71521
|
};
|
|
71460
71522
|
|
|
71461
|
-
},{"define-data-property":
|
|
71462
|
-
arguments[4][
|
|
71463
|
-
},{"dup":
|
|
71523
|
+
},{"define-data-property":417,"es-errors/type":425,"get-intrinsic":431,"gopd":436,"has-property-descriptors":437}],465:[function(require,module,exports){
|
|
71524
|
+
arguments[4][405][0].apply(exports,arguments)
|
|
71525
|
+
},{"dup":405}],466:[function(require,module,exports){
|
|
71464
71526
|
// Currently in sync with Node.js lib/internal/util/types.js
|
|
71465
71527
|
// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
|
|
71466
71528
|
|
|
@@ -71796,7 +71858,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
|
|
|
71796
71858
|
});
|
|
71797
71859
|
});
|
|
71798
71860
|
|
|
71799
|
-
},{"is-arguments":
|
|
71861
|
+
},{"is-arguments":443,"is-generator-function":445,"is-typed-array":447,"which-typed-array":468}],467:[function(require,module,exports){
|
|
71800
71862
|
(function (process){(function (){
|
|
71801
71863
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
71802
71864
|
//
|
|
@@ -72515,7 +72577,7 @@ function callbackify(original) {
|
|
|
72515
72577
|
exports.callbackify = callbackify;
|
|
72516
72578
|
|
|
72517
72579
|
}).call(this)}).call(this,require('_process'))
|
|
72518
|
-
},{"./support/isBuffer":
|
|
72580
|
+
},{"./support/isBuffer":465,"./support/types":466,"_process":462,"inherits":442}],468:[function(require,module,exports){
|
|
72519
72581
|
(function (global){(function (){
|
|
72520
72582
|
'use strict';
|
|
72521
72583
|
|
|
@@ -72636,5 +72698,5 @@ module.exports = function whichTypedArray(value) {
|
|
|
72636
72698
|
};
|
|
72637
72699
|
|
|
72638
72700
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
72639
|
-
},{"available-typed-arrays":
|
|
72701
|
+
},{"available-typed-arrays":407,"call-bind":415,"call-bound":416,"for-each":428,"get-proto":434,"gopd":436,"has-tostringtag/shams":440}]},{},[134])(134)
|
|
72640
72702
|
});
|