@designliquido/delegua 1.26.0 → 1.26.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/analisador-semantico/analisador-semantico.d.ts +4 -1
- package/analisador-semantico/analisador-semantico.d.ts.map +1 -1
- package/analisador-semantico/analisador-semantico.js +36 -8
- package/analisador-semantico/analisador-semantico.js.map +1 -1
- package/analisador-semantico/dialetos/analisador-semantico-pitugues.d.ts.map +1 -1
- package/analisador-semantico/dialetos/analisador-semantico-pitugues.js +11 -12
- package/analisador-semantico/dialetos/analisador-semantico-pitugues.js.map +1 -1
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.d.ts.map +1 -1
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.js +14 -12
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.js.map +1 -1
- package/avaliador-sintatico/dialetos/micro-avaliador-sintatico-pitugues.d.ts.map +1 -1
- package/avaliador-sintatico/dialetos/micro-avaliador-sintatico-pitugues.js +5 -3
- package/avaliador-sintatico/dialetos/micro-avaliador-sintatico-pitugues.js.map +1 -1
- package/bibliotecas/dialetos/pitugues/biblioteca-global.d.ts.map +1 -1
- package/bibliotecas/dialetos/pitugues/biblioteca-global.js +1 -1
- package/bibliotecas/dialetos/pitugues/biblioteca-global.js.map +1 -1
- package/bibliotecas/dialetos/pitugues/primitivas-numero.js +6 -6
- package/bibliotecas/dialetos/pitugues/primitivas-numero.js.map +1 -1
- package/bibliotecas/dialetos/pitugues/primitivas-texto.js +5 -5
- package/bibliotecas/dialetos/pitugues/primitivas-texto.js.map +1 -1
- package/bibliotecas/dialetos/pitugues/primitivas-vetor.d.ts.map +1 -1
- package/bibliotecas/dialetos/pitugues/primitivas-vetor.js +3 -3
- package/bibliotecas/dialetos/pitugues/primitivas-vetor.js.map +1 -1
- package/bin/package.json +1 -1
- package/excecoes/index.d.ts +1 -0
- package/excecoes/index.d.ts.map +1 -1
- package/excecoes/index.js +1 -0
- package/excecoes/index.js.map +1 -1
- package/excecoes/mensagem-erro.d.ts +17 -0
- package/excecoes/mensagem-erro.d.ts.map +1 -0
- package/excecoes/mensagem-erro.js +31 -0
- package/excecoes/mensagem-erro.js.map +1 -0
- package/interpretador/depuracao/avaliador-expressao-depuracao.d.ts.map +1 -1
- package/interpretador/depuracao/avaliador-expressao-depuracao.js +2 -1
- package/interpretador/depuracao/avaliador-expressao-depuracao.js.map +1 -1
- package/interpretador/depuracao/comum.d.ts.map +1 -1
- package/interpretador/depuracao/comum.js +6 -1
- package/interpretador/depuracao/comum.js.map +1 -1
- package/interpretador/dialetos/pitugues/comum.d.ts +3 -3
- package/interpretador/dialetos/pitugues/comum.d.ts.map +1 -1
- package/interpretador/dialetos/pitugues/comum.js +18 -4
- package/interpretador/dialetos/pitugues/comum.js.map +1 -1
- package/interpretador/dialetos/pitugues/interpretador-pitugues.js +2 -2
- package/interpretador/dialetos/pitugues/interpretador-pitugues.js.map +1 -1
- package/interpretador/interpretador-base.d.ts.map +1 -1
- package/interpretador/interpretador-base.js +2 -1
- package/interpretador/interpretador-base.js.map +1 -1
- package/interpretador/interpretador.js +3 -3
- package/interpretador/interpretador.js.map +1 -1
- package/lexador/lexador.d.ts.map +1 -1
- package/lexador/lexador.js.map +1 -1
- package/package.json +1 -1
- package/tipos-de-dados/dialetos/pitugues.d.ts +0 -4
- package/tipos-de-dados/dialetos/pitugues.d.ts.map +1 -1
- package/tipos-de-dados/dialetos/pitugues.js +0 -4
- package/tipos-de-dados/dialetos/pitugues.js.map +1 -1
- package/umd/delegua.js +483 -421
package/umd/delegua.js
CHANGED
|
@@ -498,7 +498,7 @@ class AnalisadorSemanticoBase {
|
|
|
498
498
|
}
|
|
499
499
|
exports.AnalisadorSemanticoBase = AnalisadorSemanticoBase;
|
|
500
500
|
|
|
501
|
-
},{"../construtos":67,"../declaracoes":117,"../interfaces":
|
|
501
|
+
},{"../construtos":67,"../declaracoes":117,"../interfaces":181,"../quebras":253,"./gerenciador-escopos":5,"./tabela-diagnosticos-semanticos":8}],2:[function(require,module,exports){
|
|
502
502
|
"use strict";
|
|
503
503
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
504
504
|
exports.AnalisadorSemantico = void 0;
|
|
@@ -525,10 +525,33 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
525
525
|
this.classesDeclaradas = new Set();
|
|
526
526
|
this.classesRegistradas = new Map();
|
|
527
527
|
this.classesExternasRegistradas = new Map();
|
|
528
|
+
this.funcoesImportadasDeTestes = new Set();
|
|
528
529
|
this.classeAtualEmAnalise = null;
|
|
529
530
|
this.atual = 0;
|
|
530
531
|
this.diagnosticos = [];
|
|
531
532
|
}
|
|
533
|
+
registrarFuncoesImportadasDeTestes(declaracao) {
|
|
534
|
+
const caminho = declaracao.caminho;
|
|
535
|
+
if (caminho?.valor !== 'testes') {
|
|
536
|
+
return;
|
|
537
|
+
}
|
|
538
|
+
const funcoesDoModulo = ['teste', 'grupo'];
|
|
539
|
+
if (declaracao.simboloTudo) {
|
|
540
|
+
for (const nome of funcoesDoModulo) {
|
|
541
|
+
this.funcoesImportadasDeTestes.add(nome);
|
|
542
|
+
}
|
|
543
|
+
return;
|
|
544
|
+
}
|
|
545
|
+
for (const simboloImportado of declaracao.elementosImportacao || []) {
|
|
546
|
+
if (funcoesDoModulo.includes(simboloImportado.lexema)) {
|
|
547
|
+
this.funcoesImportadasDeTestes.add(simboloImportado.lexema);
|
|
548
|
+
}
|
|
549
|
+
}
|
|
550
|
+
}
|
|
551
|
+
async visitarDeclaracaoImportar(declaracao) {
|
|
552
|
+
this.registrarFuncoesImportadasDeTestes(declaracao);
|
|
553
|
+
return Promise.resolve();
|
|
554
|
+
}
|
|
532
555
|
registrarClassesExternas(classes) {
|
|
533
556
|
for (const classe of classes) {
|
|
534
557
|
this.classesExternasRegistradas.set(classe.simbolo.lexema, classe);
|
|
@@ -671,6 +694,9 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
671
694
|
visitarChamadaPorVariavel(entidadeChamadaVariavel, argumentos) {
|
|
672
695
|
const variavel = entidadeChamadaVariavel;
|
|
673
696
|
const nomeFuncao = variavel.simbolo.lexema;
|
|
697
|
+
if (this.funcoesImportadasDeTestes.has(nomeFuncao)) {
|
|
698
|
+
return Promise.resolve();
|
|
699
|
+
}
|
|
674
700
|
const funcoesNativas = [
|
|
675
701
|
'aleatorio',
|
|
676
702
|
'aleatorioEntre',
|
|
@@ -982,7 +1008,7 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
982
1008
|
// O laço precisa visitar condição/incremento/corpo para registrar usos de variáveis.
|
|
983
1009
|
if (declaracao.condicao) {
|
|
984
1010
|
this.marcarVariaveisUsadasEmExpressao(declaracao.condicao);
|
|
985
|
-
await this.verificarCondicao(declaracao.condicao);
|
|
1011
|
+
await this.verificarCondicao(declaracao.condicao, 'para');
|
|
986
1012
|
}
|
|
987
1013
|
if (declaracao.incrementar) {
|
|
988
1014
|
this.marcarVariaveisUsadasEmExpressao(declaracao.incrementar);
|
|
@@ -1045,14 +1071,14 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
1045
1071
|
// Marca variáveis usadas na condição
|
|
1046
1072
|
this.marcarVariaveisUsadasEmExpressao(declaracao.condicao);
|
|
1047
1073
|
// Verifica a condição (incluindo validação de tipos para operadores lógicos)
|
|
1048
|
-
await this.verificarCondicao(declaracao.condicao);
|
|
1074
|
+
await this.verificarCondicao(declaracao.condicao, 'se');
|
|
1049
1075
|
if (declaracao.caminhoEntao) {
|
|
1050
1076
|
await declaracao.caminhoEntao.aceitar(this);
|
|
1051
1077
|
}
|
|
1052
1078
|
if (declaracao.caminhosSeSenao && declaracao.caminhosSeSenao.length > 0) {
|
|
1053
1079
|
for (const caminhoSeSenao of declaracao.caminhosSeSenao) {
|
|
1054
1080
|
this.marcarVariaveisUsadasEmExpressao(caminhoSeSenao.condicao);
|
|
1055
|
-
await this.verificarCondicao(caminhoSeSenao.condicao);
|
|
1081
|
+
await this.verificarCondicao(caminhoSeSenao.condicao, 'se');
|
|
1056
1082
|
await caminhoSeSenao.caminho.aceitar(this);
|
|
1057
1083
|
}
|
|
1058
1084
|
}
|
|
@@ -1082,12 +1108,12 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
1082
1108
|
return;
|
|
1083
1109
|
}
|
|
1084
1110
|
}
|
|
1085
|
-
verificarCondicao(condicao) {
|
|
1111
|
+
verificarCondicao(condicao, rotulo = 'enquanto') {
|
|
1086
1112
|
if (condicao instanceof construtos_1.Agrupamento) {
|
|
1087
|
-
return this.verificarCondicao(condicao.expressao);
|
|
1113
|
+
return this.verificarCondicao(condicao.expressao, rotulo);
|
|
1088
1114
|
}
|
|
1089
1115
|
if (condicao instanceof construtos_1.Variavel) {
|
|
1090
|
-
return this.verificarVariavelBinaria(condicao);
|
|
1116
|
+
return this.verificarVariavelBinaria(condicao, rotulo);
|
|
1091
1117
|
}
|
|
1092
1118
|
if (condicao instanceof construtos_1.Binario) {
|
|
1093
1119
|
return this.verificarBinario(condicao);
|
|
@@ -1100,13 +1126,14 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
1100
1126
|
}
|
|
1101
1127
|
return Promise.resolve();
|
|
1102
1128
|
}
|
|
1103
|
-
verificarVariavelBinaria(variavel) {
|
|
1129
|
+
verificarVariavelBinaria(variavel, rotulo = 'enquanto') {
|
|
1104
1130
|
this.verificarVariavel(variavel);
|
|
1105
1131
|
const variavelHipotetica = this.gerenciadorEscopos.buscar(variavel.simbolo.lexema);
|
|
1106
1132
|
if (variavelHipotetica &&
|
|
1133
|
+
variavelHipotetica.tipo !== 'lógico' &&
|
|
1107
1134
|
!(variavelHipotetica.valor instanceof construtos_1.Binario) &&
|
|
1108
1135
|
typeof variavelHipotetica.valor !== 'boolean') {
|
|
1109
|
-
this.erro(variavel.simbolo, `Esperado tipo 'lógico' na condição do '
|
|
1136
|
+
this.erro(variavel.simbolo, `Esperado tipo 'lógico' na condição do '${rotulo}'.`);
|
|
1110
1137
|
}
|
|
1111
1138
|
return Promise.resolve();
|
|
1112
1139
|
}
|
|
@@ -1875,6 +1902,7 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
1875
1902
|
this.gerenciadorEscopos = new gerenciador_escopos_1.GerenciadorEscopos();
|
|
1876
1903
|
this.classesDeclaradas = new Set(this.classesExternasRegistradas.keys());
|
|
1877
1904
|
this.classesRegistradas = new Map(this.classesExternasRegistradas);
|
|
1905
|
+
this.funcoesImportadasDeTestes = new Set();
|
|
1878
1906
|
this.classeAtualEmAnalise = null;
|
|
1879
1907
|
this.atual = 0;
|
|
1880
1908
|
this.diagnosticos = [];
|
|
@@ -1896,7 +1924,7 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
1896
1924
|
}
|
|
1897
1925
|
exports.AnalisadorSemantico = AnalisadorSemantico;
|
|
1898
1926
|
|
|
1899
|
-
},{"../avaliador-sintatico/comum":12,"../avaliador-sintatico/micro-avaliador-sintatico":25,"../construtos":67,"../declaracoes":117,"../interfaces/erros":
|
|
1927
|
+
},{"../avaliador-sintatico/comum":12,"../avaliador-sintatico/micro-avaliador-sintatico":25,"../construtos":67,"../declaracoes":117,"../interfaces/erros":178,"../lexador/micro-lexador":250,"./analisador-semantico-base":1,"./gerenciador-escopos":5,"./pilha-variaveis":7}],3:[function(require,module,exports){
|
|
1900
1928
|
"use strict";
|
|
1901
1929
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1902
1930
|
|
|
@@ -2108,7 +2136,7 @@ function inferirCodigoDiagnosticoSemantico(mensagem, severidade) {
|
|
|
2108
2136
|
return 'SEMANTICO_DIAGNOSTICO_GENERICO';
|
|
2109
2137
|
}
|
|
2110
2138
|
|
|
2111
|
-
},{"../interfaces":
|
|
2139
|
+
},{"../interfaces":181}],9:[function(require,module,exports){
|
|
2112
2140
|
"use strict";
|
|
2113
2141
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2114
2142
|
|
|
@@ -2399,7 +2427,7 @@ class AvaliadorSintaticoBase {
|
|
|
2399
2427
|
}
|
|
2400
2428
|
exports.AvaliadorSintaticoBase = AvaliadorSintaticoBase;
|
|
2401
2429
|
|
|
2402
|
-
},{"../construtos":67,"../declaracoes":117,"../tipos-de-simbolos/comum":
|
|
2430
|
+
},{"../construtos":67,"../declaracoes":117,"../tipos-de-simbolos/comum":258,"./erro-avaliador-sintatico":21}],11:[function(require,module,exports){
|
|
2403
2431
|
"use strict";
|
|
2404
2432
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
2405
2433
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -5617,7 +5645,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
5617
5645
|
}
|
|
5618
5646
|
exports.AvaliadorSintatico = AvaliadorSintatico;
|
|
5619
5647
|
|
|
5620
|
-
},{"../bibliotecas/primitivas-dicionario":31,"../bibliotecas/primitivas-numero":32,"../bibliotecas/primitivas-texto":33,"../bibliotecas/primitivas-vetor":34,"../construtos":67,"../construtos/tuplas":86,"../declaracoes":117,"../inferenciador":
|
|
5648
|
+
},{"../bibliotecas/primitivas-dicionario":31,"../bibliotecas/primitivas-numero":32,"../bibliotecas/primitivas-texto":33,"../bibliotecas/primitivas-vetor":34,"../construtos":67,"../construtos/tuplas":86,"../declaracoes":117,"../inferenciador":151,"../informacao-elemento-sintatico":152,"../lexador/simbolo":252,"../tipos-de-dados/delegua":254,"../tipos-de-simbolos/delegua":259,"./avaliador-sintatico-base":10,"./comum":12,"./elemento-montao-tipos":20,"./erro-avaliador-sintatico":21,"./informacao-escopo":23,"./montao-tipos":26,"./pilha-escopos":27,"browser-process-hrtime":452}],12:[function(require,module,exports){
|
|
5621
5649
|
"use strict";
|
|
5622
5650
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5623
5651
|
exports.buscarRetornos = buscarRetornos;
|
|
@@ -5732,7 +5760,7 @@ function registrarPrimitiva(primitivasConhecidas, tipo, catalogoPrimitivas) {
|
|
|
5732
5760
|
}
|
|
5733
5761
|
}
|
|
5734
5762
|
|
|
5735
|
-
},{"../declaracoes":117,"../informacao-elemento-sintatico":
|
|
5763
|
+
},{"../declaracoes":117,"../informacao-elemento-sintatico":152}],13:[function(require,module,exports){
|
|
5736
5764
|
"use strict";
|
|
5737
5765
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
5738
5766
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -6392,7 +6420,7 @@ class AvaliadorSintaticoEguaClassico {
|
|
|
6392
6420
|
}
|
|
6393
6421
|
exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
|
|
6394
6422
|
|
|
6395
|
-
},{"../../construtos":67,"../../declaracoes":117,"../../tipos-de-simbolos/egua-classico":
|
|
6423
|
+
},{"../../construtos":67,"../../declaracoes":117,"../../tipos-de-simbolos/egua-classico":260,"../erro-avaliador-sintatico":21}],14:[function(require,module,exports){
|
|
6396
6424
|
"use strict";
|
|
6397
6425
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
6398
6426
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -6441,7 +6469,8 @@ class AvaliadorSintaticoPitugues extends avaliador_sintatico_base_1.AvaliadorSin
|
|
|
6441
6469
|
this.tiposDefinidosEmCodigo = {};
|
|
6442
6470
|
this.tiposDefinidosPorBibliotecas = {};
|
|
6443
6471
|
(0, comum_1.registrarPrimitiva)(this.primitivasConhecidas, 'dicionário', primitivas_dicionario_1.default);
|
|
6444
|
-
(0, comum_1.registrarPrimitiva)(this.primitivasConhecidas, '
|
|
6472
|
+
(0, comum_1.registrarPrimitiva)(this.primitivasConhecidas, 'inteiro', primitivas_numero_1.default);
|
|
6473
|
+
(0, comum_1.registrarPrimitiva)(this.primitivasConhecidas, 'real', primitivas_numero_1.default);
|
|
6445
6474
|
(0, comum_1.registrarPrimitiva)(this.primitivasConhecidas, 'texto', primitivas_texto_1.default);
|
|
6446
6475
|
(0, comum_1.registrarPrimitiva)(this.primitivasConhecidas, 'vetor', primitivas_vetor_1.default);
|
|
6447
6476
|
(0, comum_1.registrarPrimitiva)(this.primitivasConhecidas, 'tupla', primitivas_tupla_1.default);
|
|
@@ -6702,7 +6731,7 @@ class AvaliadorSintaticoPitugues extends avaliador_sintatico_base_1.AvaliadorSin
|
|
|
6702
6731
|
construirValidacaoDesempacotamento(identificador, origem, qtdEsperada) {
|
|
6703
6732
|
const linha = identificador.linha;
|
|
6704
6733
|
const chamadaTamanho = new construtos_1.Chamada(this.hashArquivo, new construtos_1.Variavel(this.hashArquivo, new lexador_1.Simbolo(pitugues_2.default.IDENTIFICADOR, 'tamanho', null, linha, -1)), [origem]);
|
|
6705
|
-
const condicaoErro = new construtos_1.Binario(this.hashArquivo, chamadaTamanho, new lexador_1.Simbolo(pitugues_2.default.DIFERENTE, '!=', null, linha, -1), new construtos_1.Literal(this.hashArquivo, linha, qtdEsperada, '
|
|
6734
|
+
const condicaoErro = new construtos_1.Binario(this.hashArquivo, chamadaTamanho, new lexador_1.Simbolo(pitugues_2.default.DIFERENTE, '!=', null, linha, -1), new construtos_1.Literal(this.hashArquivo, linha, qtdEsperada, 'inteiro'));
|
|
6706
6735
|
const mensagem = `Erro de execução: Você tentou desempacotar em ${qtdEsperada} variáveis, mas o vetor possui tamanho diferente.`;
|
|
6707
6736
|
const falha = new declaracoes_1.Falhar(new lexador_1.Simbolo(pitugues_2.default.FALHAR, 'falhar', null, linha, -1), new construtos_1.Literal(this.hashArquivo, linha, mensagem, 'texto'));
|
|
6708
6737
|
return new declaracoes_1.Se(condicaoErro, new declaracoes_1.Bloco(this.hashArquivo, linha, [falha]), [], null);
|
|
@@ -6776,7 +6805,7 @@ class AvaliadorSintaticoPitugues extends avaliador_sintatico_base_1.AvaliadorSin
|
|
|
6776
6805
|
inicializador = vetorLiteral.valores[cursorDesempacotamento];
|
|
6777
6806
|
}
|
|
6778
6807
|
else {
|
|
6779
|
-
inicializador = new construtos_1.AcessoIndiceVariavel(this.hashArquivo, origemParaAtribuicao, new construtos_1.Literal(this.hashArquivo, identificador.linha, i, '
|
|
6808
|
+
inicializador = new construtos_1.AcessoIndiceVariavel(this.hashArquivo, origemParaAtribuicao, new construtos_1.Literal(this.hashArquivo, identificador.linha, i, 'inteiro'), new lexador_1.Simbolo(pitugues_2.default.COLCHETE_DIREITO, ']', null, identificador.linha, -1));
|
|
6780
6809
|
}
|
|
6781
6810
|
cursorDesempacotamento++;
|
|
6782
6811
|
}
|
|
@@ -6995,6 +7024,9 @@ class AvaliadorSintaticoPitugues extends avaliador_sintatico_base_1.AvaliadorSin
|
|
|
6995
7024
|
case pitugues_2.default.LEIA:
|
|
6996
7025
|
return await this.expressaoLeia();
|
|
6997
7026
|
case pitugues_2.default.NUMERO:
|
|
7027
|
+
const simboloNumero = this.avancarEDevolverAnterior();
|
|
7028
|
+
const tipoNumeroInferido = Number.isInteger(simboloNumero.literal) ? 'inteiro' : 'real';
|
|
7029
|
+
return new construtos_1.Literal(this.hashArquivo, Number(simboloNumero.linha), simboloNumero.literal, tipoNumeroInferido);
|
|
6998
7030
|
case pitugues_2.default.TEXTO:
|
|
6999
7031
|
const simboloLiteral = this.avancarEDevolverAnterior();
|
|
7000
7032
|
const tipoInferido = (0, inferenciador_1.inferirTipoVariavel)(simboloLiteral.literal);
|
|
@@ -7822,8 +7854,6 @@ class AvaliadorSintaticoPitugues extends avaliador_sintatico_base_1.AvaliadorSin
|
|
|
7822
7854
|
if (this.verificarTipoProximoSimbolo(pitugues_2.default.COLCHETE_ESQUERDO)) {
|
|
7823
7855
|
const tiposVetores = [
|
|
7824
7856
|
'inteiro[]',
|
|
7825
|
-
'numero[]',
|
|
7826
|
-
'número[]',
|
|
7827
7857
|
'qualquer[]',
|
|
7828
7858
|
'real[]',
|
|
7829
7859
|
'texto[]',
|
|
@@ -8131,10 +8161,10 @@ class AvaliadorSintaticoPitugues extends avaliador_sintatico_base_1.AvaliadorSin
|
|
|
8131
8161
|
this.pilhaEscopos = new pilha_escopos_1.PilhaEscopos();
|
|
8132
8162
|
this.pilhaEscopos.empilhar(new informacao_escopo_1.InformacaoEscopo());
|
|
8133
8163
|
// Funções nativas de Delégua (e de Pituguês também, por enquanto)
|
|
8134
|
-
this.pilhaEscopos.definirInformacoesVariavel('aleatorio', new informacao_elemento_sintatico_1.InformacaoElementoSintatico('aleatorio', '
|
|
8135
|
-
this.pilhaEscopos.definirInformacoesVariavel('aleatorio_entre', new informacao_elemento_sintatico_1.InformacaoElementoSintatico('aleatorio_entre', '
|
|
8136
|
-
new informacao_elemento_sintatico_1.InformacaoElementoSintatico('minimo', '
|
|
8137
|
-
new informacao_elemento_sintatico_1.InformacaoElementoSintatico('maximo', '
|
|
8164
|
+
this.pilhaEscopos.definirInformacoesVariavel('aleatorio', new informacao_elemento_sintatico_1.InformacaoElementoSintatico('aleatorio', 'real'));
|
|
8165
|
+
this.pilhaEscopos.definirInformacoesVariavel('aleatorio_entre', new informacao_elemento_sintatico_1.InformacaoElementoSintatico('aleatorio_entre', 'inteiro', true, [
|
|
8166
|
+
new informacao_elemento_sintatico_1.InformacaoElementoSintatico('minimo', 'inteiro'),
|
|
8167
|
+
new informacao_elemento_sintatico_1.InformacaoElementoSintatico('maximo', 'inteiro'),
|
|
8138
8168
|
]));
|
|
8139
8169
|
this.pilhaEscopos.definirInformacoesVariavel('algum', new informacao_elemento_sintatico_1.InformacaoElementoSintatico('algum', 'lógico', true, [
|
|
8140
8170
|
new informacao_elemento_sintatico_1.InformacaoElementoSintatico('iterável', 'qualquer'),
|
|
@@ -8166,7 +8196,7 @@ class AvaliadorSintaticoPitugues extends avaliador_sintatico_base_1.AvaliadorSin
|
|
|
8166
8196
|
]));
|
|
8167
8197
|
this.pilhaEscopos.definirInformacoesVariavel('enumerar', new informacao_elemento_sintatico_1.InformacaoElementoSintatico('intervalo', 'dicionario', true, [
|
|
8168
8198
|
new informacao_elemento_sintatico_1.InformacaoElementoSintatico('iteravel', 'qualquer'),
|
|
8169
|
-
new informacao_elemento_sintatico_1.InformacaoElementoSintatico('inicio', '
|
|
8199
|
+
new informacao_elemento_sintatico_1.InformacaoElementoSintatico('inicio', 'inteiro', false),
|
|
8170
8200
|
]));
|
|
8171
8201
|
this.pilhaEscopos.definirInformacoesVariavel('filtrar_por', new informacao_elemento_sintatico_1.InformacaoElementoSintatico('filtrar_por', 'qualquer[]', true, [
|
|
8172
8202
|
new informacao_elemento_sintatico_1.InformacaoElementoSintatico('iteravel', 'qualquer'),
|
|
@@ -8194,10 +8224,10 @@ class AvaliadorSintaticoPitugues extends avaliador_sintatico_base_1.AvaliadorSin
|
|
|
8194
8224
|
new informacao_elemento_sintatico_1.InformacaoElementoSintatico('iteravel', 'qualquer'),
|
|
8195
8225
|
new informacao_elemento_sintatico_1.InformacaoElementoSintatico('funcaoMapeamento', 'função'),
|
|
8196
8226
|
]));
|
|
8197
|
-
this.pilhaEscopos.definirInformacoesVariavel('maximo', new informacao_elemento_sintatico_1.InformacaoElementoSintatico('maximo', '
|
|
8227
|
+
this.pilhaEscopos.definirInformacoesVariavel('maximo', new informacao_elemento_sintatico_1.InformacaoElementoSintatico('maximo', 'real', true, [
|
|
8198
8228
|
new informacao_elemento_sintatico_1.InformacaoElementoSintatico('iteravel', 'qualquer'),
|
|
8199
8229
|
]));
|
|
8200
|
-
this.pilhaEscopos.definirInformacoesVariavel('minimo', new informacao_elemento_sintatico_1.InformacaoElementoSintatico('minimo', '
|
|
8230
|
+
this.pilhaEscopos.definirInformacoesVariavel('minimo', new informacao_elemento_sintatico_1.InformacaoElementoSintatico('minimo', 'real', true, [
|
|
8201
8231
|
new informacao_elemento_sintatico_1.InformacaoElementoSintatico('iteravel', 'qualquer'),
|
|
8202
8232
|
]));
|
|
8203
8233
|
this.pilhaEscopos.definirInformacoesVariavel('ordenar', new informacao_elemento_sintatico_1.InformacaoElementoSintatico('ordenar', 'qualquer[]', true, [
|
|
@@ -8292,7 +8322,7 @@ class AvaliadorSintaticoPitugues extends avaliador_sintatico_base_1.AvaliadorSin
|
|
|
8292
8322
|
}
|
|
8293
8323
|
exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
|
|
8294
8324
|
|
|
8295
|
-
},{"../../bibliotecas/dialetos/pitugues/primitivas-tupla":30,"../../bibliotecas/primitivas-dicionario":31,"../../bibliotecas/primitivas-numero":32,"../../bibliotecas/primitivas-texto":33,"../../bibliotecas/primitivas-vetor":34,"../../construtos":67,"../../declaracoes":117,"../../inferenciador":
|
|
8325
|
+
},{"../../bibliotecas/dialetos/pitugues/primitivas-tupla":30,"../../bibliotecas/primitivas-dicionario":31,"../../bibliotecas/primitivas-numero":32,"../../bibliotecas/primitivas-texto":33,"../../bibliotecas/primitivas-vetor":34,"../../construtos":67,"../../declaracoes":117,"../../inferenciador":151,"../../informacao-elemento-sintatico":152,"../../lexador":244,"../../lexador/micro-lexador-pitugues":249,"../../tipos-de-dados/dialetos/pitugues":255,"../../tipos-de-simbolos/pitugues":263,"../avaliador-sintatico-base":10,"../comum":12,"../erro-avaliador-sintatico":21,"../informacao-escopo":23,"../pilha-escopos":27,"./micro-avaliador-sintatico-pitugues":19,"browser-process-hrtime":452}],15:[function(require,module,exports){
|
|
8296
8326
|
"use strict";
|
|
8297
8327
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8298
8328
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -8840,7 +8870,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
|
|
|
8840
8870
|
}
|
|
8841
8871
|
exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
|
|
8842
8872
|
|
|
8843
|
-
},{"../../construtos":67,"../../declaracoes":117,"../../lexador/simbolo":
|
|
8873
|
+
},{"../../construtos":67,"../../declaracoes":117,"../../lexador/simbolo":252,"../../tipos-de-simbolos/portugol-ipt":264,"../avaliador-sintatico-base":10}],16:[function(require,module,exports){
|
|
8844
8874
|
"use strict";
|
|
8845
8875
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8846
8876
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -9807,7 +9837,7 @@ class AvaliadorSintaticoPrisma extends avaliador_sintatico_base_1.AvaliadorSinta
|
|
|
9807
9837
|
}
|
|
9808
9838
|
exports.AvaliadorSintaticoPrisma = AvaliadorSintaticoPrisma;
|
|
9809
9839
|
|
|
9810
|
-
},{"../../bibliotecas/primitivas-dicionario":31,"../../bibliotecas/primitivas-numero":32,"../../bibliotecas/primitivas-texto":33,"../../bibliotecas/primitivas-vetor":34,"../../construtos":67,"../../declaracoes":117,"../../inferenciador":
|
|
9840
|
+
},{"../../bibliotecas/primitivas-dicionario":31,"../../bibliotecas/primitivas-numero":32,"../../bibliotecas/primitivas-texto":33,"../../bibliotecas/primitivas-vetor":34,"../../construtos":67,"../../declaracoes":117,"../../inferenciador":151,"../../informacao-elemento-sintatico":152,"../../lexador":244,"../../tipos-de-simbolos/prisma":265,"../avaliador-sintatico-base":10,"../comum":12,"../erro-avaliador-sintatico":21,"../informacao-escopo":23,"../pilha-escopos":27,"browser-process-hrtime":452}],17:[function(require,module,exports){
|
|
9811
9841
|
"use strict";
|
|
9812
9842
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
9813
9843
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -10815,7 +10845,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
|
|
|
10815
10845
|
}
|
|
10816
10846
|
exports.AvaliadorSintaticoTenda = AvaliadorSintaticoTenda;
|
|
10817
10847
|
|
|
10818
|
-
},{"../../bibliotecas/primitivas-dicionario":31,"../../bibliotecas/primitivas-numero":32,"../../bibliotecas/primitivas-texto":33,"../../bibliotecas/primitivas-vetor":34,"../../construtos":67,"../../construtos/tuplas":86,"../../declaracoes":117,"../../inferenciador":
|
|
10848
|
+
},{"../../bibliotecas/primitivas-dicionario":31,"../../bibliotecas/primitivas-numero":32,"../../bibliotecas/primitivas-texto":33,"../../bibliotecas/primitivas-vetor":34,"../../construtos":67,"../../construtos/tuplas":86,"../../declaracoes":117,"../../inferenciador":151,"../../informacao-elemento-sintatico":152,"../../lexador/simbolo":252,"../../tipos-de-dados/delegua":254,"../../tipos-de-simbolos/tenda":266,"../avaliador-sintatico-base":10,"./../erro-avaliador-sintatico":21,"./../informacao-escopo":23,"./../pilha-escopos":27,"browser-process-hrtime":452}],18:[function(require,module,exports){
|
|
10819
10849
|
"use strict";
|
|
10820
10850
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10821
10851
|
if (k2 === undefined) k2 = k;
|
|
@@ -10904,10 +10934,12 @@ class MicroAvaliadorSintaticoPitugues extends micro_avaliador_sintatico_base_1.M
|
|
|
10904
10934
|
this.avancarEDevolverAnterior();
|
|
10905
10935
|
return new construtos_1.Literal(-1, Number(this.linha), null);
|
|
10906
10936
|
case pitugues_1.default.NUMERO:
|
|
10937
|
+
const simboloNumero = this.avancarEDevolverAnterior();
|
|
10938
|
+
const tipoNumeroInferido = Number.isInteger(simboloNumero.literal) ? 'inteiro' : 'real';
|
|
10939
|
+
return new construtos_1.Literal(-1, Number(this.linha), simboloNumero.literal, tipoNumeroInferido);
|
|
10907
10940
|
case pitugues_1.default.TEXTO:
|
|
10908
|
-
const
|
|
10909
|
-
|
|
10910
|
-
return new construtos_1.Literal(-1, Number(this.linha), simboloNumeroTexto.literal, tipoInferido);
|
|
10941
|
+
const simboloTexto = this.avancarEDevolverAnterior();
|
|
10942
|
+
return new construtos_1.Literal(-1, Number(this.linha), simboloTexto.literal, 'texto');
|
|
10911
10943
|
case pitugues_1.default.IDENTIFICADOR:
|
|
10912
10944
|
const simboloIdentificador = this.avancarEDevolverAnterior();
|
|
10913
10945
|
return new construtos_1.Variavel(-1, simboloIdentificador);
|
|
@@ -11084,7 +11116,7 @@ class MicroAvaliadorSintaticoPitugues extends micro_avaliador_sintatico_base_1.M
|
|
|
11084
11116
|
}
|
|
11085
11117
|
exports.MicroAvaliadorSintaticoPitugues = MicroAvaliadorSintaticoPitugues;
|
|
11086
11118
|
|
|
11087
|
-
},{"../../construtos":67,"../../declaracoes":117,"../../inferenciador":
|
|
11119
|
+
},{"../../construtos":67,"../../declaracoes":117,"../../inferenciador":151,"../../tipos-de-simbolos/pitugues":263,"../micro-avaliador-sintatico-base":24}],20:[function(require,module,exports){
|
|
11088
11120
|
"use strict";
|
|
11089
11121
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11090
11122
|
exports.ElementoMontaoTipos = void 0;
|
|
@@ -11270,7 +11302,7 @@ class MicroAvaliadorSintaticoBase {
|
|
|
11270
11302
|
}
|
|
11271
11303
|
exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
|
|
11272
11304
|
|
|
11273
|
-
},{"../construtos":67,"../tipos-de-simbolos/comum":
|
|
11305
|
+
},{"../construtos":67,"../tipos-de-simbolos/comum":258,"./erro-avaliador-sintatico":21}],25:[function(require,module,exports){
|
|
11274
11306
|
"use strict";
|
|
11275
11307
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11276
11308
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -11503,7 +11535,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
|
|
|
11503
11535
|
}
|
|
11504
11536
|
exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
|
|
11505
11537
|
|
|
11506
|
-
},{"../construtos":67,"../tipos-de-simbolos/microgramaticas/delegua":
|
|
11538
|
+
},{"../construtos":67,"../tipos-de-simbolos/microgramaticas/delegua":262,"./micro-avaliador-sintatico-base":24}],26:[function(require,module,exports){
|
|
11507
11539
|
"use strict";
|
|
11508
11540
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11509
11541
|
exports.MontaoTipos = void 0;
|
|
@@ -11554,7 +11586,7 @@ class MontaoTipos {
|
|
|
11554
11586
|
}
|
|
11555
11587
|
exports.MontaoTipos = MontaoTipos;
|
|
11556
11588
|
|
|
11557
|
-
},{"../geracao-identificadores":
|
|
11589
|
+
},{"../geracao-identificadores":149,"./erro-avaliador-sintatico":21}],27:[function(require,module,exports){
|
|
11558
11590
|
"use strict";
|
|
11559
11591
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11560
11592
|
exports.PilhaEscopos = void 0;
|
|
@@ -12845,7 +12877,7 @@ async function vetor(interpretador, tupla) {
|
|
|
12845
12877
|
return resultadoFinal;
|
|
12846
12878
|
}
|
|
12847
12879
|
|
|
12848
|
-
},{"../construtos":67,"../excecoes":141,"../interpretador/estruturas":
|
|
12880
|
+
},{"../construtos":67,"../excecoes":141,"../interpretador/estruturas":215,"../interpretador/estruturas/descritor-tipo-classe":212,"../interpretador/estruturas/funcao-padrao":214,"../interpretador/estruturas/objeto-delegua-classe":220,"../quebras":253}],30:[function(require,module,exports){
|
|
12849
12881
|
"use strict";
|
|
12850
12882
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12851
12883
|
const excecoes_1 = require("../../../excecoes");
|
|
@@ -12882,7 +12914,7 @@ exports.default = {
|
|
|
12882
12914
|
},
|
|
12883
12915
|
};
|
|
12884
12916
|
|
|
12885
|
-
},{"../../../construtos":67,"../../../excecoes":141,"../../../informacao-elemento-sintatico":
|
|
12917
|
+
},{"../../../construtos":67,"../../../excecoes":141,"../../../informacao-elemento-sintatico":152}],31:[function(require,module,exports){
|
|
12886
12918
|
"use strict";
|
|
12887
12919
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12888
12920
|
const construtos_1 = require("../construtos");
|
|
@@ -12995,7 +13027,7 @@ exports.default = {
|
|
|
12995
13027
|
},
|
|
12996
13028
|
};
|
|
12997
13029
|
|
|
12998
|
-
},{"../construtos":67,"../informacao-elemento-sintatico":
|
|
13030
|
+
},{"../construtos":67,"../informacao-elemento-sintatico":152}],32:[function(require,module,exports){
|
|
12999
13031
|
"use strict";
|
|
13000
13032
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13001
13033
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -13080,7 +13112,7 @@ exports.default = {
|
|
|
13080
13112
|
},
|
|
13081
13113
|
};
|
|
13082
13114
|
|
|
13083
|
-
},{"../informacao-elemento-sintatico":
|
|
13115
|
+
},{"../informacao-elemento-sintatico":152}],33:[function(require,module,exports){
|
|
13084
13116
|
"use strict";
|
|
13085
13117
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13086
13118
|
exports.implementacaoParticao = void 0;
|
|
@@ -13479,7 +13511,7 @@ exports.default = {
|
|
|
13479
13511
|
},
|
|
13480
13512
|
};
|
|
13481
13513
|
|
|
13482
|
-
},{"../construtos":67,"../excecoes":141,"../informacao-elemento-sintatico":
|
|
13514
|
+
},{"../construtos":67,"../excecoes":141,"../informacao-elemento-sintatico":152}],34:[function(require,module,exports){
|
|
13483
13515
|
"use strict";
|
|
13484
13516
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13485
13517
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -13890,7 +13922,7 @@ exports.default = {
|
|
|
13890
13922
|
},
|
|
13891
13923
|
};
|
|
13892
13924
|
|
|
13893
|
-
},{"../construtos":67,"../excecoes":141,"../inferenciador":
|
|
13925
|
+
},{"../construtos":67,"../excecoes":141,"../inferenciador":151,"../informacao-elemento-sintatico":152}],35:[function(require,module,exports){
|
|
13894
13926
|
"use strict";
|
|
13895
13927
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13896
13928
|
exports.construirModuloAfirmar = construirModuloAfirmar;
|
|
@@ -13958,7 +13990,7 @@ function construirModuloAfirmar() {
|
|
|
13958
13990
|
return modulo;
|
|
13959
13991
|
}
|
|
13960
13992
|
|
|
13961
|
-
},{"../../excecoes/erro-de-assertiva":139,"../../interpretador/estruturas/funcao-padrao":
|
|
13993
|
+
},{"../../excecoes/erro-de-assertiva":139,"../../interpretador/estruturas/funcao-padrao":214,"../../interpretador/estruturas/modulo":218}],36:[function(require,module,exports){
|
|
13962
13994
|
"use strict";
|
|
13963
13995
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13964
13996
|
exports.construirModuloDeTestes = construirModuloDeTestes;
|
|
@@ -14138,7 +14170,7 @@ function construirModuloDeTestes(interpretador, registro) {
|
|
|
14138
14170
|
return modulo;
|
|
14139
14171
|
}
|
|
14140
14172
|
|
|
14141
|
-
},{"../../excecoes/erro-de-assertiva":139,"../../interpretador/estruturas/funcao-padrao":
|
|
14173
|
+
},{"../../excecoes/erro-de-assertiva":139,"../../interpretador/estruturas/funcao-padrao":214,"../../interpretador/estruturas/modulo":218,"./modulo-afirmar":35}],37:[function(require,module,exports){
|
|
14142
14174
|
"use strict";
|
|
14143
14175
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14144
14176
|
exports.RegistroTestes = void 0;
|
|
@@ -14610,7 +14642,7 @@ class Binario {
|
|
|
14610
14642
|
}
|
|
14611
14643
|
exports.Binario = Binario;
|
|
14612
14644
|
|
|
14613
|
-
},{"../tipos-de-simbolos/delegua":
|
|
14645
|
+
},{"../tipos-de-simbolos/delegua":259}],51:[function(require,module,exports){
|
|
14614
14646
|
"use strict";
|
|
14615
14647
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14616
14648
|
exports.Bote = void 0;
|
|
@@ -14665,7 +14697,7 @@ class Chamada {
|
|
|
14665
14697
|
}
|
|
14666
14698
|
exports.Chamada = Chamada;
|
|
14667
14699
|
|
|
14668
|
-
},{"../geracao-identificadores":
|
|
14700
|
+
},{"../geracao-identificadores":149}],53:[function(require,module,exports){
|
|
14669
14701
|
"use strict";
|
|
14670
14702
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14671
14703
|
exports.ComentarioComoConstruto = void 0;
|
|
@@ -15173,7 +15205,7 @@ class Leia {
|
|
|
15173
15205
|
}
|
|
15174
15206
|
exports.Leia = Leia;
|
|
15175
15207
|
|
|
15176
|
-
},{"../geracao-identificadores":
|
|
15208
|
+
},{"../geracao-identificadores":149}],70:[function(require,module,exports){
|
|
15177
15209
|
"use strict";
|
|
15178
15210
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15179
15211
|
exports.ListaCompreensao = void 0;
|
|
@@ -16440,7 +16472,7 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
|
|
|
16440
16472
|
}
|
|
16441
16473
|
exports.FuncaoDeclaracao = FuncaoDeclaracao;
|
|
16442
16474
|
|
|
16443
|
-
},{"../geracao-identificadores":
|
|
16475
|
+
},{"../geracao-identificadores":149,"./declaracao":106}],116:[function(require,module,exports){
|
|
16444
16476
|
"use strict";
|
|
16445
16477
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16446
16478
|
exports.Importar = void 0;
|
|
@@ -17134,7 +17166,7 @@ class EstilizadorDelegua {
|
|
|
17134
17166
|
}
|
|
17135
17167
|
exports.EstilizadorDelegua = EstilizadorDelegua;
|
|
17136
17168
|
|
|
17137
|
-
},{"../formatadores":
|
|
17169
|
+
},{"../formatadores":148,"./quebrador-linha":133}],132:[function(require,module,exports){
|
|
17138
17170
|
"use strict";
|
|
17139
17171
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
17140
17172
|
if (k2 === undefined) k2 = k;
|
|
@@ -17680,7 +17712,7 @@ class RegraFortalecerTipos {
|
|
|
17680
17712
|
}
|
|
17681
17713
|
exports.RegraFortalecerTipos = RegraFortalecerTipos;
|
|
17682
17714
|
|
|
17683
|
-
},{"../../construtos":67,"../../declaracoes":117,"../../inferenciador":
|
|
17715
|
+
},{"../../construtos":67,"../../declaracoes":117,"../../inferenciador":151}],138:[function(require,module,exports){
|
|
17684
17716
|
"use strict";
|
|
17685
17717
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17686
17718
|
exports.RegraParadigmaConsistente = void 0;
|
|
@@ -17770,7 +17802,7 @@ class RegraParadigmaConsistente {
|
|
|
17770
17802
|
}
|
|
17771
17803
|
exports.RegraParadigmaConsistente = RegraParadigmaConsistente;
|
|
17772
17804
|
|
|
17773
|
-
},{"../../construtos/leia":69,"../../declaracoes":117,"../../lexador/mapeamento-paradigmas":
|
|
17805
|
+
},{"../../construtos/leia":69,"../../declaracoes":117,"../../lexador/mapeamento-paradigmas":248}],139:[function(require,module,exports){
|
|
17774
17806
|
"use strict";
|
|
17775
17807
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17776
17808
|
exports.ErroDeAssertiva = void 0;
|
|
@@ -17819,13 +17851,46 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
17819
17851
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17820
17852
|
__exportStar(require("./erro-de-assertiva"), exports);
|
|
17821
17853
|
__exportStar(require("./erro-em-tempo-de-execucao"), exports);
|
|
17854
|
+
__exportStar(require("./mensagem-erro"), exports);
|
|
17822
17855
|
|
|
17823
|
-
},{"./erro-de-assertiva":139,"./erro-em-tempo-de-execucao":140}],142:[function(require,module,exports){
|
|
17856
|
+
},{"./erro-de-assertiva":139,"./erro-em-tempo-de-execucao":140,"./mensagem-erro":142}],142:[function(require,module,exports){
|
|
17824
17857
|
"use strict";
|
|
17825
17858
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17859
|
+
exports.obterMensagemErro = obterMensagemErro;
|
|
17860
|
+
/**
|
|
17861
|
+
* Obtém a mensagem de erro de forma padronizada, independentemente do tipo de erro.
|
|
17862
|
+
*
|
|
17863
|
+
* Apenas erros do ecossistema Delégua (que possuem a propriedade `mensagem`)
|
|
17864
|
+
* têm sua mensagem extraída diretamente. Demais erros e valores são convertidos
|
|
17865
|
+
* para string via `String()`, que para erros nativos do JavaScript produz o
|
|
17866
|
+
* formato "NomeDoErro: mensagem" (ex: "Error: algo deu errado").
|
|
17867
|
+
*
|
|
17868
|
+
* O uso de `unknown` como tipo do parâmetro garante que a função seja segura
|
|
17869
|
+
* para qualquer valor que venha de `catch` blocks ou da propriedade `erroInterno`
|
|
17870
|
+
* (tipada como `any`), sem perder informações por type narrowing excessivo.
|
|
17871
|
+
*
|
|
17872
|
+
* @param erro O valor a ser convertido em mensagem (qualquer tipo)
|
|
17873
|
+
* @returns A mensagem de erro como string
|
|
17874
|
+
*/
|
|
17875
|
+
function obterMensagemErro(erro) {
|
|
17876
|
+
if (typeof erro === 'object'
|
|
17877
|
+
&& erro !== null
|
|
17878
|
+
&& 'mensagem' in erro) {
|
|
17879
|
+
const mensagem = erro.mensagem;
|
|
17880
|
+
if (typeof mensagem === 'string'
|
|
17881
|
+
&& mensagem) {
|
|
17882
|
+
return mensagem;
|
|
17883
|
+
}
|
|
17884
|
+
}
|
|
17885
|
+
return String(erro);
|
|
17886
|
+
}
|
|
17826
17887
|
|
|
17827
17888
|
},{}],143:[function(require,module,exports){
|
|
17828
17889
|
"use strict";
|
|
17890
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17891
|
+
|
|
17892
|
+
},{}],144:[function(require,module,exports){
|
|
17893
|
+
"use strict";
|
|
17829
17894
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
17830
17895
|
if (k2 === undefined) k2 = k;
|
|
17831
17896
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -17844,7 +17909,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17844
17909
|
__exportStar(require("./despachador-ffi-interface"), exports);
|
|
17845
17910
|
__exportStar(require("./leitor-definicao"), exports);
|
|
17846
17911
|
|
|
17847
|
-
},{"./despachador-ffi-interface":
|
|
17912
|
+
},{"./despachador-ffi-interface":143,"./leitor-definicao":145}],145:[function(require,module,exports){
|
|
17848
17913
|
"use strict";
|
|
17849
17914
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17850
17915
|
exports.lerMetadadosClasse = lerMetadadosClasse;
|
|
@@ -17901,7 +17966,7 @@ function lerMetadadosMetodo(decoradores, nomeMetodo, prefixo) {
|
|
|
17901
17966
|
return { simbolo: prefixo + nomeMetodo };
|
|
17902
17967
|
}
|
|
17903
17968
|
|
|
17904
|
-
},{"../construtos":67}],
|
|
17969
|
+
},{"../construtos":67}],146:[function(require,module,exports){
|
|
17905
17970
|
"use strict";
|
|
17906
17971
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
17907
17972
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -18862,7 +18927,7 @@ class FormatadorDelegua {
|
|
|
18862
18927
|
}
|
|
18863
18928
|
exports.FormatadorDelegua = FormatadorDelegua;
|
|
18864
18929
|
|
|
18865
|
-
},{"../construtos":67,"../declaracoes":117,"../tipos-de-simbolos/delegua":
|
|
18930
|
+
},{"../construtos":67,"../declaracoes":117,"../tipos-de-simbolos/delegua":259}],147:[function(require,module,exports){
|
|
18866
18931
|
"use strict";
|
|
18867
18932
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
18868
18933
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -19335,7 +19400,7 @@ class FormatadorPitugues {
|
|
|
19335
19400
|
}
|
|
19336
19401
|
exports.FormatadorPitugues = FormatadorPitugues;
|
|
19337
19402
|
|
|
19338
|
-
},{"../declaracoes":117,"../tipos-de-simbolos/pitugues":
|
|
19403
|
+
},{"../declaracoes":117,"../tipos-de-simbolos/pitugues":263}],148:[function(require,module,exports){
|
|
19339
19404
|
"use strict";
|
|
19340
19405
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19341
19406
|
if (k2 === undefined) k2 = k;
|
|
@@ -19355,7 +19420,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
19355
19420
|
__exportStar(require("./formatador-delegua"), exports);
|
|
19356
19421
|
__exportStar(require("./formatador-pitugues"), exports);
|
|
19357
19422
|
|
|
19358
|
-
},{"./formatador-delegua":
|
|
19423
|
+
},{"./formatador-delegua":146,"./formatador-pitugues":147}],149:[function(require,module,exports){
|
|
19359
19424
|
"use strict";
|
|
19360
19425
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19361
19426
|
exports.cyrb53 = cyrb53;
|
|
@@ -19399,7 +19464,7 @@ function uuidv4() {
|
|
|
19399
19464
|
});
|
|
19400
19465
|
}
|
|
19401
19466
|
|
|
19402
|
-
},{}],
|
|
19467
|
+
},{}],150:[function(require,module,exports){
|
|
19403
19468
|
"use strict";
|
|
19404
19469
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19405
19470
|
if (k2 === undefined) k2 = k;
|
|
@@ -19429,7 +19494,7 @@ __exportStar(require("./interpretador"), exports);
|
|
|
19429
19494
|
__exportStar(require("./lexador"), exports);
|
|
19430
19495
|
__exportStar(require("./tradutores"), exports);
|
|
19431
19496
|
|
|
19432
|
-
},{"./analisador-semantico":6,"./avaliador-sintatico":22,"./construtos":67,"./declaracoes":117,"./estilizador":132,"./ffi":
|
|
19497
|
+
},{"./analisador-semantico":6,"./avaliador-sintatico":22,"./construtos":67,"./declaracoes":117,"./estilizador":132,"./ffi":144,"./formatadores":148,"./geracao-identificadores":149,"./interfaces":181,"./interpretador":224,"./lexador":244,"./tradutores":267}],151:[function(require,module,exports){
|
|
19433
19498
|
"use strict";
|
|
19434
19499
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
19435
19500
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -19557,7 +19622,7 @@ function inferirTipoVariavel(variavel) {
|
|
|
19557
19622
|
}
|
|
19558
19623
|
}
|
|
19559
19624
|
|
|
19560
|
-
},{"./tipos-de-dados/delegua":
|
|
19625
|
+
},{"./tipos-de-dados/delegua":254,"./tipos-de-dados/primitivos":256,"./tipos-de-simbolos/delegua":259}],152:[function(require,module,exports){
|
|
19561
19626
|
"use strict";
|
|
19562
19627
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19563
19628
|
exports.InformacaoElementoSintatico = void 0;
|
|
@@ -19576,15 +19641,15 @@ class InformacaoElementoSintatico {
|
|
|
19576
19641
|
}
|
|
19577
19642
|
exports.InformacaoElementoSintatico = InformacaoElementoSintatico;
|
|
19578
19643
|
|
|
19579
|
-
},{}],
|
|
19644
|
+
},{}],153:[function(require,module,exports){
|
|
19580
19645
|
"use strict";
|
|
19581
19646
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19582
19647
|
|
|
19583
|
-
},{}],
|
|
19648
|
+
},{}],154:[function(require,module,exports){
|
|
19584
19649
|
"use strict";
|
|
19585
19650
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19586
19651
|
|
|
19587
|
-
},{}],
|
|
19652
|
+
},{}],155:[function(require,module,exports){
|
|
19588
19653
|
"use strict";
|
|
19589
19654
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19590
19655
|
if (k2 === undefined) k2 = k;
|
|
@@ -19605,11 +19670,7 @@ __exportStar(require("./avaliador-sintatico-interface"), exports);
|
|
|
19605
19670
|
__exportStar(require("./correcao-implementacao-interface"), exports);
|
|
19606
19671
|
__exportStar(require("./membro-interface-faltando-interface"), exports);
|
|
19607
19672
|
|
|
19608
|
-
},{"./avaliador-sintatico-interface":
|
|
19609
|
-
"use strict";
|
|
19610
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19611
|
-
|
|
19612
|
-
},{}],156:[function(require,module,exports){
|
|
19673
|
+
},{"./avaliador-sintatico-interface":153,"./correcao-implementacao-interface":154,"./membro-interface-faltando-interface":156}],156:[function(require,module,exports){
|
|
19613
19674
|
"use strict";
|
|
19614
19675
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19615
19676
|
|
|
@@ -19627,6 +19688,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
19627
19688
|
|
|
19628
19689
|
},{}],160:[function(require,module,exports){
|
|
19629
19690
|
"use strict";
|
|
19691
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19692
|
+
|
|
19693
|
+
},{}],161:[function(require,module,exports){
|
|
19694
|
+
"use strict";
|
|
19630
19695
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19631
19696
|
if (k2 === undefined) k2 = k;
|
|
19632
19697
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -19645,11 +19710,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
19645
19710
|
__exportStar(require("./caminho-escolha-interface"), exports);
|
|
19646
19711
|
__exportStar(require("./construto-interface"), exports);
|
|
19647
19712
|
|
|
19648
|
-
},{"./caminho-escolha-interface":
|
|
19713
|
+
},{"./caminho-escolha-interface":159,"./construto-interface":160}],162:[function(require,module,exports){
|
|
19649
19714
|
"use strict";
|
|
19650
19715
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19651
19716
|
|
|
19652
|
-
},{}],
|
|
19717
|
+
},{}],163:[function(require,module,exports){
|
|
19653
19718
|
"use strict";
|
|
19654
19719
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19655
19720
|
if (k2 === undefined) k2 = k;
|
|
@@ -19668,15 +19733,15 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
19668
19733
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19669
19734
|
__exportStar(require("./caminho-se-senao-interface"), exports);
|
|
19670
19735
|
|
|
19671
|
-
},{"./caminho-se-senao-interface":
|
|
19736
|
+
},{"./caminho-se-senao-interface":162}],164:[function(require,module,exports){
|
|
19672
19737
|
"use strict";
|
|
19673
19738
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19674
19739
|
|
|
19675
|
-
},{}],
|
|
19740
|
+
},{}],165:[function(require,module,exports){
|
|
19676
19741
|
"use strict";
|
|
19677
19742
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19678
19743
|
|
|
19679
|
-
},{}],
|
|
19744
|
+
},{}],166:[function(require,module,exports){
|
|
19680
19745
|
"use strict";
|
|
19681
19746
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19682
19747
|
if (k2 === undefined) k2 = k;
|
|
@@ -19698,19 +19763,19 @@ __exportStar(require("./fazer-interface"), exports);
|
|
|
19698
19763
|
__exportStar(require("./para-cada-interface"), exports);
|
|
19699
19764
|
__exportStar(require("./para-interface"), exports);
|
|
19700
19765
|
|
|
19701
|
-
},{"./enquanto-interface":
|
|
19766
|
+
},{"./enquanto-interface":164,"./fazer-interface":165,"./para-cada-interface":167,"./para-interface":168}],167:[function(require,module,exports){
|
|
19702
19767
|
"use strict";
|
|
19703
19768
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19704
19769
|
|
|
19705
|
-
},{}],
|
|
19770
|
+
},{}],168:[function(require,module,exports){
|
|
19706
19771
|
"use strict";
|
|
19707
19772
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19708
19773
|
|
|
19709
|
-
},{}],
|
|
19774
|
+
},{}],169:[function(require,module,exports){
|
|
19710
19775
|
"use strict";
|
|
19711
19776
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19712
19777
|
|
|
19713
|
-
},{}],
|
|
19778
|
+
},{}],170:[function(require,module,exports){
|
|
19714
19779
|
"use strict";
|
|
19715
19780
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19716
19781
|
if (k2 === undefined) k2 = k;
|
|
@@ -19729,11 +19794,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
19729
19794
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19730
19795
|
__exportStar(require("./retorno-resolvedor-interface"), exports);
|
|
19731
19796
|
|
|
19732
|
-
},{"./retorno-resolvedor-interface":
|
|
19733
|
-
"use strict";
|
|
19734
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19735
|
-
|
|
19736
|
-
},{}],171:[function(require,module,exports){
|
|
19797
|
+
},{"./retorno-resolvedor-interface":171}],171:[function(require,module,exports){
|
|
19737
19798
|
"use strict";
|
|
19738
19799
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19739
19800
|
|
|
@@ -19752,6 +19813,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
19752
19813
|
},{}],175:[function(require,module,exports){
|
|
19753
19814
|
"use strict";
|
|
19754
19815
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19816
|
+
|
|
19817
|
+
},{}],176:[function(require,module,exports){
|
|
19818
|
+
"use strict";
|
|
19819
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19755
19820
|
exports.DiagnosticoSeveridade = void 0;
|
|
19756
19821
|
var DiagnosticoSeveridade;
|
|
19757
19822
|
(function (DiagnosticoSeveridade) {
|
|
@@ -19761,11 +19826,11 @@ var DiagnosticoSeveridade;
|
|
|
19761
19826
|
DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
|
|
19762
19827
|
})(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
|
|
19763
19828
|
|
|
19764
|
-
},{}],
|
|
19829
|
+
},{}],177:[function(require,module,exports){
|
|
19765
19830
|
"use strict";
|
|
19766
19831
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19767
19832
|
|
|
19768
|
-
},{}],
|
|
19833
|
+
},{}],178:[function(require,module,exports){
|
|
19769
19834
|
"use strict";
|
|
19770
19835
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19771
19836
|
if (k2 === undefined) k2 = k;
|
|
@@ -19787,15 +19852,15 @@ __exportStar(require("./correcao-sugerida-interface"), exports);
|
|
|
19787
19852
|
__exportStar(require("./diagnostico-analisador-semantico-interface"), exports);
|
|
19788
19853
|
__exportStar(require("./erro-interpretador-interface"), exports);
|
|
19789
19854
|
|
|
19790
|
-
},{"./correcao-implementacao-metodo-interface":
|
|
19855
|
+
},{"./correcao-implementacao-metodo-interface":174,"./correcao-sugerida-interface":175,"./diagnostico-analisador-semantico-interface":176,"./erro-interpretador-interface":177}],179:[function(require,module,exports){
|
|
19791
19856
|
"use strict";
|
|
19792
19857
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19793
19858
|
|
|
19794
|
-
},{}],
|
|
19859
|
+
},{}],180:[function(require,module,exports){
|
|
19795
19860
|
"use strict";
|
|
19796
19861
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19797
19862
|
|
|
19798
|
-
},{}],
|
|
19863
|
+
},{}],181:[function(require,module,exports){
|
|
19799
19864
|
"use strict";
|
|
19800
19865
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19801
19866
|
if (k2 === undefined) k2 = k;
|
|
@@ -19844,11 +19909,7 @@ __exportStar(require("./erros"), exports);
|
|
|
19844
19909
|
__exportStar(require("./retornos"), exports);
|
|
19845
19910
|
__exportStar(require("./tradutores"), exports);
|
|
19846
19911
|
|
|
19847
|
-
},{"./avaliador-sintatico":
|
|
19848
|
-
"use strict";
|
|
19849
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19850
|
-
|
|
19851
|
-
},{}],182:[function(require,module,exports){
|
|
19912
|
+
},{"./avaliador-sintatico":155,"./componente-modulo-classe-interface":157,"./componente-modulo-funcao-interface":158,"./construtos":161,"./declaracoes":163,"./delegua":166,"./depuracao":169,"./egua-classico":170,"./entrada-tabela-diagnostico-semantico-interface":172,"./entrada-tabela-diagnosticos-sintatico-interface":173,"./erros":178,"./estilizador/estilizador-interface":179,"./formatador-comum-interface":180,"./interpretador-com-depuracao-interface":182,"./interpretador-interface":183,"./iteravel-interface":184,"./lexador-interface":185,"./modulo-interface":186,"./parametro-interface":187,"./pilha-interface":188,"./primitiva-interface":189,"./resolvedor-interface":190,"./resultado-parcial-interpretador-interface":191,"./retornos":192,"./retornos/retorno-execucao-interface":195,"./simbolo-interface":198,"./tradutores":200,"./tradutores/tradutor-interface":201,"./variavel-interface":202,"./visitante-comum-interface":203,"./visitante-delegua-interface":204}],182:[function(require,module,exports){
|
|
19852
19913
|
"use strict";
|
|
19853
19914
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19854
19915
|
|
|
@@ -19886,6 +19947,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
19886
19947
|
|
|
19887
19948
|
},{}],191:[function(require,module,exports){
|
|
19888
19949
|
"use strict";
|
|
19950
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19951
|
+
|
|
19952
|
+
},{}],192:[function(require,module,exports){
|
|
19953
|
+
"use strict";
|
|
19889
19954
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19890
19955
|
if (k2 === undefined) k2 = k;
|
|
19891
19956
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -19907,11 +19972,7 @@ __exportStar(require("./retorno-execucao-interface"), exports);
|
|
|
19907
19972
|
__exportStar(require("./retorno-interpretador-interface"), exports);
|
|
19908
19973
|
__exportStar(require("./retorno-lexador-interface"), exports);
|
|
19909
19974
|
|
|
19910
|
-
},{"./retorno-analisador-semantico-interface":
|
|
19911
|
-
"use strict";
|
|
19912
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19913
|
-
|
|
19914
|
-
},{}],193:[function(require,module,exports){
|
|
19975
|
+
},{"./retorno-analisador-semantico-interface":193,"./retorno-avaliador-sintatico-interface":194,"./retorno-execucao-interface":195,"./retorno-interpretador-interface":196,"./retorno-lexador-interface":197}],193:[function(require,module,exports){
|
|
19915
19976
|
"use strict";
|
|
19916
19977
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19917
19978
|
|
|
@@ -19937,6 +19998,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
19937
19998
|
|
|
19938
19999
|
},{}],199:[function(require,module,exports){
|
|
19939
20000
|
"use strict";
|
|
20001
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20002
|
+
|
|
20003
|
+
},{}],200:[function(require,module,exports){
|
|
20004
|
+
"use strict";
|
|
19940
20005
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19941
20006
|
if (k2 === undefined) k2 = k;
|
|
19942
20007
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -19955,11 +20020,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
19955
20020
|
__exportStar(require("./contexto-funcao-interface"), exports);
|
|
19956
20021
|
__exportStar(require("./tradutor-interface"), exports);
|
|
19957
20022
|
|
|
19958
|
-
},{"./contexto-funcao-interface":
|
|
19959
|
-
"use strict";
|
|
19960
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19961
|
-
|
|
19962
|
-
},{}],201:[function(require,module,exports){
|
|
20023
|
+
},{"./contexto-funcao-interface":199,"./tradutor-interface":201}],201:[function(require,module,exports){
|
|
19963
20024
|
"use strict";
|
|
19964
20025
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19965
20026
|
|
|
@@ -19973,6 +20034,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
19973
20034
|
|
|
19974
20035
|
},{}],204:[function(require,module,exports){
|
|
19975
20036
|
"use strict";
|
|
20037
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20038
|
+
|
|
20039
|
+
},{}],205:[function(require,module,exports){
|
|
20040
|
+
"use strict";
|
|
19976
20041
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19977
20042
|
if (k2 === undefined) k2 = k;
|
|
19978
20043
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -20650,7 +20715,7 @@ function obterAjudaFuncaoPadrao(funcaoPadrao) {
|
|
|
20650
20715
|
}
|
|
20651
20716
|
}
|
|
20652
20717
|
|
|
20653
|
-
},{"../bibliotecas/biblioteca-global":29,"../construtos":67,"../excecoes":141,"./estruturas/delegua-funcao":
|
|
20718
|
+
},{"../bibliotecas/biblioteca-global":29,"../construtos":67,"../excecoes":141,"./estruturas/delegua-funcao":211,"./estruturas/descritor-tipo-classe":212,"./estruturas/funcao-padrao":214,"./estruturas/objeto-delegua-classe":220}],206:[function(require,module,exports){
|
|
20654
20719
|
"use strict";
|
|
20655
20720
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20656
20721
|
exports.EspacoMemoria = void 0;
|
|
@@ -20675,7 +20740,7 @@ class EspacoMemoria {
|
|
|
20675
20740
|
}
|
|
20676
20741
|
exports.EspacoMemoria = EspacoMemoria;
|
|
20677
20742
|
|
|
20678
|
-
},{}],
|
|
20743
|
+
},{}],207:[function(require,module,exports){
|
|
20679
20744
|
"use strict";
|
|
20680
20745
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20681
20746
|
exports.Chamavel = void 0;
|
|
@@ -20692,7 +20757,7 @@ class Chamavel {
|
|
|
20692
20757
|
}
|
|
20693
20758
|
exports.Chamavel = Chamavel;
|
|
20694
20759
|
|
|
20695
|
-
},{}],
|
|
20760
|
+
},{}],208:[function(require,module,exports){
|
|
20696
20761
|
"use strict";
|
|
20697
20762
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20698
20763
|
exports.ClasseDeModulo = void 0;
|
|
@@ -20713,7 +20778,7 @@ class ClasseDeModulo extends chamavel_1.Chamavel {
|
|
|
20713
20778
|
}
|
|
20714
20779
|
exports.ClasseDeModulo = ClasseDeModulo;
|
|
20715
20780
|
|
|
20716
|
-
},{"./chamavel":
|
|
20781
|
+
},{"./chamavel":207}],209:[function(require,module,exports){
|
|
20717
20782
|
"use strict";
|
|
20718
20783
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20719
20784
|
exports.ClassePadrao = void 0;
|
|
@@ -20754,7 +20819,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
|
|
|
20754
20819
|
}
|
|
20755
20820
|
exports.ClassePadrao = ClassePadrao;
|
|
20756
20821
|
|
|
20757
|
-
},{"./chamavel":
|
|
20822
|
+
},{"./chamavel":207}],210:[function(require,module,exports){
|
|
20758
20823
|
"use strict";
|
|
20759
20824
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20760
20825
|
exports.DeleguaFuncaoNativa = void 0;
|
|
@@ -20797,7 +20862,7 @@ class DeleguaFuncaoNativa extends delegua_funcao_1.DeleguaFuncao {
|
|
|
20797
20862
|
}
|
|
20798
20863
|
exports.DeleguaFuncaoNativa = DeleguaFuncaoNativa;
|
|
20799
20864
|
|
|
20800
|
-
},{"./delegua-funcao":
|
|
20865
|
+
},{"./delegua-funcao":211}],211:[function(require,module,exports){
|
|
20801
20866
|
"use strict";
|
|
20802
20867
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20803
20868
|
exports.DeleguaFuncao = void 0;
|
|
@@ -21000,7 +21065,7 @@ function tipoDeDados(valor) {
|
|
|
21000
21065
|
}
|
|
21001
21066
|
}
|
|
21002
21067
|
|
|
21003
|
-
},{"../../declaracoes":117,"../../quebras":
|
|
21068
|
+
},{"../../declaracoes":117,"../../quebras":253,"../espaco-memoria":206,"./chamavel":207,"./objeto-delegua-classe":220}],212:[function(require,module,exports){
|
|
21004
21069
|
"use strict";
|
|
21005
21070
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21006
21071
|
exports.DescritorTipoClasse = void 0;
|
|
@@ -21315,7 +21380,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
|
|
|
21315
21380
|
}
|
|
21316
21381
|
exports.DescritorTipoClasse = DescritorTipoClasse;
|
|
21317
21382
|
|
|
21318
|
-
},{"../../excecoes":141,"./chamavel":
|
|
21383
|
+
},{"../../excecoes":141,"./chamavel":207,"./metodo-polimorfico":216,"./objeto-delegua-classe":220}],213:[function(require,module,exports){
|
|
21319
21384
|
"use strict";
|
|
21320
21385
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21321
21386
|
exports.EXCECAO_BASE = void 0;
|
|
@@ -21344,7 +21409,7 @@ function criarDescritorExcecao() {
|
|
|
21344
21409
|
}
|
|
21345
21410
|
exports.EXCECAO_BASE = criarDescritorExcecao();
|
|
21346
21411
|
|
|
21347
|
-
},{"./delegua-funcao-nativa":
|
|
21412
|
+
},{"./delegua-funcao-nativa":210,"./descritor-tipo-classe":212,"./objeto-base":219}],214:[function(require,module,exports){
|
|
21348
21413
|
"use strict";
|
|
21349
21414
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21350
21415
|
exports.FuncaoPadrao = void 0;
|
|
@@ -21383,7 +21448,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
|
|
|
21383
21448
|
}
|
|
21384
21449
|
exports.FuncaoPadrao = FuncaoPadrao;
|
|
21385
21450
|
|
|
21386
|
-
},{"./chamavel":
|
|
21451
|
+
},{"./chamavel":207}],215:[function(require,module,exports){
|
|
21387
21452
|
"use strict";
|
|
21388
21453
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
21389
21454
|
if (k2 === undefined) k2 = k;
|
|
@@ -21417,7 +21482,7 @@ __exportStar(require("./objeto-padrao"), exports);
|
|
|
21417
21482
|
__exportStar(require("./referencia-montao"), exports);
|
|
21418
21483
|
__exportStar(require("./super-proxy"), exports);
|
|
21419
21484
|
|
|
21420
|
-
},{"./chamavel":
|
|
21485
|
+
},{"./chamavel":207,"./classe-de-modulo":208,"./classe-padrao":209,"./delegua-funcao":211,"./delegua-funcao-nativa":210,"./descritor-tipo-classe":212,"./excecao-base":213,"./funcao-padrao":214,"./metodo-polimorfico":216,"./metodo-primitiva":217,"./modulo":218,"./objeto-base":219,"./objeto-delegua-classe":220,"./objeto-padrao":221,"./referencia-montao":222,"./super-proxy":223}],216:[function(require,module,exports){
|
|
21421
21486
|
"use strict";
|
|
21422
21487
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21423
21488
|
exports.MetodoPolimorfico = void 0;
|
|
@@ -21595,7 +21660,7 @@ class MetodoPolimorfico extends chamavel_1.Chamavel {
|
|
|
21595
21660
|
}
|
|
21596
21661
|
exports.MetodoPolimorfico = MetodoPolimorfico;
|
|
21597
21662
|
|
|
21598
|
-
},{"../../excecoes":141,"../../inferenciador":
|
|
21663
|
+
},{"../../excecoes":141,"../../inferenciador":151,"./chamavel":207}],217:[function(require,module,exports){
|
|
21599
21664
|
"use strict";
|
|
21600
21665
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21601
21666
|
exports.MetodoPrimitiva = void 0;
|
|
@@ -21641,7 +21706,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
|
|
|
21641
21706
|
}
|
|
21642
21707
|
exports.MetodoPrimitiva = MetodoPrimitiva;
|
|
21643
21708
|
|
|
21644
|
-
},{"./chamavel":
|
|
21709
|
+
},{"./chamavel":207}],218:[function(require,module,exports){
|
|
21645
21710
|
"use strict";
|
|
21646
21711
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21647
21712
|
exports.DeleguaModulo = void 0;
|
|
@@ -21667,7 +21732,7 @@ class DeleguaModulo {
|
|
|
21667
21732
|
}
|
|
21668
21733
|
exports.DeleguaModulo = DeleguaModulo;
|
|
21669
21734
|
|
|
21670
|
-
},{}],
|
|
21735
|
+
},{}],219:[function(require,module,exports){
|
|
21671
21736
|
"use strict";
|
|
21672
21737
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21673
21738
|
exports.OBJETO_BASE = void 0;
|
|
@@ -21741,7 +21806,7 @@ function criarDescritorObjeto() {
|
|
|
21741
21806
|
}
|
|
21742
21807
|
exports.OBJETO_BASE = criarDescritorObjeto();
|
|
21743
21808
|
|
|
21744
|
-
},{"./delegua-funcao-nativa":
|
|
21809
|
+
},{"./delegua-funcao-nativa":210,"./descritor-tipo-classe":212}],220:[function(require,module,exports){
|
|
21745
21810
|
"use strict";
|
|
21746
21811
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21747
21812
|
exports.ObjetoDeleguaClasse = void 0;
|
|
@@ -21923,7 +21988,7 @@ class ObjetoDeleguaClasse {
|
|
|
21923
21988
|
}
|
|
21924
21989
|
exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
|
|
21925
21990
|
|
|
21926
|
-
},{"../../excecoes":141}],
|
|
21991
|
+
},{"../../excecoes":141}],221:[function(require,module,exports){
|
|
21927
21992
|
"use strict";
|
|
21928
21993
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21929
21994
|
exports.ObjetoPadrao = void 0;
|
|
@@ -21957,7 +22022,7 @@ class ObjetoPadrao {
|
|
|
21957
22022
|
}
|
|
21958
22023
|
exports.ObjetoPadrao = ObjetoPadrao;
|
|
21959
22024
|
|
|
21960
|
-
},{}],
|
|
22025
|
+
},{}],222:[function(require,module,exports){
|
|
21961
22026
|
"use strict";
|
|
21962
22027
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21963
22028
|
exports.ReferenciaMontao = void 0;
|
|
@@ -21982,7 +22047,7 @@ class ReferenciaMontao {
|
|
|
21982
22047
|
}
|
|
21983
22048
|
exports.ReferenciaMontao = ReferenciaMontao;
|
|
21984
22049
|
|
|
21985
|
-
},{}],
|
|
22050
|
+
},{}],223:[function(require,module,exports){
|
|
21986
22051
|
"use strict";
|
|
21987
22052
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21988
22053
|
exports.SuperProxy = void 0;
|
|
@@ -22021,7 +22086,7 @@ class SuperProxy extends chamavel_1.Chamavel {
|
|
|
22021
22086
|
}
|
|
22022
22087
|
exports.SuperProxy = SuperProxy;
|
|
22023
22088
|
|
|
22024
|
-
},{"./chamavel":
|
|
22089
|
+
},{"./chamavel":207}],224:[function(require,module,exports){
|
|
22025
22090
|
"use strict";
|
|
22026
22091
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
22027
22092
|
if (k2 === undefined) k2 = k;
|
|
@@ -22042,7 +22107,7 @@ __exportStar(require("./estruturas"), exports);
|
|
|
22042
22107
|
__exportStar(require("./interpretador"), exports);
|
|
22043
22108
|
__exportStar(require("./interpretador-base"), exports);
|
|
22044
22109
|
|
|
22045
|
-
},{"./estruturas":
|
|
22110
|
+
},{"./estruturas":215,"./interpretador":226,"./interpretador-base":225}],225:[function(require,module,exports){
|
|
22046
22111
|
"use strict";
|
|
22047
22112
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
22048
22113
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -23971,7 +24036,8 @@ class InterpretadorBase {
|
|
|
23971
24036
|
// A partir daqui, presume-se que o objeto é uma das estruturas
|
|
23972
24037
|
// de Delégua.
|
|
23973
24038
|
if (objeto instanceof estruturas_1.DeleguaModulo) {
|
|
23974
|
-
|
|
24039
|
+
const nomeComponente = expressao.simbolo.lexema;
|
|
24040
|
+
return nomeComponente in objeto.componentes ? objeto.componentes[nomeComponente] : null;
|
|
23975
24041
|
}
|
|
23976
24042
|
return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(expressao.simbolo, `Método ou propriedade para objeto não encontrado: ${expressao.simbolo.lexema}.`, expressao.linha));
|
|
23977
24043
|
}
|
|
@@ -24401,7 +24467,7 @@ class InterpretadorBase {
|
|
|
24401
24467
|
}
|
|
24402
24468
|
exports.InterpretadorBase = InterpretadorBase;
|
|
24403
24469
|
|
|
24404
|
-
},{"../avaliador-sintatico":22,"../bibliotecas/primitivas-dicionario":31,"../bibliotecas/primitivas-vetor":34,"../construtos":67,"../excecoes":141,"../inferenciador":
|
|
24470
|
+
},{"../avaliador-sintatico":22,"../bibliotecas/primitivas-dicionario":31,"../bibliotecas/primitivas-vetor":34,"../construtos":67,"../excecoes":141,"../inferenciador":151,"../lexador":244,"../quebras":253,"../tipos-de-dados/delegua":254,"../tipos-de-dados/primitivos":256,"../tipos-de-simbolos/delegua":259,"./espaco-memoria":206,"./estruturas":215,"./estruturas/metodo-primitiva":217,"./pilha-escopos-execucao":228,"browser-process-hrtime":452}],226:[function(require,module,exports){
|
|
24405
24471
|
"use strict";
|
|
24406
24472
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
24407
24473
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -25273,7 +25339,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
25273
25339
|
// A partir daqui, presume-se que o objeto é uma das estruturas
|
|
25274
25340
|
// de Delégua.
|
|
25275
25341
|
if (objeto instanceof estruturas_1.DeleguaModulo) {
|
|
25276
|
-
return objeto.componentes[expressao.nomeMetodo]
|
|
25342
|
+
return expressao.nomeMetodo in objeto.componentes ? objeto.componentes[expressao.nomeMetodo] : null;
|
|
25277
25343
|
}
|
|
25278
25344
|
let tipoObjeto = variavelObjeto.tipo;
|
|
25279
25345
|
if (tipoObjeto === null || tipoObjeto === undefined) {
|
|
@@ -25465,7 +25531,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
25465
25531
|
// A partir daqui, presume-se que o objeto é uma das estruturas
|
|
25466
25532
|
// de Delégua.
|
|
25467
25533
|
if (objeto instanceof estruturas_1.DeleguaModulo) {
|
|
25468
|
-
return objeto.componentes[expressao.simbolo.lexema]
|
|
25534
|
+
return expressao.simbolo.lexema in objeto.componentes ? objeto.componentes[expressao.simbolo.lexema] : null;
|
|
25469
25535
|
}
|
|
25470
25536
|
let tipoObjeto = variavelObjeto.tipo;
|
|
25471
25537
|
if (tipoObjeto === null || tipoObjeto === undefined) {
|
|
@@ -25603,7 +25669,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
25603
25669
|
// A partir daqui, presume-se que o objeto é uma das estruturas
|
|
25604
25670
|
// de Delégua.
|
|
25605
25671
|
if (objeto instanceof estruturas_1.DeleguaModulo) {
|
|
25606
|
-
return objeto.componentes[expressao.nomePropriedade]
|
|
25672
|
+
return expressao.nomePropriedade in objeto.componentes ? objeto.componentes[expressao.nomePropriedade] : null;
|
|
25607
25673
|
}
|
|
25608
25674
|
let tipoObjeto = variavelObjeto.tipo;
|
|
25609
25675
|
if (tipoObjeto === null || tipoObjeto === undefined) {
|
|
@@ -25992,7 +26058,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
25992
26058
|
}
|
|
25993
26059
|
exports.Interpretador = Interpretador;
|
|
25994
26060
|
|
|
25995
|
-
},{"../bibliotecas/dialetos/pitugues/primitivas-tupla":30,"../bibliotecas/primitivas-dicionario":31,"../bibliotecas/primitivas-numero":32,"../bibliotecas/primitivas-texto":33,"../bibliotecas/primitivas-vetor":34,"../bibliotecas/testes/modulo-testes":36,"../bibliotecas/testes/registro-testes":37,"../construtos":67,"../declaracoes":117,"../excecoes":141,"../inferenciador":
|
|
26061
|
+
},{"../bibliotecas/dialetos/pitugues/primitivas-tupla":30,"../bibliotecas/primitivas-dicionario":31,"../bibliotecas/primitivas-numero":32,"../bibliotecas/primitivas-texto":33,"../bibliotecas/primitivas-vetor":34,"../bibliotecas/testes/modulo-testes":36,"../bibliotecas/testes/registro-testes":37,"../construtos":67,"../declaracoes":117,"../excecoes":141,"../inferenciador":151,"../quebras":253,"../tipos-de-dados/delegua":254,"../tipos-de-dados/primitivos":256,"../tipos-de-simbolos/delegua":259,"./comum":205,"./estruturas":215,"./interpretador-base":225,"./montao":227}],227:[function(require,module,exports){
|
|
25996
26062
|
"use strict";
|
|
25997
26063
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25998
26064
|
exports.Montao = void 0;
|
|
@@ -26049,7 +26115,7 @@ class Montao {
|
|
|
26049
26115
|
}
|
|
26050
26116
|
exports.Montao = Montao;
|
|
26051
26117
|
|
|
26052
|
-
},{"../excecoes":141,"../geracao-identificadores":
|
|
26118
|
+
},{"../excecoes":141,"../geracao-identificadores":149}],228:[function(require,module,exports){
|
|
26053
26119
|
"use strict";
|
|
26054
26120
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26055
26121
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26390,7 +26456,7 @@ class PilhaEscoposExecucao {
|
|
|
26390
26456
|
}
|
|
26391
26457
|
exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
|
|
26392
26458
|
|
|
26393
|
-
},{"../excecoes":141,"../inferenciador":
|
|
26459
|
+
},{"../excecoes":141,"../inferenciador":151,"../lexador":244,"../tipos-de-dados/delegua":254,"./estruturas":215}],229:[function(require,module,exports){
|
|
26394
26460
|
"use strict";
|
|
26395
26461
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
26396
26462
|
if (k2 === undefined) k2 = k;
|
|
@@ -26415,7 +26481,7 @@ __exportStar(require("./lexador-portugol-ipt"), exports);
|
|
|
26415
26481
|
__exportStar(require("./lexador-prisma"), exports);
|
|
26416
26482
|
__exportStar(require("./lexador-tenda"), exports);
|
|
26417
26483
|
|
|
26418
|
-
},{"./lexador-calango":
|
|
26484
|
+
},{"./lexador-calango":230,"./lexador-egua-classico":231,"./lexador-guarani":232,"./lexador-pitugues":233,"./lexador-portugol-ipt":234,"./lexador-prisma":235,"./lexador-tenda":236}],230:[function(require,module,exports){
|
|
26419
26485
|
"use strict";
|
|
26420
26486
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26421
26487
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26730,7 +26796,7 @@ class LexadorCalango {
|
|
|
26730
26796
|
}
|
|
26731
26797
|
exports.LexadorCalango = LexadorCalango;
|
|
26732
26798
|
|
|
26733
|
-
},{"../../tipos-de-simbolos/calango":
|
|
26799
|
+
},{"../../tipos-de-simbolos/calango":257,"../simbolo":252,"./palavras-reservadas/calango":237}],231:[function(require,module,exports){
|
|
26734
26800
|
"use strict";
|
|
26735
26801
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26736
26802
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27023,7 +27089,7 @@ class LexadorEguaClassico {
|
|
|
27023
27089
|
}
|
|
27024
27090
|
exports.LexadorEguaClassico = LexadorEguaClassico;
|
|
27025
27091
|
|
|
27026
|
-
},{"../../tipos-de-simbolos/egua-classico":
|
|
27092
|
+
},{"../../tipos-de-simbolos/egua-classico":260,"../simbolo":252,"./palavras-reservadas/egua-classico":238}],232:[function(require,module,exports){
|
|
27027
27093
|
"use strict";
|
|
27028
27094
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27029
27095
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27142,7 +27208,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
|
|
|
27142
27208
|
}
|
|
27143
27209
|
exports.LexadorGuarani = LexadorGuarani;
|
|
27144
27210
|
|
|
27145
|
-
},{"../../tipos-de-simbolos/guarani":
|
|
27211
|
+
},{"../../tipos-de-simbolos/guarani":261,"../lexador-base":246,"./palavras-reservadas/guarani":239}],233:[function(require,module,exports){
|
|
27146
27212
|
"use strict";
|
|
27147
27213
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27148
27214
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27685,7 +27751,7 @@ class LexadorPitugues {
|
|
|
27685
27751
|
}
|
|
27686
27752
|
exports.LexadorPitugues = LexadorPitugues;
|
|
27687
27753
|
|
|
27688
|
-
},{"../../tipos-de-simbolos/pitugues":
|
|
27754
|
+
},{"../../tipos-de-simbolos/pitugues":263,"../simbolo":252,"./palavras-reservadas/pitugues":240,"browser-process-hrtime":452}],234:[function(require,module,exports){
|
|
27689
27755
|
"use strict";
|
|
27690
27756
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27691
27757
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27994,7 +28060,7 @@ class LexadorPortugolIpt {
|
|
|
27994
28060
|
}
|
|
27995
28061
|
exports.LexadorPortugolIpt = LexadorPortugolIpt;
|
|
27996
28062
|
|
|
27997
|
-
},{"../../tipos-de-simbolos/portugol-ipt":
|
|
28063
|
+
},{"../../tipos-de-simbolos/portugol-ipt":264,"../simbolo":252,"./palavras-reservadas/portugol-ipt":241}],235:[function(require,module,exports){
|
|
27998
28064
|
"use strict";
|
|
27999
28065
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28000
28066
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28395,7 +28461,7 @@ class LexadorPrisma {
|
|
|
28395
28461
|
}
|
|
28396
28462
|
exports.LexadorPrisma = LexadorPrisma;
|
|
28397
28463
|
|
|
28398
|
-
},{"../../tipos-de-simbolos/prisma":
|
|
28464
|
+
},{"../../tipos-de-simbolos/prisma":265,"../simbolo":252,"./palavras-reservadas/prisma":242,"browser-process-hrtime":452}],236:[function(require,module,exports){
|
|
28399
28465
|
"use strict";
|
|
28400
28466
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28401
28467
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28789,7 +28855,7 @@ class LexadorTenda {
|
|
|
28789
28855
|
}
|
|
28790
28856
|
exports.LexadorTenda = LexadorTenda;
|
|
28791
28857
|
|
|
28792
|
-
},{"../../tipos-de-simbolos/tenda":
|
|
28858
|
+
},{"../../tipos-de-simbolos/tenda":266,"../simbolo":252,"./palavras-reservadas/tenda":243,"browser-process-hrtime":452}],237:[function(require,module,exports){
|
|
28793
28859
|
"use strict";
|
|
28794
28860
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28795
28861
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28837,7 +28903,7 @@ exports.default = {
|
|
|
28837
28903
|
verdadeiro: calango_1.default.VERDADEIRO,
|
|
28838
28904
|
};
|
|
28839
28905
|
|
|
28840
|
-
},{"../../../tipos-de-simbolos/calango":
|
|
28906
|
+
},{"../../../tipos-de-simbolos/calango":257}],238:[function(require,module,exports){
|
|
28841
28907
|
"use strict";
|
|
28842
28908
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28843
28909
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28878,7 +28944,7 @@ exports.palavrasReservadas = {
|
|
|
28878
28944
|
verdadeiro: egua_classico_1.default.VERDADEIRO,
|
|
28879
28945
|
};
|
|
28880
28946
|
|
|
28881
|
-
},{"../../../tipos-de-simbolos/egua-classico":
|
|
28947
|
+
},{"../../../tipos-de-simbolos/egua-classico":260}],239:[function(require,module,exports){
|
|
28882
28948
|
"use strict";
|
|
28883
28949
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28884
28950
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28890,7 +28956,7 @@ exports.palavrasReservadas = {
|
|
|
28890
28956
|
hai: guarani_1.default.HAI,
|
|
28891
28957
|
};
|
|
28892
28958
|
|
|
28893
|
-
},{"../../../tipos-de-simbolos/guarani":
|
|
28959
|
+
},{"../../../tipos-de-simbolos/guarani":261}],240:[function(require,module,exports){
|
|
28894
28960
|
"use strict";
|
|
28895
28961
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28896
28962
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28952,7 +29018,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
28952
29018
|
verdadeiro: pitugues_1.default.VERDADEIRO,
|
|
28953
29019
|
};
|
|
28954
29020
|
|
|
28955
|
-
},{"../../../tipos-de-simbolos/pitugues":
|
|
29021
|
+
},{"../../../tipos-de-simbolos/pitugues":263}],241:[function(require,module,exports){
|
|
28956
29022
|
"use strict";
|
|
28957
29023
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28958
29024
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29012,7 +29078,7 @@ exports.palavrasReservadas = {
|
|
|
29012
29078
|
não: portugol_ipt_1.default.NAO,
|
|
29013
29079
|
};
|
|
29014
29080
|
|
|
29015
|
-
},{"../../../tipos-de-simbolos/portugol-ipt":
|
|
29081
|
+
},{"../../../tipos-de-simbolos/portugol-ipt":264}],242:[function(require,module,exports){
|
|
29016
29082
|
"use strict";
|
|
29017
29083
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29018
29084
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29063,7 +29129,7 @@ exports.palavrasReservadas = {
|
|
|
29063
29129
|
verdadeiro: prisma_1.default.VERDADEIRO,
|
|
29064
29130
|
};
|
|
29065
29131
|
|
|
29066
|
-
},{"../../../tipos-de-simbolos/prisma":
|
|
29132
|
+
},{"../../../tipos-de-simbolos/prisma":265}],243:[function(require,module,exports){
|
|
29067
29133
|
"use strict";
|
|
29068
29134
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29069
29135
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29121,7 +29187,7 @@ exports.palavrasReservadas = {
|
|
|
29121
29187
|
Texto: tenda_1.default.BIBLIOTECA_GLOBAL,
|
|
29122
29188
|
};
|
|
29123
29189
|
|
|
29124
|
-
},{"../../../tipos-de-simbolos/tenda":
|
|
29190
|
+
},{"../../../tipos-de-simbolos/tenda":266}],244:[function(require,module,exports){
|
|
29125
29191
|
"use strict";
|
|
29126
29192
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
29127
29193
|
if (k2 === undefined) k2 = k;
|
|
@@ -29144,7 +29210,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
|
|
|
29144
29210
|
__exportStar(require("./micro-lexador"), exports);
|
|
29145
29211
|
__exportStar(require("./simbolo"), exports);
|
|
29146
29212
|
|
|
29147
|
-
},{"./dialetos":
|
|
29213
|
+
},{"./dialetos":229,"./lexador":247,"./lexador-base-linha-unica":245,"./micro-lexador":250,"./simbolo":252}],245:[function(require,module,exports){
|
|
29148
29214
|
"use strict";
|
|
29149
29215
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29150
29216
|
exports.LexadorBaseLinhaUnica = void 0;
|
|
@@ -29233,7 +29299,7 @@ class LexadorBaseLinhaUnica {
|
|
|
29233
29299
|
}
|
|
29234
29300
|
exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
|
|
29235
29301
|
|
|
29236
|
-
},{"./simbolo":
|
|
29302
|
+
},{"./simbolo":252}],246:[function(require,module,exports){
|
|
29237
29303
|
"use strict";
|
|
29238
29304
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29239
29305
|
exports.LexadorBase = void 0;
|
|
@@ -29372,7 +29438,7 @@ class LexadorBase {
|
|
|
29372
29438
|
}
|
|
29373
29439
|
exports.LexadorBase = LexadorBase;
|
|
29374
29440
|
|
|
29375
|
-
},{"./simbolo":
|
|
29441
|
+
},{"./simbolo":252}],247:[function(require,module,exports){
|
|
29376
29442
|
"use strict";
|
|
29377
29443
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29378
29444
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29852,7 +29918,7 @@ class Lexador extends lexador_base_1.LexadorBase {
|
|
|
29852
29918
|
}
|
|
29853
29919
|
exports.Lexador = Lexador;
|
|
29854
29920
|
|
|
29855
|
-
},{"../tipos-de-simbolos/delegua":
|
|
29921
|
+
},{"../tipos-de-simbolos/delegua":259,"./lexador-base":246,"./palavras-reservadas":251,"./simbolo":252,"browser-process-hrtime":452}],248:[function(require,module,exports){
|
|
29856
29922
|
"use strict";
|
|
29857
29923
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29858
29924
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -30035,7 +30101,7 @@ function pertenceAoParadigma(lexema, paradigma) {
|
|
|
30035
30101
|
return paradigmaLexema === paradigma;
|
|
30036
30102
|
}
|
|
30037
30103
|
|
|
30038
|
-
},{"../tipos-de-simbolos/delegua":
|
|
30104
|
+
},{"../tipos-de-simbolos/delegua":259}],249:[function(require,module,exports){
|
|
30039
30105
|
"use strict";
|
|
30040
30106
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
30041
30107
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -30255,7 +30321,7 @@ class MicroLexadorPitugues {
|
|
|
30255
30321
|
}
|
|
30256
30322
|
exports.MicroLexadorPitugues = MicroLexadorPitugues;
|
|
30257
30323
|
|
|
30258
|
-
},{"../tipos-de-simbolos/pitugues":
|
|
30324
|
+
},{"../tipos-de-simbolos/pitugues":263,"./palavras-reservadas":251,"./simbolo":252}],250:[function(require,module,exports){
|
|
30259
30325
|
"use strict";
|
|
30260
30326
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
30261
30327
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -30493,7 +30559,7 @@ class MicroLexador {
|
|
|
30493
30559
|
}
|
|
30494
30560
|
exports.MicroLexador = MicroLexador;
|
|
30495
30561
|
|
|
30496
|
-
},{"../tipos-de-simbolos/microgramaticas/delegua":
|
|
30562
|
+
},{"../tipos-de-simbolos/microgramaticas/delegua":262,"./palavras-reservadas":251,"./simbolo":252}],251:[function(require,module,exports){
|
|
30497
30563
|
"use strict";
|
|
30498
30564
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
30499
30565
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -30594,7 +30660,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
30594
30660
|
verdadeiro: delegua_1.default.VERDADEIRO,
|
|
30595
30661
|
};
|
|
30596
30662
|
|
|
30597
|
-
},{"../tipos-de-simbolos/delegua":
|
|
30663
|
+
},{"../tipos-de-simbolos/delegua":259}],252:[function(require,module,exports){
|
|
30598
30664
|
"use strict";
|
|
30599
30665
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30600
30666
|
exports.Simbolo = void 0;
|
|
@@ -30615,7 +30681,7 @@ class Simbolo {
|
|
|
30615
30681
|
}
|
|
30616
30682
|
exports.Simbolo = Simbolo;
|
|
30617
30683
|
|
|
30618
|
-
},{}],
|
|
30684
|
+
},{}],253:[function(require,module,exports){
|
|
30619
30685
|
"use strict";
|
|
30620
30686
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30621
30687
|
exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
|
|
@@ -30640,7 +30706,7 @@ class ContinuarQuebra extends Quebra {
|
|
|
30640
30706
|
}
|
|
30641
30707
|
exports.ContinuarQuebra = ContinuarQuebra;
|
|
30642
30708
|
|
|
30643
|
-
},{}],
|
|
30709
|
+
},{}],254:[function(require,module,exports){
|
|
30644
30710
|
"use strict";
|
|
30645
30711
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30646
30712
|
exports.default = {
|
|
@@ -30674,7 +30740,7 @@ exports.default = {
|
|
|
30674
30740
|
VETOR_TEXTO: 'texto[]',
|
|
30675
30741
|
};
|
|
30676
30742
|
|
|
30677
|
-
},{}],
|
|
30743
|
+
},{}],255:[function(require,module,exports){
|
|
30678
30744
|
"use strict";
|
|
30679
30745
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30680
30746
|
exports.default = {
|
|
@@ -30685,8 +30751,6 @@ exports.default = {
|
|
|
30685
30751
|
LÓGICO: 'lógico',
|
|
30686
30752
|
MODULO: 'modulo',
|
|
30687
30753
|
MÓDULO: 'módulo',
|
|
30688
|
-
NUMERO: 'numero',
|
|
30689
|
-
NÚMERO: 'número',
|
|
30690
30754
|
NULO: 'nulo',
|
|
30691
30755
|
OBJETO: 'objeto',
|
|
30692
30756
|
QUALQUER: 'qualquer',
|
|
@@ -30698,13 +30762,11 @@ exports.default = {
|
|
|
30698
30762
|
VETOR_INTEIRO: 'inteiro[]',
|
|
30699
30763
|
VETOR_LOGICO: 'logico[]',
|
|
30700
30764
|
VETOR_LÓGICO: 'lógico[]',
|
|
30701
|
-
VETOR_NUMERO: 'numero[]',
|
|
30702
|
-
VETOR_NÚMERO: 'número[]',
|
|
30703
30765
|
VETOR_QUALQUER: 'qualquer[]',
|
|
30704
30766
|
VETOR_TEXTO: 'texto[]',
|
|
30705
30767
|
};
|
|
30706
30768
|
|
|
30707
|
-
},{}],
|
|
30769
|
+
},{}],256:[function(require,module,exports){
|
|
30708
30770
|
"use strict";
|
|
30709
30771
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30710
30772
|
exports.default = {
|
|
@@ -30723,7 +30785,7 @@ exports.default = {
|
|
|
30723
30785
|
TEXTO: 'string',
|
|
30724
30786
|
};
|
|
30725
30787
|
|
|
30726
|
-
},{}],
|
|
30788
|
+
},{}],257:[function(require,module,exports){
|
|
30727
30789
|
"use strict";
|
|
30728
30790
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30729
30791
|
exports.default = {
|
|
@@ -30795,7 +30857,7 @@ exports.default = {
|
|
|
30795
30857
|
VIRGULA: 'VIRGULA',
|
|
30796
30858
|
};
|
|
30797
30859
|
|
|
30798
|
-
},{}],
|
|
30860
|
+
},{}],258:[function(require,module,exports){
|
|
30799
30861
|
"use strict";
|
|
30800
30862
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30801
30863
|
exports.default = {
|
|
@@ -30822,7 +30884,7 @@ exports.default = {
|
|
|
30822
30884
|
VIRGULA: 'VIRGULA',
|
|
30823
30885
|
};
|
|
30824
30886
|
|
|
30825
|
-
},{}],
|
|
30887
|
+
},{}],259:[function(require,module,exports){
|
|
30826
30888
|
"use strict";
|
|
30827
30889
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30828
30890
|
exports.default = {
|
|
@@ -30938,7 +31000,7 @@ exports.default = {
|
|
|
30938
31000
|
VIRGULA: 'VIRGULA',
|
|
30939
31001
|
};
|
|
30940
31002
|
|
|
30941
|
-
},{}],
|
|
31003
|
+
},{}],260:[function(require,module,exports){
|
|
30942
31004
|
"use strict";
|
|
30943
31005
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30944
31006
|
exports.default = {
|
|
@@ -31016,7 +31078,7 @@ exports.default = {
|
|
|
31016
31078
|
VIRGULA: 'VIRGULA',
|
|
31017
31079
|
};
|
|
31018
31080
|
|
|
31019
|
-
},{}],
|
|
31081
|
+
},{}],261:[function(require,module,exports){
|
|
31020
31082
|
"use strict";
|
|
31021
31083
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31022
31084
|
exports.default = {
|
|
@@ -31033,7 +31095,7 @@ exports.default = {
|
|
|
31033
31095
|
VIRGULA: 'VIRGULA',
|
|
31034
31096
|
};
|
|
31035
31097
|
|
|
31036
|
-
},{}],
|
|
31098
|
+
},{}],262:[function(require,module,exports){
|
|
31037
31099
|
"use strict";
|
|
31038
31100
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31039
31101
|
exports.default = {
|
|
@@ -31086,7 +31148,7 @@ exports.default = {
|
|
|
31086
31148
|
VIRGULA: 'VIRGULA',
|
|
31087
31149
|
};
|
|
31088
31150
|
|
|
31089
|
-
},{}],
|
|
31151
|
+
},{}],263:[function(require,module,exports){
|
|
31090
31152
|
"use strict";
|
|
31091
31153
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31092
31154
|
exports.default = {
|
|
@@ -31181,7 +31243,7 @@ exports.default = {
|
|
|
31181
31243
|
VIRGULA: 'VIRGULA',
|
|
31182
31244
|
};
|
|
31183
31245
|
|
|
31184
|
-
},{}],
|
|
31246
|
+
},{}],264:[function(require,module,exports){
|
|
31185
31247
|
"use strict";
|
|
31186
31248
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31187
31249
|
exports.default = {
|
|
@@ -31260,7 +31322,7 @@ exports.default = {
|
|
|
31260
31322
|
VARIAVEL: 'VARIAVEL',
|
|
31261
31323
|
};
|
|
31262
31324
|
|
|
31263
|
-
},{}],
|
|
31325
|
+
},{}],265:[function(require,module,exports){
|
|
31264
31326
|
"use strict";
|
|
31265
31327
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31266
31328
|
exports.default = {
|
|
@@ -31344,7 +31406,7 @@ exports.default = {
|
|
|
31344
31406
|
VIRGULA: 'VIRGULA',
|
|
31345
31407
|
};
|
|
31346
31408
|
|
|
31347
|
-
},{}],
|
|
31409
|
+
},{}],266:[function(require,module,exports){
|
|
31348
31410
|
"use strict";
|
|
31349
31411
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31350
31412
|
// Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
|
|
@@ -31439,7 +31501,7 @@ exports.default = {
|
|
|
31439
31501
|
VIRGULA: 'VIRGULA',
|
|
31440
31502
|
};
|
|
31441
31503
|
|
|
31442
|
-
},{}],
|
|
31504
|
+
},{}],267:[function(require,module,exports){
|
|
31443
31505
|
"use strict";
|
|
31444
31506
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
31445
31507
|
if (k2 === undefined) k2 = k;
|
|
@@ -31472,7 +31534,7 @@ __exportStar(require("./tradutor-reverso-python"), exports);
|
|
|
31472
31534
|
__exportStar(require("./tradutor-reverso-tenda"), exports);
|
|
31473
31535
|
__exportStar(require("./tradutor-ruby"), exports);
|
|
31474
31536
|
|
|
31475
|
-
},{"./tradutor-assembly-arm":
|
|
31537
|
+
},{"./tradutor-assembly-arm":276,"./tradutor-assembly-risc-v":277,"./tradutor-assembly-x64":278,"./tradutor-assemblyscript":279,"./tradutor-elixir":280,"./tradutor-javascript":281,"./tradutor-mermaidjs":282,"./tradutor-portugol-ipt":283,"./tradutor-python":284,"./tradutor-reverso-calango":285,"./tradutor-reverso-javascript":286,"./tradutor-reverso-python":287,"./tradutor-reverso-tenda":288,"./tradutor-ruby":289,"./tradutor-webassembly":290}],268:[function(require,module,exports){
|
|
31476
31538
|
"use strict";
|
|
31477
31539
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31478
31540
|
exports.ArestaFluxograma = void 0;
|
|
@@ -31484,7 +31546,7 @@ class ArestaFluxograma {
|
|
|
31484
31546
|
}
|
|
31485
31547
|
exports.ArestaFluxograma = ArestaFluxograma;
|
|
31486
31548
|
|
|
31487
|
-
},{}],
|
|
31549
|
+
},{}],269:[function(require,module,exports){
|
|
31488
31550
|
"use strict";
|
|
31489
31551
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
31490
31552
|
if (k2 === undefined) k2 = k;
|
|
@@ -31507,7 +31569,7 @@ __exportStar(require("./subgrafo-funcao"), exports);
|
|
|
31507
31569
|
__exportStar(require("./subgrafo-metodo"), exports);
|
|
31508
31570
|
__exportStar(require("./vertice-fluxograma"), exports);
|
|
31509
31571
|
|
|
31510
|
-
},{"./aresta-fluxograma":
|
|
31572
|
+
},{"./aresta-fluxograma":268,"./subgrafo-classe":270,"./subgrafo-funcao":271,"./subgrafo-metodo":272,"./vertice-fluxograma":273}],270:[function(require,module,exports){
|
|
31511
31573
|
"use strict";
|
|
31512
31574
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31513
31575
|
exports.SubgrafoClasse = void 0;
|
|
@@ -31553,7 +31615,7 @@ class SubgrafoClasse {
|
|
|
31553
31615
|
}
|
|
31554
31616
|
exports.SubgrafoClasse = SubgrafoClasse;
|
|
31555
31617
|
|
|
31556
|
-
},{}],
|
|
31618
|
+
},{}],271:[function(require,module,exports){
|
|
31557
31619
|
"use strict";
|
|
31558
31620
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31559
31621
|
exports.SubgrafoFuncao = void 0;
|
|
@@ -31568,7 +31630,7 @@ class SubgrafoFuncao {
|
|
|
31568
31630
|
}
|
|
31569
31631
|
exports.SubgrafoFuncao = SubgrafoFuncao;
|
|
31570
31632
|
|
|
31571
|
-
},{}],
|
|
31633
|
+
},{}],272:[function(require,module,exports){
|
|
31572
31634
|
"use strict";
|
|
31573
31635
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31574
31636
|
exports.SubgrafoMetodo = void 0;
|
|
@@ -31585,7 +31647,7 @@ class SubgrafoMetodo {
|
|
|
31585
31647
|
}
|
|
31586
31648
|
exports.SubgrafoMetodo = SubgrafoMetodo;
|
|
31587
31649
|
|
|
31588
|
-
},{}],
|
|
31650
|
+
},{}],273:[function(require,module,exports){
|
|
31589
31651
|
"use strict";
|
|
31590
31652
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31591
31653
|
exports.VerticeFluxograma = void 0;
|
|
@@ -31602,7 +31664,7 @@ class VerticeFluxograma {
|
|
|
31602
31664
|
}
|
|
31603
31665
|
exports.VerticeFluxograma = VerticeFluxograma;
|
|
31604
31666
|
|
|
31605
|
-
},{}],
|
|
31667
|
+
},{}],274:[function(require,module,exports){
|
|
31606
31668
|
"use strict";
|
|
31607
31669
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
31608
31670
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -32842,7 +32904,7 @@ __decorate([
|
|
|
32842
32904
|
Decorators_1.Override
|
|
32843
32905
|
], Python3Lexer.prototype, "nextToken", null);
|
|
32844
32906
|
|
|
32845
|
-
},{"./python3-parser":
|
|
32907
|
+
},{"./python3-parser":275,"antlr4ts/CommonToken":300,"antlr4ts/Decorators":304,"antlr4ts/Lexer":312,"antlr4ts/Token":329,"antlr4ts/VocabularyImpl":335,"antlr4ts/atn/ATNDeserializer":341,"antlr4ts/atn/LexerATNSimulator":362,"antlr4ts/misc/Utils":423}],275:[function(require,module,exports){
|
|
32846
32908
|
"use strict";
|
|
32847
32909
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
32848
32910
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -44089,7 +44151,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
44089
44151
|
}
|
|
44090
44152
|
exports.Yield_argContext = Yield_argContext;
|
|
44091
44153
|
|
|
44092
|
-
},{"antlr4ts/FailedPredicateException":
|
|
44154
|
+
},{"antlr4ts/FailedPredicateException":308,"antlr4ts/NoViableAltException":316,"antlr4ts/Parser":317,"antlr4ts/ParserRuleContext":320,"antlr4ts/RecognitionException":323,"antlr4ts/Token":329,"antlr4ts/VocabularyImpl":335,"antlr4ts/atn/ATN":337,"antlr4ts/atn/ATNDeserializer":341,"antlr4ts/atn/ParserATNSimulator":378,"antlr4ts/misc/Utils":423}],276:[function(require,module,exports){
|
|
44093
44155
|
"use strict";
|
|
44094
44156
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44095
44157
|
exports.TradutorAssemblyARM = void 0;
|
|
@@ -44801,7 +44863,7 @@ ${labelFim}:`;
|
|
|
44801
44863
|
}
|
|
44802
44864
|
exports.TradutorAssemblyARM = TradutorAssemblyARM;
|
|
44803
44865
|
|
|
44804
|
-
},{"../construtos":67,"../declaracoes":117}],
|
|
44866
|
+
},{"../construtos":67,"../declaracoes":117}],277:[function(require,module,exports){
|
|
44805
44867
|
"use strict";
|
|
44806
44868
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44807
44869
|
exports.TradutorAssemblyRISCV = void 0;
|
|
@@ -45490,7 +45552,7 @@ ${labelSenao}:`;
|
|
|
45490
45552
|
}
|
|
45491
45553
|
exports.TradutorAssemblyRISCV = TradutorAssemblyRISCV;
|
|
45492
45554
|
|
|
45493
|
-
},{"../construtos":67,"../declaracoes":117}],
|
|
45555
|
+
},{"../construtos":67,"../declaracoes":117}],278:[function(require,module,exports){
|
|
45494
45556
|
"use strict";
|
|
45495
45557
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
45496
45558
|
exports.TradutorAssemblyX64 = void 0;
|
|
@@ -46265,7 +46327,7 @@ __delegua_print_int:
|
|
|
46265
46327
|
}
|
|
46266
46328
|
exports.TradutorAssemblyX64 = TradutorAssemblyX64;
|
|
46267
46329
|
|
|
46268
|
-
},{"../construtos":67,"../declaracoes":117}],
|
|
46330
|
+
},{"../construtos":67,"../declaracoes":117}],279:[function(require,module,exports){
|
|
46269
46331
|
"use strict";
|
|
46270
46332
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
46271
46333
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -47477,7 +47539,7 @@ class TradutorAssemblyScript {
|
|
|
47477
47539
|
}
|
|
47478
47540
|
exports.TradutorAssemblyScript = TradutorAssemblyScript;
|
|
47479
47541
|
|
|
47480
|
-
},{"../construtos":67,"../declaracoes":117,"../tipos-de-simbolos/delegua":
|
|
47542
|
+
},{"../construtos":67,"../declaracoes":117,"../tipos-de-simbolos/delegua":259}],280:[function(require,module,exports){
|
|
47481
47543
|
"use strict";
|
|
47482
47544
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
47483
47545
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -48440,7 +48502,7 @@ class TradutorElixir {
|
|
|
48440
48502
|
}
|
|
48441
48503
|
exports.TradutorElixir = TradutorElixir;
|
|
48442
48504
|
|
|
48443
|
-
},{"../construtos":67,"../declaracoes":117,"../tipos-de-simbolos/delegua":
|
|
48505
|
+
},{"../construtos":67,"../declaracoes":117,"../tipos-de-simbolos/delegua":259}],281:[function(require,module,exports){
|
|
48444
48506
|
"use strict";
|
|
48445
48507
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
48446
48508
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -49229,7 +49291,7 @@ class TradutorJavaScript {
|
|
|
49229
49291
|
}
|
|
49230
49292
|
exports.TradutorJavaScript = TradutorJavaScript;
|
|
49231
49293
|
|
|
49232
|
-
},{"../construtos":67,"../declaracoes":117,"../tipos-de-simbolos/delegua":
|
|
49294
|
+
},{"../construtos":67,"../declaracoes":117,"../tipos-de-simbolos/delegua":259}],282:[function(require,module,exports){
|
|
49233
49295
|
"use strict";
|
|
49234
49296
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
49235
49297
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -50058,7 +50120,7 @@ class TradutorMermaidJs {
|
|
|
50058
50120
|
}
|
|
50059
50121
|
exports.TradutorMermaidJs = TradutorMermaidJs;
|
|
50060
50122
|
|
|
50061
|
-
},{"../construtos":67,"../declaracoes":117,"../tipos-de-simbolos/delegua":
|
|
50123
|
+
},{"../construtos":67,"../declaracoes":117,"../tipos-de-simbolos/delegua":259,"./mermaid":269}],283:[function(require,module,exports){
|
|
50062
50124
|
"use strict";
|
|
50063
50125
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
50064
50126
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -50440,7 +50502,7 @@ class TradutorPortugolIpt {
|
|
|
50440
50502
|
}
|
|
50441
50503
|
exports.TradutorPortugolIpt = TradutorPortugolIpt;
|
|
50442
50504
|
|
|
50443
|
-
},{"../avaliador-sintatico/dialetos":18,"../construtos":67,"../declaracoes":117,"../lexador/dialetos":
|
|
50505
|
+
},{"../avaliador-sintatico/dialetos":18,"../construtos":67,"../declaracoes":117,"../lexador/dialetos":229,"../tipos-de-simbolos/portugol-ipt":264}],284:[function(require,module,exports){
|
|
50444
50506
|
"use strict";
|
|
50445
50507
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
50446
50508
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -51120,7 +51182,7 @@ class TradutorPython {
|
|
|
51120
51182
|
}
|
|
51121
51183
|
exports.TradutorPython = TradutorPython;
|
|
51122
51184
|
|
|
51123
|
-
},{"../construtos":67,"../declaracoes":117,"../tipos-de-simbolos/delegua":
|
|
51185
|
+
},{"../construtos":67,"../declaracoes":117,"../tipos-de-simbolos/delegua":259}],285:[function(require,module,exports){
|
|
51124
51186
|
"use strict";
|
|
51125
51187
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
51126
51188
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -51474,7 +51536,7 @@ class TradutorReversoCalango {
|
|
|
51474
51536
|
}
|
|
51475
51537
|
exports.TradutorReversoCalango = TradutorReversoCalango;
|
|
51476
51538
|
|
|
51477
|
-
},{"../tipos-de-simbolos/calango":
|
|
51539
|
+
},{"../tipos-de-simbolos/calango":257}],286:[function(require,module,exports){
|
|
51478
51540
|
"use strict";
|
|
51479
51541
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51480
51542
|
exports.TradutorReversoJavaScript = void 0;
|
|
@@ -51897,7 +51959,7 @@ class TradutorReversoJavaScript {
|
|
|
51897
51959
|
}
|
|
51898
51960
|
exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
|
|
51899
51961
|
|
|
51900
|
-
},{}],
|
|
51962
|
+
},{}],287:[function(require,module,exports){
|
|
51901
51963
|
"use strict";
|
|
51902
51964
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51903
51965
|
exports.TradutorReversoPython = void 0;
|
|
@@ -52550,7 +52612,7 @@ class TradutorReversoPython extends AbstractParseTreeVisitor_1.AbstractParseTree
|
|
|
52550
52612
|
}
|
|
52551
52613
|
exports.TradutorReversoPython = TradutorReversoPython;
|
|
52552
52614
|
|
|
52553
|
-
},{"./python/python3-lexer":
|
|
52615
|
+
},{"./python/python3-lexer":274,"./python/python3-parser":275,"antlr4ts":406,"antlr4ts/tree/AbstractParseTreeVisitor":424}],288:[function(require,module,exports){
|
|
52554
52616
|
"use strict";
|
|
52555
52617
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
52556
52618
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -53136,7 +53198,7 @@ class TradutorReversoTenda {
|
|
|
53136
53198
|
}
|
|
53137
53199
|
exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
53138
53200
|
|
|
53139
|
-
},{"../construtos":67,"../tipos-de-simbolos/tenda":
|
|
53201
|
+
},{"../construtos":67,"../tipos-de-simbolos/tenda":266}],289:[function(require,module,exports){
|
|
53140
53202
|
"use strict";
|
|
53141
53203
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
53142
53204
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -53818,7 +53880,7 @@ class TradutorRuby {
|
|
|
53818
53880
|
}
|
|
53819
53881
|
exports.TradutorRuby = TradutorRuby;
|
|
53820
53882
|
|
|
53821
|
-
},{"../construtos":67,"../declaracoes":117,"../tipos-de-simbolos/delegua":
|
|
53883
|
+
},{"../construtos":67,"../declaracoes":117,"../tipos-de-simbolos/delegua":259}],290:[function(require,module,exports){
|
|
53822
53884
|
"use strict";
|
|
53823
53885
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53824
53886
|
exports.TradutorWebAssembly = void 0;
|
|
@@ -54705,7 +54767,7 @@ process.exit(codigoSaida);
|
|
|
54705
54767
|
}
|
|
54706
54768
|
exports.TradutorWebAssembly = TradutorWebAssembly;
|
|
54707
54769
|
|
|
54708
|
-
},{"../construtos":67,"../declaracoes":117}],
|
|
54770
|
+
},{"../construtos":67,"../declaracoes":117}],291:[function(require,module,exports){
|
|
54709
54771
|
"use strict";
|
|
54710
54772
|
/*!
|
|
54711
54773
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54713,7 +54775,7 @@ exports.TradutorWebAssembly = TradutorWebAssembly;
|
|
|
54713
54775
|
*/
|
|
54714
54776
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54715
54777
|
|
|
54716
|
-
},{}],
|
|
54778
|
+
},{}],292:[function(require,module,exports){
|
|
54717
54779
|
"use strict";
|
|
54718
54780
|
/*!
|
|
54719
54781
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54721,7 +54783,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
54721
54783
|
*/
|
|
54722
54784
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54723
54785
|
|
|
54724
|
-
},{}],
|
|
54786
|
+
},{}],293:[function(require,module,exports){
|
|
54725
54787
|
"use strict";
|
|
54726
54788
|
/*!
|
|
54727
54789
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54883,7 +54945,7 @@ __decorate([
|
|
|
54883
54945
|
], ANTLRInputStream.prototype, "toString", null);
|
|
54884
54946
|
exports.ANTLRInputStream = ANTLRInputStream;
|
|
54885
54947
|
|
|
54886
|
-
},{"./Decorators":
|
|
54948
|
+
},{"./Decorators":304,"./IntStream":310,"assert":447}],294:[function(require,module,exports){
|
|
54887
54949
|
"use strict";
|
|
54888
54950
|
/*!
|
|
54889
54951
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54966,7 +55028,7 @@ __decorate([
|
|
|
54966
55028
|
], BailErrorStrategy.prototype, "sync", null);
|
|
54967
55029
|
exports.BailErrorStrategy = BailErrorStrategy;
|
|
54968
55030
|
|
|
54969
|
-
},{"./Decorators":
|
|
55031
|
+
},{"./Decorators":304,"./DefaultErrorStrategy":305,"./InputMismatchException":309,"./misc/ParseCancellationException":421}],295:[function(require,module,exports){
|
|
54970
55032
|
"use strict";
|
|
54971
55033
|
/*!
|
|
54972
55034
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55456,7 +55518,7 @@ BufferedTokenStream = __decorate([
|
|
|
55456
55518
|
], BufferedTokenStream);
|
|
55457
55519
|
exports.BufferedTokenStream = BufferedTokenStream;
|
|
55458
55520
|
|
|
55459
|
-
},{"./CommonToken":
|
|
55521
|
+
},{"./CommonToken":300,"./Decorators":304,"./Lexer":312,"./Token":329,"./misc/Interval":416,"assert":447}],296:[function(require,module,exports){
|
|
55460
55522
|
"use strict";
|
|
55461
55523
|
/*!
|
|
55462
55524
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55464,7 +55526,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
|
|
|
55464
55526
|
*/
|
|
55465
55527
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55466
55528
|
|
|
55467
|
-
},{}],
|
|
55529
|
+
},{}],297:[function(require,module,exports){
|
|
55468
55530
|
"use strict";
|
|
55469
55531
|
/*!
|
|
55470
55532
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55598,7 +55660,7 @@ var CharStreams;
|
|
|
55598
55660
|
// }
|
|
55599
55661
|
})(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
|
|
55600
55662
|
|
|
55601
|
-
},{"./CodePointBuffer":
|
|
55663
|
+
},{"./CodePointBuffer":298,"./CodePointCharStream":299,"./IntStream":310}],298:[function(require,module,exports){
|
|
55602
55664
|
"use strict";
|
|
55603
55665
|
/*!
|
|
55604
55666
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55833,7 +55895,7 @@ exports.CodePointBuffer = CodePointBuffer;
|
|
|
55833
55895
|
CodePointBuffer.Builder = Builder;
|
|
55834
55896
|
})(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
|
|
55835
55897
|
|
|
55836
|
-
},{"./misc/Character":
|
|
55898
|
+
},{"./misc/Character":412,"assert":447}],299:[function(require,module,exports){
|
|
55837
55899
|
"use strict";
|
|
55838
55900
|
/*!
|
|
55839
55901
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55983,7 +56045,7 @@ __decorate([
|
|
|
55983
56045
|
], CodePointCharStream.prototype, "getText", null);
|
|
55984
56046
|
exports.CodePointCharStream = CodePointCharStream;
|
|
55985
56047
|
|
|
55986
|
-
},{"./Decorators":
|
|
56048
|
+
},{"./Decorators":304,"./IntStream":310,"./misc/Interval":416,"assert":447}],300:[function(require,module,exports){
|
|
55987
56049
|
"use strict";
|
|
55988
56050
|
/*!
|
|
55989
56051
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56213,7 +56275,7 @@ CommonToken = __decorate([
|
|
|
56213
56275
|
], CommonToken);
|
|
56214
56276
|
exports.CommonToken = CommonToken;
|
|
56215
56277
|
|
|
56216
|
-
},{"./Decorators":
|
|
56278
|
+
},{"./Decorators":304,"./Token":329,"./misc/Interval":416}],301:[function(require,module,exports){
|
|
56217
56279
|
"use strict";
|
|
56218
56280
|
/*!
|
|
56219
56281
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56277,7 +56339,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
|
|
|
56277
56339
|
CommonTokenFactory.DEFAULT = new CommonTokenFactory();
|
|
56278
56340
|
})(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
|
|
56279
56341
|
|
|
56280
|
-
},{"./CommonToken":
|
|
56342
|
+
},{"./CommonToken":300,"./Decorators":304,"./misc/Interval":416}],302:[function(require,module,exports){
|
|
56281
56343
|
"use strict";
|
|
56282
56344
|
/*!
|
|
56283
56345
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56404,7 +56466,7 @@ CommonTokenStream = __decorate([
|
|
|
56404
56466
|
], CommonTokenStream);
|
|
56405
56467
|
exports.CommonTokenStream = CommonTokenStream;
|
|
56406
56468
|
|
|
56407
|
-
},{"./BufferedTokenStream":
|
|
56469
|
+
},{"./BufferedTokenStream":295,"./Decorators":304,"./Token":329}],303:[function(require,module,exports){
|
|
56408
56470
|
"use strict";
|
|
56409
56471
|
/*!
|
|
56410
56472
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56438,7 +56500,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
|
|
|
56438
56500
|
*/
|
|
56439
56501
|
ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
|
|
56440
56502
|
|
|
56441
|
-
},{}],
|
|
56503
|
+
},{}],304:[function(require,module,exports){
|
|
56442
56504
|
"use strict";
|
|
56443
56505
|
/*!
|
|
56444
56506
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56465,7 +56527,7 @@ function SuppressWarnings(options) {
|
|
|
56465
56527
|
}
|
|
56466
56528
|
exports.SuppressWarnings = SuppressWarnings;
|
|
56467
56529
|
|
|
56468
|
-
},{}],
|
|
56530
|
+
},{}],305:[function(require,module,exports){
|
|
56469
56531
|
"use strict";
|
|
56470
56532
|
/*!
|
|
56471
56533
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57279,7 +57341,7 @@ __decorate([
|
|
|
57279
57341
|
], DefaultErrorStrategy.prototype, "consumeUntil", null);
|
|
57280
57342
|
exports.DefaultErrorStrategy = DefaultErrorStrategy;
|
|
57281
57343
|
|
|
57282
|
-
},{"./Decorators":
|
|
57344
|
+
},{"./Decorators":304,"./FailedPredicateException":308,"./InputMismatchException":309,"./NoViableAltException":316,"./Token":329,"./atn/ATNState":343,"./atn/ATNStateType":344,"./atn/PredictionContext":384,"./misc/IntervalSet":417}],306:[function(require,module,exports){
|
|
57283
57345
|
"use strict";
|
|
57284
57346
|
/*!
|
|
57285
57347
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57355,7 +57417,7 @@ var Dependents;
|
|
|
57355
57417
|
Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
|
|
57356
57418
|
})(Dependents = exports.Dependents || (exports.Dependents = {}));
|
|
57357
57419
|
|
|
57358
|
-
},{}],
|
|
57420
|
+
},{}],307:[function(require,module,exports){
|
|
57359
57421
|
"use strict";
|
|
57360
57422
|
/*!
|
|
57361
57423
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57503,7 +57565,7 @@ __decorate([
|
|
|
57503
57565
|
], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
|
|
57504
57566
|
exports.DiagnosticErrorListener = DiagnosticErrorListener;
|
|
57505
57567
|
|
|
57506
|
-
},{"./Decorators":
|
|
57568
|
+
},{"./Decorators":304,"./misc/BitSet":411,"./misc/Interval":416}],308:[function(require,module,exports){
|
|
57507
57569
|
"use strict";
|
|
57508
57570
|
/*!
|
|
57509
57571
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57568,7 +57630,7 @@ FailedPredicateException = __decorate([
|
|
|
57568
57630
|
], FailedPredicateException);
|
|
57569
57631
|
exports.FailedPredicateException = FailedPredicateException;
|
|
57570
57632
|
|
|
57571
|
-
},{"./Decorators":
|
|
57633
|
+
},{"./Decorators":304,"./RecognitionException":323,"./atn/PredicateTransition":383}],309:[function(require,module,exports){
|
|
57572
57634
|
"use strict";
|
|
57573
57635
|
/*!
|
|
57574
57636
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57608,7 +57670,7 @@ InputMismatchException = __decorate([
|
|
|
57608
57670
|
], InputMismatchException);
|
|
57609
57671
|
exports.InputMismatchException = InputMismatchException;
|
|
57610
57672
|
|
|
57611
|
-
},{"./Decorators":
|
|
57673
|
+
},{"./Decorators":304,"./RecognitionException":323}],310:[function(require,module,exports){
|
|
57612
57674
|
"use strict";
|
|
57613
57675
|
/*!
|
|
57614
57676
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57631,7 +57693,7 @@ var IntStream;
|
|
|
57631
57693
|
IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
|
|
57632
57694
|
})(IntStream = exports.IntStream || (exports.IntStream = {}));
|
|
57633
57695
|
|
|
57634
|
-
},{}],
|
|
57696
|
+
},{}],311:[function(require,module,exports){
|
|
57635
57697
|
"use strict";
|
|
57636
57698
|
/*!
|
|
57637
57699
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57678,7 +57740,7 @@ __decorate([
|
|
|
57678
57740
|
], InterpreterRuleContext.prototype, "ruleIndex", null);
|
|
57679
57741
|
exports.InterpreterRuleContext = InterpreterRuleContext;
|
|
57680
57742
|
|
|
57681
|
-
},{"./Decorators":
|
|
57743
|
+
},{"./Decorators":304,"./ParserRuleContext":320}],312:[function(require,module,exports){
|
|
57682
57744
|
"use strict";
|
|
57683
57745
|
/*!
|
|
57684
57746
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58014,7 +58076,7 @@ __decorate([
|
|
|
58014
58076
|
], Lexer.prototype, "charPositionInLine", null);
|
|
58015
58077
|
exports.Lexer = Lexer;
|
|
58016
58078
|
|
|
58017
|
-
},{"./CommonTokenFactory":
|
|
58079
|
+
},{"./CommonTokenFactory":301,"./Decorators":304,"./IntStream":310,"./LexerNoViableAltException":314,"./Recognizer":324,"./Token":329,"./atn/LexerATNSimulator":362,"./misc/IntegerStack":415,"./misc/Interval":416}],313:[function(require,module,exports){
|
|
58018
58080
|
"use strict";
|
|
58019
58081
|
/*!
|
|
58020
58082
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58094,7 +58156,7 @@ LexerInterpreter = __decorate([
|
|
|
58094
58156
|
], LexerInterpreter);
|
|
58095
58157
|
exports.LexerInterpreter = LexerInterpreter;
|
|
58096
58158
|
|
|
58097
|
-
},{"./Decorators":
|
|
58159
|
+
},{"./Decorators":304,"./Lexer":312,"./atn/LexerATNSimulator":362}],314:[function(require,module,exports){
|
|
58098
58160
|
"use strict";
|
|
58099
58161
|
/*!
|
|
58100
58162
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58151,7 +58213,7 @@ LexerNoViableAltException = __decorate([
|
|
|
58151
58213
|
], LexerNoViableAltException);
|
|
58152
58214
|
exports.LexerNoViableAltException = LexerNoViableAltException;
|
|
58153
58215
|
|
|
58154
|
-
},{"./Decorators":
|
|
58216
|
+
},{"./Decorators":304,"./RecognitionException":323,"./misc/Interval":416,"./misc/Utils":423}],315:[function(require,module,exports){
|
|
58155
58217
|
"use strict";
|
|
58156
58218
|
/*!
|
|
58157
58219
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58361,7 +58423,7 @@ ListTokenSource = __decorate([
|
|
|
58361
58423
|
], ListTokenSource);
|
|
58362
58424
|
exports.ListTokenSource = ListTokenSource;
|
|
58363
58425
|
|
|
58364
|
-
},{"./CommonTokenFactory":
|
|
58426
|
+
},{"./CommonTokenFactory":301,"./Decorators":304,"./Token":329}],316:[function(require,module,exports){
|
|
58365
58427
|
"use strict";
|
|
58366
58428
|
/*!
|
|
58367
58429
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58416,7 +58478,7 @@ __decorate([
|
|
|
58416
58478
|
], NoViableAltException.prototype, "_startToken", void 0);
|
|
58417
58479
|
exports.NoViableAltException = NoViableAltException;
|
|
58418
58480
|
|
|
58419
|
-
},{"./Decorators":
|
|
58481
|
+
},{"./Decorators":304,"./Parser":317,"./RecognitionException":323}],317:[function(require,module,exports){
|
|
58420
58482
|
(function (process){(function (){
|
|
58421
58483
|
"use strict";
|
|
58422
58484
|
/*!
|
|
@@ -59262,7 +59324,7 @@ __decorate([
|
|
|
59262
59324
|
exports.Parser = Parser;
|
|
59263
59325
|
|
|
59264
59326
|
}).call(this)}).call(this,require('_process'))
|
|
59265
|
-
},{"./Decorators":
|
|
59327
|
+
},{"./Decorators":304,"./DefaultErrorStrategy":305,"./Lexer":312,"./ProxyParserErrorListener":322,"./Recognizer":324,"./Token":329,"./atn/ATNDeserializationOptions":340,"./atn/ATNDeserializer":341,"./atn/ParseInfo":377,"./atn/ParserATNSimulator":378,"./atn/ProfilingATNSimulator":387,"./misc/IntegerStack":415,"./misc/Utils":423,"./tree/ErrorNode":425,"./tree/TerminalNode":427,"./tree/pattern/ParseTreePatternMatcher":432,"_process":506}],318:[function(require,module,exports){
|
|
59266
59328
|
"use strict";
|
|
59267
59329
|
/*!
|
|
59268
59330
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59270,7 +59332,7 @@ exports.Parser = Parser;
|
|
|
59270
59332
|
*/
|
|
59271
59333
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
59272
59334
|
|
|
59273
|
-
},{}],
|
|
59335
|
+
},{}],319:[function(require,module,exports){
|
|
59274
59336
|
"use strict";
|
|
59275
59337
|
/*!
|
|
59276
59338
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59678,7 +59740,7 @@ ParserInterpreter = __decorate([
|
|
|
59678
59740
|
], ParserInterpreter);
|
|
59679
59741
|
exports.ParserInterpreter = ParserInterpreter;
|
|
59680
59742
|
|
|
59681
|
-
},{"./Decorators":
|
|
59743
|
+
},{"./Decorators":304,"./FailedPredicateException":308,"./InputMismatchException":309,"./InterpreterRuleContext":311,"./Parser":317,"./RecognitionException":323,"./Token":329,"./atn/ATNState":343,"./atn/ATNStateType":344,"./atn/LoopEndState":374,"./atn/ParserATNSimulator":378,"./atn/StarLoopEntryState":396,"./misc/BitSet":411}],320:[function(require,module,exports){
|
|
59682
59744
|
"use strict";
|
|
59683
59745
|
/*!
|
|
59684
59746
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59979,7 +60041,7 @@ __decorate([
|
|
|
59979
60041
|
], ParserRuleContext.prototype, "sourceInterval", null);
|
|
59980
60042
|
exports.ParserRuleContext = ParserRuleContext;
|
|
59981
60043
|
|
|
59982
|
-
},{"./Decorators":
|
|
60044
|
+
},{"./Decorators":304,"./RuleContext":325,"./misc/Interval":416,"./tree/ErrorNode":425,"./tree/TerminalNode":427}],321:[function(require,module,exports){
|
|
59983
60045
|
"use strict";
|
|
59984
60046
|
/*!
|
|
59985
60047
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60029,7 +60091,7 @@ __decorate([
|
|
|
60029
60091
|
], ProxyErrorListener.prototype, "syntaxError", null);
|
|
60030
60092
|
exports.ProxyErrorListener = ProxyErrorListener;
|
|
60031
60093
|
|
|
60032
|
-
},{"./Decorators":
|
|
60094
|
+
},{"./Decorators":304}],322:[function(require,module,exports){
|
|
60033
60095
|
"use strict";
|
|
60034
60096
|
/*!
|
|
60035
60097
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60088,7 +60150,7 @@ __decorate([
|
|
|
60088
60150
|
], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
|
|
60089
60151
|
exports.ProxyParserErrorListener = ProxyParserErrorListener;
|
|
60090
60152
|
|
|
60091
|
-
},{"./Decorators":
|
|
60153
|
+
},{"./Decorators":304,"./ProxyErrorListener":321}],323:[function(require,module,exports){
|
|
60092
60154
|
"use strict";
|
|
60093
60155
|
/*!
|
|
60094
60156
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60193,7 +60255,7 @@ class RecognitionException extends Error {
|
|
|
60193
60255
|
}
|
|
60194
60256
|
exports.RecognitionException = RecognitionException;
|
|
60195
60257
|
|
|
60196
|
-
},{}],
|
|
60258
|
+
},{}],324:[function(require,module,exports){
|
|
60197
60259
|
"use strict";
|
|
60198
60260
|
/*!
|
|
60199
60261
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60412,7 +60474,7 @@ __decorate([
|
|
|
60412
60474
|
], Recognizer.prototype, "getErrorListeners", null);
|
|
60413
60475
|
exports.Recognizer = Recognizer;
|
|
60414
60476
|
|
|
60415
|
-
},{"./ConsoleErrorListener":
|
|
60477
|
+
},{"./ConsoleErrorListener":303,"./Decorators":304,"./ProxyErrorListener":321,"./Token":329,"./misc/Utils":423}],325:[function(require,module,exports){
|
|
60416
60478
|
"use strict";
|
|
60417
60479
|
/*!
|
|
60418
60480
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60629,7 +60691,7 @@ __decorate([
|
|
|
60629
60691
|
], RuleContext.prototype, "toStringTree", null);
|
|
60630
60692
|
exports.RuleContext = RuleContext;
|
|
60631
60693
|
|
|
60632
|
-
},{"./Decorators":
|
|
60694
|
+
},{"./Decorators":304,"./ParserRuleContext":320,"./Recognizer":324,"./atn/ATN":337,"./misc/Interval":416,"./tree/RuleNode":426,"./tree/Trees":428}],326:[function(require,module,exports){
|
|
60633
60695
|
"use strict";
|
|
60634
60696
|
/*!
|
|
60635
60697
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60680,7 +60742,7 @@ __decorate([
|
|
|
60680
60742
|
], RuleContextWithAltNum.prototype, "altNumber", null);
|
|
60681
60743
|
exports.RuleContextWithAltNum = RuleContextWithAltNum;
|
|
60682
60744
|
|
|
60683
|
-
},{"./Decorators":
|
|
60745
|
+
},{"./Decorators":304,"./ParserRuleContext":320,"./atn/ATN":337}],327:[function(require,module,exports){
|
|
60684
60746
|
"use strict";
|
|
60685
60747
|
/*!
|
|
60686
60748
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60703,7 +60765,7 @@ function RuleDependency(dependency) {
|
|
|
60703
60765
|
}
|
|
60704
60766
|
exports.RuleDependency = RuleDependency;
|
|
60705
60767
|
|
|
60706
|
-
},{}],
|
|
60768
|
+
},{}],328:[function(require,module,exports){
|
|
60707
60769
|
"use strict";
|
|
60708
60770
|
/*!
|
|
60709
60771
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60722,7 +60784,7 @@ function RuleVersion(version) {
|
|
|
60722
60784
|
}
|
|
60723
60785
|
exports.RuleVersion = RuleVersion;
|
|
60724
60786
|
|
|
60725
|
-
},{}],
|
|
60787
|
+
},{}],329:[function(require,module,exports){
|
|
60726
60788
|
"use strict";
|
|
60727
60789
|
/*!
|
|
60728
60790
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60762,7 +60824,7 @@ var Token;
|
|
|
60762
60824
|
Token.MIN_USER_CHANNEL_VALUE = 2;
|
|
60763
60825
|
})(Token = exports.Token || (exports.Token = {}));
|
|
60764
60826
|
|
|
60765
|
-
},{"./IntStream":
|
|
60827
|
+
},{"./IntStream":310}],330:[function(require,module,exports){
|
|
60766
60828
|
"use strict";
|
|
60767
60829
|
/*!
|
|
60768
60830
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60770,7 +60832,7 @@ var Token;
|
|
|
60770
60832
|
*/
|
|
60771
60833
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
60772
60834
|
|
|
60773
|
-
},{}],
|
|
60835
|
+
},{}],331:[function(require,module,exports){
|
|
60774
60836
|
"use strict";
|
|
60775
60837
|
/*!
|
|
60776
60838
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60778,7 +60840,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
60778
60840
|
*/
|
|
60779
60841
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
60780
60842
|
|
|
60781
|
-
},{}],
|
|
60843
|
+
},{}],332:[function(require,module,exports){
|
|
60782
60844
|
"use strict";
|
|
60783
60845
|
/*!
|
|
60784
60846
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60786,7 +60848,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
60786
60848
|
*/
|
|
60787
60849
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
60788
60850
|
|
|
60789
|
-
},{}],
|
|
60851
|
+
},{}],333:[function(require,module,exports){
|
|
60790
60852
|
"use strict";
|
|
60791
60853
|
/*!
|
|
60792
60854
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61294,7 +61356,7 @@ __decorate([
|
|
|
61294
61356
|
Decorators_1.Override
|
|
61295
61357
|
], ReplaceOp.prototype, "toString", null);
|
|
61296
61358
|
|
|
61297
|
-
},{"./Decorators":
|
|
61359
|
+
},{"./Decorators":304,"./Token":329,"./misc/Interval":416}],334:[function(require,module,exports){
|
|
61298
61360
|
"use strict";
|
|
61299
61361
|
/*!
|
|
61300
61362
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61302,7 +61364,7 @@ __decorate([
|
|
|
61302
61364
|
*/
|
|
61303
61365
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
61304
61366
|
|
|
61305
|
-
},{}],
|
|
61367
|
+
},{}],335:[function(require,module,exports){
|
|
61306
61368
|
"use strict";
|
|
61307
61369
|
/*!
|
|
61308
61370
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61422,7 +61484,7 @@ __decorate([
|
|
|
61422
61484
|
], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
|
|
61423
61485
|
exports.VocabularyImpl = VocabularyImpl;
|
|
61424
61486
|
|
|
61425
|
-
},{"./Decorators":
|
|
61487
|
+
},{"./Decorators":304,"./Token":329}],336:[function(require,module,exports){
|
|
61426
61488
|
"use strict";
|
|
61427
61489
|
/*!
|
|
61428
61490
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61430,7 +61492,7 @@ exports.VocabularyImpl = VocabularyImpl;
|
|
|
61430
61492
|
*/
|
|
61431
61493
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
61432
61494
|
|
|
61433
|
-
},{}],
|
|
61495
|
+
},{}],337:[function(require,module,exports){
|
|
61434
61496
|
"use strict";
|
|
61435
61497
|
/*!
|
|
61436
61498
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61652,7 +61714,7 @@ exports.ATN = ATN;
|
|
|
61652
61714
|
})(ATN = exports.ATN || (exports.ATN = {}));
|
|
61653
61715
|
exports.ATN = ATN;
|
|
61654
61716
|
|
|
61655
|
-
},{"../Decorators":
|
|
61717
|
+
},{"../Decorators":304,"../Token":329,"../dfa/DFA":402,"../misc/Array2DHashMap":407,"../misc/IntervalSet":417,"../misc/ObjectEqualityComparator":420,"./InvalidState":360,"./LL1Analyzer":361,"./PredictionContext":384,"assert":447}],338:[function(require,module,exports){
|
|
61656
61718
|
"use strict";
|
|
61657
61719
|
/*!
|
|
61658
61720
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62177,7 +62239,7 @@ ActionSemanticContextATNConfig = __decorate([
|
|
|
62177
62239
|
__param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
|
|
62178
62240
|
], ActionSemanticContextATNConfig);
|
|
62179
62241
|
|
|
62180
|
-
},{"../Decorators":
|
|
62242
|
+
},{"../Decorators":304,"../misc/Array2DHashMap":407,"../misc/MurmurHash":419,"../misc/ObjectEqualityComparator":420,"./DecisionState":357,"./PredictionContext":384,"./SemanticContext":392,"assert":447}],339:[function(require,module,exports){
|
|
62181
62243
|
"use strict";
|
|
62182
62244
|
/*!
|
|
62183
62245
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62624,7 +62686,7 @@ __decorate([
|
|
|
62624
62686
|
], ATNConfigSet.prototype, "hashCode", null);
|
|
62625
62687
|
exports.ATNConfigSet = ATNConfigSet;
|
|
62626
62688
|
|
|
62627
|
-
},{"../Decorators":
|
|
62689
|
+
},{"../Decorators":304,"../misc/Array2DHashMap":407,"../misc/Array2DHashSet":408,"../misc/ArrayEqualityComparator":409,"../misc/BitSet":411,"../misc/ObjectEqualityComparator":420,"../misc/Utils":423,"./ATN":337,"./ATNConfig":338,"./PredictionContext":384,"./PredictionContextCache":385,"./SemanticContext":392,"assert":447}],340:[function(require,module,exports){
|
|
62628
62690
|
"use strict";
|
|
62629
62691
|
/*!
|
|
62630
62692
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62703,7 +62765,7 @@ __decorate([
|
|
|
62703
62765
|
], ATNDeserializationOptions, "defaultOptions", null);
|
|
62704
62766
|
exports.ATNDeserializationOptions = ATNDeserializationOptions;
|
|
62705
62767
|
|
|
62706
|
-
},{"../Decorators":
|
|
62768
|
+
},{"../Decorators":304}],341:[function(require,module,exports){
|
|
62707
62769
|
"use strict";
|
|
62708
62770
|
/*!
|
|
62709
62771
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63790,7 +63852,7 @@ __decorate([
|
|
|
63790
63852
|
], ATNDeserializer.prototype, "edgeFactory", null);
|
|
63791
63853
|
exports.ATNDeserializer = ATNDeserializer;
|
|
63792
63854
|
|
|
63793
|
-
},{"../Decorators":
|
|
63855
|
+
},{"../Decorators":304,"../Token":329,"../dfa/DFA":402,"../misc/Array2DHashSet":408,"../misc/BitSet":411,"../misc/IntervalSet":417,"../misc/UUID":422,"./ATN":337,"./ATNDeserializationOptions":340,"./ATNStateType":344,"./ActionTransition":346,"./AtomTransition":348,"./BasicBlockStartState":349,"./BasicState":350,"./BlockEndState":351,"./BlockStartState":352,"./DecisionState":357,"./EpsilonTransition":358,"./InvalidState":360,"./LexerChannelAction":364,"./LexerCustomAction":365,"./LexerModeAction":367,"./LexerMoreAction":368,"./LexerPopModeAction":369,"./LexerPushModeAction":370,"./LexerSkipAction":371,"./LexerTypeAction":372,"./LoopEndState":374,"./NotSetTransition":375,"./ParserATNSimulator":378,"./PlusBlockStartState":379,"./PlusLoopbackState":380,"./PrecedencePredicateTransition":381,"./PredicateTransition":383,"./RangeTransition":388,"./RuleStartState":389,"./RuleStopState":390,"./RuleTransition":391,"./SetTransition":393,"./StarBlockStartState":395,"./StarLoopEntryState":396,"./StarLoopbackState":397,"./TokensStartState":398,"./WildcardTransition":400}],342:[function(require,module,exports){
|
|
63794
63856
|
"use strict";
|
|
63795
63857
|
/*!
|
|
63796
63858
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63854,7 +63916,7 @@ exports.ATNSimulator = ATNSimulator;
|
|
|
63854
63916
|
})(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
|
|
63855
63917
|
exports.ATNSimulator = ATNSimulator;
|
|
63856
63918
|
|
|
63857
|
-
},{"../Decorators":
|
|
63919
|
+
},{"../Decorators":304,"../dfa/DFAState":404,"./ATNConfigSet":339,"./PredictionContext":384}],343:[function(require,module,exports){
|
|
63858
63920
|
"use strict";
|
|
63859
63921
|
/*!
|
|
63860
63922
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64041,7 +64103,7 @@ exports.ATNState = ATNState;
|
|
|
64041
64103
|
ATNState.INVALID_STATE_NUMBER = -1;
|
|
64042
64104
|
})(ATNState = exports.ATNState || (exports.ATNState = {}));
|
|
64043
64105
|
|
|
64044
|
-
},{"../Decorators":
|
|
64106
|
+
},{"../Decorators":304}],344:[function(require,module,exports){
|
|
64045
64107
|
"use strict";
|
|
64046
64108
|
/*!
|
|
64047
64109
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64067,7 +64129,7 @@ var ATNStateType;
|
|
|
64067
64129
|
ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
|
|
64068
64130
|
})(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
|
|
64069
64131
|
|
|
64070
|
-
},{}],
|
|
64132
|
+
},{}],345:[function(require,module,exports){
|
|
64071
64133
|
"use strict";
|
|
64072
64134
|
/*!
|
|
64073
64135
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64087,7 +64149,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
|
|
|
64087
64149
|
}
|
|
64088
64150
|
exports.AbstractPredicateTransition = AbstractPredicateTransition;
|
|
64089
64151
|
|
|
64090
|
-
},{"./Transition":
|
|
64152
|
+
},{"./Transition":399}],346:[function(require,module,exports){
|
|
64091
64153
|
"use strict";
|
|
64092
64154
|
/*!
|
|
64093
64155
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64143,7 +64205,7 @@ ActionTransition = __decorate([
|
|
|
64143
64205
|
], ActionTransition);
|
|
64144
64206
|
exports.ActionTransition = ActionTransition;
|
|
64145
64207
|
|
|
64146
|
-
},{"../Decorators":
|
|
64208
|
+
},{"../Decorators":304,"./Transition":399}],347:[function(require,module,exports){
|
|
64147
64209
|
"use strict";
|
|
64148
64210
|
/*!
|
|
64149
64211
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64230,7 +64292,7 @@ AmbiguityInfo = __decorate([
|
|
|
64230
64292
|
], AmbiguityInfo);
|
|
64231
64293
|
exports.AmbiguityInfo = AmbiguityInfo;
|
|
64232
64294
|
|
|
64233
|
-
},{"../Decorators":
|
|
64295
|
+
},{"../Decorators":304,"./DecisionEventInfo":355}],348:[function(require,module,exports){
|
|
64234
64296
|
"use strict";
|
|
64235
64297
|
/*!
|
|
64236
64298
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64288,7 +64350,7 @@ AtomTransition = __decorate([
|
|
|
64288
64350
|
], AtomTransition);
|
|
64289
64351
|
exports.AtomTransition = AtomTransition;
|
|
64290
64352
|
|
|
64291
|
-
},{"../Decorators":
|
|
64353
|
+
},{"../Decorators":304,"../misc/IntervalSet":417,"./Transition":399}],349:[function(require,module,exports){
|
|
64292
64354
|
"use strict";
|
|
64293
64355
|
/*!
|
|
64294
64356
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64320,7 +64382,7 @@ __decorate([
|
|
|
64320
64382
|
], BasicBlockStartState.prototype, "stateType", null);
|
|
64321
64383
|
exports.BasicBlockStartState = BasicBlockStartState;
|
|
64322
64384
|
|
|
64323
|
-
},{"../Decorators":
|
|
64385
|
+
},{"../Decorators":304,"./ATNStateType":344,"./BlockStartState":352}],350:[function(require,module,exports){
|
|
64324
64386
|
"use strict";
|
|
64325
64387
|
/*!
|
|
64326
64388
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64352,7 +64414,7 @@ __decorate([
|
|
|
64352
64414
|
], BasicState.prototype, "stateType", null);
|
|
64353
64415
|
exports.BasicState = BasicState;
|
|
64354
64416
|
|
|
64355
|
-
},{"../Decorators":
|
|
64417
|
+
},{"../Decorators":304,"./ATNState":343,"./ATNStateType":344}],351:[function(require,module,exports){
|
|
64356
64418
|
"use strict";
|
|
64357
64419
|
/*!
|
|
64358
64420
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64381,7 +64443,7 @@ __decorate([
|
|
|
64381
64443
|
], BlockEndState.prototype, "stateType", null);
|
|
64382
64444
|
exports.BlockEndState = BlockEndState;
|
|
64383
64445
|
|
|
64384
|
-
},{"../Decorators":
|
|
64446
|
+
},{"../Decorators":304,"./ATNState":343,"./ATNStateType":344}],352:[function(require,module,exports){
|
|
64385
64447
|
"use strict";
|
|
64386
64448
|
/*!
|
|
64387
64449
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64395,7 +64457,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
|
|
|
64395
64457
|
}
|
|
64396
64458
|
exports.BlockStartState = BlockStartState;
|
|
64397
64459
|
|
|
64398
|
-
},{"./DecisionState":
|
|
64460
|
+
},{"./DecisionState":357}],353:[function(require,module,exports){
|
|
64399
64461
|
"use strict";
|
|
64400
64462
|
/*!
|
|
64401
64463
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64465,7 +64527,7 @@ __decorate([
|
|
|
64465
64527
|
], ConflictInfo.prototype, "hashCode", null);
|
|
64466
64528
|
exports.ConflictInfo = ConflictInfo;
|
|
64467
64529
|
|
|
64468
|
-
},{"../Decorators":
|
|
64530
|
+
},{"../Decorators":304,"../misc/Utils":423}],354:[function(require,module,exports){
|
|
64469
64531
|
"use strict";
|
|
64470
64532
|
/*!
|
|
64471
64533
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64525,7 +64587,7 @@ ContextSensitivityInfo = __decorate([
|
|
|
64525
64587
|
], ContextSensitivityInfo);
|
|
64526
64588
|
exports.ContextSensitivityInfo = ContextSensitivityInfo;
|
|
64527
64589
|
|
|
64528
|
-
},{"../Decorators":
|
|
64590
|
+
},{"../Decorators":304,"./DecisionEventInfo":355}],355:[function(require,module,exports){
|
|
64529
64591
|
"use strict";
|
|
64530
64592
|
/*!
|
|
64531
64593
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64577,7 +64639,7 @@ DecisionEventInfo = __decorate([
|
|
|
64577
64639
|
], DecisionEventInfo);
|
|
64578
64640
|
exports.DecisionEventInfo = DecisionEventInfo;
|
|
64579
64641
|
|
|
64580
|
-
},{"../Decorators":
|
|
64642
|
+
},{"../Decorators":304}],356:[function(require,module,exports){
|
|
64581
64643
|
"use strict";
|
|
64582
64644
|
/*!
|
|
64583
64645
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64790,7 +64852,7 @@ __decorate([
|
|
|
64790
64852
|
], DecisionInfo.prototype, "toString", null);
|
|
64791
64853
|
exports.DecisionInfo = DecisionInfo;
|
|
64792
64854
|
|
|
64793
|
-
},{"../Decorators":
|
|
64855
|
+
},{"../Decorators":304}],357:[function(require,module,exports){
|
|
64794
64856
|
"use strict";
|
|
64795
64857
|
/*!
|
|
64796
64858
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64810,7 +64872,7 @@ class DecisionState extends ATNState_1.ATNState {
|
|
|
64810
64872
|
}
|
|
64811
64873
|
exports.DecisionState = DecisionState;
|
|
64812
64874
|
|
|
64813
|
-
},{"./ATNState":
|
|
64875
|
+
},{"./ATNState":343}],358:[function(require,module,exports){
|
|
64814
64876
|
"use strict";
|
|
64815
64877
|
/*!
|
|
64816
64878
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64876,7 +64938,7 @@ EpsilonTransition = __decorate([
|
|
|
64876
64938
|
], EpsilonTransition);
|
|
64877
64939
|
exports.EpsilonTransition = EpsilonTransition;
|
|
64878
64940
|
|
|
64879
|
-
},{"../Decorators":
|
|
64941
|
+
},{"../Decorators":304,"./Transition":399}],359:[function(require,module,exports){
|
|
64880
64942
|
"use strict";
|
|
64881
64943
|
/*!
|
|
64882
64944
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64929,7 +64991,7 @@ ErrorInfo = __decorate([
|
|
|
64929
64991
|
], ErrorInfo);
|
|
64930
64992
|
exports.ErrorInfo = ErrorInfo;
|
|
64931
64993
|
|
|
64932
|
-
},{"../Decorators":
|
|
64994
|
+
},{"../Decorators":304,"./DecisionEventInfo":355}],360:[function(require,module,exports){
|
|
64933
64995
|
"use strict";
|
|
64934
64996
|
/*!
|
|
64935
64997
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64960,7 +65022,7 @@ __decorate([
|
|
|
64960
65022
|
], InvalidState.prototype, "stateType", null);
|
|
64961
65023
|
exports.InvalidState = InvalidState;
|
|
64962
65024
|
|
|
64963
|
-
},{"../Decorators":
|
|
65025
|
+
},{"../Decorators":304,"./ATNStateType":344,"./BasicState":350}],361:[function(require,module,exports){
|
|
64964
65026
|
"use strict";
|
|
64965
65027
|
/*!
|
|
64966
65028
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65182,7 +65244,7 @@ LL1Analyzer = __decorate([
|
|
|
65182
65244
|
], LL1Analyzer);
|
|
65183
65245
|
exports.LL1Analyzer = LL1Analyzer;
|
|
65184
65246
|
|
|
65185
|
-
},{"../Decorators":
|
|
65247
|
+
},{"../Decorators":304,"../Token":329,"../misc/Array2DHashSet":408,"../misc/BitSet":411,"../misc/IntervalSet":417,"../misc/ObjectEqualityComparator":420,"./ATNConfig":338,"./AbstractPredicateTransition":345,"./NotSetTransition":375,"./PredictionContext":384,"./RuleStopState":390,"./RuleTransition":391,"./WildcardTransition":400}],362:[function(require,module,exports){
|
|
65186
65248
|
"use strict";
|
|
65187
65249
|
/*!
|
|
65188
65250
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65899,7 +65961,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
|
|
|
65899
65961
|
})(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
|
|
65900
65962
|
exports.LexerATNSimulator = LexerATNSimulator;
|
|
65901
65963
|
|
|
65902
|
-
},{"../Decorators":
|
|
65964
|
+
},{"../Decorators":304,"../IntStream":310,"../Lexer":312,"../LexerNoViableAltException":314,"../Token":329,"../dfa/AcceptStateInfo":401,"../dfa/DFAState":404,"../misc/Interval":416,"./ATN":337,"./ATNConfig":338,"./ATNConfigSet":339,"./ATNSimulator":342,"./LexerActionExecutor":363,"./OrderedATNConfigSet":376,"./PredictionContext":384,"./RuleStopState":390,"assert":447}],363:[function(require,module,exports){
|
|
65903
65965
|
"use strict";
|
|
65904
65966
|
/*!
|
|
65905
65967
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66100,7 +66162,7 @@ LexerActionExecutor = __decorate([
|
|
|
66100
66162
|
], LexerActionExecutor);
|
|
66101
66163
|
exports.LexerActionExecutor = LexerActionExecutor;
|
|
66102
66164
|
|
|
66103
|
-
},{"../Decorators":
|
|
66165
|
+
},{"../Decorators":304,"../misc/ArrayEqualityComparator":409,"../misc/MurmurHash":419,"./LexerIndexedCustomAction":366}],364:[function(require,module,exports){
|
|
66104
66166
|
"use strict";
|
|
66105
66167
|
/*!
|
|
66106
66168
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66205,7 +66267,7 @@ __decorate([
|
|
|
66205
66267
|
], LexerChannelAction.prototype, "toString", null);
|
|
66206
66268
|
exports.LexerChannelAction = LexerChannelAction;
|
|
66207
66269
|
|
|
66208
|
-
},{"../Decorators":
|
|
66270
|
+
},{"../Decorators":304,"../misc/MurmurHash":419}],365:[function(require,module,exports){
|
|
66209
66271
|
"use strict";
|
|
66210
66272
|
/*!
|
|
66211
66273
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66334,7 +66396,7 @@ __decorate([
|
|
|
66334
66396
|
], LexerCustomAction.prototype, "equals", null);
|
|
66335
66397
|
exports.LexerCustomAction = LexerCustomAction;
|
|
66336
66398
|
|
|
66337
|
-
},{"../Decorators":
|
|
66399
|
+
},{"../Decorators":304,"../misc/MurmurHash":419}],366:[function(require,module,exports){
|
|
66338
66400
|
"use strict";
|
|
66339
66401
|
/*!
|
|
66340
66402
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66469,7 +66531,7 @@ LexerIndexedCustomAction = __decorate([
|
|
|
66469
66531
|
], LexerIndexedCustomAction);
|
|
66470
66532
|
exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
|
|
66471
66533
|
|
|
66472
|
-
},{"../Decorators":
|
|
66534
|
+
},{"../Decorators":304,"../misc/MurmurHash":419}],367:[function(require,module,exports){
|
|
66473
66535
|
"use strict";
|
|
66474
66536
|
/*!
|
|
66475
66537
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66574,7 +66636,7 @@ __decorate([
|
|
|
66574
66636
|
], LexerModeAction.prototype, "toString", null);
|
|
66575
66637
|
exports.LexerModeAction = LexerModeAction;
|
|
66576
66638
|
|
|
66577
|
-
},{"../Decorators":
|
|
66639
|
+
},{"../Decorators":304,"../misc/MurmurHash":419}],368:[function(require,module,exports){
|
|
66578
66640
|
"use strict";
|
|
66579
66641
|
/*!
|
|
66580
66642
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66670,7 +66732,7 @@ exports.LexerMoreAction = LexerMoreAction;
|
|
|
66670
66732
|
LexerMoreAction.INSTANCE = new LexerMoreAction();
|
|
66671
66733
|
})(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
|
|
66672
66734
|
|
|
66673
|
-
},{"../Decorators":
|
|
66735
|
+
},{"../Decorators":304,"../misc/MurmurHash":419}],369:[function(require,module,exports){
|
|
66674
66736
|
"use strict";
|
|
66675
66737
|
/*!
|
|
66676
66738
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66766,7 +66828,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
|
|
|
66766
66828
|
LexerPopModeAction.INSTANCE = new LexerPopModeAction();
|
|
66767
66829
|
})(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
|
|
66768
66830
|
|
|
66769
|
-
},{"../Decorators":
|
|
66831
|
+
},{"../Decorators":304,"../misc/MurmurHash":419}],370:[function(require,module,exports){
|
|
66770
66832
|
"use strict";
|
|
66771
66833
|
/*!
|
|
66772
66834
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66871,7 +66933,7 @@ __decorate([
|
|
|
66871
66933
|
], LexerPushModeAction.prototype, "toString", null);
|
|
66872
66934
|
exports.LexerPushModeAction = LexerPushModeAction;
|
|
66873
66935
|
|
|
66874
|
-
},{"../Decorators":
|
|
66936
|
+
},{"../Decorators":304,"../misc/MurmurHash":419}],371:[function(require,module,exports){
|
|
66875
66937
|
"use strict";
|
|
66876
66938
|
/*!
|
|
66877
66939
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66967,7 +67029,7 @@ exports.LexerSkipAction = LexerSkipAction;
|
|
|
66967
67029
|
LexerSkipAction.INSTANCE = new LexerSkipAction();
|
|
66968
67030
|
})(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
|
|
66969
67031
|
|
|
66970
|
-
},{"../Decorators":
|
|
67032
|
+
},{"../Decorators":304,"../misc/MurmurHash":419}],372:[function(require,module,exports){
|
|
66971
67033
|
"use strict";
|
|
66972
67034
|
/*!
|
|
66973
67035
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67071,7 +67133,7 @@ __decorate([
|
|
|
67071
67133
|
], LexerTypeAction.prototype, "toString", null);
|
|
67072
67134
|
exports.LexerTypeAction = LexerTypeAction;
|
|
67073
67135
|
|
|
67074
|
-
},{"../Decorators":
|
|
67136
|
+
},{"../Decorators":304,"../misc/MurmurHash":419}],373:[function(require,module,exports){
|
|
67075
67137
|
"use strict";
|
|
67076
67138
|
/*!
|
|
67077
67139
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67123,7 +67185,7 @@ LookaheadEventInfo = __decorate([
|
|
|
67123
67185
|
], LookaheadEventInfo);
|
|
67124
67186
|
exports.LookaheadEventInfo = LookaheadEventInfo;
|
|
67125
67187
|
|
|
67126
|
-
},{"../Decorators":
|
|
67188
|
+
},{"../Decorators":304,"./DecisionEventInfo":355}],374:[function(require,module,exports){
|
|
67127
67189
|
"use strict";
|
|
67128
67190
|
/*!
|
|
67129
67191
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67152,7 +67214,7 @@ __decorate([
|
|
|
67152
67214
|
], LoopEndState.prototype, "stateType", null);
|
|
67153
67215
|
exports.LoopEndState = LoopEndState;
|
|
67154
67216
|
|
|
67155
|
-
},{"../Decorators":
|
|
67217
|
+
},{"../Decorators":304,"./ATNState":343,"./ATNStateType":344}],375:[function(require,module,exports){
|
|
67156
67218
|
"use strict";
|
|
67157
67219
|
/*!
|
|
67158
67220
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67201,7 +67263,7 @@ NotSetTransition = __decorate([
|
|
|
67201
67263
|
], NotSetTransition);
|
|
67202
67264
|
exports.NotSetTransition = NotSetTransition;
|
|
67203
67265
|
|
|
67204
|
-
},{"../Decorators":
|
|
67266
|
+
},{"../Decorators":304,"./SetTransition":393}],376:[function(require,module,exports){
|
|
67205
67267
|
"use strict";
|
|
67206
67268
|
/*!
|
|
67207
67269
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67256,7 +67318,7 @@ __decorate([
|
|
|
67256
67318
|
], OrderedATNConfigSet.prototype, "canMerge", null);
|
|
67257
67319
|
exports.OrderedATNConfigSet = OrderedATNConfigSet;
|
|
67258
67320
|
|
|
67259
|
-
},{"../Decorators":
|
|
67321
|
+
},{"../Decorators":304,"./ATNConfigSet":339}],377:[function(require,module,exports){
|
|
67260
67322
|
"use strict";
|
|
67261
67323
|
/*!
|
|
67262
67324
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67418,7 +67480,7 @@ ParseInfo = __decorate([
|
|
|
67418
67480
|
], ParseInfo);
|
|
67419
67481
|
exports.ParseInfo = ParseInfo;
|
|
67420
67482
|
|
|
67421
|
-
},{"../Decorators":
|
|
67483
|
+
},{"../Decorators":304}],378:[function(require,module,exports){
|
|
67422
67484
|
"use strict";
|
|
67423
67485
|
/*!
|
|
67424
67486
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69691,7 +69753,7 @@ ParserATNSimulator = __decorate([
|
|
|
69691
69753
|
], ParserATNSimulator);
|
|
69692
69754
|
exports.ParserATNSimulator = ParserATNSimulator;
|
|
69693
69755
|
|
|
69694
|
-
},{"../Decorators":
|
|
69756
|
+
},{"../Decorators":304,"../IntStream":310,"../NoViableAltException":316,"../ParserRuleContext":320,"../Token":329,"../VocabularyImpl":335,"../dfa/AcceptStateInfo":401,"../dfa/DFAState":404,"../misc/Array2DHashSet":408,"../misc/Arrays":410,"../misc/BitSet":411,"../misc/IntegerList":414,"../misc/Interval":416,"../misc/ObjectEqualityComparator":420,"./ATN":337,"./ATNConfig":338,"./ATNConfigSet":339,"./ATNSimulator":342,"./ATNStateType":344,"./ActionTransition":346,"./AtomTransition":348,"./ConflictInfo":353,"./DecisionState":357,"./NotSetTransition":375,"./PredictionContext":384,"./PredictionContextCache":385,"./PredictionMode":386,"./RuleStopState":390,"./RuleTransition":391,"./SemanticContext":392,"./SetTransition":393,"./SimulatorState":394,"assert":447}],379:[function(require,module,exports){
|
|
69695
69757
|
"use strict";
|
|
69696
69758
|
/*!
|
|
69697
69759
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69724,7 +69786,7 @@ __decorate([
|
|
|
69724
69786
|
], PlusBlockStartState.prototype, "stateType", null);
|
|
69725
69787
|
exports.PlusBlockStartState = PlusBlockStartState;
|
|
69726
69788
|
|
|
69727
|
-
},{"../Decorators":
|
|
69789
|
+
},{"../Decorators":304,"./ATNStateType":344,"./BlockStartState":352}],380:[function(require,module,exports){
|
|
69728
69790
|
"use strict";
|
|
69729
69791
|
/*!
|
|
69730
69792
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69755,7 +69817,7 @@ __decorate([
|
|
|
69755
69817
|
], PlusLoopbackState.prototype, "stateType", null);
|
|
69756
69818
|
exports.PlusLoopbackState = PlusLoopbackState;
|
|
69757
69819
|
|
|
69758
|
-
},{"../Decorators":
|
|
69820
|
+
},{"../Decorators":304,"./ATNStateType":344,"./DecisionState":357}],381:[function(require,module,exports){
|
|
69759
69821
|
"use strict";
|
|
69760
69822
|
/*!
|
|
69761
69823
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69818,7 +69880,7 @@ PrecedencePredicateTransition = __decorate([
|
|
|
69818
69880
|
], PrecedencePredicateTransition);
|
|
69819
69881
|
exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
|
|
69820
69882
|
|
|
69821
|
-
},{"../Decorators":
|
|
69883
|
+
},{"../Decorators":304,"./AbstractPredicateTransition":345,"./SemanticContext":392}],382:[function(require,module,exports){
|
|
69822
69884
|
"use strict";
|
|
69823
69885
|
/*!
|
|
69824
69886
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69881,7 +69943,7 @@ PredicateEvalInfo = __decorate([
|
|
|
69881
69943
|
], PredicateEvalInfo);
|
|
69882
69944
|
exports.PredicateEvalInfo = PredicateEvalInfo;
|
|
69883
69945
|
|
|
69884
|
-
},{"../Decorators":
|
|
69946
|
+
},{"../Decorators":304,"./DecisionEventInfo":355}],383:[function(require,module,exports){
|
|
69885
69947
|
"use strict";
|
|
69886
69948
|
/*!
|
|
69887
69949
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69947,7 +70009,7 @@ PredicateTransition = __decorate([
|
|
|
69947
70009
|
], PredicateTransition);
|
|
69948
70010
|
exports.PredicateTransition = PredicateTransition;
|
|
69949
70011
|
|
|
69950
|
-
},{"../Decorators":
|
|
70012
|
+
},{"../Decorators":304,"./AbstractPredicateTransition":345,"./SemanticContext":392}],384:[function(require,module,exports){
|
|
69951
70013
|
"use strict";
|
|
69952
70014
|
/*!
|
|
69953
70015
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70638,7 +70700,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
|
|
|
70638
70700
|
PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
|
|
70639
70701
|
})(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
|
|
70640
70702
|
|
|
70641
|
-
},{"../Decorators":
|
|
70703
|
+
},{"../Decorators":304,"../misc/Array2DHashMap":407,"../misc/Array2DHashSet":408,"../misc/Arrays":410,"../misc/MurmurHash":419,"./PredictionContextCache":385,"assert":447}],385:[function(require,module,exports){
|
|
70642
70704
|
"use strict";
|
|
70643
70705
|
/*!
|
|
70644
70706
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70779,7 +70841,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
|
|
|
70779
70841
|
PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
|
|
70780
70842
|
})(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
|
|
70781
70843
|
|
|
70782
|
-
},{"../Decorators":
|
|
70844
|
+
},{"../Decorators":304,"../misc/Array2DHashMap":407,"../misc/ObjectEqualityComparator":420,"./PredictionContext":384,"assert":447}],386:[function(require,module,exports){
|
|
70783
70845
|
"use strict";
|
|
70784
70846
|
/*!
|
|
70785
70847
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70940,7 +71002,7 @@ var PredictionMode;
|
|
|
70940
71002
|
PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
|
|
70941
71003
|
})(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
|
|
70942
71004
|
|
|
70943
|
-
},{"../Decorators":
|
|
71005
|
+
},{"../Decorators":304,"../misc/Array2DHashMap":407,"../misc/MurmurHash":419,"./RuleStopState":390}],387:[function(require,module,exports){
|
|
70944
71006
|
(function (process){(function (){
|
|
70945
71007
|
"use strict";
|
|
70946
71008
|
/*!
|
|
@@ -71209,7 +71271,7 @@ __decorate([
|
|
|
71209
71271
|
exports.ProfilingATNSimulator = ProfilingATNSimulator;
|
|
71210
71272
|
|
|
71211
71273
|
}).call(this)}).call(this,require('_process'))
|
|
71212
|
-
},{"../Decorators":
|
|
71274
|
+
},{"../Decorators":304,"./ATN":337,"./ATNSimulator":342,"./AmbiguityInfo":347,"./ContextSensitivityInfo":354,"./DecisionInfo":356,"./ErrorInfo":359,"./LookaheadEventInfo":373,"./ParserATNSimulator":378,"./PredicateEvalInfo":382,"./SemanticContext":392,"./SimulatorState":394,"_process":506}],388:[function(require,module,exports){
|
|
71213
71275
|
"use strict";
|
|
71214
71276
|
/*!
|
|
71215
71277
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71267,7 +71329,7 @@ RangeTransition = __decorate([
|
|
|
71267
71329
|
], RangeTransition);
|
|
71268
71330
|
exports.RangeTransition = RangeTransition;
|
|
71269
71331
|
|
|
71270
|
-
},{"../Decorators":
|
|
71332
|
+
},{"../Decorators":304,"../misc/IntervalSet":417,"./Transition":399}],389:[function(require,module,exports){
|
|
71271
71333
|
"use strict";
|
|
71272
71334
|
/*!
|
|
71273
71335
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71300,7 +71362,7 @@ __decorate([
|
|
|
71300
71362
|
], RuleStartState.prototype, "stateType", null);
|
|
71301
71363
|
exports.RuleStartState = RuleStartState;
|
|
71302
71364
|
|
|
71303
|
-
},{"../Decorators":
|
|
71365
|
+
},{"../Decorators":304,"./ATNState":343,"./ATNStateType":344}],390:[function(require,module,exports){
|
|
71304
71366
|
"use strict";
|
|
71305
71367
|
/*!
|
|
71306
71368
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71339,7 +71401,7 @@ __decorate([
|
|
|
71339
71401
|
], RuleStopState.prototype, "stateType", null);
|
|
71340
71402
|
exports.RuleStopState = RuleStopState;
|
|
71341
71403
|
|
|
71342
|
-
},{"../Decorators":
|
|
71404
|
+
},{"../Decorators":304,"./ATNState":343,"./ATNStateType":344}],391:[function(require,module,exports){
|
|
71343
71405
|
"use strict";
|
|
71344
71406
|
/*!
|
|
71345
71407
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71395,7 +71457,7 @@ RuleTransition = __decorate([
|
|
|
71395
71457
|
], RuleTransition);
|
|
71396
71458
|
exports.RuleTransition = RuleTransition;
|
|
71397
71459
|
|
|
71398
|
-
},{"../Decorators":
|
|
71460
|
+
},{"../Decorators":304,"./Transition":399}],392:[function(require,module,exports){
|
|
71399
71461
|
"use strict";
|
|
71400
71462
|
/*!
|
|
71401
71463
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71875,7 +71937,7 @@ exports.SemanticContext = SemanticContext;
|
|
|
71875
71937
|
SemanticContext.OR = OR;
|
|
71876
71938
|
})(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
|
|
71877
71939
|
|
|
71878
|
-
},{"../Decorators":
|
|
71940
|
+
},{"../Decorators":304,"../misc/Array2DHashSet":408,"../misc/ArrayEqualityComparator":409,"../misc/MurmurHash":419,"../misc/ObjectEqualityComparator":420,"../misc/Utils":423}],393:[function(require,module,exports){
|
|
71879
71941
|
"use strict";
|
|
71880
71942
|
/*!
|
|
71881
71943
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71941,7 +72003,7 @@ SetTransition = __decorate([
|
|
|
71941
72003
|
], SetTransition);
|
|
71942
72004
|
exports.SetTransition = SetTransition;
|
|
71943
72005
|
|
|
71944
|
-
},{"../Decorators":
|
|
72006
|
+
},{"../Decorators":304,"../Token":329,"../misc/IntervalSet":417,"./Transition":399}],394:[function(require,module,exports){
|
|
71945
72007
|
"use strict";
|
|
71946
72008
|
/*!
|
|
71947
72009
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71977,7 +72039,7 @@ SimulatorState = __decorate([
|
|
|
71977
72039
|
], SimulatorState);
|
|
71978
72040
|
exports.SimulatorState = SimulatorState;
|
|
71979
72041
|
|
|
71980
|
-
},{"../Decorators":
|
|
72042
|
+
},{"../Decorators":304,"../ParserRuleContext":320}],395:[function(require,module,exports){
|
|
71981
72043
|
"use strict";
|
|
71982
72044
|
/*!
|
|
71983
72045
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72005,7 +72067,7 @@ __decorate([
|
|
|
72005
72067
|
], StarBlockStartState.prototype, "stateType", null);
|
|
72006
72068
|
exports.StarBlockStartState = StarBlockStartState;
|
|
72007
72069
|
|
|
72008
|
-
},{"../Decorators":
|
|
72070
|
+
},{"../Decorators":304,"./ATNStateType":344,"./BlockStartState":352}],396:[function(require,module,exports){
|
|
72009
72071
|
"use strict";
|
|
72010
72072
|
/*!
|
|
72011
72073
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72062,7 +72124,7 @@ __decorate([
|
|
|
72062
72124
|
], StarLoopEntryState.prototype, "stateType", null);
|
|
72063
72125
|
exports.StarLoopEntryState = StarLoopEntryState;
|
|
72064
72126
|
|
|
72065
|
-
},{"../Decorators":
|
|
72127
|
+
},{"../Decorators":304,"../misc/BitSet":411,"./ATNStateType":344,"./DecisionState":357}],397:[function(require,module,exports){
|
|
72066
72128
|
"use strict";
|
|
72067
72129
|
/*!
|
|
72068
72130
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72093,7 +72155,7 @@ __decorate([
|
|
|
72093
72155
|
], StarLoopbackState.prototype, "stateType", null);
|
|
72094
72156
|
exports.StarLoopbackState = StarLoopbackState;
|
|
72095
72157
|
|
|
72096
|
-
},{"../Decorators":
|
|
72158
|
+
},{"../Decorators":304,"./ATNState":343,"./ATNStateType":344}],398:[function(require,module,exports){
|
|
72097
72159
|
"use strict";
|
|
72098
72160
|
/*!
|
|
72099
72161
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72122,7 +72184,7 @@ __decorate([
|
|
|
72122
72184
|
], TokensStartState.prototype, "stateType", null);
|
|
72123
72185
|
exports.TokensStartState = TokensStartState;
|
|
72124
72186
|
|
|
72125
|
-
},{"../Decorators":
|
|
72187
|
+
},{"../Decorators":304,"./ATNStateType":344,"./DecisionState":357}],399:[function(require,module,exports){
|
|
72126
72188
|
"use strict";
|
|
72127
72189
|
/*!
|
|
72128
72190
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72196,7 +72258,7 @@ Transition = __decorate([
|
|
|
72196
72258
|
], Transition);
|
|
72197
72259
|
exports.Transition = Transition;
|
|
72198
72260
|
|
|
72199
|
-
},{"../Decorators":
|
|
72261
|
+
},{"../Decorators":304}],400:[function(require,module,exports){
|
|
72200
72262
|
"use strict";
|
|
72201
72263
|
/*!
|
|
72202
72264
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72244,7 +72306,7 @@ WildcardTransition = __decorate([
|
|
|
72244
72306
|
], WildcardTransition);
|
|
72245
72307
|
exports.WildcardTransition = WildcardTransition;
|
|
72246
72308
|
|
|
72247
|
-
},{"../Decorators":
|
|
72309
|
+
},{"../Decorators":304,"./Transition":399}],401:[function(require,module,exports){
|
|
72248
72310
|
"use strict";
|
|
72249
72311
|
/*!
|
|
72250
72312
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72286,7 +72348,7 @@ class AcceptStateInfo {
|
|
|
72286
72348
|
}
|
|
72287
72349
|
exports.AcceptStateInfo = AcceptStateInfo;
|
|
72288
72350
|
|
|
72289
|
-
},{}],
|
|
72351
|
+
},{}],402:[function(require,module,exports){
|
|
72290
72352
|
"use strict";
|
|
72291
72353
|
/*!
|
|
72292
72354
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72461,7 +72523,7 @@ DFA = __decorate([
|
|
|
72461
72523
|
], DFA);
|
|
72462
72524
|
exports.DFA = DFA;
|
|
72463
72525
|
|
|
72464
|
-
},{"../Decorators":
|
|
72526
|
+
},{"../Decorators":304,"../VocabularyImpl":335,"../atn/ATNConfigSet":339,"../atn/StarLoopEntryState":396,"../misc/Array2DHashSet":408,"../misc/ObjectEqualityComparator":420,"./DFASerializer":403,"./DFAState":404,"./LexerDFASerializer":405}],403:[function(require,module,exports){
|
|
72465
72527
|
"use strict";
|
|
72466
72528
|
/*!
|
|
72467
72529
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72603,7 +72665,7 @@ __decorate([
|
|
|
72603
72665
|
], DFASerializer.prototype, "toString", null);
|
|
72604
72666
|
exports.DFASerializer = DFASerializer;
|
|
72605
72667
|
|
|
72606
|
-
},{"../Decorators":
|
|
72668
|
+
},{"../Decorators":304,"../Recognizer":324,"../VocabularyImpl":335,"../atn/ATNSimulator":342,"../atn/PredictionContext":384}],404:[function(require,module,exports){
|
|
72607
72669
|
"use strict";
|
|
72608
72670
|
/*!
|
|
72609
72671
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72834,7 +72896,7 @@ exports.DFAState = DFAState;
|
|
|
72834
72896
|
DFAState.PredPrediction = PredPrediction;
|
|
72835
72897
|
})(DFAState = exports.DFAState || (exports.DFAState = {}));
|
|
72836
72898
|
|
|
72837
|
-
},{"../Decorators":
|
|
72899
|
+
},{"../Decorators":304,"../atn/ATN":337,"../atn/PredictionContext":384,"../misc/BitSet":411,"../misc/MurmurHash":419,"assert":447}],405:[function(require,module,exports){
|
|
72838
72900
|
"use strict";
|
|
72839
72901
|
/*!
|
|
72840
72902
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72871,7 +72933,7 @@ LexerDFASerializer = __decorate([
|
|
|
72871
72933
|
], LexerDFASerializer);
|
|
72872
72934
|
exports.LexerDFASerializer = LexerDFASerializer;
|
|
72873
72935
|
|
|
72874
|
-
},{"../Decorators":
|
|
72936
|
+
},{"../Decorators":304,"../VocabularyImpl":335,"./DFASerializer":403}],406:[function(require,module,exports){
|
|
72875
72937
|
"use strict";
|
|
72876
72938
|
/*!
|
|
72877
72939
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72937,7 +72999,7 @@ __exportStar(require("./Vocabulary"), exports);
|
|
|
72937
72999
|
__exportStar(require("./VocabularyImpl"), exports);
|
|
72938
73000
|
__exportStar(require("./WritableToken"), exports);
|
|
72939
73001
|
|
|
72940
|
-
},{"./ANTLRErrorListener":
|
|
73002
|
+
},{"./ANTLRErrorListener":291,"./ANTLRErrorStrategy":292,"./ANTLRInputStream":293,"./BailErrorStrategy":294,"./BufferedTokenStream":295,"./CharStream":296,"./CharStreams":297,"./CodePointBuffer":298,"./CodePointCharStream":299,"./CommonToken":300,"./CommonTokenFactory":301,"./CommonTokenStream":302,"./ConsoleErrorListener":303,"./DefaultErrorStrategy":305,"./Dependents":306,"./DiagnosticErrorListener":307,"./FailedPredicateException":308,"./InputMismatchException":309,"./IntStream":310,"./InterpreterRuleContext":311,"./Lexer":312,"./LexerInterpreter":313,"./LexerNoViableAltException":314,"./ListTokenSource":315,"./NoViableAltException":316,"./Parser":317,"./ParserErrorListener":318,"./ParserInterpreter":319,"./ParserRuleContext":320,"./ProxyErrorListener":321,"./ProxyParserErrorListener":322,"./RecognitionException":323,"./Recognizer":324,"./RuleContext":325,"./RuleContextWithAltNum":326,"./RuleDependency":327,"./RuleVersion":328,"./Token":329,"./TokenFactory":330,"./TokenSource":331,"./TokenStream":332,"./TokenStreamRewriter":333,"./Vocabulary":334,"./VocabularyImpl":335,"./WritableToken":336}],407:[function(require,module,exports){
|
|
72941
73003
|
"use strict";
|
|
72942
73004
|
/*!
|
|
72943
73005
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73020,7 +73082,7 @@ class Array2DHashMap {
|
|
|
73020
73082
|
}
|
|
73021
73083
|
exports.Array2DHashMap = Array2DHashMap;
|
|
73022
73084
|
|
|
73023
|
-
},{"./Array2DHashSet":
|
|
73085
|
+
},{"./Array2DHashSet":408}],408:[function(require,module,exports){
|
|
73024
73086
|
"use strict";
|
|
73025
73087
|
/*!
|
|
73026
73088
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73387,7 +73449,7 @@ __decorate([
|
|
|
73387
73449
|
], Array2DHashSet.prototype, "createBuckets", null);
|
|
73388
73450
|
exports.Array2DHashSet = Array2DHashSet;
|
|
73389
73451
|
|
|
73390
|
-
},{"../Decorators":
|
|
73452
|
+
},{"../Decorators":304,"./DefaultEqualityComparator":413,"./MurmurHash":419,"assert":447}],409:[function(require,module,exports){
|
|
73391
73453
|
"use strict";
|
|
73392
73454
|
/*!
|
|
73393
73455
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73459,7 +73521,7 @@ __decorate([
|
|
|
73459
73521
|
], ArrayEqualityComparator.prototype, "equals", null);
|
|
73460
73522
|
exports.ArrayEqualityComparator = ArrayEqualityComparator;
|
|
73461
73523
|
|
|
73462
|
-
},{"../Decorators":
|
|
73524
|
+
},{"../Decorators":304,"./MurmurHash":419,"./ObjectEqualityComparator":420}],410:[function(require,module,exports){
|
|
73463
73525
|
"use strict";
|
|
73464
73526
|
/*!
|
|
73465
73527
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73529,7 +73591,7 @@ var Arrays;
|
|
|
73529
73591
|
Arrays.toString = toString;
|
|
73530
73592
|
})(Arrays = exports.Arrays || (exports.Arrays = {}));
|
|
73531
73593
|
|
|
73532
|
-
},{}],
|
|
73594
|
+
},{}],411:[function(require,module,exports){
|
|
73533
73595
|
"use strict";
|
|
73534
73596
|
/*!
|
|
73535
73597
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74201,7 +74263,7 @@ class BitSetIterator {
|
|
|
74201
74263
|
[Symbol.iterator]() { return this; }
|
|
74202
74264
|
}
|
|
74203
74265
|
|
|
74204
|
-
},{"./MurmurHash":
|
|
74266
|
+
},{"./MurmurHash":419,"util":511}],412:[function(require,module,exports){
|
|
74205
74267
|
"use strict";
|
|
74206
74268
|
/*!
|
|
74207
74269
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74222,7 +74284,7 @@ function isSupplementaryCodePoint(ch) {
|
|
|
74222
74284
|
}
|
|
74223
74285
|
exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
|
|
74224
74286
|
|
|
74225
|
-
},{}],
|
|
74287
|
+
},{}],413:[function(require,module,exports){
|
|
74226
74288
|
"use strict";
|
|
74227
74289
|
/*!
|
|
74228
74290
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74293,7 +74355,7 @@ __decorate([
|
|
|
74293
74355
|
], DefaultEqualityComparator.prototype, "equals", null);
|
|
74294
74356
|
exports.DefaultEqualityComparator = DefaultEqualityComparator;
|
|
74295
74357
|
|
|
74296
|
-
},{"../Decorators":
|
|
74358
|
+
},{"../Decorators":304,"./MurmurHash":419,"./ObjectEqualityComparator":420}],414:[function(require,module,exports){
|
|
74297
74359
|
"use strict";
|
|
74298
74360
|
/*!
|
|
74299
74361
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74587,7 +74649,7 @@ __decorate([
|
|
|
74587
74649
|
], IntegerList.prototype, "toString", null);
|
|
74588
74650
|
exports.IntegerList = IntegerList;
|
|
74589
74651
|
|
|
74590
|
-
},{"../Decorators":
|
|
74652
|
+
},{"../Decorators":304,"./Arrays":410}],415:[function(require,module,exports){
|
|
74591
74653
|
"use strict";
|
|
74592
74654
|
/*!
|
|
74593
74655
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74617,7 +74679,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
|
|
|
74617
74679
|
}
|
|
74618
74680
|
exports.IntegerStack = IntegerStack;
|
|
74619
74681
|
|
|
74620
|
-
},{"./IntegerList":
|
|
74682
|
+
},{"./IntegerList":414}],416:[function(require,module,exports){
|
|
74621
74683
|
"use strict";
|
|
74622
74684
|
/*!
|
|
74623
74685
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74760,7 +74822,7 @@ __decorate([
|
|
|
74760
74822
|
], Interval.prototype, "toString", null);
|
|
74761
74823
|
exports.Interval = Interval;
|
|
74762
74824
|
|
|
74763
|
-
},{"../Decorators":
|
|
74825
|
+
},{"../Decorators":304}],417:[function(require,module,exports){
|
|
74764
74826
|
"use strict";
|
|
74765
74827
|
/*!
|
|
74766
74828
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75406,7 +75468,7 @@ __decorate([
|
|
|
75406
75468
|
], IntervalSet, "subtract", null);
|
|
75407
75469
|
exports.IntervalSet = IntervalSet;
|
|
75408
75470
|
|
|
75409
|
-
},{"../Decorators":
|
|
75471
|
+
},{"../Decorators":304,"../Lexer":312,"../Token":329,"./ArrayEqualityComparator":409,"./IntegerList":414,"./Interval":416,"./MurmurHash":419}],418:[function(require,module,exports){
|
|
75410
75472
|
"use strict";
|
|
75411
75473
|
/*!
|
|
75412
75474
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75439,7 +75501,7 @@ class MultiMap extends Map {
|
|
|
75439
75501
|
}
|
|
75440
75502
|
exports.MultiMap = MultiMap;
|
|
75441
75503
|
|
|
75442
|
-
},{}],
|
|
75504
|
+
},{}],419:[function(require,module,exports){
|
|
75443
75505
|
"use strict";
|
|
75444
75506
|
/*!
|
|
75445
75507
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75554,7 +75616,7 @@ var MurmurHash;
|
|
|
75554
75616
|
}
|
|
75555
75617
|
})(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
|
|
75556
75618
|
|
|
75557
|
-
},{}],
|
|
75619
|
+
},{}],420:[function(require,module,exports){
|
|
75558
75620
|
"use strict";
|
|
75559
75621
|
/*!
|
|
75560
75622
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75613,7 +75675,7 @@ __decorate([
|
|
|
75613
75675
|
], ObjectEqualityComparator.prototype, "equals", null);
|
|
75614
75676
|
exports.ObjectEqualityComparator = ObjectEqualityComparator;
|
|
75615
75677
|
|
|
75616
|
-
},{"../Decorators":
|
|
75678
|
+
},{"../Decorators":304}],421:[function(require,module,exports){
|
|
75617
75679
|
"use strict";
|
|
75618
75680
|
/*!
|
|
75619
75681
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75642,7 +75704,7 @@ class ParseCancellationException extends Error {
|
|
|
75642
75704
|
}
|
|
75643
75705
|
exports.ParseCancellationException = ParseCancellationException;
|
|
75644
75706
|
|
|
75645
|
-
},{}],
|
|
75707
|
+
},{}],422:[function(require,module,exports){
|
|
75646
75708
|
"use strict";
|
|
75647
75709
|
/*!
|
|
75648
75710
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75696,7 +75758,7 @@ class UUID {
|
|
|
75696
75758
|
}
|
|
75697
75759
|
exports.UUID = UUID;
|
|
75698
75760
|
|
|
75699
|
-
},{"./MurmurHash":
|
|
75761
|
+
},{"./MurmurHash":419}],423:[function(require,module,exports){
|
|
75700
75762
|
"use strict";
|
|
75701
75763
|
/*!
|
|
75702
75764
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75871,7 +75933,7 @@ exports.toCharArray = toCharArray;
|
|
|
75871
75933
|
// return s;
|
|
75872
75934
|
// }
|
|
75873
75935
|
|
|
75874
|
-
},{}],
|
|
75936
|
+
},{}],424:[function(require,module,exports){
|
|
75875
75937
|
"use strict";
|
|
75876
75938
|
/*!
|
|
75877
75939
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76016,7 +76078,7 @@ __decorate([
|
|
|
76016
76078
|
], AbstractParseTreeVisitor.prototype, "shouldVisitNextChild", null);
|
|
76017
76079
|
exports.AbstractParseTreeVisitor = AbstractParseTreeVisitor;
|
|
76018
76080
|
|
|
76019
|
-
},{"../Decorators":
|
|
76081
|
+
},{"../Decorators":304}],425:[function(require,module,exports){
|
|
76020
76082
|
"use strict";
|
|
76021
76083
|
/*!
|
|
76022
76084
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76052,7 +76114,7 @@ __decorate([
|
|
|
76052
76114
|
], ErrorNode.prototype, "accept", null);
|
|
76053
76115
|
exports.ErrorNode = ErrorNode;
|
|
76054
76116
|
|
|
76055
|
-
},{"../Decorators":
|
|
76117
|
+
},{"../Decorators":304,"./TerminalNode":427}],426:[function(require,module,exports){
|
|
76056
76118
|
"use strict";
|
|
76057
76119
|
/*!
|
|
76058
76120
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76064,7 +76126,7 @@ class RuleNode {
|
|
|
76064
76126
|
}
|
|
76065
76127
|
exports.RuleNode = RuleNode;
|
|
76066
76128
|
|
|
76067
|
-
},{}],
|
|
76129
|
+
},{}],427:[function(require,module,exports){
|
|
76068
76130
|
"use strict";
|
|
76069
76131
|
/*!
|
|
76070
76132
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76156,7 +76218,7 @@ __decorate([
|
|
|
76156
76218
|
], TerminalNode.prototype, "toString", null);
|
|
76157
76219
|
exports.TerminalNode = TerminalNode;
|
|
76158
76220
|
|
|
76159
|
-
},{"../Decorators":
|
|
76221
|
+
},{"../Decorators":304,"../Token":329,"../misc/Interval":416}],428:[function(require,module,exports){
|
|
76160
76222
|
"use strict";
|
|
76161
76223
|
/*!
|
|
76162
76224
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76400,7 +76462,7 @@ __decorate([
|
|
|
76400
76462
|
], Trees, "getRootOfSubtreeEnclosingRegion", null);
|
|
76401
76463
|
exports.Trees = Trees;
|
|
76402
76464
|
|
|
76403
|
-
},{"../CommonToken":
|
|
76465
|
+
},{"../CommonToken":300,"../Decorators":304,"../Parser":317,"../ParserRuleContext":320,"../Token":329,"../atn/ATN":337,"../misc/Utils":423,"./ErrorNode":425,"./RuleNode":426,"./TerminalNode":427}],429:[function(require,module,exports){
|
|
76404
76466
|
"use strict";
|
|
76405
76467
|
/*!
|
|
76406
76468
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76424,7 +76486,7 @@ class Chunk {
|
|
|
76424
76486
|
}
|
|
76425
76487
|
exports.Chunk = Chunk;
|
|
76426
76488
|
|
|
76427
|
-
},{}],
|
|
76489
|
+
},{}],430:[function(require,module,exports){
|
|
76428
76490
|
"use strict";
|
|
76429
76491
|
/*!
|
|
76430
76492
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76604,7 +76666,7 @@ ParseTreeMatch = __decorate([
|
|
|
76604
76666
|
], ParseTreeMatch);
|
|
76605
76667
|
exports.ParseTreeMatch = ParseTreeMatch;
|
|
76606
76668
|
|
|
76607
|
-
},{"../../Decorators":
|
|
76669
|
+
},{"../../Decorators":304}],431:[function(require,module,exports){
|
|
76608
76670
|
"use strict";
|
|
76609
76671
|
/*!
|
|
76610
76672
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76762,7 +76824,7 @@ ParseTreePattern = __decorate([
|
|
|
76762
76824
|
], ParseTreePattern);
|
|
76763
76825
|
exports.ParseTreePattern = ParseTreePattern;
|
|
76764
76826
|
|
|
76765
|
-
},{"../../Decorators":
|
|
76827
|
+
},{"../../Decorators":304,"../xpath/XPath":437}],432:[function(require,module,exports){
|
|
76766
76828
|
"use strict";
|
|
76767
76829
|
/*!
|
|
76768
76830
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77240,7 +77302,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
|
|
|
77240
77302
|
ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
|
|
77241
77303
|
})(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
|
|
77242
77304
|
|
|
77243
|
-
},{"../../BailErrorStrategy":
|
|
77305
|
+
},{"../../BailErrorStrategy":294,"../../CharStreams":297,"../../CommonTokenStream":302,"../../Decorators":304,"../../ListTokenSource":315,"../../ParserInterpreter":319,"../../ParserRuleContext":320,"../../RecognitionException":323,"../../Token":329,"../../misc/MultiMap":418,"../../misc/ParseCancellationException":421,"../RuleNode":426,"../TerminalNode":427,"./ParseTreeMatch":430,"./ParseTreePattern":431,"./RuleTagToken":433,"./TagChunk":434,"./TextChunk":435,"./TokenTagToken":436}],433:[function(require,module,exports){
|
|
77244
77306
|
"use strict";
|
|
77245
77307
|
/*!
|
|
77246
77308
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77438,7 +77500,7 @@ RuleTagToken = __decorate([
|
|
|
77438
77500
|
], RuleTagToken);
|
|
77439
77501
|
exports.RuleTagToken = RuleTagToken;
|
|
77440
77502
|
|
|
77441
|
-
},{"../../Decorators":
|
|
77503
|
+
},{"../../Decorators":304,"../../Token":329}],434:[function(require,module,exports){
|
|
77442
77504
|
"use strict";
|
|
77443
77505
|
/*!
|
|
77444
77506
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77525,7 +77587,7 @@ __decorate([
|
|
|
77525
77587
|
], TagChunk.prototype, "toString", null);
|
|
77526
77588
|
exports.TagChunk = TagChunk;
|
|
77527
77589
|
|
|
77528
|
-
},{"../../Decorators":
|
|
77590
|
+
},{"../../Decorators":304,"./Chunk":429}],435:[function(require,module,exports){
|
|
77529
77591
|
"use strict";
|
|
77530
77592
|
/*!
|
|
77531
77593
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77595,7 +77657,7 @@ TextChunk = __decorate([
|
|
|
77595
77657
|
], TextChunk);
|
|
77596
77658
|
exports.TextChunk = TextChunk;
|
|
77597
77659
|
|
|
77598
|
-
},{"../../Decorators":
|
|
77660
|
+
},{"../../Decorators":304,"./Chunk":429}],436:[function(require,module,exports){
|
|
77599
77661
|
"use strict";
|
|
77600
77662
|
/*!
|
|
77601
77663
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77690,7 +77752,7 @@ TokenTagToken = __decorate([
|
|
|
77690
77752
|
], TokenTagToken);
|
|
77691
77753
|
exports.TokenTagToken = TokenTagToken;
|
|
77692
77754
|
|
|
77693
|
-
},{"../../CommonToken":
|
|
77755
|
+
},{"../../CommonToken":300,"../../Decorators":304}],437:[function(require,module,exports){
|
|
77694
77756
|
"use strict";
|
|
77695
77757
|
/*!
|
|
77696
77758
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77887,7 +77949,7 @@ exports.XPath = XPath;
|
|
|
77887
77949
|
XPath.WILDCARD = "*"; // word not operator/separator
|
|
77888
77950
|
XPath.NOT = "!"; // word for invert operator
|
|
77889
77951
|
|
|
77890
|
-
},{"../../CharStreams":
|
|
77952
|
+
},{"../../CharStreams":297,"../../CommonTokenStream":302,"../../LexerNoViableAltException":314,"../../ParserRuleContext":320,"../../Token":329,"./XPathLexer":439,"./XPathLexerErrorListener":440,"./XPathRuleAnywhereElement":441,"./XPathRuleElement":442,"./XPathTokenAnywhereElement":443,"./XPathTokenElement":444,"./XPathWildcardAnywhereElement":445,"./XPathWildcardElement":446}],438:[function(require,module,exports){
|
|
77891
77953
|
"use strict";
|
|
77892
77954
|
/*!
|
|
77893
77955
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77922,7 +77984,7 @@ __decorate([
|
|
|
77922
77984
|
], XPathElement.prototype, "toString", null);
|
|
77923
77985
|
exports.XPathElement = XPathElement;
|
|
77924
77986
|
|
|
77925
|
-
},{"../../Decorators":
|
|
77987
|
+
},{"../../Decorators":304}],439:[function(require,module,exports){
|
|
77926
77988
|
"use strict";
|
|
77927
77989
|
// Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
77928
77990
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -78397,7 +78459,7 @@ XPathLexer._serializedATN = Utils.join([
|
|
|
78397
78459
|
XPathLexer._serializedATNSegment1,
|
|
78398
78460
|
], "");
|
|
78399
78461
|
|
|
78400
|
-
},{"../../Lexer":
|
|
78462
|
+
},{"../../Lexer":312,"../../VocabularyImpl":335,"../../atn/ATNDeserializer":341,"../../atn/LexerATNSimulator":362,"../../misc/Utils":423}],440:[function(require,module,exports){
|
|
78401
78463
|
"use strict";
|
|
78402
78464
|
/*!
|
|
78403
78465
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -78422,7 +78484,7 @@ __decorate([
|
|
|
78422
78484
|
], XPathLexerErrorListener.prototype, "syntaxError", null);
|
|
78423
78485
|
exports.XPathLexerErrorListener = XPathLexerErrorListener;
|
|
78424
78486
|
|
|
78425
|
-
},{"../../Decorators":
|
|
78487
|
+
},{"../../Decorators":304}],441:[function(require,module,exports){
|
|
78426
78488
|
"use strict";
|
|
78427
78489
|
/*!
|
|
78428
78490
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -78456,7 +78518,7 @@ __decorate([
|
|
|
78456
78518
|
], XPathRuleAnywhereElement.prototype, "evaluate", null);
|
|
78457
78519
|
exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
|
|
78458
78520
|
|
|
78459
|
-
},{"../../Decorators":
|
|
78521
|
+
},{"../../Decorators":304,"../Trees":428,"./XPathElement":438}],442:[function(require,module,exports){
|
|
78460
78522
|
"use strict";
|
|
78461
78523
|
/*!
|
|
78462
78524
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -78499,7 +78561,7 @@ __decorate([
|
|
|
78499
78561
|
], XPathRuleElement.prototype, "evaluate", null);
|
|
78500
78562
|
exports.XPathRuleElement = XPathRuleElement;
|
|
78501
78563
|
|
|
78502
|
-
},{"../../Decorators":
|
|
78564
|
+
},{"../../Decorators":304,"../../ParserRuleContext":320,"../Trees":428,"./XPathElement":438}],443:[function(require,module,exports){
|
|
78503
78565
|
"use strict";
|
|
78504
78566
|
/*!
|
|
78505
78567
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -78531,7 +78593,7 @@ __decorate([
|
|
|
78531
78593
|
], XPathTokenAnywhereElement.prototype, "evaluate", null);
|
|
78532
78594
|
exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
|
|
78533
78595
|
|
|
78534
|
-
},{"../../Decorators":
|
|
78596
|
+
},{"../../Decorators":304,"../Trees":428,"./XPathElement":438}],444:[function(require,module,exports){
|
|
78535
78597
|
"use strict";
|
|
78536
78598
|
/*!
|
|
78537
78599
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -78574,7 +78636,7 @@ __decorate([
|
|
|
78574
78636
|
], XPathTokenElement.prototype, "evaluate", null);
|
|
78575
78637
|
exports.XPathTokenElement = XPathTokenElement;
|
|
78576
78638
|
|
|
78577
|
-
},{"../../Decorators":
|
|
78639
|
+
},{"../../Decorators":304,"../TerminalNode":427,"../Trees":428,"./XPathElement":438}],445:[function(require,module,exports){
|
|
78578
78640
|
"use strict";
|
|
78579
78641
|
/*!
|
|
78580
78642
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -78610,7 +78672,7 @@ __decorate([
|
|
|
78610
78672
|
], XPathWildcardAnywhereElement.prototype, "evaluate", null);
|
|
78611
78673
|
exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
|
|
78612
78674
|
|
|
78613
|
-
},{"../../Decorators":
|
|
78675
|
+
},{"../../Decorators":304,"../Trees":428,"./XPath":437,"./XPathElement":438}],446:[function(require,module,exports){
|
|
78614
78676
|
"use strict";
|
|
78615
78677
|
/*!
|
|
78616
78678
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -78650,7 +78712,7 @@ __decorate([
|
|
|
78650
78712
|
], XPathWildcardElement.prototype, "evaluate", null);
|
|
78651
78713
|
exports.XPathWildcardElement = XPathWildcardElement;
|
|
78652
78714
|
|
|
78653
|
-
},{"../../Decorators":
|
|
78715
|
+
},{"../../Decorators":304,"../Trees":428,"./XPath":437,"./XPathElement":438}],447:[function(require,module,exports){
|
|
78654
78716
|
(function (global){(function (){
|
|
78655
78717
|
'use strict';
|
|
78656
78718
|
|
|
@@ -79160,7 +79222,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
79160
79222
|
};
|
|
79161
79223
|
|
|
79162
79224
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
79163
|
-
},{"object.assign/polyfill":
|
|
79225
|
+
},{"object.assign/polyfill":504,"util/":450}],448:[function(require,module,exports){
|
|
79164
79226
|
if (typeof Object.create === 'function') {
|
|
79165
79227
|
// implementation from standard node.js 'util' module
|
|
79166
79228
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -79185,14 +79247,14 @@ if (typeof Object.create === 'function') {
|
|
|
79185
79247
|
}
|
|
79186
79248
|
}
|
|
79187
79249
|
|
|
79188
|
-
},{}],
|
|
79250
|
+
},{}],449:[function(require,module,exports){
|
|
79189
79251
|
module.exports = function isBuffer(arg) {
|
|
79190
79252
|
return arg && typeof arg === 'object'
|
|
79191
79253
|
&& typeof arg.copy === 'function'
|
|
79192
79254
|
&& typeof arg.fill === 'function'
|
|
79193
79255
|
&& typeof arg.readUInt8 === 'function';
|
|
79194
79256
|
}
|
|
79195
|
-
},{}],
|
|
79257
|
+
},{}],450:[function(require,module,exports){
|
|
79196
79258
|
(function (process,global){(function (){
|
|
79197
79259
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
79198
79260
|
//
|
|
@@ -79782,7 +79844,7 @@ function hasOwnProperty(obj, prop) {
|
|
|
79782
79844
|
}
|
|
79783
79845
|
|
|
79784
79846
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
79785
|
-
},{"./support/isBuffer":
|
|
79847
|
+
},{"./support/isBuffer":449,"_process":506,"inherits":448}],451:[function(require,module,exports){
|
|
79786
79848
|
(function (global){(function (){
|
|
79787
79849
|
'use strict';
|
|
79788
79850
|
|
|
@@ -79803,7 +79865,7 @@ module.exports = function availableTypedArrays() {
|
|
|
79803
79865
|
};
|
|
79804
79866
|
|
|
79805
79867
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
79806
|
-
},{"possible-typed-array-names":
|
|
79868
|
+
},{"possible-typed-array-names":505}],452:[function(require,module,exports){
|
|
79807
79869
|
(function (process,global){(function (){
|
|
79808
79870
|
module.exports = process.hrtime || hrtime
|
|
79809
79871
|
|
|
@@ -79834,7 +79896,7 @@ function hrtime(previousTimestamp){
|
|
|
79834
79896
|
return [seconds,nanoseconds]
|
|
79835
79897
|
}
|
|
79836
79898
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
79837
|
-
},{"_process":
|
|
79899
|
+
},{"_process":506}],453:[function(require,module,exports){
|
|
79838
79900
|
'use strict';
|
|
79839
79901
|
|
|
79840
79902
|
var bind = require('function-bind');
|
|
@@ -79846,7 +79908,7 @@ var $reflectApply = require('./reflectApply');
|
|
|
79846
79908
|
/** @type {import('./actualApply')} */
|
|
79847
79909
|
module.exports = $reflectApply || bind.call($call, $apply);
|
|
79848
79910
|
|
|
79849
|
-
},{"./functionApply":
|
|
79911
|
+
},{"./functionApply":455,"./functionCall":456,"./reflectApply":458,"function-bind":474}],454:[function(require,module,exports){
|
|
79850
79912
|
'use strict';
|
|
79851
79913
|
|
|
79852
79914
|
var bind = require('function-bind');
|
|
@@ -79858,19 +79920,19 @@ module.exports = function applyBind() {
|
|
|
79858
79920
|
return actualApply(bind, $apply, arguments);
|
|
79859
79921
|
};
|
|
79860
79922
|
|
|
79861
|
-
},{"./actualApply":
|
|
79923
|
+
},{"./actualApply":453,"./functionApply":455,"function-bind":474}],455:[function(require,module,exports){
|
|
79862
79924
|
'use strict';
|
|
79863
79925
|
|
|
79864
79926
|
/** @type {import('./functionApply')} */
|
|
79865
79927
|
module.exports = Function.prototype.apply;
|
|
79866
79928
|
|
|
79867
|
-
},{}],
|
|
79929
|
+
},{}],456:[function(require,module,exports){
|
|
79868
79930
|
'use strict';
|
|
79869
79931
|
|
|
79870
79932
|
/** @type {import('./functionCall')} */
|
|
79871
79933
|
module.exports = Function.prototype.call;
|
|
79872
79934
|
|
|
79873
|
-
},{}],
|
|
79935
|
+
},{}],457:[function(require,module,exports){
|
|
79874
79936
|
'use strict';
|
|
79875
79937
|
|
|
79876
79938
|
var bind = require('function-bind');
|
|
@@ -79887,13 +79949,13 @@ module.exports = function callBindBasic(args) {
|
|
|
79887
79949
|
return $actualApply(bind, $call, args);
|
|
79888
79950
|
};
|
|
79889
79951
|
|
|
79890
|
-
},{"./actualApply":
|
|
79952
|
+
},{"./actualApply":453,"./functionCall":456,"es-errors/type":469,"function-bind":474}],458:[function(require,module,exports){
|
|
79891
79953
|
'use strict';
|
|
79892
79954
|
|
|
79893
79955
|
/** @type {import('./reflectApply')} */
|
|
79894
79956
|
module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
|
|
79895
79957
|
|
|
79896
|
-
},{}],
|
|
79958
|
+
},{}],459:[function(require,module,exports){
|
|
79897
79959
|
'use strict';
|
|
79898
79960
|
|
|
79899
79961
|
var setFunctionLength = require('set-function-length');
|
|
@@ -79919,7 +79981,7 @@ if ($defineProperty) {
|
|
|
79919
79981
|
module.exports.apply = applyBind;
|
|
79920
79982
|
}
|
|
79921
79983
|
|
|
79922
|
-
},{"call-bind-apply-helpers":
|
|
79984
|
+
},{"call-bind-apply-helpers":457,"call-bind-apply-helpers/applyBind":454,"es-define-property":463,"set-function-length":508}],460:[function(require,module,exports){
|
|
79923
79985
|
'use strict';
|
|
79924
79986
|
|
|
79925
79987
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -79940,7 +80002,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
79940
80002
|
return intrinsic;
|
|
79941
80003
|
};
|
|
79942
80004
|
|
|
79943
|
-
},{"call-bind-apply-helpers":
|
|
80005
|
+
},{"call-bind-apply-helpers":457,"get-intrinsic":475}],461:[function(require,module,exports){
|
|
79944
80006
|
'use strict';
|
|
79945
80007
|
|
|
79946
80008
|
var $defineProperty = require('es-define-property');
|
|
@@ -79998,7 +80060,7 @@ module.exports = function defineDataProperty(
|
|
|
79998
80060
|
}
|
|
79999
80061
|
};
|
|
80000
80062
|
|
|
80001
|
-
},{"es-define-property":
|
|
80063
|
+
},{"es-define-property":463,"es-errors/syntax":468,"es-errors/type":469,"gopd":480}],462:[function(require,module,exports){
|
|
80002
80064
|
'use strict';
|
|
80003
80065
|
|
|
80004
80066
|
var callBind = require('call-bind-apply-helpers');
|
|
@@ -80030,7 +80092,7 @@ module.exports = desc && typeof desc.get === 'function'
|
|
|
80030
80092
|
}
|
|
80031
80093
|
: false;
|
|
80032
80094
|
|
|
80033
|
-
},{"call-bind-apply-helpers":
|
|
80095
|
+
},{"call-bind-apply-helpers":457,"gopd":480}],463:[function(require,module,exports){
|
|
80034
80096
|
'use strict';
|
|
80035
80097
|
|
|
80036
80098
|
/** @type {import('.')} */
|
|
@@ -80046,55 +80108,55 @@ if ($defineProperty) {
|
|
|
80046
80108
|
|
|
80047
80109
|
module.exports = $defineProperty;
|
|
80048
80110
|
|
|
80049
|
-
},{}],
|
|
80111
|
+
},{}],464:[function(require,module,exports){
|
|
80050
80112
|
'use strict';
|
|
80051
80113
|
|
|
80052
80114
|
/** @type {import('./eval')} */
|
|
80053
80115
|
module.exports = EvalError;
|
|
80054
80116
|
|
|
80055
|
-
},{}],
|
|
80117
|
+
},{}],465:[function(require,module,exports){
|
|
80056
80118
|
'use strict';
|
|
80057
80119
|
|
|
80058
80120
|
/** @type {import('.')} */
|
|
80059
80121
|
module.exports = Error;
|
|
80060
80122
|
|
|
80061
|
-
},{}],
|
|
80123
|
+
},{}],466:[function(require,module,exports){
|
|
80062
80124
|
'use strict';
|
|
80063
80125
|
|
|
80064
80126
|
/** @type {import('./range')} */
|
|
80065
80127
|
module.exports = RangeError;
|
|
80066
80128
|
|
|
80067
|
-
},{}],
|
|
80129
|
+
},{}],467:[function(require,module,exports){
|
|
80068
80130
|
'use strict';
|
|
80069
80131
|
|
|
80070
80132
|
/** @type {import('./ref')} */
|
|
80071
80133
|
module.exports = ReferenceError;
|
|
80072
80134
|
|
|
80073
|
-
},{}],
|
|
80135
|
+
},{}],468:[function(require,module,exports){
|
|
80074
80136
|
'use strict';
|
|
80075
80137
|
|
|
80076
80138
|
/** @type {import('./syntax')} */
|
|
80077
80139
|
module.exports = SyntaxError;
|
|
80078
80140
|
|
|
80079
|
-
},{}],
|
|
80141
|
+
},{}],469:[function(require,module,exports){
|
|
80080
80142
|
'use strict';
|
|
80081
80143
|
|
|
80082
80144
|
/** @type {import('./type')} */
|
|
80083
80145
|
module.exports = TypeError;
|
|
80084
80146
|
|
|
80085
|
-
},{}],
|
|
80147
|
+
},{}],470:[function(require,module,exports){
|
|
80086
80148
|
'use strict';
|
|
80087
80149
|
|
|
80088
80150
|
/** @type {import('./uri')} */
|
|
80089
80151
|
module.exports = URIError;
|
|
80090
80152
|
|
|
80091
|
-
},{}],
|
|
80153
|
+
},{}],471:[function(require,module,exports){
|
|
80092
80154
|
'use strict';
|
|
80093
80155
|
|
|
80094
80156
|
/** @type {import('.')} */
|
|
80095
80157
|
module.exports = Object;
|
|
80096
80158
|
|
|
80097
|
-
},{}],
|
|
80159
|
+
},{}],472:[function(require,module,exports){
|
|
80098
80160
|
'use strict';
|
|
80099
80161
|
|
|
80100
80162
|
var isCallable = require('is-callable');
|
|
@@ -80165,7 +80227,7 @@ module.exports = function forEach(list, iterator, thisArg) {
|
|
|
80165
80227
|
}
|
|
80166
80228
|
};
|
|
80167
80229
|
|
|
80168
|
-
},{"is-callable":
|
|
80230
|
+
},{"is-callable":488}],473:[function(require,module,exports){
|
|
80169
80231
|
'use strict';
|
|
80170
80232
|
|
|
80171
80233
|
/* eslint no-invalid-this: 1 */
|
|
@@ -80251,14 +80313,14 @@ module.exports = function bind(that) {
|
|
|
80251
80313
|
return bound;
|
|
80252
80314
|
};
|
|
80253
80315
|
|
|
80254
|
-
},{}],
|
|
80316
|
+
},{}],474:[function(require,module,exports){
|
|
80255
80317
|
'use strict';
|
|
80256
80318
|
|
|
80257
80319
|
var implementation = require('./implementation');
|
|
80258
80320
|
|
|
80259
80321
|
module.exports = Function.prototype.bind || implementation;
|
|
80260
80322
|
|
|
80261
|
-
},{"./implementation":
|
|
80323
|
+
},{"./implementation":473}],475:[function(require,module,exports){
|
|
80262
80324
|
'use strict';
|
|
80263
80325
|
|
|
80264
80326
|
var undefined;
|
|
@@ -80638,7 +80700,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
80638
80700
|
return value;
|
|
80639
80701
|
};
|
|
80640
80702
|
|
|
80641
|
-
},{"call-bind-apply-helpers/functionApply":
|
|
80703
|
+
},{"call-bind-apply-helpers/functionApply":455,"call-bind-apply-helpers/functionCall":456,"es-define-property":463,"es-errors":465,"es-errors/eval":464,"es-errors/range":466,"es-errors/ref":467,"es-errors/syntax":468,"es-errors/type":469,"es-errors/uri":470,"es-object-atoms":471,"function-bind":474,"get-proto":478,"get-proto/Object.getPrototypeOf":476,"get-proto/Reflect.getPrototypeOf":477,"gopd":480,"has-symbols":482,"hasown":485,"math-intrinsics/abs":492,"math-intrinsics/floor":493,"math-intrinsics/max":495,"math-intrinsics/min":496,"math-intrinsics/pow":497,"math-intrinsics/round":498,"math-intrinsics/sign":499}],476:[function(require,module,exports){
|
|
80642
80704
|
'use strict';
|
|
80643
80705
|
|
|
80644
80706
|
var $Object = require('es-object-atoms');
|
|
@@ -80646,13 +80708,13 @@ var $Object = require('es-object-atoms');
|
|
|
80646
80708
|
/** @type {import('./Object.getPrototypeOf')} */
|
|
80647
80709
|
module.exports = $Object.getPrototypeOf || null;
|
|
80648
80710
|
|
|
80649
|
-
},{"es-object-atoms":
|
|
80711
|
+
},{"es-object-atoms":471}],477:[function(require,module,exports){
|
|
80650
80712
|
'use strict';
|
|
80651
80713
|
|
|
80652
80714
|
/** @type {import('./Reflect.getPrototypeOf')} */
|
|
80653
80715
|
module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
|
|
80654
80716
|
|
|
80655
|
-
},{}],
|
|
80717
|
+
},{}],478:[function(require,module,exports){
|
|
80656
80718
|
'use strict';
|
|
80657
80719
|
|
|
80658
80720
|
var reflectGetProto = require('./Reflect.getPrototypeOf');
|
|
@@ -80681,13 +80743,13 @@ module.exports = reflectGetProto
|
|
|
80681
80743
|
}
|
|
80682
80744
|
: null;
|
|
80683
80745
|
|
|
80684
|
-
},{"./Object.getPrototypeOf":
|
|
80746
|
+
},{"./Object.getPrototypeOf":476,"./Reflect.getPrototypeOf":477,"dunder-proto/get":462}],479:[function(require,module,exports){
|
|
80685
80747
|
'use strict';
|
|
80686
80748
|
|
|
80687
80749
|
/** @type {import('./gOPD')} */
|
|
80688
80750
|
module.exports = Object.getOwnPropertyDescriptor;
|
|
80689
80751
|
|
|
80690
|
-
},{}],
|
|
80752
|
+
},{}],480:[function(require,module,exports){
|
|
80691
80753
|
'use strict';
|
|
80692
80754
|
|
|
80693
80755
|
/** @type {import('.')} */
|
|
@@ -80704,7 +80766,7 @@ if ($gOPD) {
|
|
|
80704
80766
|
|
|
80705
80767
|
module.exports = $gOPD;
|
|
80706
80768
|
|
|
80707
|
-
},{"./gOPD":
|
|
80769
|
+
},{"./gOPD":479}],481:[function(require,module,exports){
|
|
80708
80770
|
'use strict';
|
|
80709
80771
|
|
|
80710
80772
|
var $defineProperty = require('es-define-property');
|
|
@@ -80728,7 +80790,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
|
|
|
80728
80790
|
|
|
80729
80791
|
module.exports = hasPropertyDescriptors;
|
|
80730
80792
|
|
|
80731
|
-
},{"es-define-property":
|
|
80793
|
+
},{"es-define-property":463}],482:[function(require,module,exports){
|
|
80732
80794
|
'use strict';
|
|
80733
80795
|
|
|
80734
80796
|
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
|
@@ -80744,7 +80806,7 @@ module.exports = function hasNativeSymbols() {
|
|
|
80744
80806
|
return hasSymbolSham();
|
|
80745
80807
|
};
|
|
80746
80808
|
|
|
80747
|
-
},{"./shams":
|
|
80809
|
+
},{"./shams":483}],483:[function(require,module,exports){
|
|
80748
80810
|
'use strict';
|
|
80749
80811
|
|
|
80750
80812
|
/** @type {import('./shams')} */
|
|
@@ -80791,7 +80853,7 @@ module.exports = function hasSymbols() {
|
|
|
80791
80853
|
return true;
|
|
80792
80854
|
};
|
|
80793
80855
|
|
|
80794
|
-
},{}],
|
|
80856
|
+
},{}],484:[function(require,module,exports){
|
|
80795
80857
|
'use strict';
|
|
80796
80858
|
|
|
80797
80859
|
var hasSymbols = require('has-symbols/shams');
|
|
@@ -80801,7 +80863,7 @@ module.exports = function hasToStringTagShams() {
|
|
|
80801
80863
|
return hasSymbols() && !!Symbol.toStringTag;
|
|
80802
80864
|
};
|
|
80803
80865
|
|
|
80804
|
-
},{"has-symbols/shams":
|
|
80866
|
+
},{"has-symbols/shams":483}],485:[function(require,module,exports){
|
|
80805
80867
|
'use strict';
|
|
80806
80868
|
|
|
80807
80869
|
var call = Function.prototype.call;
|
|
@@ -80811,7 +80873,7 @@ var bind = require('function-bind');
|
|
|
80811
80873
|
/** @type {import('.')} */
|
|
80812
80874
|
module.exports = bind.call(call, $hasOwn);
|
|
80813
80875
|
|
|
80814
|
-
},{"function-bind":
|
|
80876
|
+
},{"function-bind":474}],486:[function(require,module,exports){
|
|
80815
80877
|
if (typeof Object.create === 'function') {
|
|
80816
80878
|
// implementation from standard node.js 'util' module
|
|
80817
80879
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -80840,7 +80902,7 @@ if (typeof Object.create === 'function') {
|
|
|
80840
80902
|
}
|
|
80841
80903
|
}
|
|
80842
80904
|
|
|
80843
|
-
},{}],
|
|
80905
|
+
},{}],487:[function(require,module,exports){
|
|
80844
80906
|
'use strict';
|
|
80845
80907
|
|
|
80846
80908
|
var hasToStringTag = require('has-tostringtag/shams')();
|
|
@@ -80886,7 +80948,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
|
80886
80948
|
/** @type {import('.')} */
|
|
80887
80949
|
module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
80888
80950
|
|
|
80889
|
-
},{"call-bound":
|
|
80951
|
+
},{"call-bound":460,"has-tostringtag/shams":484}],488:[function(require,module,exports){
|
|
80890
80952
|
'use strict';
|
|
80891
80953
|
|
|
80892
80954
|
var fnToStr = Function.prototype.toString;
|
|
@@ -80989,7 +81051,7 @@ module.exports = reflectApply
|
|
|
80989
81051
|
return tryFunctionObject(value);
|
|
80990
81052
|
};
|
|
80991
81053
|
|
|
80992
|
-
},{}],
|
|
81054
|
+
},{}],489:[function(require,module,exports){
|
|
80993
81055
|
'use strict';
|
|
80994
81056
|
|
|
80995
81057
|
var callBound = require('call-bound');
|
|
@@ -81038,7 +81100,7 @@ module.exports = function isGeneratorFunction(fn) {
|
|
|
81038
81100
|
return getProto(fn) === GeneratorFunction;
|
|
81039
81101
|
};
|
|
81040
81102
|
|
|
81041
|
-
},{"call-bound":
|
|
81103
|
+
},{"call-bound":460,"get-proto":478,"has-tostringtag/shams":484,"safe-regex-test":507}],490:[function(require,module,exports){
|
|
81042
81104
|
'use strict';
|
|
81043
81105
|
|
|
81044
81106
|
var callBound = require('call-bound');
|
|
@@ -81109,7 +81171,7 @@ if (hasToStringTag) {
|
|
|
81109
81171
|
|
|
81110
81172
|
module.exports = fn;
|
|
81111
81173
|
|
|
81112
|
-
},{"call-bound":
|
|
81174
|
+
},{"call-bound":460,"gopd":480,"has-tostringtag/shams":484,"hasown":485}],491:[function(require,module,exports){
|
|
81113
81175
|
'use strict';
|
|
81114
81176
|
|
|
81115
81177
|
var whichTypedArray = require('which-typed-array');
|
|
@@ -81119,19 +81181,19 @@ module.exports = function isTypedArray(value) {
|
|
|
81119
81181
|
return !!whichTypedArray(value);
|
|
81120
81182
|
};
|
|
81121
81183
|
|
|
81122
|
-
},{"which-typed-array":
|
|
81184
|
+
},{"which-typed-array":512}],492:[function(require,module,exports){
|
|
81123
81185
|
'use strict';
|
|
81124
81186
|
|
|
81125
81187
|
/** @type {import('./abs')} */
|
|
81126
81188
|
module.exports = Math.abs;
|
|
81127
81189
|
|
|
81128
|
-
},{}],
|
|
81190
|
+
},{}],493:[function(require,module,exports){
|
|
81129
81191
|
'use strict';
|
|
81130
81192
|
|
|
81131
81193
|
/** @type {import('./floor')} */
|
|
81132
81194
|
module.exports = Math.floor;
|
|
81133
81195
|
|
|
81134
|
-
},{}],
|
|
81196
|
+
},{}],494:[function(require,module,exports){
|
|
81135
81197
|
'use strict';
|
|
81136
81198
|
|
|
81137
81199
|
/** @type {import('./isNaN')} */
|
|
@@ -81139,31 +81201,31 @@ module.exports = Number.isNaN || function isNaN(a) {
|
|
|
81139
81201
|
return a !== a;
|
|
81140
81202
|
};
|
|
81141
81203
|
|
|
81142
|
-
},{}],
|
|
81204
|
+
},{}],495:[function(require,module,exports){
|
|
81143
81205
|
'use strict';
|
|
81144
81206
|
|
|
81145
81207
|
/** @type {import('./max')} */
|
|
81146
81208
|
module.exports = Math.max;
|
|
81147
81209
|
|
|
81148
|
-
},{}],
|
|
81210
|
+
},{}],496:[function(require,module,exports){
|
|
81149
81211
|
'use strict';
|
|
81150
81212
|
|
|
81151
81213
|
/** @type {import('./min')} */
|
|
81152
81214
|
module.exports = Math.min;
|
|
81153
81215
|
|
|
81154
|
-
},{}],
|
|
81216
|
+
},{}],497:[function(require,module,exports){
|
|
81155
81217
|
'use strict';
|
|
81156
81218
|
|
|
81157
81219
|
/** @type {import('./pow')} */
|
|
81158
81220
|
module.exports = Math.pow;
|
|
81159
81221
|
|
|
81160
|
-
},{}],
|
|
81222
|
+
},{}],498:[function(require,module,exports){
|
|
81161
81223
|
'use strict';
|
|
81162
81224
|
|
|
81163
81225
|
/** @type {import('./round')} */
|
|
81164
81226
|
module.exports = Math.round;
|
|
81165
81227
|
|
|
81166
|
-
},{}],
|
|
81228
|
+
},{}],499:[function(require,module,exports){
|
|
81167
81229
|
'use strict';
|
|
81168
81230
|
|
|
81169
81231
|
var $isNaN = require('./isNaN');
|
|
@@ -81176,7 +81238,7 @@ module.exports = function sign(number) {
|
|
|
81176
81238
|
return number < 0 ? -1 : +1;
|
|
81177
81239
|
};
|
|
81178
81240
|
|
|
81179
|
-
},{"./isNaN":
|
|
81241
|
+
},{"./isNaN":494}],500:[function(require,module,exports){
|
|
81180
81242
|
'use strict';
|
|
81181
81243
|
|
|
81182
81244
|
var keysShim;
|
|
@@ -81300,7 +81362,7 @@ if (!Object.keys) {
|
|
|
81300
81362
|
}
|
|
81301
81363
|
module.exports = keysShim;
|
|
81302
81364
|
|
|
81303
|
-
},{"./isArguments":
|
|
81365
|
+
},{"./isArguments":502}],501:[function(require,module,exports){
|
|
81304
81366
|
'use strict';
|
|
81305
81367
|
|
|
81306
81368
|
var slice = Array.prototype.slice;
|
|
@@ -81334,7 +81396,7 @@ keysShim.shim = function shimObjectKeys() {
|
|
|
81334
81396
|
|
|
81335
81397
|
module.exports = keysShim;
|
|
81336
81398
|
|
|
81337
|
-
},{"./implementation":
|
|
81399
|
+
},{"./implementation":500,"./isArguments":502}],502:[function(require,module,exports){
|
|
81338
81400
|
'use strict';
|
|
81339
81401
|
|
|
81340
81402
|
var toStr = Object.prototype.toString;
|
|
@@ -81353,7 +81415,7 @@ module.exports = function isArguments(value) {
|
|
|
81353
81415
|
return isArgs;
|
|
81354
81416
|
};
|
|
81355
81417
|
|
|
81356
|
-
},{}],
|
|
81418
|
+
},{}],503:[function(require,module,exports){
|
|
81357
81419
|
'use strict';
|
|
81358
81420
|
|
|
81359
81421
|
// modified from https://github.com/es-shims/es6-shim
|
|
@@ -81401,7 +81463,7 @@ module.exports = function assign(target, source1) {
|
|
|
81401
81463
|
return to; // step 4
|
|
81402
81464
|
};
|
|
81403
81465
|
|
|
81404
|
-
},{"call-bound":
|
|
81466
|
+
},{"call-bound":460,"es-object-atoms":471,"has-symbols/shams":483,"object-keys":501}],504:[function(require,module,exports){
|
|
81405
81467
|
'use strict';
|
|
81406
81468
|
|
|
81407
81469
|
var implementation = require('./implementation');
|
|
@@ -81458,7 +81520,7 @@ module.exports = function getPolyfill() {
|
|
|
81458
81520
|
return Object.assign;
|
|
81459
81521
|
};
|
|
81460
81522
|
|
|
81461
|
-
},{"./implementation":
|
|
81523
|
+
},{"./implementation":503}],505:[function(require,module,exports){
|
|
81462
81524
|
'use strict';
|
|
81463
81525
|
|
|
81464
81526
|
/** @type {import('.')} */
|
|
@@ -81477,7 +81539,7 @@ module.exports = [
|
|
|
81477
81539
|
'BigUint64Array'
|
|
81478
81540
|
];
|
|
81479
81541
|
|
|
81480
|
-
},{}],
|
|
81542
|
+
},{}],506:[function(require,module,exports){
|
|
81481
81543
|
// shim for using process in browser
|
|
81482
81544
|
var process = module.exports = {};
|
|
81483
81545
|
|
|
@@ -81663,7 +81725,7 @@ process.chdir = function (dir) {
|
|
|
81663
81725
|
};
|
|
81664
81726
|
process.umask = function() { return 0; };
|
|
81665
81727
|
|
|
81666
|
-
},{}],
|
|
81728
|
+
},{}],507:[function(require,module,exports){
|
|
81667
81729
|
'use strict';
|
|
81668
81730
|
|
|
81669
81731
|
var callBound = require('call-bound');
|
|
@@ -81682,7 +81744,7 @@ module.exports = function regexTester(regex) {
|
|
|
81682
81744
|
};
|
|
81683
81745
|
};
|
|
81684
81746
|
|
|
81685
|
-
},{"call-bound":
|
|
81747
|
+
},{"call-bound":460,"es-errors/type":469,"is-regex":490}],508:[function(require,module,exports){
|
|
81686
81748
|
'use strict';
|
|
81687
81749
|
|
|
81688
81750
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -81726,9 +81788,9 @@ module.exports = function setFunctionLength(fn, length) {
|
|
|
81726
81788
|
return fn;
|
|
81727
81789
|
};
|
|
81728
81790
|
|
|
81729
|
-
},{"define-data-property":
|
|
81730
|
-
arguments[4][
|
|
81731
|
-
},{"dup":
|
|
81791
|
+
},{"define-data-property":461,"es-errors/type":469,"get-intrinsic":475,"gopd":480,"has-property-descriptors":481}],509:[function(require,module,exports){
|
|
81792
|
+
arguments[4][449][0].apply(exports,arguments)
|
|
81793
|
+
},{"dup":449}],510:[function(require,module,exports){
|
|
81732
81794
|
// Currently in sync with Node.js lib/internal/util/types.js
|
|
81733
81795
|
// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
|
|
81734
81796
|
|
|
@@ -82064,7 +82126,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
|
|
|
82064
82126
|
});
|
|
82065
82127
|
});
|
|
82066
82128
|
|
|
82067
|
-
},{"is-arguments":
|
|
82129
|
+
},{"is-arguments":487,"is-generator-function":489,"is-typed-array":491,"which-typed-array":512}],511:[function(require,module,exports){
|
|
82068
82130
|
(function (process){(function (){
|
|
82069
82131
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
82070
82132
|
//
|
|
@@ -82783,7 +82845,7 @@ function callbackify(original) {
|
|
|
82783
82845
|
exports.callbackify = callbackify;
|
|
82784
82846
|
|
|
82785
82847
|
}).call(this)}).call(this,require('_process'))
|
|
82786
|
-
},{"./support/isBuffer":
|
|
82848
|
+
},{"./support/isBuffer":509,"./support/types":510,"_process":506,"inherits":486}],512:[function(require,module,exports){
|
|
82787
82849
|
(function (global){(function (){
|
|
82788
82850
|
'use strict';
|
|
82789
82851
|
|
|
@@ -82904,5 +82966,5 @@ module.exports = function whichTypedArray(value) {
|
|
|
82904
82966
|
};
|
|
82905
82967
|
|
|
82906
82968
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
82907
|
-
},{"available-typed-arrays":
|
|
82969
|
+
},{"available-typed-arrays":451,"call-bind":459,"call-bound":460,"for-each":472,"get-proto":478,"gopd":480,"has-tostringtag/shams":484}]},{},[150])(150)
|
|
82908
82970
|
});
|