@designliquido/delegua 0.71.0 → 0.73.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/analisador-semantico/analisador-semantico-base.d.ts.map +1 -1
- package/analisador-semantico/analisador-semantico-base.js +7 -9
- package/analisador-semantico/analisador-semantico-base.js.map +1 -1
- package/analisador-semantico/analisador-semantico.d.ts +5 -1
- package/analisador-semantico/analisador-semantico.d.ts.map +1 -1
- package/analisador-semantico/analisador-semantico.js +67 -4
- package/analisador-semantico/analisador-semantico.js.map +1 -1
- package/avaliador-sintatico/avaliador-sintatico.d.ts +5 -0
- package/avaliador-sintatico/avaliador-sintatico.d.ts.map +1 -1
- package/avaliador-sintatico/avaliador-sintatico.js +26 -1
- package/avaliador-sintatico/avaliador-sintatico.js.map +1 -1
- package/bibliotecas/dialetos/pitugues/primitivas-texto.d.ts.map +1 -1
- package/bibliotecas/dialetos/pitugues/primitivas-texto.js +25 -0
- package/bibliotecas/dialetos/pitugues/primitivas-texto.js.map +1 -1
- package/bibliotecas/primitivas-texto.d.ts +2 -0
- package/bibliotecas/primitivas-texto.d.ts.map +1 -1
- package/bibliotecas/primitivas-texto.js +58 -0
- package/bibliotecas/primitivas-texto.js.map +1 -1
- package/bin/package.json +1 -1
- package/estilizador/regras/index.d.ts +1 -0
- package/estilizador/regras/index.d.ts.map +1 -1
- package/estilizador/regras/index.js +1 -0
- package/estilizador/regras/index.js.map +1 -1
- package/estilizador/regras/paradigma-consistente.d.ts +45 -0
- package/estilizador/regras/paradigma-consistente.d.ts.map +1 -0
- package/estilizador/regras/paradigma-consistente.js +89 -0
- package/estilizador/regras/paradigma-consistente.js.map +1 -0
- package/interpretador/dialetos/calango/index.d.ts +2 -0
- package/interpretador/dialetos/calango/index.d.ts.map +1 -0
- package/interpretador/dialetos/calango/index.js +18 -0
- package/interpretador/dialetos/calango/index.js.map +1 -0
- package/interpretador/dialetos/index.d.ts +2 -0
- package/interpretador/dialetos/index.d.ts.map +1 -1
- package/interpretador/dialetos/index.js +2 -0
- package/interpretador/dialetos/index.js.map +1 -1
- package/interpretador/dialetos/pitugues/interpretador-pitugues.d.ts +2 -1
- package/interpretador/dialetos/pitugues/interpretador-pitugues.d.ts.map +1 -1
- package/interpretador/dialetos/pitugues/interpretador-pitugues.js +42 -1
- package/interpretador/dialetos/pitugues/interpretador-pitugues.js.map +1 -1
- package/interpretador/interpretador-base.d.ts.map +1 -1
- package/interpretador/interpretador-base.js +3 -0
- package/interpretador/interpretador-base.js.map +1 -1
- package/interpretador/interpretador.d.ts.map +1 -1
- package/interpretador/interpretador.js +4 -8
- package/interpretador/interpretador.js.map +1 -1
- package/lexador/filtro-paradigma.d.ts +15 -0
- package/lexador/filtro-paradigma.d.ts.map +1 -0
- package/lexador/filtro-paradigma.js +51 -0
- package/lexador/filtro-paradigma.js.map +1 -0
- package/lexador/mapeamento-paradigmas.d.ts +47 -0
- package/lexador/mapeamento-paradigmas.d.ts.map +1 -0
- package/lexador/mapeamento-paradigmas.js +183 -0
- package/lexador/mapeamento-paradigmas.js.map +1 -0
- package/package.json +1 -1
- package/umd/delegua.js +789 -371
package/umd/delegua.js
CHANGED
|
@@ -58,20 +58,18 @@ class AnalisadorSemanticoBase {
|
|
|
58
58
|
return;
|
|
59
59
|
}
|
|
60
60
|
if (expressao instanceof construtos_1.Chamada) {
|
|
61
|
-
|
|
62
|
-
this.gerenciadorEscopos.marcarComoUsada(expressao.entidadeChamada.simbolo.lexema);
|
|
63
|
-
}
|
|
64
|
-
if (expressao.entidadeChamada instanceof construtos_1.AcessoMetodo) {
|
|
65
|
-
this.marcarVariaveisUsadasEmExpressao(expressao.entidadeChamada.objeto);
|
|
66
|
-
}
|
|
67
|
-
if (expressao.entidadeChamada instanceof construtos_1.AcessoMetodoOuPropriedade) {
|
|
68
|
-
this.marcarVariaveisUsadasEmExpressao(expressao.entidadeChamada.objeto);
|
|
69
|
-
}
|
|
61
|
+
this.marcarVariaveisUsadasEmExpressao(expressao.entidadeChamada);
|
|
70
62
|
for (const arg of expressao.argumentos) {
|
|
71
63
|
this.marcarVariaveisUsadasEmExpressao(arg);
|
|
72
64
|
}
|
|
73
65
|
return;
|
|
74
66
|
}
|
|
67
|
+
if (expressao instanceof construtos_1.AcessoMetodo ||
|
|
68
|
+
expressao instanceof construtos_1.AcessoMetodoOuPropriedade ||
|
|
69
|
+
expressao instanceof construtos_1.AcessoPropriedade) {
|
|
70
|
+
this.marcarVariaveisUsadasEmExpressao(expressao.objeto);
|
|
71
|
+
return;
|
|
72
|
+
}
|
|
75
73
|
if (expressao instanceof construtos_1.Logico) {
|
|
76
74
|
this.marcarVariaveisUsadasEmExpressao(expressao.esquerda);
|
|
77
75
|
this.marcarVariaveisUsadasEmExpressao(expressao.direita);
|
|
@@ -341,7 +339,7 @@ class AnalisadorSemanticoBase {
|
|
|
341
339
|
}
|
|
342
340
|
exports.AnalisadorSemanticoBase = AnalisadorSemanticoBase;
|
|
343
341
|
|
|
344
|
-
},{"../construtos":62,"../declaracoes":109,"../interfaces":
|
|
342
|
+
},{"../construtos":62,"../declaracoes":109,"../interfaces":143}],2:[function(require,module,exports){
|
|
345
343
|
"use strict";
|
|
346
344
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
347
345
|
exports.AnalisadorSemantico = void 0;
|
|
@@ -661,6 +659,27 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
661
659
|
// Verifica a condição (incluindo validação de tipos para operadores lógicos)
|
|
662
660
|
return this.verificarCondicao(declaracao.condicao);
|
|
663
661
|
}
|
|
662
|
+
/**
|
|
663
|
+
* Verifica uma expressão recursivamente, incluindo operações binárias
|
|
664
|
+
*/
|
|
665
|
+
verificarExpressao(expressao) {
|
|
666
|
+
if (expressao instanceof construtos_1.Agrupamento) {
|
|
667
|
+
this.verificarExpressao(expressao.expressao);
|
|
668
|
+
return;
|
|
669
|
+
}
|
|
670
|
+
if (expressao instanceof construtos_1.Binario) {
|
|
671
|
+
this.verificarBinario(expressao);
|
|
672
|
+
return;
|
|
673
|
+
}
|
|
674
|
+
if (expressao instanceof construtos_1.Logico) {
|
|
675
|
+
this.verificarLogico(expressao);
|
|
676
|
+
return;
|
|
677
|
+
}
|
|
678
|
+
if (expressao instanceof construtos_1.Chamada) {
|
|
679
|
+
this.verificarChamada(expressao);
|
|
680
|
+
return;
|
|
681
|
+
}
|
|
682
|
+
}
|
|
664
683
|
verificarCondicao(condicao) {
|
|
665
684
|
if (condicao instanceof construtos_1.Agrupamento) {
|
|
666
685
|
return this.verificarCondicao(condicao.expressao);
|
|
@@ -730,9 +749,34 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
730
749
|
verificarTiposOperandos(binario) {
|
|
731
750
|
const tipoEsquerda = this.obterTipoExpressao(binario.esquerda);
|
|
732
751
|
const tipoDireita = this.obterTipoExpressao(binario.direita);
|
|
752
|
+
const tiposNumericos = ['inteiro', 'número', 'real'];
|
|
753
|
+
// Verifica se algum operando é do tipo texto em operação aritmética
|
|
754
|
+
if (tipoEsquerda === 'texto' || tipoDireita === 'texto') {
|
|
755
|
+
// Verifica se é uma operação que precisa de números (não concatenação)
|
|
756
|
+
const operadoresAritmeticos = ['SUBTRACAO', 'MULTIPLICACAO', 'DIVISAO', 'MODULO'];
|
|
757
|
+
if (operadoresAritmeticos.includes(binario.operador.tipo)) {
|
|
758
|
+
const ladoProblematico = tipoEsquerda === 'texto' ? 'esquerdo' : 'direito';
|
|
759
|
+
const expressaoProblematica = tipoEsquerda === 'texto' ? binario.esquerda : binario.direita;
|
|
760
|
+
// Verifica se a expressão problemática é um Leia ou uma variável inicializada com Leia
|
|
761
|
+
let mensagemAdicional = '';
|
|
762
|
+
if (expressaoProblematica instanceof construtos_1.Leia) {
|
|
763
|
+
mensagemAdicional = " Função 'leia()' retorna texto. Use 'inteiro(leia(...))' ou 'real(leia(...))' para converter.";
|
|
764
|
+
}
|
|
765
|
+
else if (expressaoProblematica instanceof construtos_1.Variavel) {
|
|
766
|
+
const variavel = this.gerenciadorEscopos.buscar(expressaoProblematica.simbolo.lexema);
|
|
767
|
+
if (variavel && variavel.valor instanceof construtos_1.Leia) {
|
|
768
|
+
mensagemAdicional = " A variável foi inicializada com 'leia()' que retorna texto. Use 'inteiro(leia(...))' ou 'real(leia(...))' para converter.";
|
|
769
|
+
}
|
|
770
|
+
else {
|
|
771
|
+
mensagemAdicional = " Use 'inteiro(...)' ou 'real(...)' para converter texto em número.";
|
|
772
|
+
}
|
|
773
|
+
}
|
|
774
|
+
this.erro(binario.operador, `Operação aritmética com tipo incompatível: operando ${ladoProblematico} é do tipo 'texto', mas a operação requer número.${mensagemAdicional}`);
|
|
775
|
+
return;
|
|
776
|
+
}
|
|
777
|
+
}
|
|
733
778
|
if (tipoEsquerda && tipoDireita && tipoEsquerda !== tipoDireita) {
|
|
734
779
|
// Verificar se são tipos numéricos compatíveis
|
|
735
|
-
const tiposNumericos = ['inteiro', 'número', 'real'];
|
|
736
780
|
const ambosNumericos = tiposNumericos.includes(tipoEsquerda) &&
|
|
737
781
|
tiposNumericos.includes(tipoDireita);
|
|
738
782
|
if (!ambosNumericos) {
|
|
@@ -819,7 +863,7 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
819
863
|
}
|
|
820
864
|
}
|
|
821
865
|
/**
|
|
822
|
-
* Obtém o tipo de uma expressão (pode ser Literal, Variavel,
|
|
866
|
+
* Obtém o tipo de uma expressão (pode ser Literal, Variavel, Binario, Leia, etc)
|
|
823
867
|
*/
|
|
824
868
|
obterTipoExpressao(expressao) {
|
|
825
869
|
if (expressao instanceof construtos_1.Literal) {
|
|
@@ -840,6 +884,10 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
840
884
|
if (expressao instanceof construtos_1.Agrupamento) {
|
|
841
885
|
return this.obterTipoExpressao(expressao.expressao);
|
|
842
886
|
}
|
|
887
|
+
if (expressao instanceof construtos_1.Leia) {
|
|
888
|
+
// leia() sempre retorna texto
|
|
889
|
+
return 'texto';
|
|
890
|
+
}
|
|
843
891
|
return null;
|
|
844
892
|
}
|
|
845
893
|
/**
|
|
@@ -895,8 +943,17 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
895
943
|
switch (chamada.entidadeChamada.constructor) {
|
|
896
944
|
case construtos_1.Variavel:
|
|
897
945
|
let entidadeChamadaVariavel = chamada.entidadeChamada;
|
|
898
|
-
|
|
899
|
-
|
|
946
|
+
const nomeFuncao = entidadeChamadaVariavel.simbolo.lexema;
|
|
947
|
+
// Lista de funções built-in que não precisam ser declaradas
|
|
948
|
+
const funcoesBuiltIn = ['inteiro', 'real', 'número', 'texto', 'leia', 'escreva', 'tipo'];
|
|
949
|
+
// Classes/construtores geralmente começam com letra maiúscula
|
|
950
|
+
const pareceSerClasse = nomeFuncao[0] === nomeFuncao[0].toUpperCase();
|
|
951
|
+
// Só verifica se a função existe se não for built-in e não parecer ser classe
|
|
952
|
+
if (!funcoesBuiltIn.includes(nomeFuncao) &&
|
|
953
|
+
!pareceSerClasse &&
|
|
954
|
+
!this.funcoes[nomeFuncao] &&
|
|
955
|
+
!this.gerenciadorEscopos.buscar(nomeFuncao)) {
|
|
956
|
+
this.erro(entidadeChamadaVariavel.simbolo, `Chamada da função '${nomeFuncao}' não existe.`);
|
|
900
957
|
}
|
|
901
958
|
break;
|
|
902
959
|
}
|
|
@@ -999,6 +1056,8 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
999
1056
|
this.verificarTipoAtribuido(declaracao);
|
|
1000
1057
|
if (declaracao.inicializador) {
|
|
1001
1058
|
this.marcarVariaveisUsadasEmExpressao(declaracao.inicializador);
|
|
1059
|
+
// Verifica operações binárias no inicializador
|
|
1060
|
+
this.verificarExpressao(declaracao.inicializador);
|
|
1002
1061
|
}
|
|
1003
1062
|
const constanteCorrespondente = this.gerenciadorEscopos.buscarNoEscopoAtual(declaracao.simbolo.lexema);
|
|
1004
1063
|
if (constanteCorrespondente) {
|
|
@@ -1022,6 +1081,8 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
1022
1081
|
this.verificarTipoAtribuido(declaracao);
|
|
1023
1082
|
if (declaracao.inicializador) {
|
|
1024
1083
|
this.marcarVariaveisUsadasEmExpressao(declaracao.inicializador);
|
|
1084
|
+
// Verifica operações binárias no inicializador
|
|
1085
|
+
this.verificarExpressao(declaracao.inicializador);
|
|
1025
1086
|
switch (declaracao.inicializador.constructor) {
|
|
1026
1087
|
case construtos_1.FuncaoConstruto:
|
|
1027
1088
|
const funcaoConstruto = declaracao.inicializador;
|
|
@@ -1183,7 +1244,7 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
1183
1244
|
}
|
|
1184
1245
|
exports.AnalisadorSemantico = AnalisadorSemantico;
|
|
1185
1246
|
|
|
1186
|
-
},{"../construtos":62,"../declaracoes":109,"../interfaces/erros":
|
|
1247
|
+
},{"../construtos":62,"../declaracoes":109,"../interfaces/erros":140,"./analisador-semantico-base":1,"./gerenciador-escopos":5,"./pilha-variaveis":7}],3:[function(require,module,exports){
|
|
1187
1248
|
"use strict";
|
|
1188
1249
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1189
1250
|
|
|
@@ -1567,7 +1628,7 @@ class AvaliadorSintaticoBase {
|
|
|
1567
1628
|
}
|
|
1568
1629
|
exports.AvaliadorSintaticoBase = AvaliadorSintaticoBase;
|
|
1569
1630
|
|
|
1570
|
-
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/comum":
|
|
1631
|
+
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/comum":211,"./erro-avaliador-sintatico":21}],10:[function(require,module,exports){
|
|
1571
1632
|
"use strict";
|
|
1572
1633
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
1573
1634
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -2291,7 +2352,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
2291
2352
|
return construtoChamada;
|
|
2292
2353
|
}
|
|
2293
2354
|
unario() {
|
|
2294
|
-
if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.NAO, delegua_2.default.NEGACAO, delegua_2.default.SUBTRACAO, delegua_2.default.BIT_NOT, delegua_2.default.INCREMENTAR, delegua_2.default.DECREMENTAR)) {
|
|
2355
|
+
if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.NAO, delegua_2.default.NEGACAO, delegua_2.default.ADICAO, delegua_2.default.SUBTRACAO, delegua_2.default.BIT_NOT, delegua_2.default.INCREMENTAR, delegua_2.default.DECREMENTAR)) {
|
|
2295
2356
|
const operador = this.simbolos[this.atual - 1];
|
|
2296
2357
|
const direito = this.unario();
|
|
2297
2358
|
return new construtos_1.Unario(this.hashArquivo, operador, direito, 'ANTES');
|
|
@@ -2312,7 +2373,32 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
2312
2373
|
}
|
|
2313
2374
|
return expressao;
|
|
2314
2375
|
}
|
|
2376
|
+
/**
|
|
2377
|
+
* Verifica recursivamente se um construto é ou contém uma operação unária em um vetor.
|
|
2378
|
+
* Isso bloqueia padrões de ofuscação como !![] usado em operações aritméticas.
|
|
2379
|
+
*/
|
|
2380
|
+
verificarOperacaoUnariaEmVetor(construto) {
|
|
2381
|
+
if (construto instanceof construtos_1.Unario) {
|
|
2382
|
+
const operando = construto.operando;
|
|
2383
|
+
// Verifica se o operando é um vetor
|
|
2384
|
+
if (operando instanceof construtos_1.Vetor || operando.tipo === 'vetor' || operando.tipo.endsWith('[]')) {
|
|
2385
|
+
return true;
|
|
2386
|
+
}
|
|
2387
|
+
// Verifica recursivamente para casos como !![]
|
|
2388
|
+
if (operando instanceof construtos_1.Unario) {
|
|
2389
|
+
return this.verificarOperacaoUnariaEmVetor(operando);
|
|
2390
|
+
}
|
|
2391
|
+
}
|
|
2392
|
+
return false;
|
|
2393
|
+
}
|
|
2315
2394
|
verificacaoOperacoesBinariasIlegais(esquerdo, direito, operador) {
|
|
2395
|
+
// Bloquear operações aritméticas com operações unárias em vetores (padrão de ofuscação tipo !![] * 1)
|
|
2396
|
+
if (this.verificarOperacaoUnariaEmVetor(esquerdo)) {
|
|
2397
|
+
throw this.erro(operador, `Operação inválida: não é possível realizar operação ${operador.lexema} com expressão unária aplicada a vetor.`);
|
|
2398
|
+
}
|
|
2399
|
+
if (this.verificarOperacaoUnariaEmVetor(direito)) {
|
|
2400
|
+
throw this.erro(operador, `Operação inválida: não é possível realizar operação ${operador.lexema} com expressão unária aplicada a vetor.`);
|
|
2401
|
+
}
|
|
2316
2402
|
if (esquerdo.tipo === 'vetor' || esquerdo.tipo.endsWith('[]')) {
|
|
2317
2403
|
if (['dicionario', 'dicionário', 'nulo'].includes(direito.tipo)) {
|
|
2318
2404
|
throw this.erro(operador, `Operação inválida: não é possível realizar operação ${operador.lexema} entre vetor e ${direito.tipo}.`);
|
|
@@ -3682,7 +3768,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
3682
3768
|
}
|
|
3683
3769
|
exports.AvaliadorSintatico = AvaliadorSintatico;
|
|
3684
3770
|
|
|
3685
|
-
},{"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-numero":30,"../bibliotecas/primitivas-texto":31,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../construtos/tuplas":80,"../declaracoes":109,"../inferenciador":
|
|
3771
|
+
},{"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-numero":30,"../bibliotecas/primitivas-texto":31,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../construtos/tuplas":80,"../declaracoes":109,"../inferenciador":135,"../informacao-elemento-sintatico":136,"../tipos-de-dados/delegua":207,"../tipos-de-simbolos/delegua":212,"./avaliador-sintatico-base":9,"./comum":11,"./elemento-montao-tipos":20,"./erro-avaliador-sintatico":21,"./informacao-escopo":23,"./montao-tipos":26,"./pilha-escopos":27,"browser-process-hrtime":401}],11:[function(require,module,exports){
|
|
3686
3772
|
"use strict";
|
|
3687
3773
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3688
3774
|
exports.buscarRetornos = buscarRetornos;
|
|
@@ -3783,7 +3869,7 @@ function registrarPrimitiva(primitivasConhecidas, tipo, catalogoPrimitivas) {
|
|
|
3783
3869
|
}
|
|
3784
3870
|
}
|
|
3785
3871
|
|
|
3786
|
-
},{"../declaracoes":109,"../informacao-elemento-sintatico":
|
|
3872
|
+
},{"../declaracoes":109,"../informacao-elemento-sintatico":136}],12:[function(require,module,exports){
|
|
3787
3873
|
"use strict";
|
|
3788
3874
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3789
3875
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -4009,7 +4095,7 @@ class AvaliadorSintaticoCalango extends avaliador_sintatico_base_1.AvaliadorSint
|
|
|
4009
4095
|
}
|
|
4010
4096
|
exports.AvaliadorSintaticoCalango = AvaliadorSintaticoCalango;
|
|
4011
4097
|
|
|
4012
|
-
},{"../../construtos":62,"../../declaracoes":109,"../../informacao-elemento-sintatico":
|
|
4098
|
+
},{"../../construtos":62,"../../declaracoes":109,"../../informacao-elemento-sintatico":136,"../../tipos-de-simbolos/calango":210,"../avaliador-sintatico-base":9,"../informacao-escopo":23,"../pilha-escopos":27}],13:[function(require,module,exports){
|
|
4013
4099
|
"use strict";
|
|
4014
4100
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4015
4101
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -4669,7 +4755,7 @@ class AvaliadorSintaticoEguaClassico {
|
|
|
4669
4755
|
}
|
|
4670
4756
|
exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
|
|
4671
4757
|
|
|
4672
|
-
},{"../../construtos":62,"../../declaracoes":109,"../../tipos-de-simbolos/egua-classico":
|
|
4758
|
+
},{"../../construtos":62,"../../declaracoes":109,"../../tipos-de-simbolos/egua-classico":213,"../erro-avaliador-sintatico":21}],14:[function(require,module,exports){
|
|
4673
4759
|
"use strict";
|
|
4674
4760
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4675
4761
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -6105,7 +6191,7 @@ class AvaliadorSintaticoPitugues {
|
|
|
6105
6191
|
}
|
|
6106
6192
|
exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
|
|
6107
6193
|
|
|
6108
|
-
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../declaracoes":109,"../../inferenciador":
|
|
6194
|
+
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../declaracoes":109,"../../inferenciador":135,"../../informacao-elemento-sintatico":136,"../../lexador":197,"../../lexador/micro-lexador-pitugues":202,"../../tipos-de-dados/dialetos/pitugues":208,"../../tipos-de-simbolos/pitugues":216,"../comum":11,"../erro-avaliador-sintatico":21,"../informacao-escopo":23,"../pilha-escopos":27,"./micro-avaliador-sintatico-pitugues":19,"browser-process-hrtime":401}],15:[function(require,module,exports){
|
|
6109
6195
|
"use strict";
|
|
6110
6196
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
6111
6197
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -6279,7 +6365,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
|
|
|
6279
6365
|
}
|
|
6280
6366
|
exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
|
|
6281
6367
|
|
|
6282
|
-
},{"../../construtos":62,"../../declaracoes":109,"../../tipos-de-simbolos/portugol-ipt":
|
|
6368
|
+
},{"../../construtos":62,"../../declaracoes":109,"../../tipos-de-simbolos/portugol-ipt":217,"../avaliador-sintatico-base":9}],16:[function(require,module,exports){
|
|
6283
6369
|
"use strict";
|
|
6284
6370
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
6285
6371
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -7034,7 +7120,7 @@ class AvaliadorSintaticoPrisma extends avaliador_sintatico_base_1.AvaliadorSinta
|
|
|
7034
7120
|
}
|
|
7035
7121
|
exports.AvaliadorSintaticoPrisma = AvaliadorSintaticoPrisma;
|
|
7036
7122
|
|
|
7037
|
-
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../declaracoes":109,"../../inferenciador":
|
|
7123
|
+
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../declaracoes":109,"../../inferenciador":135,"../../informacao-elemento-sintatico":136,"../../lexador":197,"../../tipos-de-simbolos/prisma":218,"../avaliador-sintatico-base":9,"../comum":11,"../erro-avaliador-sintatico":21,"../informacao-escopo":23,"../pilha-escopos":27,"browser-process-hrtime":401}],17:[function(require,module,exports){
|
|
7038
7124
|
"use strict";
|
|
7039
7125
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
7040
7126
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -8020,7 +8106,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
|
|
|
8020
8106
|
}
|
|
8021
8107
|
exports.AvaliadorSintaticoTenda = AvaliadorSintaticoTenda;
|
|
8022
8108
|
|
|
8023
|
-
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../construtos/tuplas":80,"../../declaracoes":109,"../../inferenciador":
|
|
8109
|
+
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../construtos/tuplas":80,"../../declaracoes":109,"../../inferenciador":135,"../../informacao-elemento-sintatico":136,"../../lexador/simbolo":205,"../../tipos-de-dados/delegua":207,"../../tipos-de-simbolos/tenda":219,"../avaliador-sintatico-base":9,"./../erro-avaliador-sintatico":21,"./../informacao-escopo":23,"./../pilha-escopos":27,"browser-process-hrtime":401}],18:[function(require,module,exports){
|
|
8024
8110
|
"use strict";
|
|
8025
8111
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
8026
8112
|
if (k2 === undefined) k2 = k;
|
|
@@ -8284,7 +8370,7 @@ class MicroAvaliadorSintaticoPitugues extends micro_avaliador_sintatico_base_1.M
|
|
|
8284
8370
|
}
|
|
8285
8371
|
exports.MicroAvaliadorSintaticoPitugues = MicroAvaliadorSintaticoPitugues;
|
|
8286
8372
|
|
|
8287
|
-
},{"../../construtos":62,"../../declaracoes":109,"../../inferenciador":
|
|
8373
|
+
},{"../../construtos":62,"../../declaracoes":109,"../../inferenciador":135,"../../tipos-de-simbolos/pitugues":216,"../micro-avaliador-sintatico-base":24}],20:[function(require,module,exports){
|
|
8288
8374
|
"use strict";
|
|
8289
8375
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8290
8376
|
exports.ElementoMontaoTipos = void 0;
|
|
@@ -8466,7 +8552,7 @@ class MicroAvaliadorSintaticoBase {
|
|
|
8466
8552
|
}
|
|
8467
8553
|
exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
|
|
8468
8554
|
|
|
8469
|
-
},{"../construtos":62,"../tipos-de-simbolos/comum":
|
|
8555
|
+
},{"../construtos":62,"../tipos-de-simbolos/comum":211,"./erro-avaliador-sintatico":21}],25:[function(require,module,exports){
|
|
8470
8556
|
"use strict";
|
|
8471
8557
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8472
8558
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -8688,7 +8774,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
|
|
|
8688
8774
|
}
|
|
8689
8775
|
exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
|
|
8690
8776
|
|
|
8691
|
-
},{"../construtos":62,"../tipos-de-simbolos/microgramaticas/delegua":
|
|
8777
|
+
},{"../construtos":62,"../tipos-de-simbolos/microgramaticas/delegua":215,"./micro-avaliador-sintatico-base":24}],26:[function(require,module,exports){
|
|
8692
8778
|
"use strict";
|
|
8693
8779
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8694
8780
|
exports.MontaoTipos = void 0;
|
|
@@ -8739,7 +8825,7 @@ class MontaoTipos {
|
|
|
8739
8825
|
}
|
|
8740
8826
|
exports.MontaoTipos = MontaoTipos;
|
|
8741
8827
|
|
|
8742
|
-
},{"../geracao-identificadores":
|
|
8828
|
+
},{"../geracao-identificadores":133,"./erro-avaliador-sintatico":21}],27:[function(require,module,exports){
|
|
8743
8829
|
"use strict";
|
|
8744
8830
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8745
8831
|
exports.PilhaEscopos = void 0;
|
|
@@ -9743,7 +9829,7 @@ async function tupla(interpretador, vetor) {
|
|
|
9743
9829
|
}
|
|
9744
9830
|
}
|
|
9745
9831
|
|
|
9746
|
-
},{"../construtos":62,"../excecoes":
|
|
9832
|
+
},{"../construtos":62,"../excecoes":129,"../inferenciador":135,"../interpretador/estruturas":171,"../interpretador/estruturas/descritor-tipo-classe":169,"../interpretador/estruturas/funcao-padrao":170,"../interpretador/estruturas/objeto-delegua-classe":174,"../quebras":206}],29:[function(require,module,exports){
|
|
9747
9833
|
"use strict";
|
|
9748
9834
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9749
9835
|
const construtos_1 = require("../construtos");
|
|
@@ -9825,7 +9911,7 @@ exports.default = {
|
|
|
9825
9911
|
}
|
|
9826
9912
|
};
|
|
9827
9913
|
|
|
9828
|
-
},{"../construtos":62,"../informacao-elemento-sintatico":
|
|
9914
|
+
},{"../construtos":62,"../informacao-elemento-sintatico":136}],30:[function(require,module,exports){
|
|
9829
9915
|
"use strict";
|
|
9830
9916
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9831
9917
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -9910,10 +9996,44 @@ exports.default = {
|
|
|
9910
9996
|
},
|
|
9911
9997
|
};
|
|
9912
9998
|
|
|
9913
|
-
},{"../informacao-elemento-sintatico":
|
|
9999
|
+
},{"../informacao-elemento-sintatico":136}],31:[function(require,module,exports){
|
|
9914
10000
|
"use strict";
|
|
9915
10001
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10002
|
+
exports.implementacaoParticao = void 0;
|
|
9916
10003
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
10004
|
+
const construtos_1 = require("../construtos");
|
|
10005
|
+
const excecoes_1 = require("../excecoes");
|
|
10006
|
+
const implementacaoParticao = (interpretador, nomePrimitiva, texto, separador, ...args) => {
|
|
10007
|
+
if (args.length > 0) {
|
|
10008
|
+
return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(null, `A função "${nomePrimitiva}" aceita apenas um argumento.`, interpretador.linhaDeclaracaoAtual));
|
|
10009
|
+
}
|
|
10010
|
+
if (typeof texto !== 'string') {
|
|
10011
|
+
return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(null, `A função "${nomePrimitiva}" só pode ser chamada em textos.`, interpretador.linhaDeclaracaoAtual));
|
|
10012
|
+
}
|
|
10013
|
+
if (separador === undefined) {
|
|
10014
|
+
return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(null, `A função "${nomePrimitiva}" requer um argumento separador.`, interpretador.linhaDeclaracaoAtual));
|
|
10015
|
+
}
|
|
10016
|
+
if (typeof separador !== 'string') {
|
|
10017
|
+
return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(null, 'O separador deve ser do tipo texto.', interpretador.linhaDeclaracaoAtual));
|
|
10018
|
+
}
|
|
10019
|
+
if (separador === '') {
|
|
10020
|
+
return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(null, 'O separador não pode ser uma string vazia.', interpretador.linhaDeclaracaoAtual));
|
|
10021
|
+
}
|
|
10022
|
+
const indice = texto.indexOf(separador);
|
|
10023
|
+
let partes;
|
|
10024
|
+
if (indice === -1) {
|
|
10025
|
+
partes = [texto, '', ''];
|
|
10026
|
+
}
|
|
10027
|
+
else {
|
|
10028
|
+
const antes = texto.substring(0, indice);
|
|
10029
|
+
const depois = texto.substring(indice + separador.length);
|
|
10030
|
+
partes = [antes, separador, depois];
|
|
10031
|
+
}
|
|
10032
|
+
const elementos = partes.map(p => new construtos_1.Literal(interpretador.hashArquivoDeclaracaoAtual, interpretador.linhaDeclaracaoAtual, p, 'texto'));
|
|
10033
|
+
const tupla = new construtos_1.TuplaN(interpretador.hashArquivoDeclaracaoAtual, interpretador.linhaDeclaracaoAtual, elementos);
|
|
10034
|
+
return Promise.resolve(tupla);
|
|
10035
|
+
};
|
|
10036
|
+
exports.implementacaoParticao = implementacaoParticao;
|
|
9917
10037
|
exports.default = {
|
|
9918
10038
|
aparar: {
|
|
9919
10039
|
tipoRetorno: 'texto',
|
|
@@ -10088,6 +10208,30 @@ exports.default = {
|
|
|
10088
10208
|
'\n\n ### Formas de uso \n',
|
|
10089
10209
|
exemploCodigo: 'texto.minusculo()',
|
|
10090
10210
|
},
|
|
10211
|
+
particao: {
|
|
10212
|
+
tipoRetorno: 'tupla',
|
|
10213
|
+
argumentos: [
|
|
10214
|
+
new informacao_elemento_sintatico_1.InformacaoElementoSintatico('separador', 'texto', true, [], 'O separador usado para partir o texto.'),
|
|
10215
|
+
],
|
|
10216
|
+
implementacao: exports.implementacaoParticao,
|
|
10217
|
+
assinaturaFormato: 'texto.particao(separador: texto)',
|
|
10218
|
+
documentacao: '# `texto.particao(separador)` \n \n' +
|
|
10219
|
+
'Divide o texto na primeira ocorrência do separador e retorna uma tupla com: ' +
|
|
10220
|
+
'o que vem antes, o separador e o que vem depois.',
|
|
10221
|
+
exemploCodigo: 'texto.particao(" ")',
|
|
10222
|
+
},
|
|
10223
|
+
partição: {
|
|
10224
|
+
tipoRetorno: 'tupla',
|
|
10225
|
+
argumentos: [
|
|
10226
|
+
new informacao_elemento_sintatico_1.InformacaoElementoSintatico('separador', 'texto', true, [], 'O separador usado para partir o texto.'),
|
|
10227
|
+
],
|
|
10228
|
+
implementacao: exports.implementacaoParticao,
|
|
10229
|
+
assinaturaFormato: 'texto.partição(separador: texto)',
|
|
10230
|
+
documentacao: '# `texto.partição(separador)` \n \n' +
|
|
10231
|
+
'Divide o texto na primeira ocorrência do separador e retorna uma tupla com: ' +
|
|
10232
|
+
'o que vem antes, o separador e o que vem depois.',
|
|
10233
|
+
exemploCodigo: 'texto.partição(" ")',
|
|
10234
|
+
},
|
|
10091
10235
|
substituir: {
|
|
10092
10236
|
tipoRetorno: 'texto',
|
|
10093
10237
|
argumentos: [
|
|
@@ -10182,7 +10326,7 @@ exports.default = {
|
|
|
10182
10326
|
},
|
|
10183
10327
|
};
|
|
10184
10328
|
|
|
10185
|
-
},{"../informacao-elemento-sintatico":
|
|
10329
|
+
},{"../construtos":62,"../excecoes":129,"../informacao-elemento-sintatico":136}],32:[function(require,module,exports){
|
|
10186
10330
|
"use strict";
|
|
10187
10331
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10188
10332
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -10557,7 +10701,7 @@ exports.default = {
|
|
|
10557
10701
|
},
|
|
10558
10702
|
};
|
|
10559
10703
|
|
|
10560
|
-
},{"../informacao-elemento-sintatico":
|
|
10704
|
+
},{"../informacao-elemento-sintatico":136}],33:[function(require,module,exports){
|
|
10561
10705
|
"use strict";
|
|
10562
10706
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10563
10707
|
exports.AcessoElementoMatriz = void 0;
|
|
@@ -11019,7 +11163,7 @@ class Chamada {
|
|
|
11019
11163
|
}
|
|
11020
11164
|
exports.Chamada = Chamada;
|
|
11021
11165
|
|
|
11022
|
-
},{"../geracao-identificadores":
|
|
11166
|
+
},{"../geracao-identificadores":133}],47:[function(require,module,exports){
|
|
11023
11167
|
"use strict";
|
|
11024
11168
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11025
11169
|
exports.ComentarioComoConstruto = void 0;
|
|
@@ -11504,7 +11648,7 @@ class Leia {
|
|
|
11504
11648
|
}
|
|
11505
11649
|
exports.Leia = Leia;
|
|
11506
11650
|
|
|
11507
|
-
},{"../geracao-identificadores":
|
|
11651
|
+
},{"../geracao-identificadores":133}],65:[function(require,module,exports){
|
|
11508
11652
|
"use strict";
|
|
11509
11653
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11510
11654
|
exports.ListaCompreensao = void 0;
|
|
@@ -12669,7 +12813,7 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
|
|
|
12669
12813
|
}
|
|
12670
12814
|
exports.FuncaoDeclaracao = FuncaoDeclaracao;
|
|
12671
12815
|
|
|
12672
|
-
},{"../geracao-identificadores":
|
|
12816
|
+
},{"../geracao-identificadores":133,"./declaracao":99}],108:[function(require,module,exports){
|
|
12673
12817
|
"use strict";
|
|
12674
12818
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12675
12819
|
exports.Importar = void 0;
|
|
@@ -13529,7 +13673,7 @@ class RegraFortalecerTipos {
|
|
|
13529
13673
|
}
|
|
13530
13674
|
exports.RegraFortalecerTipos = RegraFortalecerTipos;
|
|
13531
13675
|
|
|
13532
|
-
},{"../../construtos":62,"../../declaracoes":109,"../../inferenciador":
|
|
13676
|
+
},{"../../construtos":62,"../../declaracoes":109,"../../inferenciador":135}],126:[function(require,module,exports){
|
|
13533
13677
|
"use strict";
|
|
13534
13678
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13535
13679
|
if (k2 === undefined) k2 = k;
|
|
@@ -13548,8 +13692,99 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
13548
13692
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13549
13693
|
__exportStar(require("./fortalecer-tipos"), exports);
|
|
13550
13694
|
__exportStar(require("./convencao-nomenclatura"), exports);
|
|
13695
|
+
__exportStar(require("./paradigma-consistente"), exports);
|
|
13696
|
+
|
|
13697
|
+
},{"./convencao-nomenclatura":124,"./fortalecer-tipos":125,"./paradigma-consistente":127}],127:[function(require,module,exports){
|
|
13698
|
+
"use strict";
|
|
13699
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13700
|
+
exports.RegraParadigmaConsistente = void 0;
|
|
13701
|
+
const leia_1 = require("../../construtos/leia");
|
|
13702
|
+
const declaracoes_1 = require("../../declaracoes");
|
|
13703
|
+
const mapeamento_paradigmas_1 = require("../../lexador/mapeamento-paradigmas");
|
|
13704
|
+
/**
|
|
13705
|
+
* Regra que enforça consistência de paradigma em palavras reservadas.
|
|
13706
|
+
*
|
|
13707
|
+
* Em português, instruções podem ser expressas no imperativo (escreva, leia)
|
|
13708
|
+
* ou no infinitivo (escrever, ler). Esta regra permite escolher um paradigma
|
|
13709
|
+
* único para manter a consistência do código.
|
|
13710
|
+
*
|
|
13711
|
+
* Exemplos:
|
|
13712
|
+
* - Modo imperativo: `escreva()`, `leia()`, `tente { } pegue { }`
|
|
13713
|
+
* - Modo infinitivo: `escrever()`, `ler()`, `tentar { } pegar { }`
|
|
13714
|
+
*/
|
|
13715
|
+
class RegraParadigmaConsistente {
|
|
13716
|
+
constructor(opcoes = {}) {
|
|
13717
|
+
this.nome = 'paradigma-consistente';
|
|
13718
|
+
this.descricao = 'Enforça consistência de paradigma (imperativo/infinitivo) em palavras reservadas';
|
|
13719
|
+
this.opcoes = {
|
|
13720
|
+
paradigma: opcoes.paradigma || 'ambos',
|
|
13721
|
+
};
|
|
13722
|
+
this.mapaLexemaParaParadigma = (0, mapeamento_paradigmas_1.obterMapaLexemaParaParadigma)();
|
|
13723
|
+
}
|
|
13724
|
+
aplicarEmDeclaracao(declaracao) {
|
|
13725
|
+
// Processa Escreva
|
|
13726
|
+
if (declaracao instanceof declaracoes_1.Escreva || declaracao instanceof declaracoes_1.EscrevaMesmaLinha) {
|
|
13727
|
+
return this.processarDeclaracaoComSimbolo(declaracao, 'simboloEscreva');
|
|
13728
|
+
}
|
|
13729
|
+
return declaracao;
|
|
13730
|
+
}
|
|
13731
|
+
aplicarEmConstruto(construto) {
|
|
13732
|
+
// Processa Leia
|
|
13733
|
+
if (construto instanceof leia_1.Leia) {
|
|
13734
|
+
return this.processarConstrutoComSimbolo(construto, 'simbolo');
|
|
13735
|
+
}
|
|
13736
|
+
return construto;
|
|
13737
|
+
}
|
|
13738
|
+
/**
|
|
13739
|
+
* Processa uma declaração que tem um símbolo específico.
|
|
13740
|
+
*/
|
|
13741
|
+
processarDeclaracaoComSimbolo(declaracao, nomeCampoSimbolo) {
|
|
13742
|
+
const simbolo = declaracao[nomeCampoSimbolo];
|
|
13743
|
+
if (!simbolo) {
|
|
13744
|
+
return declaracao;
|
|
13745
|
+
}
|
|
13746
|
+
const lexemaAtual = simbolo.lexema.toLowerCase();
|
|
13747
|
+
const paradigmaLexema = this.mapaLexemaParaParadigma.get(lexemaAtual);
|
|
13748
|
+
// Se for neutro ou ambos, não faz nada
|
|
13749
|
+
if (paradigmaLexema === 'neutro' || this.opcoes.paradigma === 'ambos') {
|
|
13750
|
+
return declaracao;
|
|
13751
|
+
}
|
|
13752
|
+
// Se o lexema não pertence ao paradigma configurado, transforma
|
|
13753
|
+
if (!(0, mapeamento_paradigmas_1.pertenceAoParadigma)(lexemaAtual, this.opcoes.paradigma)) {
|
|
13754
|
+
const formaAlternativa = (0, mapeamento_paradigmas_1.obterFormaAlternativa)(lexemaAtual, this.opcoes.paradigma);
|
|
13755
|
+
if (formaAlternativa) {
|
|
13756
|
+
simbolo.lexema = formaAlternativa;
|
|
13757
|
+
}
|
|
13758
|
+
}
|
|
13759
|
+
return declaracao;
|
|
13760
|
+
}
|
|
13761
|
+
/**
|
|
13762
|
+
* Processa um construto que tem um símbolo específico.
|
|
13763
|
+
*/
|
|
13764
|
+
processarConstrutoComSimbolo(construto, nomeCampoSimbolo) {
|
|
13765
|
+
const simbolo = construto[nomeCampoSimbolo];
|
|
13766
|
+
if (!simbolo) {
|
|
13767
|
+
return construto;
|
|
13768
|
+
}
|
|
13769
|
+
const lexemaAtual = simbolo.lexema.toLowerCase();
|
|
13770
|
+
const paradigmaLexema = this.mapaLexemaParaParadigma.get(lexemaAtual);
|
|
13771
|
+
// Se for neutro ou ambos, não faz nada
|
|
13772
|
+
if (paradigmaLexema === 'neutro' || this.opcoes.paradigma === 'ambos') {
|
|
13773
|
+
return construto;
|
|
13774
|
+
}
|
|
13775
|
+
// Se o lexema não pertence ao paradigma configurado, transforma
|
|
13776
|
+
if (!(0, mapeamento_paradigmas_1.pertenceAoParadigma)(lexemaAtual, this.opcoes.paradigma)) {
|
|
13777
|
+
const formaAlternativa = (0, mapeamento_paradigmas_1.obterFormaAlternativa)(lexemaAtual, this.opcoes.paradigma);
|
|
13778
|
+
if (formaAlternativa) {
|
|
13779
|
+
simbolo.lexema = formaAlternativa;
|
|
13780
|
+
}
|
|
13781
|
+
}
|
|
13782
|
+
return construto;
|
|
13783
|
+
}
|
|
13784
|
+
}
|
|
13785
|
+
exports.RegraParadigmaConsistente = RegraParadigmaConsistente;
|
|
13551
13786
|
|
|
13552
|
-
},{"
|
|
13787
|
+
},{"../../construtos/leia":64,"../../declaracoes":109,"../../lexador/mapeamento-paradigmas":201}],128:[function(require,module,exports){
|
|
13553
13788
|
"use strict";
|
|
13554
13789
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13555
13790
|
exports.ErroEmTempoDeExecucao = void 0;
|
|
@@ -13564,7 +13799,7 @@ class ErroEmTempoDeExecucao extends Error {
|
|
|
13564
13799
|
}
|
|
13565
13800
|
exports.ErroEmTempoDeExecucao = ErroEmTempoDeExecucao;
|
|
13566
13801
|
|
|
13567
|
-
},{}],
|
|
13802
|
+
},{}],129:[function(require,module,exports){
|
|
13568
13803
|
"use strict";
|
|
13569
13804
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13570
13805
|
if (k2 === undefined) k2 = k;
|
|
@@ -13583,7 +13818,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
13583
13818
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13584
13819
|
__exportStar(require("./erro-em-tempo-de-execucao"), exports);
|
|
13585
13820
|
|
|
13586
|
-
},{"./erro-em-tempo-de-execucao":
|
|
13821
|
+
},{"./erro-em-tempo-de-execucao":128}],130:[function(require,module,exports){
|
|
13587
13822
|
"use strict";
|
|
13588
13823
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13589
13824
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14340,7 +14575,7 @@ class FormatadorDelegua {
|
|
|
14340
14575
|
}
|
|
14341
14576
|
exports.FormatadorDelegua = FormatadorDelegua;
|
|
14342
14577
|
|
|
14343
|
-
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":
|
|
14578
|
+
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":212}],131:[function(require,module,exports){
|
|
14344
14579
|
"use strict";
|
|
14345
14580
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14346
14581
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14756,7 +14991,7 @@ class FormatadorPitugues {
|
|
|
14756
14991
|
}
|
|
14757
14992
|
exports.FormatadorPitugues = FormatadorPitugues;
|
|
14758
14993
|
|
|
14759
|
-
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/pitugues":
|
|
14994
|
+
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/pitugues":216}],132:[function(require,module,exports){
|
|
14760
14995
|
"use strict";
|
|
14761
14996
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14762
14997
|
if (k2 === undefined) k2 = k;
|
|
@@ -14776,7 +15011,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
14776
15011
|
__exportStar(require("./formatador-delegua"), exports);
|
|
14777
15012
|
__exportStar(require("./formatador-pitugues"), exports);
|
|
14778
15013
|
|
|
14779
|
-
},{"./formatador-delegua":
|
|
15014
|
+
},{"./formatador-delegua":130,"./formatador-pitugues":131}],133:[function(require,module,exports){
|
|
14780
15015
|
"use strict";
|
|
14781
15016
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14782
15017
|
exports.cyrb53 = cyrb53;
|
|
@@ -14820,7 +15055,7 @@ function uuidv4() {
|
|
|
14820
15055
|
});
|
|
14821
15056
|
}
|
|
14822
15057
|
|
|
14823
|
-
},{}],
|
|
15058
|
+
},{}],134:[function(require,module,exports){
|
|
14824
15059
|
"use strict";
|
|
14825
15060
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14826
15061
|
if (k2 === undefined) k2 = k;
|
|
@@ -14849,7 +15084,7 @@ __exportStar(require("./interpretador"), exports);
|
|
|
14849
15084
|
__exportStar(require("./lexador"), exports);
|
|
14850
15085
|
__exportStar(require("./tradutores"), exports);
|
|
14851
15086
|
|
|
14852
|
-
},{"./analisador-semantico":6,"./avaliador-sintatico":22,"./construtos":62,"./declaracoes":109,"./estilizador":123,"./formatadores":
|
|
15087
|
+
},{"./analisador-semantico":6,"./avaliador-sintatico":22,"./construtos":62,"./declaracoes":109,"./estilizador":123,"./formatadores":132,"./geracao-identificadores":133,"./interfaces":143,"./interpretador":177,"./lexador":197,"./tradutores":220}],135:[function(require,module,exports){
|
|
14853
15088
|
"use strict";
|
|
14854
15089
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14855
15090
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14978,7 +15213,7 @@ function tipoInferenciaParaTipoDadosElementar(tipoInferencia) {
|
|
|
14978
15213
|
}
|
|
14979
15214
|
}
|
|
14980
15215
|
|
|
14981
|
-
},{"./tipos-de-dados/delegua":
|
|
15216
|
+
},{"./tipos-de-dados/delegua":207,"./tipos-de-dados/primitivos":209,"./tipos-de-simbolos/delegua":212}],136:[function(require,module,exports){
|
|
14982
15217
|
"use strict";
|
|
14983
15218
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14984
15219
|
exports.InformacaoElementoSintatico = void 0;
|
|
@@ -14997,15 +15232,15 @@ class InformacaoElementoSintatico {
|
|
|
14997
15232
|
}
|
|
14998
15233
|
exports.InformacaoElementoSintatico = InformacaoElementoSintatico;
|
|
14999
15234
|
|
|
15000
|
-
},{}],
|
|
15235
|
+
},{}],137:[function(require,module,exports){
|
|
15001
15236
|
"use strict";
|
|
15002
15237
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15003
15238
|
|
|
15004
|
-
},{}],
|
|
15239
|
+
},{}],138:[function(require,module,exports){
|
|
15005
15240
|
"use strict";
|
|
15006
15241
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15007
15242
|
|
|
15008
|
-
},{}],
|
|
15243
|
+
},{}],139:[function(require,module,exports){
|
|
15009
15244
|
"use strict";
|
|
15010
15245
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15011
15246
|
exports.DiagnosticoSeveridade = void 0;
|
|
@@ -15017,7 +15252,7 @@ var DiagnosticoSeveridade;
|
|
|
15017
15252
|
DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
|
|
15018
15253
|
})(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
|
|
15019
15254
|
|
|
15020
|
-
},{}],
|
|
15255
|
+
},{}],140:[function(require,module,exports){
|
|
15021
15256
|
"use strict";
|
|
15022
15257
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15023
15258
|
if (k2 === undefined) k2 = k;
|
|
@@ -15036,15 +15271,15 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15036
15271
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15037
15272
|
__exportStar(require("./diagnostico-analisador-semantico"), exports);
|
|
15038
15273
|
|
|
15039
|
-
},{"./diagnostico-analisador-semantico":
|
|
15274
|
+
},{"./diagnostico-analisador-semantico":139}],141:[function(require,module,exports){
|
|
15040
15275
|
"use strict";
|
|
15041
15276
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15042
15277
|
|
|
15043
|
-
},{}],
|
|
15278
|
+
},{}],142:[function(require,module,exports){
|
|
15044
15279
|
"use strict";
|
|
15045
15280
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15046
15281
|
|
|
15047
|
-
},{}],
|
|
15282
|
+
},{}],143:[function(require,module,exports){
|
|
15048
15283
|
"use strict";
|
|
15049
15284
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15050
15285
|
if (k2 === undefined) k2 = k;
|
|
@@ -15082,11 +15317,7 @@ __exportStar(require("./construtos"), exports);
|
|
|
15082
15317
|
__exportStar(require("./erros"), exports);
|
|
15083
15318
|
__exportStar(require("./retornos"), exports);
|
|
15084
15319
|
|
|
15085
|
-
},{"./avaliador-sintatico-interface":
|
|
15086
|
-
"use strict";
|
|
15087
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15088
|
-
|
|
15089
|
-
},{}],144:[function(require,module,exports){
|
|
15320
|
+
},{"./avaliador-sintatico-interface":137,"./construtos":138,"./erros":140,"./estilizador-comum-interface":141,"./formatador-comum-interface":142,"./interpretador-com-depuracao-interface":144,"./interpretador-interface":145,"./lexador-interface":146,"./parametro-interface":147,"./pilha-interface":148,"./primitiva-interface":149,"./resolvedor-interface":150,"./resultado-parcial-interpretador-interface":151,"./retornos":152,"./retornos/retorno-execucao-interface":155,"./simbolo-interface":158,"./tradutor-interface":159,"./variavel-interface":160,"./visitante-comum-interface":161,"./visitante-delegua-interface":162}],144:[function(require,module,exports){
|
|
15090
15321
|
"use strict";
|
|
15091
15322
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15092
15323
|
|
|
@@ -15116,6 +15347,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
15116
15347
|
|
|
15117
15348
|
},{}],151:[function(require,module,exports){
|
|
15118
15349
|
"use strict";
|
|
15350
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15351
|
+
|
|
15352
|
+
},{}],152:[function(require,module,exports){
|
|
15353
|
+
"use strict";
|
|
15119
15354
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15120
15355
|
if (k2 === undefined) k2 = k;
|
|
15121
15356
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -15137,11 +15372,7 @@ __exportStar(require("./retorno-execucao-interface"), exports);
|
|
|
15137
15372
|
__exportStar(require("./retorno-interpretador-interface"), exports);
|
|
15138
15373
|
__exportStar(require("./retorno-lexador"), exports);
|
|
15139
15374
|
|
|
15140
|
-
},{"./retorno-analisador-semantico":
|
|
15141
|
-
"use strict";
|
|
15142
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15143
|
-
|
|
15144
|
-
},{}],153:[function(require,module,exports){
|
|
15375
|
+
},{"./retorno-analisador-semantico":153,"./retorno-avaliador-sintatico":154,"./retorno-execucao-interface":155,"./retorno-interpretador-interface":156,"./retorno-lexador":157}],153:[function(require,module,exports){
|
|
15145
15376
|
"use strict";
|
|
15146
15377
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15147
15378
|
|
|
@@ -15179,6 +15410,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
15179
15410
|
|
|
15180
15411
|
},{}],162:[function(require,module,exports){
|
|
15181
15412
|
"use strict";
|
|
15413
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15414
|
+
|
|
15415
|
+
},{}],163:[function(require,module,exports){
|
|
15416
|
+
"use strict";
|
|
15182
15417
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15183
15418
|
if (k2 === undefined) k2 = k;
|
|
15184
15419
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -15544,7 +15779,7 @@ function obterAjudaFuncaoPadrao(funcaoPadrao) {
|
|
|
15544
15779
|
}
|
|
15545
15780
|
}
|
|
15546
15781
|
|
|
15547
|
-
},{"../bibliotecas/biblioteca-global":28,"../construtos":62,"./estruturas/funcao-padrao":
|
|
15782
|
+
},{"../bibliotecas/biblioteca-global":28,"../construtos":62,"./estruturas/funcao-padrao":170}],164:[function(require,module,exports){
|
|
15548
15783
|
"use strict";
|
|
15549
15784
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15550
15785
|
exports.EspacoMemoria = void 0;
|
|
@@ -15569,7 +15804,7 @@ class EspacoMemoria {
|
|
|
15569
15804
|
}
|
|
15570
15805
|
exports.EspacoMemoria = EspacoMemoria;
|
|
15571
15806
|
|
|
15572
|
-
},{}],
|
|
15807
|
+
},{}],165:[function(require,module,exports){
|
|
15573
15808
|
"use strict";
|
|
15574
15809
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15575
15810
|
exports.Chamavel = void 0;
|
|
@@ -15583,7 +15818,7 @@ class Chamavel {
|
|
|
15583
15818
|
}
|
|
15584
15819
|
exports.Chamavel = Chamavel;
|
|
15585
15820
|
|
|
15586
|
-
},{}],
|
|
15821
|
+
},{}],166:[function(require,module,exports){
|
|
15587
15822
|
"use strict";
|
|
15588
15823
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15589
15824
|
exports.ClasseDeModulo = void 0;
|
|
@@ -15604,7 +15839,7 @@ class ClasseDeModulo extends chamavel_1.Chamavel {
|
|
|
15604
15839
|
}
|
|
15605
15840
|
exports.ClasseDeModulo = ClasseDeModulo;
|
|
15606
15841
|
|
|
15607
|
-
},{"./chamavel":
|
|
15842
|
+
},{"./chamavel":165}],167:[function(require,module,exports){
|
|
15608
15843
|
"use strict";
|
|
15609
15844
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15610
15845
|
exports.ClassePadrao = void 0;
|
|
@@ -15645,7 +15880,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
|
|
|
15645
15880
|
}
|
|
15646
15881
|
exports.ClassePadrao = ClassePadrao;
|
|
15647
15882
|
|
|
15648
|
-
},{"./chamavel":
|
|
15883
|
+
},{"./chamavel":165}],168:[function(require,module,exports){
|
|
15649
15884
|
"use strict";
|
|
15650
15885
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15651
15886
|
exports.DeleguaFuncao = void 0;
|
|
@@ -15790,7 +16025,7 @@ class DeleguaFuncao extends chamavel_1.Chamavel {
|
|
|
15790
16025
|
}
|
|
15791
16026
|
exports.DeleguaFuncao = DeleguaFuncao;
|
|
15792
16027
|
|
|
15793
|
-
},{"../../declaracoes":109,"../../quebras":
|
|
16028
|
+
},{"../../declaracoes":109,"../../quebras":206,"../espaco-memoria":164,"./chamavel":165}],169:[function(require,module,exports){
|
|
15794
16029
|
"use strict";
|
|
15795
16030
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15796
16031
|
exports.DescritorTipoClasse = void 0;
|
|
@@ -15871,7 +16106,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
|
|
|
15871
16106
|
}
|
|
15872
16107
|
exports.DescritorTipoClasse = DescritorTipoClasse;
|
|
15873
16108
|
|
|
15874
|
-
},{"../../excecoes":
|
|
16109
|
+
},{"../../excecoes":129,"./chamavel":165,"./objeto-delegua-classe":174}],170:[function(require,module,exports){
|
|
15875
16110
|
"use strict";
|
|
15876
16111
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15877
16112
|
exports.FuncaoPadrao = void 0;
|
|
@@ -15908,7 +16143,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
|
|
|
15908
16143
|
}
|
|
15909
16144
|
exports.FuncaoPadrao = FuncaoPadrao;
|
|
15910
16145
|
|
|
15911
|
-
},{"./chamavel":
|
|
16146
|
+
},{"./chamavel":165}],171:[function(require,module,exports){
|
|
15912
16147
|
"use strict";
|
|
15913
16148
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15914
16149
|
if (k2 === undefined) k2 = k;
|
|
@@ -15937,7 +16172,7 @@ __exportStar(require("./objeto-delegua-classe"), exports);
|
|
|
15937
16172
|
__exportStar(require("./objeto-padrao"), exports);
|
|
15938
16173
|
__exportStar(require("./referencia-montao"), exports);
|
|
15939
16174
|
|
|
15940
|
-
},{"./chamavel":
|
|
16175
|
+
},{"./chamavel":165,"./classe-de-modulo":166,"./classe-padrao":167,"./delegua-funcao":168,"./descritor-tipo-classe":169,"./funcao-padrao":170,"./metodo-primitiva":172,"./modulo":173,"./objeto-delegua-classe":174,"./objeto-padrao":175,"./referencia-montao":176}],172:[function(require,module,exports){
|
|
15941
16176
|
"use strict";
|
|
15942
16177
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15943
16178
|
exports.MetodoPrimitiva = void 0;
|
|
@@ -15983,7 +16218,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
|
|
|
15983
16218
|
}
|
|
15984
16219
|
exports.MetodoPrimitiva = MetodoPrimitiva;
|
|
15985
16220
|
|
|
15986
|
-
},{"./chamavel":
|
|
16221
|
+
},{"./chamavel":165}],173:[function(require,module,exports){
|
|
15987
16222
|
"use strict";
|
|
15988
16223
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15989
16224
|
exports.DeleguaModulo = void 0;
|
|
@@ -16009,7 +16244,7 @@ class DeleguaModulo {
|
|
|
16009
16244
|
}
|
|
16010
16245
|
exports.DeleguaModulo = DeleguaModulo;
|
|
16011
16246
|
|
|
16012
|
-
},{}],
|
|
16247
|
+
},{}],174:[function(require,module,exports){
|
|
16013
16248
|
"use strict";
|
|
16014
16249
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16015
16250
|
exports.ObjetoDeleguaClasse = void 0;
|
|
@@ -16077,7 +16312,7 @@ class ObjetoDeleguaClasse {
|
|
|
16077
16312
|
}
|
|
16078
16313
|
exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
|
|
16079
16314
|
|
|
16080
|
-
},{"../../excecoes":
|
|
16315
|
+
},{"../../excecoes":129}],175:[function(require,module,exports){
|
|
16081
16316
|
"use strict";
|
|
16082
16317
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16083
16318
|
exports.ObjetoPadrao = void 0;
|
|
@@ -16111,7 +16346,7 @@ class ObjetoPadrao {
|
|
|
16111
16346
|
}
|
|
16112
16347
|
exports.ObjetoPadrao = ObjetoPadrao;
|
|
16113
16348
|
|
|
16114
|
-
},{}],
|
|
16349
|
+
},{}],176:[function(require,module,exports){
|
|
16115
16350
|
"use strict";
|
|
16116
16351
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16117
16352
|
exports.ReferenciaMontao = void 0;
|
|
@@ -16136,7 +16371,7 @@ class ReferenciaMontao {
|
|
|
16136
16371
|
}
|
|
16137
16372
|
exports.ReferenciaMontao = ReferenciaMontao;
|
|
16138
16373
|
|
|
16139
|
-
},{}],
|
|
16374
|
+
},{}],177:[function(require,module,exports){
|
|
16140
16375
|
"use strict";
|
|
16141
16376
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16142
16377
|
if (k2 === undefined) k2 = k;
|
|
@@ -16156,7 +16391,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
16156
16391
|
__exportStar(require("./interpretador"), exports);
|
|
16157
16392
|
__exportStar(require("./interpretador-base"), exports);
|
|
16158
16393
|
|
|
16159
|
-
},{"./interpretador":
|
|
16394
|
+
},{"./interpretador":179,"./interpretador-base":178}],178:[function(require,module,exports){
|
|
16160
16395
|
(function (process){(function (){
|
|
16161
16396
|
"use strict";
|
|
16162
16397
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
@@ -16486,6 +16721,9 @@ class InterpretadorBase {
|
|
|
16486
16721
|
const operando = await this.avaliar(expressao.operando);
|
|
16487
16722
|
let valor = this.resolverValor(operando);
|
|
16488
16723
|
switch (expressao.operador.tipo) {
|
|
16724
|
+
case delegua_1.default.ADICAO:
|
|
16725
|
+
this.verificarOperandoNumero(expressao.operador, valor);
|
|
16726
|
+
return +valor;
|
|
16489
16727
|
case delegua_1.default.SUBTRACAO:
|
|
16490
16728
|
this.verificarOperandoNumero(expressao.operador, valor);
|
|
16491
16729
|
return -valor;
|
|
@@ -17766,7 +18004,7 @@ class InterpretadorBase {
|
|
|
17766
18004
|
exports.InterpretadorBase = InterpretadorBase;
|
|
17767
18005
|
|
|
17768
18006
|
}).call(this)}).call(this,require('_process'))
|
|
17769
|
-
},{"../avaliador-sintatico":22,"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../excecoes":
|
|
18007
|
+
},{"../avaliador-sintatico":22,"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../excecoes":129,"../inferenciador":135,"../lexador":197,"../quebras":206,"../tipos-de-dados/delegua":207,"../tipos-de-dados/primitivos":209,"../tipos-de-simbolos/delegua":212,"./espaco-memoria":164,"./estruturas":171,"./estruturas/metodo-primitiva":172,"./pilha-escopos-execucao":181,"_process":455,"browser-process-hrtime":401}],179:[function(require,module,exports){
|
|
17770
18008
|
"use strict";
|
|
17771
18009
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
17772
18010
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -18179,11 +18417,9 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
18179
18417
|
return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(expressao.simboloFechamento, 'Somente inteiros podem ser usados para indexar um vetor.', expressao.linha));
|
|
18180
18418
|
}
|
|
18181
18419
|
if (valorIndice < 0 && objeto.length !== 0) {
|
|
18182
|
-
|
|
18183
|
-
valorIndice += objeto.length;
|
|
18184
|
-
}
|
|
18420
|
+
valorIndice += objeto.length;
|
|
18185
18421
|
}
|
|
18186
|
-
if (valorIndice >= objeto.length) {
|
|
18422
|
+
if (valorIndice >= objeto.length || valorIndice < 0) {
|
|
18187
18423
|
return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(expressao.simboloFechamento, 'Índice do vetor fora do intervalo.', expressao.linha));
|
|
18188
18424
|
}
|
|
18189
18425
|
return objeto[valorIndice];
|
|
@@ -18205,11 +18441,9 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
18205
18441
|
return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(expressao.simboloFechamento, 'Somente inteiros podem ser usados para indexar um vetor.', expressao.linha));
|
|
18206
18442
|
}
|
|
18207
18443
|
if (valorIndice < 0 && objeto.length !== 0) {
|
|
18208
|
-
|
|
18209
|
-
valorIndice += objeto.length;
|
|
18210
|
-
}
|
|
18444
|
+
valorIndice += objeto.length;
|
|
18211
18445
|
}
|
|
18212
|
-
if (valorIndice >= objeto.length) {
|
|
18446
|
+
if (valorIndice >= objeto.length || valorIndice < 0) {
|
|
18213
18447
|
return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(expressao.simboloFechamento, 'Índice fora do tamanho.', expressao.linha));
|
|
18214
18448
|
}
|
|
18215
18449
|
return objeto.charAt(valorIndice);
|
|
@@ -18794,7 +19028,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
18794
19028
|
}
|
|
18795
19029
|
exports.Interpretador = Interpretador;
|
|
18796
19030
|
|
|
18797
|
-
},{"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-numero":30,"../bibliotecas/primitivas-texto":31,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../declaracoes":109,"../excecoes":
|
|
19031
|
+
},{"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-numero":30,"../bibliotecas/primitivas-texto":31,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../declaracoes":109,"../excecoes":129,"../inferenciador":135,"../quebras":206,"../tipos-de-dados/delegua":207,"../tipos-de-dados/primitivos":209,"./comum":163,"./estruturas":171,"./interpretador-base":178,"./montao":180}],180:[function(require,module,exports){
|
|
18798
19032
|
"use strict";
|
|
18799
19033
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18800
19034
|
exports.Montao = void 0;
|
|
@@ -18851,7 +19085,7 @@ class Montao {
|
|
|
18851
19085
|
}
|
|
18852
19086
|
exports.Montao = Montao;
|
|
18853
19087
|
|
|
18854
|
-
},{"../excecoes":
|
|
19088
|
+
},{"../excecoes":129,"../geracao-identificadores":133}],181:[function(require,module,exports){
|
|
18855
19089
|
"use strict";
|
|
18856
19090
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
18857
19091
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -19139,7 +19373,7 @@ class PilhaEscoposExecucao {
|
|
|
19139
19373
|
}
|
|
19140
19374
|
exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
|
|
19141
19375
|
|
|
19142
|
-
},{"../excecoes":
|
|
19376
|
+
},{"../excecoes":129,"../inferenciador":135,"../lexador":197,"../tipos-de-dados/delegua":207,"./estruturas":171}],182:[function(require,module,exports){
|
|
19143
19377
|
"use strict";
|
|
19144
19378
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19145
19379
|
if (k2 === undefined) k2 = k;
|
|
@@ -19164,7 +19398,7 @@ __exportStar(require("./lexador-portugol-ipt"), exports);
|
|
|
19164
19398
|
__exportStar(require("./lexador-prisma"), exports);
|
|
19165
19399
|
__exportStar(require("./lexador-tenda"), exports);
|
|
19166
19400
|
|
|
19167
|
-
},{"./lexador-calango":
|
|
19401
|
+
},{"./lexador-calango":183,"./lexador-egua-classico":184,"./lexador-guarani":185,"./lexador-pitugues":186,"./lexador-portugol-ipt":187,"./lexador-prisma":188,"./lexador-tenda":189}],183:[function(require,module,exports){
|
|
19168
19402
|
"use strict";
|
|
19169
19403
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
19170
19404
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -19397,7 +19631,7 @@ class LexadorCalango {
|
|
|
19397
19631
|
}
|
|
19398
19632
|
exports.LexadorCalango = LexadorCalango;
|
|
19399
19633
|
|
|
19400
|
-
},{"../../tipos-de-simbolos/calango":
|
|
19634
|
+
},{"../../tipos-de-simbolos/calango":210,"../simbolo":205,"./palavras-reservadas/calango":190}],184:[function(require,module,exports){
|
|
19401
19635
|
"use strict";
|
|
19402
19636
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
19403
19637
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -19687,7 +19921,7 @@ class LexadorEguaClassico {
|
|
|
19687
19921
|
}
|
|
19688
19922
|
exports.LexadorEguaClassico = LexadorEguaClassico;
|
|
19689
19923
|
|
|
19690
|
-
},{"../../tipos-de-simbolos/egua-classico":
|
|
19924
|
+
},{"../../tipos-de-simbolos/egua-classico":213,"../simbolo":205,"./palavras-reservadas/egua-classico":191}],185:[function(require,module,exports){
|
|
19691
19925
|
"use strict";
|
|
19692
19926
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
19693
19927
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -19806,7 +20040,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
|
|
|
19806
20040
|
}
|
|
19807
20041
|
exports.LexadorGuarani = LexadorGuarani;
|
|
19808
20042
|
|
|
19809
|
-
},{"../../tipos-de-simbolos/guarani":
|
|
20043
|
+
},{"../../tipos-de-simbolos/guarani":214,"../lexador-base":199,"./palavras-reservadas/guarani":192}],186:[function(require,module,exports){
|
|
19810
20044
|
"use strict";
|
|
19811
20045
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
19812
20046
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -20275,7 +20509,7 @@ class LexadorPitugues {
|
|
|
20275
20509
|
}
|
|
20276
20510
|
exports.LexadorPitugues = LexadorPitugues;
|
|
20277
20511
|
|
|
20278
|
-
},{"../../tipos-de-simbolos/pitugues":
|
|
20512
|
+
},{"../../tipos-de-simbolos/pitugues":216,"../simbolo":205,"./palavras-reservadas/pitugues":193,"browser-process-hrtime":401}],187:[function(require,module,exports){
|
|
20279
20513
|
"use strict";
|
|
20280
20514
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
20281
20515
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -20527,7 +20761,7 @@ class LexadorPortugolIpt {
|
|
|
20527
20761
|
}
|
|
20528
20762
|
exports.LexadorPortugolIpt = LexadorPortugolIpt;
|
|
20529
20763
|
|
|
20530
|
-
},{"../../tipos-de-simbolos/portugol-ipt":
|
|
20764
|
+
},{"../../tipos-de-simbolos/portugol-ipt":217,"../simbolo":205,"./palavras-reservadas/portugol-ipt":194}],188:[function(require,module,exports){
|
|
20531
20765
|
"use strict";
|
|
20532
20766
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
20533
20767
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -20885,7 +21119,7 @@ class LexadorPrisma {
|
|
|
20885
21119
|
}
|
|
20886
21120
|
exports.LexadorPrisma = LexadorPrisma;
|
|
20887
21121
|
|
|
20888
|
-
},{"../../tipos-de-simbolos/prisma":
|
|
21122
|
+
},{"../../tipos-de-simbolos/prisma":218,"../simbolo":205,"./palavras-reservadas/prisma":195,"browser-process-hrtime":401}],189:[function(require,module,exports){
|
|
20889
21123
|
"use strict";
|
|
20890
21124
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
20891
21125
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21276,7 +21510,7 @@ class LexadorTenda {
|
|
|
21276
21510
|
}
|
|
21277
21511
|
exports.LexadorTenda = LexadorTenda;
|
|
21278
21512
|
|
|
21279
|
-
},{"../../tipos-de-simbolos/tenda":
|
|
21513
|
+
},{"../../tipos-de-simbolos/tenda":219,"../simbolo":205,"./palavras-reservadas/tenda":196,"browser-process-hrtime":401}],190:[function(require,module,exports){
|
|
21280
21514
|
"use strict";
|
|
21281
21515
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21282
21516
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21297,7 +21531,7 @@ exports.default = {
|
|
|
21297
21531
|
fimSe: calango_1.default.FIM_SE,
|
|
21298
21532
|
};
|
|
21299
21533
|
|
|
21300
|
-
},{"../../../tipos-de-simbolos/calango":
|
|
21534
|
+
},{"../../../tipos-de-simbolos/calango":210}],191:[function(require,module,exports){
|
|
21301
21535
|
"use strict";
|
|
21302
21536
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21303
21537
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21338,7 +21572,7 @@ exports.palavrasReservadas = {
|
|
|
21338
21572
|
verdadeiro: egua_classico_1.default.VERDADEIRO,
|
|
21339
21573
|
};
|
|
21340
21574
|
|
|
21341
|
-
},{"../../../tipos-de-simbolos/egua-classico":
|
|
21575
|
+
},{"../../../tipos-de-simbolos/egua-classico":213}],192:[function(require,module,exports){
|
|
21342
21576
|
"use strict";
|
|
21343
21577
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21344
21578
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21350,7 +21584,7 @@ exports.palavrasReservadas = {
|
|
|
21350
21584
|
hai: guarani_1.default.HAI,
|
|
21351
21585
|
};
|
|
21352
21586
|
|
|
21353
|
-
},{"../../../tipos-de-simbolos/guarani":
|
|
21587
|
+
},{"../../../tipos-de-simbolos/guarani":214}],193:[function(require,module,exports){
|
|
21354
21588
|
"use strict";
|
|
21355
21589
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21356
21590
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21412,7 +21646,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
21412
21646
|
verdadeiro: pitugues_1.default.VERDADEIRO,
|
|
21413
21647
|
};
|
|
21414
21648
|
|
|
21415
|
-
},{"../../../tipos-de-simbolos/pitugues":
|
|
21649
|
+
},{"../../../tipos-de-simbolos/pitugues":216}],194:[function(require,module,exports){
|
|
21416
21650
|
"use strict";
|
|
21417
21651
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21418
21652
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21434,7 +21668,7 @@ exports.palavrasReservadas = {
|
|
|
21434
21668
|
senão: portugol_ipt_1.default.SENAO,
|
|
21435
21669
|
};
|
|
21436
21670
|
|
|
21437
|
-
},{"../../../tipos-de-simbolos/portugol-ipt":
|
|
21671
|
+
},{"../../../tipos-de-simbolos/portugol-ipt":217}],195:[function(require,module,exports){
|
|
21438
21672
|
"use strict";
|
|
21439
21673
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21440
21674
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21482,7 +21716,7 @@ exports.palavrasReservadas = {
|
|
|
21482
21716
|
verdadeiro: prisma_1.default.VERDADEIRO,
|
|
21483
21717
|
};
|
|
21484
21718
|
|
|
21485
|
-
},{"../../../tipos-de-simbolos/prisma":
|
|
21719
|
+
},{"../../../tipos-de-simbolos/prisma":218}],196:[function(require,module,exports){
|
|
21486
21720
|
"use strict";
|
|
21487
21721
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21488
21722
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21540,7 +21774,7 @@ exports.palavrasReservadas = {
|
|
|
21540
21774
|
Texto: tenda_1.default.BIBLIOTECA_GLOBAL,
|
|
21541
21775
|
};
|
|
21542
21776
|
|
|
21543
|
-
},{"../../../tipos-de-simbolos/tenda":
|
|
21777
|
+
},{"../../../tipos-de-simbolos/tenda":219}],197:[function(require,module,exports){
|
|
21544
21778
|
"use strict";
|
|
21545
21779
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
21546
21780
|
if (k2 === undefined) k2 = k;
|
|
@@ -21563,7 +21797,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
|
|
|
21563
21797
|
__exportStar(require("./micro-lexador"), exports);
|
|
21564
21798
|
__exportStar(require("./simbolo"), exports);
|
|
21565
21799
|
|
|
21566
|
-
},{"./dialetos":
|
|
21800
|
+
},{"./dialetos":182,"./lexador":200,"./lexador-base-linha-unica":198,"./micro-lexador":203,"./simbolo":205}],198:[function(require,module,exports){
|
|
21567
21801
|
"use strict";
|
|
21568
21802
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21569
21803
|
exports.LexadorBaseLinhaUnica = void 0;
|
|
@@ -21647,7 +21881,7 @@ class LexadorBaseLinhaUnica {
|
|
|
21647
21881
|
}
|
|
21648
21882
|
exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
|
|
21649
21883
|
|
|
21650
|
-
},{"./simbolo":
|
|
21884
|
+
},{"./simbolo":205}],199:[function(require,module,exports){
|
|
21651
21885
|
"use strict";
|
|
21652
21886
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21653
21887
|
exports.LexadorBase = void 0;
|
|
@@ -21761,7 +21995,7 @@ class LexadorBase {
|
|
|
21761
21995
|
}
|
|
21762
21996
|
exports.LexadorBase = LexadorBase;
|
|
21763
21997
|
|
|
21764
|
-
},{"./simbolo":
|
|
21998
|
+
},{"./simbolo":205}],200:[function(require,module,exports){
|
|
21765
21999
|
"use strict";
|
|
21766
22000
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21767
22001
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -22232,7 +22466,191 @@ class Lexador {
|
|
|
22232
22466
|
}
|
|
22233
22467
|
exports.Lexador = Lexador;
|
|
22234
22468
|
|
|
22235
|
-
},{"../tipos-de-simbolos/delegua":
|
|
22469
|
+
},{"../tipos-de-simbolos/delegua":212,"./palavras-reservadas":204,"./simbolo":205,"browser-process-hrtime":401}],201:[function(require,module,exports){
|
|
22470
|
+
"use strict";
|
|
22471
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
22472
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
22473
|
+
};
|
|
22474
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22475
|
+
exports.palavrasNeutras = exports.gruposPalavrasParadigma = void 0;
|
|
22476
|
+
exports.obterMapaLexemaParaParadigma = obterMapaLexemaParaParadigma;
|
|
22477
|
+
exports.obterFormaAlternativa = obterFormaAlternativa;
|
|
22478
|
+
exports.pertenceAoParadigma = pertenceAoParadigma;
|
|
22479
|
+
const delegua_1 = __importDefault(require("../tipos-de-simbolos/delegua"));
|
|
22480
|
+
/**
|
|
22481
|
+
* Grupos de palavras reservadas organizadas por paradigma.
|
|
22482
|
+
* Cada grupo representa diferentes formas de expressar a mesma funcionalidade.
|
|
22483
|
+
*/
|
|
22484
|
+
exports.gruposPalavrasParadigma = [
|
|
22485
|
+
{
|
|
22486
|
+
tipo: delegua_1.default.ESCREVA,
|
|
22487
|
+
imperativo: ['escreva'],
|
|
22488
|
+
infinitivo: ['escrever'],
|
|
22489
|
+
},
|
|
22490
|
+
{
|
|
22491
|
+
tipo: delegua_1.default.LEIA,
|
|
22492
|
+
imperativo: ['leia'],
|
|
22493
|
+
infinitivo: ['ler'],
|
|
22494
|
+
},
|
|
22495
|
+
{
|
|
22496
|
+
tipo: delegua_1.default.CONTINUA,
|
|
22497
|
+
imperativo: ['continua'],
|
|
22498
|
+
infinitivo: ['continuar'],
|
|
22499
|
+
},
|
|
22500
|
+
{
|
|
22501
|
+
tipo: delegua_1.default.RETORNA,
|
|
22502
|
+
imperativo: ['retorna', 'retorne'],
|
|
22503
|
+
infinitivo: ['retornar'],
|
|
22504
|
+
},
|
|
22505
|
+
{
|
|
22506
|
+
tipo: delegua_1.default.ESCOLHA,
|
|
22507
|
+
imperativo: ['escolha'],
|
|
22508
|
+
infinitivo: ['escolher'],
|
|
22509
|
+
},
|
|
22510
|
+
{
|
|
22511
|
+
tipo: delegua_1.default.TENTE,
|
|
22512
|
+
imperativo: ['tente'],
|
|
22513
|
+
infinitivo: ['tentar'],
|
|
22514
|
+
},
|
|
22515
|
+
{
|
|
22516
|
+
tipo: delegua_1.default.PEGUE,
|
|
22517
|
+
imperativo: ['pegue'],
|
|
22518
|
+
infinitivo: ['pegar'],
|
|
22519
|
+
},
|
|
22520
|
+
{
|
|
22521
|
+
tipo: delegua_1.default.QUEBRAR,
|
|
22522
|
+
imperativo: ['quebre'],
|
|
22523
|
+
infinitivo: ['quebrar'],
|
|
22524
|
+
},
|
|
22525
|
+
{
|
|
22526
|
+
tipo: delegua_1.default.IMPORTAR,
|
|
22527
|
+
imperativo: ['importe'],
|
|
22528
|
+
infinitivo: ['importar'],
|
|
22529
|
+
},
|
|
22530
|
+
{
|
|
22531
|
+
tipo: delegua_1.default.FAZER,
|
|
22532
|
+
imperativo: ['faca', 'faça'],
|
|
22533
|
+
infinitivo: ['fazer'],
|
|
22534
|
+
},
|
|
22535
|
+
];
|
|
22536
|
+
/**
|
|
22537
|
+
* Palavras neutras que não têm paradigma específico.
|
|
22538
|
+
* Estas palavras são aceitas em todos os modos de paradigma.
|
|
22539
|
+
*/
|
|
22540
|
+
exports.palavrasNeutras = {
|
|
22541
|
+
ajuda: delegua_1.default.AJUDA,
|
|
22542
|
+
cada: delegua_1.default.CADA,
|
|
22543
|
+
caso: delegua_1.default.CASO,
|
|
22544
|
+
classe: delegua_1.default.CLASSE,
|
|
22545
|
+
como: delegua_1.default.COMO,
|
|
22546
|
+
construtor: delegua_1.default.CONSTRUTOR,
|
|
22547
|
+
constante: delegua_1.default.CONSTANTE,
|
|
22548
|
+
const: delegua_1.default.CONSTANTE,
|
|
22549
|
+
contem: delegua_1.default.CONTEM,
|
|
22550
|
+
contém: delegua_1.default.CONTEM,
|
|
22551
|
+
de: delegua_1.default.DE,
|
|
22552
|
+
e: delegua_1.default.E,
|
|
22553
|
+
em: delegua_1.default.EM,
|
|
22554
|
+
enquanto: delegua_1.default.ENQUANTO,
|
|
22555
|
+
falhar: delegua_1.default.FALHAR,
|
|
22556
|
+
falso: delegua_1.default.FALSO,
|
|
22557
|
+
finalmente: delegua_1.default.FINALMENTE,
|
|
22558
|
+
fixo: delegua_1.default.CONSTANTE,
|
|
22559
|
+
funcao: delegua_1.default.FUNCAO,
|
|
22560
|
+
função: delegua_1.default.FUNÇÃO,
|
|
22561
|
+
herda: delegua_1.default.HERDA,
|
|
22562
|
+
isto: delegua_1.default.ISTO,
|
|
22563
|
+
nao: delegua_1.default.NAO,
|
|
22564
|
+
não: delegua_1.default.NAO,
|
|
22565
|
+
nulo: delegua_1.default.NULO,
|
|
22566
|
+
ou: delegua_1.default.OU,
|
|
22567
|
+
padrao: delegua_1.default.PADRAO,
|
|
22568
|
+
padrão: delegua_1.default.PADRAO,
|
|
22569
|
+
para: delegua_1.default.PARA,
|
|
22570
|
+
se: delegua_1.default.SE,
|
|
22571
|
+
senao: delegua_1.default.SENAO,
|
|
22572
|
+
senão: delegua_1.default.SENÃO,
|
|
22573
|
+
super: delegua_1.default.SUPER,
|
|
22574
|
+
sustar: delegua_1.default.SUSTAR,
|
|
22575
|
+
tendo: delegua_1.default.TENDO,
|
|
22576
|
+
tipo: delegua_1.default.TIPO,
|
|
22577
|
+
tudo: delegua_1.default.TUDO,
|
|
22578
|
+
var: delegua_1.default.VARIAVEL,
|
|
22579
|
+
variavel: delegua_1.default.VARIAVEL,
|
|
22580
|
+
variável: delegua_1.default.VARIAVEL,
|
|
22581
|
+
verdadeiro: delegua_1.default.VERDADEIRO,
|
|
22582
|
+
};
|
|
22583
|
+
/**
|
|
22584
|
+
* Retorna um mapa de lexema para paradigma.
|
|
22585
|
+
* Útil para verificar rapidamente se uma palavra pertence a um paradigma.
|
|
22586
|
+
*/
|
|
22587
|
+
function obterMapaLexemaParaParadigma() {
|
|
22588
|
+
const mapa = new Map();
|
|
22589
|
+
// Adiciona palavras neutras
|
|
22590
|
+
for (const lexema of Object.keys(exports.palavrasNeutras)) {
|
|
22591
|
+
mapa.set(lexema, 'neutro');
|
|
22592
|
+
}
|
|
22593
|
+
// Adiciona palavras de paradigmas
|
|
22594
|
+
for (const grupo of exports.gruposPalavrasParadigma) {
|
|
22595
|
+
if (grupo.imperativo) {
|
|
22596
|
+
for (const lexema of grupo.imperativo) {
|
|
22597
|
+
mapa.set(lexema, 'imperativo');
|
|
22598
|
+
}
|
|
22599
|
+
}
|
|
22600
|
+
if (grupo.infinitivo) {
|
|
22601
|
+
for (const lexema of grupo.infinitivo) {
|
|
22602
|
+
mapa.set(lexema, 'infinitivo');
|
|
22603
|
+
}
|
|
22604
|
+
}
|
|
22605
|
+
}
|
|
22606
|
+
return mapa;
|
|
22607
|
+
}
|
|
22608
|
+
/**
|
|
22609
|
+
* Obtém a forma alternativa de uma palavra para o paradigma especificado.
|
|
22610
|
+
* @param lexema A palavra original
|
|
22611
|
+
* @param paradigmaAlvo O paradigma desejado
|
|
22612
|
+
* @returns A forma alternativa ou undefined se não houver conversão
|
|
22613
|
+
*/
|
|
22614
|
+
function obterFormaAlternativa(lexema, paradigmaAlvo) {
|
|
22615
|
+
var _a, _b;
|
|
22616
|
+
const lexemaLower = lexema.toLowerCase();
|
|
22617
|
+
// Encontra o grupo que contém este lexema
|
|
22618
|
+
for (const grupo of exports.gruposPalavrasParadigma) {
|
|
22619
|
+
const temImperativo = (_a = grupo.imperativo) === null || _a === void 0 ? void 0 : _a.some((p) => p === lexemaLower);
|
|
22620
|
+
const temInfinitivo = (_b = grupo.infinitivo) === null || _b === void 0 ? void 0 : _b.some((p) => p === lexemaLower);
|
|
22621
|
+
if (temImperativo || temInfinitivo) {
|
|
22622
|
+
// Retorna a primeira forma do paradigma alvo
|
|
22623
|
+
if (paradigmaAlvo === 'imperativo' && grupo.imperativo && grupo.imperativo.length > 0) {
|
|
22624
|
+
return grupo.imperativo[0];
|
|
22625
|
+
}
|
|
22626
|
+
if (paradigmaAlvo === 'infinitivo' && grupo.infinitivo && grupo.infinitivo.length > 0) {
|
|
22627
|
+
return grupo.infinitivo[0];
|
|
22628
|
+
}
|
|
22629
|
+
}
|
|
22630
|
+
}
|
|
22631
|
+
return undefined;
|
|
22632
|
+
}
|
|
22633
|
+
/**
|
|
22634
|
+
* Verifica se um lexema pertence a um paradigma específico.
|
|
22635
|
+
* @param lexema A palavra a verificar
|
|
22636
|
+
* @param paradigma O paradigma a verificar
|
|
22637
|
+
* @returns true se o lexema pertence ao paradigma ou é neutro
|
|
22638
|
+
*/
|
|
22639
|
+
function pertenceAoParadigma(lexema, paradigma) {
|
|
22640
|
+
if (paradigma === 'ambos') {
|
|
22641
|
+
return true;
|
|
22642
|
+
}
|
|
22643
|
+
const mapa = obterMapaLexemaParaParadigma();
|
|
22644
|
+
const paradigmaLexema = mapa.get(lexema.toLowerCase());
|
|
22645
|
+
// Palavras neutras são aceitas em todos os paradigmas
|
|
22646
|
+
if (paradigmaLexema === 'neutro') {
|
|
22647
|
+
return true;
|
|
22648
|
+
}
|
|
22649
|
+
// Verifica se o paradigma corresponde
|
|
22650
|
+
return paradigmaLexema === paradigma;
|
|
22651
|
+
}
|
|
22652
|
+
|
|
22653
|
+
},{"../tipos-de-simbolos/delegua":212}],202:[function(require,module,exports){
|
|
22236
22654
|
"use strict";
|
|
22237
22655
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
22238
22656
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -22447,7 +22865,7 @@ class MicroLexadorPitugues {
|
|
|
22447
22865
|
}
|
|
22448
22866
|
exports.MicroLexadorPitugues = MicroLexadorPitugues;
|
|
22449
22867
|
|
|
22450
|
-
},{"../tipos-de-simbolos/pitugues":
|
|
22868
|
+
},{"../tipos-de-simbolos/pitugues":216,"./palavras-reservadas":204,"./simbolo":205}],203:[function(require,module,exports){
|
|
22451
22869
|
"use strict";
|
|
22452
22870
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
22453
22871
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -22680,7 +23098,7 @@ class MicroLexador {
|
|
|
22680
23098
|
}
|
|
22681
23099
|
exports.MicroLexador = MicroLexador;
|
|
22682
23100
|
|
|
22683
|
-
},{"../tipos-de-simbolos/microgramaticas/delegua":
|
|
23101
|
+
},{"../tipos-de-simbolos/microgramaticas/delegua":215,"./palavras-reservadas":204,"./simbolo":205}],204:[function(require,module,exports){
|
|
22684
23102
|
"use strict";
|
|
22685
23103
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
22686
23104
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -22762,7 +23180,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
22762
23180
|
verdadeiro: delegua_1.default.VERDADEIRO,
|
|
22763
23181
|
};
|
|
22764
23182
|
|
|
22765
|
-
},{"../tipos-de-simbolos/delegua":
|
|
23183
|
+
},{"../tipos-de-simbolos/delegua":212}],205:[function(require,module,exports){
|
|
22766
23184
|
"use strict";
|
|
22767
23185
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22768
23186
|
exports.Simbolo = void 0;
|
|
@@ -22780,7 +23198,7 @@ class Simbolo {
|
|
|
22780
23198
|
}
|
|
22781
23199
|
exports.Simbolo = Simbolo;
|
|
22782
23200
|
|
|
22783
|
-
},{}],
|
|
23201
|
+
},{}],206:[function(require,module,exports){
|
|
22784
23202
|
"use strict";
|
|
22785
23203
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22786
23204
|
exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
|
|
@@ -22805,7 +23223,7 @@ class ContinuarQuebra extends Quebra {
|
|
|
22805
23223
|
}
|
|
22806
23224
|
exports.ContinuarQuebra = ContinuarQuebra;
|
|
22807
23225
|
|
|
22808
|
-
},{}],
|
|
23226
|
+
},{}],207:[function(require,module,exports){
|
|
22809
23227
|
"use strict";
|
|
22810
23228
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22811
23229
|
exports.default = {
|
|
@@ -22837,7 +23255,7 @@ exports.default = {
|
|
|
22837
23255
|
VETOR_TEXTO: 'texto[]',
|
|
22838
23256
|
};
|
|
22839
23257
|
|
|
22840
|
-
},{}],
|
|
23258
|
+
},{}],208:[function(require,module,exports){
|
|
22841
23259
|
"use strict";
|
|
22842
23260
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22843
23261
|
exports.default = {
|
|
@@ -22867,7 +23285,7 @@ exports.default = {
|
|
|
22867
23285
|
VETOR_TEXTO: 'texto[]',
|
|
22868
23286
|
};
|
|
22869
23287
|
|
|
22870
|
-
},{}],
|
|
23288
|
+
},{}],209:[function(require,module,exports){
|
|
22871
23289
|
"use strict";
|
|
22872
23290
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22873
23291
|
exports.default = {
|
|
@@ -22886,7 +23304,7 @@ exports.default = {
|
|
|
22886
23304
|
TEXTO: 'string',
|
|
22887
23305
|
};
|
|
22888
23306
|
|
|
22889
|
-
},{}],
|
|
23307
|
+
},{}],210:[function(require,module,exports){
|
|
22890
23308
|
"use strict";
|
|
22891
23309
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22892
23310
|
exports.default = {
|
|
@@ -22930,7 +23348,7 @@ exports.default = {
|
|
|
22930
23348
|
VIRGULA: 'VIRGULA',
|
|
22931
23349
|
};
|
|
22932
23350
|
|
|
22933
|
-
},{}],
|
|
23351
|
+
},{}],211:[function(require,module,exports){
|
|
22934
23352
|
"use strict";
|
|
22935
23353
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22936
23354
|
exports.default = {
|
|
@@ -22956,7 +23374,7 @@ exports.default = {
|
|
|
22956
23374
|
VIRGULA: 'VIRGULA',
|
|
22957
23375
|
};
|
|
22958
23376
|
|
|
22959
|
-
},{}],
|
|
23377
|
+
},{}],212:[function(require,module,exports){
|
|
22960
23378
|
"use strict";
|
|
22961
23379
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22962
23380
|
exports.default = {
|
|
@@ -23057,7 +23475,7 @@ exports.default = {
|
|
|
23057
23475
|
VIRGULA: 'VIRGULA',
|
|
23058
23476
|
};
|
|
23059
23477
|
|
|
23060
|
-
},{}],
|
|
23478
|
+
},{}],213:[function(require,module,exports){
|
|
23061
23479
|
"use strict";
|
|
23062
23480
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23063
23481
|
exports.default = {
|
|
@@ -23135,7 +23553,7 @@ exports.default = {
|
|
|
23135
23553
|
VIRGULA: 'VIRGULA',
|
|
23136
23554
|
};
|
|
23137
23555
|
|
|
23138
|
-
},{}],
|
|
23556
|
+
},{}],214:[function(require,module,exports){
|
|
23139
23557
|
"use strict";
|
|
23140
23558
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23141
23559
|
exports.default = {
|
|
@@ -23152,7 +23570,7 @@ exports.default = {
|
|
|
23152
23570
|
VIRGULA: 'VIRGULA',
|
|
23153
23571
|
};
|
|
23154
23572
|
|
|
23155
|
-
},{}],
|
|
23573
|
+
},{}],215:[function(require,module,exports){
|
|
23156
23574
|
"use strict";
|
|
23157
23575
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23158
23576
|
exports.default = {
|
|
@@ -23205,7 +23623,7 @@ exports.default = {
|
|
|
23205
23623
|
VIRGULA: 'VIRGULA',
|
|
23206
23624
|
};
|
|
23207
23625
|
|
|
23208
|
-
},{}],
|
|
23626
|
+
},{}],216:[function(require,module,exports){
|
|
23209
23627
|
"use strict";
|
|
23210
23628
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23211
23629
|
exports.default = {
|
|
@@ -23293,7 +23711,7 @@ exports.default = {
|
|
|
23293
23711
|
VIRGULA: 'VIRGULA',
|
|
23294
23712
|
};
|
|
23295
23713
|
|
|
23296
|
-
},{}],
|
|
23714
|
+
},{}],217:[function(require,module,exports){
|
|
23297
23715
|
"use strict";
|
|
23298
23716
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23299
23717
|
exports.default = {
|
|
@@ -23332,7 +23750,7 @@ exports.default = {
|
|
|
23332
23750
|
VIRGULA: 'VIRGULA',
|
|
23333
23751
|
};
|
|
23334
23752
|
|
|
23335
|
-
},{}],
|
|
23753
|
+
},{}],218:[function(require,module,exports){
|
|
23336
23754
|
"use strict";
|
|
23337
23755
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23338
23756
|
exports.default = {
|
|
@@ -23412,7 +23830,7 @@ exports.default = {
|
|
|
23412
23830
|
VIRGULA: 'VIRGULA',
|
|
23413
23831
|
};
|
|
23414
23832
|
|
|
23415
|
-
},{}],
|
|
23833
|
+
},{}],219:[function(require,module,exports){
|
|
23416
23834
|
"use strict";
|
|
23417
23835
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23418
23836
|
// Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
|
|
@@ -23507,7 +23925,7 @@ exports.default = {
|
|
|
23507
23925
|
VIRGULA: 'VIRGULA',
|
|
23508
23926
|
};
|
|
23509
23927
|
|
|
23510
|
-
},{}],
|
|
23928
|
+
},{}],220:[function(require,module,exports){
|
|
23511
23929
|
"use strict";
|
|
23512
23930
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
23513
23931
|
if (k2 === undefined) k2 = k;
|
|
@@ -23536,7 +23954,7 @@ __exportStar(require("./tradutor-reverso-javascript"), exports);
|
|
|
23536
23954
|
__exportStar(require("./tradutor-reverso-python"), exports);
|
|
23537
23955
|
__exportStar(require("./tradutor-reverso-tenda"), exports);
|
|
23538
23956
|
|
|
23539
|
-
},{"./tradutor-assembly-arm":
|
|
23957
|
+
},{"./tradutor-assembly-arm":229,"./tradutor-assembly-x64":230,"./tradutor-assemblyscript":231,"./tradutor-calango":232,"./tradutor-javascript":233,"./tradutor-mermaidjs":234,"./tradutor-portugol-ipt":235,"./tradutor-python":236,"./tradutor-reverso-javascript":237,"./tradutor-reverso-python":238,"./tradutor-reverso-tenda":239}],221:[function(require,module,exports){
|
|
23540
23958
|
"use strict";
|
|
23541
23959
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23542
23960
|
exports.ArestaFluxograma = void 0;
|
|
@@ -23548,7 +23966,7 @@ class ArestaFluxograma {
|
|
|
23548
23966
|
}
|
|
23549
23967
|
exports.ArestaFluxograma = ArestaFluxograma;
|
|
23550
23968
|
|
|
23551
|
-
},{}],
|
|
23969
|
+
},{}],222:[function(require,module,exports){
|
|
23552
23970
|
"use strict";
|
|
23553
23971
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23554
23972
|
exports.DiagramaClasse = void 0;
|
|
@@ -23582,7 +24000,7 @@ class DiagramaClasse {
|
|
|
23582
24000
|
}
|
|
23583
24001
|
exports.DiagramaClasse = DiagramaClasse;
|
|
23584
24002
|
|
|
23585
|
-
},{}],
|
|
24003
|
+
},{}],223:[function(require,module,exports){
|
|
23586
24004
|
"use strict";
|
|
23587
24005
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
23588
24006
|
if (k2 === undefined) k2 = k;
|
|
@@ -23605,7 +24023,7 @@ __exportStar(require("./subgrafo-classe"), exports);
|
|
|
23605
24023
|
__exportStar(require("./subgrafo-funcao"), exports);
|
|
23606
24024
|
__exportStar(require("./vertice-fluxograma"), exports);
|
|
23607
24025
|
|
|
23608
|
-
},{"./aresta-fluxograma":
|
|
24026
|
+
},{"./aresta-fluxograma":221,"./diagrama-classe":222,"./subgrafo-classe":224,"./subgrafo-funcao":225,"./vertice-fluxograma":226}],224:[function(require,module,exports){
|
|
23609
24027
|
"use strict";
|
|
23610
24028
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23611
24029
|
exports.SubgrafoClasse = void 0;
|
|
@@ -23651,7 +24069,7 @@ class SubgrafoClasse {
|
|
|
23651
24069
|
}
|
|
23652
24070
|
exports.SubgrafoClasse = SubgrafoClasse;
|
|
23653
24071
|
|
|
23654
|
-
},{}],
|
|
24072
|
+
},{}],225:[function(require,module,exports){
|
|
23655
24073
|
"use strict";
|
|
23656
24074
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23657
24075
|
exports.SubgrafoFuncao = void 0;
|
|
@@ -23666,7 +24084,7 @@ class SubgrafoFuncao {
|
|
|
23666
24084
|
}
|
|
23667
24085
|
exports.SubgrafoFuncao = SubgrafoFuncao;
|
|
23668
24086
|
|
|
23669
|
-
},{}],
|
|
24087
|
+
},{}],226:[function(require,module,exports){
|
|
23670
24088
|
"use strict";
|
|
23671
24089
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23672
24090
|
exports.VerticeFluxograma = void 0;
|
|
@@ -23683,7 +24101,7 @@ class VerticeFluxograma {
|
|
|
23683
24101
|
}
|
|
23684
24102
|
exports.VerticeFluxograma = VerticeFluxograma;
|
|
23685
24103
|
|
|
23686
|
-
},{}],
|
|
24104
|
+
},{}],227:[function(require,module,exports){
|
|
23687
24105
|
"use strict";
|
|
23688
24106
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
23689
24107
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -24923,7 +25341,7 @@ __decorate([
|
|
|
24923
25341
|
Decorators_1.Override
|
|
24924
25342
|
], Python3Lexer.prototype, "nextToken", null);
|
|
24925
25343
|
|
|
24926
|
-
},{"./python3-parser":
|
|
25344
|
+
},{"./python3-parser":228,"antlr4ts/CommonToken":249,"antlr4ts/Decorators":253,"antlr4ts/Lexer":261,"antlr4ts/Token":278,"antlr4ts/VocabularyImpl":284,"antlr4ts/atn/ATNDeserializer":290,"antlr4ts/atn/LexerATNSimulator":311,"antlr4ts/misc/Utils":372}],228:[function(require,module,exports){
|
|
24927
25345
|
"use strict";
|
|
24928
25346
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
24929
25347
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -36170,7 +36588,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
36170
36588
|
}
|
|
36171
36589
|
exports.Yield_argContext = Yield_argContext;
|
|
36172
36590
|
|
|
36173
|
-
},{"antlr4ts/FailedPredicateException":
|
|
36591
|
+
},{"antlr4ts/FailedPredicateException":257,"antlr4ts/NoViableAltException":265,"antlr4ts/Parser":266,"antlr4ts/ParserRuleContext":269,"antlr4ts/RecognitionException":272,"antlr4ts/Token":278,"antlr4ts/VocabularyImpl":284,"antlr4ts/atn/ATN":286,"antlr4ts/atn/ATNDeserializer":290,"antlr4ts/atn/ParserATNSimulator":327,"antlr4ts/misc/Utils":372}],229:[function(require,module,exports){
|
|
36174
36592
|
"use strict";
|
|
36175
36593
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36176
36594
|
exports.TradutorAssemblyARM = void 0;
|
|
@@ -36886,7 +37304,7 @@ ${labelFim}:`;
|
|
|
36886
37304
|
}
|
|
36887
37305
|
exports.TradutorAssemblyARM = TradutorAssemblyARM;
|
|
36888
37306
|
|
|
36889
|
-
},{"../construtos":62,"../declaracoes":109}],
|
|
37307
|
+
},{"../construtos":62,"../declaracoes":109}],230:[function(require,module,exports){
|
|
36890
37308
|
"use strict";
|
|
36891
37309
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36892
37310
|
exports.TradutorAssemblyX64 = void 0;
|
|
@@ -37554,7 +37972,7 @@ ${labelFim}:`;
|
|
|
37554
37972
|
}
|
|
37555
37973
|
exports.TradutorAssemblyX64 = TradutorAssemblyX64;
|
|
37556
37974
|
|
|
37557
|
-
},{"../construtos":62,"../declaracoes":109}],
|
|
37975
|
+
},{"../construtos":62,"../declaracoes":109}],231:[function(require,module,exports){
|
|
37558
37976
|
"use strict";
|
|
37559
37977
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
37560
37978
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -38189,7 +38607,7 @@ class TradutorAssemblyScript {
|
|
|
38189
38607
|
}
|
|
38190
38608
|
exports.TradutorAssemblyScript = TradutorAssemblyScript;
|
|
38191
38609
|
|
|
38192
|
-
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":
|
|
38610
|
+
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":212}],232:[function(require,module,exports){
|
|
38193
38611
|
"use strict";
|
|
38194
38612
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38195
38613
|
exports.TradutorCalango = void 0;
|
|
@@ -38251,7 +38669,7 @@ class TradutorCalango {
|
|
|
38251
38669
|
}
|
|
38252
38670
|
exports.TradutorCalango = TradutorCalango;
|
|
38253
38671
|
|
|
38254
|
-
},{"../avaliador-sintatico/dialetos/avaliador-sintatico-calango":12,"../lexador/dialetos":
|
|
38672
|
+
},{"../avaliador-sintatico/dialetos/avaliador-sintatico-calango":12,"../lexador/dialetos":182}],233:[function(require,module,exports){
|
|
38255
38673
|
"use strict";
|
|
38256
38674
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
38257
38675
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -39004,7 +39422,7 @@ class TradutorJavaScript {
|
|
|
39004
39422
|
}
|
|
39005
39423
|
exports.TradutorJavaScript = TradutorJavaScript;
|
|
39006
39424
|
|
|
39007
|
-
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":
|
|
39425
|
+
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":212}],234:[function(require,module,exports){
|
|
39008
39426
|
"use strict";
|
|
39009
39427
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
39010
39428
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -39535,7 +39953,7 @@ class TradutorMermaidJs {
|
|
|
39535
39953
|
}
|
|
39536
39954
|
exports.TradutorMermaidJs = TradutorMermaidJs;
|
|
39537
39955
|
|
|
39538
|
-
},{"../tipos-de-simbolos/delegua":
|
|
39956
|
+
},{"../tipos-de-simbolos/delegua":212,"./mermaid":223}],235:[function(require,module,exports){
|
|
39539
39957
|
"use strict";
|
|
39540
39958
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39541
39959
|
exports.TradutorPortugolIpt = void 0;
|
|
@@ -39597,7 +40015,7 @@ class TradutorPortugolIpt {
|
|
|
39597
40015
|
}
|
|
39598
40016
|
exports.TradutorPortugolIpt = TradutorPortugolIpt;
|
|
39599
40017
|
|
|
39600
|
-
},{"../avaliador-sintatico/dialetos":18,"../lexador/dialetos":
|
|
40018
|
+
},{"../avaliador-sintatico/dialetos":18,"../lexador/dialetos":182}],236:[function(require,module,exports){
|
|
39601
40019
|
"use strict";
|
|
39602
40020
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
39603
40021
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -40246,7 +40664,7 @@ class TradutorPython {
|
|
|
40246
40664
|
}
|
|
40247
40665
|
exports.TradutorPython = TradutorPython;
|
|
40248
40666
|
|
|
40249
|
-
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":
|
|
40667
|
+
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":212}],237:[function(require,module,exports){
|
|
40250
40668
|
"use strict";
|
|
40251
40669
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
40252
40670
|
exports.TradutorReversoJavaScript = void 0;
|
|
@@ -40643,7 +41061,7 @@ class TradutorReversoJavaScript {
|
|
|
40643
41061
|
}
|
|
40644
41062
|
exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
|
|
40645
41063
|
|
|
40646
|
-
},{}],
|
|
41064
|
+
},{}],238:[function(require,module,exports){
|
|
40647
41065
|
"use strict";
|
|
40648
41066
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
40649
41067
|
exports.TradutorReversoPython = void 0;
|
|
@@ -40716,7 +41134,7 @@ class TradutorReversoPython {
|
|
|
40716
41134
|
}
|
|
40717
41135
|
exports.TradutorReversoPython = TradutorReversoPython;
|
|
40718
41136
|
|
|
40719
|
-
},{"./python/python3-lexer":
|
|
41137
|
+
},{"./python/python3-lexer":227,"./python/python3-parser":228,"antlr4ts":355,"antlr4ts/tree/ParseTreeWalker":374}],239:[function(require,module,exports){
|
|
40720
41138
|
"use strict";
|
|
40721
41139
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
40722
41140
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -41310,7 +41728,7 @@ class TradutorReversoTenda {
|
|
|
41310
41728
|
}
|
|
41311
41729
|
exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
41312
41730
|
|
|
41313
|
-
},{"../construtos":62,"../tipos-de-simbolos/tenda":
|
|
41731
|
+
},{"../construtos":62,"../tipos-de-simbolos/tenda":219}],240:[function(require,module,exports){
|
|
41314
41732
|
"use strict";
|
|
41315
41733
|
/*!
|
|
41316
41734
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41318,7 +41736,7 @@ exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
|
41318
41736
|
*/
|
|
41319
41737
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
41320
41738
|
|
|
41321
|
-
},{}],
|
|
41739
|
+
},{}],241:[function(require,module,exports){
|
|
41322
41740
|
"use strict";
|
|
41323
41741
|
/*!
|
|
41324
41742
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41326,7 +41744,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
41326
41744
|
*/
|
|
41327
41745
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
41328
41746
|
|
|
41329
|
-
},{}],
|
|
41747
|
+
},{}],242:[function(require,module,exports){
|
|
41330
41748
|
"use strict";
|
|
41331
41749
|
/*!
|
|
41332
41750
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41488,7 +41906,7 @@ __decorate([
|
|
|
41488
41906
|
], ANTLRInputStream.prototype, "toString", null);
|
|
41489
41907
|
exports.ANTLRInputStream = ANTLRInputStream;
|
|
41490
41908
|
|
|
41491
|
-
},{"./Decorators":
|
|
41909
|
+
},{"./Decorators":253,"./IntStream":259,"assert":396}],243:[function(require,module,exports){
|
|
41492
41910
|
"use strict";
|
|
41493
41911
|
/*!
|
|
41494
41912
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41571,7 +41989,7 @@ __decorate([
|
|
|
41571
41989
|
], BailErrorStrategy.prototype, "sync", null);
|
|
41572
41990
|
exports.BailErrorStrategy = BailErrorStrategy;
|
|
41573
41991
|
|
|
41574
|
-
},{"./Decorators":
|
|
41992
|
+
},{"./Decorators":253,"./DefaultErrorStrategy":254,"./InputMismatchException":258,"./misc/ParseCancellationException":370}],244:[function(require,module,exports){
|
|
41575
41993
|
"use strict";
|
|
41576
41994
|
/*!
|
|
41577
41995
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42061,7 +42479,7 @@ BufferedTokenStream = __decorate([
|
|
|
42061
42479
|
], BufferedTokenStream);
|
|
42062
42480
|
exports.BufferedTokenStream = BufferedTokenStream;
|
|
42063
42481
|
|
|
42064
|
-
},{"./CommonToken":
|
|
42482
|
+
},{"./CommonToken":249,"./Decorators":253,"./Lexer":261,"./Token":278,"./misc/Interval":365,"assert":396}],245:[function(require,module,exports){
|
|
42065
42483
|
"use strict";
|
|
42066
42484
|
/*!
|
|
42067
42485
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42069,7 +42487,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
|
|
|
42069
42487
|
*/
|
|
42070
42488
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
42071
42489
|
|
|
42072
|
-
},{}],
|
|
42490
|
+
},{}],246:[function(require,module,exports){
|
|
42073
42491
|
"use strict";
|
|
42074
42492
|
/*!
|
|
42075
42493
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42203,7 +42621,7 @@ var CharStreams;
|
|
|
42203
42621
|
// }
|
|
42204
42622
|
})(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
|
|
42205
42623
|
|
|
42206
|
-
},{"./CodePointBuffer":
|
|
42624
|
+
},{"./CodePointBuffer":247,"./CodePointCharStream":248,"./IntStream":259}],247:[function(require,module,exports){
|
|
42207
42625
|
"use strict";
|
|
42208
42626
|
/*!
|
|
42209
42627
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42438,7 +42856,7 @@ exports.CodePointBuffer = CodePointBuffer;
|
|
|
42438
42856
|
CodePointBuffer.Builder = Builder;
|
|
42439
42857
|
})(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
|
|
42440
42858
|
|
|
42441
|
-
},{"./misc/Character":
|
|
42859
|
+
},{"./misc/Character":361,"assert":396}],248:[function(require,module,exports){
|
|
42442
42860
|
"use strict";
|
|
42443
42861
|
/*!
|
|
42444
42862
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42588,7 +43006,7 @@ __decorate([
|
|
|
42588
43006
|
], CodePointCharStream.prototype, "getText", null);
|
|
42589
43007
|
exports.CodePointCharStream = CodePointCharStream;
|
|
42590
43008
|
|
|
42591
|
-
},{"./Decorators":
|
|
43009
|
+
},{"./Decorators":253,"./IntStream":259,"./misc/Interval":365,"assert":396}],249:[function(require,module,exports){
|
|
42592
43010
|
"use strict";
|
|
42593
43011
|
/*!
|
|
42594
43012
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42818,7 +43236,7 @@ CommonToken = __decorate([
|
|
|
42818
43236
|
], CommonToken);
|
|
42819
43237
|
exports.CommonToken = CommonToken;
|
|
42820
43238
|
|
|
42821
|
-
},{"./Decorators":
|
|
43239
|
+
},{"./Decorators":253,"./Token":278,"./misc/Interval":365}],250:[function(require,module,exports){
|
|
42822
43240
|
"use strict";
|
|
42823
43241
|
/*!
|
|
42824
43242
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42882,7 +43300,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
|
|
|
42882
43300
|
CommonTokenFactory.DEFAULT = new CommonTokenFactory();
|
|
42883
43301
|
})(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
|
|
42884
43302
|
|
|
42885
|
-
},{"./CommonToken":
|
|
43303
|
+
},{"./CommonToken":249,"./Decorators":253,"./misc/Interval":365}],251:[function(require,module,exports){
|
|
42886
43304
|
"use strict";
|
|
42887
43305
|
/*!
|
|
42888
43306
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43009,7 +43427,7 @@ CommonTokenStream = __decorate([
|
|
|
43009
43427
|
], CommonTokenStream);
|
|
43010
43428
|
exports.CommonTokenStream = CommonTokenStream;
|
|
43011
43429
|
|
|
43012
|
-
},{"./BufferedTokenStream":
|
|
43430
|
+
},{"./BufferedTokenStream":244,"./Decorators":253,"./Token":278}],252:[function(require,module,exports){
|
|
43013
43431
|
"use strict";
|
|
43014
43432
|
/*!
|
|
43015
43433
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43043,7 +43461,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
|
|
|
43043
43461
|
*/
|
|
43044
43462
|
ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
|
|
43045
43463
|
|
|
43046
|
-
},{}],
|
|
43464
|
+
},{}],253:[function(require,module,exports){
|
|
43047
43465
|
"use strict";
|
|
43048
43466
|
/*!
|
|
43049
43467
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43070,7 +43488,7 @@ function SuppressWarnings(options) {
|
|
|
43070
43488
|
}
|
|
43071
43489
|
exports.SuppressWarnings = SuppressWarnings;
|
|
43072
43490
|
|
|
43073
|
-
},{}],
|
|
43491
|
+
},{}],254:[function(require,module,exports){
|
|
43074
43492
|
"use strict";
|
|
43075
43493
|
/*!
|
|
43076
43494
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43884,7 +44302,7 @@ __decorate([
|
|
|
43884
44302
|
], DefaultErrorStrategy.prototype, "consumeUntil", null);
|
|
43885
44303
|
exports.DefaultErrorStrategy = DefaultErrorStrategy;
|
|
43886
44304
|
|
|
43887
|
-
},{"./Decorators":
|
|
44305
|
+
},{"./Decorators":253,"./FailedPredicateException":257,"./InputMismatchException":258,"./NoViableAltException":265,"./Token":278,"./atn/ATNState":292,"./atn/ATNStateType":293,"./atn/PredictionContext":333,"./misc/IntervalSet":366}],255:[function(require,module,exports){
|
|
43888
44306
|
"use strict";
|
|
43889
44307
|
/*!
|
|
43890
44308
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43960,7 +44378,7 @@ var Dependents;
|
|
|
43960
44378
|
Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
|
|
43961
44379
|
})(Dependents = exports.Dependents || (exports.Dependents = {}));
|
|
43962
44380
|
|
|
43963
|
-
},{}],
|
|
44381
|
+
},{}],256:[function(require,module,exports){
|
|
43964
44382
|
"use strict";
|
|
43965
44383
|
/*!
|
|
43966
44384
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44108,7 +44526,7 @@ __decorate([
|
|
|
44108
44526
|
], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
|
|
44109
44527
|
exports.DiagnosticErrorListener = DiagnosticErrorListener;
|
|
44110
44528
|
|
|
44111
|
-
},{"./Decorators":
|
|
44529
|
+
},{"./Decorators":253,"./misc/BitSet":360,"./misc/Interval":365}],257:[function(require,module,exports){
|
|
44112
44530
|
"use strict";
|
|
44113
44531
|
/*!
|
|
44114
44532
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44173,7 +44591,7 @@ FailedPredicateException = __decorate([
|
|
|
44173
44591
|
], FailedPredicateException);
|
|
44174
44592
|
exports.FailedPredicateException = FailedPredicateException;
|
|
44175
44593
|
|
|
44176
|
-
},{"./Decorators":
|
|
44594
|
+
},{"./Decorators":253,"./RecognitionException":272,"./atn/PredicateTransition":332}],258:[function(require,module,exports){
|
|
44177
44595
|
"use strict";
|
|
44178
44596
|
/*!
|
|
44179
44597
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44213,7 +44631,7 @@ InputMismatchException = __decorate([
|
|
|
44213
44631
|
], InputMismatchException);
|
|
44214
44632
|
exports.InputMismatchException = InputMismatchException;
|
|
44215
44633
|
|
|
44216
|
-
},{"./Decorators":
|
|
44634
|
+
},{"./Decorators":253,"./RecognitionException":272}],259:[function(require,module,exports){
|
|
44217
44635
|
"use strict";
|
|
44218
44636
|
/*!
|
|
44219
44637
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44236,7 +44654,7 @@ var IntStream;
|
|
|
44236
44654
|
IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
|
|
44237
44655
|
})(IntStream = exports.IntStream || (exports.IntStream = {}));
|
|
44238
44656
|
|
|
44239
|
-
},{}],
|
|
44657
|
+
},{}],260:[function(require,module,exports){
|
|
44240
44658
|
"use strict";
|
|
44241
44659
|
/*!
|
|
44242
44660
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44283,7 +44701,7 @@ __decorate([
|
|
|
44283
44701
|
], InterpreterRuleContext.prototype, "ruleIndex", null);
|
|
44284
44702
|
exports.InterpreterRuleContext = InterpreterRuleContext;
|
|
44285
44703
|
|
|
44286
|
-
},{"./Decorators":
|
|
44704
|
+
},{"./Decorators":253,"./ParserRuleContext":269}],261:[function(require,module,exports){
|
|
44287
44705
|
"use strict";
|
|
44288
44706
|
/*!
|
|
44289
44707
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44619,7 +45037,7 @@ __decorate([
|
|
|
44619
45037
|
], Lexer.prototype, "charPositionInLine", null);
|
|
44620
45038
|
exports.Lexer = Lexer;
|
|
44621
45039
|
|
|
44622
|
-
},{"./CommonTokenFactory":
|
|
45040
|
+
},{"./CommonTokenFactory":250,"./Decorators":253,"./IntStream":259,"./LexerNoViableAltException":263,"./Recognizer":273,"./Token":278,"./atn/LexerATNSimulator":311,"./misc/IntegerStack":364,"./misc/Interval":365}],262:[function(require,module,exports){
|
|
44623
45041
|
"use strict";
|
|
44624
45042
|
/*!
|
|
44625
45043
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44699,7 +45117,7 @@ LexerInterpreter = __decorate([
|
|
|
44699
45117
|
], LexerInterpreter);
|
|
44700
45118
|
exports.LexerInterpreter = LexerInterpreter;
|
|
44701
45119
|
|
|
44702
|
-
},{"./Decorators":
|
|
45120
|
+
},{"./Decorators":253,"./Lexer":261,"./atn/LexerATNSimulator":311}],263:[function(require,module,exports){
|
|
44703
45121
|
"use strict";
|
|
44704
45122
|
/*!
|
|
44705
45123
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44756,7 +45174,7 @@ LexerNoViableAltException = __decorate([
|
|
|
44756
45174
|
], LexerNoViableAltException);
|
|
44757
45175
|
exports.LexerNoViableAltException = LexerNoViableAltException;
|
|
44758
45176
|
|
|
44759
|
-
},{"./Decorators":
|
|
45177
|
+
},{"./Decorators":253,"./RecognitionException":272,"./misc/Interval":365,"./misc/Utils":372}],264:[function(require,module,exports){
|
|
44760
45178
|
"use strict";
|
|
44761
45179
|
/*!
|
|
44762
45180
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44966,7 +45384,7 @@ ListTokenSource = __decorate([
|
|
|
44966
45384
|
], ListTokenSource);
|
|
44967
45385
|
exports.ListTokenSource = ListTokenSource;
|
|
44968
45386
|
|
|
44969
|
-
},{"./CommonTokenFactory":
|
|
45387
|
+
},{"./CommonTokenFactory":250,"./Decorators":253,"./Token":278}],265:[function(require,module,exports){
|
|
44970
45388
|
"use strict";
|
|
44971
45389
|
/*!
|
|
44972
45390
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45021,7 +45439,7 @@ __decorate([
|
|
|
45021
45439
|
], NoViableAltException.prototype, "_startToken", void 0);
|
|
45022
45440
|
exports.NoViableAltException = NoViableAltException;
|
|
45023
45441
|
|
|
45024
|
-
},{"./Decorators":
|
|
45442
|
+
},{"./Decorators":253,"./Parser":266,"./RecognitionException":272}],266:[function(require,module,exports){
|
|
45025
45443
|
(function (process){(function (){
|
|
45026
45444
|
"use strict";
|
|
45027
45445
|
/*!
|
|
@@ -45867,7 +46285,7 @@ __decorate([
|
|
|
45867
46285
|
exports.Parser = Parser;
|
|
45868
46286
|
|
|
45869
46287
|
}).call(this)}).call(this,require('_process'))
|
|
45870
|
-
},{"./Decorators":
|
|
46288
|
+
},{"./Decorators":253,"./DefaultErrorStrategy":254,"./Lexer":261,"./ProxyParserErrorListener":271,"./Recognizer":273,"./Token":278,"./atn/ATNDeserializationOptions":289,"./atn/ATNDeserializer":290,"./atn/ParseInfo":326,"./atn/ParserATNSimulator":327,"./atn/ProfilingATNSimulator":336,"./misc/IntegerStack":364,"./misc/Utils":372,"./tree/ErrorNode":373,"./tree/TerminalNode":376,"./tree/pattern/ParseTreePatternMatcher":381,"_process":455}],267:[function(require,module,exports){
|
|
45871
46289
|
"use strict";
|
|
45872
46290
|
/*!
|
|
45873
46291
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45875,7 +46293,7 @@ exports.Parser = Parser;
|
|
|
45875
46293
|
*/
|
|
45876
46294
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
45877
46295
|
|
|
45878
|
-
},{}],
|
|
46296
|
+
},{}],268:[function(require,module,exports){
|
|
45879
46297
|
"use strict";
|
|
45880
46298
|
/*!
|
|
45881
46299
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46283,7 +46701,7 @@ ParserInterpreter = __decorate([
|
|
|
46283
46701
|
], ParserInterpreter);
|
|
46284
46702
|
exports.ParserInterpreter = ParserInterpreter;
|
|
46285
46703
|
|
|
46286
|
-
},{"./Decorators":
|
|
46704
|
+
},{"./Decorators":253,"./FailedPredicateException":257,"./InputMismatchException":258,"./InterpreterRuleContext":260,"./Parser":266,"./RecognitionException":272,"./Token":278,"./atn/ATNState":292,"./atn/ATNStateType":293,"./atn/LoopEndState":323,"./atn/ParserATNSimulator":327,"./atn/StarLoopEntryState":345,"./misc/BitSet":360}],269:[function(require,module,exports){
|
|
46287
46705
|
"use strict";
|
|
46288
46706
|
/*!
|
|
46289
46707
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46584,7 +47002,7 @@ __decorate([
|
|
|
46584
47002
|
], ParserRuleContext.prototype, "sourceInterval", null);
|
|
46585
47003
|
exports.ParserRuleContext = ParserRuleContext;
|
|
46586
47004
|
|
|
46587
|
-
},{"./Decorators":
|
|
47005
|
+
},{"./Decorators":253,"./RuleContext":274,"./misc/Interval":365,"./tree/ErrorNode":373,"./tree/TerminalNode":376}],270:[function(require,module,exports){
|
|
46588
47006
|
"use strict";
|
|
46589
47007
|
/*!
|
|
46590
47008
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46634,7 +47052,7 @@ __decorate([
|
|
|
46634
47052
|
], ProxyErrorListener.prototype, "syntaxError", null);
|
|
46635
47053
|
exports.ProxyErrorListener = ProxyErrorListener;
|
|
46636
47054
|
|
|
46637
|
-
},{"./Decorators":
|
|
47055
|
+
},{"./Decorators":253}],271:[function(require,module,exports){
|
|
46638
47056
|
"use strict";
|
|
46639
47057
|
/*!
|
|
46640
47058
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46693,7 +47111,7 @@ __decorate([
|
|
|
46693
47111
|
], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
|
|
46694
47112
|
exports.ProxyParserErrorListener = ProxyParserErrorListener;
|
|
46695
47113
|
|
|
46696
|
-
},{"./Decorators":
|
|
47114
|
+
},{"./Decorators":253,"./ProxyErrorListener":270}],272:[function(require,module,exports){
|
|
46697
47115
|
"use strict";
|
|
46698
47116
|
/*!
|
|
46699
47117
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46798,7 +47216,7 @@ class RecognitionException extends Error {
|
|
|
46798
47216
|
}
|
|
46799
47217
|
exports.RecognitionException = RecognitionException;
|
|
46800
47218
|
|
|
46801
|
-
},{}],
|
|
47219
|
+
},{}],273:[function(require,module,exports){
|
|
46802
47220
|
"use strict";
|
|
46803
47221
|
/*!
|
|
46804
47222
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47017,7 +47435,7 @@ __decorate([
|
|
|
47017
47435
|
], Recognizer.prototype, "getErrorListeners", null);
|
|
47018
47436
|
exports.Recognizer = Recognizer;
|
|
47019
47437
|
|
|
47020
|
-
},{"./ConsoleErrorListener":
|
|
47438
|
+
},{"./ConsoleErrorListener":252,"./Decorators":253,"./ProxyErrorListener":270,"./Token":278,"./misc/Utils":372}],274:[function(require,module,exports){
|
|
47021
47439
|
"use strict";
|
|
47022
47440
|
/*!
|
|
47023
47441
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47234,7 +47652,7 @@ __decorate([
|
|
|
47234
47652
|
], RuleContext.prototype, "toStringTree", null);
|
|
47235
47653
|
exports.RuleContext = RuleContext;
|
|
47236
47654
|
|
|
47237
|
-
},{"./Decorators":
|
|
47655
|
+
},{"./Decorators":253,"./ParserRuleContext":269,"./Recognizer":273,"./atn/ATN":286,"./misc/Interval":365,"./tree/RuleNode":375,"./tree/Trees":377}],275:[function(require,module,exports){
|
|
47238
47656
|
"use strict";
|
|
47239
47657
|
/*!
|
|
47240
47658
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47285,7 +47703,7 @@ __decorate([
|
|
|
47285
47703
|
], RuleContextWithAltNum.prototype, "altNumber", null);
|
|
47286
47704
|
exports.RuleContextWithAltNum = RuleContextWithAltNum;
|
|
47287
47705
|
|
|
47288
|
-
},{"./Decorators":
|
|
47706
|
+
},{"./Decorators":253,"./ParserRuleContext":269,"./atn/ATN":286}],276:[function(require,module,exports){
|
|
47289
47707
|
"use strict";
|
|
47290
47708
|
/*!
|
|
47291
47709
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47308,7 +47726,7 @@ function RuleDependency(dependency) {
|
|
|
47308
47726
|
}
|
|
47309
47727
|
exports.RuleDependency = RuleDependency;
|
|
47310
47728
|
|
|
47311
|
-
},{}],
|
|
47729
|
+
},{}],277:[function(require,module,exports){
|
|
47312
47730
|
"use strict";
|
|
47313
47731
|
/*!
|
|
47314
47732
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47327,7 +47745,7 @@ function RuleVersion(version) {
|
|
|
47327
47745
|
}
|
|
47328
47746
|
exports.RuleVersion = RuleVersion;
|
|
47329
47747
|
|
|
47330
|
-
},{}],
|
|
47748
|
+
},{}],278:[function(require,module,exports){
|
|
47331
47749
|
"use strict";
|
|
47332
47750
|
/*!
|
|
47333
47751
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47367,7 +47785,7 @@ var Token;
|
|
|
47367
47785
|
Token.MIN_USER_CHANNEL_VALUE = 2;
|
|
47368
47786
|
})(Token = exports.Token || (exports.Token = {}));
|
|
47369
47787
|
|
|
47370
|
-
},{"./IntStream":
|
|
47788
|
+
},{"./IntStream":259}],279:[function(require,module,exports){
|
|
47371
47789
|
"use strict";
|
|
47372
47790
|
/*!
|
|
47373
47791
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47375,7 +47793,7 @@ var Token;
|
|
|
47375
47793
|
*/
|
|
47376
47794
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47377
47795
|
|
|
47378
|
-
},{}],
|
|
47796
|
+
},{}],280:[function(require,module,exports){
|
|
47379
47797
|
"use strict";
|
|
47380
47798
|
/*!
|
|
47381
47799
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47383,7 +47801,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
47383
47801
|
*/
|
|
47384
47802
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47385
47803
|
|
|
47386
|
-
},{}],
|
|
47804
|
+
},{}],281:[function(require,module,exports){
|
|
47387
47805
|
"use strict";
|
|
47388
47806
|
/*!
|
|
47389
47807
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47391,7 +47809,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
47391
47809
|
*/
|
|
47392
47810
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47393
47811
|
|
|
47394
|
-
},{}],
|
|
47812
|
+
},{}],282:[function(require,module,exports){
|
|
47395
47813
|
"use strict";
|
|
47396
47814
|
/*!
|
|
47397
47815
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47899,7 +48317,7 @@ __decorate([
|
|
|
47899
48317
|
Decorators_1.Override
|
|
47900
48318
|
], ReplaceOp.prototype, "toString", null);
|
|
47901
48319
|
|
|
47902
|
-
},{"./Decorators":
|
|
48320
|
+
},{"./Decorators":253,"./Token":278,"./misc/Interval":365}],283:[function(require,module,exports){
|
|
47903
48321
|
"use strict";
|
|
47904
48322
|
/*!
|
|
47905
48323
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47907,7 +48325,7 @@ __decorate([
|
|
|
47907
48325
|
*/
|
|
47908
48326
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47909
48327
|
|
|
47910
|
-
},{}],
|
|
48328
|
+
},{}],284:[function(require,module,exports){
|
|
47911
48329
|
"use strict";
|
|
47912
48330
|
/*!
|
|
47913
48331
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48027,7 +48445,7 @@ __decorate([
|
|
|
48027
48445
|
], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
|
|
48028
48446
|
exports.VocabularyImpl = VocabularyImpl;
|
|
48029
48447
|
|
|
48030
|
-
},{"./Decorators":
|
|
48448
|
+
},{"./Decorators":253,"./Token":278}],285:[function(require,module,exports){
|
|
48031
48449
|
"use strict";
|
|
48032
48450
|
/*!
|
|
48033
48451
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48035,7 +48453,7 @@ exports.VocabularyImpl = VocabularyImpl;
|
|
|
48035
48453
|
*/
|
|
48036
48454
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
48037
48455
|
|
|
48038
|
-
},{}],
|
|
48456
|
+
},{}],286:[function(require,module,exports){
|
|
48039
48457
|
"use strict";
|
|
48040
48458
|
/*!
|
|
48041
48459
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48257,7 +48675,7 @@ exports.ATN = ATN;
|
|
|
48257
48675
|
})(ATN = exports.ATN || (exports.ATN = {}));
|
|
48258
48676
|
exports.ATN = ATN;
|
|
48259
48677
|
|
|
48260
|
-
},{"../Decorators":
|
|
48678
|
+
},{"../Decorators":253,"../Token":278,"../dfa/DFA":351,"../misc/Array2DHashMap":356,"../misc/IntervalSet":366,"../misc/ObjectEqualityComparator":369,"./InvalidState":309,"./LL1Analyzer":310,"./PredictionContext":333,"assert":396}],287:[function(require,module,exports){
|
|
48261
48679
|
"use strict";
|
|
48262
48680
|
/*!
|
|
48263
48681
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48782,7 +49200,7 @@ ActionSemanticContextATNConfig = __decorate([
|
|
|
48782
49200
|
__param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
|
|
48783
49201
|
], ActionSemanticContextATNConfig);
|
|
48784
49202
|
|
|
48785
|
-
},{"../Decorators":
|
|
49203
|
+
},{"../Decorators":253,"../misc/Array2DHashMap":356,"../misc/MurmurHash":368,"../misc/ObjectEqualityComparator":369,"./DecisionState":306,"./PredictionContext":333,"./SemanticContext":341,"assert":396}],288:[function(require,module,exports){
|
|
48786
49204
|
"use strict";
|
|
48787
49205
|
/*!
|
|
48788
49206
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49229,7 +49647,7 @@ __decorate([
|
|
|
49229
49647
|
], ATNConfigSet.prototype, "hashCode", null);
|
|
49230
49648
|
exports.ATNConfigSet = ATNConfigSet;
|
|
49231
49649
|
|
|
49232
|
-
},{"../Decorators":
|
|
49650
|
+
},{"../Decorators":253,"../misc/Array2DHashMap":356,"../misc/Array2DHashSet":357,"../misc/ArrayEqualityComparator":358,"../misc/BitSet":360,"../misc/ObjectEqualityComparator":369,"../misc/Utils":372,"./ATN":286,"./ATNConfig":287,"./PredictionContext":333,"./PredictionContextCache":334,"./SemanticContext":341,"assert":396}],289:[function(require,module,exports){
|
|
49233
49651
|
"use strict";
|
|
49234
49652
|
/*!
|
|
49235
49653
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49308,7 +49726,7 @@ __decorate([
|
|
|
49308
49726
|
], ATNDeserializationOptions, "defaultOptions", null);
|
|
49309
49727
|
exports.ATNDeserializationOptions = ATNDeserializationOptions;
|
|
49310
49728
|
|
|
49311
|
-
},{"../Decorators":
|
|
49729
|
+
},{"../Decorators":253}],290:[function(require,module,exports){
|
|
49312
49730
|
"use strict";
|
|
49313
49731
|
/*!
|
|
49314
49732
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50395,7 +50813,7 @@ __decorate([
|
|
|
50395
50813
|
], ATNDeserializer.prototype, "edgeFactory", null);
|
|
50396
50814
|
exports.ATNDeserializer = ATNDeserializer;
|
|
50397
50815
|
|
|
50398
|
-
},{"../Decorators":
|
|
50816
|
+
},{"../Decorators":253,"../Token":278,"../dfa/DFA":351,"../misc/Array2DHashSet":357,"../misc/BitSet":360,"../misc/IntervalSet":366,"../misc/UUID":371,"./ATN":286,"./ATNDeserializationOptions":289,"./ATNStateType":293,"./ActionTransition":295,"./AtomTransition":297,"./BasicBlockStartState":298,"./BasicState":299,"./BlockEndState":300,"./BlockStartState":301,"./DecisionState":306,"./EpsilonTransition":307,"./InvalidState":309,"./LexerChannelAction":313,"./LexerCustomAction":314,"./LexerModeAction":316,"./LexerMoreAction":317,"./LexerPopModeAction":318,"./LexerPushModeAction":319,"./LexerSkipAction":320,"./LexerTypeAction":321,"./LoopEndState":323,"./NotSetTransition":324,"./ParserATNSimulator":327,"./PlusBlockStartState":328,"./PlusLoopbackState":329,"./PrecedencePredicateTransition":330,"./PredicateTransition":332,"./RangeTransition":337,"./RuleStartState":338,"./RuleStopState":339,"./RuleTransition":340,"./SetTransition":342,"./StarBlockStartState":344,"./StarLoopEntryState":345,"./StarLoopbackState":346,"./TokensStartState":347,"./WildcardTransition":349}],291:[function(require,module,exports){
|
|
50399
50817
|
"use strict";
|
|
50400
50818
|
/*!
|
|
50401
50819
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50459,7 +50877,7 @@ exports.ATNSimulator = ATNSimulator;
|
|
|
50459
50877
|
})(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
|
|
50460
50878
|
exports.ATNSimulator = ATNSimulator;
|
|
50461
50879
|
|
|
50462
|
-
},{"../Decorators":
|
|
50880
|
+
},{"../Decorators":253,"../dfa/DFAState":353,"./ATNConfigSet":288,"./PredictionContext":333}],292:[function(require,module,exports){
|
|
50463
50881
|
"use strict";
|
|
50464
50882
|
/*!
|
|
50465
50883
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50646,7 +51064,7 @@ exports.ATNState = ATNState;
|
|
|
50646
51064
|
ATNState.INVALID_STATE_NUMBER = -1;
|
|
50647
51065
|
})(ATNState = exports.ATNState || (exports.ATNState = {}));
|
|
50648
51066
|
|
|
50649
|
-
},{"../Decorators":
|
|
51067
|
+
},{"../Decorators":253}],293:[function(require,module,exports){
|
|
50650
51068
|
"use strict";
|
|
50651
51069
|
/*!
|
|
50652
51070
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50672,7 +51090,7 @@ var ATNStateType;
|
|
|
50672
51090
|
ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
|
|
50673
51091
|
})(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
|
|
50674
51092
|
|
|
50675
|
-
},{}],
|
|
51093
|
+
},{}],294:[function(require,module,exports){
|
|
50676
51094
|
"use strict";
|
|
50677
51095
|
/*!
|
|
50678
51096
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50692,7 +51110,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
|
|
|
50692
51110
|
}
|
|
50693
51111
|
exports.AbstractPredicateTransition = AbstractPredicateTransition;
|
|
50694
51112
|
|
|
50695
|
-
},{"./Transition":
|
|
51113
|
+
},{"./Transition":348}],295:[function(require,module,exports){
|
|
50696
51114
|
"use strict";
|
|
50697
51115
|
/*!
|
|
50698
51116
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50748,7 +51166,7 @@ ActionTransition = __decorate([
|
|
|
50748
51166
|
], ActionTransition);
|
|
50749
51167
|
exports.ActionTransition = ActionTransition;
|
|
50750
51168
|
|
|
50751
|
-
},{"../Decorators":
|
|
51169
|
+
},{"../Decorators":253,"./Transition":348}],296:[function(require,module,exports){
|
|
50752
51170
|
"use strict";
|
|
50753
51171
|
/*!
|
|
50754
51172
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50835,7 +51253,7 @@ AmbiguityInfo = __decorate([
|
|
|
50835
51253
|
], AmbiguityInfo);
|
|
50836
51254
|
exports.AmbiguityInfo = AmbiguityInfo;
|
|
50837
51255
|
|
|
50838
|
-
},{"../Decorators":
|
|
51256
|
+
},{"../Decorators":253,"./DecisionEventInfo":304}],297:[function(require,module,exports){
|
|
50839
51257
|
"use strict";
|
|
50840
51258
|
/*!
|
|
50841
51259
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50893,7 +51311,7 @@ AtomTransition = __decorate([
|
|
|
50893
51311
|
], AtomTransition);
|
|
50894
51312
|
exports.AtomTransition = AtomTransition;
|
|
50895
51313
|
|
|
50896
|
-
},{"../Decorators":
|
|
51314
|
+
},{"../Decorators":253,"../misc/IntervalSet":366,"./Transition":348}],298:[function(require,module,exports){
|
|
50897
51315
|
"use strict";
|
|
50898
51316
|
/*!
|
|
50899
51317
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50925,7 +51343,7 @@ __decorate([
|
|
|
50925
51343
|
], BasicBlockStartState.prototype, "stateType", null);
|
|
50926
51344
|
exports.BasicBlockStartState = BasicBlockStartState;
|
|
50927
51345
|
|
|
50928
|
-
},{"../Decorators":
|
|
51346
|
+
},{"../Decorators":253,"./ATNStateType":293,"./BlockStartState":301}],299:[function(require,module,exports){
|
|
50929
51347
|
"use strict";
|
|
50930
51348
|
/*!
|
|
50931
51349
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50957,7 +51375,7 @@ __decorate([
|
|
|
50957
51375
|
], BasicState.prototype, "stateType", null);
|
|
50958
51376
|
exports.BasicState = BasicState;
|
|
50959
51377
|
|
|
50960
|
-
},{"../Decorators":
|
|
51378
|
+
},{"../Decorators":253,"./ATNState":292,"./ATNStateType":293}],300:[function(require,module,exports){
|
|
50961
51379
|
"use strict";
|
|
50962
51380
|
/*!
|
|
50963
51381
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50986,7 +51404,7 @@ __decorate([
|
|
|
50986
51404
|
], BlockEndState.prototype, "stateType", null);
|
|
50987
51405
|
exports.BlockEndState = BlockEndState;
|
|
50988
51406
|
|
|
50989
|
-
},{"../Decorators":
|
|
51407
|
+
},{"../Decorators":253,"./ATNState":292,"./ATNStateType":293}],301:[function(require,module,exports){
|
|
50990
51408
|
"use strict";
|
|
50991
51409
|
/*!
|
|
50992
51410
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51000,7 +51418,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
|
|
|
51000
51418
|
}
|
|
51001
51419
|
exports.BlockStartState = BlockStartState;
|
|
51002
51420
|
|
|
51003
|
-
},{"./DecisionState":
|
|
51421
|
+
},{"./DecisionState":306}],302:[function(require,module,exports){
|
|
51004
51422
|
"use strict";
|
|
51005
51423
|
/*!
|
|
51006
51424
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51070,7 +51488,7 @@ __decorate([
|
|
|
51070
51488
|
], ConflictInfo.prototype, "hashCode", null);
|
|
51071
51489
|
exports.ConflictInfo = ConflictInfo;
|
|
51072
51490
|
|
|
51073
|
-
},{"../Decorators":
|
|
51491
|
+
},{"../Decorators":253,"../misc/Utils":372}],303:[function(require,module,exports){
|
|
51074
51492
|
"use strict";
|
|
51075
51493
|
/*!
|
|
51076
51494
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51130,7 +51548,7 @@ ContextSensitivityInfo = __decorate([
|
|
|
51130
51548
|
], ContextSensitivityInfo);
|
|
51131
51549
|
exports.ContextSensitivityInfo = ContextSensitivityInfo;
|
|
51132
51550
|
|
|
51133
|
-
},{"../Decorators":
|
|
51551
|
+
},{"../Decorators":253,"./DecisionEventInfo":304}],304:[function(require,module,exports){
|
|
51134
51552
|
"use strict";
|
|
51135
51553
|
/*!
|
|
51136
51554
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51182,7 +51600,7 @@ DecisionEventInfo = __decorate([
|
|
|
51182
51600
|
], DecisionEventInfo);
|
|
51183
51601
|
exports.DecisionEventInfo = DecisionEventInfo;
|
|
51184
51602
|
|
|
51185
|
-
},{"../Decorators":
|
|
51603
|
+
},{"../Decorators":253}],305:[function(require,module,exports){
|
|
51186
51604
|
"use strict";
|
|
51187
51605
|
/*!
|
|
51188
51606
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51395,7 +51813,7 @@ __decorate([
|
|
|
51395
51813
|
], DecisionInfo.prototype, "toString", null);
|
|
51396
51814
|
exports.DecisionInfo = DecisionInfo;
|
|
51397
51815
|
|
|
51398
|
-
},{"../Decorators":
|
|
51816
|
+
},{"../Decorators":253}],306:[function(require,module,exports){
|
|
51399
51817
|
"use strict";
|
|
51400
51818
|
/*!
|
|
51401
51819
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51415,7 +51833,7 @@ class DecisionState extends ATNState_1.ATNState {
|
|
|
51415
51833
|
}
|
|
51416
51834
|
exports.DecisionState = DecisionState;
|
|
51417
51835
|
|
|
51418
|
-
},{"./ATNState":
|
|
51836
|
+
},{"./ATNState":292}],307:[function(require,module,exports){
|
|
51419
51837
|
"use strict";
|
|
51420
51838
|
/*!
|
|
51421
51839
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51481,7 +51899,7 @@ EpsilonTransition = __decorate([
|
|
|
51481
51899
|
], EpsilonTransition);
|
|
51482
51900
|
exports.EpsilonTransition = EpsilonTransition;
|
|
51483
51901
|
|
|
51484
|
-
},{"../Decorators":
|
|
51902
|
+
},{"../Decorators":253,"./Transition":348}],308:[function(require,module,exports){
|
|
51485
51903
|
"use strict";
|
|
51486
51904
|
/*!
|
|
51487
51905
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51534,7 +51952,7 @@ ErrorInfo = __decorate([
|
|
|
51534
51952
|
], ErrorInfo);
|
|
51535
51953
|
exports.ErrorInfo = ErrorInfo;
|
|
51536
51954
|
|
|
51537
|
-
},{"../Decorators":
|
|
51955
|
+
},{"../Decorators":253,"./DecisionEventInfo":304}],309:[function(require,module,exports){
|
|
51538
51956
|
"use strict";
|
|
51539
51957
|
/*!
|
|
51540
51958
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51565,7 +51983,7 @@ __decorate([
|
|
|
51565
51983
|
], InvalidState.prototype, "stateType", null);
|
|
51566
51984
|
exports.InvalidState = InvalidState;
|
|
51567
51985
|
|
|
51568
|
-
},{"../Decorators":
|
|
51986
|
+
},{"../Decorators":253,"./ATNStateType":293,"./BasicState":299}],310:[function(require,module,exports){
|
|
51569
51987
|
"use strict";
|
|
51570
51988
|
/*!
|
|
51571
51989
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51787,7 +52205,7 @@ LL1Analyzer = __decorate([
|
|
|
51787
52205
|
], LL1Analyzer);
|
|
51788
52206
|
exports.LL1Analyzer = LL1Analyzer;
|
|
51789
52207
|
|
|
51790
|
-
},{"../Decorators":
|
|
52208
|
+
},{"../Decorators":253,"../Token":278,"../misc/Array2DHashSet":357,"../misc/BitSet":360,"../misc/IntervalSet":366,"../misc/ObjectEqualityComparator":369,"./ATNConfig":287,"./AbstractPredicateTransition":294,"./NotSetTransition":324,"./PredictionContext":333,"./RuleStopState":339,"./RuleTransition":340,"./WildcardTransition":349}],311:[function(require,module,exports){
|
|
51791
52209
|
"use strict";
|
|
51792
52210
|
/*!
|
|
51793
52211
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52504,7 +52922,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
|
|
|
52504
52922
|
})(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
|
|
52505
52923
|
exports.LexerATNSimulator = LexerATNSimulator;
|
|
52506
52924
|
|
|
52507
|
-
},{"../Decorators":
|
|
52925
|
+
},{"../Decorators":253,"../IntStream":259,"../Lexer":261,"../LexerNoViableAltException":263,"../Token":278,"../dfa/AcceptStateInfo":350,"../dfa/DFAState":353,"../misc/Interval":365,"./ATN":286,"./ATNConfig":287,"./ATNConfigSet":288,"./ATNSimulator":291,"./LexerActionExecutor":312,"./OrderedATNConfigSet":325,"./PredictionContext":333,"./RuleStopState":339,"assert":396}],312:[function(require,module,exports){
|
|
52508
52926
|
"use strict";
|
|
52509
52927
|
/*!
|
|
52510
52928
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52705,7 +53123,7 @@ LexerActionExecutor = __decorate([
|
|
|
52705
53123
|
], LexerActionExecutor);
|
|
52706
53124
|
exports.LexerActionExecutor = LexerActionExecutor;
|
|
52707
53125
|
|
|
52708
|
-
},{"../Decorators":
|
|
53126
|
+
},{"../Decorators":253,"../misc/ArrayEqualityComparator":358,"../misc/MurmurHash":368,"./LexerIndexedCustomAction":315}],313:[function(require,module,exports){
|
|
52709
53127
|
"use strict";
|
|
52710
53128
|
/*!
|
|
52711
53129
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52810,7 +53228,7 @@ __decorate([
|
|
|
52810
53228
|
], LexerChannelAction.prototype, "toString", null);
|
|
52811
53229
|
exports.LexerChannelAction = LexerChannelAction;
|
|
52812
53230
|
|
|
52813
|
-
},{"../Decorators":
|
|
53231
|
+
},{"../Decorators":253,"../misc/MurmurHash":368}],314:[function(require,module,exports){
|
|
52814
53232
|
"use strict";
|
|
52815
53233
|
/*!
|
|
52816
53234
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52939,7 +53357,7 @@ __decorate([
|
|
|
52939
53357
|
], LexerCustomAction.prototype, "equals", null);
|
|
52940
53358
|
exports.LexerCustomAction = LexerCustomAction;
|
|
52941
53359
|
|
|
52942
|
-
},{"../Decorators":
|
|
53360
|
+
},{"../Decorators":253,"../misc/MurmurHash":368}],315:[function(require,module,exports){
|
|
52943
53361
|
"use strict";
|
|
52944
53362
|
/*!
|
|
52945
53363
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53074,7 +53492,7 @@ LexerIndexedCustomAction = __decorate([
|
|
|
53074
53492
|
], LexerIndexedCustomAction);
|
|
53075
53493
|
exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
|
|
53076
53494
|
|
|
53077
|
-
},{"../Decorators":
|
|
53495
|
+
},{"../Decorators":253,"../misc/MurmurHash":368}],316:[function(require,module,exports){
|
|
53078
53496
|
"use strict";
|
|
53079
53497
|
/*!
|
|
53080
53498
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53179,7 +53597,7 @@ __decorate([
|
|
|
53179
53597
|
], LexerModeAction.prototype, "toString", null);
|
|
53180
53598
|
exports.LexerModeAction = LexerModeAction;
|
|
53181
53599
|
|
|
53182
|
-
},{"../Decorators":
|
|
53600
|
+
},{"../Decorators":253,"../misc/MurmurHash":368}],317:[function(require,module,exports){
|
|
53183
53601
|
"use strict";
|
|
53184
53602
|
/*!
|
|
53185
53603
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53275,7 +53693,7 @@ exports.LexerMoreAction = LexerMoreAction;
|
|
|
53275
53693
|
LexerMoreAction.INSTANCE = new LexerMoreAction();
|
|
53276
53694
|
})(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
|
|
53277
53695
|
|
|
53278
|
-
},{"../Decorators":
|
|
53696
|
+
},{"../Decorators":253,"../misc/MurmurHash":368}],318:[function(require,module,exports){
|
|
53279
53697
|
"use strict";
|
|
53280
53698
|
/*!
|
|
53281
53699
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53371,7 +53789,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
|
|
|
53371
53789
|
LexerPopModeAction.INSTANCE = new LexerPopModeAction();
|
|
53372
53790
|
})(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
|
|
53373
53791
|
|
|
53374
|
-
},{"../Decorators":
|
|
53792
|
+
},{"../Decorators":253,"../misc/MurmurHash":368}],319:[function(require,module,exports){
|
|
53375
53793
|
"use strict";
|
|
53376
53794
|
/*!
|
|
53377
53795
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53476,7 +53894,7 @@ __decorate([
|
|
|
53476
53894
|
], LexerPushModeAction.prototype, "toString", null);
|
|
53477
53895
|
exports.LexerPushModeAction = LexerPushModeAction;
|
|
53478
53896
|
|
|
53479
|
-
},{"../Decorators":
|
|
53897
|
+
},{"../Decorators":253,"../misc/MurmurHash":368}],320:[function(require,module,exports){
|
|
53480
53898
|
"use strict";
|
|
53481
53899
|
/*!
|
|
53482
53900
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53572,7 +53990,7 @@ exports.LexerSkipAction = LexerSkipAction;
|
|
|
53572
53990
|
LexerSkipAction.INSTANCE = new LexerSkipAction();
|
|
53573
53991
|
})(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
|
|
53574
53992
|
|
|
53575
|
-
},{"../Decorators":
|
|
53993
|
+
},{"../Decorators":253,"../misc/MurmurHash":368}],321:[function(require,module,exports){
|
|
53576
53994
|
"use strict";
|
|
53577
53995
|
/*!
|
|
53578
53996
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53676,7 +54094,7 @@ __decorate([
|
|
|
53676
54094
|
], LexerTypeAction.prototype, "toString", null);
|
|
53677
54095
|
exports.LexerTypeAction = LexerTypeAction;
|
|
53678
54096
|
|
|
53679
|
-
},{"../Decorators":
|
|
54097
|
+
},{"../Decorators":253,"../misc/MurmurHash":368}],322:[function(require,module,exports){
|
|
53680
54098
|
"use strict";
|
|
53681
54099
|
/*!
|
|
53682
54100
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53728,7 +54146,7 @@ LookaheadEventInfo = __decorate([
|
|
|
53728
54146
|
], LookaheadEventInfo);
|
|
53729
54147
|
exports.LookaheadEventInfo = LookaheadEventInfo;
|
|
53730
54148
|
|
|
53731
|
-
},{"../Decorators":
|
|
54149
|
+
},{"../Decorators":253,"./DecisionEventInfo":304}],323:[function(require,module,exports){
|
|
53732
54150
|
"use strict";
|
|
53733
54151
|
/*!
|
|
53734
54152
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53757,7 +54175,7 @@ __decorate([
|
|
|
53757
54175
|
], LoopEndState.prototype, "stateType", null);
|
|
53758
54176
|
exports.LoopEndState = LoopEndState;
|
|
53759
54177
|
|
|
53760
|
-
},{"../Decorators":
|
|
54178
|
+
},{"../Decorators":253,"./ATNState":292,"./ATNStateType":293}],324:[function(require,module,exports){
|
|
53761
54179
|
"use strict";
|
|
53762
54180
|
/*!
|
|
53763
54181
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53806,7 +54224,7 @@ NotSetTransition = __decorate([
|
|
|
53806
54224
|
], NotSetTransition);
|
|
53807
54225
|
exports.NotSetTransition = NotSetTransition;
|
|
53808
54226
|
|
|
53809
|
-
},{"../Decorators":
|
|
54227
|
+
},{"../Decorators":253,"./SetTransition":342}],325:[function(require,module,exports){
|
|
53810
54228
|
"use strict";
|
|
53811
54229
|
/*!
|
|
53812
54230
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53861,7 +54279,7 @@ __decorate([
|
|
|
53861
54279
|
], OrderedATNConfigSet.prototype, "canMerge", null);
|
|
53862
54280
|
exports.OrderedATNConfigSet = OrderedATNConfigSet;
|
|
53863
54281
|
|
|
53864
|
-
},{"../Decorators":
|
|
54282
|
+
},{"../Decorators":253,"./ATNConfigSet":288}],326:[function(require,module,exports){
|
|
53865
54283
|
"use strict";
|
|
53866
54284
|
/*!
|
|
53867
54285
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54023,7 +54441,7 @@ ParseInfo = __decorate([
|
|
|
54023
54441
|
], ParseInfo);
|
|
54024
54442
|
exports.ParseInfo = ParseInfo;
|
|
54025
54443
|
|
|
54026
|
-
},{"../Decorators":
|
|
54444
|
+
},{"../Decorators":253}],327:[function(require,module,exports){
|
|
54027
54445
|
"use strict";
|
|
54028
54446
|
/*!
|
|
54029
54447
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56296,7 +56714,7 @@ ParserATNSimulator = __decorate([
|
|
|
56296
56714
|
], ParserATNSimulator);
|
|
56297
56715
|
exports.ParserATNSimulator = ParserATNSimulator;
|
|
56298
56716
|
|
|
56299
|
-
},{"../Decorators":
|
|
56717
|
+
},{"../Decorators":253,"../IntStream":259,"../NoViableAltException":265,"../ParserRuleContext":269,"../Token":278,"../VocabularyImpl":284,"../dfa/AcceptStateInfo":350,"../dfa/DFAState":353,"../misc/Array2DHashSet":357,"../misc/Arrays":359,"../misc/BitSet":360,"../misc/IntegerList":363,"../misc/Interval":365,"../misc/ObjectEqualityComparator":369,"./ATN":286,"./ATNConfig":287,"./ATNConfigSet":288,"./ATNSimulator":291,"./ATNStateType":293,"./ActionTransition":295,"./AtomTransition":297,"./ConflictInfo":302,"./DecisionState":306,"./NotSetTransition":324,"./PredictionContext":333,"./PredictionContextCache":334,"./PredictionMode":335,"./RuleStopState":339,"./RuleTransition":340,"./SemanticContext":341,"./SetTransition":342,"./SimulatorState":343,"assert":396}],328:[function(require,module,exports){
|
|
56300
56718
|
"use strict";
|
|
56301
56719
|
/*!
|
|
56302
56720
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56329,7 +56747,7 @@ __decorate([
|
|
|
56329
56747
|
], PlusBlockStartState.prototype, "stateType", null);
|
|
56330
56748
|
exports.PlusBlockStartState = PlusBlockStartState;
|
|
56331
56749
|
|
|
56332
|
-
},{"../Decorators":
|
|
56750
|
+
},{"../Decorators":253,"./ATNStateType":293,"./BlockStartState":301}],329:[function(require,module,exports){
|
|
56333
56751
|
"use strict";
|
|
56334
56752
|
/*!
|
|
56335
56753
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56360,7 +56778,7 @@ __decorate([
|
|
|
56360
56778
|
], PlusLoopbackState.prototype, "stateType", null);
|
|
56361
56779
|
exports.PlusLoopbackState = PlusLoopbackState;
|
|
56362
56780
|
|
|
56363
|
-
},{"../Decorators":
|
|
56781
|
+
},{"../Decorators":253,"./ATNStateType":293,"./DecisionState":306}],330:[function(require,module,exports){
|
|
56364
56782
|
"use strict";
|
|
56365
56783
|
/*!
|
|
56366
56784
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56423,7 +56841,7 @@ PrecedencePredicateTransition = __decorate([
|
|
|
56423
56841
|
], PrecedencePredicateTransition);
|
|
56424
56842
|
exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
|
|
56425
56843
|
|
|
56426
|
-
},{"../Decorators":
|
|
56844
|
+
},{"../Decorators":253,"./AbstractPredicateTransition":294,"./SemanticContext":341}],331:[function(require,module,exports){
|
|
56427
56845
|
"use strict";
|
|
56428
56846
|
/*!
|
|
56429
56847
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56486,7 +56904,7 @@ PredicateEvalInfo = __decorate([
|
|
|
56486
56904
|
], PredicateEvalInfo);
|
|
56487
56905
|
exports.PredicateEvalInfo = PredicateEvalInfo;
|
|
56488
56906
|
|
|
56489
|
-
},{"../Decorators":
|
|
56907
|
+
},{"../Decorators":253,"./DecisionEventInfo":304}],332:[function(require,module,exports){
|
|
56490
56908
|
"use strict";
|
|
56491
56909
|
/*!
|
|
56492
56910
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56552,7 +56970,7 @@ PredicateTransition = __decorate([
|
|
|
56552
56970
|
], PredicateTransition);
|
|
56553
56971
|
exports.PredicateTransition = PredicateTransition;
|
|
56554
56972
|
|
|
56555
|
-
},{"../Decorators":
|
|
56973
|
+
},{"../Decorators":253,"./AbstractPredicateTransition":294,"./SemanticContext":341}],333:[function(require,module,exports){
|
|
56556
56974
|
"use strict";
|
|
56557
56975
|
/*!
|
|
56558
56976
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57243,7 +57661,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
|
|
|
57243
57661
|
PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
|
|
57244
57662
|
})(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
|
|
57245
57663
|
|
|
57246
|
-
},{"../Decorators":
|
|
57664
|
+
},{"../Decorators":253,"../misc/Array2DHashMap":356,"../misc/Array2DHashSet":357,"../misc/Arrays":359,"../misc/MurmurHash":368,"./PredictionContextCache":334,"assert":396}],334:[function(require,module,exports){
|
|
57247
57665
|
"use strict";
|
|
57248
57666
|
/*!
|
|
57249
57667
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57384,7 +57802,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
|
|
|
57384
57802
|
PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
|
|
57385
57803
|
})(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
|
|
57386
57804
|
|
|
57387
|
-
},{"../Decorators":
|
|
57805
|
+
},{"../Decorators":253,"../misc/Array2DHashMap":356,"../misc/ObjectEqualityComparator":369,"./PredictionContext":333,"assert":396}],335:[function(require,module,exports){
|
|
57388
57806
|
"use strict";
|
|
57389
57807
|
/*!
|
|
57390
57808
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57545,7 +57963,7 @@ var PredictionMode;
|
|
|
57545
57963
|
PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
|
|
57546
57964
|
})(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
|
|
57547
57965
|
|
|
57548
|
-
},{"../Decorators":
|
|
57966
|
+
},{"../Decorators":253,"../misc/Array2DHashMap":356,"../misc/MurmurHash":368,"./RuleStopState":339}],336:[function(require,module,exports){
|
|
57549
57967
|
(function (process){(function (){
|
|
57550
57968
|
"use strict";
|
|
57551
57969
|
/*!
|
|
@@ -57814,7 +58232,7 @@ __decorate([
|
|
|
57814
58232
|
exports.ProfilingATNSimulator = ProfilingATNSimulator;
|
|
57815
58233
|
|
|
57816
58234
|
}).call(this)}).call(this,require('_process'))
|
|
57817
|
-
},{"../Decorators":
|
|
58235
|
+
},{"../Decorators":253,"./ATN":286,"./ATNSimulator":291,"./AmbiguityInfo":296,"./ContextSensitivityInfo":303,"./DecisionInfo":305,"./ErrorInfo":308,"./LookaheadEventInfo":322,"./ParserATNSimulator":327,"./PredicateEvalInfo":331,"./SemanticContext":341,"./SimulatorState":343,"_process":455}],337:[function(require,module,exports){
|
|
57818
58236
|
"use strict";
|
|
57819
58237
|
/*!
|
|
57820
58238
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57872,7 +58290,7 @@ RangeTransition = __decorate([
|
|
|
57872
58290
|
], RangeTransition);
|
|
57873
58291
|
exports.RangeTransition = RangeTransition;
|
|
57874
58292
|
|
|
57875
|
-
},{"../Decorators":
|
|
58293
|
+
},{"../Decorators":253,"../misc/IntervalSet":366,"./Transition":348}],338:[function(require,module,exports){
|
|
57876
58294
|
"use strict";
|
|
57877
58295
|
/*!
|
|
57878
58296
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57905,7 +58323,7 @@ __decorate([
|
|
|
57905
58323
|
], RuleStartState.prototype, "stateType", null);
|
|
57906
58324
|
exports.RuleStartState = RuleStartState;
|
|
57907
58325
|
|
|
57908
|
-
},{"../Decorators":
|
|
58326
|
+
},{"../Decorators":253,"./ATNState":292,"./ATNStateType":293}],339:[function(require,module,exports){
|
|
57909
58327
|
"use strict";
|
|
57910
58328
|
/*!
|
|
57911
58329
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57944,7 +58362,7 @@ __decorate([
|
|
|
57944
58362
|
], RuleStopState.prototype, "stateType", null);
|
|
57945
58363
|
exports.RuleStopState = RuleStopState;
|
|
57946
58364
|
|
|
57947
|
-
},{"../Decorators":
|
|
58365
|
+
},{"../Decorators":253,"./ATNState":292,"./ATNStateType":293}],340:[function(require,module,exports){
|
|
57948
58366
|
"use strict";
|
|
57949
58367
|
/*!
|
|
57950
58368
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58000,7 +58418,7 @@ RuleTransition = __decorate([
|
|
|
58000
58418
|
], RuleTransition);
|
|
58001
58419
|
exports.RuleTransition = RuleTransition;
|
|
58002
58420
|
|
|
58003
|
-
},{"../Decorators":
|
|
58421
|
+
},{"../Decorators":253,"./Transition":348}],341:[function(require,module,exports){
|
|
58004
58422
|
"use strict";
|
|
58005
58423
|
/*!
|
|
58006
58424
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58480,7 +58898,7 @@ exports.SemanticContext = SemanticContext;
|
|
|
58480
58898
|
SemanticContext.OR = OR;
|
|
58481
58899
|
})(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
|
|
58482
58900
|
|
|
58483
|
-
},{"../Decorators":
|
|
58901
|
+
},{"../Decorators":253,"../misc/Array2DHashSet":357,"../misc/ArrayEqualityComparator":358,"../misc/MurmurHash":368,"../misc/ObjectEqualityComparator":369,"../misc/Utils":372}],342:[function(require,module,exports){
|
|
58484
58902
|
"use strict";
|
|
58485
58903
|
/*!
|
|
58486
58904
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58546,7 +58964,7 @@ SetTransition = __decorate([
|
|
|
58546
58964
|
], SetTransition);
|
|
58547
58965
|
exports.SetTransition = SetTransition;
|
|
58548
58966
|
|
|
58549
|
-
},{"../Decorators":
|
|
58967
|
+
},{"../Decorators":253,"../Token":278,"../misc/IntervalSet":366,"./Transition":348}],343:[function(require,module,exports){
|
|
58550
58968
|
"use strict";
|
|
58551
58969
|
/*!
|
|
58552
58970
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58582,7 +59000,7 @@ SimulatorState = __decorate([
|
|
|
58582
59000
|
], SimulatorState);
|
|
58583
59001
|
exports.SimulatorState = SimulatorState;
|
|
58584
59002
|
|
|
58585
|
-
},{"../Decorators":
|
|
59003
|
+
},{"../Decorators":253,"../ParserRuleContext":269}],344:[function(require,module,exports){
|
|
58586
59004
|
"use strict";
|
|
58587
59005
|
/*!
|
|
58588
59006
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58610,7 +59028,7 @@ __decorate([
|
|
|
58610
59028
|
], StarBlockStartState.prototype, "stateType", null);
|
|
58611
59029
|
exports.StarBlockStartState = StarBlockStartState;
|
|
58612
59030
|
|
|
58613
|
-
},{"../Decorators":
|
|
59031
|
+
},{"../Decorators":253,"./ATNStateType":293,"./BlockStartState":301}],345:[function(require,module,exports){
|
|
58614
59032
|
"use strict";
|
|
58615
59033
|
/*!
|
|
58616
59034
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58667,7 +59085,7 @@ __decorate([
|
|
|
58667
59085
|
], StarLoopEntryState.prototype, "stateType", null);
|
|
58668
59086
|
exports.StarLoopEntryState = StarLoopEntryState;
|
|
58669
59087
|
|
|
58670
|
-
},{"../Decorators":
|
|
59088
|
+
},{"../Decorators":253,"../misc/BitSet":360,"./ATNStateType":293,"./DecisionState":306}],346:[function(require,module,exports){
|
|
58671
59089
|
"use strict";
|
|
58672
59090
|
/*!
|
|
58673
59091
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58698,7 +59116,7 @@ __decorate([
|
|
|
58698
59116
|
], StarLoopbackState.prototype, "stateType", null);
|
|
58699
59117
|
exports.StarLoopbackState = StarLoopbackState;
|
|
58700
59118
|
|
|
58701
|
-
},{"../Decorators":
|
|
59119
|
+
},{"../Decorators":253,"./ATNState":292,"./ATNStateType":293}],347:[function(require,module,exports){
|
|
58702
59120
|
"use strict";
|
|
58703
59121
|
/*!
|
|
58704
59122
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58727,7 +59145,7 @@ __decorate([
|
|
|
58727
59145
|
], TokensStartState.prototype, "stateType", null);
|
|
58728
59146
|
exports.TokensStartState = TokensStartState;
|
|
58729
59147
|
|
|
58730
|
-
},{"../Decorators":
|
|
59148
|
+
},{"../Decorators":253,"./ATNStateType":293,"./DecisionState":306}],348:[function(require,module,exports){
|
|
58731
59149
|
"use strict";
|
|
58732
59150
|
/*!
|
|
58733
59151
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58801,7 +59219,7 @@ Transition = __decorate([
|
|
|
58801
59219
|
], Transition);
|
|
58802
59220
|
exports.Transition = Transition;
|
|
58803
59221
|
|
|
58804
|
-
},{"../Decorators":
|
|
59222
|
+
},{"../Decorators":253}],349:[function(require,module,exports){
|
|
58805
59223
|
"use strict";
|
|
58806
59224
|
/*!
|
|
58807
59225
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58849,7 +59267,7 @@ WildcardTransition = __decorate([
|
|
|
58849
59267
|
], WildcardTransition);
|
|
58850
59268
|
exports.WildcardTransition = WildcardTransition;
|
|
58851
59269
|
|
|
58852
|
-
},{"../Decorators":
|
|
59270
|
+
},{"../Decorators":253,"./Transition":348}],350:[function(require,module,exports){
|
|
58853
59271
|
"use strict";
|
|
58854
59272
|
/*!
|
|
58855
59273
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58891,7 +59309,7 @@ class AcceptStateInfo {
|
|
|
58891
59309
|
}
|
|
58892
59310
|
exports.AcceptStateInfo = AcceptStateInfo;
|
|
58893
59311
|
|
|
58894
|
-
},{}],
|
|
59312
|
+
},{}],351:[function(require,module,exports){
|
|
58895
59313
|
"use strict";
|
|
58896
59314
|
/*!
|
|
58897
59315
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59066,7 +59484,7 @@ DFA = __decorate([
|
|
|
59066
59484
|
], DFA);
|
|
59067
59485
|
exports.DFA = DFA;
|
|
59068
59486
|
|
|
59069
|
-
},{"../Decorators":
|
|
59487
|
+
},{"../Decorators":253,"../VocabularyImpl":284,"../atn/ATNConfigSet":288,"../atn/StarLoopEntryState":345,"../misc/Array2DHashSet":357,"../misc/ObjectEqualityComparator":369,"./DFASerializer":352,"./DFAState":353,"./LexerDFASerializer":354}],352:[function(require,module,exports){
|
|
59070
59488
|
"use strict";
|
|
59071
59489
|
/*!
|
|
59072
59490
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59208,7 +59626,7 @@ __decorate([
|
|
|
59208
59626
|
], DFASerializer.prototype, "toString", null);
|
|
59209
59627
|
exports.DFASerializer = DFASerializer;
|
|
59210
59628
|
|
|
59211
|
-
},{"../Decorators":
|
|
59629
|
+
},{"../Decorators":253,"../Recognizer":273,"../VocabularyImpl":284,"../atn/ATNSimulator":291,"../atn/PredictionContext":333}],353:[function(require,module,exports){
|
|
59212
59630
|
"use strict";
|
|
59213
59631
|
/*!
|
|
59214
59632
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59439,7 +59857,7 @@ exports.DFAState = DFAState;
|
|
|
59439
59857
|
DFAState.PredPrediction = PredPrediction;
|
|
59440
59858
|
})(DFAState = exports.DFAState || (exports.DFAState = {}));
|
|
59441
59859
|
|
|
59442
|
-
},{"../Decorators":
|
|
59860
|
+
},{"../Decorators":253,"../atn/ATN":286,"../atn/PredictionContext":333,"../misc/BitSet":360,"../misc/MurmurHash":368,"assert":396}],354:[function(require,module,exports){
|
|
59443
59861
|
"use strict";
|
|
59444
59862
|
/*!
|
|
59445
59863
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59476,7 +59894,7 @@ LexerDFASerializer = __decorate([
|
|
|
59476
59894
|
], LexerDFASerializer);
|
|
59477
59895
|
exports.LexerDFASerializer = LexerDFASerializer;
|
|
59478
59896
|
|
|
59479
|
-
},{"../Decorators":
|
|
59897
|
+
},{"../Decorators":253,"../VocabularyImpl":284,"./DFASerializer":352}],355:[function(require,module,exports){
|
|
59480
59898
|
"use strict";
|
|
59481
59899
|
/*!
|
|
59482
59900
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59542,7 +59960,7 @@ __exportStar(require("./Vocabulary"), exports);
|
|
|
59542
59960
|
__exportStar(require("./VocabularyImpl"), exports);
|
|
59543
59961
|
__exportStar(require("./WritableToken"), exports);
|
|
59544
59962
|
|
|
59545
|
-
},{"./ANTLRErrorListener":
|
|
59963
|
+
},{"./ANTLRErrorListener":240,"./ANTLRErrorStrategy":241,"./ANTLRInputStream":242,"./BailErrorStrategy":243,"./BufferedTokenStream":244,"./CharStream":245,"./CharStreams":246,"./CodePointBuffer":247,"./CodePointCharStream":248,"./CommonToken":249,"./CommonTokenFactory":250,"./CommonTokenStream":251,"./ConsoleErrorListener":252,"./DefaultErrorStrategy":254,"./Dependents":255,"./DiagnosticErrorListener":256,"./FailedPredicateException":257,"./InputMismatchException":258,"./IntStream":259,"./InterpreterRuleContext":260,"./Lexer":261,"./LexerInterpreter":262,"./LexerNoViableAltException":263,"./ListTokenSource":264,"./NoViableAltException":265,"./Parser":266,"./ParserErrorListener":267,"./ParserInterpreter":268,"./ParserRuleContext":269,"./ProxyErrorListener":270,"./ProxyParserErrorListener":271,"./RecognitionException":272,"./Recognizer":273,"./RuleContext":274,"./RuleContextWithAltNum":275,"./RuleDependency":276,"./RuleVersion":277,"./Token":278,"./TokenFactory":279,"./TokenSource":280,"./TokenStream":281,"./TokenStreamRewriter":282,"./Vocabulary":283,"./VocabularyImpl":284,"./WritableToken":285}],356:[function(require,module,exports){
|
|
59546
59964
|
"use strict";
|
|
59547
59965
|
/*!
|
|
59548
59966
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59625,7 +60043,7 @@ class Array2DHashMap {
|
|
|
59625
60043
|
}
|
|
59626
60044
|
exports.Array2DHashMap = Array2DHashMap;
|
|
59627
60045
|
|
|
59628
|
-
},{"./Array2DHashSet":
|
|
60046
|
+
},{"./Array2DHashSet":357}],357:[function(require,module,exports){
|
|
59629
60047
|
"use strict";
|
|
59630
60048
|
/*!
|
|
59631
60049
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59992,7 +60410,7 @@ __decorate([
|
|
|
59992
60410
|
], Array2DHashSet.prototype, "createBuckets", null);
|
|
59993
60411
|
exports.Array2DHashSet = Array2DHashSet;
|
|
59994
60412
|
|
|
59995
|
-
},{"../Decorators":
|
|
60413
|
+
},{"../Decorators":253,"./DefaultEqualityComparator":362,"./MurmurHash":368,"assert":396}],358:[function(require,module,exports){
|
|
59996
60414
|
"use strict";
|
|
59997
60415
|
/*!
|
|
59998
60416
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60064,7 +60482,7 @@ __decorate([
|
|
|
60064
60482
|
], ArrayEqualityComparator.prototype, "equals", null);
|
|
60065
60483
|
exports.ArrayEqualityComparator = ArrayEqualityComparator;
|
|
60066
60484
|
|
|
60067
|
-
},{"../Decorators":
|
|
60485
|
+
},{"../Decorators":253,"./MurmurHash":368,"./ObjectEqualityComparator":369}],359:[function(require,module,exports){
|
|
60068
60486
|
"use strict";
|
|
60069
60487
|
/*!
|
|
60070
60488
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60134,7 +60552,7 @@ var Arrays;
|
|
|
60134
60552
|
Arrays.toString = toString;
|
|
60135
60553
|
})(Arrays = exports.Arrays || (exports.Arrays = {}));
|
|
60136
60554
|
|
|
60137
|
-
},{}],
|
|
60555
|
+
},{}],360:[function(require,module,exports){
|
|
60138
60556
|
"use strict";
|
|
60139
60557
|
/*!
|
|
60140
60558
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60806,7 +61224,7 @@ class BitSetIterator {
|
|
|
60806
61224
|
[Symbol.iterator]() { return this; }
|
|
60807
61225
|
}
|
|
60808
61226
|
|
|
60809
|
-
},{"./MurmurHash":
|
|
61227
|
+
},{"./MurmurHash":368,"util":460}],361:[function(require,module,exports){
|
|
60810
61228
|
"use strict";
|
|
60811
61229
|
/*!
|
|
60812
61230
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60827,7 +61245,7 @@ function isSupplementaryCodePoint(ch) {
|
|
|
60827
61245
|
}
|
|
60828
61246
|
exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
|
|
60829
61247
|
|
|
60830
|
-
},{}],
|
|
61248
|
+
},{}],362:[function(require,module,exports){
|
|
60831
61249
|
"use strict";
|
|
60832
61250
|
/*!
|
|
60833
61251
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60898,7 +61316,7 @@ __decorate([
|
|
|
60898
61316
|
], DefaultEqualityComparator.prototype, "equals", null);
|
|
60899
61317
|
exports.DefaultEqualityComparator = DefaultEqualityComparator;
|
|
60900
61318
|
|
|
60901
|
-
},{"../Decorators":
|
|
61319
|
+
},{"../Decorators":253,"./MurmurHash":368,"./ObjectEqualityComparator":369}],363:[function(require,module,exports){
|
|
60902
61320
|
"use strict";
|
|
60903
61321
|
/*!
|
|
60904
61322
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61192,7 +61610,7 @@ __decorate([
|
|
|
61192
61610
|
], IntegerList.prototype, "toString", null);
|
|
61193
61611
|
exports.IntegerList = IntegerList;
|
|
61194
61612
|
|
|
61195
|
-
},{"../Decorators":
|
|
61613
|
+
},{"../Decorators":253,"./Arrays":359}],364:[function(require,module,exports){
|
|
61196
61614
|
"use strict";
|
|
61197
61615
|
/*!
|
|
61198
61616
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61222,7 +61640,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
|
|
|
61222
61640
|
}
|
|
61223
61641
|
exports.IntegerStack = IntegerStack;
|
|
61224
61642
|
|
|
61225
|
-
},{"./IntegerList":
|
|
61643
|
+
},{"./IntegerList":363}],365:[function(require,module,exports){
|
|
61226
61644
|
"use strict";
|
|
61227
61645
|
/*!
|
|
61228
61646
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61365,7 +61783,7 @@ __decorate([
|
|
|
61365
61783
|
], Interval.prototype, "toString", null);
|
|
61366
61784
|
exports.Interval = Interval;
|
|
61367
61785
|
|
|
61368
|
-
},{"../Decorators":
|
|
61786
|
+
},{"../Decorators":253}],366:[function(require,module,exports){
|
|
61369
61787
|
"use strict";
|
|
61370
61788
|
/*!
|
|
61371
61789
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62011,7 +62429,7 @@ __decorate([
|
|
|
62011
62429
|
], IntervalSet, "subtract", null);
|
|
62012
62430
|
exports.IntervalSet = IntervalSet;
|
|
62013
62431
|
|
|
62014
|
-
},{"../Decorators":
|
|
62432
|
+
},{"../Decorators":253,"../Lexer":261,"../Token":278,"./ArrayEqualityComparator":358,"./IntegerList":363,"./Interval":365,"./MurmurHash":368}],367:[function(require,module,exports){
|
|
62015
62433
|
"use strict";
|
|
62016
62434
|
/*!
|
|
62017
62435
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62044,7 +62462,7 @@ class MultiMap extends Map {
|
|
|
62044
62462
|
}
|
|
62045
62463
|
exports.MultiMap = MultiMap;
|
|
62046
62464
|
|
|
62047
|
-
},{}],
|
|
62465
|
+
},{}],368:[function(require,module,exports){
|
|
62048
62466
|
"use strict";
|
|
62049
62467
|
/*!
|
|
62050
62468
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62159,7 +62577,7 @@ var MurmurHash;
|
|
|
62159
62577
|
}
|
|
62160
62578
|
})(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
|
|
62161
62579
|
|
|
62162
|
-
},{}],
|
|
62580
|
+
},{}],369:[function(require,module,exports){
|
|
62163
62581
|
"use strict";
|
|
62164
62582
|
/*!
|
|
62165
62583
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62218,7 +62636,7 @@ __decorate([
|
|
|
62218
62636
|
], ObjectEqualityComparator.prototype, "equals", null);
|
|
62219
62637
|
exports.ObjectEqualityComparator = ObjectEqualityComparator;
|
|
62220
62638
|
|
|
62221
|
-
},{"../Decorators":
|
|
62639
|
+
},{"../Decorators":253}],370:[function(require,module,exports){
|
|
62222
62640
|
"use strict";
|
|
62223
62641
|
/*!
|
|
62224
62642
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62247,7 +62665,7 @@ class ParseCancellationException extends Error {
|
|
|
62247
62665
|
}
|
|
62248
62666
|
exports.ParseCancellationException = ParseCancellationException;
|
|
62249
62667
|
|
|
62250
|
-
},{}],
|
|
62668
|
+
},{}],371:[function(require,module,exports){
|
|
62251
62669
|
"use strict";
|
|
62252
62670
|
/*!
|
|
62253
62671
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62301,7 +62719,7 @@ class UUID {
|
|
|
62301
62719
|
}
|
|
62302
62720
|
exports.UUID = UUID;
|
|
62303
62721
|
|
|
62304
|
-
},{"./MurmurHash":
|
|
62722
|
+
},{"./MurmurHash":368}],372:[function(require,module,exports){
|
|
62305
62723
|
"use strict";
|
|
62306
62724
|
/*!
|
|
62307
62725
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62476,7 +62894,7 @@ exports.toCharArray = toCharArray;
|
|
|
62476
62894
|
// return s;
|
|
62477
62895
|
// }
|
|
62478
62896
|
|
|
62479
|
-
},{}],
|
|
62897
|
+
},{}],373:[function(require,module,exports){
|
|
62480
62898
|
"use strict";
|
|
62481
62899
|
/*!
|
|
62482
62900
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62512,7 +62930,7 @@ __decorate([
|
|
|
62512
62930
|
], ErrorNode.prototype, "accept", null);
|
|
62513
62931
|
exports.ErrorNode = ErrorNode;
|
|
62514
62932
|
|
|
62515
|
-
},{"../Decorators":
|
|
62933
|
+
},{"../Decorators":253,"./TerminalNode":376}],374:[function(require,module,exports){
|
|
62516
62934
|
"use strict";
|
|
62517
62935
|
/*!
|
|
62518
62936
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62617,7 +63035,7 @@ exports.ParseTreeWalker = ParseTreeWalker;
|
|
|
62617
63035
|
ParseTreeWalker.DEFAULT = new ParseTreeWalker();
|
|
62618
63036
|
})(ParseTreeWalker = exports.ParseTreeWalker || (exports.ParseTreeWalker = {}));
|
|
62619
63037
|
|
|
62620
|
-
},{"./ErrorNode":
|
|
63038
|
+
},{"./ErrorNode":373,"./RuleNode":375,"./TerminalNode":376}],375:[function(require,module,exports){
|
|
62621
63039
|
"use strict";
|
|
62622
63040
|
/*!
|
|
62623
63041
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62629,7 +63047,7 @@ class RuleNode {
|
|
|
62629
63047
|
}
|
|
62630
63048
|
exports.RuleNode = RuleNode;
|
|
62631
63049
|
|
|
62632
|
-
},{}],
|
|
63050
|
+
},{}],376:[function(require,module,exports){
|
|
62633
63051
|
"use strict";
|
|
62634
63052
|
/*!
|
|
62635
63053
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62721,7 +63139,7 @@ __decorate([
|
|
|
62721
63139
|
], TerminalNode.prototype, "toString", null);
|
|
62722
63140
|
exports.TerminalNode = TerminalNode;
|
|
62723
63141
|
|
|
62724
|
-
},{"../Decorators":
|
|
63142
|
+
},{"../Decorators":253,"../Token":278,"../misc/Interval":365}],377:[function(require,module,exports){
|
|
62725
63143
|
"use strict";
|
|
62726
63144
|
/*!
|
|
62727
63145
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62965,7 +63383,7 @@ __decorate([
|
|
|
62965
63383
|
], Trees, "getRootOfSubtreeEnclosingRegion", null);
|
|
62966
63384
|
exports.Trees = Trees;
|
|
62967
63385
|
|
|
62968
|
-
},{"../CommonToken":
|
|
63386
|
+
},{"../CommonToken":249,"../Decorators":253,"../Parser":266,"../ParserRuleContext":269,"../Token":278,"../atn/ATN":286,"../misc/Utils":372,"./ErrorNode":373,"./RuleNode":375,"./TerminalNode":376}],378:[function(require,module,exports){
|
|
62969
63387
|
"use strict";
|
|
62970
63388
|
/*!
|
|
62971
63389
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62989,7 +63407,7 @@ class Chunk {
|
|
|
62989
63407
|
}
|
|
62990
63408
|
exports.Chunk = Chunk;
|
|
62991
63409
|
|
|
62992
|
-
},{}],
|
|
63410
|
+
},{}],379:[function(require,module,exports){
|
|
62993
63411
|
"use strict";
|
|
62994
63412
|
/*!
|
|
62995
63413
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63169,7 +63587,7 @@ ParseTreeMatch = __decorate([
|
|
|
63169
63587
|
], ParseTreeMatch);
|
|
63170
63588
|
exports.ParseTreeMatch = ParseTreeMatch;
|
|
63171
63589
|
|
|
63172
|
-
},{"../../Decorators":
|
|
63590
|
+
},{"../../Decorators":253}],380:[function(require,module,exports){
|
|
63173
63591
|
"use strict";
|
|
63174
63592
|
/*!
|
|
63175
63593
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63327,7 +63745,7 @@ ParseTreePattern = __decorate([
|
|
|
63327
63745
|
], ParseTreePattern);
|
|
63328
63746
|
exports.ParseTreePattern = ParseTreePattern;
|
|
63329
63747
|
|
|
63330
|
-
},{"../../Decorators":
|
|
63748
|
+
},{"../../Decorators":253,"../xpath/XPath":386}],381:[function(require,module,exports){
|
|
63331
63749
|
"use strict";
|
|
63332
63750
|
/*!
|
|
63333
63751
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63805,7 +64223,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
|
|
|
63805
64223
|
ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
|
|
63806
64224
|
})(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
|
|
63807
64225
|
|
|
63808
|
-
},{"../../BailErrorStrategy":
|
|
64226
|
+
},{"../../BailErrorStrategy":243,"../../CharStreams":246,"../../CommonTokenStream":251,"../../Decorators":253,"../../ListTokenSource":264,"../../ParserInterpreter":268,"../../ParserRuleContext":269,"../../RecognitionException":272,"../../Token":278,"../../misc/MultiMap":367,"../../misc/ParseCancellationException":370,"../RuleNode":375,"../TerminalNode":376,"./ParseTreeMatch":379,"./ParseTreePattern":380,"./RuleTagToken":382,"./TagChunk":383,"./TextChunk":384,"./TokenTagToken":385}],382:[function(require,module,exports){
|
|
63809
64227
|
"use strict";
|
|
63810
64228
|
/*!
|
|
63811
64229
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64003,7 +64421,7 @@ RuleTagToken = __decorate([
|
|
|
64003
64421
|
], RuleTagToken);
|
|
64004
64422
|
exports.RuleTagToken = RuleTagToken;
|
|
64005
64423
|
|
|
64006
|
-
},{"../../Decorators":
|
|
64424
|
+
},{"../../Decorators":253,"../../Token":278}],383:[function(require,module,exports){
|
|
64007
64425
|
"use strict";
|
|
64008
64426
|
/*!
|
|
64009
64427
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64090,7 +64508,7 @@ __decorate([
|
|
|
64090
64508
|
], TagChunk.prototype, "toString", null);
|
|
64091
64509
|
exports.TagChunk = TagChunk;
|
|
64092
64510
|
|
|
64093
|
-
},{"../../Decorators":
|
|
64511
|
+
},{"../../Decorators":253,"./Chunk":378}],384:[function(require,module,exports){
|
|
64094
64512
|
"use strict";
|
|
64095
64513
|
/*!
|
|
64096
64514
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64160,7 +64578,7 @@ TextChunk = __decorate([
|
|
|
64160
64578
|
], TextChunk);
|
|
64161
64579
|
exports.TextChunk = TextChunk;
|
|
64162
64580
|
|
|
64163
|
-
},{"../../Decorators":
|
|
64581
|
+
},{"../../Decorators":253,"./Chunk":378}],385:[function(require,module,exports){
|
|
64164
64582
|
"use strict";
|
|
64165
64583
|
/*!
|
|
64166
64584
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64255,7 +64673,7 @@ TokenTagToken = __decorate([
|
|
|
64255
64673
|
], TokenTagToken);
|
|
64256
64674
|
exports.TokenTagToken = TokenTagToken;
|
|
64257
64675
|
|
|
64258
|
-
},{"../../CommonToken":
|
|
64676
|
+
},{"../../CommonToken":249,"../../Decorators":253}],386:[function(require,module,exports){
|
|
64259
64677
|
"use strict";
|
|
64260
64678
|
/*!
|
|
64261
64679
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64452,7 +64870,7 @@ exports.XPath = XPath;
|
|
|
64452
64870
|
XPath.WILDCARD = "*"; // word not operator/separator
|
|
64453
64871
|
XPath.NOT = "!"; // word for invert operator
|
|
64454
64872
|
|
|
64455
|
-
},{"../../CharStreams":
|
|
64873
|
+
},{"../../CharStreams":246,"../../CommonTokenStream":251,"../../LexerNoViableAltException":263,"../../ParserRuleContext":269,"../../Token":278,"./XPathLexer":388,"./XPathLexerErrorListener":389,"./XPathRuleAnywhereElement":390,"./XPathRuleElement":391,"./XPathTokenAnywhereElement":392,"./XPathTokenElement":393,"./XPathWildcardAnywhereElement":394,"./XPathWildcardElement":395}],387:[function(require,module,exports){
|
|
64456
64874
|
"use strict";
|
|
64457
64875
|
/*!
|
|
64458
64876
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64487,7 +64905,7 @@ __decorate([
|
|
|
64487
64905
|
], XPathElement.prototype, "toString", null);
|
|
64488
64906
|
exports.XPathElement = XPathElement;
|
|
64489
64907
|
|
|
64490
|
-
},{"../../Decorators":
|
|
64908
|
+
},{"../../Decorators":253}],388:[function(require,module,exports){
|
|
64491
64909
|
"use strict";
|
|
64492
64910
|
// Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
64493
64911
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -64962,7 +65380,7 @@ XPathLexer._serializedATN = Utils.join([
|
|
|
64962
65380
|
XPathLexer._serializedATNSegment1,
|
|
64963
65381
|
], "");
|
|
64964
65382
|
|
|
64965
|
-
},{"../../Lexer":
|
|
65383
|
+
},{"../../Lexer":261,"../../VocabularyImpl":284,"../../atn/ATNDeserializer":290,"../../atn/LexerATNSimulator":311,"../../misc/Utils":372}],389:[function(require,module,exports){
|
|
64966
65384
|
"use strict";
|
|
64967
65385
|
/*!
|
|
64968
65386
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64987,7 +65405,7 @@ __decorate([
|
|
|
64987
65405
|
], XPathLexerErrorListener.prototype, "syntaxError", null);
|
|
64988
65406
|
exports.XPathLexerErrorListener = XPathLexerErrorListener;
|
|
64989
65407
|
|
|
64990
|
-
},{"../../Decorators":
|
|
65408
|
+
},{"../../Decorators":253}],390:[function(require,module,exports){
|
|
64991
65409
|
"use strict";
|
|
64992
65410
|
/*!
|
|
64993
65411
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65021,7 +65439,7 @@ __decorate([
|
|
|
65021
65439
|
], XPathRuleAnywhereElement.prototype, "evaluate", null);
|
|
65022
65440
|
exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
|
|
65023
65441
|
|
|
65024
|
-
},{"../../Decorators":
|
|
65442
|
+
},{"../../Decorators":253,"../Trees":377,"./XPathElement":387}],391:[function(require,module,exports){
|
|
65025
65443
|
"use strict";
|
|
65026
65444
|
/*!
|
|
65027
65445
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65064,7 +65482,7 @@ __decorate([
|
|
|
65064
65482
|
], XPathRuleElement.prototype, "evaluate", null);
|
|
65065
65483
|
exports.XPathRuleElement = XPathRuleElement;
|
|
65066
65484
|
|
|
65067
|
-
},{"../../Decorators":
|
|
65485
|
+
},{"../../Decorators":253,"../../ParserRuleContext":269,"../Trees":377,"./XPathElement":387}],392:[function(require,module,exports){
|
|
65068
65486
|
"use strict";
|
|
65069
65487
|
/*!
|
|
65070
65488
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65096,7 +65514,7 @@ __decorate([
|
|
|
65096
65514
|
], XPathTokenAnywhereElement.prototype, "evaluate", null);
|
|
65097
65515
|
exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
|
|
65098
65516
|
|
|
65099
|
-
},{"../../Decorators":
|
|
65517
|
+
},{"../../Decorators":253,"../Trees":377,"./XPathElement":387}],393:[function(require,module,exports){
|
|
65100
65518
|
"use strict";
|
|
65101
65519
|
/*!
|
|
65102
65520
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65139,7 +65557,7 @@ __decorate([
|
|
|
65139
65557
|
], XPathTokenElement.prototype, "evaluate", null);
|
|
65140
65558
|
exports.XPathTokenElement = XPathTokenElement;
|
|
65141
65559
|
|
|
65142
|
-
},{"../../Decorators":
|
|
65560
|
+
},{"../../Decorators":253,"../TerminalNode":376,"../Trees":377,"./XPathElement":387}],394:[function(require,module,exports){
|
|
65143
65561
|
"use strict";
|
|
65144
65562
|
/*!
|
|
65145
65563
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65175,7 +65593,7 @@ __decorate([
|
|
|
65175
65593
|
], XPathWildcardAnywhereElement.prototype, "evaluate", null);
|
|
65176
65594
|
exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
|
|
65177
65595
|
|
|
65178
|
-
},{"../../Decorators":
|
|
65596
|
+
},{"../../Decorators":253,"../Trees":377,"./XPath":386,"./XPathElement":387}],395:[function(require,module,exports){
|
|
65179
65597
|
"use strict";
|
|
65180
65598
|
/*!
|
|
65181
65599
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65215,7 +65633,7 @@ __decorate([
|
|
|
65215
65633
|
], XPathWildcardElement.prototype, "evaluate", null);
|
|
65216
65634
|
exports.XPathWildcardElement = XPathWildcardElement;
|
|
65217
65635
|
|
|
65218
|
-
},{"../../Decorators":
|
|
65636
|
+
},{"../../Decorators":253,"../Trees":377,"./XPath":386,"./XPathElement":387}],396:[function(require,module,exports){
|
|
65219
65637
|
(function (global){(function (){
|
|
65220
65638
|
'use strict';
|
|
65221
65639
|
|
|
@@ -65725,7 +66143,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
65725
66143
|
};
|
|
65726
66144
|
|
|
65727
66145
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
65728
|
-
},{"object.assign/polyfill":
|
|
66146
|
+
},{"object.assign/polyfill":453,"util/":399}],397:[function(require,module,exports){
|
|
65729
66147
|
if (typeof Object.create === 'function') {
|
|
65730
66148
|
// implementation from standard node.js 'util' module
|
|
65731
66149
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -65750,14 +66168,14 @@ if (typeof Object.create === 'function') {
|
|
|
65750
66168
|
}
|
|
65751
66169
|
}
|
|
65752
66170
|
|
|
65753
|
-
},{}],
|
|
66171
|
+
},{}],398:[function(require,module,exports){
|
|
65754
66172
|
module.exports = function isBuffer(arg) {
|
|
65755
66173
|
return arg && typeof arg === 'object'
|
|
65756
66174
|
&& typeof arg.copy === 'function'
|
|
65757
66175
|
&& typeof arg.fill === 'function'
|
|
65758
66176
|
&& typeof arg.readUInt8 === 'function';
|
|
65759
66177
|
}
|
|
65760
|
-
},{}],
|
|
66178
|
+
},{}],399:[function(require,module,exports){
|
|
65761
66179
|
(function (process,global){(function (){
|
|
65762
66180
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
65763
66181
|
//
|
|
@@ -66347,7 +66765,7 @@ function hasOwnProperty(obj, prop) {
|
|
|
66347
66765
|
}
|
|
66348
66766
|
|
|
66349
66767
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
66350
|
-
},{"./support/isBuffer":
|
|
66768
|
+
},{"./support/isBuffer":398,"_process":455,"inherits":397}],400:[function(require,module,exports){
|
|
66351
66769
|
(function (global){(function (){
|
|
66352
66770
|
'use strict';
|
|
66353
66771
|
|
|
@@ -66368,7 +66786,7 @@ module.exports = function availableTypedArrays() {
|
|
|
66368
66786
|
};
|
|
66369
66787
|
|
|
66370
66788
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
66371
|
-
},{"possible-typed-array-names":
|
|
66789
|
+
},{"possible-typed-array-names":454}],401:[function(require,module,exports){
|
|
66372
66790
|
(function (process,global){(function (){
|
|
66373
66791
|
module.exports = process.hrtime || hrtime
|
|
66374
66792
|
|
|
@@ -66399,7 +66817,7 @@ function hrtime(previousTimestamp){
|
|
|
66399
66817
|
return [seconds,nanoseconds]
|
|
66400
66818
|
}
|
|
66401
66819
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
66402
|
-
},{"_process":
|
|
66820
|
+
},{"_process":455}],402:[function(require,module,exports){
|
|
66403
66821
|
'use strict';
|
|
66404
66822
|
|
|
66405
66823
|
var bind = require('function-bind');
|
|
@@ -66411,7 +66829,7 @@ var $reflectApply = require('./reflectApply');
|
|
|
66411
66829
|
/** @type {import('./actualApply')} */
|
|
66412
66830
|
module.exports = $reflectApply || bind.call($call, $apply);
|
|
66413
66831
|
|
|
66414
|
-
},{"./functionApply":
|
|
66832
|
+
},{"./functionApply":404,"./functionCall":405,"./reflectApply":407,"function-bind":423}],403:[function(require,module,exports){
|
|
66415
66833
|
'use strict';
|
|
66416
66834
|
|
|
66417
66835
|
var bind = require('function-bind');
|
|
@@ -66423,19 +66841,19 @@ module.exports = function applyBind() {
|
|
|
66423
66841
|
return actualApply(bind, $apply, arguments);
|
|
66424
66842
|
};
|
|
66425
66843
|
|
|
66426
|
-
},{"./actualApply":
|
|
66844
|
+
},{"./actualApply":402,"./functionApply":404,"function-bind":423}],404:[function(require,module,exports){
|
|
66427
66845
|
'use strict';
|
|
66428
66846
|
|
|
66429
66847
|
/** @type {import('./functionApply')} */
|
|
66430
66848
|
module.exports = Function.prototype.apply;
|
|
66431
66849
|
|
|
66432
|
-
},{}],
|
|
66850
|
+
},{}],405:[function(require,module,exports){
|
|
66433
66851
|
'use strict';
|
|
66434
66852
|
|
|
66435
66853
|
/** @type {import('./functionCall')} */
|
|
66436
66854
|
module.exports = Function.prototype.call;
|
|
66437
66855
|
|
|
66438
|
-
},{}],
|
|
66856
|
+
},{}],406:[function(require,module,exports){
|
|
66439
66857
|
'use strict';
|
|
66440
66858
|
|
|
66441
66859
|
var bind = require('function-bind');
|
|
@@ -66452,13 +66870,13 @@ module.exports = function callBindBasic(args) {
|
|
|
66452
66870
|
return $actualApply(bind, $call, args);
|
|
66453
66871
|
};
|
|
66454
66872
|
|
|
66455
|
-
},{"./actualApply":
|
|
66873
|
+
},{"./actualApply":402,"./functionCall":405,"es-errors/type":418,"function-bind":423}],407:[function(require,module,exports){
|
|
66456
66874
|
'use strict';
|
|
66457
66875
|
|
|
66458
66876
|
/** @type {import('./reflectApply')} */
|
|
66459
66877
|
module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
|
|
66460
66878
|
|
|
66461
|
-
},{}],
|
|
66879
|
+
},{}],408:[function(require,module,exports){
|
|
66462
66880
|
'use strict';
|
|
66463
66881
|
|
|
66464
66882
|
var setFunctionLength = require('set-function-length');
|
|
@@ -66484,7 +66902,7 @@ if ($defineProperty) {
|
|
|
66484
66902
|
module.exports.apply = applyBind;
|
|
66485
66903
|
}
|
|
66486
66904
|
|
|
66487
|
-
},{"call-bind-apply-helpers":
|
|
66905
|
+
},{"call-bind-apply-helpers":406,"call-bind-apply-helpers/applyBind":403,"es-define-property":412,"set-function-length":457}],409:[function(require,module,exports){
|
|
66488
66906
|
'use strict';
|
|
66489
66907
|
|
|
66490
66908
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -66505,7 +66923,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
66505
66923
|
return intrinsic;
|
|
66506
66924
|
};
|
|
66507
66925
|
|
|
66508
|
-
},{"call-bind-apply-helpers":
|
|
66926
|
+
},{"call-bind-apply-helpers":406,"get-intrinsic":424}],410:[function(require,module,exports){
|
|
66509
66927
|
'use strict';
|
|
66510
66928
|
|
|
66511
66929
|
var $defineProperty = require('es-define-property');
|
|
@@ -66563,7 +66981,7 @@ module.exports = function defineDataProperty(
|
|
|
66563
66981
|
}
|
|
66564
66982
|
};
|
|
66565
66983
|
|
|
66566
|
-
},{"es-define-property":
|
|
66984
|
+
},{"es-define-property":412,"es-errors/syntax":417,"es-errors/type":418,"gopd":429}],411:[function(require,module,exports){
|
|
66567
66985
|
'use strict';
|
|
66568
66986
|
|
|
66569
66987
|
var callBind = require('call-bind-apply-helpers');
|
|
@@ -66595,7 +67013,7 @@ module.exports = desc && typeof desc.get === 'function'
|
|
|
66595
67013
|
}
|
|
66596
67014
|
: false;
|
|
66597
67015
|
|
|
66598
|
-
},{"call-bind-apply-helpers":
|
|
67016
|
+
},{"call-bind-apply-helpers":406,"gopd":429}],412:[function(require,module,exports){
|
|
66599
67017
|
'use strict';
|
|
66600
67018
|
|
|
66601
67019
|
/** @type {import('.')} */
|
|
@@ -66611,55 +67029,55 @@ if ($defineProperty) {
|
|
|
66611
67029
|
|
|
66612
67030
|
module.exports = $defineProperty;
|
|
66613
67031
|
|
|
66614
|
-
},{}],
|
|
67032
|
+
},{}],413:[function(require,module,exports){
|
|
66615
67033
|
'use strict';
|
|
66616
67034
|
|
|
66617
67035
|
/** @type {import('./eval')} */
|
|
66618
67036
|
module.exports = EvalError;
|
|
66619
67037
|
|
|
66620
|
-
},{}],
|
|
67038
|
+
},{}],414:[function(require,module,exports){
|
|
66621
67039
|
'use strict';
|
|
66622
67040
|
|
|
66623
67041
|
/** @type {import('.')} */
|
|
66624
67042
|
module.exports = Error;
|
|
66625
67043
|
|
|
66626
|
-
},{}],
|
|
67044
|
+
},{}],415:[function(require,module,exports){
|
|
66627
67045
|
'use strict';
|
|
66628
67046
|
|
|
66629
67047
|
/** @type {import('./range')} */
|
|
66630
67048
|
module.exports = RangeError;
|
|
66631
67049
|
|
|
66632
|
-
},{}],
|
|
67050
|
+
},{}],416:[function(require,module,exports){
|
|
66633
67051
|
'use strict';
|
|
66634
67052
|
|
|
66635
67053
|
/** @type {import('./ref')} */
|
|
66636
67054
|
module.exports = ReferenceError;
|
|
66637
67055
|
|
|
66638
|
-
},{}],
|
|
67056
|
+
},{}],417:[function(require,module,exports){
|
|
66639
67057
|
'use strict';
|
|
66640
67058
|
|
|
66641
67059
|
/** @type {import('./syntax')} */
|
|
66642
67060
|
module.exports = SyntaxError;
|
|
66643
67061
|
|
|
66644
|
-
},{}],
|
|
67062
|
+
},{}],418:[function(require,module,exports){
|
|
66645
67063
|
'use strict';
|
|
66646
67064
|
|
|
66647
67065
|
/** @type {import('./type')} */
|
|
66648
67066
|
module.exports = TypeError;
|
|
66649
67067
|
|
|
66650
|
-
},{}],
|
|
67068
|
+
},{}],419:[function(require,module,exports){
|
|
66651
67069
|
'use strict';
|
|
66652
67070
|
|
|
66653
67071
|
/** @type {import('./uri')} */
|
|
66654
67072
|
module.exports = URIError;
|
|
66655
67073
|
|
|
66656
|
-
},{}],
|
|
67074
|
+
},{}],420:[function(require,module,exports){
|
|
66657
67075
|
'use strict';
|
|
66658
67076
|
|
|
66659
67077
|
/** @type {import('.')} */
|
|
66660
67078
|
module.exports = Object;
|
|
66661
67079
|
|
|
66662
|
-
},{}],
|
|
67080
|
+
},{}],421:[function(require,module,exports){
|
|
66663
67081
|
'use strict';
|
|
66664
67082
|
|
|
66665
67083
|
var isCallable = require('is-callable');
|
|
@@ -66730,7 +67148,7 @@ module.exports = function forEach(list, iterator, thisArg) {
|
|
|
66730
67148
|
}
|
|
66731
67149
|
};
|
|
66732
67150
|
|
|
66733
|
-
},{"is-callable":
|
|
67151
|
+
},{"is-callable":437}],422:[function(require,module,exports){
|
|
66734
67152
|
'use strict';
|
|
66735
67153
|
|
|
66736
67154
|
/* eslint no-invalid-this: 1 */
|
|
@@ -66816,14 +67234,14 @@ module.exports = function bind(that) {
|
|
|
66816
67234
|
return bound;
|
|
66817
67235
|
};
|
|
66818
67236
|
|
|
66819
|
-
},{}],
|
|
67237
|
+
},{}],423:[function(require,module,exports){
|
|
66820
67238
|
'use strict';
|
|
66821
67239
|
|
|
66822
67240
|
var implementation = require('./implementation');
|
|
66823
67241
|
|
|
66824
67242
|
module.exports = Function.prototype.bind || implementation;
|
|
66825
67243
|
|
|
66826
|
-
},{"./implementation":
|
|
67244
|
+
},{"./implementation":422}],424:[function(require,module,exports){
|
|
66827
67245
|
'use strict';
|
|
66828
67246
|
|
|
66829
67247
|
var undefined;
|
|
@@ -67203,7 +67621,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
67203
67621
|
return value;
|
|
67204
67622
|
};
|
|
67205
67623
|
|
|
67206
|
-
},{"call-bind-apply-helpers/functionApply":
|
|
67624
|
+
},{"call-bind-apply-helpers/functionApply":404,"call-bind-apply-helpers/functionCall":405,"es-define-property":412,"es-errors":414,"es-errors/eval":413,"es-errors/range":415,"es-errors/ref":416,"es-errors/syntax":417,"es-errors/type":418,"es-errors/uri":419,"es-object-atoms":420,"function-bind":423,"get-proto":427,"get-proto/Object.getPrototypeOf":425,"get-proto/Reflect.getPrototypeOf":426,"gopd":429,"has-symbols":431,"hasown":434,"math-intrinsics/abs":441,"math-intrinsics/floor":442,"math-intrinsics/max":444,"math-intrinsics/min":445,"math-intrinsics/pow":446,"math-intrinsics/round":447,"math-intrinsics/sign":448}],425:[function(require,module,exports){
|
|
67207
67625
|
'use strict';
|
|
67208
67626
|
|
|
67209
67627
|
var $Object = require('es-object-atoms');
|
|
@@ -67211,13 +67629,13 @@ var $Object = require('es-object-atoms');
|
|
|
67211
67629
|
/** @type {import('./Object.getPrototypeOf')} */
|
|
67212
67630
|
module.exports = $Object.getPrototypeOf || null;
|
|
67213
67631
|
|
|
67214
|
-
},{"es-object-atoms":
|
|
67632
|
+
},{"es-object-atoms":420}],426:[function(require,module,exports){
|
|
67215
67633
|
'use strict';
|
|
67216
67634
|
|
|
67217
67635
|
/** @type {import('./Reflect.getPrototypeOf')} */
|
|
67218
67636
|
module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
|
|
67219
67637
|
|
|
67220
|
-
},{}],
|
|
67638
|
+
},{}],427:[function(require,module,exports){
|
|
67221
67639
|
'use strict';
|
|
67222
67640
|
|
|
67223
67641
|
var reflectGetProto = require('./Reflect.getPrototypeOf');
|
|
@@ -67246,13 +67664,13 @@ module.exports = reflectGetProto
|
|
|
67246
67664
|
}
|
|
67247
67665
|
: null;
|
|
67248
67666
|
|
|
67249
|
-
},{"./Object.getPrototypeOf":
|
|
67667
|
+
},{"./Object.getPrototypeOf":425,"./Reflect.getPrototypeOf":426,"dunder-proto/get":411}],428:[function(require,module,exports){
|
|
67250
67668
|
'use strict';
|
|
67251
67669
|
|
|
67252
67670
|
/** @type {import('./gOPD')} */
|
|
67253
67671
|
module.exports = Object.getOwnPropertyDescriptor;
|
|
67254
67672
|
|
|
67255
|
-
},{}],
|
|
67673
|
+
},{}],429:[function(require,module,exports){
|
|
67256
67674
|
'use strict';
|
|
67257
67675
|
|
|
67258
67676
|
/** @type {import('.')} */
|
|
@@ -67269,7 +67687,7 @@ if ($gOPD) {
|
|
|
67269
67687
|
|
|
67270
67688
|
module.exports = $gOPD;
|
|
67271
67689
|
|
|
67272
|
-
},{"./gOPD":
|
|
67690
|
+
},{"./gOPD":428}],430:[function(require,module,exports){
|
|
67273
67691
|
'use strict';
|
|
67274
67692
|
|
|
67275
67693
|
var $defineProperty = require('es-define-property');
|
|
@@ -67293,7 +67711,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
|
|
|
67293
67711
|
|
|
67294
67712
|
module.exports = hasPropertyDescriptors;
|
|
67295
67713
|
|
|
67296
|
-
},{"es-define-property":
|
|
67714
|
+
},{"es-define-property":412}],431:[function(require,module,exports){
|
|
67297
67715
|
'use strict';
|
|
67298
67716
|
|
|
67299
67717
|
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
|
@@ -67309,7 +67727,7 @@ module.exports = function hasNativeSymbols() {
|
|
|
67309
67727
|
return hasSymbolSham();
|
|
67310
67728
|
};
|
|
67311
67729
|
|
|
67312
|
-
},{"./shams":
|
|
67730
|
+
},{"./shams":432}],432:[function(require,module,exports){
|
|
67313
67731
|
'use strict';
|
|
67314
67732
|
|
|
67315
67733
|
/** @type {import('./shams')} */
|
|
@@ -67356,7 +67774,7 @@ module.exports = function hasSymbols() {
|
|
|
67356
67774
|
return true;
|
|
67357
67775
|
};
|
|
67358
67776
|
|
|
67359
|
-
},{}],
|
|
67777
|
+
},{}],433:[function(require,module,exports){
|
|
67360
67778
|
'use strict';
|
|
67361
67779
|
|
|
67362
67780
|
var hasSymbols = require('has-symbols/shams');
|
|
@@ -67366,7 +67784,7 @@ module.exports = function hasToStringTagShams() {
|
|
|
67366
67784
|
return hasSymbols() && !!Symbol.toStringTag;
|
|
67367
67785
|
};
|
|
67368
67786
|
|
|
67369
|
-
},{"has-symbols/shams":
|
|
67787
|
+
},{"has-symbols/shams":432}],434:[function(require,module,exports){
|
|
67370
67788
|
'use strict';
|
|
67371
67789
|
|
|
67372
67790
|
var call = Function.prototype.call;
|
|
@@ -67376,7 +67794,7 @@ var bind = require('function-bind');
|
|
|
67376
67794
|
/** @type {import('.')} */
|
|
67377
67795
|
module.exports = bind.call(call, $hasOwn);
|
|
67378
67796
|
|
|
67379
|
-
},{"function-bind":
|
|
67797
|
+
},{"function-bind":423}],435:[function(require,module,exports){
|
|
67380
67798
|
if (typeof Object.create === 'function') {
|
|
67381
67799
|
// implementation from standard node.js 'util' module
|
|
67382
67800
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -67405,7 +67823,7 @@ if (typeof Object.create === 'function') {
|
|
|
67405
67823
|
}
|
|
67406
67824
|
}
|
|
67407
67825
|
|
|
67408
|
-
},{}],
|
|
67826
|
+
},{}],436:[function(require,module,exports){
|
|
67409
67827
|
'use strict';
|
|
67410
67828
|
|
|
67411
67829
|
var hasToStringTag = require('has-tostringtag/shams')();
|
|
@@ -67451,7 +67869,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
|
67451
67869
|
/** @type {import('.')} */
|
|
67452
67870
|
module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
67453
67871
|
|
|
67454
|
-
},{"call-bound":
|
|
67872
|
+
},{"call-bound":409,"has-tostringtag/shams":433}],437:[function(require,module,exports){
|
|
67455
67873
|
'use strict';
|
|
67456
67874
|
|
|
67457
67875
|
var fnToStr = Function.prototype.toString;
|
|
@@ -67554,7 +67972,7 @@ module.exports = reflectApply
|
|
|
67554
67972
|
return tryFunctionObject(value);
|
|
67555
67973
|
};
|
|
67556
67974
|
|
|
67557
|
-
},{}],
|
|
67975
|
+
},{}],438:[function(require,module,exports){
|
|
67558
67976
|
'use strict';
|
|
67559
67977
|
|
|
67560
67978
|
var callBound = require('call-bound');
|
|
@@ -67603,7 +68021,7 @@ module.exports = function isGeneratorFunction(fn) {
|
|
|
67603
68021
|
return getProto(fn) === GeneratorFunction;
|
|
67604
68022
|
};
|
|
67605
68023
|
|
|
67606
|
-
},{"call-bound":
|
|
68024
|
+
},{"call-bound":409,"get-proto":427,"has-tostringtag/shams":433,"safe-regex-test":456}],439:[function(require,module,exports){
|
|
67607
68025
|
'use strict';
|
|
67608
68026
|
|
|
67609
68027
|
var callBound = require('call-bound');
|
|
@@ -67674,7 +68092,7 @@ if (hasToStringTag) {
|
|
|
67674
68092
|
|
|
67675
68093
|
module.exports = fn;
|
|
67676
68094
|
|
|
67677
|
-
},{"call-bound":
|
|
68095
|
+
},{"call-bound":409,"gopd":429,"has-tostringtag/shams":433,"hasown":434}],440:[function(require,module,exports){
|
|
67678
68096
|
'use strict';
|
|
67679
68097
|
|
|
67680
68098
|
var whichTypedArray = require('which-typed-array');
|
|
@@ -67684,19 +68102,19 @@ module.exports = function isTypedArray(value) {
|
|
|
67684
68102
|
return !!whichTypedArray(value);
|
|
67685
68103
|
};
|
|
67686
68104
|
|
|
67687
|
-
},{"which-typed-array":
|
|
68105
|
+
},{"which-typed-array":461}],441:[function(require,module,exports){
|
|
67688
68106
|
'use strict';
|
|
67689
68107
|
|
|
67690
68108
|
/** @type {import('./abs')} */
|
|
67691
68109
|
module.exports = Math.abs;
|
|
67692
68110
|
|
|
67693
|
-
},{}],
|
|
68111
|
+
},{}],442:[function(require,module,exports){
|
|
67694
68112
|
'use strict';
|
|
67695
68113
|
|
|
67696
68114
|
/** @type {import('./floor')} */
|
|
67697
68115
|
module.exports = Math.floor;
|
|
67698
68116
|
|
|
67699
|
-
},{}],
|
|
68117
|
+
},{}],443:[function(require,module,exports){
|
|
67700
68118
|
'use strict';
|
|
67701
68119
|
|
|
67702
68120
|
/** @type {import('./isNaN')} */
|
|
@@ -67704,31 +68122,31 @@ module.exports = Number.isNaN || function isNaN(a) {
|
|
|
67704
68122
|
return a !== a;
|
|
67705
68123
|
};
|
|
67706
68124
|
|
|
67707
|
-
},{}],
|
|
68125
|
+
},{}],444:[function(require,module,exports){
|
|
67708
68126
|
'use strict';
|
|
67709
68127
|
|
|
67710
68128
|
/** @type {import('./max')} */
|
|
67711
68129
|
module.exports = Math.max;
|
|
67712
68130
|
|
|
67713
|
-
},{}],
|
|
68131
|
+
},{}],445:[function(require,module,exports){
|
|
67714
68132
|
'use strict';
|
|
67715
68133
|
|
|
67716
68134
|
/** @type {import('./min')} */
|
|
67717
68135
|
module.exports = Math.min;
|
|
67718
68136
|
|
|
67719
|
-
},{}],
|
|
68137
|
+
},{}],446:[function(require,module,exports){
|
|
67720
68138
|
'use strict';
|
|
67721
68139
|
|
|
67722
68140
|
/** @type {import('./pow')} */
|
|
67723
68141
|
module.exports = Math.pow;
|
|
67724
68142
|
|
|
67725
|
-
},{}],
|
|
68143
|
+
},{}],447:[function(require,module,exports){
|
|
67726
68144
|
'use strict';
|
|
67727
68145
|
|
|
67728
68146
|
/** @type {import('./round')} */
|
|
67729
68147
|
module.exports = Math.round;
|
|
67730
68148
|
|
|
67731
|
-
},{}],
|
|
68149
|
+
},{}],448:[function(require,module,exports){
|
|
67732
68150
|
'use strict';
|
|
67733
68151
|
|
|
67734
68152
|
var $isNaN = require('./isNaN');
|
|
@@ -67741,7 +68159,7 @@ module.exports = function sign(number) {
|
|
|
67741
68159
|
return number < 0 ? -1 : +1;
|
|
67742
68160
|
};
|
|
67743
68161
|
|
|
67744
|
-
},{"./isNaN":
|
|
68162
|
+
},{"./isNaN":443}],449:[function(require,module,exports){
|
|
67745
68163
|
'use strict';
|
|
67746
68164
|
|
|
67747
68165
|
var keysShim;
|
|
@@ -67865,7 +68283,7 @@ if (!Object.keys) {
|
|
|
67865
68283
|
}
|
|
67866
68284
|
module.exports = keysShim;
|
|
67867
68285
|
|
|
67868
|
-
},{"./isArguments":
|
|
68286
|
+
},{"./isArguments":451}],450:[function(require,module,exports){
|
|
67869
68287
|
'use strict';
|
|
67870
68288
|
|
|
67871
68289
|
var slice = Array.prototype.slice;
|
|
@@ -67899,7 +68317,7 @@ keysShim.shim = function shimObjectKeys() {
|
|
|
67899
68317
|
|
|
67900
68318
|
module.exports = keysShim;
|
|
67901
68319
|
|
|
67902
|
-
},{"./implementation":
|
|
68320
|
+
},{"./implementation":449,"./isArguments":451}],451:[function(require,module,exports){
|
|
67903
68321
|
'use strict';
|
|
67904
68322
|
|
|
67905
68323
|
var toStr = Object.prototype.toString;
|
|
@@ -67918,7 +68336,7 @@ module.exports = function isArguments(value) {
|
|
|
67918
68336
|
return isArgs;
|
|
67919
68337
|
};
|
|
67920
68338
|
|
|
67921
|
-
},{}],
|
|
68339
|
+
},{}],452:[function(require,module,exports){
|
|
67922
68340
|
'use strict';
|
|
67923
68341
|
|
|
67924
68342
|
// modified from https://github.com/es-shims/es6-shim
|
|
@@ -67966,7 +68384,7 @@ module.exports = function assign(target, source1) {
|
|
|
67966
68384
|
return to; // step 4
|
|
67967
68385
|
};
|
|
67968
68386
|
|
|
67969
|
-
},{"call-bound":
|
|
68387
|
+
},{"call-bound":409,"es-object-atoms":420,"has-symbols/shams":432,"object-keys":450}],453:[function(require,module,exports){
|
|
67970
68388
|
'use strict';
|
|
67971
68389
|
|
|
67972
68390
|
var implementation = require('./implementation');
|
|
@@ -68023,7 +68441,7 @@ module.exports = function getPolyfill() {
|
|
|
68023
68441
|
return Object.assign;
|
|
68024
68442
|
};
|
|
68025
68443
|
|
|
68026
|
-
},{"./implementation":
|
|
68444
|
+
},{"./implementation":452}],454:[function(require,module,exports){
|
|
68027
68445
|
'use strict';
|
|
68028
68446
|
|
|
68029
68447
|
/** @type {import('.')} */
|
|
@@ -68042,7 +68460,7 @@ module.exports = [
|
|
|
68042
68460
|
'BigUint64Array'
|
|
68043
68461
|
];
|
|
68044
68462
|
|
|
68045
|
-
},{}],
|
|
68463
|
+
},{}],455:[function(require,module,exports){
|
|
68046
68464
|
// shim for using process in browser
|
|
68047
68465
|
var process = module.exports = {};
|
|
68048
68466
|
|
|
@@ -68228,7 +68646,7 @@ process.chdir = function (dir) {
|
|
|
68228
68646
|
};
|
|
68229
68647
|
process.umask = function() { return 0; };
|
|
68230
68648
|
|
|
68231
|
-
},{}],
|
|
68649
|
+
},{}],456:[function(require,module,exports){
|
|
68232
68650
|
'use strict';
|
|
68233
68651
|
|
|
68234
68652
|
var callBound = require('call-bound');
|
|
@@ -68247,7 +68665,7 @@ module.exports = function regexTester(regex) {
|
|
|
68247
68665
|
};
|
|
68248
68666
|
};
|
|
68249
68667
|
|
|
68250
|
-
},{"call-bound":
|
|
68668
|
+
},{"call-bound":409,"es-errors/type":418,"is-regex":439}],457:[function(require,module,exports){
|
|
68251
68669
|
'use strict';
|
|
68252
68670
|
|
|
68253
68671
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -68291,9 +68709,9 @@ module.exports = function setFunctionLength(fn, length) {
|
|
|
68291
68709
|
return fn;
|
|
68292
68710
|
};
|
|
68293
68711
|
|
|
68294
|
-
},{"define-data-property":
|
|
68295
|
-
arguments[4][
|
|
68296
|
-
},{"dup":
|
|
68712
|
+
},{"define-data-property":410,"es-errors/type":418,"get-intrinsic":424,"gopd":429,"has-property-descriptors":430}],458:[function(require,module,exports){
|
|
68713
|
+
arguments[4][398][0].apply(exports,arguments)
|
|
68714
|
+
},{"dup":398}],459:[function(require,module,exports){
|
|
68297
68715
|
// Currently in sync with Node.js lib/internal/util/types.js
|
|
68298
68716
|
// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
|
|
68299
68717
|
|
|
@@ -68629,7 +69047,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
|
|
|
68629
69047
|
});
|
|
68630
69048
|
});
|
|
68631
69049
|
|
|
68632
|
-
},{"is-arguments":
|
|
69050
|
+
},{"is-arguments":436,"is-generator-function":438,"is-typed-array":440,"which-typed-array":461}],460:[function(require,module,exports){
|
|
68633
69051
|
(function (process){(function (){
|
|
68634
69052
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
68635
69053
|
//
|
|
@@ -69348,7 +69766,7 @@ function callbackify(original) {
|
|
|
69348
69766
|
exports.callbackify = callbackify;
|
|
69349
69767
|
|
|
69350
69768
|
}).call(this)}).call(this,require('_process'))
|
|
69351
|
-
},{"./support/isBuffer":
|
|
69769
|
+
},{"./support/isBuffer":458,"./support/types":459,"_process":455,"inherits":435}],461:[function(require,module,exports){
|
|
69352
69770
|
(function (global){(function (){
|
|
69353
69771
|
'use strict';
|
|
69354
69772
|
|
|
@@ -69469,5 +69887,5 @@ module.exports = function whichTypedArray(value) {
|
|
|
69469
69887
|
};
|
|
69470
69888
|
|
|
69471
69889
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
69472
|
-
},{"available-typed-arrays":
|
|
69890
|
+
},{"available-typed-arrays":400,"call-bind":408,"call-bound":409,"for-each":421,"get-proto":427,"gopd":429,"has-tostringtag/shams":433}]},{},[134])(134)
|
|
69473
69891
|
});
|