@designliquido/delegua 0.55.0 → 0.57.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/avaliador-sintatico/avaliador-sintatico.d.ts +7 -0
- package/avaliador-sintatico/avaliador-sintatico.d.ts.map +1 -1
- package/avaliador-sintatico/avaliador-sintatico.js +54 -7
- package/avaliador-sintatico/avaliador-sintatico.js.map +1 -1
- package/avaliador-sintatico/micro-avaliador-sintatico.d.ts +2 -0
- package/avaliador-sintatico/micro-avaliador-sintatico.d.ts.map +1 -1
- package/avaliador-sintatico/micro-avaliador-sintatico.js +17 -0
- package/avaliador-sintatico/micro-avaliador-sintatico.js.map +1 -1
- package/bibliotecas/primitivas-texto.d.ts.map +1 -1
- package/bibliotecas/primitivas-texto.js +23 -0
- package/bibliotecas/primitivas-texto.js.map +1 -1
- package/bin/package.json +1 -1
- package/construtos/elvis.d.ts +12 -0
- package/construtos/elvis.d.ts.map +1 -0
- package/construtos/elvis.js +21 -0
- package/construtos/elvis.js.map +1 -0
- package/construtos/index.d.ts +2 -0
- package/construtos/index.d.ts.map +1 -1
- package/construtos/index.js +2 -0
- package/construtos/index.js.map +1 -1
- package/construtos/se-ternario.d.ts +15 -0
- package/construtos/se-ternario.d.ts.map +1 -0
- package/construtos/se-ternario.js +21 -0
- package/construtos/se-ternario.js.map +1 -0
- package/interfaces/visitante-delegua-interface.d.ts +4 -2
- package/interfaces/visitante-delegua-interface.d.ts.map +1 -1
- package/interpretador/estruturas/classe-de-modulo.d.ts +22 -0
- package/interpretador/estruturas/classe-de-modulo.d.ts.map +1 -0
- package/interpretador/estruturas/classe-de-modulo.js +20 -0
- package/interpretador/estruturas/classe-de-modulo.js.map +1 -0
- package/interpretador/estruturas/index.d.ts +1 -0
- package/interpretador/estruturas/index.d.ts.map +1 -1
- package/interpretador/estruturas/index.js +1 -0
- package/interpretador/estruturas/index.js.map +1 -1
- package/interpretador/interpretador.d.ts +5 -3
- package/interpretador/interpretador.d.ts.map +1 -1
- package/interpretador/interpretador.js +22 -4
- package/interpretador/interpretador.js.map +1 -1
- package/lexador/lexador.d.ts.map +1 -1
- package/lexador/lexador.js +10 -0
- package/lexador/lexador.js.map +1 -1
- package/lexador/micro-lexador.d.ts.map +1 -1
- package/lexador/micro-lexador.js +10 -0
- package/lexador/micro-lexador.js.map +1 -1
- package/package.json +1 -1
- package/tipos-de-simbolos/delegua.d.ts +2 -0
- package/tipos-de-simbolos/delegua.d.ts.map +1 -1
- package/tipos-de-simbolos/delegua.js +2 -0
- package/tipos-de-simbolos/delegua.js.map +1 -1
- package/tipos-de-simbolos/microgramaticas/delegua.d.ts +2 -0
- package/tipos-de-simbolos/microgramaticas/delegua.d.ts.map +1 -1
- package/tipos-de-simbolos/microgramaticas/delegua.js +2 -0
- package/tipos-de-simbolos/microgramaticas/delegua.js.map +1 -1
- package/tradutores/tradutor-javascript.d.ts +3 -1
- package/tradutores/tradutor-javascript.d.ts.map +1 -1
- package/tradutores/tradutor-javascript.js +10 -0
- package/tradutores/tradutor-javascript.js.map +1 -1
- package/tradutores/tradutor-python.d.ts +3 -1
- package/tradutores/tradutor-python.d.ts.map +1 -1
- package/tradutores/tradutor-python.js +7 -0
- package/tradutores/tradutor-python.js.map +1 -1
- package/umd/delegua.js +623 -409
package/umd/delegua.js
CHANGED
|
@@ -235,7 +235,7 @@ class AvaliadorSintaticoBase {
|
|
|
235
235
|
}
|
|
236
236
|
exports.AvaliadorSintaticoBase = AvaliadorSintaticoBase;
|
|
237
237
|
|
|
238
|
-
},{"../construtos":
|
|
238
|
+
},{"../construtos":52,"../declaracoes":97,"../tipos-de-simbolos/comum":186,"./erro-avaliador-sintatico":11}],2:[function(require,module,exports){
|
|
239
239
|
"use strict";
|
|
240
240
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
241
241
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -859,6 +859,23 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
859
859
|
}
|
|
860
860
|
return this.chamar();
|
|
861
861
|
}
|
|
862
|
+
elvis() {
|
|
863
|
+
let expressao = this.unario();
|
|
864
|
+
if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.ELVIS)) {
|
|
865
|
+
const direito = this.unario();
|
|
866
|
+
return new construtos_1.Elvis(this.hashArquivo, expressao, direito);
|
|
867
|
+
}
|
|
868
|
+
return expressao;
|
|
869
|
+
}
|
|
870
|
+
exponenciacao() {
|
|
871
|
+
let expressao = this.elvis();
|
|
872
|
+
while (this.verificarSeSimboloAtualEIgualA(delegua_2.default.EXPONENCIACAO)) {
|
|
873
|
+
const operador = this.simbolos[this.atual - 1];
|
|
874
|
+
const direito = this.unario();
|
|
875
|
+
expressao = new construtos_1.Binario(this.hashArquivo, expressao, operador, direito);
|
|
876
|
+
}
|
|
877
|
+
return expressao;
|
|
878
|
+
}
|
|
862
879
|
multiplicar() {
|
|
863
880
|
let expressao = this.exponenciacao();
|
|
864
881
|
while (this.verificarSeSimboloAtualEIgualA(delegua_2.default.DIVISAO, delegua_2.default.DIVISAO_IGUAL, delegua_2.default.DIVISAO_INTEIRA, delegua_2.default.DIVISAO_INTEIRA_IGUAL, delegua_2.default.MODULO, delegua_2.default.MODULO_IGUAL, delegua_2.default.MULTIPLICACAO, delegua_2.default.MULTIPLICACAO_IGUAL)) {
|
|
@@ -951,12 +968,23 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
951
968
|
}
|
|
952
969
|
return expressao;
|
|
953
970
|
}
|
|
971
|
+
seTernario() {
|
|
972
|
+
let expressaoOuCondicao = this.ou();
|
|
973
|
+
while (this.verificarSeSimboloAtualEIgualA(delegua_2.default.INTERROGACAO)) {
|
|
974
|
+
const operador = this.simbolos[this.atual - 1];
|
|
975
|
+
const expressaoEntao = this.seTernario();
|
|
976
|
+
this.consumir(delegua_2.default.DOIS_PONTOS, `Esperado dois-pontos após caminho positivo em se ternário. Atual: ${this.simbolos[this.atual].lexema}.`);
|
|
977
|
+
const expressaoSenao = this.seTernario();
|
|
978
|
+
expressaoOuCondicao = new construtos_1.SeTernario(this.hashArquivo, expressaoOuCondicao, expressaoEntao, operador, expressaoSenao);
|
|
979
|
+
}
|
|
980
|
+
return expressaoOuCondicao;
|
|
981
|
+
}
|
|
954
982
|
/**
|
|
955
983
|
* Método que resolve atribuições.
|
|
956
984
|
* @returns Um construto do tipo `Atribuir`, `Conjunto` ou `AtribuicaoPorIndice`.
|
|
957
985
|
*/
|
|
958
986
|
atribuir() {
|
|
959
|
-
const expressao = this.
|
|
987
|
+
const expressao = this.seTernario();
|
|
960
988
|
if (expressao instanceof construtos_1.Binario &&
|
|
961
989
|
[
|
|
962
990
|
delegua_2.default.MAIS_IGUAL,
|
|
@@ -974,14 +1002,14 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
974
1002
|
}
|
|
975
1003
|
else if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.IGUAL)) {
|
|
976
1004
|
const igual = this.simbolos[this.atual - 1];
|
|
977
|
-
const valor = this.
|
|
978
|
-
switch (expressao.constructor
|
|
979
|
-
case
|
|
1005
|
+
const valor = this.seTernario();
|
|
1006
|
+
switch (expressao.constructor) {
|
|
1007
|
+
case construtos_1.Variavel:
|
|
980
1008
|
return new construtos_1.Atribuir(this.hashArquivo, expressao, valor);
|
|
981
|
-
case
|
|
1009
|
+
case construtos_1.AcessoMetodoOuPropriedade:
|
|
982
1010
|
const expressaoAcessoMetodoOuPropriedade = expressao;
|
|
983
1011
|
return new construtos_1.DefinirValor(this.hashArquivo, igual.linha, expressaoAcessoMetodoOuPropriedade.objeto, expressaoAcessoMetodoOuPropriedade.simbolo, valor);
|
|
984
|
-
case
|
|
1012
|
+
case construtos_1.AcessoIndiceVariavel:
|
|
985
1013
|
const expressaoAcessoIndiceVariavel = expressao;
|
|
986
1014
|
return new construtos_1.AtribuicaoPorIndice(this.hashArquivo, expressaoAcessoIndiceVariavel.linha, expressaoAcessoIndiceVariavel.entidadeChamada, expressaoAcessoIndiceVariavel.indice, valor);
|
|
987
1015
|
}
|
|
@@ -1603,10 +1631,29 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1603
1631
|
const tipoRetornoAcessoMetodoResolvido = entidadeChamadaAcessoMetodo.tipoRetornoMetodo.replace('<T>', entidadeChamadaAcessoMetodo.objeto.tipo);
|
|
1604
1632
|
return tipoRetornoAcessoMetodoResolvido;
|
|
1605
1633
|
case construtos_1.AcessoMetodoOuPropriedade:
|
|
1634
|
+
const entidadeChamadaAcessoMetodoOuPropriedade = entidadeChamadaChamada;
|
|
1635
|
+
// Algumas coisas podem acontecer aqui.
|
|
1636
|
+
// Uma delas é a variável/constante ser uma classe padrão.
|
|
1637
|
+
// Isso ocorre quando a importação é feita de uma biblioteca Node.js.
|
|
1638
|
+
// Nesse caso, o tipo de `entidadeChamadaAcessoMetodoOuPropriedade.objeto` começa com uma letra maiúscula.
|
|
1639
|
+
if (entidadeChamadaAcessoMetodoOuPropriedade.objeto.tipo &&
|
|
1640
|
+
entidadeChamadaAcessoMetodoOuPropriedade.objeto.tipo.match(/^[A-Z]/)) {
|
|
1641
|
+
const tipoCorrespondente = this.tiposDefinidosPorBibliotecas[entidadeChamadaAcessoMetodoOuPropriedade.objeto.tipo];
|
|
1642
|
+
if (!tipoCorrespondente) {
|
|
1643
|
+
throw new erro_avaliador_sintatico_1.ErroAvaliadorSintatico(entidadeChamadaAcessoMetodoOuPropriedade.simbolo, `Tipo '${entidadeChamadaAcessoMetodoOuPropriedade.objeto.tipo}' não foi encontrado entre os tipos definidos por bibliotecas.`);
|
|
1644
|
+
}
|
|
1645
|
+
if (!(entidadeChamadaAcessoMetodoOuPropriedade.simbolo.lexema in tipoCorrespondente.metodos) &&
|
|
1646
|
+
!(entidadeChamadaAcessoMetodoOuPropriedade.simbolo.lexema in tipoCorrespondente.propriedades)) {
|
|
1647
|
+
throw new erro_avaliador_sintatico_1.ErroAvaliadorSintatico(entidadeChamadaAcessoMetodoOuPropriedade.simbolo, `Membro '${entidadeChamadaAcessoMetodoOuPropriedade.simbolo.lexema}' não existe no tipo '${entidadeChamadaAcessoMetodoOuPropriedade.objeto.tipo}'.`);
|
|
1648
|
+
}
|
|
1649
|
+
if (entidadeChamadaAcessoMetodoOuPropriedade.simbolo.lexema in tipoCorrespondente.metodos) {
|
|
1650
|
+
return tipoCorrespondente.metodos[entidadeChamadaAcessoMetodoOuPropriedade.simbolo.lexema].tipo;
|
|
1651
|
+
}
|
|
1652
|
+
return tipoCorrespondente.propriedades[entidadeChamadaAcessoMetodoOuPropriedade.simbolo.lexema].tipo;
|
|
1653
|
+
}
|
|
1606
1654
|
// Este caso ocorre quando a variável/constante é do tipo 'qualquer',
|
|
1607
1655
|
// e a chamada normalmente é feita para uma primitiva.
|
|
1608
1656
|
// A inferência, portanto, ocorre pelo uso da primitiva.
|
|
1609
|
-
const entidadeChamadaAcessoMetodoOuPropriedade = entidadeChamadaChamada;
|
|
1610
1657
|
for (const primitiva in this.primitivasConhecidas) {
|
|
1611
1658
|
if (this.primitivasConhecidas[primitiva].hasOwnProperty(entidadeChamadaAcessoMetodoOuPropriedade.simbolo.lexema)) {
|
|
1612
1659
|
return this.primitivasConhecidas[primitiva][entidadeChamadaAcessoMetodoOuPropriedade.simbolo.lexema].tipo;
|
|
@@ -2131,7 +2178,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
2131
2178
|
}
|
|
2132
2179
|
exports.AvaliadorSintatico = AvaliadorSintatico;
|
|
2133
2180
|
|
|
2134
|
-
},{"../bibliotecas/primitivas-dicionario":21,"../bibliotecas/primitivas-numero":22,"../bibliotecas/primitivas-texto":23,"../bibliotecas/primitivas-vetor":24,"../construtos":
|
|
2181
|
+
},{"../bibliotecas/primitivas-dicionario":21,"../bibliotecas/primitivas-numero":22,"../bibliotecas/primitivas-texto":23,"../bibliotecas/primitivas-vetor":24,"../construtos":52,"../construtos/tuplas":69,"../declaracoes":97,"../inferenciador":116,"../informacao-elemento-sintatico":117,"../tipos-de-dados/delegua":182,"../tipos-de-simbolos/delegua":187,"./avaliador-sintatico-base":1,"./comum":3,"./elemento-montao-tipos":10,"./erro-avaliador-sintatico":11,"./informacao-escopo":13,"./montao-tipos":16,"./pilha-escopos":17,"browser-process-hrtime":367}],3:[function(require,module,exports){
|
|
2135
2182
|
"use strict";
|
|
2136
2183
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2137
2184
|
exports.buscarRetornos = buscarRetornos;
|
|
@@ -2231,7 +2278,7 @@ function registrarPrimitiva(primitivasConhecidas, tipo, catalogoPrimitivas) {
|
|
|
2231
2278
|
}
|
|
2232
2279
|
}
|
|
2233
2280
|
|
|
2234
|
-
},{"../informacao-elemento-sintatico":
|
|
2281
|
+
},{"../informacao-elemento-sintatico":117}],4:[function(require,module,exports){
|
|
2235
2282
|
"use strict";
|
|
2236
2283
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
2237
2284
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -2457,7 +2504,7 @@ class AvaliadorSintaticoCalango extends avaliador_sintatico_base_1.AvaliadorSint
|
|
|
2457
2504
|
}
|
|
2458
2505
|
exports.AvaliadorSintaticoCalango = AvaliadorSintaticoCalango;
|
|
2459
2506
|
|
|
2460
|
-
},{"../../construtos":
|
|
2507
|
+
},{"../../construtos":52,"../../declaracoes":97,"../../informacao-elemento-sintatico":117,"../../tipos-de-simbolos/calango":185,"../avaliador-sintatico-base":1,"../informacao-escopo":13,"../pilha-escopos":17}],5:[function(require,module,exports){
|
|
2461
2508
|
"use strict";
|
|
2462
2509
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
2463
2510
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -3112,7 +3159,7 @@ class AvaliadorSintaticoEguaClassico {
|
|
|
3112
3159
|
}
|
|
3113
3160
|
exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
|
|
3114
3161
|
|
|
3115
|
-
},{"../../construtos":
|
|
3162
|
+
},{"../../construtos":52,"../../declaracoes":97,"../../tipos-de-simbolos/egua-classico":188,"../erro-avaliador-sintatico":11}],6:[function(require,module,exports){
|
|
3116
3163
|
"use strict";
|
|
3117
3164
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3118
3165
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -4194,7 +4241,7 @@ class AvaliadorSintaticoPitugues {
|
|
|
4194
4241
|
}
|
|
4195
4242
|
exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
|
|
4196
4243
|
|
|
4197
|
-
},{"../../bibliotecas/primitivas-dicionario":21,"../../bibliotecas/primitivas-numero":22,"../../bibliotecas/primitivas-texto":23,"../../bibliotecas/primitivas-vetor":24,"../../construtos":
|
|
4244
|
+
},{"../../bibliotecas/primitivas-dicionario":21,"../../bibliotecas/primitivas-numero":22,"../../bibliotecas/primitivas-texto":23,"../../bibliotecas/primitivas-vetor":24,"../../construtos":52,"../../construtos/lista-compreensao":55,"../../declaracoes":97,"../../inferenciador":116,"../../informacao-elemento-sintatico":117,"../../lexador":174,"../../tipos-de-dados/dialetos/pitugues":183,"../../tipos-de-simbolos/pitugues":191,"../comum":3,"../erro-avaliador-sintatico":11,"../informacao-escopo":13,"../pilha-escopos":17,"browser-process-hrtime":367}],7:[function(require,module,exports){
|
|
4198
4245
|
"use strict";
|
|
4199
4246
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4200
4247
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -4368,7 +4415,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
|
|
|
4368
4415
|
}
|
|
4369
4416
|
exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
|
|
4370
4417
|
|
|
4371
|
-
},{"../../construtos":
|
|
4418
|
+
},{"../../construtos":52,"../../declaracoes":97,"../../tipos-de-simbolos/portugol-ipt":192,"../avaliador-sintatico-base":1}],8:[function(require,module,exports){
|
|
4372
4419
|
"use strict";
|
|
4373
4420
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4374
4421
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -5356,7 +5403,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
|
|
|
5356
5403
|
}
|
|
5357
5404
|
exports.AvaliadorSintaticoTenda = AvaliadorSintaticoTenda;
|
|
5358
5405
|
|
|
5359
|
-
},{"../../bibliotecas/primitivas-dicionario":21,"../../bibliotecas/primitivas-numero":22,"../../bibliotecas/primitivas-texto":23,"../../bibliotecas/primitivas-vetor":24,"../../construtos":
|
|
5406
|
+
},{"../../bibliotecas/primitivas-dicionario":21,"../../bibliotecas/primitivas-numero":22,"../../bibliotecas/primitivas-texto":23,"../../bibliotecas/primitivas-vetor":24,"../../construtos":52,"../../construtos/tuplas":69,"../../declaracoes":97,"../../inferenciador":116,"../../informacao-elemento-sintatico":117,"../../lexador/simbolo":180,"../../tipos-de-dados/delegua":182,"../../tipos-de-simbolos/tenda":193,"../avaliador-sintatico-base":1,"./../erro-avaliador-sintatico":11,"./../informacao-escopo":13,"./../pilha-escopos":17,"browser-process-hrtime":367}],9:[function(require,module,exports){
|
|
5360
5407
|
"use strict";
|
|
5361
5408
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5362
5409
|
if (k2 === undefined) k2 = k;
|
|
@@ -5561,7 +5608,7 @@ class MicroAvaliadorSintaticoBase {
|
|
|
5561
5608
|
}
|
|
5562
5609
|
exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
|
|
5563
5610
|
|
|
5564
|
-
},{"../construtos":
|
|
5611
|
+
},{"../construtos":52,"../tipos-de-simbolos/comum":186,"./erro-avaliador-sintatico":11}],15:[function(require,module,exports){
|
|
5565
5612
|
"use strict";
|
|
5566
5613
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
5567
5614
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -5692,6 +5739,23 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
|
|
|
5692
5739
|
}
|
|
5693
5740
|
return this.chamar();
|
|
5694
5741
|
}
|
|
5742
|
+
elvis() {
|
|
5743
|
+
let expressao = this.unario();
|
|
5744
|
+
if (this.verificarSeSimboloAtualEIgualA(delegua_1.default.ELVIS)) {
|
|
5745
|
+
const direito = this.unario();
|
|
5746
|
+
return new construtos_1.Elvis(-1, expressao, direito);
|
|
5747
|
+
}
|
|
5748
|
+
return expressao;
|
|
5749
|
+
}
|
|
5750
|
+
exponenciacao() {
|
|
5751
|
+
let expressao = this.elvis();
|
|
5752
|
+
while (this.verificarSeSimboloAtualEIgualA(delegua_1.default.EXPONENCIACAO)) {
|
|
5753
|
+
const operador = this.simbolos[this.atual - 1];
|
|
5754
|
+
const direito = this.unario();
|
|
5755
|
+
expressao = new construtos_1.Binario(-1, expressao, operador, direito);
|
|
5756
|
+
}
|
|
5757
|
+
return expressao;
|
|
5758
|
+
}
|
|
5695
5759
|
bitShift() {
|
|
5696
5760
|
let expressao = this.adicaoOuSubtracao();
|
|
5697
5761
|
while (this.verificarSeSimboloAtualEIgualA(delegua_1.default.MENOR_MENOR, delegua_1.default.MAIOR_MAIOR)) {
|
|
@@ -5763,7 +5827,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
|
|
|
5763
5827
|
}
|
|
5764
5828
|
exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
|
|
5765
5829
|
|
|
5766
|
-
},{"../construtos":
|
|
5830
|
+
},{"../construtos":52,"../tipos-de-simbolos/microgramaticas/delegua":190,"./micro-avaliador-sintatico-base":14}],16:[function(require,module,exports){
|
|
5767
5831
|
"use strict";
|
|
5768
5832
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5769
5833
|
exports.MontaoTipos = void 0;
|
|
@@ -5814,7 +5878,7 @@ class MontaoTipos {
|
|
|
5814
5878
|
}
|
|
5815
5879
|
exports.MontaoTipos = MontaoTipos;
|
|
5816
5880
|
|
|
5817
|
-
},{"../geracao-identificadores":
|
|
5881
|
+
},{"../geracao-identificadores":114,"./erro-avaliador-sintatico":11}],17:[function(require,module,exports){
|
|
5818
5882
|
"use strict";
|
|
5819
5883
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5820
5884
|
exports.PilhaEscopos = void 0;
|
|
@@ -6594,7 +6658,7 @@ async function tupla(interpretador, vetor) {
|
|
|
6594
6658
|
}
|
|
6595
6659
|
}
|
|
6596
6660
|
|
|
6597
|
-
},{"../construtos":
|
|
6661
|
+
},{"../construtos":52,"../excecoes":110,"../interpretador/estruturas":150,"../interpretador/estruturas/descritor-tipo-classe":148,"../interpretador/estruturas/funcao-padrao":149,"../interpretador/estruturas/objeto-delegua-classe":153,"../quebras":181}],21:[function(require,module,exports){
|
|
6598
6662
|
"use strict";
|
|
6599
6663
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6600
6664
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -6651,7 +6715,7 @@ exports.default = {
|
|
|
6651
6715
|
},
|
|
6652
6716
|
};
|
|
6653
6717
|
|
|
6654
|
-
},{"../informacao-elemento-sintatico":
|
|
6718
|
+
},{"../informacao-elemento-sintatico":117}],22:[function(require,module,exports){
|
|
6655
6719
|
"use strict";
|
|
6656
6720
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6657
6721
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -6736,7 +6800,7 @@ exports.default = {
|
|
|
6736
6800
|
},
|
|
6737
6801
|
};
|
|
6738
6802
|
|
|
6739
|
-
},{"../informacao-elemento-sintatico":
|
|
6803
|
+
},{"../informacao-elemento-sintatico":117}],23:[function(require,module,exports){
|
|
6740
6804
|
"use strict";
|
|
6741
6805
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6742
6806
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -6817,6 +6881,29 @@ exports.default = {
|
|
|
6817
6881
|
'\n\n ### Formas de uso \n',
|
|
6818
6882
|
exemploCodigo: "texto.dividir('<delimitador (, ; ' ')>')",
|
|
6819
6883
|
},
|
|
6884
|
+
encontrar: {
|
|
6885
|
+
tipoRetorno: 'inteiro',
|
|
6886
|
+
argumentos: [
|
|
6887
|
+
new informacao_elemento_sintatico_1.InformacaoElementoSintatico('subtexto', 'texto', true, [], 'O texto que deve ser buscado.'),
|
|
6888
|
+
new informacao_elemento_sintatico_1.InformacaoElementoSintatico('indiceInicio', 'número', false, [], '(Opcional) O índice opcional para iniciar a busca.'),
|
|
6889
|
+
],
|
|
6890
|
+
implementacao: (interpretador, nomePrimitiva, texto, subtexto, indiceInicio) => {
|
|
6891
|
+
if (indiceInicio !== undefined) {
|
|
6892
|
+
return Promise.resolve(texto.indexOf(subtexto, indiceInicio));
|
|
6893
|
+
}
|
|
6894
|
+
return Promise.resolve(texto.indexOf(subtexto));
|
|
6895
|
+
},
|
|
6896
|
+
assinaturaFormato: 'texto.encontrar(subtexto: texto, indiceInicio?: número)',
|
|
6897
|
+
documentacao: '# `texto.encontrar(subtexto, indiceInicio)` \n \n' +
|
|
6898
|
+
'Retorna o índice inicial de um subtexto. Retorna -1 caso não encontre.' +
|
|
6899
|
+
'\n\n ## Exemplo de Código\n' +
|
|
6900
|
+
'\n\n```delegua\nvar t = "um dois três"\n' +
|
|
6901
|
+
't.encontrar("dois") // 3\n' +
|
|
6902
|
+
't.encontrar("quatro") // -1\n' +
|
|
6903
|
+
't.encontrar("dois", 4) // -1\n```' +
|
|
6904
|
+
'\n\n ### Formas de uso \n',
|
|
6905
|
+
exemploCodigo: 'texto.encontre(subtexto, indiceInicio?)',
|
|
6906
|
+
},
|
|
6820
6907
|
fatiar: {
|
|
6821
6908
|
tipoRetorno: 'texto',
|
|
6822
6909
|
argumentos: [
|
|
@@ -6968,7 +7055,7 @@ exports.default = {
|
|
|
6968
7055
|
},
|
|
6969
7056
|
};
|
|
6970
7057
|
|
|
6971
|
-
},{"../informacao-elemento-sintatico":
|
|
7058
|
+
},{"../informacao-elemento-sintatico":117}],24:[function(require,module,exports){
|
|
6972
7059
|
"use strict";
|
|
6973
7060
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6974
7061
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -7315,7 +7402,7 @@ exports.default = {
|
|
|
7315
7402
|
},
|
|
7316
7403
|
};
|
|
7317
7404
|
|
|
7318
|
-
},{"../informacao-elemento-sintatico":
|
|
7405
|
+
},{"../informacao-elemento-sintatico":117}],25:[function(require,module,exports){
|
|
7319
7406
|
"use strict";
|
|
7320
7407
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7321
7408
|
exports.AcessoElementoMatriz = void 0;
|
|
@@ -7665,7 +7752,7 @@ class Chamada {
|
|
|
7665
7752
|
}
|
|
7666
7753
|
exports.Chamada = Chamada;
|
|
7667
7754
|
|
|
7668
|
-
},{"../geracao-identificadores":
|
|
7755
|
+
},{"../geracao-identificadores":114}],37:[function(require,module,exports){
|
|
7669
7756
|
"use strict";
|
|
7670
7757
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7671
7758
|
exports.ComentarioComoConstruto = void 0;
|
|
@@ -7808,6 +7895,28 @@ exports.Dicionario = Dicionario;
|
|
|
7808
7895
|
},{}],44:[function(require,module,exports){
|
|
7809
7896
|
"use strict";
|
|
7810
7897
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7898
|
+
exports.Elvis = void 0;
|
|
7899
|
+
class Elvis {
|
|
7900
|
+
constructor(hashArquivo, esquerda, direita) {
|
|
7901
|
+
this.linha = esquerda.linha;
|
|
7902
|
+
this.hashArquivo = hashArquivo;
|
|
7903
|
+
this.esquerda = esquerda;
|
|
7904
|
+
this.direita = direita;
|
|
7905
|
+
}
|
|
7906
|
+
async aceitar(visitante) {
|
|
7907
|
+
return await visitante.visitarExpressaoElvis(this);
|
|
7908
|
+
}
|
|
7909
|
+
paraTexto() {
|
|
7910
|
+
return (`<elvis esquerda=${this.esquerda.paraTexto()} ` +
|
|
7911
|
+
`direita=${this.direita.paraTexto()} ` +
|
|
7912
|
+
`/>`);
|
|
7913
|
+
}
|
|
7914
|
+
}
|
|
7915
|
+
exports.Elvis = Elvis;
|
|
7916
|
+
|
|
7917
|
+
},{}],45:[function(require,module,exports){
|
|
7918
|
+
"use strict";
|
|
7919
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7811
7920
|
exports.EnquantoComoConstruto = void 0;
|
|
7812
7921
|
class EnquantoComoConstruto {
|
|
7813
7922
|
constructor(condicao, corpo) {
|
|
@@ -7825,7 +7934,7 @@ class EnquantoComoConstruto {
|
|
|
7825
7934
|
}
|
|
7826
7935
|
exports.EnquantoComoConstruto = EnquantoComoConstruto;
|
|
7827
7936
|
|
|
7828
|
-
},{}],
|
|
7937
|
+
},{}],46:[function(require,module,exports){
|
|
7829
7938
|
"use strict";
|
|
7830
7939
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7831
7940
|
exports.ExpressaoRegular = void 0;
|
|
@@ -7845,7 +7954,7 @@ class ExpressaoRegular {
|
|
|
7845
7954
|
}
|
|
7846
7955
|
exports.ExpressaoRegular = ExpressaoRegular;
|
|
7847
7956
|
|
|
7848
|
-
},{}],
|
|
7957
|
+
},{}],47:[function(require,module,exports){
|
|
7849
7958
|
"use strict";
|
|
7850
7959
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7851
7960
|
exports.FazerComoConstruto = void 0;
|
|
@@ -7865,7 +7974,7 @@ class FazerComoConstruto {
|
|
|
7865
7974
|
}
|
|
7866
7975
|
exports.FazerComoConstruto = FazerComoConstruto;
|
|
7867
7976
|
|
|
7868
|
-
},{}],
|
|
7977
|
+
},{}],48:[function(require,module,exports){
|
|
7869
7978
|
"use strict";
|
|
7870
7979
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7871
7980
|
exports.FimPara = void 0;
|
|
@@ -7895,7 +8004,7 @@ class FimPara {
|
|
|
7895
8004
|
}
|
|
7896
8005
|
exports.FimPara = FimPara;
|
|
7897
8006
|
|
|
7898
|
-
},{}],
|
|
8007
|
+
},{}],49:[function(require,module,exports){
|
|
7899
8008
|
"use strict";
|
|
7900
8009
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7901
8010
|
exports.FormatacaoEscrita = void 0;
|
|
@@ -7921,7 +8030,7 @@ class FormatacaoEscrita {
|
|
|
7921
8030
|
}
|
|
7922
8031
|
exports.FormatacaoEscrita = FormatacaoEscrita;
|
|
7923
8032
|
|
|
7924
|
-
},{}],
|
|
8033
|
+
},{}],50:[function(require,module,exports){
|
|
7925
8034
|
"use strict";
|
|
7926
8035
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7927
8036
|
exports.FuncaoConstruto = void 0;
|
|
@@ -7944,7 +8053,7 @@ class FuncaoConstruto {
|
|
|
7944
8053
|
}
|
|
7945
8054
|
exports.FuncaoConstruto = FuncaoConstruto;
|
|
7946
8055
|
|
|
7947
|
-
},{}],
|
|
8056
|
+
},{}],51:[function(require,module,exports){
|
|
7948
8057
|
"use strict";
|
|
7949
8058
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7950
8059
|
exports.ImportarComoConstruto = void 0;
|
|
@@ -7967,7 +8076,7 @@ class ImportarComoConstruto {
|
|
|
7967
8076
|
}
|
|
7968
8077
|
exports.ImportarComoConstruto = ImportarComoConstruto;
|
|
7969
8078
|
|
|
7970
|
-
},{}],
|
|
8079
|
+
},{}],52:[function(require,module,exports){
|
|
7971
8080
|
"use strict";
|
|
7972
8081
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7973
8082
|
if (k2 === undefined) k2 = k;
|
|
@@ -8003,6 +8112,7 @@ __exportStar(require("./construto"), exports);
|
|
|
8003
8112
|
__exportStar(require("./decorador"), exports);
|
|
8004
8113
|
__exportStar(require("./definir-valor"), exports);
|
|
8005
8114
|
__exportStar(require("./dicionario"), exports);
|
|
8115
|
+
__exportStar(require("./elvis"), exports);
|
|
8006
8116
|
__exportStar(require("./enquanto-como-construto"), exports);
|
|
8007
8117
|
__exportStar(require("./expressao-regular"), exports);
|
|
8008
8118
|
__exportStar(require("./fazer-como-construto"), exports);
|
|
@@ -8019,6 +8129,7 @@ __exportStar(require("./para-cada-como-construto"), exports);
|
|
|
8019
8129
|
__exportStar(require("./para-como-construto"), exports);
|
|
8020
8130
|
__exportStar(require("./referencia-biblioteca-global"), exports);
|
|
8021
8131
|
__exportStar(require("./referencia-funcao"), exports);
|
|
8132
|
+
__exportStar(require("./se-ternario"), exports);
|
|
8022
8133
|
__exportStar(require("./separador"), exports);
|
|
8023
8134
|
__exportStar(require("./super"), exports);
|
|
8024
8135
|
__exportStar(require("./tipo-de"), exports);
|
|
@@ -8028,7 +8139,7 @@ __exportStar(require("./unario"), exports);
|
|
|
8028
8139
|
__exportStar(require("./variavel"), exports);
|
|
8029
8140
|
__exportStar(require("./vetor"), exports);
|
|
8030
8141
|
|
|
8031
|
-
},{"./acesso-elemento-matriz":25,"./acesso-indice-variavel":26,"./acesso-metodo":28,"./acesso-metodo-ou-propriedade":27,"./acesso-propriedade":29,"./agrupamento":30,"./argumento-referencia-funcao":31,"./atribuicao-por-indice":32,"./atribuicao-por-indices-matriz":33,"./atribuir":34,"./binario":35,"./chamada":36,"./comentario-como-construto":37,"./componente-linguagem":38,"./constante":39,"./construto":40,"./decorador":41,"./definir-valor":42,"./dicionario":43,"./enquanto-como-construto":
|
|
8142
|
+
},{"./acesso-elemento-matriz":25,"./acesso-indice-variavel":26,"./acesso-metodo":28,"./acesso-metodo-ou-propriedade":27,"./acesso-propriedade":29,"./agrupamento":30,"./argumento-referencia-funcao":31,"./atribuicao-por-indice":32,"./atribuicao-por-indices-matriz":33,"./atribuir":34,"./binario":35,"./chamada":36,"./comentario-como-construto":37,"./componente-linguagem":38,"./constante":39,"./construto":40,"./decorador":41,"./definir-valor":42,"./dicionario":43,"./elvis":44,"./enquanto-como-construto":45,"./expressao-regular":46,"./fazer-como-construto":47,"./fim-para":48,"./formatacao-escrita":49,"./funcao":50,"./importar-como-construto":51,"./isto":53,"./leia":54,"./lista-compreensao":55,"./literal":56,"./logico":57,"./para-cada-como-construto":58,"./para-como-construto":59,"./referencia-biblioteca-global":60,"./referencia-funcao":61,"./se-ternario":62,"./separador":63,"./super":64,"./tipo-de":65,"./tupla":66,"./tuplas":69,"./unario":77,"./variavel":78,"./vetor":79}],53:[function(require,module,exports){
|
|
8032
8143
|
"use strict";
|
|
8033
8144
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8034
8145
|
exports.Isto = void 0;
|
|
@@ -8047,7 +8158,7 @@ class Isto {
|
|
|
8047
8158
|
}
|
|
8048
8159
|
exports.Isto = Isto;
|
|
8049
8160
|
|
|
8050
|
-
},{}],
|
|
8161
|
+
},{}],54:[function(require,module,exports){
|
|
8051
8162
|
"use strict";
|
|
8052
8163
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8053
8164
|
exports.Leia = void 0;
|
|
@@ -8073,7 +8184,7 @@ class Leia {
|
|
|
8073
8184
|
}
|
|
8074
8185
|
exports.Leia = Leia;
|
|
8075
8186
|
|
|
8076
|
-
},{"../geracao-identificadores":
|
|
8187
|
+
},{"../geracao-identificadores":114}],55:[function(require,module,exports){
|
|
8077
8188
|
"use strict";
|
|
8078
8189
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8079
8190
|
exports.ListaCompreensao = void 0;
|
|
@@ -8095,7 +8206,7 @@ class ListaCompreensao {
|
|
|
8095
8206
|
}
|
|
8096
8207
|
exports.ListaCompreensao = ListaCompreensao;
|
|
8097
8208
|
|
|
8098
|
-
},{}],
|
|
8209
|
+
},{}],56:[function(require,module,exports){
|
|
8099
8210
|
"use strict";
|
|
8100
8211
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8101
8212
|
exports.Literal = void 0;
|
|
@@ -8115,7 +8226,7 @@ class Literal {
|
|
|
8115
8226
|
}
|
|
8116
8227
|
exports.Literal = Literal;
|
|
8117
8228
|
|
|
8118
|
-
},{}],
|
|
8229
|
+
},{}],57:[function(require,module,exports){
|
|
8119
8230
|
"use strict";
|
|
8120
8231
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8121
8232
|
exports.Logico = void 0;
|
|
@@ -8138,7 +8249,7 @@ class Logico {
|
|
|
8138
8249
|
}
|
|
8139
8250
|
exports.Logico = Logico;
|
|
8140
8251
|
|
|
8141
|
-
},{}],
|
|
8252
|
+
},{}],58:[function(require,module,exports){
|
|
8142
8253
|
"use strict";
|
|
8143
8254
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8144
8255
|
exports.ParaCadaComoConstruto = void 0;
|
|
@@ -8160,7 +8271,7 @@ class ParaCadaComoConstruto {
|
|
|
8160
8271
|
}
|
|
8161
8272
|
exports.ParaCadaComoConstruto = ParaCadaComoConstruto;
|
|
8162
8273
|
|
|
8163
|
-
},{}],
|
|
8274
|
+
},{}],59:[function(require,module,exports){
|
|
8164
8275
|
"use strict";
|
|
8165
8276
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8166
8277
|
exports.ParaComoConstruto = void 0;
|
|
@@ -8185,7 +8296,7 @@ class ParaComoConstruto {
|
|
|
8185
8296
|
}
|
|
8186
8297
|
exports.ParaComoConstruto = ParaComoConstruto;
|
|
8187
8298
|
|
|
8188
|
-
},{}],
|
|
8299
|
+
},{}],60:[function(require,module,exports){
|
|
8189
8300
|
"use strict";
|
|
8190
8301
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8191
8302
|
exports.ReferenciaBibliotecaGlobal = void 0;
|
|
@@ -8208,7 +8319,7 @@ class ReferenciaBibliotecaGlobal {
|
|
|
8208
8319
|
}
|
|
8209
8320
|
exports.ReferenciaBibliotecaGlobal = ReferenciaBibliotecaGlobal;
|
|
8210
8321
|
|
|
8211
|
-
},{}],
|
|
8322
|
+
},{}],61:[function(require,module,exports){
|
|
8212
8323
|
"use strict";
|
|
8213
8324
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8214
8325
|
exports.ReferenciaFuncao = void 0;
|
|
@@ -8229,7 +8340,29 @@ class ReferenciaFuncao {
|
|
|
8229
8340
|
}
|
|
8230
8341
|
exports.ReferenciaFuncao = ReferenciaFuncao;
|
|
8231
8342
|
|
|
8232
|
-
},{}],
|
|
8343
|
+
},{}],62:[function(require,module,exports){
|
|
8344
|
+
"use strict";
|
|
8345
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8346
|
+
exports.SeTernario = void 0;
|
|
8347
|
+
class SeTernario {
|
|
8348
|
+
constructor(hashArquivo, condicao, expressaoSe, operador, expressaoSenao) {
|
|
8349
|
+
this.tipo = 'qualquer';
|
|
8350
|
+
this.linha = condicao.linha;
|
|
8351
|
+
this.hashArquivo = hashArquivo;
|
|
8352
|
+
this.condicao = condicao;
|
|
8353
|
+
this.expressaoSe = expressaoSe;
|
|
8354
|
+
this.expressaoSenao = expressaoSenao;
|
|
8355
|
+
}
|
|
8356
|
+
async aceitar(visitante) {
|
|
8357
|
+
return await visitante.visitarExpressaoSeTernario(this);
|
|
8358
|
+
}
|
|
8359
|
+
paraTexto() {
|
|
8360
|
+
return `<se-ternário condicao=${this.condicao.paraTexto()} expressaoSe=${this.expressaoSe.paraTexto()} expressaoSenao=${this.expressaoSenao.paraTexto()} />`;
|
|
8361
|
+
}
|
|
8362
|
+
}
|
|
8363
|
+
exports.SeTernario = SeTernario;
|
|
8364
|
+
|
|
8365
|
+
},{}],63:[function(require,module,exports){
|
|
8233
8366
|
"use strict";
|
|
8234
8367
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8235
8368
|
exports.Separador = void 0;
|
|
@@ -8248,7 +8381,7 @@ class Separador {
|
|
|
8248
8381
|
}
|
|
8249
8382
|
exports.Separador = Separador;
|
|
8250
8383
|
|
|
8251
|
-
},{}],
|
|
8384
|
+
},{}],64:[function(require,module,exports){
|
|
8252
8385
|
"use strict";
|
|
8253
8386
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8254
8387
|
exports.Super = void 0;
|
|
@@ -8268,7 +8401,7 @@ class Super {
|
|
|
8268
8401
|
}
|
|
8269
8402
|
exports.Super = Super;
|
|
8270
8403
|
|
|
8271
|
-
},{}],
|
|
8404
|
+
},{}],65:[function(require,module,exports){
|
|
8272
8405
|
"use strict";
|
|
8273
8406
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8274
8407
|
exports.TipoDe = void 0;
|
|
@@ -8292,7 +8425,7 @@ class TipoDe {
|
|
|
8292
8425
|
}
|
|
8293
8426
|
exports.TipoDe = TipoDe;
|
|
8294
8427
|
|
|
8295
|
-
},{}],
|
|
8428
|
+
},{}],66:[function(require,module,exports){
|
|
8296
8429
|
"use strict";
|
|
8297
8430
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8298
8431
|
exports.Tupla = void 0;
|
|
@@ -8303,7 +8436,7 @@ class Tupla {
|
|
|
8303
8436
|
}
|
|
8304
8437
|
exports.Tupla = Tupla;
|
|
8305
8438
|
|
|
8306
|
-
},{}],
|
|
8439
|
+
},{}],67:[function(require,module,exports){
|
|
8307
8440
|
"use strict";
|
|
8308
8441
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8309
8442
|
exports.Deceto = void 0;
|
|
@@ -8351,7 +8484,7 @@ class Deceto extends tupla_1.Tupla {
|
|
|
8351
8484
|
}
|
|
8352
8485
|
exports.Deceto = Deceto;
|
|
8353
8486
|
|
|
8354
|
-
},{"../tupla":
|
|
8487
|
+
},{"../tupla":66}],68:[function(require,module,exports){
|
|
8355
8488
|
"use strict";
|
|
8356
8489
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8357
8490
|
exports.Dupla = void 0;
|
|
@@ -8370,7 +8503,7 @@ class Dupla extends tupla_1.Tupla {
|
|
|
8370
8503
|
}
|
|
8371
8504
|
exports.Dupla = Dupla;
|
|
8372
8505
|
|
|
8373
|
-
},{"../tupla":
|
|
8506
|
+
},{"../tupla":66}],69:[function(require,module,exports){
|
|
8374
8507
|
"use strict";
|
|
8375
8508
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
8376
8509
|
if (k2 === undefined) k2 = k;
|
|
@@ -8438,7 +8571,7 @@ class SeletorTuplas {
|
|
|
8438
8571
|
}
|
|
8439
8572
|
exports.SeletorTuplas = SeletorTuplas;
|
|
8440
8573
|
|
|
8441
|
-
},{"./deceto":
|
|
8574
|
+
},{"./deceto":67,"./dupla":68,"./noneto":70,"./octeto":71,"./quarteto":72,"./quinteto":73,"./septeto":74,"./sexteto":75,"./trio":76}],70:[function(require,module,exports){
|
|
8442
8575
|
"use strict";
|
|
8443
8576
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8444
8577
|
exports.Noneto = void 0;
|
|
@@ -8477,7 +8610,7 @@ class Noneto extends tupla_1.Tupla {
|
|
|
8477
8610
|
}
|
|
8478
8611
|
exports.Noneto = Noneto;
|
|
8479
8612
|
|
|
8480
|
-
},{"../tupla":
|
|
8613
|
+
},{"../tupla":66}],71:[function(require,module,exports){
|
|
8481
8614
|
"use strict";
|
|
8482
8615
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8483
8616
|
exports.Octeto = void 0;
|
|
@@ -8514,7 +8647,7 @@ class Octeto extends tupla_1.Tupla {
|
|
|
8514
8647
|
}
|
|
8515
8648
|
exports.Octeto = Octeto;
|
|
8516
8649
|
|
|
8517
|
-
},{"../tupla":
|
|
8650
|
+
},{"../tupla":66}],72:[function(require,module,exports){
|
|
8518
8651
|
"use strict";
|
|
8519
8652
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8520
8653
|
exports.Quarteto = void 0;
|
|
@@ -8537,7 +8670,7 @@ class Quarteto extends tupla_1.Tupla {
|
|
|
8537
8670
|
}
|
|
8538
8671
|
exports.Quarteto = Quarteto;
|
|
8539
8672
|
|
|
8540
|
-
},{"../tupla":
|
|
8673
|
+
},{"../tupla":66}],73:[function(require,module,exports){
|
|
8541
8674
|
"use strict";
|
|
8542
8675
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8543
8676
|
exports.Quinteto = void 0;
|
|
@@ -8562,7 +8695,7 @@ class Quinteto extends tupla_1.Tupla {
|
|
|
8562
8695
|
}
|
|
8563
8696
|
exports.Quinteto = Quinteto;
|
|
8564
8697
|
|
|
8565
|
-
},{"../tupla":
|
|
8698
|
+
},{"../tupla":66}],74:[function(require,module,exports){
|
|
8566
8699
|
"use strict";
|
|
8567
8700
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8568
8701
|
exports.Septeto = void 0;
|
|
@@ -8597,7 +8730,7 @@ class Septeto extends tupla_1.Tupla {
|
|
|
8597
8730
|
}
|
|
8598
8731
|
exports.Septeto = Septeto;
|
|
8599
8732
|
|
|
8600
|
-
},{"../tupla":
|
|
8733
|
+
},{"../tupla":66}],75:[function(require,module,exports){
|
|
8601
8734
|
"use strict";
|
|
8602
8735
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8603
8736
|
exports.Sexteto = void 0;
|
|
@@ -8624,7 +8757,7 @@ class Sexteto extends tupla_1.Tupla {
|
|
|
8624
8757
|
}
|
|
8625
8758
|
exports.Sexteto = Sexteto;
|
|
8626
8759
|
|
|
8627
|
-
},{"../tupla":
|
|
8760
|
+
},{"../tupla":66}],76:[function(require,module,exports){
|
|
8628
8761
|
"use strict";
|
|
8629
8762
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8630
8763
|
exports.Trio = void 0;
|
|
@@ -8645,7 +8778,7 @@ class Trio extends tupla_1.Tupla {
|
|
|
8645
8778
|
}
|
|
8646
8779
|
exports.Trio = Trio;
|
|
8647
8780
|
|
|
8648
|
-
},{"../tupla":
|
|
8781
|
+
},{"../tupla":66}],77:[function(require,module,exports){
|
|
8649
8782
|
"use strict";
|
|
8650
8783
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8651
8784
|
exports.Unario = void 0;
|
|
@@ -8666,7 +8799,7 @@ class Unario {
|
|
|
8666
8799
|
}
|
|
8667
8800
|
exports.Unario = Unario;
|
|
8668
8801
|
|
|
8669
|
-
},{}],
|
|
8802
|
+
},{}],78:[function(require,module,exports){
|
|
8670
8803
|
"use strict";
|
|
8671
8804
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8672
8805
|
exports.Variavel = void 0;
|
|
@@ -8686,7 +8819,7 @@ class Variavel {
|
|
|
8686
8819
|
}
|
|
8687
8820
|
exports.Variavel = Variavel;
|
|
8688
8821
|
|
|
8689
|
-
},{}],
|
|
8822
|
+
},{}],79:[function(require,module,exports){
|
|
8690
8823
|
"use strict";
|
|
8691
8824
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8692
8825
|
exports.Vetor = void 0;
|
|
@@ -8712,7 +8845,7 @@ class Vetor {
|
|
|
8712
8845
|
}
|
|
8713
8846
|
exports.Vetor = Vetor;
|
|
8714
8847
|
|
|
8715
|
-
},{}],
|
|
8848
|
+
},{}],80:[function(require,module,exports){
|
|
8716
8849
|
"use strict";
|
|
8717
8850
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8718
8851
|
exports.Bloco = void 0;
|
|
@@ -8738,7 +8871,7 @@ class Bloco extends declaracao_1.Declaracao {
|
|
|
8738
8871
|
}
|
|
8739
8872
|
exports.Bloco = Bloco;
|
|
8740
8873
|
|
|
8741
|
-
},{"./declaracao":
|
|
8874
|
+
},{"./declaracao":87}],81:[function(require,module,exports){
|
|
8742
8875
|
"use strict";
|
|
8743
8876
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8744
8877
|
exports.CabecalhoPrograma = void 0;
|
|
@@ -8760,7 +8893,7 @@ class CabecalhoPrograma extends declaracao_1.Declaracao {
|
|
|
8760
8893
|
}
|
|
8761
8894
|
exports.CabecalhoPrograma = CabecalhoPrograma;
|
|
8762
8895
|
|
|
8763
|
-
},{"./declaracao":
|
|
8896
|
+
},{"./declaracao":87}],82:[function(require,module,exports){
|
|
8764
8897
|
"use strict";
|
|
8765
8898
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8766
8899
|
exports.Classe = void 0;
|
|
@@ -8795,7 +8928,7 @@ class Classe extends declaracao_1.Declaracao {
|
|
|
8795
8928
|
}
|
|
8796
8929
|
exports.Classe = Classe;
|
|
8797
8930
|
|
|
8798
|
-
},{"./declaracao":
|
|
8931
|
+
},{"./declaracao":87}],83:[function(require,module,exports){
|
|
8799
8932
|
"use strict";
|
|
8800
8933
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8801
8934
|
exports.Comentario = void 0;
|
|
@@ -8820,7 +8953,7 @@ class Comentario extends declaracao_1.Declaracao {
|
|
|
8820
8953
|
}
|
|
8821
8954
|
exports.Comentario = Comentario;
|
|
8822
8955
|
|
|
8823
|
-
},{"./declaracao":
|
|
8956
|
+
},{"./declaracao":87}],84:[function(require,module,exports){
|
|
8824
8957
|
"use strict";
|
|
8825
8958
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8826
8959
|
exports.ConstMultiplo = void 0;
|
|
@@ -8845,7 +8978,7 @@ class ConstMultiplo extends declaracao_1.Declaracao {
|
|
|
8845
8978
|
}
|
|
8846
8979
|
exports.ConstMultiplo = ConstMultiplo;
|
|
8847
8980
|
|
|
8848
|
-
},{"./declaracao":
|
|
8981
|
+
},{"./declaracao":87}],85:[function(require,module,exports){
|
|
8849
8982
|
"use strict";
|
|
8850
8983
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8851
8984
|
exports.Const = void 0;
|
|
@@ -8875,7 +9008,7 @@ class Const extends declaracao_1.Declaracao {
|
|
|
8875
9008
|
}
|
|
8876
9009
|
exports.Const = Const;
|
|
8877
9010
|
|
|
8878
|
-
},{"./declaracao":
|
|
9011
|
+
},{"./declaracao":87}],86:[function(require,module,exports){
|
|
8879
9012
|
"use strict";
|
|
8880
9013
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8881
9014
|
exports.Continua = void 0;
|
|
@@ -8893,7 +9026,7 @@ class Continua extends declaracao_1.Declaracao {
|
|
|
8893
9026
|
}
|
|
8894
9027
|
exports.Continua = Continua;
|
|
8895
9028
|
|
|
8896
|
-
},{"./declaracao":
|
|
9029
|
+
},{"./declaracao":87}],87:[function(require,module,exports){
|
|
8897
9030
|
"use strict";
|
|
8898
9031
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8899
9032
|
exports.Declaracao = void 0;
|
|
@@ -8916,7 +9049,7 @@ class Declaracao {
|
|
|
8916
9049
|
}
|
|
8917
9050
|
exports.Declaracao = Declaracao;
|
|
8918
9051
|
|
|
8919
|
-
},{}],
|
|
9052
|
+
},{}],88:[function(require,module,exports){
|
|
8920
9053
|
"use strict";
|
|
8921
9054
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8922
9055
|
exports.Enquanto = void 0;
|
|
@@ -8937,7 +9070,7 @@ class Enquanto extends declaracao_1.Declaracao {
|
|
|
8937
9070
|
}
|
|
8938
9071
|
exports.Enquanto = Enquanto;
|
|
8939
9072
|
|
|
8940
|
-
},{"./declaracao":
|
|
9073
|
+
},{"./declaracao":87}],89:[function(require,module,exports){
|
|
8941
9074
|
"use strict";
|
|
8942
9075
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8943
9076
|
exports.Escolha = void 0;
|
|
@@ -8962,7 +9095,7 @@ class Escolha extends declaracao_1.Declaracao {
|
|
|
8962
9095
|
}
|
|
8963
9096
|
exports.Escolha = Escolha;
|
|
8964
9097
|
|
|
8965
|
-
},{"./declaracao":
|
|
9098
|
+
},{"./declaracao":87}],90:[function(require,module,exports){
|
|
8966
9099
|
"use strict";
|
|
8967
9100
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8968
9101
|
exports.EscrevaMesmaLinha = void 0;
|
|
@@ -8981,7 +9114,7 @@ class EscrevaMesmaLinha extends declaracao_1.Declaracao {
|
|
|
8981
9114
|
}
|
|
8982
9115
|
exports.EscrevaMesmaLinha = EscrevaMesmaLinha;
|
|
8983
9116
|
|
|
8984
|
-
},{"./declaracao":
|
|
9117
|
+
},{"./declaracao":87}],91:[function(require,module,exports){
|
|
8985
9118
|
"use strict";
|
|
8986
9119
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8987
9120
|
exports.Escreva = void 0;
|
|
@@ -9000,7 +9133,7 @@ class Escreva extends declaracao_1.Declaracao {
|
|
|
9000
9133
|
}
|
|
9001
9134
|
exports.Escreva = Escreva;
|
|
9002
9135
|
|
|
9003
|
-
},{"./declaracao":
|
|
9136
|
+
},{"./declaracao":87}],92:[function(require,module,exports){
|
|
9004
9137
|
"use strict";
|
|
9005
9138
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9006
9139
|
exports.Expressao = void 0;
|
|
@@ -9019,7 +9152,7 @@ class Expressao extends declaracao_1.Declaracao {
|
|
|
9019
9152
|
}
|
|
9020
9153
|
exports.Expressao = Expressao;
|
|
9021
9154
|
|
|
9022
|
-
},{"./declaracao":
|
|
9155
|
+
},{"./declaracao":87}],93:[function(require,module,exports){
|
|
9023
9156
|
"use strict";
|
|
9024
9157
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9025
9158
|
exports.Falhar = void 0;
|
|
@@ -9039,7 +9172,7 @@ class Falhar extends declaracao_1.Declaracao {
|
|
|
9039
9172
|
}
|
|
9040
9173
|
exports.Falhar = Falhar;
|
|
9041
9174
|
|
|
9042
|
-
},{"./declaracao":
|
|
9175
|
+
},{"./declaracao":87}],94:[function(require,module,exports){
|
|
9043
9176
|
"use strict";
|
|
9044
9177
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9045
9178
|
exports.Fazer = void 0;
|
|
@@ -9060,7 +9193,7 @@ class Fazer extends declaracao_1.Declaracao {
|
|
|
9060
9193
|
}
|
|
9061
9194
|
exports.Fazer = Fazer;
|
|
9062
9195
|
|
|
9063
|
-
},{"./declaracao":
|
|
9196
|
+
},{"./declaracao":87}],95:[function(require,module,exports){
|
|
9064
9197
|
"use strict";
|
|
9065
9198
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9066
9199
|
exports.FuncaoDeclaracao = void 0;
|
|
@@ -9088,7 +9221,7 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
|
|
|
9088
9221
|
}
|
|
9089
9222
|
exports.FuncaoDeclaracao = FuncaoDeclaracao;
|
|
9090
9223
|
|
|
9091
|
-
},{"../geracao-identificadores":
|
|
9224
|
+
},{"../geracao-identificadores":114,"./declaracao":87}],96:[function(require,module,exports){
|
|
9092
9225
|
"use strict";
|
|
9093
9226
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9094
9227
|
exports.Importar = void 0;
|
|
@@ -9114,7 +9247,7 @@ class Importar extends declaracao_1.Declaracao {
|
|
|
9114
9247
|
}
|
|
9115
9248
|
exports.Importar = Importar;
|
|
9116
9249
|
|
|
9117
|
-
},{"./declaracao":
|
|
9250
|
+
},{"./declaracao":87}],97:[function(require,module,exports){
|
|
9118
9251
|
"use strict";
|
|
9119
9252
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9120
9253
|
if (k2 === undefined) k2 = k;
|
|
@@ -9161,7 +9294,7 @@ __exportStar(require("./tente"), exports);
|
|
|
9161
9294
|
__exportStar(require("./var"), exports);
|
|
9162
9295
|
__exportStar(require("./var-multiplo"), exports);
|
|
9163
9296
|
|
|
9164
|
-
},{"./bloco":
|
|
9297
|
+
},{"./bloco":80,"./cabecalho-programa":81,"./classe":82,"./comentario":83,"./const":85,"./const-multiplo":84,"./continua":86,"./declaracao":87,"./enquanto":88,"./escolha":89,"./escreva":91,"./escreva-mesma-linha":90,"./expressao":92,"./falhar":93,"./fazer":94,"./funcao":95,"./importar":96,"./inicio-algoritmo":98,"./para":100,"./para-cada":99,"./propriedade-classe":101,"./retorna":102,"./se":103,"./sustar":104,"./tendo-como":105,"./tente":106,"./var":108,"./var-multiplo":107}],98:[function(require,module,exports){
|
|
9165
9298
|
"use strict";
|
|
9166
9299
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9167
9300
|
exports.InicioAlgoritmo = void 0;
|
|
@@ -9181,7 +9314,7 @@ class InicioAlgoritmo extends declaracao_1.Declaracao {
|
|
|
9181
9314
|
}
|
|
9182
9315
|
exports.InicioAlgoritmo = InicioAlgoritmo;
|
|
9183
9316
|
|
|
9184
|
-
},{"./declaracao":
|
|
9317
|
+
},{"./declaracao":87}],99:[function(require,module,exports){
|
|
9185
9318
|
"use strict";
|
|
9186
9319
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9187
9320
|
exports.ParaCada = void 0;
|
|
@@ -9204,7 +9337,7 @@ class ParaCada extends declaracao_1.Declaracao {
|
|
|
9204
9337
|
}
|
|
9205
9338
|
exports.ParaCada = ParaCada;
|
|
9206
9339
|
|
|
9207
|
-
},{"./declaracao":
|
|
9340
|
+
},{"./declaracao":87}],100:[function(require,module,exports){
|
|
9208
9341
|
"use strict";
|
|
9209
9342
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9210
9343
|
exports.Para = void 0;
|
|
@@ -9241,7 +9374,7 @@ class Para extends declaracao_1.Declaracao {
|
|
|
9241
9374
|
}
|
|
9242
9375
|
exports.Para = Para;
|
|
9243
9376
|
|
|
9244
|
-
},{"./declaracao":
|
|
9377
|
+
},{"./declaracao":87}],101:[function(require,module,exports){
|
|
9245
9378
|
"use strict";
|
|
9246
9379
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9247
9380
|
exports.PropriedadeClasse = void 0;
|
|
@@ -9262,7 +9395,7 @@ class PropriedadeClasse extends declaracao_1.Declaracao {
|
|
|
9262
9395
|
}
|
|
9263
9396
|
exports.PropriedadeClasse = PropriedadeClasse;
|
|
9264
9397
|
|
|
9265
|
-
},{"./declaracao":
|
|
9398
|
+
},{"./declaracao":87}],102:[function(require,module,exports){
|
|
9266
9399
|
"use strict";
|
|
9267
9400
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9268
9401
|
exports.Retorna = void 0;
|
|
@@ -9288,7 +9421,7 @@ class Retorna extends declaracao_1.Declaracao {
|
|
|
9288
9421
|
}
|
|
9289
9422
|
exports.Retorna = Retorna;
|
|
9290
9423
|
|
|
9291
|
-
},{"./declaracao":
|
|
9424
|
+
},{"./declaracao":87}],103:[function(require,module,exports){
|
|
9292
9425
|
"use strict";
|
|
9293
9426
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9294
9427
|
exports.Se = void 0;
|
|
@@ -9311,7 +9444,7 @@ class Se extends declaracao_1.Declaracao {
|
|
|
9311
9444
|
}
|
|
9312
9445
|
exports.Se = Se;
|
|
9313
9446
|
|
|
9314
|
-
},{"./declaracao":
|
|
9447
|
+
},{"./declaracao":87}],104:[function(require,module,exports){
|
|
9315
9448
|
"use strict";
|
|
9316
9449
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9317
9450
|
exports.Sustar = void 0;
|
|
@@ -9329,7 +9462,7 @@ class Sustar extends declaracao_1.Declaracao {
|
|
|
9329
9462
|
}
|
|
9330
9463
|
exports.Sustar = Sustar;
|
|
9331
9464
|
|
|
9332
|
-
},{"./declaracao":
|
|
9465
|
+
},{"./declaracao":87}],105:[function(require,module,exports){
|
|
9333
9466
|
"use strict";
|
|
9334
9467
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9335
9468
|
exports.TendoComo = void 0;
|
|
@@ -9356,7 +9489,7 @@ class TendoComo extends declaracao_1.Declaracao {
|
|
|
9356
9489
|
}
|
|
9357
9490
|
exports.TendoComo = TendoComo;
|
|
9358
9491
|
|
|
9359
|
-
},{"./declaracao":
|
|
9492
|
+
},{"./declaracao":87}],106:[function(require,module,exports){
|
|
9360
9493
|
"use strict";
|
|
9361
9494
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9362
9495
|
exports.Tente = void 0;
|
|
@@ -9382,7 +9515,7 @@ class Tente extends declaracao_1.Declaracao {
|
|
|
9382
9515
|
}
|
|
9383
9516
|
exports.Tente = Tente;
|
|
9384
9517
|
|
|
9385
|
-
},{"./declaracao":
|
|
9518
|
+
},{"./declaracao":87}],107:[function(require,module,exports){
|
|
9386
9519
|
"use strict";
|
|
9387
9520
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9388
9521
|
exports.VarMultiplo = void 0;
|
|
@@ -9408,7 +9541,7 @@ class VarMultiplo extends declaracao_1.Declaracao {
|
|
|
9408
9541
|
}
|
|
9409
9542
|
exports.VarMultiplo = VarMultiplo;
|
|
9410
9543
|
|
|
9411
|
-
},{"./declaracao":
|
|
9544
|
+
},{"./declaracao":87}],108:[function(require,module,exports){
|
|
9412
9545
|
"use strict";
|
|
9413
9546
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9414
9547
|
exports.Var = void 0;
|
|
@@ -9440,7 +9573,7 @@ class Var extends declaracao_1.Declaracao {
|
|
|
9440
9573
|
}
|
|
9441
9574
|
exports.Var = Var;
|
|
9442
9575
|
|
|
9443
|
-
},{"./declaracao":
|
|
9576
|
+
},{"./declaracao":87}],109:[function(require,module,exports){
|
|
9444
9577
|
"use strict";
|
|
9445
9578
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9446
9579
|
exports.ErroEmTempoDeExecucao = void 0;
|
|
@@ -9455,7 +9588,7 @@ class ErroEmTempoDeExecucao extends Error {
|
|
|
9455
9588
|
}
|
|
9456
9589
|
exports.ErroEmTempoDeExecucao = ErroEmTempoDeExecucao;
|
|
9457
9590
|
|
|
9458
|
-
},{}],
|
|
9591
|
+
},{}],110:[function(require,module,exports){
|
|
9459
9592
|
"use strict";
|
|
9460
9593
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9461
9594
|
if (k2 === undefined) k2 = k;
|
|
@@ -9474,7 +9607,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
9474
9607
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9475
9608
|
__exportStar(require("./erro-em-tempo-de-execucao"), exports);
|
|
9476
9609
|
|
|
9477
|
-
},{"./erro-em-tempo-de-execucao":
|
|
9610
|
+
},{"./erro-em-tempo-de-execucao":109}],111:[function(require,module,exports){
|
|
9478
9611
|
"use strict";
|
|
9479
9612
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
9480
9613
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -10206,7 +10339,7 @@ class FormatadorDelegua {
|
|
|
10206
10339
|
}
|
|
10207
10340
|
exports.FormatadorDelegua = FormatadorDelegua;
|
|
10208
10341
|
|
|
10209
|
-
},{"../construtos":
|
|
10342
|
+
},{"../construtos":52,"../tipos-de-simbolos/delegua":187}],112:[function(require,module,exports){
|
|
10210
10343
|
"use strict";
|
|
10211
10344
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10212
10345
|
exports.FormatadorPitugues = void 0;
|
|
@@ -10442,7 +10575,7 @@ class FormatadorPitugues {
|
|
|
10442
10575
|
}
|
|
10443
10576
|
exports.FormatadorPitugues = FormatadorPitugues;
|
|
10444
10577
|
|
|
10445
|
-
},{}],
|
|
10578
|
+
},{}],113:[function(require,module,exports){
|
|
10446
10579
|
"use strict";
|
|
10447
10580
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10448
10581
|
if (k2 === undefined) k2 = k;
|
|
@@ -10462,7 +10595,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
10462
10595
|
__exportStar(require("./formatador-delegua"), exports);
|
|
10463
10596
|
__exportStar(require("./formatador-pitugues"), exports);
|
|
10464
10597
|
|
|
10465
|
-
},{"./formatador-delegua":
|
|
10598
|
+
},{"./formatador-delegua":111,"./formatador-pitugues":112}],114:[function(require,module,exports){
|
|
10466
10599
|
"use strict";
|
|
10467
10600
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10468
10601
|
exports.cyrb53 = cyrb53;
|
|
@@ -10506,7 +10639,7 @@ function uuidv4() {
|
|
|
10506
10639
|
});
|
|
10507
10640
|
}
|
|
10508
10641
|
|
|
10509
|
-
},{}],
|
|
10642
|
+
},{}],115:[function(require,module,exports){
|
|
10510
10643
|
"use strict";
|
|
10511
10644
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10512
10645
|
if (k2 === undefined) k2 = k;
|
|
@@ -10533,7 +10666,7 @@ __exportStar(require("./interpretador"), exports);
|
|
|
10533
10666
|
__exportStar(require("./lexador"), exports);
|
|
10534
10667
|
__exportStar(require("./tradutores"), exports);
|
|
10535
10668
|
|
|
10536
|
-
},{"./avaliador-sintatico":12,"./construtos":
|
|
10669
|
+
},{"./avaliador-sintatico":12,"./construtos":52,"./declaracoes":97,"./formatadores":113,"./geracao-identificadores":114,"./interfaces":123,"./interpretador":156,"./lexador":174,"./tradutores":194}],116:[function(require,module,exports){
|
|
10537
10670
|
"use strict";
|
|
10538
10671
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
10539
10672
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -10660,7 +10793,7 @@ function tipoInferenciaParaTipoDadosElementar(tipoInferencia) {
|
|
|
10660
10793
|
}
|
|
10661
10794
|
}
|
|
10662
10795
|
|
|
10663
|
-
},{"./tipos-de-dados/delegua":
|
|
10796
|
+
},{"./tipos-de-dados/delegua":182,"./tipos-de-dados/primitivos":184,"./tipos-de-simbolos/delegua":187}],117:[function(require,module,exports){
|
|
10664
10797
|
"use strict";
|
|
10665
10798
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10666
10799
|
exports.InformacaoElementoSintatico = void 0;
|
|
@@ -10679,15 +10812,15 @@ class InformacaoElementoSintatico {
|
|
|
10679
10812
|
}
|
|
10680
10813
|
exports.InformacaoElementoSintatico = InformacaoElementoSintatico;
|
|
10681
10814
|
|
|
10682
|
-
},{}],
|
|
10815
|
+
},{}],118:[function(require,module,exports){
|
|
10683
10816
|
"use strict";
|
|
10684
10817
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10685
10818
|
|
|
10686
|
-
},{}],
|
|
10819
|
+
},{}],119:[function(require,module,exports){
|
|
10687
10820
|
"use strict";
|
|
10688
10821
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10689
10822
|
|
|
10690
|
-
},{}],
|
|
10823
|
+
},{}],120:[function(require,module,exports){
|
|
10691
10824
|
"use strict";
|
|
10692
10825
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10693
10826
|
exports.DiagnosticoSeveridade = void 0;
|
|
@@ -10699,7 +10832,7 @@ var DiagnosticoSeveridade;
|
|
|
10699
10832
|
DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
|
|
10700
10833
|
})(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
|
|
10701
10834
|
|
|
10702
|
-
},{}],
|
|
10835
|
+
},{}],121:[function(require,module,exports){
|
|
10703
10836
|
"use strict";
|
|
10704
10837
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10705
10838
|
if (k2 === undefined) k2 = k;
|
|
@@ -10718,11 +10851,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
10718
10851
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10719
10852
|
__exportStar(require("./diagnostico-analisador-semantico"), exports);
|
|
10720
10853
|
|
|
10721
|
-
},{"./diagnostico-analisador-semantico":
|
|
10854
|
+
},{"./diagnostico-analisador-semantico":120}],122:[function(require,module,exports){
|
|
10722
10855
|
"use strict";
|
|
10723
10856
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10724
10857
|
|
|
10725
|
-
},{}],
|
|
10858
|
+
},{}],123:[function(require,module,exports){
|
|
10726
10859
|
"use strict";
|
|
10727
10860
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10728
10861
|
if (k2 === undefined) k2 = k;
|
|
@@ -10759,15 +10892,7 @@ __exportStar(require("./construtos"), exports);
|
|
|
10759
10892
|
__exportStar(require("./erros"), exports);
|
|
10760
10893
|
__exportStar(require("./retornos"), exports);
|
|
10761
10894
|
|
|
10762
|
-
},{"./avaliador-sintatico-interface":
|
|
10763
|
-
"use strict";
|
|
10764
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10765
|
-
|
|
10766
|
-
},{}],123:[function(require,module,exports){
|
|
10767
|
-
"use strict";
|
|
10768
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10769
|
-
|
|
10770
|
-
},{}],124:[function(require,module,exports){
|
|
10895
|
+
},{"./avaliador-sintatico-interface":118,"./construtos":119,"./erros":121,"./formatador-comum-interface":122,"./interpretador-com-depuracao-interface":124,"./interpretador-interface":125,"./lexador-interface":126,"./parametro-interface":127,"./pilha-interface":128,"./primitiva-interface":129,"./resolvedor-interface":130,"./resultado-parcial-interpretador-interface":131,"./retornos":132,"./retornos/retorno-execucao-interface":134,"./simbolo-interface":137,"./tradutor-interface":138,"./variavel-interface":139,"./visitante-comum-interface":140,"./visitante-delegua-interface":141}],124:[function(require,module,exports){
|
|
10771
10896
|
"use strict";
|
|
10772
10897
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10773
10898
|
|
|
@@ -10793,6 +10918,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
10793
10918
|
|
|
10794
10919
|
},{}],130:[function(require,module,exports){
|
|
10795
10920
|
"use strict";
|
|
10921
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10922
|
+
|
|
10923
|
+
},{}],131:[function(require,module,exports){
|
|
10924
|
+
"use strict";
|
|
10925
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10926
|
+
|
|
10927
|
+
},{}],132:[function(require,module,exports){
|
|
10928
|
+
"use strict";
|
|
10796
10929
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10797
10930
|
if (k2 === undefined) k2 = k;
|
|
10798
10931
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -10813,15 +10946,7 @@ __exportStar(require("./retorno-execucao-interface"), exports);
|
|
|
10813
10946
|
__exportStar(require("./retorno-interpretador-interface"), exports);
|
|
10814
10947
|
__exportStar(require("./retorno-lexador"), exports);
|
|
10815
10948
|
|
|
10816
|
-
},{"./retorno-avaliador-sintatico":
|
|
10817
|
-
"use strict";
|
|
10818
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10819
|
-
|
|
10820
|
-
},{}],132:[function(require,module,exports){
|
|
10821
|
-
"use strict";
|
|
10822
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10823
|
-
|
|
10824
|
-
},{}],133:[function(require,module,exports){
|
|
10949
|
+
},{"./retorno-avaliador-sintatico":133,"./retorno-execucao-interface":134,"./retorno-interpretador-interface":135,"./retorno-lexador":136}],133:[function(require,module,exports){
|
|
10825
10950
|
"use strict";
|
|
10826
10951
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10827
10952
|
|
|
@@ -10851,6 +10976,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
10851
10976
|
|
|
10852
10977
|
},{}],140:[function(require,module,exports){
|
|
10853
10978
|
"use strict";
|
|
10979
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10980
|
+
|
|
10981
|
+
},{}],141:[function(require,module,exports){
|
|
10982
|
+
"use strict";
|
|
10983
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10984
|
+
|
|
10985
|
+
},{}],142:[function(require,module,exports){
|
|
10986
|
+
"use strict";
|
|
10854
10987
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10855
10988
|
if (k2 === undefined) k2 = k;
|
|
10856
10989
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -10914,7 +11047,7 @@ function carregarBibliotecasGlobais(pilhaEscoposExecucao) {
|
|
|
10914
11047
|
pilhaEscoposExecucao.definirVariavel('tupla', new funcao_padrao_1.FuncaoPadrao(1, bibliotecaGlobal.tupla));
|
|
10915
11048
|
}
|
|
10916
11049
|
|
|
10917
|
-
},{"../bibliotecas/biblioteca-global":20,"./estruturas/funcao-padrao":
|
|
11050
|
+
},{"../bibliotecas/biblioteca-global":20,"./estruturas/funcao-padrao":149}],143:[function(require,module,exports){
|
|
10918
11051
|
"use strict";
|
|
10919
11052
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10920
11053
|
exports.EspacoMemoria = void 0;
|
|
@@ -10939,7 +11072,7 @@ class EspacoMemoria {
|
|
|
10939
11072
|
}
|
|
10940
11073
|
exports.EspacoMemoria = EspacoMemoria;
|
|
10941
11074
|
|
|
10942
|
-
},{}],
|
|
11075
|
+
},{}],144:[function(require,module,exports){
|
|
10943
11076
|
"use strict";
|
|
10944
11077
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10945
11078
|
exports.Chamavel = void 0;
|
|
@@ -10953,7 +11086,28 @@ class Chamavel {
|
|
|
10953
11086
|
}
|
|
10954
11087
|
exports.Chamavel = Chamavel;
|
|
10955
11088
|
|
|
10956
|
-
},{}],
|
|
11089
|
+
},{}],145:[function(require,module,exports){
|
|
11090
|
+
"use strict";
|
|
11091
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11092
|
+
exports.ClasseDeModulo = void 0;
|
|
11093
|
+
const chamavel_1 = require("./chamavel");
|
|
11094
|
+
/**
|
|
11095
|
+
* Uma classe de módulo não é muito diferente de uma `ClassePadrao`, com o adicional
|
|
11096
|
+
* de ter documentações extras para métodos e propriedades.
|
|
11097
|
+
*/
|
|
11098
|
+
class ClasseDeModulo extends chamavel_1.Chamavel {
|
|
11099
|
+
constructor(nome, modulo, implementacao, metodos, propriedades) {
|
|
11100
|
+
super();
|
|
11101
|
+
this.nome = nome;
|
|
11102
|
+
this.modulo = modulo;
|
|
11103
|
+
this.implementacao = implementacao;
|
|
11104
|
+
this.metodos = metodos;
|
|
11105
|
+
this.propriedades = propriedades;
|
|
11106
|
+
}
|
|
11107
|
+
}
|
|
11108
|
+
exports.ClasseDeModulo = ClasseDeModulo;
|
|
11109
|
+
|
|
11110
|
+
},{"./chamavel":144}],146:[function(require,module,exports){
|
|
10957
11111
|
"use strict";
|
|
10958
11112
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10959
11113
|
exports.ClassePadrao = void 0;
|
|
@@ -10994,7 +11148,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
|
|
|
10994
11148
|
}
|
|
10995
11149
|
exports.ClassePadrao = ClassePadrao;
|
|
10996
11150
|
|
|
10997
|
-
},{"./chamavel":
|
|
11151
|
+
},{"./chamavel":144}],147:[function(require,module,exports){
|
|
10998
11152
|
"use strict";
|
|
10999
11153
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11000
11154
|
exports.DeleguaFuncao = void 0;
|
|
@@ -11139,7 +11293,7 @@ class DeleguaFuncao extends chamavel_1.Chamavel {
|
|
|
11139
11293
|
}
|
|
11140
11294
|
exports.DeleguaFuncao = DeleguaFuncao;
|
|
11141
11295
|
|
|
11142
|
-
},{"../../declaracoes":
|
|
11296
|
+
},{"../../declaracoes":97,"../../quebras":181,"../espaco-memoria":143,"./chamavel":144}],148:[function(require,module,exports){
|
|
11143
11297
|
"use strict";
|
|
11144
11298
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11145
11299
|
exports.DescritorTipoClasse = void 0;
|
|
@@ -11220,7 +11374,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
|
|
|
11220
11374
|
}
|
|
11221
11375
|
exports.DescritorTipoClasse = DescritorTipoClasse;
|
|
11222
11376
|
|
|
11223
|
-
},{"../../excecoes":
|
|
11377
|
+
},{"../../excecoes":110,"./chamavel":144,"./objeto-delegua-classe":153}],149:[function(require,module,exports){
|
|
11224
11378
|
"use strict";
|
|
11225
11379
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11226
11380
|
exports.FuncaoPadrao = void 0;
|
|
@@ -11257,7 +11411,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
|
|
|
11257
11411
|
}
|
|
11258
11412
|
exports.FuncaoPadrao = FuncaoPadrao;
|
|
11259
11413
|
|
|
11260
|
-
},{"./chamavel":
|
|
11414
|
+
},{"./chamavel":144}],150:[function(require,module,exports){
|
|
11261
11415
|
"use strict";
|
|
11262
11416
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
11263
11417
|
if (k2 === undefined) k2 = k;
|
|
@@ -11275,6 +11429,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
11275
11429
|
};
|
|
11276
11430
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11277
11431
|
__exportStar(require("./chamavel"), exports);
|
|
11432
|
+
__exportStar(require("./classe-de-modulo"), exports);
|
|
11278
11433
|
__exportStar(require("./classe-padrao"), exports);
|
|
11279
11434
|
__exportStar(require("./descritor-tipo-classe"), exports);
|
|
11280
11435
|
__exportStar(require("./funcao-padrao"), exports);
|
|
@@ -11285,7 +11440,7 @@ __exportStar(require("./objeto-delegua-classe"), exports);
|
|
|
11285
11440
|
__exportStar(require("./objeto-padrao"), exports);
|
|
11286
11441
|
__exportStar(require("./referencia-montao"), exports);
|
|
11287
11442
|
|
|
11288
|
-
},{"./chamavel":
|
|
11443
|
+
},{"./chamavel":144,"./classe-de-modulo":145,"./classe-padrao":146,"./delegua-funcao":147,"./descritor-tipo-classe":148,"./funcao-padrao":149,"./metodo-primitiva":151,"./modulo":152,"./objeto-delegua-classe":153,"./objeto-padrao":154,"./referencia-montao":155}],151:[function(require,module,exports){
|
|
11289
11444
|
"use strict";
|
|
11290
11445
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11291
11446
|
exports.MetodoPrimitiva = void 0;
|
|
@@ -11328,7 +11483,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
|
|
|
11328
11483
|
}
|
|
11329
11484
|
exports.MetodoPrimitiva = MetodoPrimitiva;
|
|
11330
11485
|
|
|
11331
|
-
},{"./chamavel":
|
|
11486
|
+
},{"./chamavel":144}],152:[function(require,module,exports){
|
|
11332
11487
|
"use strict";
|
|
11333
11488
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11334
11489
|
exports.DeleguaModulo = void 0;
|
|
@@ -11354,7 +11509,7 @@ class DeleguaModulo {
|
|
|
11354
11509
|
}
|
|
11355
11510
|
exports.DeleguaModulo = DeleguaModulo;
|
|
11356
11511
|
|
|
11357
|
-
},{}],
|
|
11512
|
+
},{}],153:[function(require,module,exports){
|
|
11358
11513
|
"use strict";
|
|
11359
11514
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11360
11515
|
exports.ObjetoDeleguaClasse = void 0;
|
|
@@ -11422,7 +11577,7 @@ class ObjetoDeleguaClasse {
|
|
|
11422
11577
|
}
|
|
11423
11578
|
exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
|
|
11424
11579
|
|
|
11425
|
-
},{"../../excecoes":
|
|
11580
|
+
},{"../../excecoes":110}],154:[function(require,module,exports){
|
|
11426
11581
|
"use strict";
|
|
11427
11582
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11428
11583
|
exports.ObjetoPadrao = void 0;
|
|
@@ -11456,7 +11611,7 @@ class ObjetoPadrao {
|
|
|
11456
11611
|
}
|
|
11457
11612
|
exports.ObjetoPadrao = ObjetoPadrao;
|
|
11458
11613
|
|
|
11459
|
-
},{}],
|
|
11614
|
+
},{}],155:[function(require,module,exports){
|
|
11460
11615
|
"use strict";
|
|
11461
11616
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11462
11617
|
exports.ReferenciaMontao = void 0;
|
|
@@ -11481,7 +11636,7 @@ class ReferenciaMontao {
|
|
|
11481
11636
|
}
|
|
11482
11637
|
exports.ReferenciaMontao = ReferenciaMontao;
|
|
11483
11638
|
|
|
11484
|
-
},{}],
|
|
11639
|
+
},{}],156:[function(require,module,exports){
|
|
11485
11640
|
"use strict";
|
|
11486
11641
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
11487
11642
|
if (k2 === undefined) k2 = k;
|
|
@@ -11501,7 +11656,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
11501
11656
|
__exportStar(require("./interpretador"), exports);
|
|
11502
11657
|
__exportStar(require("./interpretador-base"), exports);
|
|
11503
11658
|
|
|
11504
|
-
},{"./interpretador":
|
|
11659
|
+
},{"./interpretador":158,"./interpretador-base":157}],157:[function(require,module,exports){
|
|
11505
11660
|
(function (process){(function (){
|
|
11506
11661
|
"use strict";
|
|
11507
11662
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
@@ -13034,7 +13189,7 @@ class InterpretadorBase {
|
|
|
13034
13189
|
exports.InterpretadorBase = InterpretadorBase;
|
|
13035
13190
|
|
|
13036
13191
|
}).call(this)}).call(this,require('_process'))
|
|
13037
|
-
},{"../avaliador-sintatico":12,"../bibliotecas/primitivas-dicionario":21,"../construtos":
|
|
13192
|
+
},{"../avaliador-sintatico":12,"../bibliotecas/primitivas-dicionario":21,"../construtos":52,"../excecoes":110,"../inferenciador":116,"../lexador":174,"../quebras":181,"../tipos-de-dados/delegua":182,"../tipos-de-dados/primitivos":184,"../tipos-de-simbolos/delegua":187,"./comum":142,"./espaco-memoria":143,"./estruturas":150,"./estruturas/metodo-primitiva":151,"./pilha-escopos-execucao":160,"_process":421,"browser-process-hrtime":367}],158:[function(require,module,exports){
|
|
13038
13193
|
"use strict";
|
|
13039
13194
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13040
13195
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13056,7 +13211,7 @@ const primitivas_vetor_1 = __importDefault(require("../bibliotecas/primitivas-ve
|
|
|
13056
13211
|
const primitivos_1 = __importDefault(require("../tipos-de-dados/primitivos"));
|
|
13057
13212
|
const delegua_1 = __importDefault(require("../tipos-de-dados/delegua"));
|
|
13058
13213
|
/**
|
|
13059
|
-
* O interpretador de Delégua.
|
|
13214
|
+
* O interpretador de Delégua. Usado também por Pituguês.
|
|
13060
13215
|
*/
|
|
13061
13216
|
class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
13062
13217
|
constructor(diretorioBase, performance = false, funcaoDeRetorno = null, funcaoDeRetornoMesmaLinha = null) {
|
|
@@ -13816,6 +13971,16 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
13816
13971
|
this.pilhaEscoposExecucao.registrarReferenciaMontao(enderecoDicionarioMontao);
|
|
13817
13972
|
return new estruturas_1.ReferenciaMontao(enderecoDicionarioMontao);
|
|
13818
13973
|
}
|
|
13974
|
+
async visitarExpressaoElvis(expressao) {
|
|
13975
|
+
const esquerda = await this.avaliar(expressao.esquerda);
|
|
13976
|
+
const direita = await this.avaliar(expressao.direita);
|
|
13977
|
+
const valorEsquerdo = this.resolverValor(esquerda);
|
|
13978
|
+
const valorDireito = this.resolverValor(direita);
|
|
13979
|
+
if (valorEsquerdo === null || valorEsquerdo === undefined) {
|
|
13980
|
+
return valorDireito;
|
|
13981
|
+
}
|
|
13982
|
+
return valorEsquerdo;
|
|
13983
|
+
}
|
|
13819
13984
|
visitarExpressaoEnquanto(expressao) {
|
|
13820
13985
|
return this.logicaComumExecucaoEnquanto(expressao, true);
|
|
13821
13986
|
}
|
|
@@ -13835,6 +14000,9 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
13835
14000
|
const resultadoCompreensaoResolvido = resultadoCompreensao.valorRetornado.filter(r => r !== null).map(r => this.resolverValor(r));
|
|
13836
14001
|
return resultadoCompreensaoResolvido;
|
|
13837
14002
|
}
|
|
14003
|
+
visitarExpressaoPara(expressao) {
|
|
14004
|
+
return this.logicaComumExecucaoPara(expressao, true);
|
|
14005
|
+
}
|
|
13838
14006
|
visitarExpressaoParaCada(expressao) {
|
|
13839
14007
|
return this.logicaComumExecucaoParaCada(expressao, true);
|
|
13840
14008
|
}
|
|
@@ -13859,9 +14027,6 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
13859
14027
|
}
|
|
13860
14028
|
return retornoQuebra;
|
|
13861
14029
|
}
|
|
13862
|
-
visitarExpressaoPara(expressao) {
|
|
13863
|
-
return this.logicaComumExecucaoPara(expressao, true);
|
|
13864
|
-
}
|
|
13865
14030
|
/**
|
|
13866
14031
|
* Para Delégua e Pituguês, o separador é apenas um elemento de sintaxe.
|
|
13867
14032
|
* Não há qualquer avaliação a ser feita.
|
|
@@ -13870,6 +14035,14 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
13870
14035
|
async visitarExpressaoSeparador(expressao) {
|
|
13871
14036
|
return Promise.resolve(null);
|
|
13872
14037
|
}
|
|
14038
|
+
async visitarExpressaoSeTernario(expressao) {
|
|
14039
|
+
const avaliacaoCondicao = await this.avaliar(expressao.condicao);
|
|
14040
|
+
const valorAvaliacaoCondicao = this.resolverValor(avaliacaoCondicao);
|
|
14041
|
+
if (valorAvaliacaoCondicao) {
|
|
14042
|
+
return this.avaliar(expressao.expressaoSe);
|
|
14043
|
+
}
|
|
14044
|
+
return this.avaliar(expressao.expressaoSenao);
|
|
14045
|
+
}
|
|
13873
14046
|
async visitarExpressaoTipoDe(expressao) {
|
|
13874
14047
|
let valorTipoDe = expressao.valor;
|
|
13875
14048
|
switch (valorTipoDe.constructor) {
|
|
@@ -13989,7 +14162,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
13989
14162
|
}
|
|
13990
14163
|
exports.Interpretador = Interpretador;
|
|
13991
14164
|
|
|
13992
|
-
},{"../bibliotecas/primitivas-dicionario":21,"../bibliotecas/primitivas-numero":22,"../bibliotecas/primitivas-texto":23,"../bibliotecas/primitivas-vetor":24,"../construtos":
|
|
14165
|
+
},{"../bibliotecas/primitivas-dicionario":21,"../bibliotecas/primitivas-numero":22,"../bibliotecas/primitivas-texto":23,"../bibliotecas/primitivas-vetor":24,"../construtos":52,"../declaracoes":97,"../excecoes":110,"../inferenciador":116,"../quebras":181,"../tipos-de-dados/delegua":182,"../tipos-de-dados/primitivos":184,"./estruturas":150,"./interpretador-base":157,"./montao":159}],159:[function(require,module,exports){
|
|
13993
14166
|
"use strict";
|
|
13994
14167
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13995
14168
|
exports.Montao = void 0;
|
|
@@ -14046,7 +14219,7 @@ class Montao {
|
|
|
14046
14219
|
}
|
|
14047
14220
|
exports.Montao = Montao;
|
|
14048
14221
|
|
|
14049
|
-
},{"../excecoes":
|
|
14222
|
+
},{"../excecoes":110,"../geracao-identificadores":114}],160:[function(require,module,exports){
|
|
14050
14223
|
"use strict";
|
|
14051
14224
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14052
14225
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14334,7 +14507,7 @@ class PilhaEscoposExecucao {
|
|
|
14334
14507
|
}
|
|
14335
14508
|
exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
|
|
14336
14509
|
|
|
14337
|
-
},{"../excecoes":
|
|
14510
|
+
},{"../excecoes":110,"../inferenciador":116,"../lexador":174,"../tipos-de-dados/delegua":182,"./estruturas":150}],161:[function(require,module,exports){
|
|
14338
14511
|
"use strict";
|
|
14339
14512
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14340
14513
|
if (k2 === undefined) k2 = k;
|
|
@@ -14358,7 +14531,7 @@ __exportStar(require("./lexador-guarani"), exports);
|
|
|
14358
14531
|
__exportStar(require("./lexador-portugol-ipt"), exports);
|
|
14359
14532
|
__exportStar(require("./lexador-tenda"), exports);
|
|
14360
14533
|
|
|
14361
|
-
},{"./lexador-calango":
|
|
14534
|
+
},{"./lexador-calango":162,"./lexador-egua-classico":163,"./lexador-guarani":164,"./lexador-pitugues":165,"./lexador-portugol-ipt":166,"./lexador-tenda":167}],162:[function(require,module,exports){
|
|
14362
14535
|
"use strict";
|
|
14363
14536
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14364
14537
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14591,7 +14764,7 @@ class LexadorCalango {
|
|
|
14591
14764
|
}
|
|
14592
14765
|
exports.LexadorCalango = LexadorCalango;
|
|
14593
14766
|
|
|
14594
|
-
},{"../../tipos-de-simbolos/calango":
|
|
14767
|
+
},{"../../tipos-de-simbolos/calango":185,"../simbolo":180,"./palavras-reservadas/calango":168}],163:[function(require,module,exports){
|
|
14595
14768
|
"use strict";
|
|
14596
14769
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14597
14770
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14881,7 +15054,7 @@ class LexadorEguaClassico {
|
|
|
14881
15054
|
}
|
|
14882
15055
|
exports.LexadorEguaClassico = LexadorEguaClassico;
|
|
14883
15056
|
|
|
14884
|
-
},{"../../tipos-de-simbolos/egua-classico":
|
|
15057
|
+
},{"../../tipos-de-simbolos/egua-classico":188,"../simbolo":180,"./palavras-reservadas/egua-classico":169}],164:[function(require,module,exports){
|
|
14885
15058
|
"use strict";
|
|
14886
15059
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14887
15060
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -15000,7 +15173,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
|
|
|
15000
15173
|
}
|
|
15001
15174
|
exports.LexadorGuarani = LexadorGuarani;
|
|
15002
15175
|
|
|
15003
|
-
},{"../../tipos-de-simbolos/guarani":
|
|
15176
|
+
},{"../../tipos-de-simbolos/guarani":189,"../lexador-base":176,"./palavras-reservadas/guarani":170}],165:[function(require,module,exports){
|
|
15004
15177
|
"use strict";
|
|
15005
15178
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
15006
15179
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -15418,7 +15591,7 @@ class LexadorPitugues {
|
|
|
15418
15591
|
}
|
|
15419
15592
|
exports.LexadorPitugues = LexadorPitugues;
|
|
15420
15593
|
|
|
15421
|
-
},{"../../tipos-de-simbolos/pitugues":
|
|
15594
|
+
},{"../../tipos-de-simbolos/pitugues":191,"../simbolo":180,"./palavras-reservadas/pitugues":171,"browser-process-hrtime":367}],166:[function(require,module,exports){
|
|
15422
15595
|
"use strict";
|
|
15423
15596
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
15424
15597
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -15670,7 +15843,7 @@ class LexadorPortugolIpt {
|
|
|
15670
15843
|
}
|
|
15671
15844
|
exports.LexadorPortugolIpt = LexadorPortugolIpt;
|
|
15672
15845
|
|
|
15673
|
-
},{"../../tipos-de-simbolos/portugol-ipt":
|
|
15846
|
+
},{"../../tipos-de-simbolos/portugol-ipt":192,"../simbolo":180,"./palavras-reservadas/portugol-ipt":172}],167:[function(require,module,exports){
|
|
15674
15847
|
"use strict";
|
|
15675
15848
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
15676
15849
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -16061,7 +16234,7 @@ class LexadorTenda {
|
|
|
16061
16234
|
}
|
|
16062
16235
|
exports.LexadorTenda = LexadorTenda;
|
|
16063
16236
|
|
|
16064
|
-
},{"../../tipos-de-simbolos/tenda":
|
|
16237
|
+
},{"../../tipos-de-simbolos/tenda":193,"../simbolo":180,"./palavras-reservadas/tenda":173,"browser-process-hrtime":367}],168:[function(require,module,exports){
|
|
16065
16238
|
"use strict";
|
|
16066
16239
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16067
16240
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -16082,7 +16255,7 @@ exports.default = {
|
|
|
16082
16255
|
fimSe: calango_1.default.FIM_SE,
|
|
16083
16256
|
};
|
|
16084
16257
|
|
|
16085
|
-
},{"../../../tipos-de-simbolos/calango":
|
|
16258
|
+
},{"../../../tipos-de-simbolos/calango":185}],169:[function(require,module,exports){
|
|
16086
16259
|
"use strict";
|
|
16087
16260
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16088
16261
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -16123,7 +16296,7 @@ exports.palavrasReservadas = {
|
|
|
16123
16296
|
verdadeiro: egua_classico_1.default.VERDADEIRO,
|
|
16124
16297
|
};
|
|
16125
16298
|
|
|
16126
|
-
},{"../../../tipos-de-simbolos/egua-classico":
|
|
16299
|
+
},{"../../../tipos-de-simbolos/egua-classico":188}],170:[function(require,module,exports){
|
|
16127
16300
|
"use strict";
|
|
16128
16301
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16129
16302
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -16135,7 +16308,7 @@ exports.palavrasReservadas = {
|
|
|
16135
16308
|
hai: guarani_1.default.HAI,
|
|
16136
16309
|
};
|
|
16137
16310
|
|
|
16138
|
-
},{"../../../tipos-de-simbolos/guarani":
|
|
16311
|
+
},{"../../../tipos-de-simbolos/guarani":189}],171:[function(require,module,exports){
|
|
16139
16312
|
"use strict";
|
|
16140
16313
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16141
16314
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -16195,7 +16368,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
16195
16368
|
verdadeiro: pitugues_1.default.VERDADEIRO,
|
|
16196
16369
|
};
|
|
16197
16370
|
|
|
16198
|
-
},{"../../../tipos-de-simbolos/pitugues":
|
|
16371
|
+
},{"../../../tipos-de-simbolos/pitugues":191}],172:[function(require,module,exports){
|
|
16199
16372
|
"use strict";
|
|
16200
16373
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16201
16374
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -16217,7 +16390,7 @@ exports.palavrasReservadas = {
|
|
|
16217
16390
|
senão: portugol_ipt_1.default.SENAO,
|
|
16218
16391
|
};
|
|
16219
16392
|
|
|
16220
|
-
},{"../../../tipos-de-simbolos/portugol-ipt":
|
|
16393
|
+
},{"../../../tipos-de-simbolos/portugol-ipt":192}],173:[function(require,module,exports){
|
|
16221
16394
|
"use strict";
|
|
16222
16395
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16223
16396
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -16275,7 +16448,7 @@ exports.palavrasReservadas = {
|
|
|
16275
16448
|
Texto: tenda_1.default.BIBLIOTECA_GLOBAL,
|
|
16276
16449
|
};
|
|
16277
16450
|
|
|
16278
|
-
},{"../../../tipos-de-simbolos/tenda":
|
|
16451
|
+
},{"../../../tipos-de-simbolos/tenda":193}],174:[function(require,module,exports){
|
|
16279
16452
|
"use strict";
|
|
16280
16453
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16281
16454
|
if (k2 === undefined) k2 = k;
|
|
@@ -16298,7 +16471,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
|
|
|
16298
16471
|
__exportStar(require("./micro-lexador"), exports);
|
|
16299
16472
|
__exportStar(require("./simbolo"), exports);
|
|
16300
16473
|
|
|
16301
|
-
},{"./dialetos":
|
|
16474
|
+
},{"./dialetos":161,"./lexador":177,"./lexador-base-linha-unica":175,"./micro-lexador":178,"./simbolo":180}],175:[function(require,module,exports){
|
|
16302
16475
|
"use strict";
|
|
16303
16476
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16304
16477
|
exports.LexadorBaseLinhaUnica = void 0;
|
|
@@ -16382,7 +16555,7 @@ class LexadorBaseLinhaUnica {
|
|
|
16382
16555
|
}
|
|
16383
16556
|
exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
|
|
16384
16557
|
|
|
16385
|
-
},{"./simbolo":
|
|
16558
|
+
},{"./simbolo":180}],176:[function(require,module,exports){
|
|
16386
16559
|
"use strict";
|
|
16387
16560
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16388
16561
|
exports.LexadorBase = void 0;
|
|
@@ -16496,7 +16669,7 @@ class LexadorBase {
|
|
|
16496
16669
|
}
|
|
16497
16670
|
exports.LexadorBase = LexadorBase;
|
|
16498
16671
|
|
|
16499
|
-
},{"./simbolo":
|
|
16672
|
+
},{"./simbolo":180}],177:[function(require,module,exports){
|
|
16500
16673
|
"use strict";
|
|
16501
16674
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16502
16675
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -16891,6 +17064,16 @@ class Lexador {
|
|
|
16891
17064
|
break;
|
|
16892
17065
|
}
|
|
16893
17066
|
break;
|
|
17067
|
+
case '?':
|
|
17068
|
+
this.avancar();
|
|
17069
|
+
if (this.simboloAtual() === ':') {
|
|
17070
|
+
this.adicionarSimbolo(delegua_1.default.ELVIS, '?:');
|
|
17071
|
+
this.avancar();
|
|
17072
|
+
}
|
|
17073
|
+
else {
|
|
17074
|
+
this.adicionarSimbolo(delegua_1.default.INTERROGACAO);
|
|
17075
|
+
}
|
|
17076
|
+
break;
|
|
16894
17077
|
// Esta sessão ignora espaços em branco (ou similares) na tokenização.
|
|
16895
17078
|
case ' ':
|
|
16896
17079
|
case '\0':
|
|
@@ -16957,7 +17140,7 @@ class Lexador {
|
|
|
16957
17140
|
}
|
|
16958
17141
|
exports.Lexador = Lexador;
|
|
16959
17142
|
|
|
16960
|
-
},{"../tipos-de-simbolos/delegua":
|
|
17143
|
+
},{"../tipos-de-simbolos/delegua":187,"./palavras-reservadas":179,"./simbolo":180,"browser-process-hrtime":367}],178:[function(require,module,exports){
|
|
16961
17144
|
"use strict";
|
|
16962
17145
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16963
17146
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -17123,6 +17306,16 @@ class MicroLexador {
|
|
|
17123
17306
|
this.atual++;
|
|
17124
17307
|
this.adicionarSimbolo(delegua_1.default.DIVISAO_INTEIRA);
|
|
17125
17308
|
break;
|
|
17309
|
+
case '?':
|
|
17310
|
+
this.atual++;
|
|
17311
|
+
if (this.codigo[this.atual] === ':') {
|
|
17312
|
+
this.adicionarSimbolo(delegua_1.default.ELVIS, '?:');
|
|
17313
|
+
this.atual++;
|
|
17314
|
+
}
|
|
17315
|
+
else {
|
|
17316
|
+
this.adicionarSimbolo(delegua_1.default.INTERROGACAO);
|
|
17317
|
+
}
|
|
17318
|
+
break;
|
|
17126
17319
|
case ' ':
|
|
17127
17320
|
case '\0':
|
|
17128
17321
|
case '\r':
|
|
@@ -17180,7 +17373,7 @@ class MicroLexador {
|
|
|
17180
17373
|
}
|
|
17181
17374
|
exports.MicroLexador = MicroLexador;
|
|
17182
17375
|
|
|
17183
|
-
},{"../tipos-de-simbolos/microgramaticas/delegua":
|
|
17376
|
+
},{"../tipos-de-simbolos/microgramaticas/delegua":190,"./palavras-reservadas":179,"./simbolo":180}],179:[function(require,module,exports){
|
|
17184
17377
|
"use strict";
|
|
17185
17378
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
17186
17379
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -17246,7 +17439,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
17246
17439
|
verdadeiro: delegua_1.default.VERDADEIRO,
|
|
17247
17440
|
};
|
|
17248
17441
|
|
|
17249
|
-
},{"../tipos-de-simbolos/delegua":
|
|
17442
|
+
},{"../tipos-de-simbolos/delegua":187}],180:[function(require,module,exports){
|
|
17250
17443
|
"use strict";
|
|
17251
17444
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17252
17445
|
exports.Simbolo = void 0;
|
|
@@ -17264,7 +17457,7 @@ class Simbolo {
|
|
|
17264
17457
|
}
|
|
17265
17458
|
exports.Simbolo = Simbolo;
|
|
17266
17459
|
|
|
17267
|
-
},{}],
|
|
17460
|
+
},{}],181:[function(require,module,exports){
|
|
17268
17461
|
"use strict";
|
|
17269
17462
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17270
17463
|
exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
|
|
@@ -17289,7 +17482,7 @@ class ContinuarQuebra extends Quebra {
|
|
|
17289
17482
|
}
|
|
17290
17483
|
exports.ContinuarQuebra = ContinuarQuebra;
|
|
17291
17484
|
|
|
17292
|
-
},{}],
|
|
17485
|
+
},{}],182:[function(require,module,exports){
|
|
17293
17486
|
"use strict";
|
|
17294
17487
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17295
17488
|
exports.default = {
|
|
@@ -17319,7 +17512,7 @@ exports.default = {
|
|
|
17319
17512
|
VETOR_TEXTO: 'texto[]',
|
|
17320
17513
|
};
|
|
17321
17514
|
|
|
17322
|
-
},{}],
|
|
17515
|
+
},{}],183:[function(require,module,exports){
|
|
17323
17516
|
"use strict";
|
|
17324
17517
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17325
17518
|
exports.default = {
|
|
@@ -17349,7 +17542,7 @@ exports.default = {
|
|
|
17349
17542
|
VETOR_TEXTO: 'texto[]',
|
|
17350
17543
|
};
|
|
17351
17544
|
|
|
17352
|
-
},{}],
|
|
17545
|
+
},{}],184:[function(require,module,exports){
|
|
17353
17546
|
"use strict";
|
|
17354
17547
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17355
17548
|
exports.default = {
|
|
@@ -17368,7 +17561,7 @@ exports.default = {
|
|
|
17368
17561
|
TEXTO: 'string',
|
|
17369
17562
|
};
|
|
17370
17563
|
|
|
17371
|
-
},{}],
|
|
17564
|
+
},{}],185:[function(require,module,exports){
|
|
17372
17565
|
"use strict";
|
|
17373
17566
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17374
17567
|
exports.default = {
|
|
@@ -17412,7 +17605,7 @@ exports.default = {
|
|
|
17412
17605
|
VIRGULA: 'VIRGULA',
|
|
17413
17606
|
};
|
|
17414
17607
|
|
|
17415
|
-
},{}],
|
|
17608
|
+
},{}],186:[function(require,module,exports){
|
|
17416
17609
|
"use strict";
|
|
17417
17610
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17418
17611
|
exports.default = {
|
|
@@ -17438,7 +17631,7 @@ exports.default = {
|
|
|
17438
17631
|
VIRGULA: 'VIRGULA',
|
|
17439
17632
|
};
|
|
17440
17633
|
|
|
17441
|
-
},{}],
|
|
17634
|
+
},{}],187:[function(require,module,exports){
|
|
17442
17635
|
"use strict";
|
|
17443
17636
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17444
17637
|
exports.default = {
|
|
@@ -17469,6 +17662,7 @@ exports.default = {
|
|
|
17469
17662
|
DIVISAO_INTEIRA_IGUAL: 'DIVISAO_INTEIRA_IGUAL',
|
|
17470
17663
|
DOIS_PONTOS: 'DOIS_PONTOS',
|
|
17471
17664
|
E: 'E',
|
|
17665
|
+
ELVIS: 'ELVIS',
|
|
17472
17666
|
EM: 'EM',
|
|
17473
17667
|
ENQUANTO: 'ENQUANTO',
|
|
17474
17668
|
EOF: 'EOF',
|
|
@@ -17488,6 +17682,7 @@ exports.default = {
|
|
|
17488
17682
|
IGUAL_IGUAL: 'IGUAL_IGUAL',
|
|
17489
17683
|
IMPORTAR: 'IMPORTAR',
|
|
17490
17684
|
INCREMENTAR: 'INCREMENTAR',
|
|
17685
|
+
INTERROGACAO: 'INTERROGACAO',
|
|
17491
17686
|
ISTO: 'ISTO',
|
|
17492
17687
|
LEIA: 'LEIA',
|
|
17493
17688
|
LINHA_COMENTARIO: 'LINHA_COMENTARIO',
|
|
@@ -17535,7 +17730,7 @@ exports.default = {
|
|
|
17535
17730
|
VIRGULA: 'VIRGULA',
|
|
17536
17731
|
};
|
|
17537
17732
|
|
|
17538
|
-
},{}],
|
|
17733
|
+
},{}],188:[function(require,module,exports){
|
|
17539
17734
|
"use strict";
|
|
17540
17735
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17541
17736
|
exports.default = {
|
|
@@ -17613,7 +17808,7 @@ exports.default = {
|
|
|
17613
17808
|
VIRGULA: 'VIRGULA',
|
|
17614
17809
|
};
|
|
17615
17810
|
|
|
17616
|
-
},{}],
|
|
17811
|
+
},{}],189:[function(require,module,exports){
|
|
17617
17812
|
"use strict";
|
|
17618
17813
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17619
17814
|
exports.default = {
|
|
@@ -17630,7 +17825,7 @@ exports.default = {
|
|
|
17630
17825
|
VIRGULA: 'VIRGULA',
|
|
17631
17826
|
};
|
|
17632
17827
|
|
|
17633
|
-
},{}],
|
|
17828
|
+
},{}],190:[function(require,module,exports){
|
|
17634
17829
|
"use strict";
|
|
17635
17830
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17636
17831
|
exports.default = {
|
|
@@ -17649,6 +17844,7 @@ exports.default = {
|
|
|
17649
17844
|
DIVISAO_INTEIRA: 'DIVISAO_INTEIRA',
|
|
17650
17845
|
DOIS_PONTOS: 'DOIS_PONTOS',
|
|
17651
17846
|
E: 'E',
|
|
17847
|
+
ELVIS: 'ELVIS',
|
|
17652
17848
|
EM: 'EM',
|
|
17653
17849
|
EOF: 'EOF',
|
|
17654
17850
|
EXPONENCIACAO: 'EXPONENCIACAO',
|
|
@@ -17657,6 +17853,7 @@ exports.default = {
|
|
|
17657
17853
|
IGUAL: 'IGUAL',
|
|
17658
17854
|
IGUAL_IGUAL: 'IGUAL_IGUAL',
|
|
17659
17855
|
INCREMENTAR: 'INCREMENTAR',
|
|
17856
|
+
INTERROGACAO: 'INTERROGACAO',
|
|
17660
17857
|
MAIOR: 'MAIOR',
|
|
17661
17858
|
MAIOR_IGUAL: 'MAIOR_IGUAL',
|
|
17662
17859
|
MAIOR_MAIOR: 'MAIOR_MAIOR',
|
|
@@ -17679,7 +17876,7 @@ exports.default = {
|
|
|
17679
17876
|
VIRGULA: 'VIRGULA',
|
|
17680
17877
|
};
|
|
17681
17878
|
|
|
17682
|
-
},{}],
|
|
17879
|
+
},{}],191:[function(require,module,exports){
|
|
17683
17880
|
"use strict";
|
|
17684
17881
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17685
17882
|
exports.default = {
|
|
@@ -17763,7 +17960,7 @@ exports.default = {
|
|
|
17763
17960
|
VIRGULA: 'VIRGULA',
|
|
17764
17961
|
};
|
|
17765
17962
|
|
|
17766
|
-
},{}],
|
|
17963
|
+
},{}],192:[function(require,module,exports){
|
|
17767
17964
|
"use strict";
|
|
17768
17965
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17769
17966
|
exports.default = {
|
|
@@ -17802,7 +17999,7 @@ exports.default = {
|
|
|
17802
17999
|
VIRGULA: 'VIRGULA',
|
|
17803
18000
|
};
|
|
17804
18001
|
|
|
17805
|
-
},{}],
|
|
18002
|
+
},{}],193:[function(require,module,exports){
|
|
17806
18003
|
"use strict";
|
|
17807
18004
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17808
18005
|
// Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
|
|
@@ -17897,7 +18094,7 @@ exports.default = {
|
|
|
17897
18094
|
VIRGULA: 'VIRGULA',
|
|
17898
18095
|
};
|
|
17899
18096
|
|
|
17900
|
-
},{}],
|
|
18097
|
+
},{}],194:[function(require,module,exports){
|
|
17901
18098
|
"use strict";
|
|
17902
18099
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
17903
18100
|
if (k2 === undefined) k2 = k;
|
|
@@ -17924,7 +18121,7 @@ __exportStar(require("./tradutor-reverso-javascript"), exports);
|
|
|
17924
18121
|
__exportStar(require("./tradutor-reverso-python"), exports);
|
|
17925
18122
|
__exportStar(require("./tradutor-reverso-tenda"), exports);
|
|
17926
18123
|
|
|
17927
|
-
},{"./tradutor-assemblyscript":
|
|
18124
|
+
},{"./tradutor-assemblyscript":197,"./tradutor-calango":198,"./tradutor-javascript":199,"./tradutor-mermaidjs":200,"./tradutor-portugol-ipt":201,"./tradutor-python":202,"./tradutor-reverso-javascript":203,"./tradutor-reverso-python":204,"./tradutor-reverso-tenda":205}],195:[function(require,module,exports){
|
|
17928
18125
|
"use strict";
|
|
17929
18126
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
17930
18127
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -19164,7 +19361,7 @@ __decorate([
|
|
|
19164
19361
|
Decorators_1.Override
|
|
19165
19362
|
], Python3Lexer.prototype, "nextToken", null);
|
|
19166
19363
|
|
|
19167
|
-
},{"./python3-parser":
|
|
19364
|
+
},{"./python3-parser":196,"antlr4ts/CommonToken":215,"antlr4ts/Decorators":219,"antlr4ts/Lexer":227,"antlr4ts/Token":244,"antlr4ts/VocabularyImpl":250,"antlr4ts/atn/ATNDeserializer":256,"antlr4ts/atn/LexerATNSimulator":277,"antlr4ts/misc/Utils":338}],196:[function(require,module,exports){
|
|
19168
19365
|
"use strict";
|
|
19169
19366
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
19170
19367
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -30411,7 +30608,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
30411
30608
|
}
|
|
30412
30609
|
exports.Yield_argContext = Yield_argContext;
|
|
30413
30610
|
|
|
30414
|
-
},{"antlr4ts/FailedPredicateException":
|
|
30611
|
+
},{"antlr4ts/FailedPredicateException":223,"antlr4ts/NoViableAltException":231,"antlr4ts/Parser":232,"antlr4ts/ParserRuleContext":235,"antlr4ts/RecognitionException":238,"antlr4ts/Token":244,"antlr4ts/VocabularyImpl":250,"antlr4ts/atn/ATN":252,"antlr4ts/atn/ATNDeserializer":256,"antlr4ts/atn/ParserATNSimulator":293,"antlr4ts/misc/Utils":338}],197:[function(require,module,exports){
|
|
30415
30612
|
"use strict";
|
|
30416
30613
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
30417
30614
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -31046,7 +31243,7 @@ class TradutorAssemblyScript {
|
|
|
31046
31243
|
}
|
|
31047
31244
|
exports.TradutorAssemblyScript = TradutorAssemblyScript;
|
|
31048
31245
|
|
|
31049
|
-
},{"../construtos":
|
|
31246
|
+
},{"../construtos":52,"../declaracoes":97,"../tipos-de-simbolos/delegua":187}],198:[function(require,module,exports){
|
|
31050
31247
|
"use strict";
|
|
31051
31248
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31052
31249
|
exports.TradutorCalango = void 0;
|
|
@@ -31108,7 +31305,7 @@ class TradutorCalango {
|
|
|
31108
31305
|
}
|
|
31109
31306
|
exports.TradutorCalango = TradutorCalango;
|
|
31110
31307
|
|
|
31111
|
-
},{"../avaliador-sintatico/dialetos/avaliador-sintatico-calango":4,"../lexador/dialetos":
|
|
31308
|
+
},{"../avaliador-sintatico/dialetos/avaliador-sintatico-calango":4,"../lexador/dialetos":161}],199:[function(require,module,exports){
|
|
31112
31309
|
"use strict";
|
|
31113
31310
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
31114
31311
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -31148,6 +31345,7 @@ class TradutorJavaScript {
|
|
|
31148
31345
|
Logico: this.traduzirExpressaoLogica.bind(this),
|
|
31149
31346
|
ReferenciaFuncao: this.traduzirExpressaoReferenciaFuncao.bind(this),
|
|
31150
31347
|
Separador: this.traduzirConstrutoSeparador.bind(this),
|
|
31348
|
+
SeTernario: this.traduzirConstrutoSeTernario.bind(this),
|
|
31151
31349
|
TipoDe: this.traduzirConstrutoTipoDe.bind(this),
|
|
31152
31350
|
Unario: this.traduzirConstrutoUnario.bind(this),
|
|
31153
31351
|
Variavel: this.traduzirConstrutoVariavel.bind(this),
|
|
@@ -31793,6 +31991,15 @@ class TradutorJavaScript {
|
|
|
31793
31991
|
traduzirConstrutoSeparador(separador) {
|
|
31794
31992
|
return `${separador.conteudo} `;
|
|
31795
31993
|
}
|
|
31994
|
+
traduzirConstrutoSeTernario(seTernario) {
|
|
31995
|
+
let resultado = '';
|
|
31996
|
+
resultado += this.dicionarioConstrutos[seTernario.condicao.constructor.name](seTernario.condicao);
|
|
31997
|
+
resultado += ' ? ';
|
|
31998
|
+
resultado += this.dicionarioConstrutos[seTernario.expressaoSe.constructor.name](seTernario.expressaoSe);
|
|
31999
|
+
resultado += ' : ';
|
|
32000
|
+
resultado += this.dicionarioConstrutos[seTernario.expressaoSenao.constructor.name](seTernario.expressaoSenao);
|
|
32001
|
+
return resultado;
|
|
32002
|
+
}
|
|
31796
32003
|
traduzirConstrutoTipoDe(tipoDe) {
|
|
31797
32004
|
let resultado = 'typeof ';
|
|
31798
32005
|
if (!tipoDe.valor)
|
|
@@ -31851,7 +32058,7 @@ class TradutorJavaScript {
|
|
|
31851
32058
|
}
|
|
31852
32059
|
exports.TradutorJavaScript = TradutorJavaScript;
|
|
31853
32060
|
|
|
31854
|
-
},{"../construtos":
|
|
32061
|
+
},{"../construtos":52,"../declaracoes":97,"../tipos-de-simbolos/delegua":187}],200:[function(require,module,exports){
|
|
31855
32062
|
"use strict";
|
|
31856
32063
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
31857
32064
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -32305,7 +32512,7 @@ class TradutorMermaidJs {
|
|
|
32305
32512
|
}
|
|
32306
32513
|
exports.TradutorMermaidJs = TradutorMermaidJs;
|
|
32307
32514
|
|
|
32308
|
-
},{"../tipos-de-simbolos/delegua":
|
|
32515
|
+
},{"../tipos-de-simbolos/delegua":187}],201:[function(require,module,exports){
|
|
32309
32516
|
"use strict";
|
|
32310
32517
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
32311
32518
|
exports.TradutorPortugolIpt = void 0;
|
|
@@ -32367,7 +32574,7 @@ class TradutorPortugolIpt {
|
|
|
32367
32574
|
}
|
|
32368
32575
|
exports.TradutorPortugolIpt = TradutorPortugolIpt;
|
|
32369
32576
|
|
|
32370
|
-
},{"../avaliador-sintatico/dialetos":9,"../lexador/dialetos":
|
|
32577
|
+
},{"../avaliador-sintatico/dialetos":9,"../lexador/dialetos":161}],202:[function(require,module,exports){
|
|
32371
32578
|
"use strict";
|
|
32372
32579
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
32373
32580
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -32399,6 +32606,7 @@ class TradutorPython {
|
|
|
32399
32606
|
Logico: this.traduzirConstrutoLogico.bind(this),
|
|
32400
32607
|
ReferenciaFuncao: this.traduzirConstrutoReferenciaFuncao.bind(this),
|
|
32401
32608
|
Separador: this.traduzirConstrutoSeparador.bind(this),
|
|
32609
|
+
SeTernario: this.traduzirConstrutoSeTernario.bind(this),
|
|
32402
32610
|
Unario: this.traduzirConstrutoUnario.bind(this),
|
|
32403
32611
|
Variavel: this.traduzirConstrutoVariavel.bind(this),
|
|
32404
32612
|
Vetor: this.traduzirConstrutoVetor.bind(this),
|
|
@@ -32722,6 +32930,12 @@ class TradutorPython {
|
|
|
32722
32930
|
traduzirConstrutoSeparador(separador) {
|
|
32723
32931
|
return `${separador.conteudo} `;
|
|
32724
32932
|
}
|
|
32933
|
+
traduzirConstrutoSeTernario(seTernario) {
|
|
32934
|
+
const condicao = this.dicionarioConstrutos[seTernario.condicao.constructor.name](seTernario.condicao);
|
|
32935
|
+
const expressaoSe = this.dicionarioConstrutos[seTernario.expressaoSe.constructor.name](seTernario.expressaoSe);
|
|
32936
|
+
const expressaoSenao = this.dicionarioConstrutos[seTernario.expressaoSenao.constructor.name](seTernario.expressaoSenao);
|
|
32937
|
+
return `${expressaoSe} if ${condicao} else ${expressaoSenao}`;
|
|
32938
|
+
}
|
|
32725
32939
|
traduzirConstrutoUnario(unario) {
|
|
32726
32940
|
const operador = this.traduzirSimboloOperador(unario.operador);
|
|
32727
32941
|
const operando = this.dicionarioConstrutos[unario.operando.constructor.name](unario.operando);
|
|
@@ -33009,7 +33223,7 @@ class TradutorPython {
|
|
|
33009
33223
|
}
|
|
33010
33224
|
exports.TradutorPython = TradutorPython;
|
|
33011
33225
|
|
|
33012
|
-
},{"../construtos":
|
|
33226
|
+
},{"../construtos":52,"../declaracoes":97,"../tipos-de-simbolos/delegua":187}],203:[function(require,module,exports){
|
|
33013
33227
|
"use strict";
|
|
33014
33228
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
33015
33229
|
exports.TradutorReversoJavaScript = void 0;
|
|
@@ -33406,7 +33620,7 @@ class TradutorReversoJavaScript {
|
|
|
33406
33620
|
}
|
|
33407
33621
|
exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
|
|
33408
33622
|
|
|
33409
|
-
},{}],
|
|
33623
|
+
},{}],204:[function(require,module,exports){
|
|
33410
33624
|
"use strict";
|
|
33411
33625
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
33412
33626
|
exports.TradutorReversoPython = void 0;
|
|
@@ -33479,7 +33693,7 @@ class TradutorReversoPython {
|
|
|
33479
33693
|
}
|
|
33480
33694
|
exports.TradutorReversoPython = TradutorReversoPython;
|
|
33481
33695
|
|
|
33482
|
-
},{"./python/python3-lexer":
|
|
33696
|
+
},{"./python/python3-lexer":195,"./python/python3-parser":196,"antlr4ts":321,"antlr4ts/tree/ParseTreeWalker":340}],205:[function(require,module,exports){
|
|
33483
33697
|
"use strict";
|
|
33484
33698
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
33485
33699
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -34073,7 +34287,7 @@ class TradutorReversoTenda {
|
|
|
34073
34287
|
}
|
|
34074
34288
|
exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
34075
34289
|
|
|
34076
|
-
},{"../construtos":
|
|
34290
|
+
},{"../construtos":52,"../tipos-de-simbolos/tenda":193}],206:[function(require,module,exports){
|
|
34077
34291
|
"use strict";
|
|
34078
34292
|
/*!
|
|
34079
34293
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34081,7 +34295,7 @@ exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
|
34081
34295
|
*/
|
|
34082
34296
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34083
34297
|
|
|
34084
|
-
},{}],
|
|
34298
|
+
},{}],207:[function(require,module,exports){
|
|
34085
34299
|
"use strict";
|
|
34086
34300
|
/*!
|
|
34087
34301
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34089,7 +34303,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
34089
34303
|
*/
|
|
34090
34304
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34091
34305
|
|
|
34092
|
-
},{}],
|
|
34306
|
+
},{}],208:[function(require,module,exports){
|
|
34093
34307
|
"use strict";
|
|
34094
34308
|
/*!
|
|
34095
34309
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34251,7 +34465,7 @@ __decorate([
|
|
|
34251
34465
|
], ANTLRInputStream.prototype, "toString", null);
|
|
34252
34466
|
exports.ANTLRInputStream = ANTLRInputStream;
|
|
34253
34467
|
|
|
34254
|
-
},{"./Decorators":
|
|
34468
|
+
},{"./Decorators":219,"./IntStream":225,"assert":362}],209:[function(require,module,exports){
|
|
34255
34469
|
"use strict";
|
|
34256
34470
|
/*!
|
|
34257
34471
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34334,7 +34548,7 @@ __decorate([
|
|
|
34334
34548
|
], BailErrorStrategy.prototype, "sync", null);
|
|
34335
34549
|
exports.BailErrorStrategy = BailErrorStrategy;
|
|
34336
34550
|
|
|
34337
|
-
},{"./Decorators":
|
|
34551
|
+
},{"./Decorators":219,"./DefaultErrorStrategy":220,"./InputMismatchException":224,"./misc/ParseCancellationException":336}],210:[function(require,module,exports){
|
|
34338
34552
|
"use strict";
|
|
34339
34553
|
/*!
|
|
34340
34554
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34824,7 +35038,7 @@ BufferedTokenStream = __decorate([
|
|
|
34824
35038
|
], BufferedTokenStream);
|
|
34825
35039
|
exports.BufferedTokenStream = BufferedTokenStream;
|
|
34826
35040
|
|
|
34827
|
-
},{"./CommonToken":
|
|
35041
|
+
},{"./CommonToken":215,"./Decorators":219,"./Lexer":227,"./Token":244,"./misc/Interval":331,"assert":362}],211:[function(require,module,exports){
|
|
34828
35042
|
"use strict";
|
|
34829
35043
|
/*!
|
|
34830
35044
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34832,7 +35046,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
|
|
|
34832
35046
|
*/
|
|
34833
35047
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34834
35048
|
|
|
34835
|
-
},{}],
|
|
35049
|
+
},{}],212:[function(require,module,exports){
|
|
34836
35050
|
"use strict";
|
|
34837
35051
|
/*!
|
|
34838
35052
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34966,7 +35180,7 @@ var CharStreams;
|
|
|
34966
35180
|
// }
|
|
34967
35181
|
})(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
|
|
34968
35182
|
|
|
34969
|
-
},{"./CodePointBuffer":
|
|
35183
|
+
},{"./CodePointBuffer":213,"./CodePointCharStream":214,"./IntStream":225}],213:[function(require,module,exports){
|
|
34970
35184
|
"use strict";
|
|
34971
35185
|
/*!
|
|
34972
35186
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35201,7 +35415,7 @@ exports.CodePointBuffer = CodePointBuffer;
|
|
|
35201
35415
|
CodePointBuffer.Builder = Builder;
|
|
35202
35416
|
})(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
|
|
35203
35417
|
|
|
35204
|
-
},{"./misc/Character":
|
|
35418
|
+
},{"./misc/Character":327,"assert":362}],214:[function(require,module,exports){
|
|
35205
35419
|
"use strict";
|
|
35206
35420
|
/*!
|
|
35207
35421
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35351,7 +35565,7 @@ __decorate([
|
|
|
35351
35565
|
], CodePointCharStream.prototype, "getText", null);
|
|
35352
35566
|
exports.CodePointCharStream = CodePointCharStream;
|
|
35353
35567
|
|
|
35354
|
-
},{"./Decorators":
|
|
35568
|
+
},{"./Decorators":219,"./IntStream":225,"./misc/Interval":331,"assert":362}],215:[function(require,module,exports){
|
|
35355
35569
|
"use strict";
|
|
35356
35570
|
/*!
|
|
35357
35571
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35581,7 +35795,7 @@ CommonToken = __decorate([
|
|
|
35581
35795
|
], CommonToken);
|
|
35582
35796
|
exports.CommonToken = CommonToken;
|
|
35583
35797
|
|
|
35584
|
-
},{"./Decorators":
|
|
35798
|
+
},{"./Decorators":219,"./Token":244,"./misc/Interval":331}],216:[function(require,module,exports){
|
|
35585
35799
|
"use strict";
|
|
35586
35800
|
/*!
|
|
35587
35801
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35645,7 +35859,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
|
|
|
35645
35859
|
CommonTokenFactory.DEFAULT = new CommonTokenFactory();
|
|
35646
35860
|
})(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
|
|
35647
35861
|
|
|
35648
|
-
},{"./CommonToken":
|
|
35862
|
+
},{"./CommonToken":215,"./Decorators":219,"./misc/Interval":331}],217:[function(require,module,exports){
|
|
35649
35863
|
"use strict";
|
|
35650
35864
|
/*!
|
|
35651
35865
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35772,7 +35986,7 @@ CommonTokenStream = __decorate([
|
|
|
35772
35986
|
], CommonTokenStream);
|
|
35773
35987
|
exports.CommonTokenStream = CommonTokenStream;
|
|
35774
35988
|
|
|
35775
|
-
},{"./BufferedTokenStream":
|
|
35989
|
+
},{"./BufferedTokenStream":210,"./Decorators":219,"./Token":244}],218:[function(require,module,exports){
|
|
35776
35990
|
"use strict";
|
|
35777
35991
|
/*!
|
|
35778
35992
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35806,7 +36020,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
|
|
|
35806
36020
|
*/
|
|
35807
36021
|
ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
|
|
35808
36022
|
|
|
35809
|
-
},{}],
|
|
36023
|
+
},{}],219:[function(require,module,exports){
|
|
35810
36024
|
"use strict";
|
|
35811
36025
|
/*!
|
|
35812
36026
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35833,7 +36047,7 @@ function SuppressWarnings(options) {
|
|
|
35833
36047
|
}
|
|
35834
36048
|
exports.SuppressWarnings = SuppressWarnings;
|
|
35835
36049
|
|
|
35836
|
-
},{}],
|
|
36050
|
+
},{}],220:[function(require,module,exports){
|
|
35837
36051
|
"use strict";
|
|
35838
36052
|
/*!
|
|
35839
36053
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36647,7 +36861,7 @@ __decorate([
|
|
|
36647
36861
|
], DefaultErrorStrategy.prototype, "consumeUntil", null);
|
|
36648
36862
|
exports.DefaultErrorStrategy = DefaultErrorStrategy;
|
|
36649
36863
|
|
|
36650
|
-
},{"./Decorators":
|
|
36864
|
+
},{"./Decorators":219,"./FailedPredicateException":223,"./InputMismatchException":224,"./NoViableAltException":231,"./Token":244,"./atn/ATNState":258,"./atn/ATNStateType":259,"./atn/PredictionContext":299,"./misc/IntervalSet":332}],221:[function(require,module,exports){
|
|
36651
36865
|
"use strict";
|
|
36652
36866
|
/*!
|
|
36653
36867
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36723,7 +36937,7 @@ var Dependents;
|
|
|
36723
36937
|
Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
|
|
36724
36938
|
})(Dependents = exports.Dependents || (exports.Dependents = {}));
|
|
36725
36939
|
|
|
36726
|
-
},{}],
|
|
36940
|
+
},{}],222:[function(require,module,exports){
|
|
36727
36941
|
"use strict";
|
|
36728
36942
|
/*!
|
|
36729
36943
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36871,7 +37085,7 @@ __decorate([
|
|
|
36871
37085
|
], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
|
|
36872
37086
|
exports.DiagnosticErrorListener = DiagnosticErrorListener;
|
|
36873
37087
|
|
|
36874
|
-
},{"./Decorators":
|
|
37088
|
+
},{"./Decorators":219,"./misc/BitSet":326,"./misc/Interval":331}],223:[function(require,module,exports){
|
|
36875
37089
|
"use strict";
|
|
36876
37090
|
/*!
|
|
36877
37091
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36936,7 +37150,7 @@ FailedPredicateException = __decorate([
|
|
|
36936
37150
|
], FailedPredicateException);
|
|
36937
37151
|
exports.FailedPredicateException = FailedPredicateException;
|
|
36938
37152
|
|
|
36939
|
-
},{"./Decorators":
|
|
37153
|
+
},{"./Decorators":219,"./RecognitionException":238,"./atn/PredicateTransition":298}],224:[function(require,module,exports){
|
|
36940
37154
|
"use strict";
|
|
36941
37155
|
/*!
|
|
36942
37156
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36976,7 +37190,7 @@ InputMismatchException = __decorate([
|
|
|
36976
37190
|
], InputMismatchException);
|
|
36977
37191
|
exports.InputMismatchException = InputMismatchException;
|
|
36978
37192
|
|
|
36979
|
-
},{"./Decorators":
|
|
37193
|
+
},{"./Decorators":219,"./RecognitionException":238}],225:[function(require,module,exports){
|
|
36980
37194
|
"use strict";
|
|
36981
37195
|
/*!
|
|
36982
37196
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36999,7 +37213,7 @@ var IntStream;
|
|
|
36999
37213
|
IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
|
|
37000
37214
|
})(IntStream = exports.IntStream || (exports.IntStream = {}));
|
|
37001
37215
|
|
|
37002
|
-
},{}],
|
|
37216
|
+
},{}],226:[function(require,module,exports){
|
|
37003
37217
|
"use strict";
|
|
37004
37218
|
/*!
|
|
37005
37219
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37046,7 +37260,7 @@ __decorate([
|
|
|
37046
37260
|
], InterpreterRuleContext.prototype, "ruleIndex", null);
|
|
37047
37261
|
exports.InterpreterRuleContext = InterpreterRuleContext;
|
|
37048
37262
|
|
|
37049
|
-
},{"./Decorators":
|
|
37263
|
+
},{"./Decorators":219,"./ParserRuleContext":235}],227:[function(require,module,exports){
|
|
37050
37264
|
"use strict";
|
|
37051
37265
|
/*!
|
|
37052
37266
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37382,7 +37596,7 @@ __decorate([
|
|
|
37382
37596
|
], Lexer.prototype, "charPositionInLine", null);
|
|
37383
37597
|
exports.Lexer = Lexer;
|
|
37384
37598
|
|
|
37385
|
-
},{"./CommonTokenFactory":
|
|
37599
|
+
},{"./CommonTokenFactory":216,"./Decorators":219,"./IntStream":225,"./LexerNoViableAltException":229,"./Recognizer":239,"./Token":244,"./atn/LexerATNSimulator":277,"./misc/IntegerStack":330,"./misc/Interval":331}],228:[function(require,module,exports){
|
|
37386
37600
|
"use strict";
|
|
37387
37601
|
/*!
|
|
37388
37602
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37462,7 +37676,7 @@ LexerInterpreter = __decorate([
|
|
|
37462
37676
|
], LexerInterpreter);
|
|
37463
37677
|
exports.LexerInterpreter = LexerInterpreter;
|
|
37464
37678
|
|
|
37465
|
-
},{"./Decorators":
|
|
37679
|
+
},{"./Decorators":219,"./Lexer":227,"./atn/LexerATNSimulator":277}],229:[function(require,module,exports){
|
|
37466
37680
|
"use strict";
|
|
37467
37681
|
/*!
|
|
37468
37682
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37519,7 +37733,7 @@ LexerNoViableAltException = __decorate([
|
|
|
37519
37733
|
], LexerNoViableAltException);
|
|
37520
37734
|
exports.LexerNoViableAltException = LexerNoViableAltException;
|
|
37521
37735
|
|
|
37522
|
-
},{"./Decorators":
|
|
37736
|
+
},{"./Decorators":219,"./RecognitionException":238,"./misc/Interval":331,"./misc/Utils":338}],230:[function(require,module,exports){
|
|
37523
37737
|
"use strict";
|
|
37524
37738
|
/*!
|
|
37525
37739
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37729,7 +37943,7 @@ ListTokenSource = __decorate([
|
|
|
37729
37943
|
], ListTokenSource);
|
|
37730
37944
|
exports.ListTokenSource = ListTokenSource;
|
|
37731
37945
|
|
|
37732
|
-
},{"./CommonTokenFactory":
|
|
37946
|
+
},{"./CommonTokenFactory":216,"./Decorators":219,"./Token":244}],231:[function(require,module,exports){
|
|
37733
37947
|
"use strict";
|
|
37734
37948
|
/*!
|
|
37735
37949
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37784,7 +37998,7 @@ __decorate([
|
|
|
37784
37998
|
], NoViableAltException.prototype, "_startToken", void 0);
|
|
37785
37999
|
exports.NoViableAltException = NoViableAltException;
|
|
37786
38000
|
|
|
37787
|
-
},{"./Decorators":
|
|
38001
|
+
},{"./Decorators":219,"./Parser":232,"./RecognitionException":238}],232:[function(require,module,exports){
|
|
37788
38002
|
(function (process){(function (){
|
|
37789
38003
|
"use strict";
|
|
37790
38004
|
/*!
|
|
@@ -38630,7 +38844,7 @@ __decorate([
|
|
|
38630
38844
|
exports.Parser = Parser;
|
|
38631
38845
|
|
|
38632
38846
|
}).call(this)}).call(this,require('_process'))
|
|
38633
|
-
},{"./Decorators":
|
|
38847
|
+
},{"./Decorators":219,"./DefaultErrorStrategy":220,"./Lexer":227,"./ProxyParserErrorListener":237,"./Recognizer":239,"./Token":244,"./atn/ATNDeserializationOptions":255,"./atn/ATNDeserializer":256,"./atn/ParseInfo":292,"./atn/ParserATNSimulator":293,"./atn/ProfilingATNSimulator":302,"./misc/IntegerStack":330,"./misc/Utils":338,"./tree/ErrorNode":339,"./tree/TerminalNode":342,"./tree/pattern/ParseTreePatternMatcher":347,"_process":421}],233:[function(require,module,exports){
|
|
38634
38848
|
"use strict";
|
|
38635
38849
|
/*!
|
|
38636
38850
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38638,7 +38852,7 @@ exports.Parser = Parser;
|
|
|
38638
38852
|
*/
|
|
38639
38853
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38640
38854
|
|
|
38641
|
-
},{}],
|
|
38855
|
+
},{}],234:[function(require,module,exports){
|
|
38642
38856
|
"use strict";
|
|
38643
38857
|
/*!
|
|
38644
38858
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39046,7 +39260,7 @@ ParserInterpreter = __decorate([
|
|
|
39046
39260
|
], ParserInterpreter);
|
|
39047
39261
|
exports.ParserInterpreter = ParserInterpreter;
|
|
39048
39262
|
|
|
39049
|
-
},{"./Decorators":
|
|
39263
|
+
},{"./Decorators":219,"./FailedPredicateException":223,"./InputMismatchException":224,"./InterpreterRuleContext":226,"./Parser":232,"./RecognitionException":238,"./Token":244,"./atn/ATNState":258,"./atn/ATNStateType":259,"./atn/LoopEndState":289,"./atn/ParserATNSimulator":293,"./atn/StarLoopEntryState":311,"./misc/BitSet":326}],235:[function(require,module,exports){
|
|
39050
39264
|
"use strict";
|
|
39051
39265
|
/*!
|
|
39052
39266
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39347,7 +39561,7 @@ __decorate([
|
|
|
39347
39561
|
], ParserRuleContext.prototype, "sourceInterval", null);
|
|
39348
39562
|
exports.ParserRuleContext = ParserRuleContext;
|
|
39349
39563
|
|
|
39350
|
-
},{"./Decorators":
|
|
39564
|
+
},{"./Decorators":219,"./RuleContext":240,"./misc/Interval":331,"./tree/ErrorNode":339,"./tree/TerminalNode":342}],236:[function(require,module,exports){
|
|
39351
39565
|
"use strict";
|
|
39352
39566
|
/*!
|
|
39353
39567
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39397,7 +39611,7 @@ __decorate([
|
|
|
39397
39611
|
], ProxyErrorListener.prototype, "syntaxError", null);
|
|
39398
39612
|
exports.ProxyErrorListener = ProxyErrorListener;
|
|
39399
39613
|
|
|
39400
|
-
},{"./Decorators":
|
|
39614
|
+
},{"./Decorators":219}],237:[function(require,module,exports){
|
|
39401
39615
|
"use strict";
|
|
39402
39616
|
/*!
|
|
39403
39617
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39456,7 +39670,7 @@ __decorate([
|
|
|
39456
39670
|
], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
|
|
39457
39671
|
exports.ProxyParserErrorListener = ProxyParserErrorListener;
|
|
39458
39672
|
|
|
39459
|
-
},{"./Decorators":
|
|
39673
|
+
},{"./Decorators":219,"./ProxyErrorListener":236}],238:[function(require,module,exports){
|
|
39460
39674
|
"use strict";
|
|
39461
39675
|
/*!
|
|
39462
39676
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39561,7 +39775,7 @@ class RecognitionException extends Error {
|
|
|
39561
39775
|
}
|
|
39562
39776
|
exports.RecognitionException = RecognitionException;
|
|
39563
39777
|
|
|
39564
|
-
},{}],
|
|
39778
|
+
},{}],239:[function(require,module,exports){
|
|
39565
39779
|
"use strict";
|
|
39566
39780
|
/*!
|
|
39567
39781
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39780,7 +39994,7 @@ __decorate([
|
|
|
39780
39994
|
], Recognizer.prototype, "getErrorListeners", null);
|
|
39781
39995
|
exports.Recognizer = Recognizer;
|
|
39782
39996
|
|
|
39783
|
-
},{"./ConsoleErrorListener":
|
|
39997
|
+
},{"./ConsoleErrorListener":218,"./Decorators":219,"./ProxyErrorListener":236,"./Token":244,"./misc/Utils":338}],240:[function(require,module,exports){
|
|
39784
39998
|
"use strict";
|
|
39785
39999
|
/*!
|
|
39786
40000
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39997,7 +40211,7 @@ __decorate([
|
|
|
39997
40211
|
], RuleContext.prototype, "toStringTree", null);
|
|
39998
40212
|
exports.RuleContext = RuleContext;
|
|
39999
40213
|
|
|
40000
|
-
},{"./Decorators":
|
|
40214
|
+
},{"./Decorators":219,"./ParserRuleContext":235,"./Recognizer":239,"./atn/ATN":252,"./misc/Interval":331,"./tree/RuleNode":341,"./tree/Trees":343}],241:[function(require,module,exports){
|
|
40001
40215
|
"use strict";
|
|
40002
40216
|
/*!
|
|
40003
40217
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40048,7 +40262,7 @@ __decorate([
|
|
|
40048
40262
|
], RuleContextWithAltNum.prototype, "altNumber", null);
|
|
40049
40263
|
exports.RuleContextWithAltNum = RuleContextWithAltNum;
|
|
40050
40264
|
|
|
40051
|
-
},{"./Decorators":
|
|
40265
|
+
},{"./Decorators":219,"./ParserRuleContext":235,"./atn/ATN":252}],242:[function(require,module,exports){
|
|
40052
40266
|
"use strict";
|
|
40053
40267
|
/*!
|
|
40054
40268
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40071,7 +40285,7 @@ function RuleDependency(dependency) {
|
|
|
40071
40285
|
}
|
|
40072
40286
|
exports.RuleDependency = RuleDependency;
|
|
40073
40287
|
|
|
40074
|
-
},{}],
|
|
40288
|
+
},{}],243:[function(require,module,exports){
|
|
40075
40289
|
"use strict";
|
|
40076
40290
|
/*!
|
|
40077
40291
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40090,7 +40304,7 @@ function RuleVersion(version) {
|
|
|
40090
40304
|
}
|
|
40091
40305
|
exports.RuleVersion = RuleVersion;
|
|
40092
40306
|
|
|
40093
|
-
},{}],
|
|
40307
|
+
},{}],244:[function(require,module,exports){
|
|
40094
40308
|
"use strict";
|
|
40095
40309
|
/*!
|
|
40096
40310
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40130,7 +40344,7 @@ var Token;
|
|
|
40130
40344
|
Token.MIN_USER_CHANNEL_VALUE = 2;
|
|
40131
40345
|
})(Token = exports.Token || (exports.Token = {}));
|
|
40132
40346
|
|
|
40133
|
-
},{"./IntStream":
|
|
40347
|
+
},{"./IntStream":225}],245:[function(require,module,exports){
|
|
40134
40348
|
"use strict";
|
|
40135
40349
|
/*!
|
|
40136
40350
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40138,7 +40352,7 @@ var Token;
|
|
|
40138
40352
|
*/
|
|
40139
40353
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
40140
40354
|
|
|
40141
|
-
},{}],
|
|
40355
|
+
},{}],246:[function(require,module,exports){
|
|
40142
40356
|
"use strict";
|
|
40143
40357
|
/*!
|
|
40144
40358
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40146,7 +40360,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
40146
40360
|
*/
|
|
40147
40361
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
40148
40362
|
|
|
40149
|
-
},{}],
|
|
40363
|
+
},{}],247:[function(require,module,exports){
|
|
40150
40364
|
"use strict";
|
|
40151
40365
|
/*!
|
|
40152
40366
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40154,7 +40368,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
40154
40368
|
*/
|
|
40155
40369
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
40156
40370
|
|
|
40157
|
-
},{}],
|
|
40371
|
+
},{}],248:[function(require,module,exports){
|
|
40158
40372
|
"use strict";
|
|
40159
40373
|
/*!
|
|
40160
40374
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40662,7 +40876,7 @@ __decorate([
|
|
|
40662
40876
|
Decorators_1.Override
|
|
40663
40877
|
], ReplaceOp.prototype, "toString", null);
|
|
40664
40878
|
|
|
40665
|
-
},{"./Decorators":
|
|
40879
|
+
},{"./Decorators":219,"./Token":244,"./misc/Interval":331}],249:[function(require,module,exports){
|
|
40666
40880
|
"use strict";
|
|
40667
40881
|
/*!
|
|
40668
40882
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40670,7 +40884,7 @@ __decorate([
|
|
|
40670
40884
|
*/
|
|
40671
40885
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
40672
40886
|
|
|
40673
|
-
},{}],
|
|
40887
|
+
},{}],250:[function(require,module,exports){
|
|
40674
40888
|
"use strict";
|
|
40675
40889
|
/*!
|
|
40676
40890
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40790,7 +41004,7 @@ __decorate([
|
|
|
40790
41004
|
], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
|
|
40791
41005
|
exports.VocabularyImpl = VocabularyImpl;
|
|
40792
41006
|
|
|
40793
|
-
},{"./Decorators":
|
|
41007
|
+
},{"./Decorators":219,"./Token":244}],251:[function(require,module,exports){
|
|
40794
41008
|
"use strict";
|
|
40795
41009
|
/*!
|
|
40796
41010
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40798,7 +41012,7 @@ exports.VocabularyImpl = VocabularyImpl;
|
|
|
40798
41012
|
*/
|
|
40799
41013
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
40800
41014
|
|
|
40801
|
-
},{}],
|
|
41015
|
+
},{}],252:[function(require,module,exports){
|
|
40802
41016
|
"use strict";
|
|
40803
41017
|
/*!
|
|
40804
41018
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41020,7 +41234,7 @@ exports.ATN = ATN;
|
|
|
41020
41234
|
})(ATN = exports.ATN || (exports.ATN = {}));
|
|
41021
41235
|
exports.ATN = ATN;
|
|
41022
41236
|
|
|
41023
|
-
},{"../Decorators":
|
|
41237
|
+
},{"../Decorators":219,"../Token":244,"../dfa/DFA":317,"../misc/Array2DHashMap":322,"../misc/IntervalSet":332,"../misc/ObjectEqualityComparator":335,"./InvalidState":275,"./LL1Analyzer":276,"./PredictionContext":299,"assert":362}],253:[function(require,module,exports){
|
|
41024
41238
|
"use strict";
|
|
41025
41239
|
/*!
|
|
41026
41240
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41545,7 +41759,7 @@ ActionSemanticContextATNConfig = __decorate([
|
|
|
41545
41759
|
__param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
|
|
41546
41760
|
], ActionSemanticContextATNConfig);
|
|
41547
41761
|
|
|
41548
|
-
},{"../Decorators":
|
|
41762
|
+
},{"../Decorators":219,"../misc/Array2DHashMap":322,"../misc/MurmurHash":334,"../misc/ObjectEqualityComparator":335,"./DecisionState":272,"./PredictionContext":299,"./SemanticContext":307,"assert":362}],254:[function(require,module,exports){
|
|
41549
41763
|
"use strict";
|
|
41550
41764
|
/*!
|
|
41551
41765
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41992,7 +42206,7 @@ __decorate([
|
|
|
41992
42206
|
], ATNConfigSet.prototype, "hashCode", null);
|
|
41993
42207
|
exports.ATNConfigSet = ATNConfigSet;
|
|
41994
42208
|
|
|
41995
|
-
},{"../Decorators":
|
|
42209
|
+
},{"../Decorators":219,"../misc/Array2DHashMap":322,"../misc/Array2DHashSet":323,"../misc/ArrayEqualityComparator":324,"../misc/BitSet":326,"../misc/ObjectEqualityComparator":335,"../misc/Utils":338,"./ATN":252,"./ATNConfig":253,"./PredictionContext":299,"./PredictionContextCache":300,"./SemanticContext":307,"assert":362}],255:[function(require,module,exports){
|
|
41996
42210
|
"use strict";
|
|
41997
42211
|
/*!
|
|
41998
42212
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42071,7 +42285,7 @@ __decorate([
|
|
|
42071
42285
|
], ATNDeserializationOptions, "defaultOptions", null);
|
|
42072
42286
|
exports.ATNDeserializationOptions = ATNDeserializationOptions;
|
|
42073
42287
|
|
|
42074
|
-
},{"../Decorators":
|
|
42288
|
+
},{"../Decorators":219}],256:[function(require,module,exports){
|
|
42075
42289
|
"use strict";
|
|
42076
42290
|
/*!
|
|
42077
42291
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43158,7 +43372,7 @@ __decorate([
|
|
|
43158
43372
|
], ATNDeserializer.prototype, "edgeFactory", null);
|
|
43159
43373
|
exports.ATNDeserializer = ATNDeserializer;
|
|
43160
43374
|
|
|
43161
|
-
},{"../Decorators":
|
|
43375
|
+
},{"../Decorators":219,"../Token":244,"../dfa/DFA":317,"../misc/Array2DHashSet":323,"../misc/BitSet":326,"../misc/IntervalSet":332,"../misc/UUID":337,"./ATN":252,"./ATNDeserializationOptions":255,"./ATNStateType":259,"./ActionTransition":261,"./AtomTransition":263,"./BasicBlockStartState":264,"./BasicState":265,"./BlockEndState":266,"./BlockStartState":267,"./DecisionState":272,"./EpsilonTransition":273,"./InvalidState":275,"./LexerChannelAction":279,"./LexerCustomAction":280,"./LexerModeAction":282,"./LexerMoreAction":283,"./LexerPopModeAction":284,"./LexerPushModeAction":285,"./LexerSkipAction":286,"./LexerTypeAction":287,"./LoopEndState":289,"./NotSetTransition":290,"./ParserATNSimulator":293,"./PlusBlockStartState":294,"./PlusLoopbackState":295,"./PrecedencePredicateTransition":296,"./PredicateTransition":298,"./RangeTransition":303,"./RuleStartState":304,"./RuleStopState":305,"./RuleTransition":306,"./SetTransition":308,"./StarBlockStartState":310,"./StarLoopEntryState":311,"./StarLoopbackState":312,"./TokensStartState":313,"./WildcardTransition":315}],257:[function(require,module,exports){
|
|
43162
43376
|
"use strict";
|
|
43163
43377
|
/*!
|
|
43164
43378
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43222,7 +43436,7 @@ exports.ATNSimulator = ATNSimulator;
|
|
|
43222
43436
|
})(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
|
|
43223
43437
|
exports.ATNSimulator = ATNSimulator;
|
|
43224
43438
|
|
|
43225
|
-
},{"../Decorators":
|
|
43439
|
+
},{"../Decorators":219,"../dfa/DFAState":319,"./ATNConfigSet":254,"./PredictionContext":299}],258:[function(require,module,exports){
|
|
43226
43440
|
"use strict";
|
|
43227
43441
|
/*!
|
|
43228
43442
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43409,7 +43623,7 @@ exports.ATNState = ATNState;
|
|
|
43409
43623
|
ATNState.INVALID_STATE_NUMBER = -1;
|
|
43410
43624
|
})(ATNState = exports.ATNState || (exports.ATNState = {}));
|
|
43411
43625
|
|
|
43412
|
-
},{"../Decorators":
|
|
43626
|
+
},{"../Decorators":219}],259:[function(require,module,exports){
|
|
43413
43627
|
"use strict";
|
|
43414
43628
|
/*!
|
|
43415
43629
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43435,7 +43649,7 @@ var ATNStateType;
|
|
|
43435
43649
|
ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
|
|
43436
43650
|
})(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
|
|
43437
43651
|
|
|
43438
|
-
},{}],
|
|
43652
|
+
},{}],260:[function(require,module,exports){
|
|
43439
43653
|
"use strict";
|
|
43440
43654
|
/*!
|
|
43441
43655
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43455,7 +43669,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
|
|
|
43455
43669
|
}
|
|
43456
43670
|
exports.AbstractPredicateTransition = AbstractPredicateTransition;
|
|
43457
43671
|
|
|
43458
|
-
},{"./Transition":
|
|
43672
|
+
},{"./Transition":314}],261:[function(require,module,exports){
|
|
43459
43673
|
"use strict";
|
|
43460
43674
|
/*!
|
|
43461
43675
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43511,7 +43725,7 @@ ActionTransition = __decorate([
|
|
|
43511
43725
|
], ActionTransition);
|
|
43512
43726
|
exports.ActionTransition = ActionTransition;
|
|
43513
43727
|
|
|
43514
|
-
},{"../Decorators":
|
|
43728
|
+
},{"../Decorators":219,"./Transition":314}],262:[function(require,module,exports){
|
|
43515
43729
|
"use strict";
|
|
43516
43730
|
/*!
|
|
43517
43731
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43598,7 +43812,7 @@ AmbiguityInfo = __decorate([
|
|
|
43598
43812
|
], AmbiguityInfo);
|
|
43599
43813
|
exports.AmbiguityInfo = AmbiguityInfo;
|
|
43600
43814
|
|
|
43601
|
-
},{"../Decorators":
|
|
43815
|
+
},{"../Decorators":219,"./DecisionEventInfo":270}],263:[function(require,module,exports){
|
|
43602
43816
|
"use strict";
|
|
43603
43817
|
/*!
|
|
43604
43818
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43656,7 +43870,7 @@ AtomTransition = __decorate([
|
|
|
43656
43870
|
], AtomTransition);
|
|
43657
43871
|
exports.AtomTransition = AtomTransition;
|
|
43658
43872
|
|
|
43659
|
-
},{"../Decorators":
|
|
43873
|
+
},{"../Decorators":219,"../misc/IntervalSet":332,"./Transition":314}],264:[function(require,module,exports){
|
|
43660
43874
|
"use strict";
|
|
43661
43875
|
/*!
|
|
43662
43876
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43688,7 +43902,7 @@ __decorate([
|
|
|
43688
43902
|
], BasicBlockStartState.prototype, "stateType", null);
|
|
43689
43903
|
exports.BasicBlockStartState = BasicBlockStartState;
|
|
43690
43904
|
|
|
43691
|
-
},{"../Decorators":
|
|
43905
|
+
},{"../Decorators":219,"./ATNStateType":259,"./BlockStartState":267}],265:[function(require,module,exports){
|
|
43692
43906
|
"use strict";
|
|
43693
43907
|
/*!
|
|
43694
43908
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43720,7 +43934,7 @@ __decorate([
|
|
|
43720
43934
|
], BasicState.prototype, "stateType", null);
|
|
43721
43935
|
exports.BasicState = BasicState;
|
|
43722
43936
|
|
|
43723
|
-
},{"../Decorators":
|
|
43937
|
+
},{"../Decorators":219,"./ATNState":258,"./ATNStateType":259}],266:[function(require,module,exports){
|
|
43724
43938
|
"use strict";
|
|
43725
43939
|
/*!
|
|
43726
43940
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43749,7 +43963,7 @@ __decorate([
|
|
|
43749
43963
|
], BlockEndState.prototype, "stateType", null);
|
|
43750
43964
|
exports.BlockEndState = BlockEndState;
|
|
43751
43965
|
|
|
43752
|
-
},{"../Decorators":
|
|
43966
|
+
},{"../Decorators":219,"./ATNState":258,"./ATNStateType":259}],267:[function(require,module,exports){
|
|
43753
43967
|
"use strict";
|
|
43754
43968
|
/*!
|
|
43755
43969
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43763,7 +43977,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
|
|
|
43763
43977
|
}
|
|
43764
43978
|
exports.BlockStartState = BlockStartState;
|
|
43765
43979
|
|
|
43766
|
-
},{"./DecisionState":
|
|
43980
|
+
},{"./DecisionState":272}],268:[function(require,module,exports){
|
|
43767
43981
|
"use strict";
|
|
43768
43982
|
/*!
|
|
43769
43983
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43833,7 +44047,7 @@ __decorate([
|
|
|
43833
44047
|
], ConflictInfo.prototype, "hashCode", null);
|
|
43834
44048
|
exports.ConflictInfo = ConflictInfo;
|
|
43835
44049
|
|
|
43836
|
-
},{"../Decorators":
|
|
44050
|
+
},{"../Decorators":219,"../misc/Utils":338}],269:[function(require,module,exports){
|
|
43837
44051
|
"use strict";
|
|
43838
44052
|
/*!
|
|
43839
44053
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43893,7 +44107,7 @@ ContextSensitivityInfo = __decorate([
|
|
|
43893
44107
|
], ContextSensitivityInfo);
|
|
43894
44108
|
exports.ContextSensitivityInfo = ContextSensitivityInfo;
|
|
43895
44109
|
|
|
43896
|
-
},{"../Decorators":
|
|
44110
|
+
},{"../Decorators":219,"./DecisionEventInfo":270}],270:[function(require,module,exports){
|
|
43897
44111
|
"use strict";
|
|
43898
44112
|
/*!
|
|
43899
44113
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43945,7 +44159,7 @@ DecisionEventInfo = __decorate([
|
|
|
43945
44159
|
], DecisionEventInfo);
|
|
43946
44160
|
exports.DecisionEventInfo = DecisionEventInfo;
|
|
43947
44161
|
|
|
43948
|
-
},{"../Decorators":
|
|
44162
|
+
},{"../Decorators":219}],271:[function(require,module,exports){
|
|
43949
44163
|
"use strict";
|
|
43950
44164
|
/*!
|
|
43951
44165
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44158,7 +44372,7 @@ __decorate([
|
|
|
44158
44372
|
], DecisionInfo.prototype, "toString", null);
|
|
44159
44373
|
exports.DecisionInfo = DecisionInfo;
|
|
44160
44374
|
|
|
44161
|
-
},{"../Decorators":
|
|
44375
|
+
},{"../Decorators":219}],272:[function(require,module,exports){
|
|
44162
44376
|
"use strict";
|
|
44163
44377
|
/*!
|
|
44164
44378
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44178,7 +44392,7 @@ class DecisionState extends ATNState_1.ATNState {
|
|
|
44178
44392
|
}
|
|
44179
44393
|
exports.DecisionState = DecisionState;
|
|
44180
44394
|
|
|
44181
|
-
},{"./ATNState":
|
|
44395
|
+
},{"./ATNState":258}],273:[function(require,module,exports){
|
|
44182
44396
|
"use strict";
|
|
44183
44397
|
/*!
|
|
44184
44398
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44244,7 +44458,7 @@ EpsilonTransition = __decorate([
|
|
|
44244
44458
|
], EpsilonTransition);
|
|
44245
44459
|
exports.EpsilonTransition = EpsilonTransition;
|
|
44246
44460
|
|
|
44247
|
-
},{"../Decorators":
|
|
44461
|
+
},{"../Decorators":219,"./Transition":314}],274:[function(require,module,exports){
|
|
44248
44462
|
"use strict";
|
|
44249
44463
|
/*!
|
|
44250
44464
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44297,7 +44511,7 @@ ErrorInfo = __decorate([
|
|
|
44297
44511
|
], ErrorInfo);
|
|
44298
44512
|
exports.ErrorInfo = ErrorInfo;
|
|
44299
44513
|
|
|
44300
|
-
},{"../Decorators":
|
|
44514
|
+
},{"../Decorators":219,"./DecisionEventInfo":270}],275:[function(require,module,exports){
|
|
44301
44515
|
"use strict";
|
|
44302
44516
|
/*!
|
|
44303
44517
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44328,7 +44542,7 @@ __decorate([
|
|
|
44328
44542
|
], InvalidState.prototype, "stateType", null);
|
|
44329
44543
|
exports.InvalidState = InvalidState;
|
|
44330
44544
|
|
|
44331
|
-
},{"../Decorators":
|
|
44545
|
+
},{"../Decorators":219,"./ATNStateType":259,"./BasicState":265}],276:[function(require,module,exports){
|
|
44332
44546
|
"use strict";
|
|
44333
44547
|
/*!
|
|
44334
44548
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44550,7 +44764,7 @@ LL1Analyzer = __decorate([
|
|
|
44550
44764
|
], LL1Analyzer);
|
|
44551
44765
|
exports.LL1Analyzer = LL1Analyzer;
|
|
44552
44766
|
|
|
44553
|
-
},{"../Decorators":
|
|
44767
|
+
},{"../Decorators":219,"../Token":244,"../misc/Array2DHashSet":323,"../misc/BitSet":326,"../misc/IntervalSet":332,"../misc/ObjectEqualityComparator":335,"./ATNConfig":253,"./AbstractPredicateTransition":260,"./NotSetTransition":290,"./PredictionContext":299,"./RuleStopState":305,"./RuleTransition":306,"./WildcardTransition":315}],277:[function(require,module,exports){
|
|
44554
44768
|
"use strict";
|
|
44555
44769
|
/*!
|
|
44556
44770
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45267,7 +45481,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
|
|
|
45267
45481
|
})(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
|
|
45268
45482
|
exports.LexerATNSimulator = LexerATNSimulator;
|
|
45269
45483
|
|
|
45270
|
-
},{"../Decorators":
|
|
45484
|
+
},{"../Decorators":219,"../IntStream":225,"../Lexer":227,"../LexerNoViableAltException":229,"../Token":244,"../dfa/AcceptStateInfo":316,"../dfa/DFAState":319,"../misc/Interval":331,"./ATN":252,"./ATNConfig":253,"./ATNConfigSet":254,"./ATNSimulator":257,"./LexerActionExecutor":278,"./OrderedATNConfigSet":291,"./PredictionContext":299,"./RuleStopState":305,"assert":362}],278:[function(require,module,exports){
|
|
45271
45485
|
"use strict";
|
|
45272
45486
|
/*!
|
|
45273
45487
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45468,7 +45682,7 @@ LexerActionExecutor = __decorate([
|
|
|
45468
45682
|
], LexerActionExecutor);
|
|
45469
45683
|
exports.LexerActionExecutor = LexerActionExecutor;
|
|
45470
45684
|
|
|
45471
|
-
},{"../Decorators":
|
|
45685
|
+
},{"../Decorators":219,"../misc/ArrayEqualityComparator":324,"../misc/MurmurHash":334,"./LexerIndexedCustomAction":281}],279:[function(require,module,exports){
|
|
45472
45686
|
"use strict";
|
|
45473
45687
|
/*!
|
|
45474
45688
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45573,7 +45787,7 @@ __decorate([
|
|
|
45573
45787
|
], LexerChannelAction.prototype, "toString", null);
|
|
45574
45788
|
exports.LexerChannelAction = LexerChannelAction;
|
|
45575
45789
|
|
|
45576
|
-
},{"../Decorators":
|
|
45790
|
+
},{"../Decorators":219,"../misc/MurmurHash":334}],280:[function(require,module,exports){
|
|
45577
45791
|
"use strict";
|
|
45578
45792
|
/*!
|
|
45579
45793
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45702,7 +45916,7 @@ __decorate([
|
|
|
45702
45916
|
], LexerCustomAction.prototype, "equals", null);
|
|
45703
45917
|
exports.LexerCustomAction = LexerCustomAction;
|
|
45704
45918
|
|
|
45705
|
-
},{"../Decorators":
|
|
45919
|
+
},{"../Decorators":219,"../misc/MurmurHash":334}],281:[function(require,module,exports){
|
|
45706
45920
|
"use strict";
|
|
45707
45921
|
/*!
|
|
45708
45922
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45837,7 +46051,7 @@ LexerIndexedCustomAction = __decorate([
|
|
|
45837
46051
|
], LexerIndexedCustomAction);
|
|
45838
46052
|
exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
|
|
45839
46053
|
|
|
45840
|
-
},{"../Decorators":
|
|
46054
|
+
},{"../Decorators":219,"../misc/MurmurHash":334}],282:[function(require,module,exports){
|
|
45841
46055
|
"use strict";
|
|
45842
46056
|
/*!
|
|
45843
46057
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45942,7 +46156,7 @@ __decorate([
|
|
|
45942
46156
|
], LexerModeAction.prototype, "toString", null);
|
|
45943
46157
|
exports.LexerModeAction = LexerModeAction;
|
|
45944
46158
|
|
|
45945
|
-
},{"../Decorators":
|
|
46159
|
+
},{"../Decorators":219,"../misc/MurmurHash":334}],283:[function(require,module,exports){
|
|
45946
46160
|
"use strict";
|
|
45947
46161
|
/*!
|
|
45948
46162
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46038,7 +46252,7 @@ exports.LexerMoreAction = LexerMoreAction;
|
|
|
46038
46252
|
LexerMoreAction.INSTANCE = new LexerMoreAction();
|
|
46039
46253
|
})(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
|
|
46040
46254
|
|
|
46041
|
-
},{"../Decorators":
|
|
46255
|
+
},{"../Decorators":219,"../misc/MurmurHash":334}],284:[function(require,module,exports){
|
|
46042
46256
|
"use strict";
|
|
46043
46257
|
/*!
|
|
46044
46258
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46134,7 +46348,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
|
|
|
46134
46348
|
LexerPopModeAction.INSTANCE = new LexerPopModeAction();
|
|
46135
46349
|
})(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
|
|
46136
46350
|
|
|
46137
|
-
},{"../Decorators":
|
|
46351
|
+
},{"../Decorators":219,"../misc/MurmurHash":334}],285:[function(require,module,exports){
|
|
46138
46352
|
"use strict";
|
|
46139
46353
|
/*!
|
|
46140
46354
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46239,7 +46453,7 @@ __decorate([
|
|
|
46239
46453
|
], LexerPushModeAction.prototype, "toString", null);
|
|
46240
46454
|
exports.LexerPushModeAction = LexerPushModeAction;
|
|
46241
46455
|
|
|
46242
|
-
},{"../Decorators":
|
|
46456
|
+
},{"../Decorators":219,"../misc/MurmurHash":334}],286:[function(require,module,exports){
|
|
46243
46457
|
"use strict";
|
|
46244
46458
|
/*!
|
|
46245
46459
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46335,7 +46549,7 @@ exports.LexerSkipAction = LexerSkipAction;
|
|
|
46335
46549
|
LexerSkipAction.INSTANCE = new LexerSkipAction();
|
|
46336
46550
|
})(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
|
|
46337
46551
|
|
|
46338
|
-
},{"../Decorators":
|
|
46552
|
+
},{"../Decorators":219,"../misc/MurmurHash":334}],287:[function(require,module,exports){
|
|
46339
46553
|
"use strict";
|
|
46340
46554
|
/*!
|
|
46341
46555
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46439,7 +46653,7 @@ __decorate([
|
|
|
46439
46653
|
], LexerTypeAction.prototype, "toString", null);
|
|
46440
46654
|
exports.LexerTypeAction = LexerTypeAction;
|
|
46441
46655
|
|
|
46442
|
-
},{"../Decorators":
|
|
46656
|
+
},{"../Decorators":219,"../misc/MurmurHash":334}],288:[function(require,module,exports){
|
|
46443
46657
|
"use strict";
|
|
46444
46658
|
/*!
|
|
46445
46659
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46491,7 +46705,7 @@ LookaheadEventInfo = __decorate([
|
|
|
46491
46705
|
], LookaheadEventInfo);
|
|
46492
46706
|
exports.LookaheadEventInfo = LookaheadEventInfo;
|
|
46493
46707
|
|
|
46494
|
-
},{"../Decorators":
|
|
46708
|
+
},{"../Decorators":219,"./DecisionEventInfo":270}],289:[function(require,module,exports){
|
|
46495
46709
|
"use strict";
|
|
46496
46710
|
/*!
|
|
46497
46711
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46520,7 +46734,7 @@ __decorate([
|
|
|
46520
46734
|
], LoopEndState.prototype, "stateType", null);
|
|
46521
46735
|
exports.LoopEndState = LoopEndState;
|
|
46522
46736
|
|
|
46523
|
-
},{"../Decorators":
|
|
46737
|
+
},{"../Decorators":219,"./ATNState":258,"./ATNStateType":259}],290:[function(require,module,exports){
|
|
46524
46738
|
"use strict";
|
|
46525
46739
|
/*!
|
|
46526
46740
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46569,7 +46783,7 @@ NotSetTransition = __decorate([
|
|
|
46569
46783
|
], NotSetTransition);
|
|
46570
46784
|
exports.NotSetTransition = NotSetTransition;
|
|
46571
46785
|
|
|
46572
|
-
},{"../Decorators":
|
|
46786
|
+
},{"../Decorators":219,"./SetTransition":308}],291:[function(require,module,exports){
|
|
46573
46787
|
"use strict";
|
|
46574
46788
|
/*!
|
|
46575
46789
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46624,7 +46838,7 @@ __decorate([
|
|
|
46624
46838
|
], OrderedATNConfigSet.prototype, "canMerge", null);
|
|
46625
46839
|
exports.OrderedATNConfigSet = OrderedATNConfigSet;
|
|
46626
46840
|
|
|
46627
|
-
},{"../Decorators":
|
|
46841
|
+
},{"../Decorators":219,"./ATNConfigSet":254}],292:[function(require,module,exports){
|
|
46628
46842
|
"use strict";
|
|
46629
46843
|
/*!
|
|
46630
46844
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46786,7 +47000,7 @@ ParseInfo = __decorate([
|
|
|
46786
47000
|
], ParseInfo);
|
|
46787
47001
|
exports.ParseInfo = ParseInfo;
|
|
46788
47002
|
|
|
46789
|
-
},{"../Decorators":
|
|
47003
|
+
},{"../Decorators":219}],293:[function(require,module,exports){
|
|
46790
47004
|
"use strict";
|
|
46791
47005
|
/*!
|
|
46792
47006
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49059,7 +49273,7 @@ ParserATNSimulator = __decorate([
|
|
|
49059
49273
|
], ParserATNSimulator);
|
|
49060
49274
|
exports.ParserATNSimulator = ParserATNSimulator;
|
|
49061
49275
|
|
|
49062
|
-
},{"../Decorators":
|
|
49276
|
+
},{"../Decorators":219,"../IntStream":225,"../NoViableAltException":231,"../ParserRuleContext":235,"../Token":244,"../VocabularyImpl":250,"../dfa/AcceptStateInfo":316,"../dfa/DFAState":319,"../misc/Array2DHashSet":323,"../misc/Arrays":325,"../misc/BitSet":326,"../misc/IntegerList":329,"../misc/Interval":331,"../misc/ObjectEqualityComparator":335,"./ATN":252,"./ATNConfig":253,"./ATNConfigSet":254,"./ATNSimulator":257,"./ATNStateType":259,"./ActionTransition":261,"./AtomTransition":263,"./ConflictInfo":268,"./DecisionState":272,"./NotSetTransition":290,"./PredictionContext":299,"./PredictionContextCache":300,"./PredictionMode":301,"./RuleStopState":305,"./RuleTransition":306,"./SemanticContext":307,"./SetTransition":308,"./SimulatorState":309,"assert":362}],294:[function(require,module,exports){
|
|
49063
49277
|
"use strict";
|
|
49064
49278
|
/*!
|
|
49065
49279
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49092,7 +49306,7 @@ __decorate([
|
|
|
49092
49306
|
], PlusBlockStartState.prototype, "stateType", null);
|
|
49093
49307
|
exports.PlusBlockStartState = PlusBlockStartState;
|
|
49094
49308
|
|
|
49095
|
-
},{"../Decorators":
|
|
49309
|
+
},{"../Decorators":219,"./ATNStateType":259,"./BlockStartState":267}],295:[function(require,module,exports){
|
|
49096
49310
|
"use strict";
|
|
49097
49311
|
/*!
|
|
49098
49312
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49123,7 +49337,7 @@ __decorate([
|
|
|
49123
49337
|
], PlusLoopbackState.prototype, "stateType", null);
|
|
49124
49338
|
exports.PlusLoopbackState = PlusLoopbackState;
|
|
49125
49339
|
|
|
49126
|
-
},{"../Decorators":
|
|
49340
|
+
},{"../Decorators":219,"./ATNStateType":259,"./DecisionState":272}],296:[function(require,module,exports){
|
|
49127
49341
|
"use strict";
|
|
49128
49342
|
/*!
|
|
49129
49343
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49186,7 +49400,7 @@ PrecedencePredicateTransition = __decorate([
|
|
|
49186
49400
|
], PrecedencePredicateTransition);
|
|
49187
49401
|
exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
|
|
49188
49402
|
|
|
49189
|
-
},{"../Decorators":
|
|
49403
|
+
},{"../Decorators":219,"./AbstractPredicateTransition":260,"./SemanticContext":307}],297:[function(require,module,exports){
|
|
49190
49404
|
"use strict";
|
|
49191
49405
|
/*!
|
|
49192
49406
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49249,7 +49463,7 @@ PredicateEvalInfo = __decorate([
|
|
|
49249
49463
|
], PredicateEvalInfo);
|
|
49250
49464
|
exports.PredicateEvalInfo = PredicateEvalInfo;
|
|
49251
49465
|
|
|
49252
|
-
},{"../Decorators":
|
|
49466
|
+
},{"../Decorators":219,"./DecisionEventInfo":270}],298:[function(require,module,exports){
|
|
49253
49467
|
"use strict";
|
|
49254
49468
|
/*!
|
|
49255
49469
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49315,7 +49529,7 @@ PredicateTransition = __decorate([
|
|
|
49315
49529
|
], PredicateTransition);
|
|
49316
49530
|
exports.PredicateTransition = PredicateTransition;
|
|
49317
49531
|
|
|
49318
|
-
},{"../Decorators":
|
|
49532
|
+
},{"../Decorators":219,"./AbstractPredicateTransition":260,"./SemanticContext":307}],299:[function(require,module,exports){
|
|
49319
49533
|
"use strict";
|
|
49320
49534
|
/*!
|
|
49321
49535
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50006,7 +50220,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
|
|
|
50006
50220
|
PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
|
|
50007
50221
|
})(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
|
|
50008
50222
|
|
|
50009
|
-
},{"../Decorators":
|
|
50223
|
+
},{"../Decorators":219,"../misc/Array2DHashMap":322,"../misc/Array2DHashSet":323,"../misc/Arrays":325,"../misc/MurmurHash":334,"./PredictionContextCache":300,"assert":362}],300:[function(require,module,exports){
|
|
50010
50224
|
"use strict";
|
|
50011
50225
|
/*!
|
|
50012
50226
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50147,7 +50361,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
|
|
|
50147
50361
|
PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
|
|
50148
50362
|
})(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
|
|
50149
50363
|
|
|
50150
|
-
},{"../Decorators":
|
|
50364
|
+
},{"../Decorators":219,"../misc/Array2DHashMap":322,"../misc/ObjectEqualityComparator":335,"./PredictionContext":299,"assert":362}],301:[function(require,module,exports){
|
|
50151
50365
|
"use strict";
|
|
50152
50366
|
/*!
|
|
50153
50367
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50308,7 +50522,7 @@ var PredictionMode;
|
|
|
50308
50522
|
PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
|
|
50309
50523
|
})(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
|
|
50310
50524
|
|
|
50311
|
-
},{"../Decorators":
|
|
50525
|
+
},{"../Decorators":219,"../misc/Array2DHashMap":322,"../misc/MurmurHash":334,"./RuleStopState":305}],302:[function(require,module,exports){
|
|
50312
50526
|
(function (process){(function (){
|
|
50313
50527
|
"use strict";
|
|
50314
50528
|
/*!
|
|
@@ -50577,7 +50791,7 @@ __decorate([
|
|
|
50577
50791
|
exports.ProfilingATNSimulator = ProfilingATNSimulator;
|
|
50578
50792
|
|
|
50579
50793
|
}).call(this)}).call(this,require('_process'))
|
|
50580
|
-
},{"../Decorators":
|
|
50794
|
+
},{"../Decorators":219,"./ATN":252,"./ATNSimulator":257,"./AmbiguityInfo":262,"./ContextSensitivityInfo":269,"./DecisionInfo":271,"./ErrorInfo":274,"./LookaheadEventInfo":288,"./ParserATNSimulator":293,"./PredicateEvalInfo":297,"./SemanticContext":307,"./SimulatorState":309,"_process":421}],303:[function(require,module,exports){
|
|
50581
50795
|
"use strict";
|
|
50582
50796
|
/*!
|
|
50583
50797
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50635,7 +50849,7 @@ RangeTransition = __decorate([
|
|
|
50635
50849
|
], RangeTransition);
|
|
50636
50850
|
exports.RangeTransition = RangeTransition;
|
|
50637
50851
|
|
|
50638
|
-
},{"../Decorators":
|
|
50852
|
+
},{"../Decorators":219,"../misc/IntervalSet":332,"./Transition":314}],304:[function(require,module,exports){
|
|
50639
50853
|
"use strict";
|
|
50640
50854
|
/*!
|
|
50641
50855
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50668,7 +50882,7 @@ __decorate([
|
|
|
50668
50882
|
], RuleStartState.prototype, "stateType", null);
|
|
50669
50883
|
exports.RuleStartState = RuleStartState;
|
|
50670
50884
|
|
|
50671
|
-
},{"../Decorators":
|
|
50885
|
+
},{"../Decorators":219,"./ATNState":258,"./ATNStateType":259}],305:[function(require,module,exports){
|
|
50672
50886
|
"use strict";
|
|
50673
50887
|
/*!
|
|
50674
50888
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50707,7 +50921,7 @@ __decorate([
|
|
|
50707
50921
|
], RuleStopState.prototype, "stateType", null);
|
|
50708
50922
|
exports.RuleStopState = RuleStopState;
|
|
50709
50923
|
|
|
50710
|
-
},{"../Decorators":
|
|
50924
|
+
},{"../Decorators":219,"./ATNState":258,"./ATNStateType":259}],306:[function(require,module,exports){
|
|
50711
50925
|
"use strict";
|
|
50712
50926
|
/*!
|
|
50713
50927
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50763,7 +50977,7 @@ RuleTransition = __decorate([
|
|
|
50763
50977
|
], RuleTransition);
|
|
50764
50978
|
exports.RuleTransition = RuleTransition;
|
|
50765
50979
|
|
|
50766
|
-
},{"../Decorators":
|
|
50980
|
+
},{"../Decorators":219,"./Transition":314}],307:[function(require,module,exports){
|
|
50767
50981
|
"use strict";
|
|
50768
50982
|
/*!
|
|
50769
50983
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51243,7 +51457,7 @@ exports.SemanticContext = SemanticContext;
|
|
|
51243
51457
|
SemanticContext.OR = OR;
|
|
51244
51458
|
})(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
|
|
51245
51459
|
|
|
51246
|
-
},{"../Decorators":
|
|
51460
|
+
},{"../Decorators":219,"../misc/Array2DHashSet":323,"../misc/ArrayEqualityComparator":324,"../misc/MurmurHash":334,"../misc/ObjectEqualityComparator":335,"../misc/Utils":338}],308:[function(require,module,exports){
|
|
51247
51461
|
"use strict";
|
|
51248
51462
|
/*!
|
|
51249
51463
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51309,7 +51523,7 @@ SetTransition = __decorate([
|
|
|
51309
51523
|
], SetTransition);
|
|
51310
51524
|
exports.SetTransition = SetTransition;
|
|
51311
51525
|
|
|
51312
|
-
},{"../Decorators":
|
|
51526
|
+
},{"../Decorators":219,"../Token":244,"../misc/IntervalSet":332,"./Transition":314}],309:[function(require,module,exports){
|
|
51313
51527
|
"use strict";
|
|
51314
51528
|
/*!
|
|
51315
51529
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51345,7 +51559,7 @@ SimulatorState = __decorate([
|
|
|
51345
51559
|
], SimulatorState);
|
|
51346
51560
|
exports.SimulatorState = SimulatorState;
|
|
51347
51561
|
|
|
51348
|
-
},{"../Decorators":
|
|
51562
|
+
},{"../Decorators":219,"../ParserRuleContext":235}],310:[function(require,module,exports){
|
|
51349
51563
|
"use strict";
|
|
51350
51564
|
/*!
|
|
51351
51565
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51373,7 +51587,7 @@ __decorate([
|
|
|
51373
51587
|
], StarBlockStartState.prototype, "stateType", null);
|
|
51374
51588
|
exports.StarBlockStartState = StarBlockStartState;
|
|
51375
51589
|
|
|
51376
|
-
},{"../Decorators":
|
|
51590
|
+
},{"../Decorators":219,"./ATNStateType":259,"./BlockStartState":267}],311:[function(require,module,exports){
|
|
51377
51591
|
"use strict";
|
|
51378
51592
|
/*!
|
|
51379
51593
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51430,7 +51644,7 @@ __decorate([
|
|
|
51430
51644
|
], StarLoopEntryState.prototype, "stateType", null);
|
|
51431
51645
|
exports.StarLoopEntryState = StarLoopEntryState;
|
|
51432
51646
|
|
|
51433
|
-
},{"../Decorators":
|
|
51647
|
+
},{"../Decorators":219,"../misc/BitSet":326,"./ATNStateType":259,"./DecisionState":272}],312:[function(require,module,exports){
|
|
51434
51648
|
"use strict";
|
|
51435
51649
|
/*!
|
|
51436
51650
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51461,7 +51675,7 @@ __decorate([
|
|
|
51461
51675
|
], StarLoopbackState.prototype, "stateType", null);
|
|
51462
51676
|
exports.StarLoopbackState = StarLoopbackState;
|
|
51463
51677
|
|
|
51464
|
-
},{"../Decorators":
|
|
51678
|
+
},{"../Decorators":219,"./ATNState":258,"./ATNStateType":259}],313:[function(require,module,exports){
|
|
51465
51679
|
"use strict";
|
|
51466
51680
|
/*!
|
|
51467
51681
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51490,7 +51704,7 @@ __decorate([
|
|
|
51490
51704
|
], TokensStartState.prototype, "stateType", null);
|
|
51491
51705
|
exports.TokensStartState = TokensStartState;
|
|
51492
51706
|
|
|
51493
|
-
},{"../Decorators":
|
|
51707
|
+
},{"../Decorators":219,"./ATNStateType":259,"./DecisionState":272}],314:[function(require,module,exports){
|
|
51494
51708
|
"use strict";
|
|
51495
51709
|
/*!
|
|
51496
51710
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51564,7 +51778,7 @@ Transition = __decorate([
|
|
|
51564
51778
|
], Transition);
|
|
51565
51779
|
exports.Transition = Transition;
|
|
51566
51780
|
|
|
51567
|
-
},{"../Decorators":
|
|
51781
|
+
},{"../Decorators":219}],315:[function(require,module,exports){
|
|
51568
51782
|
"use strict";
|
|
51569
51783
|
/*!
|
|
51570
51784
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51612,7 +51826,7 @@ WildcardTransition = __decorate([
|
|
|
51612
51826
|
], WildcardTransition);
|
|
51613
51827
|
exports.WildcardTransition = WildcardTransition;
|
|
51614
51828
|
|
|
51615
|
-
},{"../Decorators":
|
|
51829
|
+
},{"../Decorators":219,"./Transition":314}],316:[function(require,module,exports){
|
|
51616
51830
|
"use strict";
|
|
51617
51831
|
/*!
|
|
51618
51832
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51654,7 +51868,7 @@ class AcceptStateInfo {
|
|
|
51654
51868
|
}
|
|
51655
51869
|
exports.AcceptStateInfo = AcceptStateInfo;
|
|
51656
51870
|
|
|
51657
|
-
},{}],
|
|
51871
|
+
},{}],317:[function(require,module,exports){
|
|
51658
51872
|
"use strict";
|
|
51659
51873
|
/*!
|
|
51660
51874
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51829,7 +52043,7 @@ DFA = __decorate([
|
|
|
51829
52043
|
], DFA);
|
|
51830
52044
|
exports.DFA = DFA;
|
|
51831
52045
|
|
|
51832
|
-
},{"../Decorators":
|
|
52046
|
+
},{"../Decorators":219,"../VocabularyImpl":250,"../atn/ATNConfigSet":254,"../atn/StarLoopEntryState":311,"../misc/Array2DHashSet":323,"../misc/ObjectEqualityComparator":335,"./DFASerializer":318,"./DFAState":319,"./LexerDFASerializer":320}],318:[function(require,module,exports){
|
|
51833
52047
|
"use strict";
|
|
51834
52048
|
/*!
|
|
51835
52049
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51971,7 +52185,7 @@ __decorate([
|
|
|
51971
52185
|
], DFASerializer.prototype, "toString", null);
|
|
51972
52186
|
exports.DFASerializer = DFASerializer;
|
|
51973
52187
|
|
|
51974
|
-
},{"../Decorators":
|
|
52188
|
+
},{"../Decorators":219,"../Recognizer":239,"../VocabularyImpl":250,"../atn/ATNSimulator":257,"../atn/PredictionContext":299}],319:[function(require,module,exports){
|
|
51975
52189
|
"use strict";
|
|
51976
52190
|
/*!
|
|
51977
52191
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52202,7 +52416,7 @@ exports.DFAState = DFAState;
|
|
|
52202
52416
|
DFAState.PredPrediction = PredPrediction;
|
|
52203
52417
|
})(DFAState = exports.DFAState || (exports.DFAState = {}));
|
|
52204
52418
|
|
|
52205
|
-
},{"../Decorators":
|
|
52419
|
+
},{"../Decorators":219,"../atn/ATN":252,"../atn/PredictionContext":299,"../misc/BitSet":326,"../misc/MurmurHash":334,"assert":362}],320:[function(require,module,exports){
|
|
52206
52420
|
"use strict";
|
|
52207
52421
|
/*!
|
|
52208
52422
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52239,7 +52453,7 @@ LexerDFASerializer = __decorate([
|
|
|
52239
52453
|
], LexerDFASerializer);
|
|
52240
52454
|
exports.LexerDFASerializer = LexerDFASerializer;
|
|
52241
52455
|
|
|
52242
|
-
},{"../Decorators":
|
|
52456
|
+
},{"../Decorators":219,"../VocabularyImpl":250,"./DFASerializer":318}],321:[function(require,module,exports){
|
|
52243
52457
|
"use strict";
|
|
52244
52458
|
/*!
|
|
52245
52459
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52305,7 +52519,7 @@ __exportStar(require("./Vocabulary"), exports);
|
|
|
52305
52519
|
__exportStar(require("./VocabularyImpl"), exports);
|
|
52306
52520
|
__exportStar(require("./WritableToken"), exports);
|
|
52307
52521
|
|
|
52308
|
-
},{"./ANTLRErrorListener":
|
|
52522
|
+
},{"./ANTLRErrorListener":206,"./ANTLRErrorStrategy":207,"./ANTLRInputStream":208,"./BailErrorStrategy":209,"./BufferedTokenStream":210,"./CharStream":211,"./CharStreams":212,"./CodePointBuffer":213,"./CodePointCharStream":214,"./CommonToken":215,"./CommonTokenFactory":216,"./CommonTokenStream":217,"./ConsoleErrorListener":218,"./DefaultErrorStrategy":220,"./Dependents":221,"./DiagnosticErrorListener":222,"./FailedPredicateException":223,"./InputMismatchException":224,"./IntStream":225,"./InterpreterRuleContext":226,"./Lexer":227,"./LexerInterpreter":228,"./LexerNoViableAltException":229,"./ListTokenSource":230,"./NoViableAltException":231,"./Parser":232,"./ParserErrorListener":233,"./ParserInterpreter":234,"./ParserRuleContext":235,"./ProxyErrorListener":236,"./ProxyParserErrorListener":237,"./RecognitionException":238,"./Recognizer":239,"./RuleContext":240,"./RuleContextWithAltNum":241,"./RuleDependency":242,"./RuleVersion":243,"./Token":244,"./TokenFactory":245,"./TokenSource":246,"./TokenStream":247,"./TokenStreamRewriter":248,"./Vocabulary":249,"./VocabularyImpl":250,"./WritableToken":251}],322:[function(require,module,exports){
|
|
52309
52523
|
"use strict";
|
|
52310
52524
|
/*!
|
|
52311
52525
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52388,7 +52602,7 @@ class Array2DHashMap {
|
|
|
52388
52602
|
}
|
|
52389
52603
|
exports.Array2DHashMap = Array2DHashMap;
|
|
52390
52604
|
|
|
52391
|
-
},{"./Array2DHashSet":
|
|
52605
|
+
},{"./Array2DHashSet":323}],323:[function(require,module,exports){
|
|
52392
52606
|
"use strict";
|
|
52393
52607
|
/*!
|
|
52394
52608
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52755,7 +52969,7 @@ __decorate([
|
|
|
52755
52969
|
], Array2DHashSet.prototype, "createBuckets", null);
|
|
52756
52970
|
exports.Array2DHashSet = Array2DHashSet;
|
|
52757
52971
|
|
|
52758
|
-
},{"../Decorators":
|
|
52972
|
+
},{"../Decorators":219,"./DefaultEqualityComparator":328,"./MurmurHash":334,"assert":362}],324:[function(require,module,exports){
|
|
52759
52973
|
"use strict";
|
|
52760
52974
|
/*!
|
|
52761
52975
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52827,7 +53041,7 @@ __decorate([
|
|
|
52827
53041
|
], ArrayEqualityComparator.prototype, "equals", null);
|
|
52828
53042
|
exports.ArrayEqualityComparator = ArrayEqualityComparator;
|
|
52829
53043
|
|
|
52830
|
-
},{"../Decorators":
|
|
53044
|
+
},{"../Decorators":219,"./MurmurHash":334,"./ObjectEqualityComparator":335}],325:[function(require,module,exports){
|
|
52831
53045
|
"use strict";
|
|
52832
53046
|
/*!
|
|
52833
53047
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52897,7 +53111,7 @@ var Arrays;
|
|
|
52897
53111
|
Arrays.toString = toString;
|
|
52898
53112
|
})(Arrays = exports.Arrays || (exports.Arrays = {}));
|
|
52899
53113
|
|
|
52900
|
-
},{}],
|
|
53114
|
+
},{}],326:[function(require,module,exports){
|
|
52901
53115
|
"use strict";
|
|
52902
53116
|
/*!
|
|
52903
53117
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53569,7 +53783,7 @@ class BitSetIterator {
|
|
|
53569
53783
|
[Symbol.iterator]() { return this; }
|
|
53570
53784
|
}
|
|
53571
53785
|
|
|
53572
|
-
},{"./MurmurHash":
|
|
53786
|
+
},{"./MurmurHash":334,"util":426}],327:[function(require,module,exports){
|
|
53573
53787
|
"use strict";
|
|
53574
53788
|
/*!
|
|
53575
53789
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53590,7 +53804,7 @@ function isSupplementaryCodePoint(ch) {
|
|
|
53590
53804
|
}
|
|
53591
53805
|
exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
|
|
53592
53806
|
|
|
53593
|
-
},{}],
|
|
53807
|
+
},{}],328:[function(require,module,exports){
|
|
53594
53808
|
"use strict";
|
|
53595
53809
|
/*!
|
|
53596
53810
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53661,7 +53875,7 @@ __decorate([
|
|
|
53661
53875
|
], DefaultEqualityComparator.prototype, "equals", null);
|
|
53662
53876
|
exports.DefaultEqualityComparator = DefaultEqualityComparator;
|
|
53663
53877
|
|
|
53664
|
-
},{"../Decorators":
|
|
53878
|
+
},{"../Decorators":219,"./MurmurHash":334,"./ObjectEqualityComparator":335}],329:[function(require,module,exports){
|
|
53665
53879
|
"use strict";
|
|
53666
53880
|
/*!
|
|
53667
53881
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53955,7 +54169,7 @@ __decorate([
|
|
|
53955
54169
|
], IntegerList.prototype, "toString", null);
|
|
53956
54170
|
exports.IntegerList = IntegerList;
|
|
53957
54171
|
|
|
53958
|
-
},{"../Decorators":
|
|
54172
|
+
},{"../Decorators":219,"./Arrays":325}],330:[function(require,module,exports){
|
|
53959
54173
|
"use strict";
|
|
53960
54174
|
/*!
|
|
53961
54175
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53985,7 +54199,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
|
|
|
53985
54199
|
}
|
|
53986
54200
|
exports.IntegerStack = IntegerStack;
|
|
53987
54201
|
|
|
53988
|
-
},{"./IntegerList":
|
|
54202
|
+
},{"./IntegerList":329}],331:[function(require,module,exports){
|
|
53989
54203
|
"use strict";
|
|
53990
54204
|
/*!
|
|
53991
54205
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54128,7 +54342,7 @@ __decorate([
|
|
|
54128
54342
|
], Interval.prototype, "toString", null);
|
|
54129
54343
|
exports.Interval = Interval;
|
|
54130
54344
|
|
|
54131
|
-
},{"../Decorators":
|
|
54345
|
+
},{"../Decorators":219}],332:[function(require,module,exports){
|
|
54132
54346
|
"use strict";
|
|
54133
54347
|
/*!
|
|
54134
54348
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54774,7 +54988,7 @@ __decorate([
|
|
|
54774
54988
|
], IntervalSet, "subtract", null);
|
|
54775
54989
|
exports.IntervalSet = IntervalSet;
|
|
54776
54990
|
|
|
54777
|
-
},{"../Decorators":
|
|
54991
|
+
},{"../Decorators":219,"../Lexer":227,"../Token":244,"./ArrayEqualityComparator":324,"./IntegerList":329,"./Interval":331,"./MurmurHash":334}],333:[function(require,module,exports){
|
|
54778
54992
|
"use strict";
|
|
54779
54993
|
/*!
|
|
54780
54994
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54807,7 +55021,7 @@ class MultiMap extends Map {
|
|
|
54807
55021
|
}
|
|
54808
55022
|
exports.MultiMap = MultiMap;
|
|
54809
55023
|
|
|
54810
|
-
},{}],
|
|
55024
|
+
},{}],334:[function(require,module,exports){
|
|
54811
55025
|
"use strict";
|
|
54812
55026
|
/*!
|
|
54813
55027
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54922,7 +55136,7 @@ var MurmurHash;
|
|
|
54922
55136
|
}
|
|
54923
55137
|
})(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
|
|
54924
55138
|
|
|
54925
|
-
},{}],
|
|
55139
|
+
},{}],335:[function(require,module,exports){
|
|
54926
55140
|
"use strict";
|
|
54927
55141
|
/*!
|
|
54928
55142
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54981,7 +55195,7 @@ __decorate([
|
|
|
54981
55195
|
], ObjectEqualityComparator.prototype, "equals", null);
|
|
54982
55196
|
exports.ObjectEqualityComparator = ObjectEqualityComparator;
|
|
54983
55197
|
|
|
54984
|
-
},{"../Decorators":
|
|
55198
|
+
},{"../Decorators":219}],336:[function(require,module,exports){
|
|
54985
55199
|
"use strict";
|
|
54986
55200
|
/*!
|
|
54987
55201
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55010,7 +55224,7 @@ class ParseCancellationException extends Error {
|
|
|
55010
55224
|
}
|
|
55011
55225
|
exports.ParseCancellationException = ParseCancellationException;
|
|
55012
55226
|
|
|
55013
|
-
},{}],
|
|
55227
|
+
},{}],337:[function(require,module,exports){
|
|
55014
55228
|
"use strict";
|
|
55015
55229
|
/*!
|
|
55016
55230
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55064,7 +55278,7 @@ class UUID {
|
|
|
55064
55278
|
}
|
|
55065
55279
|
exports.UUID = UUID;
|
|
55066
55280
|
|
|
55067
|
-
},{"./MurmurHash":
|
|
55281
|
+
},{"./MurmurHash":334}],338:[function(require,module,exports){
|
|
55068
55282
|
"use strict";
|
|
55069
55283
|
/*!
|
|
55070
55284
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55239,7 +55453,7 @@ exports.toCharArray = toCharArray;
|
|
|
55239
55453
|
// return s;
|
|
55240
55454
|
// }
|
|
55241
55455
|
|
|
55242
|
-
},{}],
|
|
55456
|
+
},{}],339:[function(require,module,exports){
|
|
55243
55457
|
"use strict";
|
|
55244
55458
|
/*!
|
|
55245
55459
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55275,7 +55489,7 @@ __decorate([
|
|
|
55275
55489
|
], ErrorNode.prototype, "accept", null);
|
|
55276
55490
|
exports.ErrorNode = ErrorNode;
|
|
55277
55491
|
|
|
55278
|
-
},{"../Decorators":
|
|
55492
|
+
},{"../Decorators":219,"./TerminalNode":342}],340:[function(require,module,exports){
|
|
55279
55493
|
"use strict";
|
|
55280
55494
|
/*!
|
|
55281
55495
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55380,7 +55594,7 @@ exports.ParseTreeWalker = ParseTreeWalker;
|
|
|
55380
55594
|
ParseTreeWalker.DEFAULT = new ParseTreeWalker();
|
|
55381
55595
|
})(ParseTreeWalker = exports.ParseTreeWalker || (exports.ParseTreeWalker = {}));
|
|
55382
55596
|
|
|
55383
|
-
},{"./ErrorNode":
|
|
55597
|
+
},{"./ErrorNode":339,"./RuleNode":341,"./TerminalNode":342}],341:[function(require,module,exports){
|
|
55384
55598
|
"use strict";
|
|
55385
55599
|
/*!
|
|
55386
55600
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55392,7 +55606,7 @@ class RuleNode {
|
|
|
55392
55606
|
}
|
|
55393
55607
|
exports.RuleNode = RuleNode;
|
|
55394
55608
|
|
|
55395
|
-
},{}],
|
|
55609
|
+
},{}],342:[function(require,module,exports){
|
|
55396
55610
|
"use strict";
|
|
55397
55611
|
/*!
|
|
55398
55612
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55484,7 +55698,7 @@ __decorate([
|
|
|
55484
55698
|
], TerminalNode.prototype, "toString", null);
|
|
55485
55699
|
exports.TerminalNode = TerminalNode;
|
|
55486
55700
|
|
|
55487
|
-
},{"../Decorators":
|
|
55701
|
+
},{"../Decorators":219,"../Token":244,"../misc/Interval":331}],343:[function(require,module,exports){
|
|
55488
55702
|
"use strict";
|
|
55489
55703
|
/*!
|
|
55490
55704
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55728,7 +55942,7 @@ __decorate([
|
|
|
55728
55942
|
], Trees, "getRootOfSubtreeEnclosingRegion", null);
|
|
55729
55943
|
exports.Trees = Trees;
|
|
55730
55944
|
|
|
55731
|
-
},{"../CommonToken":
|
|
55945
|
+
},{"../CommonToken":215,"../Decorators":219,"../Parser":232,"../ParserRuleContext":235,"../Token":244,"../atn/ATN":252,"../misc/Utils":338,"./ErrorNode":339,"./RuleNode":341,"./TerminalNode":342}],344:[function(require,module,exports){
|
|
55732
55946
|
"use strict";
|
|
55733
55947
|
/*!
|
|
55734
55948
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55752,7 +55966,7 @@ class Chunk {
|
|
|
55752
55966
|
}
|
|
55753
55967
|
exports.Chunk = Chunk;
|
|
55754
55968
|
|
|
55755
|
-
},{}],
|
|
55969
|
+
},{}],345:[function(require,module,exports){
|
|
55756
55970
|
"use strict";
|
|
55757
55971
|
/*!
|
|
55758
55972
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55932,7 +56146,7 @@ ParseTreeMatch = __decorate([
|
|
|
55932
56146
|
], ParseTreeMatch);
|
|
55933
56147
|
exports.ParseTreeMatch = ParseTreeMatch;
|
|
55934
56148
|
|
|
55935
|
-
},{"../../Decorators":
|
|
56149
|
+
},{"../../Decorators":219}],346:[function(require,module,exports){
|
|
55936
56150
|
"use strict";
|
|
55937
56151
|
/*!
|
|
55938
56152
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56090,7 +56304,7 @@ ParseTreePattern = __decorate([
|
|
|
56090
56304
|
], ParseTreePattern);
|
|
56091
56305
|
exports.ParseTreePattern = ParseTreePattern;
|
|
56092
56306
|
|
|
56093
|
-
},{"../../Decorators":
|
|
56307
|
+
},{"../../Decorators":219,"../xpath/XPath":352}],347:[function(require,module,exports){
|
|
56094
56308
|
"use strict";
|
|
56095
56309
|
/*!
|
|
56096
56310
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56568,7 +56782,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
|
|
|
56568
56782
|
ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
|
|
56569
56783
|
})(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
|
|
56570
56784
|
|
|
56571
|
-
},{"../../BailErrorStrategy":
|
|
56785
|
+
},{"../../BailErrorStrategy":209,"../../CharStreams":212,"../../CommonTokenStream":217,"../../Decorators":219,"../../ListTokenSource":230,"../../ParserInterpreter":234,"../../ParserRuleContext":235,"../../RecognitionException":238,"../../Token":244,"../../misc/MultiMap":333,"../../misc/ParseCancellationException":336,"../RuleNode":341,"../TerminalNode":342,"./ParseTreeMatch":345,"./ParseTreePattern":346,"./RuleTagToken":348,"./TagChunk":349,"./TextChunk":350,"./TokenTagToken":351}],348:[function(require,module,exports){
|
|
56572
56786
|
"use strict";
|
|
56573
56787
|
/*!
|
|
56574
56788
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56766,7 +56980,7 @@ RuleTagToken = __decorate([
|
|
|
56766
56980
|
], RuleTagToken);
|
|
56767
56981
|
exports.RuleTagToken = RuleTagToken;
|
|
56768
56982
|
|
|
56769
|
-
},{"../../Decorators":
|
|
56983
|
+
},{"../../Decorators":219,"../../Token":244}],349:[function(require,module,exports){
|
|
56770
56984
|
"use strict";
|
|
56771
56985
|
/*!
|
|
56772
56986
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56853,7 +57067,7 @@ __decorate([
|
|
|
56853
57067
|
], TagChunk.prototype, "toString", null);
|
|
56854
57068
|
exports.TagChunk = TagChunk;
|
|
56855
57069
|
|
|
56856
|
-
},{"../../Decorators":
|
|
57070
|
+
},{"../../Decorators":219,"./Chunk":344}],350:[function(require,module,exports){
|
|
56857
57071
|
"use strict";
|
|
56858
57072
|
/*!
|
|
56859
57073
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56923,7 +57137,7 @@ TextChunk = __decorate([
|
|
|
56923
57137
|
], TextChunk);
|
|
56924
57138
|
exports.TextChunk = TextChunk;
|
|
56925
57139
|
|
|
56926
|
-
},{"../../Decorators":
|
|
57140
|
+
},{"../../Decorators":219,"./Chunk":344}],351:[function(require,module,exports){
|
|
56927
57141
|
"use strict";
|
|
56928
57142
|
/*!
|
|
56929
57143
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57018,7 +57232,7 @@ TokenTagToken = __decorate([
|
|
|
57018
57232
|
], TokenTagToken);
|
|
57019
57233
|
exports.TokenTagToken = TokenTagToken;
|
|
57020
57234
|
|
|
57021
|
-
},{"../../CommonToken":
|
|
57235
|
+
},{"../../CommonToken":215,"../../Decorators":219}],352:[function(require,module,exports){
|
|
57022
57236
|
"use strict";
|
|
57023
57237
|
/*!
|
|
57024
57238
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57215,7 +57429,7 @@ exports.XPath = XPath;
|
|
|
57215
57429
|
XPath.WILDCARD = "*"; // word not operator/separator
|
|
57216
57430
|
XPath.NOT = "!"; // word for invert operator
|
|
57217
57431
|
|
|
57218
|
-
},{"../../CharStreams":
|
|
57432
|
+
},{"../../CharStreams":212,"../../CommonTokenStream":217,"../../LexerNoViableAltException":229,"../../ParserRuleContext":235,"../../Token":244,"./XPathLexer":354,"./XPathLexerErrorListener":355,"./XPathRuleAnywhereElement":356,"./XPathRuleElement":357,"./XPathTokenAnywhereElement":358,"./XPathTokenElement":359,"./XPathWildcardAnywhereElement":360,"./XPathWildcardElement":361}],353:[function(require,module,exports){
|
|
57219
57433
|
"use strict";
|
|
57220
57434
|
/*!
|
|
57221
57435
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57250,7 +57464,7 @@ __decorate([
|
|
|
57250
57464
|
], XPathElement.prototype, "toString", null);
|
|
57251
57465
|
exports.XPathElement = XPathElement;
|
|
57252
57466
|
|
|
57253
|
-
},{"../../Decorators":
|
|
57467
|
+
},{"../../Decorators":219}],354:[function(require,module,exports){
|
|
57254
57468
|
"use strict";
|
|
57255
57469
|
// Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
57256
57470
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -57725,7 +57939,7 @@ XPathLexer._serializedATN = Utils.join([
|
|
|
57725
57939
|
XPathLexer._serializedATNSegment1,
|
|
57726
57940
|
], "");
|
|
57727
57941
|
|
|
57728
|
-
},{"../../Lexer":
|
|
57942
|
+
},{"../../Lexer":227,"../../VocabularyImpl":250,"../../atn/ATNDeserializer":256,"../../atn/LexerATNSimulator":277,"../../misc/Utils":338}],355:[function(require,module,exports){
|
|
57729
57943
|
"use strict";
|
|
57730
57944
|
/*!
|
|
57731
57945
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57750,7 +57964,7 @@ __decorate([
|
|
|
57750
57964
|
], XPathLexerErrorListener.prototype, "syntaxError", null);
|
|
57751
57965
|
exports.XPathLexerErrorListener = XPathLexerErrorListener;
|
|
57752
57966
|
|
|
57753
|
-
},{"../../Decorators":
|
|
57967
|
+
},{"../../Decorators":219}],356:[function(require,module,exports){
|
|
57754
57968
|
"use strict";
|
|
57755
57969
|
/*!
|
|
57756
57970
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57784,7 +57998,7 @@ __decorate([
|
|
|
57784
57998
|
], XPathRuleAnywhereElement.prototype, "evaluate", null);
|
|
57785
57999
|
exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
|
|
57786
58000
|
|
|
57787
|
-
},{"../../Decorators":
|
|
58001
|
+
},{"../../Decorators":219,"../Trees":343,"./XPathElement":353}],357:[function(require,module,exports){
|
|
57788
58002
|
"use strict";
|
|
57789
58003
|
/*!
|
|
57790
58004
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57827,7 +58041,7 @@ __decorate([
|
|
|
57827
58041
|
], XPathRuleElement.prototype, "evaluate", null);
|
|
57828
58042
|
exports.XPathRuleElement = XPathRuleElement;
|
|
57829
58043
|
|
|
57830
|
-
},{"../../Decorators":
|
|
58044
|
+
},{"../../Decorators":219,"../../ParserRuleContext":235,"../Trees":343,"./XPathElement":353}],358:[function(require,module,exports){
|
|
57831
58045
|
"use strict";
|
|
57832
58046
|
/*!
|
|
57833
58047
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57859,7 +58073,7 @@ __decorate([
|
|
|
57859
58073
|
], XPathTokenAnywhereElement.prototype, "evaluate", null);
|
|
57860
58074
|
exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
|
|
57861
58075
|
|
|
57862
|
-
},{"../../Decorators":
|
|
58076
|
+
},{"../../Decorators":219,"../Trees":343,"./XPathElement":353}],359:[function(require,module,exports){
|
|
57863
58077
|
"use strict";
|
|
57864
58078
|
/*!
|
|
57865
58079
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57902,7 +58116,7 @@ __decorate([
|
|
|
57902
58116
|
], XPathTokenElement.prototype, "evaluate", null);
|
|
57903
58117
|
exports.XPathTokenElement = XPathTokenElement;
|
|
57904
58118
|
|
|
57905
|
-
},{"../../Decorators":
|
|
58119
|
+
},{"../../Decorators":219,"../TerminalNode":342,"../Trees":343,"./XPathElement":353}],360:[function(require,module,exports){
|
|
57906
58120
|
"use strict";
|
|
57907
58121
|
/*!
|
|
57908
58122
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57938,7 +58152,7 @@ __decorate([
|
|
|
57938
58152
|
], XPathWildcardAnywhereElement.prototype, "evaluate", null);
|
|
57939
58153
|
exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
|
|
57940
58154
|
|
|
57941
|
-
},{"../../Decorators":
|
|
58155
|
+
},{"../../Decorators":219,"../Trees":343,"./XPath":352,"./XPathElement":353}],361:[function(require,module,exports){
|
|
57942
58156
|
"use strict";
|
|
57943
58157
|
/*!
|
|
57944
58158
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57978,7 +58192,7 @@ __decorate([
|
|
|
57978
58192
|
], XPathWildcardElement.prototype, "evaluate", null);
|
|
57979
58193
|
exports.XPathWildcardElement = XPathWildcardElement;
|
|
57980
58194
|
|
|
57981
|
-
},{"../../Decorators":
|
|
58195
|
+
},{"../../Decorators":219,"../Trees":343,"./XPath":352,"./XPathElement":353}],362:[function(require,module,exports){
|
|
57982
58196
|
(function (global){(function (){
|
|
57983
58197
|
'use strict';
|
|
57984
58198
|
|
|
@@ -58488,7 +58702,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
58488
58702
|
};
|
|
58489
58703
|
|
|
58490
58704
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
58491
|
-
},{"object.assign/polyfill":
|
|
58705
|
+
},{"object.assign/polyfill":419,"util/":365}],363:[function(require,module,exports){
|
|
58492
58706
|
if (typeof Object.create === 'function') {
|
|
58493
58707
|
// implementation from standard node.js 'util' module
|
|
58494
58708
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -58513,14 +58727,14 @@ if (typeof Object.create === 'function') {
|
|
|
58513
58727
|
}
|
|
58514
58728
|
}
|
|
58515
58729
|
|
|
58516
|
-
},{}],
|
|
58730
|
+
},{}],364:[function(require,module,exports){
|
|
58517
58731
|
module.exports = function isBuffer(arg) {
|
|
58518
58732
|
return arg && typeof arg === 'object'
|
|
58519
58733
|
&& typeof arg.copy === 'function'
|
|
58520
58734
|
&& typeof arg.fill === 'function'
|
|
58521
58735
|
&& typeof arg.readUInt8 === 'function';
|
|
58522
58736
|
}
|
|
58523
|
-
},{}],
|
|
58737
|
+
},{}],365:[function(require,module,exports){
|
|
58524
58738
|
(function (process,global){(function (){
|
|
58525
58739
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
58526
58740
|
//
|
|
@@ -59110,7 +59324,7 @@ function hasOwnProperty(obj, prop) {
|
|
|
59110
59324
|
}
|
|
59111
59325
|
|
|
59112
59326
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
59113
|
-
},{"./support/isBuffer":
|
|
59327
|
+
},{"./support/isBuffer":364,"_process":421,"inherits":363}],366:[function(require,module,exports){
|
|
59114
59328
|
(function (global){(function (){
|
|
59115
59329
|
'use strict';
|
|
59116
59330
|
|
|
@@ -59131,7 +59345,7 @@ module.exports = function availableTypedArrays() {
|
|
|
59131
59345
|
};
|
|
59132
59346
|
|
|
59133
59347
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
59134
|
-
},{"possible-typed-array-names":
|
|
59348
|
+
},{"possible-typed-array-names":420}],367:[function(require,module,exports){
|
|
59135
59349
|
(function (process,global){(function (){
|
|
59136
59350
|
module.exports = process.hrtime || hrtime
|
|
59137
59351
|
|
|
@@ -59162,7 +59376,7 @@ function hrtime(previousTimestamp){
|
|
|
59162
59376
|
return [seconds,nanoseconds]
|
|
59163
59377
|
}
|
|
59164
59378
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
59165
|
-
},{"_process":
|
|
59379
|
+
},{"_process":421}],368:[function(require,module,exports){
|
|
59166
59380
|
'use strict';
|
|
59167
59381
|
|
|
59168
59382
|
var bind = require('function-bind');
|
|
@@ -59174,7 +59388,7 @@ var $reflectApply = require('./reflectApply');
|
|
|
59174
59388
|
/** @type {import('./actualApply')} */
|
|
59175
59389
|
module.exports = $reflectApply || bind.call($call, $apply);
|
|
59176
59390
|
|
|
59177
|
-
},{"./functionApply":
|
|
59391
|
+
},{"./functionApply":370,"./functionCall":371,"./reflectApply":373,"function-bind":389}],369:[function(require,module,exports){
|
|
59178
59392
|
'use strict';
|
|
59179
59393
|
|
|
59180
59394
|
var bind = require('function-bind');
|
|
@@ -59186,19 +59400,19 @@ module.exports = function applyBind() {
|
|
|
59186
59400
|
return actualApply(bind, $apply, arguments);
|
|
59187
59401
|
};
|
|
59188
59402
|
|
|
59189
|
-
},{"./actualApply":
|
|
59403
|
+
},{"./actualApply":368,"./functionApply":370,"function-bind":389}],370:[function(require,module,exports){
|
|
59190
59404
|
'use strict';
|
|
59191
59405
|
|
|
59192
59406
|
/** @type {import('./functionApply')} */
|
|
59193
59407
|
module.exports = Function.prototype.apply;
|
|
59194
59408
|
|
|
59195
|
-
},{}],
|
|
59409
|
+
},{}],371:[function(require,module,exports){
|
|
59196
59410
|
'use strict';
|
|
59197
59411
|
|
|
59198
59412
|
/** @type {import('./functionCall')} */
|
|
59199
59413
|
module.exports = Function.prototype.call;
|
|
59200
59414
|
|
|
59201
|
-
},{}],
|
|
59415
|
+
},{}],372:[function(require,module,exports){
|
|
59202
59416
|
'use strict';
|
|
59203
59417
|
|
|
59204
59418
|
var bind = require('function-bind');
|
|
@@ -59215,13 +59429,13 @@ module.exports = function callBindBasic(args) {
|
|
|
59215
59429
|
return $actualApply(bind, $call, args);
|
|
59216
59430
|
};
|
|
59217
59431
|
|
|
59218
|
-
},{"./actualApply":
|
|
59432
|
+
},{"./actualApply":368,"./functionCall":371,"es-errors/type":384,"function-bind":389}],373:[function(require,module,exports){
|
|
59219
59433
|
'use strict';
|
|
59220
59434
|
|
|
59221
59435
|
/** @type {import('./reflectApply')} */
|
|
59222
59436
|
module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
|
|
59223
59437
|
|
|
59224
|
-
},{}],
|
|
59438
|
+
},{}],374:[function(require,module,exports){
|
|
59225
59439
|
'use strict';
|
|
59226
59440
|
|
|
59227
59441
|
var setFunctionLength = require('set-function-length');
|
|
@@ -59247,7 +59461,7 @@ if ($defineProperty) {
|
|
|
59247
59461
|
module.exports.apply = applyBind;
|
|
59248
59462
|
}
|
|
59249
59463
|
|
|
59250
|
-
},{"call-bind-apply-helpers":
|
|
59464
|
+
},{"call-bind-apply-helpers":372,"call-bind-apply-helpers/applyBind":369,"es-define-property":378,"set-function-length":423}],375:[function(require,module,exports){
|
|
59251
59465
|
'use strict';
|
|
59252
59466
|
|
|
59253
59467
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -59268,7 +59482,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
59268
59482
|
return intrinsic;
|
|
59269
59483
|
};
|
|
59270
59484
|
|
|
59271
|
-
},{"call-bind-apply-helpers":
|
|
59485
|
+
},{"call-bind-apply-helpers":372,"get-intrinsic":390}],376:[function(require,module,exports){
|
|
59272
59486
|
'use strict';
|
|
59273
59487
|
|
|
59274
59488
|
var $defineProperty = require('es-define-property');
|
|
@@ -59326,7 +59540,7 @@ module.exports = function defineDataProperty(
|
|
|
59326
59540
|
}
|
|
59327
59541
|
};
|
|
59328
59542
|
|
|
59329
|
-
},{"es-define-property":
|
|
59543
|
+
},{"es-define-property":378,"es-errors/syntax":383,"es-errors/type":384,"gopd":395}],377:[function(require,module,exports){
|
|
59330
59544
|
'use strict';
|
|
59331
59545
|
|
|
59332
59546
|
var callBind = require('call-bind-apply-helpers');
|
|
@@ -59358,7 +59572,7 @@ module.exports = desc && typeof desc.get === 'function'
|
|
|
59358
59572
|
}
|
|
59359
59573
|
: false;
|
|
59360
59574
|
|
|
59361
|
-
},{"call-bind-apply-helpers":
|
|
59575
|
+
},{"call-bind-apply-helpers":372,"gopd":395}],378:[function(require,module,exports){
|
|
59362
59576
|
'use strict';
|
|
59363
59577
|
|
|
59364
59578
|
/** @type {import('.')} */
|
|
@@ -59374,55 +59588,55 @@ if ($defineProperty) {
|
|
|
59374
59588
|
|
|
59375
59589
|
module.exports = $defineProperty;
|
|
59376
59590
|
|
|
59377
|
-
},{}],
|
|
59591
|
+
},{}],379:[function(require,module,exports){
|
|
59378
59592
|
'use strict';
|
|
59379
59593
|
|
|
59380
59594
|
/** @type {import('./eval')} */
|
|
59381
59595
|
module.exports = EvalError;
|
|
59382
59596
|
|
|
59383
|
-
},{}],
|
|
59597
|
+
},{}],380:[function(require,module,exports){
|
|
59384
59598
|
'use strict';
|
|
59385
59599
|
|
|
59386
59600
|
/** @type {import('.')} */
|
|
59387
59601
|
module.exports = Error;
|
|
59388
59602
|
|
|
59389
|
-
},{}],
|
|
59603
|
+
},{}],381:[function(require,module,exports){
|
|
59390
59604
|
'use strict';
|
|
59391
59605
|
|
|
59392
59606
|
/** @type {import('./range')} */
|
|
59393
59607
|
module.exports = RangeError;
|
|
59394
59608
|
|
|
59395
|
-
},{}],
|
|
59609
|
+
},{}],382:[function(require,module,exports){
|
|
59396
59610
|
'use strict';
|
|
59397
59611
|
|
|
59398
59612
|
/** @type {import('./ref')} */
|
|
59399
59613
|
module.exports = ReferenceError;
|
|
59400
59614
|
|
|
59401
|
-
},{}],
|
|
59615
|
+
},{}],383:[function(require,module,exports){
|
|
59402
59616
|
'use strict';
|
|
59403
59617
|
|
|
59404
59618
|
/** @type {import('./syntax')} */
|
|
59405
59619
|
module.exports = SyntaxError;
|
|
59406
59620
|
|
|
59407
|
-
},{}],
|
|
59621
|
+
},{}],384:[function(require,module,exports){
|
|
59408
59622
|
'use strict';
|
|
59409
59623
|
|
|
59410
59624
|
/** @type {import('./type')} */
|
|
59411
59625
|
module.exports = TypeError;
|
|
59412
59626
|
|
|
59413
|
-
},{}],
|
|
59627
|
+
},{}],385:[function(require,module,exports){
|
|
59414
59628
|
'use strict';
|
|
59415
59629
|
|
|
59416
59630
|
/** @type {import('./uri')} */
|
|
59417
59631
|
module.exports = URIError;
|
|
59418
59632
|
|
|
59419
|
-
},{}],
|
|
59633
|
+
},{}],386:[function(require,module,exports){
|
|
59420
59634
|
'use strict';
|
|
59421
59635
|
|
|
59422
59636
|
/** @type {import('.')} */
|
|
59423
59637
|
module.exports = Object;
|
|
59424
59638
|
|
|
59425
|
-
},{}],
|
|
59639
|
+
},{}],387:[function(require,module,exports){
|
|
59426
59640
|
'use strict';
|
|
59427
59641
|
|
|
59428
59642
|
var isCallable = require('is-callable');
|
|
@@ -59493,7 +59707,7 @@ module.exports = function forEach(list, iterator, thisArg) {
|
|
|
59493
59707
|
}
|
|
59494
59708
|
};
|
|
59495
59709
|
|
|
59496
|
-
},{"is-callable":
|
|
59710
|
+
},{"is-callable":403}],388:[function(require,module,exports){
|
|
59497
59711
|
'use strict';
|
|
59498
59712
|
|
|
59499
59713
|
/* eslint no-invalid-this: 1 */
|
|
@@ -59579,14 +59793,14 @@ module.exports = function bind(that) {
|
|
|
59579
59793
|
return bound;
|
|
59580
59794
|
};
|
|
59581
59795
|
|
|
59582
|
-
},{}],
|
|
59796
|
+
},{}],389:[function(require,module,exports){
|
|
59583
59797
|
'use strict';
|
|
59584
59798
|
|
|
59585
59799
|
var implementation = require('./implementation');
|
|
59586
59800
|
|
|
59587
59801
|
module.exports = Function.prototype.bind || implementation;
|
|
59588
59802
|
|
|
59589
|
-
},{"./implementation":
|
|
59803
|
+
},{"./implementation":388}],390:[function(require,module,exports){
|
|
59590
59804
|
'use strict';
|
|
59591
59805
|
|
|
59592
59806
|
var undefined;
|
|
@@ -59966,7 +60180,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
59966
60180
|
return value;
|
|
59967
60181
|
};
|
|
59968
60182
|
|
|
59969
|
-
},{"call-bind-apply-helpers/functionApply":
|
|
60183
|
+
},{"call-bind-apply-helpers/functionApply":370,"call-bind-apply-helpers/functionCall":371,"es-define-property":378,"es-errors":380,"es-errors/eval":379,"es-errors/range":381,"es-errors/ref":382,"es-errors/syntax":383,"es-errors/type":384,"es-errors/uri":385,"es-object-atoms":386,"function-bind":389,"get-proto":393,"get-proto/Object.getPrototypeOf":391,"get-proto/Reflect.getPrototypeOf":392,"gopd":395,"has-symbols":397,"hasown":400,"math-intrinsics/abs":407,"math-intrinsics/floor":408,"math-intrinsics/max":410,"math-intrinsics/min":411,"math-intrinsics/pow":412,"math-intrinsics/round":413,"math-intrinsics/sign":414}],391:[function(require,module,exports){
|
|
59970
60184
|
'use strict';
|
|
59971
60185
|
|
|
59972
60186
|
var $Object = require('es-object-atoms');
|
|
@@ -59974,13 +60188,13 @@ var $Object = require('es-object-atoms');
|
|
|
59974
60188
|
/** @type {import('./Object.getPrototypeOf')} */
|
|
59975
60189
|
module.exports = $Object.getPrototypeOf || null;
|
|
59976
60190
|
|
|
59977
|
-
},{"es-object-atoms":
|
|
60191
|
+
},{"es-object-atoms":386}],392:[function(require,module,exports){
|
|
59978
60192
|
'use strict';
|
|
59979
60193
|
|
|
59980
60194
|
/** @type {import('./Reflect.getPrototypeOf')} */
|
|
59981
60195
|
module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
|
|
59982
60196
|
|
|
59983
|
-
},{}],
|
|
60197
|
+
},{}],393:[function(require,module,exports){
|
|
59984
60198
|
'use strict';
|
|
59985
60199
|
|
|
59986
60200
|
var reflectGetProto = require('./Reflect.getPrototypeOf');
|
|
@@ -60009,13 +60223,13 @@ module.exports = reflectGetProto
|
|
|
60009
60223
|
}
|
|
60010
60224
|
: null;
|
|
60011
60225
|
|
|
60012
|
-
},{"./Object.getPrototypeOf":
|
|
60226
|
+
},{"./Object.getPrototypeOf":391,"./Reflect.getPrototypeOf":392,"dunder-proto/get":377}],394:[function(require,module,exports){
|
|
60013
60227
|
'use strict';
|
|
60014
60228
|
|
|
60015
60229
|
/** @type {import('./gOPD')} */
|
|
60016
60230
|
module.exports = Object.getOwnPropertyDescriptor;
|
|
60017
60231
|
|
|
60018
|
-
},{}],
|
|
60232
|
+
},{}],395:[function(require,module,exports){
|
|
60019
60233
|
'use strict';
|
|
60020
60234
|
|
|
60021
60235
|
/** @type {import('.')} */
|
|
@@ -60032,7 +60246,7 @@ if ($gOPD) {
|
|
|
60032
60246
|
|
|
60033
60247
|
module.exports = $gOPD;
|
|
60034
60248
|
|
|
60035
|
-
},{"./gOPD":
|
|
60249
|
+
},{"./gOPD":394}],396:[function(require,module,exports){
|
|
60036
60250
|
'use strict';
|
|
60037
60251
|
|
|
60038
60252
|
var $defineProperty = require('es-define-property');
|
|
@@ -60056,7 +60270,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
|
|
|
60056
60270
|
|
|
60057
60271
|
module.exports = hasPropertyDescriptors;
|
|
60058
60272
|
|
|
60059
|
-
},{"es-define-property":
|
|
60273
|
+
},{"es-define-property":378}],397:[function(require,module,exports){
|
|
60060
60274
|
'use strict';
|
|
60061
60275
|
|
|
60062
60276
|
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
|
@@ -60072,7 +60286,7 @@ module.exports = function hasNativeSymbols() {
|
|
|
60072
60286
|
return hasSymbolSham();
|
|
60073
60287
|
};
|
|
60074
60288
|
|
|
60075
|
-
},{"./shams":
|
|
60289
|
+
},{"./shams":398}],398:[function(require,module,exports){
|
|
60076
60290
|
'use strict';
|
|
60077
60291
|
|
|
60078
60292
|
/** @type {import('./shams')} */
|
|
@@ -60119,7 +60333,7 @@ module.exports = function hasSymbols() {
|
|
|
60119
60333
|
return true;
|
|
60120
60334
|
};
|
|
60121
60335
|
|
|
60122
|
-
},{}],
|
|
60336
|
+
},{}],399:[function(require,module,exports){
|
|
60123
60337
|
'use strict';
|
|
60124
60338
|
|
|
60125
60339
|
var hasSymbols = require('has-symbols/shams');
|
|
@@ -60129,7 +60343,7 @@ module.exports = function hasToStringTagShams() {
|
|
|
60129
60343
|
return hasSymbols() && !!Symbol.toStringTag;
|
|
60130
60344
|
};
|
|
60131
60345
|
|
|
60132
|
-
},{"has-symbols/shams":
|
|
60346
|
+
},{"has-symbols/shams":398}],400:[function(require,module,exports){
|
|
60133
60347
|
'use strict';
|
|
60134
60348
|
|
|
60135
60349
|
var call = Function.prototype.call;
|
|
@@ -60139,7 +60353,7 @@ var bind = require('function-bind');
|
|
|
60139
60353
|
/** @type {import('.')} */
|
|
60140
60354
|
module.exports = bind.call(call, $hasOwn);
|
|
60141
60355
|
|
|
60142
|
-
},{"function-bind":
|
|
60356
|
+
},{"function-bind":389}],401:[function(require,module,exports){
|
|
60143
60357
|
if (typeof Object.create === 'function') {
|
|
60144
60358
|
// implementation from standard node.js 'util' module
|
|
60145
60359
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -60168,7 +60382,7 @@ if (typeof Object.create === 'function') {
|
|
|
60168
60382
|
}
|
|
60169
60383
|
}
|
|
60170
60384
|
|
|
60171
|
-
},{}],
|
|
60385
|
+
},{}],402:[function(require,module,exports){
|
|
60172
60386
|
'use strict';
|
|
60173
60387
|
|
|
60174
60388
|
var hasToStringTag = require('has-tostringtag/shams')();
|
|
@@ -60214,7 +60428,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
|
60214
60428
|
/** @type {import('.')} */
|
|
60215
60429
|
module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
60216
60430
|
|
|
60217
|
-
},{"call-bound":
|
|
60431
|
+
},{"call-bound":375,"has-tostringtag/shams":399}],403:[function(require,module,exports){
|
|
60218
60432
|
'use strict';
|
|
60219
60433
|
|
|
60220
60434
|
var fnToStr = Function.prototype.toString;
|
|
@@ -60317,7 +60531,7 @@ module.exports = reflectApply
|
|
|
60317
60531
|
return tryFunctionObject(value);
|
|
60318
60532
|
};
|
|
60319
60533
|
|
|
60320
|
-
},{}],
|
|
60534
|
+
},{}],404:[function(require,module,exports){
|
|
60321
60535
|
'use strict';
|
|
60322
60536
|
|
|
60323
60537
|
var callBound = require('call-bound');
|
|
@@ -60366,7 +60580,7 @@ module.exports = function isGeneratorFunction(fn) {
|
|
|
60366
60580
|
return getProto(fn) === GeneratorFunction;
|
|
60367
60581
|
};
|
|
60368
60582
|
|
|
60369
|
-
},{"call-bound":
|
|
60583
|
+
},{"call-bound":375,"get-proto":393,"has-tostringtag/shams":399,"safe-regex-test":422}],405:[function(require,module,exports){
|
|
60370
60584
|
'use strict';
|
|
60371
60585
|
|
|
60372
60586
|
var callBound = require('call-bound');
|
|
@@ -60437,7 +60651,7 @@ if (hasToStringTag) {
|
|
|
60437
60651
|
|
|
60438
60652
|
module.exports = fn;
|
|
60439
60653
|
|
|
60440
|
-
},{"call-bound":
|
|
60654
|
+
},{"call-bound":375,"gopd":395,"has-tostringtag/shams":399,"hasown":400}],406:[function(require,module,exports){
|
|
60441
60655
|
'use strict';
|
|
60442
60656
|
|
|
60443
60657
|
var whichTypedArray = require('which-typed-array');
|
|
@@ -60447,19 +60661,19 @@ module.exports = function isTypedArray(value) {
|
|
|
60447
60661
|
return !!whichTypedArray(value);
|
|
60448
60662
|
};
|
|
60449
60663
|
|
|
60450
|
-
},{"which-typed-array":
|
|
60664
|
+
},{"which-typed-array":427}],407:[function(require,module,exports){
|
|
60451
60665
|
'use strict';
|
|
60452
60666
|
|
|
60453
60667
|
/** @type {import('./abs')} */
|
|
60454
60668
|
module.exports = Math.abs;
|
|
60455
60669
|
|
|
60456
|
-
},{}],
|
|
60670
|
+
},{}],408:[function(require,module,exports){
|
|
60457
60671
|
'use strict';
|
|
60458
60672
|
|
|
60459
60673
|
/** @type {import('./floor')} */
|
|
60460
60674
|
module.exports = Math.floor;
|
|
60461
60675
|
|
|
60462
|
-
},{}],
|
|
60676
|
+
},{}],409:[function(require,module,exports){
|
|
60463
60677
|
'use strict';
|
|
60464
60678
|
|
|
60465
60679
|
/** @type {import('./isNaN')} */
|
|
@@ -60467,31 +60681,31 @@ module.exports = Number.isNaN || function isNaN(a) {
|
|
|
60467
60681
|
return a !== a;
|
|
60468
60682
|
};
|
|
60469
60683
|
|
|
60470
|
-
},{}],
|
|
60684
|
+
},{}],410:[function(require,module,exports){
|
|
60471
60685
|
'use strict';
|
|
60472
60686
|
|
|
60473
60687
|
/** @type {import('./max')} */
|
|
60474
60688
|
module.exports = Math.max;
|
|
60475
60689
|
|
|
60476
|
-
},{}],
|
|
60690
|
+
},{}],411:[function(require,module,exports){
|
|
60477
60691
|
'use strict';
|
|
60478
60692
|
|
|
60479
60693
|
/** @type {import('./min')} */
|
|
60480
60694
|
module.exports = Math.min;
|
|
60481
60695
|
|
|
60482
|
-
},{}],
|
|
60696
|
+
},{}],412:[function(require,module,exports){
|
|
60483
60697
|
'use strict';
|
|
60484
60698
|
|
|
60485
60699
|
/** @type {import('./pow')} */
|
|
60486
60700
|
module.exports = Math.pow;
|
|
60487
60701
|
|
|
60488
|
-
},{}],
|
|
60702
|
+
},{}],413:[function(require,module,exports){
|
|
60489
60703
|
'use strict';
|
|
60490
60704
|
|
|
60491
60705
|
/** @type {import('./round')} */
|
|
60492
60706
|
module.exports = Math.round;
|
|
60493
60707
|
|
|
60494
|
-
},{}],
|
|
60708
|
+
},{}],414:[function(require,module,exports){
|
|
60495
60709
|
'use strict';
|
|
60496
60710
|
|
|
60497
60711
|
var $isNaN = require('./isNaN');
|
|
@@ -60504,7 +60718,7 @@ module.exports = function sign(number) {
|
|
|
60504
60718
|
return number < 0 ? -1 : +1;
|
|
60505
60719
|
};
|
|
60506
60720
|
|
|
60507
|
-
},{"./isNaN":
|
|
60721
|
+
},{"./isNaN":409}],415:[function(require,module,exports){
|
|
60508
60722
|
'use strict';
|
|
60509
60723
|
|
|
60510
60724
|
var keysShim;
|
|
@@ -60628,7 +60842,7 @@ if (!Object.keys) {
|
|
|
60628
60842
|
}
|
|
60629
60843
|
module.exports = keysShim;
|
|
60630
60844
|
|
|
60631
|
-
},{"./isArguments":
|
|
60845
|
+
},{"./isArguments":417}],416:[function(require,module,exports){
|
|
60632
60846
|
'use strict';
|
|
60633
60847
|
|
|
60634
60848
|
var slice = Array.prototype.slice;
|
|
@@ -60662,7 +60876,7 @@ keysShim.shim = function shimObjectKeys() {
|
|
|
60662
60876
|
|
|
60663
60877
|
module.exports = keysShim;
|
|
60664
60878
|
|
|
60665
|
-
},{"./implementation":
|
|
60879
|
+
},{"./implementation":415,"./isArguments":417}],417:[function(require,module,exports){
|
|
60666
60880
|
'use strict';
|
|
60667
60881
|
|
|
60668
60882
|
var toStr = Object.prototype.toString;
|
|
@@ -60681,7 +60895,7 @@ module.exports = function isArguments(value) {
|
|
|
60681
60895
|
return isArgs;
|
|
60682
60896
|
};
|
|
60683
60897
|
|
|
60684
|
-
},{}],
|
|
60898
|
+
},{}],418:[function(require,module,exports){
|
|
60685
60899
|
'use strict';
|
|
60686
60900
|
|
|
60687
60901
|
// modified from https://github.com/es-shims/es6-shim
|
|
@@ -60729,7 +60943,7 @@ module.exports = function assign(target, source1) {
|
|
|
60729
60943
|
return to; // step 4
|
|
60730
60944
|
};
|
|
60731
60945
|
|
|
60732
|
-
},{"call-bound":
|
|
60946
|
+
},{"call-bound":375,"es-object-atoms":386,"has-symbols/shams":398,"object-keys":416}],419:[function(require,module,exports){
|
|
60733
60947
|
'use strict';
|
|
60734
60948
|
|
|
60735
60949
|
var implementation = require('./implementation');
|
|
@@ -60786,7 +61000,7 @@ module.exports = function getPolyfill() {
|
|
|
60786
61000
|
return Object.assign;
|
|
60787
61001
|
};
|
|
60788
61002
|
|
|
60789
|
-
},{"./implementation":
|
|
61003
|
+
},{"./implementation":418}],420:[function(require,module,exports){
|
|
60790
61004
|
'use strict';
|
|
60791
61005
|
|
|
60792
61006
|
/** @type {import('.')} */
|
|
@@ -60805,7 +61019,7 @@ module.exports = [
|
|
|
60805
61019
|
'BigUint64Array'
|
|
60806
61020
|
];
|
|
60807
61021
|
|
|
60808
|
-
},{}],
|
|
61022
|
+
},{}],421:[function(require,module,exports){
|
|
60809
61023
|
// shim for using process in browser
|
|
60810
61024
|
var process = module.exports = {};
|
|
60811
61025
|
|
|
@@ -60991,7 +61205,7 @@ process.chdir = function (dir) {
|
|
|
60991
61205
|
};
|
|
60992
61206
|
process.umask = function() { return 0; };
|
|
60993
61207
|
|
|
60994
|
-
},{}],
|
|
61208
|
+
},{}],422:[function(require,module,exports){
|
|
60995
61209
|
'use strict';
|
|
60996
61210
|
|
|
60997
61211
|
var callBound = require('call-bound');
|
|
@@ -61010,7 +61224,7 @@ module.exports = function regexTester(regex) {
|
|
|
61010
61224
|
};
|
|
61011
61225
|
};
|
|
61012
61226
|
|
|
61013
|
-
},{"call-bound":
|
|
61227
|
+
},{"call-bound":375,"es-errors/type":384,"is-regex":405}],423:[function(require,module,exports){
|
|
61014
61228
|
'use strict';
|
|
61015
61229
|
|
|
61016
61230
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -61054,9 +61268,9 @@ module.exports = function setFunctionLength(fn, length) {
|
|
|
61054
61268
|
return fn;
|
|
61055
61269
|
};
|
|
61056
61270
|
|
|
61057
|
-
},{"define-data-property":
|
|
61058
|
-
arguments[4][
|
|
61059
|
-
},{"dup":
|
|
61271
|
+
},{"define-data-property":376,"es-errors/type":384,"get-intrinsic":390,"gopd":395,"has-property-descriptors":396}],424:[function(require,module,exports){
|
|
61272
|
+
arguments[4][364][0].apply(exports,arguments)
|
|
61273
|
+
},{"dup":364}],425:[function(require,module,exports){
|
|
61060
61274
|
// Currently in sync with Node.js lib/internal/util/types.js
|
|
61061
61275
|
// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
|
|
61062
61276
|
|
|
@@ -61392,7 +61606,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
|
|
|
61392
61606
|
});
|
|
61393
61607
|
});
|
|
61394
61608
|
|
|
61395
|
-
},{"is-arguments":
|
|
61609
|
+
},{"is-arguments":402,"is-generator-function":404,"is-typed-array":406,"which-typed-array":427}],426:[function(require,module,exports){
|
|
61396
61610
|
(function (process){(function (){
|
|
61397
61611
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
61398
61612
|
//
|
|
@@ -62111,7 +62325,7 @@ function callbackify(original) {
|
|
|
62111
62325
|
exports.callbackify = callbackify;
|
|
62112
62326
|
|
|
62113
62327
|
}).call(this)}).call(this,require('_process'))
|
|
62114
|
-
},{"./support/isBuffer":
|
|
62328
|
+
},{"./support/isBuffer":424,"./support/types":425,"_process":421,"inherits":401}],427:[function(require,module,exports){
|
|
62115
62329
|
(function (global){(function (){
|
|
62116
62330
|
'use strict';
|
|
62117
62331
|
|
|
@@ -62232,5 +62446,5 @@ module.exports = function whichTypedArray(value) {
|
|
|
62232
62446
|
};
|
|
62233
62447
|
|
|
62234
62448
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
62235
|
-
},{"available-typed-arrays":
|
|
62449
|
+
},{"available-typed-arrays":366,"call-bind":374,"call-bound":375,"for-each":387,"get-proto":393,"gopd":395,"has-tostringtag/shams":399}]},{},[115])(115)
|
|
62236
62450
|
});
|