@designliquido/delegua 0.54.4 → 0.54.5
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/README.md +6 -0
- package/avaliador-sintatico/avaliador-sintatico.js +3 -3
- package/avaliador-sintatico/avaliador-sintatico.js.map +1 -1
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.d.ts +6 -0
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.d.ts.map +1 -1
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.js +66 -14
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.js.map +1 -1
- package/bin/package.json +1 -1
- package/construtos/index.d.ts +1 -0
- package/construtos/index.d.ts.map +1 -1
- package/construtos/index.js +1 -0
- package/construtos/index.js.map +1 -1
- package/construtos/lista-compreensao.d.ts +16 -0
- package/construtos/lista-compreensao.d.ts.map +1 -0
- package/construtos/lista-compreensao.js +21 -0
- package/construtos/lista-compreensao.js.map +1 -0
- package/formatadores/formatador-pitugues.d.ts.map +1 -1
- package/formatadores/formatador-pitugues.js.map +1 -1
- package/interfaces/visitante-comum-interface.d.ts.map +1 -1
- package/interfaces/visitante-delegua-interface.d.ts +2 -1
- package/interfaces/visitante-delegua-interface.d.ts.map +1 -1
- package/interpretador/interpretador-base.d.ts +2 -1
- package/interpretador/interpretador-base.d.ts.map +1 -1
- package/interpretador/interpretador-base.js +49 -0
- package/interpretador/interpretador-base.js.map +1 -1
- package/interpretador/interpretador.d.ts +2 -1
- package/interpretador/interpretador.d.ts.map +1 -1
- package/interpretador/interpretador.js +10 -0
- package/interpretador/interpretador.js.map +1 -1
- package/lexador/dialetos/lexador-pitugues.d.ts +1 -0
- package/lexador/dialetos/lexador-pitugues.d.ts.map +1 -1
- package/lexador/dialetos/lexador-pitugues.js +12 -1
- package/lexador/dialetos/lexador-pitugues.js.map +1 -1
- package/lexador/dialetos/palavras-reservadas/pitugues.d.ts +1 -0
- package/lexador/dialetos/palavras-reservadas/pitugues.d.ts.map +1 -1
- package/lexador/dialetos/palavras-reservadas/pitugues.js +1 -0
- package/lexador/dialetos/palavras-reservadas/pitugues.js.map +1 -1
- package/lexador/palavras-reservadas.d.ts +1 -0
- package/lexador/palavras-reservadas.d.ts.map +1 -1
- package/lexador/palavras-reservadas.js +1 -0
- package/lexador/palavras-reservadas.js.map +1 -1
- package/package.json +1 -1
- package/quebras/index.d.ts.map +1 -1
- package/quebras/index.js.map +1 -1
- package/tipos-de-simbolos/delegua.d.ts +1 -0
- package/tipos-de-simbolos/delegua.d.ts.map +1 -1
- package/tipos-de-simbolos/delegua.js +1 -0
- package/tipos-de-simbolos/delegua.js.map +1 -1
- package/tipos-de-simbolos/pitugues.d.ts +2 -0
- package/tipos-de-simbolos/pitugues.d.ts.map +1 -1
- package/tipos-de-simbolos/pitugues.js +2 -0
- package/tipos-de-simbolos/pitugues.js.map +1 -1
- package/umd/delegua.js +549 -399
package/umd/delegua.js
CHANGED
|
@@ -238,7 +238,7 @@ class AvaliadorSintaticoBase {
|
|
|
238
238
|
}
|
|
239
239
|
exports.AvaliadorSintaticoBase = AvaliadorSintaticoBase;
|
|
240
240
|
|
|
241
|
-
},{"../construtos":49,"../declaracoes":
|
|
241
|
+
},{"../construtos":49,"../declaracoes":94,"../tipos-de-simbolos/comum":182,"./erro-avaliador-sintatico":10}],2:[function(require,module,exports){
|
|
242
242
|
"use strict";
|
|
243
243
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
244
244
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -472,17 +472,17 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
472
472
|
}
|
|
473
473
|
}
|
|
474
474
|
// Remover comentários, verificar se vírgulas fazem sentido.
|
|
475
|
-
const valoresSemComentarios = valores.filter((v) => v.constructor
|
|
475
|
+
const valoresSemComentarios = valores.filter((v) => v.constructor !== construtos_1.ComentarioComoConstruto);
|
|
476
476
|
let elementoSeparador = false; // O primeiro elemento não pode ser separador.
|
|
477
477
|
for (const elemento of valoresSemComentarios) {
|
|
478
478
|
if (elementoSeparador) {
|
|
479
|
-
if (elemento.constructor
|
|
479
|
+
if (elemento.constructor !== construtos_1.Separador) {
|
|
480
480
|
throw this.erro(elemento.simbolo, 'Não podem haver duas vírgulas seguidas em uma definição de vetor, ou definição de vetor começando em vírgula.');
|
|
481
481
|
}
|
|
482
482
|
elementoSeparador = false;
|
|
483
483
|
}
|
|
484
484
|
else {
|
|
485
|
-
if (elemento.constructor
|
|
485
|
+
if (elemento.constructor === construtos_1.Separador) {
|
|
486
486
|
throw this.erro(elemento.simbolo, 'Não podem haver duas vírgulas seguidas em uma definição de vetor, ou definição de vetor começando em vírgula.');
|
|
487
487
|
}
|
|
488
488
|
elementoSeparador = true;
|
|
@@ -2093,7 +2093,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
2093
2093
|
}
|
|
2094
2094
|
exports.AvaliadorSintatico = AvaliadorSintatico;
|
|
2095
2095
|
|
|
2096
|
-
},{"../bibliotecas/primitivas-dicionario":20,"../bibliotecas/primitivas-numero":21,"../bibliotecas/primitivas-texto":22,"../bibliotecas/primitivas-vetor":23,"../construtos":49,"../construtos/tuplas":
|
|
2096
|
+
},{"../bibliotecas/primitivas-dicionario":20,"../bibliotecas/primitivas-numero":21,"../bibliotecas/primitivas-texto":22,"../bibliotecas/primitivas-vetor":23,"../construtos":49,"../construtos/tuplas":65,"../declaracoes":94,"../inferenciador":113,"../informacao-elemento-sintatico":114,"../tipos-de-dados/delegua":178,"../tipos-de-simbolos/delegua":183,"./avaliador-sintatico-base":1,"./comum":3,"./elemento-montao-tipos":9,"./erro-avaliador-sintatico":10,"./informacao-escopo":12,"./montao-tipos":15,"./pilha-escopos":16,"browser-process-hrtime":363}],3:[function(require,module,exports){
|
|
2097
2097
|
"use strict";
|
|
2098
2098
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2099
2099
|
exports.buscarRetornos = buscarRetornos;
|
|
@@ -2193,7 +2193,7 @@ function registrarPrimitiva(primitivasConhecidas, tipo, catalogoPrimitivas) {
|
|
|
2193
2193
|
}
|
|
2194
2194
|
}
|
|
2195
2195
|
|
|
2196
|
-
},{"../informacao-elemento-sintatico":
|
|
2196
|
+
},{"../informacao-elemento-sintatico":114}],4:[function(require,module,exports){
|
|
2197
2197
|
"use strict";
|
|
2198
2198
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
2199
2199
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -2848,7 +2848,7 @@ class AvaliadorSintaticoEguaClassico {
|
|
|
2848
2848
|
}
|
|
2849
2849
|
exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
|
|
2850
2850
|
|
|
2851
|
-
},{"../../construtos":49,"../../declaracoes":
|
|
2851
|
+
},{"../../construtos":49,"../../declaracoes":94,"../../tipos-de-simbolos/egua-classico":184,"../erro-avaliador-sintatico":10}],5:[function(require,module,exports){
|
|
2852
2852
|
"use strict";
|
|
2853
2853
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
2854
2854
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -2871,6 +2871,7 @@ const primitivas_dicionario_1 = __importDefault(require("../../bibliotecas/primi
|
|
|
2871
2871
|
const primitivas_numero_1 = __importDefault(require("../../bibliotecas/primitivas-numero"));
|
|
2872
2872
|
const primitivas_texto_1 = __importDefault(require("../../bibliotecas/primitivas-texto"));
|
|
2873
2873
|
const primitivas_vetor_1 = __importDefault(require("../../bibliotecas/primitivas-vetor"));
|
|
2874
|
+
const lista_compreensao_1 = require("../../construtos/lista-compreensao");
|
|
2874
2875
|
/**
|
|
2875
2876
|
* O avaliador sintático (_Parser_) é responsável por transformar os símbolos do Lexador em estruturas de alto nível.
|
|
2876
2877
|
* Essas estruturas de alto nível são as partes que executam lógica de programação de fato.
|
|
@@ -3075,20 +3076,6 @@ class AvaliadorSintaticoPitugues {
|
|
|
3075
3076
|
const simboloAtual = this.simbolos[this.atual];
|
|
3076
3077
|
let valores = [];
|
|
3077
3078
|
switch (simboloAtual.tipo) {
|
|
3078
|
-
case pitugues_2.default.COLCHETE_ESQUERDO:
|
|
3079
|
-
this.avancarEDevolverAnterior();
|
|
3080
|
-
if (this.verificarSeSimboloAtualEIgualA(pitugues_2.default.COLCHETE_DIREITO)) {
|
|
3081
|
-
return new construtos_1.Vetor(this.hashArquivo, simboloAtual.linha, [], 0, 'qualquer[]');
|
|
3082
|
-
}
|
|
3083
|
-
while (!this.verificarSeSimboloAtualEIgualA(pitugues_2.default.COLCHETE_DIREITO)) {
|
|
3084
|
-
const valor = this.atribuir();
|
|
3085
|
-
valores.push(valor);
|
|
3086
|
-
if (this.simbolos[this.atual].tipo !== pitugues_2.default.COLCHETE_DIREITO) {
|
|
3087
|
-
this.consumir(pitugues_2.default.VIRGULA, 'Esperado vírgula antes da próxima expressão.');
|
|
3088
|
-
}
|
|
3089
|
-
}
|
|
3090
|
-
const tipoVetor = (0, inferenciador_1.inferirTipoVariavel)(valores);
|
|
3091
|
-
return new construtos_1.Vetor(this.hashArquivo, simboloAtual.linha, valores, valores.length, tipoVetor);
|
|
3092
3079
|
case pitugues_2.default.CHAVE_ESQUERDA:
|
|
3093
3080
|
this.avancarEDevolverAnterior();
|
|
3094
3081
|
const chaves = [];
|
|
@@ -3106,6 +3093,26 @@ class AvaliadorSintaticoPitugues {
|
|
|
3106
3093
|
}
|
|
3107
3094
|
}
|
|
3108
3095
|
return new construtos_1.Dicionario(this.hashArquivo, simboloAtual.linha, chaves, valores);
|
|
3096
|
+
case pitugues_2.default.COLCHETE_ESQUERDO:
|
|
3097
|
+
this.avancarEDevolverAnterior();
|
|
3098
|
+
if (this.verificarSeSimboloAtualEIgualA(pitugues_2.default.COLCHETE_DIREITO)) {
|
|
3099
|
+
return new construtos_1.Vetor(this.hashArquivo, simboloAtual.linha, [], 0, 'qualquer[]');
|
|
3100
|
+
}
|
|
3101
|
+
if (this.simbolos[this.atual].tipo == 'IDENTIFICADOR' && !this.verificarTipoProximoSimbolo(pitugues_2.default.VIRGULA)) {
|
|
3102
|
+
return this.resolverListaDeCompreensao();
|
|
3103
|
+
}
|
|
3104
|
+
while (!this.verificarSeSimboloAtualEIgualA(pitugues_2.default.COLCHETE_DIREITO)) {
|
|
3105
|
+
const valor = this.atribuir();
|
|
3106
|
+
valores.push(valor);
|
|
3107
|
+
if (this.simbolos[this.atual].tipo !== pitugues_2.default.COLCHETE_DIREITO) {
|
|
3108
|
+
this.consumir(pitugues_2.default.VIRGULA, 'Esperado vírgula antes da próxima expressão.');
|
|
3109
|
+
}
|
|
3110
|
+
}
|
|
3111
|
+
const tipoVetor = (0, inferenciador_1.inferirTipoVariavel)(valores);
|
|
3112
|
+
return new construtos_1.Vetor(this.hashArquivo, simboloAtual.linha, valores, valores.length, tipoVetor);
|
|
3113
|
+
case pitugues_2.default.COMENTARIO:
|
|
3114
|
+
const simboloComentario = this.avancarEDevolverAnterior();
|
|
3115
|
+
return new construtos_1.ComentarioComoConstruto(simboloComentario);
|
|
3109
3116
|
case pitugues_2.default.FALSO:
|
|
3110
3117
|
case pitugues_2.default.VERDADEIRO:
|
|
3111
3118
|
const simboloLogico = this.avancarEDevolverAnterior();
|
|
@@ -3601,6 +3608,7 @@ class AvaliadorSintaticoPitugues {
|
|
|
3601
3608
|
case pitugues_2.default.PARA:
|
|
3602
3609
|
this.avancarEDevolverAnterior();
|
|
3603
3610
|
return this.declaracaoPara();
|
|
3611
|
+
case pitugues_2.default.QUEBRAR:
|
|
3604
3612
|
case pitugues_2.default.SUSTAR:
|
|
3605
3613
|
this.avancarEDevolverAnterior();
|
|
3606
3614
|
return this.declaracaoSustar();
|
|
@@ -3658,6 +3666,50 @@ class AvaliadorSintaticoPitugues {
|
|
|
3658
3666
|
} while (this.verificarSeSimboloAtualEIgualA(pitugues_2.default.VIRGULA));
|
|
3659
3667
|
return parametros;
|
|
3660
3668
|
}
|
|
3669
|
+
/**
|
|
3670
|
+
* Resolve uma lista de compreensão.
|
|
3671
|
+
* @returns {ListaCompreensao} A lista de compreensão resolvida.
|
|
3672
|
+
*/
|
|
3673
|
+
resolverListaDeCompreensao() {
|
|
3674
|
+
// TODO: Se expressão não começar com um identificador, por exemplo `3 * x`, como faríamos para
|
|
3675
|
+
// aceitar o `x` na avaliação da expressão?
|
|
3676
|
+
if (this.simbolos[this.atual].tipo === pitugues_2.default.IDENTIFICADOR) {
|
|
3677
|
+
// Antes de avaliar a condição, precisamos registrar a variável de iteração.
|
|
3678
|
+
const simboloVariavelIteracao = this.simbolos[this.atual];
|
|
3679
|
+
this.pilhaEscopos.definirInformacoesVariavel(simboloVariavelIteracao.lexema, new informacao_elemento_sintatico_1.InformacaoElementoSintatico(simboloVariavelIteracao.lexema, 'qualquer') // TODO: Talvez um dia inferir o tipo aqui.
|
|
3680
|
+
);
|
|
3681
|
+
}
|
|
3682
|
+
const retornoExpressao = this.expressao();
|
|
3683
|
+
this.consumir(pitugues_2.default.PARA, "Esperado instrução 'para' após identificado.");
|
|
3684
|
+
this.consumir(pitugues_2.default.CADA, "Esperado instrução 'cada' após 'para'.");
|
|
3685
|
+
const simboloVariavelIteracao = this.consumir(pitugues_2.default.IDENTIFICADOR, "Esperado identificador de variável após 'para cada'.");
|
|
3686
|
+
// TODO: Manter essa validação aqui? Se sim, como resolver a expressão?
|
|
3687
|
+
/* if (identificador.lexema != simboloVariavelIteracao.lexema) {
|
|
3688
|
+
throw this.erro(
|
|
3689
|
+
this.simbolos[this.atual],
|
|
3690
|
+
"Identificadores de variáveis não correspondentes."
|
|
3691
|
+
)
|
|
3692
|
+
} */
|
|
3693
|
+
if (!this.verificarSeSimboloAtualEIgualA(pitugues_2.default.DE, pitugues_2.default.EM)) {
|
|
3694
|
+
throw this.erro(this.simbolos[this.atual], "Esperado palavras reservadas 'em' ou 'de' após variável de iteração em instrução em lista de compreensão.");
|
|
3695
|
+
}
|
|
3696
|
+
const localizacaoVetor = this.simboloAnterior();
|
|
3697
|
+
const vetor = this.expressao();
|
|
3698
|
+
this.consumir(pitugues_2.default.SE, "Esperado condição 'se' após vetor.");
|
|
3699
|
+
const condicao = this.expressao();
|
|
3700
|
+
this.consumir(pitugues_2.default.COLCHETE_DIREITO, 'Espero fechamento de colchetes após condição.');
|
|
3701
|
+
const tipoVetor = vetor.tipo;
|
|
3702
|
+
if (!tipoVetor.endsWith('[]') && !['qualquer', 'vetor'].includes(tipoVetor)) {
|
|
3703
|
+
throw this.erro(localizacaoVetor, `Variável ou constante em 'para cada' não é iterável. Tipo resolvido: ${tipoVetor}.`);
|
|
3704
|
+
}
|
|
3705
|
+
const variavelIteracao = new construtos_1.Variavel(this.hashArquivo, simboloVariavelIteracao);
|
|
3706
|
+
return new lista_compreensao_1.ListaCompreensao(Number(this.simbolos[this.atual]), this.hashArquivo, retornoExpressao, vetor, new construtos_1.ParaCadaComoConstruto(retornoExpressao.hashArquivo, retornoExpressao.linha, variavelIteracao, vetor, new declaracoes_1.Bloco(retornoExpressao.hashArquivo, retornoExpressao.linha, [
|
|
3707
|
+
new declaracoes_1.Se(condicao, new declaracoes_1.Bloco(retornoExpressao.hashArquivo, retornoExpressao.linha, [
|
|
3708
|
+
new declaracoes_1.Retorna(simboloVariavelIteracao, retornoExpressao)
|
|
3709
|
+
]), [], null)
|
|
3710
|
+
])), 'qualquer[]' // TODO: Talvez um dia inferir o tipo aqui.
|
|
3711
|
+
);
|
|
3712
|
+
}
|
|
3661
3713
|
verificarDefinicaoTipoAtual() {
|
|
3662
3714
|
const tipos = [...Object.values(pitugues_1.default)];
|
|
3663
3715
|
if (this.simbolos[this.atual].lexema in this.tiposDefinidosEmCodigo) {
|
|
@@ -3878,7 +3930,7 @@ class AvaliadorSintaticoPitugues {
|
|
|
3878
3930
|
}
|
|
3879
3931
|
exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
|
|
3880
3932
|
|
|
3881
|
-
},{"../../bibliotecas/primitivas-dicionario":20,"../../bibliotecas/primitivas-numero":21,"../../bibliotecas/primitivas-texto":22,"../../bibliotecas/primitivas-vetor":23,"../../construtos":49,"../../declaracoes":
|
|
3933
|
+
},{"../../bibliotecas/primitivas-dicionario":20,"../../bibliotecas/primitivas-numero":21,"../../bibliotecas/primitivas-texto":22,"../../bibliotecas/primitivas-vetor":23,"../../construtos":49,"../../construtos/lista-compreensao":52,"../../declaracoes":94,"../../inferenciador":113,"../../informacao-elemento-sintatico":114,"../../lexador":170,"../../tipos-de-dados/dialetos/pitugues":179,"../../tipos-de-simbolos/pitugues":187,"../comum":3,"../erro-avaliador-sintatico":10,"../informacao-escopo":12,"../pilha-escopos":16,"browser-process-hrtime":363}],6:[function(require,module,exports){
|
|
3882
3934
|
"use strict";
|
|
3883
3935
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3884
3936
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -4052,7 +4104,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
|
|
|
4052
4104
|
}
|
|
4053
4105
|
exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
|
|
4054
4106
|
|
|
4055
|
-
},{"../../construtos":49,"../../declaracoes":
|
|
4107
|
+
},{"../../construtos":49,"../../declaracoes":94,"../../tipos-de-simbolos/portugol-ipt":188,"../avaliador-sintatico-base":1}],7:[function(require,module,exports){
|
|
4056
4108
|
"use strict";
|
|
4057
4109
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4058
4110
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -5040,7 +5092,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
|
|
|
5040
5092
|
}
|
|
5041
5093
|
exports.AvaliadorSintaticoTenda = AvaliadorSintaticoTenda;
|
|
5042
5094
|
|
|
5043
|
-
},{"../../bibliotecas/primitivas-dicionario":20,"../../bibliotecas/primitivas-numero":21,"../../bibliotecas/primitivas-texto":22,"../../bibliotecas/primitivas-vetor":23,"../../construtos":49,"../../construtos/tuplas":
|
|
5095
|
+
},{"../../bibliotecas/primitivas-dicionario":20,"../../bibliotecas/primitivas-numero":21,"../../bibliotecas/primitivas-texto":22,"../../bibliotecas/primitivas-vetor":23,"../../construtos":49,"../../construtos/tuplas":65,"../../declaracoes":94,"../../inferenciador":113,"../../informacao-elemento-sintatico":114,"../../lexador/simbolo":176,"../../tipos-de-dados/delegua":178,"../../tipos-de-simbolos/tenda":189,"../avaliador-sintatico-base":1,"./../erro-avaliador-sintatico":10,"./../informacao-escopo":12,"./../pilha-escopos":16,"browser-process-hrtime":363}],8:[function(require,module,exports){
|
|
5044
5096
|
"use strict";
|
|
5045
5097
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5046
5098
|
if (k2 === undefined) k2 = k;
|
|
@@ -5245,7 +5297,7 @@ class MicroAvaliadorSintaticoBase {
|
|
|
5245
5297
|
}
|
|
5246
5298
|
exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
|
|
5247
5299
|
|
|
5248
|
-
},{"../construtos":49,"../tipos-de-simbolos/comum":
|
|
5300
|
+
},{"../construtos":49,"../tipos-de-simbolos/comum":182,"./erro-avaliador-sintatico":10}],14:[function(require,module,exports){
|
|
5249
5301
|
"use strict";
|
|
5250
5302
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
5251
5303
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -5447,7 +5499,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
|
|
|
5447
5499
|
}
|
|
5448
5500
|
exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
|
|
5449
5501
|
|
|
5450
|
-
},{"../construtos":49,"../tipos-de-simbolos/microgramaticas/delegua":
|
|
5502
|
+
},{"../construtos":49,"../tipos-de-simbolos/microgramaticas/delegua":186,"./micro-avaliador-sintatico-base":13}],15:[function(require,module,exports){
|
|
5451
5503
|
"use strict";
|
|
5452
5504
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5453
5505
|
exports.MontaoTipos = void 0;
|
|
@@ -5498,7 +5550,7 @@ class MontaoTipos {
|
|
|
5498
5550
|
}
|
|
5499
5551
|
exports.MontaoTipos = MontaoTipos;
|
|
5500
5552
|
|
|
5501
|
-
},{"../geracao-identificadores":
|
|
5553
|
+
},{"../geracao-identificadores":111,"./erro-avaliador-sintatico":10}],16:[function(require,module,exports){
|
|
5502
5554
|
"use strict";
|
|
5503
5555
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5504
5556
|
exports.PilhaEscopos = void 0;
|
|
@@ -6278,7 +6330,7 @@ async function tupla(interpretador, vetor) {
|
|
|
6278
6330
|
}
|
|
6279
6331
|
}
|
|
6280
6332
|
|
|
6281
|
-
},{"../construtos":49,"../excecoes":
|
|
6333
|
+
},{"../construtos":49,"../excecoes":107,"../interpretador/estruturas":146,"../interpretador/estruturas/descritor-tipo-classe":144,"../interpretador/estruturas/funcao-padrao":145,"../interpretador/estruturas/objeto-delegua-classe":149,"../quebras":177}],20:[function(require,module,exports){
|
|
6282
6334
|
"use strict";
|
|
6283
6335
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6284
6336
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -6335,7 +6387,7 @@ exports.default = {
|
|
|
6335
6387
|
},
|
|
6336
6388
|
};
|
|
6337
6389
|
|
|
6338
|
-
},{"../informacao-elemento-sintatico":
|
|
6390
|
+
},{"../informacao-elemento-sintatico":114}],21:[function(require,module,exports){
|
|
6339
6391
|
"use strict";
|
|
6340
6392
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6341
6393
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -6420,7 +6472,7 @@ exports.default = {
|
|
|
6420
6472
|
},
|
|
6421
6473
|
};
|
|
6422
6474
|
|
|
6423
|
-
},{"../informacao-elemento-sintatico":
|
|
6475
|
+
},{"../informacao-elemento-sintatico":114}],22:[function(require,module,exports){
|
|
6424
6476
|
"use strict";
|
|
6425
6477
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6426
6478
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -6622,7 +6674,7 @@ exports.default = {
|
|
|
6622
6674
|
},
|
|
6623
6675
|
};
|
|
6624
6676
|
|
|
6625
|
-
},{"../informacao-elemento-sintatico":
|
|
6677
|
+
},{"../informacao-elemento-sintatico":114}],23:[function(require,module,exports){
|
|
6626
6678
|
"use strict";
|
|
6627
6679
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6628
6680
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -6969,7 +7021,7 @@ exports.default = {
|
|
|
6969
7021
|
},
|
|
6970
7022
|
};
|
|
6971
7023
|
|
|
6972
|
-
},{"../informacao-elemento-sintatico":
|
|
7024
|
+
},{"../informacao-elemento-sintatico":114}],24:[function(require,module,exports){
|
|
6973
7025
|
"use strict";
|
|
6974
7026
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6975
7027
|
exports.AcessoElementoMatriz = void 0;
|
|
@@ -7319,7 +7371,7 @@ class Chamada {
|
|
|
7319
7371
|
}
|
|
7320
7372
|
exports.Chamada = Chamada;
|
|
7321
7373
|
|
|
7322
|
-
},{"../geracao-identificadores":
|
|
7374
|
+
},{"../geracao-identificadores":111}],36:[function(require,module,exports){
|
|
7323
7375
|
"use strict";
|
|
7324
7376
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7325
7377
|
exports.ComentarioComoConstruto = void 0;
|
|
@@ -7642,6 +7694,7 @@ __exportStar(require("./formatacao-escrita"), exports);
|
|
|
7642
7694
|
__exportStar(require("./funcao"), exports);
|
|
7643
7695
|
__exportStar(require("./isto"), exports);
|
|
7644
7696
|
__exportStar(require("./leia"), exports);
|
|
7697
|
+
__exportStar(require("./lista-compreensao"), exports);
|
|
7645
7698
|
__exportStar(require("./literal"), exports);
|
|
7646
7699
|
__exportStar(require("./logico"), exports);
|
|
7647
7700
|
__exportStar(require("./para-cada-como-construto"), exports);
|
|
@@ -7657,7 +7710,7 @@ __exportStar(require("./unario"), exports);
|
|
|
7657
7710
|
__exportStar(require("./variavel"), exports);
|
|
7658
7711
|
__exportStar(require("./vetor"), exports);
|
|
7659
7712
|
|
|
7660
|
-
},{"./acesso-elemento-matriz":24,"./acesso-indice-variavel":25,"./acesso-metodo":27,"./acesso-metodo-ou-propriedade":26,"./acesso-propriedade":28,"./agrupamento":29,"./argumento-referencia-funcao":30,"./atribuicao-por-indice":31,"./atribuicao-por-indices-matriz":32,"./atribuir":33,"./binario":34,"./chamada":35,"./comentario-como-construto":36,"./componente-linguagem":37,"./constante":38,"./construto":39,"./decorador":40,"./definir-valor":41,"./dicionario":42,"./enquanto-como-construto":43,"./expressao-regular":44,"./fazer-como-construto":45,"./fim-para":46,"./formatacao-escrita":47,"./funcao":48,"./isto":50,"./leia":51,"./
|
|
7713
|
+
},{"./acesso-elemento-matriz":24,"./acesso-indice-variavel":25,"./acesso-metodo":27,"./acesso-metodo-ou-propriedade":26,"./acesso-propriedade":28,"./agrupamento":29,"./argumento-referencia-funcao":30,"./atribuicao-por-indice":31,"./atribuicao-por-indices-matriz":32,"./atribuir":33,"./binario":34,"./chamada":35,"./comentario-como-construto":36,"./componente-linguagem":37,"./constante":38,"./construto":39,"./decorador":40,"./definir-valor":41,"./dicionario":42,"./enquanto-como-construto":43,"./expressao-regular":44,"./fazer-como-construto":45,"./fim-para":46,"./formatacao-escrita":47,"./funcao":48,"./isto":50,"./leia":51,"./lista-compreensao":52,"./literal":53,"./logico":54,"./para-cada-como-construto":55,"./para-como-construto":56,"./referencia-biblioteca-global":57,"./referencia-funcao":58,"./separador":59,"./super":60,"./tipo-de":61,"./tupla":62,"./tuplas":65,"./unario":73,"./variavel":74,"./vetor":75}],50:[function(require,module,exports){
|
|
7661
7714
|
"use strict";
|
|
7662
7715
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7663
7716
|
exports.Isto = void 0;
|
|
@@ -7702,7 +7755,29 @@ class Leia {
|
|
|
7702
7755
|
}
|
|
7703
7756
|
exports.Leia = Leia;
|
|
7704
7757
|
|
|
7705
|
-
},{"../geracao-identificadores":
|
|
7758
|
+
},{"../geracao-identificadores":111}],52:[function(require,module,exports){
|
|
7759
|
+
"use strict";
|
|
7760
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7761
|
+
exports.ListaCompreensao = void 0;
|
|
7762
|
+
class ListaCompreensao {
|
|
7763
|
+
constructor(hashArquivo, linha, expressaoRetorno, referenciaVariavelIteracao, paraCada, tipo) {
|
|
7764
|
+
this.linha = linha;
|
|
7765
|
+
this.hashArquivo = hashArquivo;
|
|
7766
|
+
this.expressaoRetorno = expressaoRetorno;
|
|
7767
|
+
this.referenciaVariavelIteracao = referenciaVariavelIteracao;
|
|
7768
|
+
this.paraCada = paraCada;
|
|
7769
|
+
this.tipo = tipo;
|
|
7770
|
+
}
|
|
7771
|
+
async aceitar(visitante) {
|
|
7772
|
+
return await visitante.visitarExpressaoListaCompreensao(this);
|
|
7773
|
+
}
|
|
7774
|
+
paraTexto() {
|
|
7775
|
+
return `<lista-compreensão />`;
|
|
7776
|
+
}
|
|
7777
|
+
}
|
|
7778
|
+
exports.ListaCompreensao = ListaCompreensao;
|
|
7779
|
+
|
|
7780
|
+
},{}],53:[function(require,module,exports){
|
|
7706
7781
|
"use strict";
|
|
7707
7782
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7708
7783
|
exports.Literal = void 0;
|
|
@@ -7722,7 +7797,7 @@ class Literal {
|
|
|
7722
7797
|
}
|
|
7723
7798
|
exports.Literal = Literal;
|
|
7724
7799
|
|
|
7725
|
-
},{}],
|
|
7800
|
+
},{}],54:[function(require,module,exports){
|
|
7726
7801
|
"use strict";
|
|
7727
7802
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7728
7803
|
exports.Logico = void 0;
|
|
@@ -7745,7 +7820,7 @@ class Logico {
|
|
|
7745
7820
|
}
|
|
7746
7821
|
exports.Logico = Logico;
|
|
7747
7822
|
|
|
7748
|
-
},{}],
|
|
7823
|
+
},{}],55:[function(require,module,exports){
|
|
7749
7824
|
"use strict";
|
|
7750
7825
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7751
7826
|
exports.ParaCadaComoConstruto = void 0;
|
|
@@ -7767,7 +7842,7 @@ class ParaCadaComoConstruto {
|
|
|
7767
7842
|
}
|
|
7768
7843
|
exports.ParaCadaComoConstruto = ParaCadaComoConstruto;
|
|
7769
7844
|
|
|
7770
|
-
},{}],
|
|
7845
|
+
},{}],56:[function(require,module,exports){
|
|
7771
7846
|
"use strict";
|
|
7772
7847
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7773
7848
|
exports.ParaComoConstruto = void 0;
|
|
@@ -7792,7 +7867,7 @@ class ParaComoConstruto {
|
|
|
7792
7867
|
}
|
|
7793
7868
|
exports.ParaComoConstruto = ParaComoConstruto;
|
|
7794
7869
|
|
|
7795
|
-
},{}],
|
|
7870
|
+
},{}],57:[function(require,module,exports){
|
|
7796
7871
|
"use strict";
|
|
7797
7872
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7798
7873
|
exports.ReferenciaBibliotecaGlobal = void 0;
|
|
@@ -7815,7 +7890,7 @@ class ReferenciaBibliotecaGlobal {
|
|
|
7815
7890
|
}
|
|
7816
7891
|
exports.ReferenciaBibliotecaGlobal = ReferenciaBibliotecaGlobal;
|
|
7817
7892
|
|
|
7818
|
-
},{}],
|
|
7893
|
+
},{}],58:[function(require,module,exports){
|
|
7819
7894
|
"use strict";
|
|
7820
7895
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7821
7896
|
exports.ReferenciaFuncao = void 0;
|
|
@@ -7836,7 +7911,7 @@ class ReferenciaFuncao {
|
|
|
7836
7911
|
}
|
|
7837
7912
|
exports.ReferenciaFuncao = ReferenciaFuncao;
|
|
7838
7913
|
|
|
7839
|
-
},{}],
|
|
7914
|
+
},{}],59:[function(require,module,exports){
|
|
7840
7915
|
"use strict";
|
|
7841
7916
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7842
7917
|
exports.Separador = void 0;
|
|
@@ -7855,7 +7930,7 @@ class Separador {
|
|
|
7855
7930
|
}
|
|
7856
7931
|
exports.Separador = Separador;
|
|
7857
7932
|
|
|
7858
|
-
},{}],
|
|
7933
|
+
},{}],60:[function(require,module,exports){
|
|
7859
7934
|
"use strict";
|
|
7860
7935
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7861
7936
|
exports.Super = void 0;
|
|
@@ -7875,7 +7950,7 @@ class Super {
|
|
|
7875
7950
|
}
|
|
7876
7951
|
exports.Super = Super;
|
|
7877
7952
|
|
|
7878
|
-
},{}],
|
|
7953
|
+
},{}],61:[function(require,module,exports){
|
|
7879
7954
|
"use strict";
|
|
7880
7955
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7881
7956
|
exports.TipoDe = void 0;
|
|
@@ -7899,7 +7974,7 @@ class TipoDe {
|
|
|
7899
7974
|
}
|
|
7900
7975
|
exports.TipoDe = TipoDe;
|
|
7901
7976
|
|
|
7902
|
-
},{}],
|
|
7977
|
+
},{}],62:[function(require,module,exports){
|
|
7903
7978
|
"use strict";
|
|
7904
7979
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7905
7980
|
exports.Tupla = void 0;
|
|
@@ -7910,7 +7985,7 @@ class Tupla {
|
|
|
7910
7985
|
}
|
|
7911
7986
|
exports.Tupla = Tupla;
|
|
7912
7987
|
|
|
7913
|
-
},{}],
|
|
7988
|
+
},{}],63:[function(require,module,exports){
|
|
7914
7989
|
"use strict";
|
|
7915
7990
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7916
7991
|
exports.Deceto = void 0;
|
|
@@ -7958,7 +8033,7 @@ class Deceto extends tupla_1.Tupla {
|
|
|
7958
8033
|
}
|
|
7959
8034
|
exports.Deceto = Deceto;
|
|
7960
8035
|
|
|
7961
|
-
},{"../tupla":
|
|
8036
|
+
},{"../tupla":62}],64:[function(require,module,exports){
|
|
7962
8037
|
"use strict";
|
|
7963
8038
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7964
8039
|
exports.Dupla = void 0;
|
|
@@ -7977,7 +8052,7 @@ class Dupla extends tupla_1.Tupla {
|
|
|
7977
8052
|
}
|
|
7978
8053
|
exports.Dupla = Dupla;
|
|
7979
8054
|
|
|
7980
|
-
},{"../tupla":
|
|
8055
|
+
},{"../tupla":62}],65:[function(require,module,exports){
|
|
7981
8056
|
"use strict";
|
|
7982
8057
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7983
8058
|
if (k2 === undefined) k2 = k;
|
|
@@ -8045,7 +8120,7 @@ class SeletorTuplas {
|
|
|
8045
8120
|
}
|
|
8046
8121
|
exports.SeletorTuplas = SeletorTuplas;
|
|
8047
8122
|
|
|
8048
|
-
},{"./deceto":
|
|
8123
|
+
},{"./deceto":63,"./dupla":64,"./noneto":66,"./octeto":67,"./quarteto":68,"./quinteto":69,"./septeto":70,"./sexteto":71,"./trio":72}],66:[function(require,module,exports){
|
|
8049
8124
|
"use strict";
|
|
8050
8125
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8051
8126
|
exports.Noneto = void 0;
|
|
@@ -8084,7 +8159,7 @@ class Noneto extends tupla_1.Tupla {
|
|
|
8084
8159
|
}
|
|
8085
8160
|
exports.Noneto = Noneto;
|
|
8086
8161
|
|
|
8087
|
-
},{"../tupla":
|
|
8162
|
+
},{"../tupla":62}],67:[function(require,module,exports){
|
|
8088
8163
|
"use strict";
|
|
8089
8164
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8090
8165
|
exports.Octeto = void 0;
|
|
@@ -8121,7 +8196,7 @@ class Octeto extends tupla_1.Tupla {
|
|
|
8121
8196
|
}
|
|
8122
8197
|
exports.Octeto = Octeto;
|
|
8123
8198
|
|
|
8124
|
-
},{"../tupla":
|
|
8199
|
+
},{"../tupla":62}],68:[function(require,module,exports){
|
|
8125
8200
|
"use strict";
|
|
8126
8201
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8127
8202
|
exports.Quarteto = void 0;
|
|
@@ -8144,7 +8219,7 @@ class Quarteto extends tupla_1.Tupla {
|
|
|
8144
8219
|
}
|
|
8145
8220
|
exports.Quarteto = Quarteto;
|
|
8146
8221
|
|
|
8147
|
-
},{"../tupla":
|
|
8222
|
+
},{"../tupla":62}],69:[function(require,module,exports){
|
|
8148
8223
|
"use strict";
|
|
8149
8224
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8150
8225
|
exports.Quinteto = void 0;
|
|
@@ -8169,7 +8244,7 @@ class Quinteto extends tupla_1.Tupla {
|
|
|
8169
8244
|
}
|
|
8170
8245
|
exports.Quinteto = Quinteto;
|
|
8171
8246
|
|
|
8172
|
-
},{"../tupla":
|
|
8247
|
+
},{"../tupla":62}],70:[function(require,module,exports){
|
|
8173
8248
|
"use strict";
|
|
8174
8249
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8175
8250
|
exports.Septeto = void 0;
|
|
@@ -8204,7 +8279,7 @@ class Septeto extends tupla_1.Tupla {
|
|
|
8204
8279
|
}
|
|
8205
8280
|
exports.Septeto = Septeto;
|
|
8206
8281
|
|
|
8207
|
-
},{"../tupla":
|
|
8282
|
+
},{"../tupla":62}],71:[function(require,module,exports){
|
|
8208
8283
|
"use strict";
|
|
8209
8284
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8210
8285
|
exports.Sexteto = void 0;
|
|
@@ -8231,7 +8306,7 @@ class Sexteto extends tupla_1.Tupla {
|
|
|
8231
8306
|
}
|
|
8232
8307
|
exports.Sexteto = Sexteto;
|
|
8233
8308
|
|
|
8234
|
-
},{"../tupla":
|
|
8309
|
+
},{"../tupla":62}],72:[function(require,module,exports){
|
|
8235
8310
|
"use strict";
|
|
8236
8311
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8237
8312
|
exports.Trio = void 0;
|
|
@@ -8252,7 +8327,7 @@ class Trio extends tupla_1.Tupla {
|
|
|
8252
8327
|
}
|
|
8253
8328
|
exports.Trio = Trio;
|
|
8254
8329
|
|
|
8255
|
-
},{"../tupla":
|
|
8330
|
+
},{"../tupla":62}],73:[function(require,module,exports){
|
|
8256
8331
|
"use strict";
|
|
8257
8332
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8258
8333
|
exports.Unario = void 0;
|
|
@@ -8273,7 +8348,7 @@ class Unario {
|
|
|
8273
8348
|
}
|
|
8274
8349
|
exports.Unario = Unario;
|
|
8275
8350
|
|
|
8276
|
-
},{}],
|
|
8351
|
+
},{}],74:[function(require,module,exports){
|
|
8277
8352
|
"use strict";
|
|
8278
8353
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8279
8354
|
exports.Variavel = void 0;
|
|
@@ -8293,7 +8368,7 @@ class Variavel {
|
|
|
8293
8368
|
}
|
|
8294
8369
|
exports.Variavel = Variavel;
|
|
8295
8370
|
|
|
8296
|
-
},{}],
|
|
8371
|
+
},{}],75:[function(require,module,exports){
|
|
8297
8372
|
"use strict";
|
|
8298
8373
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8299
8374
|
exports.Vetor = void 0;
|
|
@@ -8319,7 +8394,7 @@ class Vetor {
|
|
|
8319
8394
|
}
|
|
8320
8395
|
exports.Vetor = Vetor;
|
|
8321
8396
|
|
|
8322
|
-
},{}],
|
|
8397
|
+
},{}],76:[function(require,module,exports){
|
|
8323
8398
|
"use strict";
|
|
8324
8399
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8325
8400
|
exports.Aleatorio = void 0;
|
|
@@ -8340,7 +8415,7 @@ class Aleatorio extends declaracao_1.Declaracao {
|
|
|
8340
8415
|
}
|
|
8341
8416
|
exports.Aleatorio = Aleatorio;
|
|
8342
8417
|
|
|
8343
|
-
},{"./declaracao":
|
|
8418
|
+
},{"./declaracao":84}],77:[function(require,module,exports){
|
|
8344
8419
|
"use strict";
|
|
8345
8420
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8346
8421
|
exports.Bloco = void 0;
|
|
@@ -8366,7 +8441,7 @@ class Bloco extends declaracao_1.Declaracao {
|
|
|
8366
8441
|
}
|
|
8367
8442
|
exports.Bloco = Bloco;
|
|
8368
8443
|
|
|
8369
|
-
},{"./declaracao":
|
|
8444
|
+
},{"./declaracao":84}],78:[function(require,module,exports){
|
|
8370
8445
|
"use strict";
|
|
8371
8446
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8372
8447
|
exports.CabecalhoPrograma = void 0;
|
|
@@ -8388,7 +8463,7 @@ class CabecalhoPrograma extends declaracao_1.Declaracao {
|
|
|
8388
8463
|
}
|
|
8389
8464
|
exports.CabecalhoPrograma = CabecalhoPrograma;
|
|
8390
8465
|
|
|
8391
|
-
},{"./declaracao":
|
|
8466
|
+
},{"./declaracao":84}],79:[function(require,module,exports){
|
|
8392
8467
|
"use strict";
|
|
8393
8468
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8394
8469
|
exports.Classe = void 0;
|
|
@@ -8423,7 +8498,7 @@ class Classe extends declaracao_1.Declaracao {
|
|
|
8423
8498
|
}
|
|
8424
8499
|
exports.Classe = Classe;
|
|
8425
8500
|
|
|
8426
|
-
},{"./declaracao":
|
|
8501
|
+
},{"./declaracao":84}],80:[function(require,module,exports){
|
|
8427
8502
|
"use strict";
|
|
8428
8503
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8429
8504
|
exports.Comentario = void 0;
|
|
@@ -8448,7 +8523,7 @@ class Comentario extends declaracao_1.Declaracao {
|
|
|
8448
8523
|
}
|
|
8449
8524
|
exports.Comentario = Comentario;
|
|
8450
8525
|
|
|
8451
|
-
},{"./declaracao":
|
|
8526
|
+
},{"./declaracao":84}],81:[function(require,module,exports){
|
|
8452
8527
|
"use strict";
|
|
8453
8528
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8454
8529
|
exports.ConstMultiplo = void 0;
|
|
@@ -8473,7 +8548,7 @@ class ConstMultiplo extends declaracao_1.Declaracao {
|
|
|
8473
8548
|
}
|
|
8474
8549
|
exports.ConstMultiplo = ConstMultiplo;
|
|
8475
8550
|
|
|
8476
|
-
},{"./declaracao":
|
|
8551
|
+
},{"./declaracao":84}],82:[function(require,module,exports){
|
|
8477
8552
|
"use strict";
|
|
8478
8553
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8479
8554
|
exports.Const = void 0;
|
|
@@ -8503,7 +8578,7 @@ class Const extends declaracao_1.Declaracao {
|
|
|
8503
8578
|
}
|
|
8504
8579
|
exports.Const = Const;
|
|
8505
8580
|
|
|
8506
|
-
},{"./declaracao":
|
|
8581
|
+
},{"./declaracao":84}],83:[function(require,module,exports){
|
|
8507
8582
|
"use strict";
|
|
8508
8583
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8509
8584
|
exports.Continua = void 0;
|
|
@@ -8521,7 +8596,7 @@ class Continua extends declaracao_1.Declaracao {
|
|
|
8521
8596
|
}
|
|
8522
8597
|
exports.Continua = Continua;
|
|
8523
8598
|
|
|
8524
|
-
},{"./declaracao":
|
|
8599
|
+
},{"./declaracao":84}],84:[function(require,module,exports){
|
|
8525
8600
|
"use strict";
|
|
8526
8601
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8527
8602
|
exports.Declaracao = void 0;
|
|
@@ -8544,7 +8619,7 @@ class Declaracao {
|
|
|
8544
8619
|
}
|
|
8545
8620
|
exports.Declaracao = Declaracao;
|
|
8546
8621
|
|
|
8547
|
-
},{}],
|
|
8622
|
+
},{}],85:[function(require,module,exports){
|
|
8548
8623
|
"use strict";
|
|
8549
8624
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8550
8625
|
exports.Enquanto = void 0;
|
|
@@ -8565,7 +8640,7 @@ class Enquanto extends declaracao_1.Declaracao {
|
|
|
8565
8640
|
}
|
|
8566
8641
|
exports.Enquanto = Enquanto;
|
|
8567
8642
|
|
|
8568
|
-
},{"./declaracao":
|
|
8643
|
+
},{"./declaracao":84}],86:[function(require,module,exports){
|
|
8569
8644
|
"use strict";
|
|
8570
8645
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8571
8646
|
exports.Escolha = void 0;
|
|
@@ -8590,7 +8665,7 @@ class Escolha extends declaracao_1.Declaracao {
|
|
|
8590
8665
|
}
|
|
8591
8666
|
exports.Escolha = Escolha;
|
|
8592
8667
|
|
|
8593
|
-
},{"./declaracao":
|
|
8668
|
+
},{"./declaracao":84}],87:[function(require,module,exports){
|
|
8594
8669
|
"use strict";
|
|
8595
8670
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8596
8671
|
exports.EscrevaMesmaLinha = void 0;
|
|
@@ -8609,7 +8684,7 @@ class EscrevaMesmaLinha extends declaracao_1.Declaracao {
|
|
|
8609
8684
|
}
|
|
8610
8685
|
exports.EscrevaMesmaLinha = EscrevaMesmaLinha;
|
|
8611
8686
|
|
|
8612
|
-
},{"./declaracao":
|
|
8687
|
+
},{"./declaracao":84}],88:[function(require,module,exports){
|
|
8613
8688
|
"use strict";
|
|
8614
8689
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8615
8690
|
exports.Escreva = void 0;
|
|
@@ -8628,7 +8703,7 @@ class Escreva extends declaracao_1.Declaracao {
|
|
|
8628
8703
|
}
|
|
8629
8704
|
exports.Escreva = Escreva;
|
|
8630
8705
|
|
|
8631
|
-
},{"./declaracao":
|
|
8706
|
+
},{"./declaracao":84}],89:[function(require,module,exports){
|
|
8632
8707
|
"use strict";
|
|
8633
8708
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8634
8709
|
exports.Expressao = void 0;
|
|
@@ -8647,7 +8722,7 @@ class Expressao extends declaracao_1.Declaracao {
|
|
|
8647
8722
|
}
|
|
8648
8723
|
exports.Expressao = Expressao;
|
|
8649
8724
|
|
|
8650
|
-
},{"./declaracao":
|
|
8725
|
+
},{"./declaracao":84}],90:[function(require,module,exports){
|
|
8651
8726
|
"use strict";
|
|
8652
8727
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8653
8728
|
exports.Falhar = void 0;
|
|
@@ -8667,7 +8742,7 @@ class Falhar extends declaracao_1.Declaracao {
|
|
|
8667
8742
|
}
|
|
8668
8743
|
exports.Falhar = Falhar;
|
|
8669
8744
|
|
|
8670
|
-
},{"./declaracao":
|
|
8745
|
+
},{"./declaracao":84}],91:[function(require,module,exports){
|
|
8671
8746
|
"use strict";
|
|
8672
8747
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8673
8748
|
exports.Fazer = void 0;
|
|
@@ -8688,7 +8763,7 @@ class Fazer extends declaracao_1.Declaracao {
|
|
|
8688
8763
|
}
|
|
8689
8764
|
exports.Fazer = Fazer;
|
|
8690
8765
|
|
|
8691
|
-
},{"./declaracao":
|
|
8766
|
+
},{"./declaracao":84}],92:[function(require,module,exports){
|
|
8692
8767
|
"use strict";
|
|
8693
8768
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8694
8769
|
exports.FuncaoDeclaracao = void 0;
|
|
@@ -8716,7 +8791,7 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
|
|
|
8716
8791
|
}
|
|
8717
8792
|
exports.FuncaoDeclaracao = FuncaoDeclaracao;
|
|
8718
8793
|
|
|
8719
|
-
},{"../geracao-identificadores":
|
|
8794
|
+
},{"../geracao-identificadores":111,"./declaracao":84}],93:[function(require,module,exports){
|
|
8720
8795
|
"use strict";
|
|
8721
8796
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8722
8797
|
exports.Importar = void 0;
|
|
@@ -8740,7 +8815,7 @@ class Importar extends declaracao_1.Declaracao {
|
|
|
8740
8815
|
}
|
|
8741
8816
|
exports.Importar = Importar;
|
|
8742
8817
|
|
|
8743
|
-
},{"./declaracao":
|
|
8818
|
+
},{"./declaracao":84}],94:[function(require,module,exports){
|
|
8744
8819
|
"use strict";
|
|
8745
8820
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
8746
8821
|
if (k2 === undefined) k2 = k;
|
|
@@ -8788,7 +8863,7 @@ __exportStar(require("./tente"), exports);
|
|
|
8788
8863
|
__exportStar(require("./var"), exports);
|
|
8789
8864
|
__exportStar(require("./var-multiplo"), exports);
|
|
8790
8865
|
|
|
8791
|
-
},{"./aleatorio":
|
|
8866
|
+
},{"./aleatorio":76,"./bloco":77,"./cabecalho-programa":78,"./classe":79,"./comentario":80,"./const":82,"./const-multiplo":81,"./continua":83,"./declaracao":84,"./enquanto":85,"./escolha":86,"./escreva":88,"./escreva-mesma-linha":87,"./expressao":89,"./falhar":90,"./fazer":91,"./funcao":92,"./importar":93,"./inicio-algoritmo":95,"./para":97,"./para-cada":96,"./propriedade-classe":98,"./retorna":99,"./se":100,"./sustar":101,"./tendo-como":102,"./tente":103,"./var":105,"./var-multiplo":104}],95:[function(require,module,exports){
|
|
8792
8867
|
"use strict";
|
|
8793
8868
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8794
8869
|
exports.InicioAlgoritmo = void 0;
|
|
@@ -8808,7 +8883,7 @@ class InicioAlgoritmo extends declaracao_1.Declaracao {
|
|
|
8808
8883
|
}
|
|
8809
8884
|
exports.InicioAlgoritmo = InicioAlgoritmo;
|
|
8810
8885
|
|
|
8811
|
-
},{"./declaracao":
|
|
8886
|
+
},{"./declaracao":84}],96:[function(require,module,exports){
|
|
8812
8887
|
"use strict";
|
|
8813
8888
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8814
8889
|
exports.ParaCada = void 0;
|
|
@@ -8831,7 +8906,7 @@ class ParaCada extends declaracao_1.Declaracao {
|
|
|
8831
8906
|
}
|
|
8832
8907
|
exports.ParaCada = ParaCada;
|
|
8833
8908
|
|
|
8834
|
-
},{"./declaracao":
|
|
8909
|
+
},{"./declaracao":84}],97:[function(require,module,exports){
|
|
8835
8910
|
"use strict";
|
|
8836
8911
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8837
8912
|
exports.Para = void 0;
|
|
@@ -8868,7 +8943,7 @@ class Para extends declaracao_1.Declaracao {
|
|
|
8868
8943
|
}
|
|
8869
8944
|
exports.Para = Para;
|
|
8870
8945
|
|
|
8871
|
-
},{"./declaracao":
|
|
8946
|
+
},{"./declaracao":84}],98:[function(require,module,exports){
|
|
8872
8947
|
"use strict";
|
|
8873
8948
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8874
8949
|
exports.PropriedadeClasse = void 0;
|
|
@@ -8889,7 +8964,7 @@ class PropriedadeClasse extends declaracao_1.Declaracao {
|
|
|
8889
8964
|
}
|
|
8890
8965
|
exports.PropriedadeClasse = PropriedadeClasse;
|
|
8891
8966
|
|
|
8892
|
-
},{"./declaracao":
|
|
8967
|
+
},{"./declaracao":84}],99:[function(require,module,exports){
|
|
8893
8968
|
"use strict";
|
|
8894
8969
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8895
8970
|
exports.Retorna = void 0;
|
|
@@ -8915,7 +8990,7 @@ class Retorna extends declaracao_1.Declaracao {
|
|
|
8915
8990
|
}
|
|
8916
8991
|
exports.Retorna = Retorna;
|
|
8917
8992
|
|
|
8918
|
-
},{"./declaracao":
|
|
8993
|
+
},{"./declaracao":84}],100:[function(require,module,exports){
|
|
8919
8994
|
"use strict";
|
|
8920
8995
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8921
8996
|
exports.Se = void 0;
|
|
@@ -8938,7 +9013,7 @@ class Se extends declaracao_1.Declaracao {
|
|
|
8938
9013
|
}
|
|
8939
9014
|
exports.Se = Se;
|
|
8940
9015
|
|
|
8941
|
-
},{"./declaracao":
|
|
9016
|
+
},{"./declaracao":84}],101:[function(require,module,exports){
|
|
8942
9017
|
"use strict";
|
|
8943
9018
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8944
9019
|
exports.Sustar = void 0;
|
|
@@ -8956,7 +9031,7 @@ class Sustar extends declaracao_1.Declaracao {
|
|
|
8956
9031
|
}
|
|
8957
9032
|
exports.Sustar = Sustar;
|
|
8958
9033
|
|
|
8959
|
-
},{"./declaracao":
|
|
9034
|
+
},{"./declaracao":84}],102:[function(require,module,exports){
|
|
8960
9035
|
"use strict";
|
|
8961
9036
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8962
9037
|
exports.TendoComo = void 0;
|
|
@@ -8983,7 +9058,7 @@ class TendoComo extends declaracao_1.Declaracao {
|
|
|
8983
9058
|
}
|
|
8984
9059
|
exports.TendoComo = TendoComo;
|
|
8985
9060
|
|
|
8986
|
-
},{"./declaracao":
|
|
9061
|
+
},{"./declaracao":84}],103:[function(require,module,exports){
|
|
8987
9062
|
"use strict";
|
|
8988
9063
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8989
9064
|
exports.Tente = void 0;
|
|
@@ -9009,7 +9084,7 @@ class Tente extends declaracao_1.Declaracao {
|
|
|
9009
9084
|
}
|
|
9010
9085
|
exports.Tente = Tente;
|
|
9011
9086
|
|
|
9012
|
-
},{"./declaracao":
|
|
9087
|
+
},{"./declaracao":84}],104:[function(require,module,exports){
|
|
9013
9088
|
"use strict";
|
|
9014
9089
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9015
9090
|
exports.VarMultiplo = void 0;
|
|
@@ -9035,7 +9110,7 @@ class VarMultiplo extends declaracao_1.Declaracao {
|
|
|
9035
9110
|
}
|
|
9036
9111
|
exports.VarMultiplo = VarMultiplo;
|
|
9037
9112
|
|
|
9038
|
-
},{"./declaracao":
|
|
9113
|
+
},{"./declaracao":84}],105:[function(require,module,exports){
|
|
9039
9114
|
"use strict";
|
|
9040
9115
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9041
9116
|
exports.Var = void 0;
|
|
@@ -9067,7 +9142,7 @@ class Var extends declaracao_1.Declaracao {
|
|
|
9067
9142
|
}
|
|
9068
9143
|
exports.Var = Var;
|
|
9069
9144
|
|
|
9070
|
-
},{"./declaracao":
|
|
9145
|
+
},{"./declaracao":84}],106:[function(require,module,exports){
|
|
9071
9146
|
"use strict";
|
|
9072
9147
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9073
9148
|
exports.ErroEmTempoDeExecucao = void 0;
|
|
@@ -9082,7 +9157,7 @@ class ErroEmTempoDeExecucao extends Error {
|
|
|
9082
9157
|
}
|
|
9083
9158
|
exports.ErroEmTempoDeExecucao = ErroEmTempoDeExecucao;
|
|
9084
9159
|
|
|
9085
|
-
},{}],
|
|
9160
|
+
},{}],107:[function(require,module,exports){
|
|
9086
9161
|
"use strict";
|
|
9087
9162
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9088
9163
|
if (k2 === undefined) k2 = k;
|
|
@@ -9101,7 +9176,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
9101
9176
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9102
9177
|
__exportStar(require("./erro-em-tempo-de-execucao"), exports);
|
|
9103
9178
|
|
|
9104
|
-
},{"./erro-em-tempo-de-execucao":
|
|
9179
|
+
},{"./erro-em-tempo-de-execucao":106}],108:[function(require,module,exports){
|
|
9105
9180
|
"use strict";
|
|
9106
9181
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
9107
9182
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -9830,7 +9905,7 @@ class FormatadorDelegua {
|
|
|
9830
9905
|
}
|
|
9831
9906
|
exports.FormatadorDelegua = FormatadorDelegua;
|
|
9832
9907
|
|
|
9833
|
-
},{"../construtos":49,"../tipos-de-simbolos/delegua":
|
|
9908
|
+
},{"../construtos":49,"../tipos-de-simbolos/delegua":183}],109:[function(require,module,exports){
|
|
9834
9909
|
"use strict";
|
|
9835
9910
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9836
9911
|
exports.FormatadorPitugues = void 0;
|
|
@@ -10012,7 +10087,7 @@ class FormatadorPitugues {
|
|
|
10012
10087
|
}
|
|
10013
10088
|
exports.FormatadorPitugues = FormatadorPitugues;
|
|
10014
10089
|
|
|
10015
|
-
},{}],
|
|
10090
|
+
},{}],110:[function(require,module,exports){
|
|
10016
10091
|
"use strict";
|
|
10017
10092
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10018
10093
|
if (k2 === undefined) k2 = k;
|
|
@@ -10032,7 +10107,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
10032
10107
|
__exportStar(require("./formatador-delegua"), exports);
|
|
10033
10108
|
__exportStar(require("./formatador-pitugues"), exports);
|
|
10034
10109
|
|
|
10035
|
-
},{"./formatador-delegua":
|
|
10110
|
+
},{"./formatador-delegua":108,"./formatador-pitugues":109}],111:[function(require,module,exports){
|
|
10036
10111
|
"use strict";
|
|
10037
10112
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10038
10113
|
exports.cyrb53 = cyrb53;
|
|
@@ -10076,7 +10151,7 @@ function uuidv4() {
|
|
|
10076
10151
|
});
|
|
10077
10152
|
}
|
|
10078
10153
|
|
|
10079
|
-
},{}],
|
|
10154
|
+
},{}],112:[function(require,module,exports){
|
|
10080
10155
|
"use strict";
|
|
10081
10156
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10082
10157
|
if (k2 === undefined) k2 = k;
|
|
@@ -10103,7 +10178,7 @@ __exportStar(require("./interpretador"), exports);
|
|
|
10103
10178
|
__exportStar(require("./lexador"), exports);
|
|
10104
10179
|
__exportStar(require("./tradutores"), exports);
|
|
10105
10180
|
|
|
10106
|
-
},{"./avaliador-sintatico":11,"./construtos":49,"./declaracoes":
|
|
10181
|
+
},{"./avaliador-sintatico":11,"./construtos":49,"./declaracoes":94,"./formatadores":110,"./geracao-identificadores":111,"./interfaces":120,"./interpretador":152,"./lexador":170,"./tradutores":190}],113:[function(require,module,exports){
|
|
10107
10182
|
"use strict";
|
|
10108
10183
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
10109
10184
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -10230,7 +10305,7 @@ function tipoInferenciaParaTipoDadosElementar(tipoInferencia) {
|
|
|
10230
10305
|
}
|
|
10231
10306
|
}
|
|
10232
10307
|
|
|
10233
|
-
},{"./tipos-de-dados/delegua":
|
|
10308
|
+
},{"./tipos-de-dados/delegua":178,"./tipos-de-dados/primitivos":180,"./tipos-de-simbolos/delegua":183}],114:[function(require,module,exports){
|
|
10234
10309
|
"use strict";
|
|
10235
10310
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10236
10311
|
exports.InformacaoElementoSintatico = void 0;
|
|
@@ -10249,15 +10324,15 @@ class InformacaoElementoSintatico {
|
|
|
10249
10324
|
}
|
|
10250
10325
|
exports.InformacaoElementoSintatico = InformacaoElementoSintatico;
|
|
10251
10326
|
|
|
10252
|
-
},{}],
|
|
10327
|
+
},{}],115:[function(require,module,exports){
|
|
10253
10328
|
"use strict";
|
|
10254
10329
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10255
10330
|
|
|
10256
|
-
},{}],
|
|
10331
|
+
},{}],116:[function(require,module,exports){
|
|
10257
10332
|
"use strict";
|
|
10258
10333
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10259
10334
|
|
|
10260
|
-
},{}],
|
|
10335
|
+
},{}],117:[function(require,module,exports){
|
|
10261
10336
|
"use strict";
|
|
10262
10337
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10263
10338
|
exports.DiagnosticoSeveridade = void 0;
|
|
@@ -10269,7 +10344,7 @@ var DiagnosticoSeveridade;
|
|
|
10269
10344
|
DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
|
|
10270
10345
|
})(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
|
|
10271
10346
|
|
|
10272
|
-
},{}],
|
|
10347
|
+
},{}],118:[function(require,module,exports){
|
|
10273
10348
|
"use strict";
|
|
10274
10349
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10275
10350
|
if (k2 === undefined) k2 = k;
|
|
@@ -10288,11 +10363,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
10288
10363
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10289
10364
|
__exportStar(require("./diagnostico-analisador-semantico"), exports);
|
|
10290
10365
|
|
|
10291
|
-
},{"./diagnostico-analisador-semantico":
|
|
10366
|
+
},{"./diagnostico-analisador-semantico":117}],119:[function(require,module,exports){
|
|
10292
10367
|
"use strict";
|
|
10293
10368
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10294
10369
|
|
|
10295
|
-
},{}],
|
|
10370
|
+
},{}],120:[function(require,module,exports){
|
|
10296
10371
|
"use strict";
|
|
10297
10372
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10298
10373
|
if (k2 === undefined) k2 = k;
|
|
@@ -10329,11 +10404,7 @@ __exportStar(require("./construtos"), exports);
|
|
|
10329
10404
|
__exportStar(require("./erros"), exports);
|
|
10330
10405
|
__exportStar(require("./retornos"), exports);
|
|
10331
10406
|
|
|
10332
|
-
},{"./avaliador-sintatico-interface":
|
|
10333
|
-
"use strict";
|
|
10334
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10335
|
-
|
|
10336
|
-
},{}],121:[function(require,module,exports){
|
|
10407
|
+
},{"./avaliador-sintatico-interface":115,"./construtos":116,"./erros":118,"./formatador-comum-interface":119,"./interpretador-com-depuracao-interface":121,"./interpretador-interface":122,"./lexador-interface":123,"./parametro-interface":124,"./pilha-interface":125,"./primitiva-interface":126,"./resolvedor-interface":127,"./resultado-parcial-interpretador-interface":128,"./retornos":129,"./retornos/retorno-execucao-interface":131,"./simbolo-interface":134,"./tradutor-interface":135,"./variavel-interface":136,"./visitante-comum-interface":137,"./visitante-delegua-interface":138}],121:[function(require,module,exports){
|
|
10337
10408
|
"use strict";
|
|
10338
10409
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10339
10410
|
|
|
@@ -10363,6 +10434,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
10363
10434
|
|
|
10364
10435
|
},{}],128:[function(require,module,exports){
|
|
10365
10436
|
"use strict";
|
|
10437
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10438
|
+
|
|
10439
|
+
},{}],129:[function(require,module,exports){
|
|
10440
|
+
"use strict";
|
|
10366
10441
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10367
10442
|
if (k2 === undefined) k2 = k;
|
|
10368
10443
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -10383,11 +10458,7 @@ __exportStar(require("./retorno-execucao-interface"), exports);
|
|
|
10383
10458
|
__exportStar(require("./retorno-interpretador-interface"), exports);
|
|
10384
10459
|
__exportStar(require("./retorno-lexador"), exports);
|
|
10385
10460
|
|
|
10386
|
-
},{"./retorno-avaliador-sintatico":
|
|
10387
|
-
"use strict";
|
|
10388
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10389
|
-
|
|
10390
|
-
},{}],130:[function(require,module,exports){
|
|
10461
|
+
},{"./retorno-avaliador-sintatico":130,"./retorno-execucao-interface":131,"./retorno-interpretador-interface":132,"./retorno-lexador":133}],130:[function(require,module,exports){
|
|
10391
10462
|
"use strict";
|
|
10392
10463
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10393
10464
|
|
|
@@ -10421,6 +10492,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
10421
10492
|
|
|
10422
10493
|
},{}],138:[function(require,module,exports){
|
|
10423
10494
|
"use strict";
|
|
10495
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10496
|
+
|
|
10497
|
+
},{}],139:[function(require,module,exports){
|
|
10498
|
+
"use strict";
|
|
10424
10499
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10425
10500
|
if (k2 === undefined) k2 = k;
|
|
10426
10501
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -10484,7 +10559,7 @@ function carregarBibliotecasGlobais(pilhaEscoposExecucao) {
|
|
|
10484
10559
|
pilhaEscoposExecucao.definirVariavel('tupla', new funcao_padrao_1.FuncaoPadrao(1, bibliotecaGlobal.tupla));
|
|
10485
10560
|
}
|
|
10486
10561
|
|
|
10487
|
-
},{"../bibliotecas/biblioteca-global":19,"./estruturas/funcao-padrao":
|
|
10562
|
+
},{"../bibliotecas/biblioteca-global":19,"./estruturas/funcao-padrao":145}],140:[function(require,module,exports){
|
|
10488
10563
|
"use strict";
|
|
10489
10564
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10490
10565
|
exports.EspacoMemoria = void 0;
|
|
@@ -10509,7 +10584,7 @@ class EspacoMemoria {
|
|
|
10509
10584
|
}
|
|
10510
10585
|
exports.EspacoMemoria = EspacoMemoria;
|
|
10511
10586
|
|
|
10512
|
-
},{}],
|
|
10587
|
+
},{}],141:[function(require,module,exports){
|
|
10513
10588
|
"use strict";
|
|
10514
10589
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10515
10590
|
exports.Chamavel = void 0;
|
|
@@ -10523,7 +10598,7 @@ class Chamavel {
|
|
|
10523
10598
|
}
|
|
10524
10599
|
exports.Chamavel = Chamavel;
|
|
10525
10600
|
|
|
10526
|
-
},{}],
|
|
10601
|
+
},{}],142:[function(require,module,exports){
|
|
10527
10602
|
"use strict";
|
|
10528
10603
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10529
10604
|
exports.ClassePadrao = void 0;
|
|
@@ -10564,7 +10639,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
|
|
|
10564
10639
|
}
|
|
10565
10640
|
exports.ClassePadrao = ClassePadrao;
|
|
10566
10641
|
|
|
10567
|
-
},{"./chamavel":
|
|
10642
|
+
},{"./chamavel":141}],143:[function(require,module,exports){
|
|
10568
10643
|
"use strict";
|
|
10569
10644
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10570
10645
|
exports.DeleguaFuncao = void 0;
|
|
@@ -10709,7 +10784,7 @@ class DeleguaFuncao extends chamavel_1.Chamavel {
|
|
|
10709
10784
|
}
|
|
10710
10785
|
exports.DeleguaFuncao = DeleguaFuncao;
|
|
10711
10786
|
|
|
10712
|
-
},{"../../declaracoes":
|
|
10787
|
+
},{"../../declaracoes":94,"../../quebras":177,"../espaco-memoria":140,"./chamavel":141}],144:[function(require,module,exports){
|
|
10713
10788
|
"use strict";
|
|
10714
10789
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10715
10790
|
exports.DescritorTipoClasse = void 0;
|
|
@@ -10790,7 +10865,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
|
|
|
10790
10865
|
}
|
|
10791
10866
|
exports.DescritorTipoClasse = DescritorTipoClasse;
|
|
10792
10867
|
|
|
10793
|
-
},{"../../excecoes":
|
|
10868
|
+
},{"../../excecoes":107,"./chamavel":141,"./objeto-delegua-classe":149}],145:[function(require,module,exports){
|
|
10794
10869
|
"use strict";
|
|
10795
10870
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10796
10871
|
exports.FuncaoPadrao = void 0;
|
|
@@ -10827,7 +10902,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
|
|
|
10827
10902
|
}
|
|
10828
10903
|
exports.FuncaoPadrao = FuncaoPadrao;
|
|
10829
10904
|
|
|
10830
|
-
},{"./chamavel":
|
|
10905
|
+
},{"./chamavel":141}],146:[function(require,module,exports){
|
|
10831
10906
|
"use strict";
|
|
10832
10907
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10833
10908
|
if (k2 === undefined) k2 = k;
|
|
@@ -10855,7 +10930,7 @@ __exportStar(require("./objeto-delegua-classe"), exports);
|
|
|
10855
10930
|
__exportStar(require("./objeto-padrao"), exports);
|
|
10856
10931
|
__exportStar(require("./referencia-montao"), exports);
|
|
10857
10932
|
|
|
10858
|
-
},{"./chamavel":
|
|
10933
|
+
},{"./chamavel":141,"./classe-padrao":142,"./delegua-funcao":143,"./descritor-tipo-classe":144,"./funcao-padrao":145,"./metodo-primitiva":147,"./modulo":148,"./objeto-delegua-classe":149,"./objeto-padrao":150,"./referencia-montao":151}],147:[function(require,module,exports){
|
|
10859
10934
|
"use strict";
|
|
10860
10935
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10861
10936
|
exports.MetodoPrimitiva = void 0;
|
|
@@ -10898,7 +10973,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
|
|
|
10898
10973
|
}
|
|
10899
10974
|
exports.MetodoPrimitiva = MetodoPrimitiva;
|
|
10900
10975
|
|
|
10901
|
-
},{"./chamavel":
|
|
10976
|
+
},{"./chamavel":141}],148:[function(require,module,exports){
|
|
10902
10977
|
"use strict";
|
|
10903
10978
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10904
10979
|
exports.DeleguaModulo = void 0;
|
|
@@ -10924,7 +10999,7 @@ class DeleguaModulo {
|
|
|
10924
10999
|
}
|
|
10925
11000
|
exports.DeleguaModulo = DeleguaModulo;
|
|
10926
11001
|
|
|
10927
|
-
},{}],
|
|
11002
|
+
},{}],149:[function(require,module,exports){
|
|
10928
11003
|
"use strict";
|
|
10929
11004
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10930
11005
|
exports.ObjetoDeleguaClasse = void 0;
|
|
@@ -10992,7 +11067,7 @@ class ObjetoDeleguaClasse {
|
|
|
10992
11067
|
}
|
|
10993
11068
|
exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
|
|
10994
11069
|
|
|
10995
|
-
},{"../../excecoes":
|
|
11070
|
+
},{"../../excecoes":107}],150:[function(require,module,exports){
|
|
10996
11071
|
"use strict";
|
|
10997
11072
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10998
11073
|
exports.ObjetoPadrao = void 0;
|
|
@@ -11026,7 +11101,7 @@ class ObjetoPadrao {
|
|
|
11026
11101
|
}
|
|
11027
11102
|
exports.ObjetoPadrao = ObjetoPadrao;
|
|
11028
11103
|
|
|
11029
|
-
},{}],
|
|
11104
|
+
},{}],151:[function(require,module,exports){
|
|
11030
11105
|
"use strict";
|
|
11031
11106
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11032
11107
|
exports.ReferenciaMontao = void 0;
|
|
@@ -11051,7 +11126,7 @@ class ReferenciaMontao {
|
|
|
11051
11126
|
}
|
|
11052
11127
|
exports.ReferenciaMontao = ReferenciaMontao;
|
|
11053
11128
|
|
|
11054
|
-
},{}],
|
|
11129
|
+
},{}],152:[function(require,module,exports){
|
|
11055
11130
|
"use strict";
|
|
11056
11131
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
11057
11132
|
if (k2 === undefined) k2 = k;
|
|
@@ -11071,7 +11146,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
11071
11146
|
__exportStar(require("./interpretador"), exports);
|
|
11072
11147
|
__exportStar(require("./interpretador-base"), exports);
|
|
11073
11148
|
|
|
11074
|
-
},{"./interpretador":
|
|
11149
|
+
},{"./interpretador":154,"./interpretador-base":153}],153:[function(require,module,exports){
|
|
11075
11150
|
(function (process){(function (){
|
|
11076
11151
|
"use strict";
|
|
11077
11152
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
@@ -11793,6 +11868,55 @@ class InterpretadorBase {
|
|
|
11793
11868
|
}
|
|
11794
11869
|
return retornoExecucao;
|
|
11795
11870
|
}
|
|
11871
|
+
// TODO: Descobrir se mais algum dialeto, fora Delégua e Pituguês, usam isso.
|
|
11872
|
+
async visitarDeclaracaoParaCada(declaracao) {
|
|
11873
|
+
let retornoExecucao;
|
|
11874
|
+
// Posição atual precisa ser reiniciada, pois pode estar dentro de outro
|
|
11875
|
+
// laço de repetição.
|
|
11876
|
+
declaracao.posicaoAtual = 0;
|
|
11877
|
+
const vetorResolvido = await this.avaliar(declaracao.vetorOuDicionario);
|
|
11878
|
+
let valorVetorResolvido = this.resolverValor(vetorResolvido);
|
|
11879
|
+
// Se até aqui vetor resolvido é um dicionário, converte dicionário
|
|
11880
|
+
// para vetor de duplas.
|
|
11881
|
+
// TODO: Converter elementos para `Construto` se necessário.
|
|
11882
|
+
if (declaracao.vetorOuDicionario.tipo === 'dicionário') {
|
|
11883
|
+
valorVetorResolvido = Object.entries(valorVetorResolvido)
|
|
11884
|
+
.map(v => new construtos_1.Dupla(v[0], v[1]));
|
|
11885
|
+
}
|
|
11886
|
+
if (!Array.isArray(valorVetorResolvido)) {
|
|
11887
|
+
return Promise.reject("Variável ou literal provida em instrução 'para cada' não é um vetor.");
|
|
11888
|
+
}
|
|
11889
|
+
while (!(retornoExecucao && retornoExecucao.valorRetornado instanceof quebras_1.Quebra) &&
|
|
11890
|
+
declaracao.posicaoAtual < valorVetorResolvido.length) {
|
|
11891
|
+
try {
|
|
11892
|
+
if (declaracao.variavelIteracao instanceof construtos_1.Variavel) {
|
|
11893
|
+
this.pilhaEscoposExecucao.definirVariavel(declaracao.variavelIteracao.simbolo.lexema, valorVetorResolvido[declaracao.posicaoAtual]);
|
|
11894
|
+
}
|
|
11895
|
+
if (declaracao.variavelIteracao instanceof construtos_1.Dupla) {
|
|
11896
|
+
const valorComoDupla = valorVetorResolvido[declaracao.posicaoAtual];
|
|
11897
|
+
this.pilhaEscoposExecucao.definirVariavel(declaracao.variavelIteracao.primeiro.valor, valorComoDupla.primeiro);
|
|
11898
|
+
this.pilhaEscoposExecucao.definirVariavel(declaracao.variavelIteracao.segundo.valor, valorComoDupla.segundo);
|
|
11899
|
+
}
|
|
11900
|
+
retornoExecucao = await this.executar(declaracao.corpo);
|
|
11901
|
+
if (retornoExecucao && retornoExecucao.valorRetornado instanceof quebras_1.SustarQuebra) {
|
|
11902
|
+
return null;
|
|
11903
|
+
}
|
|
11904
|
+
if (retornoExecucao && retornoExecucao.valorRetornado instanceof quebras_1.ContinuarQuebra) {
|
|
11905
|
+
retornoExecucao = null;
|
|
11906
|
+
}
|
|
11907
|
+
declaracao.posicaoAtual++;
|
|
11908
|
+
}
|
|
11909
|
+
catch (erro) {
|
|
11910
|
+
this.erros.push({
|
|
11911
|
+
erroInterno: erro,
|
|
11912
|
+
linha: declaracao.linha,
|
|
11913
|
+
hashArquivo: declaracao.hashArquivo,
|
|
11914
|
+
});
|
|
11915
|
+
return Promise.reject(erro);
|
|
11916
|
+
}
|
|
11917
|
+
}
|
|
11918
|
+
return retornoExecucao;
|
|
11919
|
+
}
|
|
11796
11920
|
/**
|
|
11797
11921
|
* Executa uma expressão Se, que tem uma condição, pode ter um bloco
|
|
11798
11922
|
* Senão, e múltiplos blocos Senão-se.
|
|
@@ -12539,7 +12663,7 @@ class InterpretadorBase {
|
|
|
12539
12663
|
exports.InterpretadorBase = InterpretadorBase;
|
|
12540
12664
|
|
|
12541
12665
|
}).call(this)}).call(this,require('_process'))
|
|
12542
|
-
},{"../avaliador-sintatico":11,"../bibliotecas/primitivas-dicionario":20,"../construtos":49,"../excecoes":
|
|
12666
|
+
},{"../avaliador-sintatico":11,"../bibliotecas/primitivas-dicionario":20,"../construtos":49,"../excecoes":107,"../inferenciador":113,"../lexador":170,"../quebras":177,"../tipos-de-dados/delegua":178,"../tipos-de-dados/primitivos":180,"../tipos-de-simbolos/delegua":183,"./comum":139,"./espaco-memoria":140,"./estruturas":146,"./estruturas/metodo-primitiva":147,"./pilha-escopos-execucao":156,"_process":417,"browser-process-hrtime":363}],154:[function(require,module,exports){
|
|
12543
12667
|
"use strict";
|
|
12544
12668
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12545
12669
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13315,6 +13439,16 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
13315
13439
|
visitarExpressaoFazer(expressao) {
|
|
13316
13440
|
return this.logicaComumExecucaoFazer(expressao, true);
|
|
13317
13441
|
}
|
|
13442
|
+
async visitarExpressaoListaCompreensao(listaCompreensao) {
|
|
13443
|
+
const vetorVariavelIteracao = await this.avaliar(listaCompreensao.referenciaVariavelIteracao);
|
|
13444
|
+
let valorVetorVariavelIteracao = this.resolverValor(vetorVariavelIteracao);
|
|
13445
|
+
if (!Array.isArray(valorVetorVariavelIteracao)) {
|
|
13446
|
+
return Promise.reject("Variável ou literal provida em instrução 'para cada' não é um vetor.");
|
|
13447
|
+
}
|
|
13448
|
+
const resultadoCompreensao = await this.avaliar(listaCompreensao.paraCada);
|
|
13449
|
+
const resultadoCompreensaoResolvido = resultadoCompreensao.valorRetornado.filter(r => r !== null).map(r => this.resolverValor(r));
|
|
13450
|
+
return resultadoCompreensaoResolvido;
|
|
13451
|
+
}
|
|
13318
13452
|
visitarExpressaoParaCada(expressao) {
|
|
13319
13453
|
return this.logicaComumExecucaoParaCada(expressao, true);
|
|
13320
13454
|
}
|
|
@@ -13469,7 +13603,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
13469
13603
|
}
|
|
13470
13604
|
exports.Interpretador = Interpretador;
|
|
13471
13605
|
|
|
13472
|
-
},{"../bibliotecas/primitivas-dicionario":20,"../bibliotecas/primitivas-numero":21,"../bibliotecas/primitivas-texto":22,"../bibliotecas/primitivas-vetor":23,"../construtos":49,"../declaracoes":
|
|
13606
|
+
},{"../bibliotecas/primitivas-dicionario":20,"../bibliotecas/primitivas-numero":21,"../bibliotecas/primitivas-texto":22,"../bibliotecas/primitivas-vetor":23,"../construtos":49,"../declaracoes":94,"../excecoes":107,"../inferenciador":113,"../quebras":177,"../tipos-de-dados/delegua":178,"../tipos-de-dados/primitivos":180,"./estruturas":146,"./interpretador-base":153,"./montao":155}],155:[function(require,module,exports){
|
|
13473
13607
|
"use strict";
|
|
13474
13608
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13475
13609
|
exports.Montao = void 0;
|
|
@@ -13526,7 +13660,7 @@ class Montao {
|
|
|
13526
13660
|
}
|
|
13527
13661
|
exports.Montao = Montao;
|
|
13528
13662
|
|
|
13529
|
-
},{"../excecoes":
|
|
13663
|
+
},{"../excecoes":107,"../geracao-identificadores":111}],156:[function(require,module,exports){
|
|
13530
13664
|
"use strict";
|
|
13531
13665
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13532
13666
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13814,7 +13948,7 @@ class PilhaEscoposExecucao {
|
|
|
13814
13948
|
}
|
|
13815
13949
|
exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
|
|
13816
13950
|
|
|
13817
|
-
},{"../excecoes":
|
|
13951
|
+
},{"../excecoes":107,"../inferenciador":113,"../lexador":170,"../tipos-de-dados/delegua":178,"./estruturas":146}],157:[function(require,module,exports){
|
|
13818
13952
|
"use strict";
|
|
13819
13953
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13820
13954
|
if (k2 === undefined) k2 = k;
|
|
@@ -13838,7 +13972,7 @@ __exportStar(require("./lexador-guarani"), exports);
|
|
|
13838
13972
|
__exportStar(require("./lexador-portugol-ipt"), exports);
|
|
13839
13973
|
__exportStar(require("./lexador-tenda"), exports);
|
|
13840
13974
|
|
|
13841
|
-
},{"./lexador-calango":
|
|
13975
|
+
},{"./lexador-calango":158,"./lexador-egua-classico":159,"./lexador-guarani":160,"./lexador-pitugues":161,"./lexador-portugol-ipt":162,"./lexador-tenda":163}],158:[function(require,module,exports){
|
|
13842
13976
|
"use strict";
|
|
13843
13977
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13844
13978
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14071,7 +14205,7 @@ class LexadorCalango {
|
|
|
14071
14205
|
}
|
|
14072
14206
|
exports.LexadorCalango = LexadorCalango;
|
|
14073
14207
|
|
|
14074
|
-
},{"../../tipos-de-simbolos/calango":
|
|
14208
|
+
},{"../../tipos-de-simbolos/calango":181,"../simbolo":176,"./palavras-reservadas/calango":164}],159:[function(require,module,exports){
|
|
14075
14209
|
"use strict";
|
|
14076
14210
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14077
14211
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14361,7 +14495,7 @@ class LexadorEguaClassico {
|
|
|
14361
14495
|
}
|
|
14362
14496
|
exports.LexadorEguaClassico = LexadorEguaClassico;
|
|
14363
14497
|
|
|
14364
|
-
},{"../../tipos-de-simbolos/egua-classico":
|
|
14498
|
+
},{"../../tipos-de-simbolos/egua-classico":184,"../simbolo":176,"./palavras-reservadas/egua-classico":165}],160:[function(require,module,exports){
|
|
14365
14499
|
"use strict";
|
|
14366
14500
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14367
14501
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14480,7 +14614,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
|
|
|
14480
14614
|
}
|
|
14481
14615
|
exports.LexadorGuarani = LexadorGuarani;
|
|
14482
14616
|
|
|
14483
|
-
},{"../../tipos-de-simbolos/guarani":
|
|
14617
|
+
},{"../../tipos-de-simbolos/guarani":185,"../lexador-base":172,"./palavras-reservadas/guarani":166}],161:[function(require,module,exports){
|
|
14484
14618
|
"use strict";
|
|
14485
14619
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14486
14620
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14660,6 +14794,17 @@ class LexadorPitugues {
|
|
|
14660
14794
|
espacosIndentacao: espacos,
|
|
14661
14795
|
};
|
|
14662
14796
|
}
|
|
14797
|
+
comentarioUmaLinha() {
|
|
14798
|
+
this.avancar();
|
|
14799
|
+
const linhaAtual = this.linha;
|
|
14800
|
+
let ultimoAtual = this.atual;
|
|
14801
|
+
while (linhaAtual === this.linha && !this.eFinalDoCodigo()) {
|
|
14802
|
+
ultimoAtual = this.atual;
|
|
14803
|
+
this.avancar();
|
|
14804
|
+
}
|
|
14805
|
+
const conteudo = this.codigo[linhaAtual].substring(this.inicioSimbolo + 2, ultimoAtual);
|
|
14806
|
+
this.adicionarSimbolo(pitugues_2.default.COMENTARIO, conteudo.trim());
|
|
14807
|
+
}
|
|
14663
14808
|
avancarParaProximaLinha() {
|
|
14664
14809
|
this.linha++;
|
|
14665
14810
|
this.atual = 0;
|
|
@@ -14689,7 +14834,7 @@ class LexadorPitugues {
|
|
|
14689
14834
|
}
|
|
14690
14835
|
break;
|
|
14691
14836
|
case '#':
|
|
14692
|
-
this.
|
|
14837
|
+
this.comentarioUmaLinha();
|
|
14693
14838
|
break;
|
|
14694
14839
|
case '[':
|
|
14695
14840
|
this.adicionarSimbolo(pitugues_2.default.COLCHETE_ESQUERDO);
|
|
@@ -14887,7 +15032,7 @@ class LexadorPitugues {
|
|
|
14887
15032
|
}
|
|
14888
15033
|
exports.LexadorPitugues = LexadorPitugues;
|
|
14889
15034
|
|
|
14890
|
-
},{"../../tipos-de-simbolos/pitugues":
|
|
15035
|
+
},{"../../tipos-de-simbolos/pitugues":187,"../simbolo":176,"./palavras-reservadas/pitugues":167,"browser-process-hrtime":363}],162:[function(require,module,exports){
|
|
14891
15036
|
"use strict";
|
|
14892
15037
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14893
15038
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -15139,7 +15284,7 @@ class LexadorPortugolIpt {
|
|
|
15139
15284
|
}
|
|
15140
15285
|
exports.LexadorPortugolIpt = LexadorPortugolIpt;
|
|
15141
15286
|
|
|
15142
|
-
},{"../../tipos-de-simbolos/portugol-ipt":
|
|
15287
|
+
},{"../../tipos-de-simbolos/portugol-ipt":188,"../simbolo":176,"./palavras-reservadas/portugol-ipt":168}],163:[function(require,module,exports){
|
|
15143
15288
|
"use strict";
|
|
15144
15289
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
15145
15290
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -15530,7 +15675,7 @@ class LexadorTenda {
|
|
|
15530
15675
|
}
|
|
15531
15676
|
exports.LexadorTenda = LexadorTenda;
|
|
15532
15677
|
|
|
15533
|
-
},{"../../tipos-de-simbolos/tenda":
|
|
15678
|
+
},{"../../tipos-de-simbolos/tenda":189,"../simbolo":176,"./palavras-reservadas/tenda":169,"browser-process-hrtime":363}],164:[function(require,module,exports){
|
|
15534
15679
|
"use strict";
|
|
15535
15680
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
15536
15681
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -15551,7 +15696,7 @@ exports.default = {
|
|
|
15551
15696
|
fimSe: calango_1.default.FIM_SE,
|
|
15552
15697
|
};
|
|
15553
15698
|
|
|
15554
|
-
},{"../../../tipos-de-simbolos/calango":
|
|
15699
|
+
},{"../../../tipos-de-simbolos/calango":181}],165:[function(require,module,exports){
|
|
15555
15700
|
"use strict";
|
|
15556
15701
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
15557
15702
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -15592,7 +15737,7 @@ exports.palavrasReservadas = {
|
|
|
15592
15737
|
verdadeiro: egua_classico_1.default.VERDADEIRO,
|
|
15593
15738
|
};
|
|
15594
15739
|
|
|
15595
|
-
},{"../../../tipos-de-simbolos/egua-classico":
|
|
15740
|
+
},{"../../../tipos-de-simbolos/egua-classico":184}],166:[function(require,module,exports){
|
|
15596
15741
|
"use strict";
|
|
15597
15742
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
15598
15743
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -15604,7 +15749,7 @@ exports.palavrasReservadas = {
|
|
|
15604
15749
|
hai: guarani_1.default.HAI,
|
|
15605
15750
|
};
|
|
15606
15751
|
|
|
15607
|
-
},{"../../../tipos-de-simbolos/guarani":
|
|
15752
|
+
},{"../../../tipos-de-simbolos/guarani":185}],167:[function(require,module,exports){
|
|
15608
15753
|
"use strict";
|
|
15609
15754
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
15610
15755
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -15640,6 +15785,7 @@ exports.palavrasReservadas = {
|
|
|
15640
15785
|
padrao: pitugues_1.default.PADRAO,
|
|
15641
15786
|
para: pitugues_1.default.PARA,
|
|
15642
15787
|
pegue: pitugues_1.default.PEGUE,
|
|
15788
|
+
quebrar: pitugues_1.default.QUEBRAR,
|
|
15643
15789
|
retorna: pitugues_1.default.RETORNA,
|
|
15644
15790
|
se: pitugues_1.default.SE,
|
|
15645
15791
|
senao: pitugues_1.default.SENAO,
|
|
@@ -15663,7 +15809,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
15663
15809
|
verdadeiro: pitugues_1.default.VERDADEIRO,
|
|
15664
15810
|
};
|
|
15665
15811
|
|
|
15666
|
-
},{"../../../tipos-de-simbolos/pitugues":
|
|
15812
|
+
},{"../../../tipos-de-simbolos/pitugues":187}],168:[function(require,module,exports){
|
|
15667
15813
|
"use strict";
|
|
15668
15814
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
15669
15815
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -15685,7 +15831,7 @@ exports.palavrasReservadas = {
|
|
|
15685
15831
|
senão: portugol_ipt_1.default.SENAO,
|
|
15686
15832
|
};
|
|
15687
15833
|
|
|
15688
|
-
},{"../../../tipos-de-simbolos/portugol-ipt":
|
|
15834
|
+
},{"../../../tipos-de-simbolos/portugol-ipt":188}],169:[function(require,module,exports){
|
|
15689
15835
|
"use strict";
|
|
15690
15836
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
15691
15837
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -15743,7 +15889,7 @@ exports.palavrasReservadas = {
|
|
|
15743
15889
|
Texto: tenda_1.default.BIBLIOTECA_GLOBAL,
|
|
15744
15890
|
};
|
|
15745
15891
|
|
|
15746
|
-
},{"../../../tipos-de-simbolos/tenda":
|
|
15892
|
+
},{"../../../tipos-de-simbolos/tenda":189}],170:[function(require,module,exports){
|
|
15747
15893
|
"use strict";
|
|
15748
15894
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15749
15895
|
if (k2 === undefined) k2 = k;
|
|
@@ -15766,7 +15912,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
|
|
|
15766
15912
|
__exportStar(require("./micro-lexador"), exports);
|
|
15767
15913
|
__exportStar(require("./simbolo"), exports);
|
|
15768
15914
|
|
|
15769
|
-
},{"./dialetos":
|
|
15915
|
+
},{"./dialetos":157,"./lexador":173,"./lexador-base-linha-unica":171,"./micro-lexador":174,"./simbolo":176}],171:[function(require,module,exports){
|
|
15770
15916
|
"use strict";
|
|
15771
15917
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15772
15918
|
exports.LexadorBaseLinhaUnica = void 0;
|
|
@@ -15850,7 +15996,7 @@ class LexadorBaseLinhaUnica {
|
|
|
15850
15996
|
}
|
|
15851
15997
|
exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
|
|
15852
15998
|
|
|
15853
|
-
},{"./simbolo":
|
|
15999
|
+
},{"./simbolo":176}],172:[function(require,module,exports){
|
|
15854
16000
|
"use strict";
|
|
15855
16001
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15856
16002
|
exports.LexadorBase = void 0;
|
|
@@ -15964,7 +16110,7 @@ class LexadorBase {
|
|
|
15964
16110
|
}
|
|
15965
16111
|
exports.LexadorBase = LexadorBase;
|
|
15966
16112
|
|
|
15967
|
-
},{"./simbolo":
|
|
16113
|
+
},{"./simbolo":176}],173:[function(require,module,exports){
|
|
15968
16114
|
"use strict";
|
|
15969
16115
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
15970
16116
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -16425,7 +16571,7 @@ class Lexador {
|
|
|
16425
16571
|
}
|
|
16426
16572
|
exports.Lexador = Lexador;
|
|
16427
16573
|
|
|
16428
|
-
},{"../tipos-de-simbolos/delegua":
|
|
16574
|
+
},{"../tipos-de-simbolos/delegua":183,"./palavras-reservadas":175,"./simbolo":176,"browser-process-hrtime":363}],174:[function(require,module,exports){
|
|
16429
16575
|
"use strict";
|
|
16430
16576
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16431
16577
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -16648,7 +16794,7 @@ class MicroLexador {
|
|
|
16648
16794
|
}
|
|
16649
16795
|
exports.MicroLexador = MicroLexador;
|
|
16650
16796
|
|
|
16651
|
-
},{"../tipos-de-simbolos/microgramaticas/delegua":
|
|
16797
|
+
},{"../tipos-de-simbolos/microgramaticas/delegua":186,"./palavras-reservadas":175,"./simbolo":176}],175:[function(require,module,exports){
|
|
16652
16798
|
"use strict";
|
|
16653
16799
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16654
16800
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -16689,6 +16835,7 @@ exports.palavrasReservadas = {
|
|
|
16689
16835
|
para: delegua_1.default.PARA,
|
|
16690
16836
|
pausa: delegua_1.default.PAUSA,
|
|
16691
16837
|
pegue: delegua_1.default.PEGUE,
|
|
16838
|
+
quebrar: delegua_1.default.QUEBRAR,
|
|
16692
16839
|
retorna: delegua_1.default.RETORNA,
|
|
16693
16840
|
se: delegua_1.default.SE,
|
|
16694
16841
|
senao: delegua_1.default.SENAO,
|
|
@@ -16712,7 +16859,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
16712
16859
|
verdadeiro: delegua_1.default.VERDADEIRO,
|
|
16713
16860
|
};
|
|
16714
16861
|
|
|
16715
|
-
},{"../tipos-de-simbolos/delegua":
|
|
16862
|
+
},{"../tipos-de-simbolos/delegua":183}],176:[function(require,module,exports){
|
|
16716
16863
|
"use strict";
|
|
16717
16864
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16718
16865
|
exports.Simbolo = void 0;
|
|
@@ -16730,7 +16877,7 @@ class Simbolo {
|
|
|
16730
16877
|
}
|
|
16731
16878
|
exports.Simbolo = Simbolo;
|
|
16732
16879
|
|
|
16733
|
-
},{}],
|
|
16880
|
+
},{}],177:[function(require,module,exports){
|
|
16734
16881
|
"use strict";
|
|
16735
16882
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16736
16883
|
exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
|
|
@@ -16755,7 +16902,7 @@ class ContinuarQuebra extends Quebra {
|
|
|
16755
16902
|
}
|
|
16756
16903
|
exports.ContinuarQuebra = ContinuarQuebra;
|
|
16757
16904
|
|
|
16758
|
-
},{}],
|
|
16905
|
+
},{}],178:[function(require,module,exports){
|
|
16759
16906
|
"use strict";
|
|
16760
16907
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16761
16908
|
exports.default = {
|
|
@@ -16785,7 +16932,7 @@ exports.default = {
|
|
|
16785
16932
|
VETOR_TEXTO: 'texto[]',
|
|
16786
16933
|
};
|
|
16787
16934
|
|
|
16788
|
-
},{}],
|
|
16935
|
+
},{}],179:[function(require,module,exports){
|
|
16789
16936
|
"use strict";
|
|
16790
16937
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16791
16938
|
exports.default = {
|
|
@@ -16815,7 +16962,7 @@ exports.default = {
|
|
|
16815
16962
|
VETOR_TEXTO: 'texto[]',
|
|
16816
16963
|
};
|
|
16817
16964
|
|
|
16818
|
-
},{}],
|
|
16965
|
+
},{}],180:[function(require,module,exports){
|
|
16819
16966
|
"use strict";
|
|
16820
16967
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16821
16968
|
exports.default = {
|
|
@@ -16834,7 +16981,7 @@ exports.default = {
|
|
|
16834
16981
|
TEXTO: 'string',
|
|
16835
16982
|
};
|
|
16836
16983
|
|
|
16837
|
-
},{}],
|
|
16984
|
+
},{}],181:[function(require,module,exports){
|
|
16838
16985
|
"use strict";
|
|
16839
16986
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16840
16987
|
exports.default = {
|
|
@@ -16878,7 +17025,7 @@ exports.default = {
|
|
|
16878
17025
|
VIRGULA: 'VIRGULA',
|
|
16879
17026
|
};
|
|
16880
17027
|
|
|
16881
|
-
},{}],
|
|
17028
|
+
},{}],182:[function(require,module,exports){
|
|
16882
17029
|
"use strict";
|
|
16883
17030
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16884
17031
|
exports.default = {
|
|
@@ -16904,7 +17051,7 @@ exports.default = {
|
|
|
16904
17051
|
VIRGULA: 'VIRGULA',
|
|
16905
17052
|
};
|
|
16906
17053
|
|
|
16907
|
-
},{}],
|
|
17054
|
+
},{}],183:[function(require,module,exports){
|
|
16908
17055
|
"use strict";
|
|
16909
17056
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16910
17057
|
exports.default = {
|
|
@@ -16983,6 +17130,7 @@ exports.default = {
|
|
|
16983
17130
|
PEGUE: 'PEGUE',
|
|
16984
17131
|
PONTO: 'PONTO',
|
|
16985
17132
|
PONTO_E_VIRGULA: 'PONTO_E_VIRGULA',
|
|
17133
|
+
QUEBRAR: 'QUEBRAR',
|
|
16986
17134
|
RETORNA: 'RETORNA',
|
|
16987
17135
|
SUBTRACAO: 'SUBTRACAO',
|
|
16988
17136
|
SE: 'SE',
|
|
@@ -16999,7 +17147,7 @@ exports.default = {
|
|
|
16999
17147
|
VIRGULA: 'VIRGULA',
|
|
17000
17148
|
};
|
|
17001
17149
|
|
|
17002
|
-
},{}],
|
|
17150
|
+
},{}],184:[function(require,module,exports){
|
|
17003
17151
|
"use strict";
|
|
17004
17152
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17005
17153
|
exports.default = {
|
|
@@ -17077,7 +17225,7 @@ exports.default = {
|
|
|
17077
17225
|
VIRGULA: 'VIRGULA',
|
|
17078
17226
|
};
|
|
17079
17227
|
|
|
17080
|
-
},{}],
|
|
17228
|
+
},{}],185:[function(require,module,exports){
|
|
17081
17229
|
"use strict";
|
|
17082
17230
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17083
17231
|
exports.default = {
|
|
@@ -17094,7 +17242,7 @@ exports.default = {
|
|
|
17094
17242
|
VIRGULA: 'VIRGULA',
|
|
17095
17243
|
};
|
|
17096
17244
|
|
|
17097
|
-
},{}],
|
|
17245
|
+
},{}],186:[function(require,module,exports){
|
|
17098
17246
|
"use strict";
|
|
17099
17247
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17100
17248
|
exports.default = {
|
|
@@ -17143,7 +17291,7 @@ exports.default = {
|
|
|
17143
17291
|
VIRGULA: 'VIRGULA',
|
|
17144
17292
|
};
|
|
17145
17293
|
|
|
17146
|
-
},{}],
|
|
17294
|
+
},{}],187:[function(require,module,exports){
|
|
17147
17295
|
"use strict";
|
|
17148
17296
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17149
17297
|
exports.default = {
|
|
@@ -17159,6 +17307,7 @@ exports.default = {
|
|
|
17159
17307
|
CLASSE: 'CLASSE',
|
|
17160
17308
|
COLCHETE_DIREITO: 'COLCHETE_DIREITO',
|
|
17161
17309
|
COLCHETE_ESQUERDO: 'COLCHETE_ESQUERDO',
|
|
17310
|
+
COMENTARIO: 'COMENTARIO',
|
|
17162
17311
|
COMO: 'COMO',
|
|
17163
17312
|
CONSTRUTOR: 'CONSTRUTOR',
|
|
17164
17313
|
CONTINUA: 'CONTINUA',
|
|
@@ -17208,6 +17357,7 @@ exports.default = {
|
|
|
17208
17357
|
PEGUE: 'PEGUE',
|
|
17209
17358
|
PONTO: 'PONTO',
|
|
17210
17359
|
PONTO_E_VIRGULA: 'PONTO_E_VIRGULA',
|
|
17360
|
+
QUEBRAR: 'QUEBRAR',
|
|
17211
17361
|
RETORNA: 'RETORNA',
|
|
17212
17362
|
SUBTRACAO: 'SUBTRACAO',
|
|
17213
17363
|
SE: 'SE',
|
|
@@ -17225,7 +17375,7 @@ exports.default = {
|
|
|
17225
17375
|
VIRGULA: 'VIRGULA',
|
|
17226
17376
|
};
|
|
17227
17377
|
|
|
17228
|
-
},{}],
|
|
17378
|
+
},{}],188:[function(require,module,exports){
|
|
17229
17379
|
"use strict";
|
|
17230
17380
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17231
17381
|
exports.default = {
|
|
@@ -17264,7 +17414,7 @@ exports.default = {
|
|
|
17264
17414
|
VIRGULA: 'VIRGULA',
|
|
17265
17415
|
};
|
|
17266
17416
|
|
|
17267
|
-
},{}],
|
|
17417
|
+
},{}],189:[function(require,module,exports){
|
|
17268
17418
|
"use strict";
|
|
17269
17419
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17270
17420
|
// Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
|
|
@@ -17359,7 +17509,7 @@ exports.default = {
|
|
|
17359
17509
|
VIRGULA: 'VIRGULA',
|
|
17360
17510
|
};
|
|
17361
17511
|
|
|
17362
|
-
},{}],
|
|
17512
|
+
},{}],190:[function(require,module,exports){
|
|
17363
17513
|
"use strict";
|
|
17364
17514
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
17365
17515
|
if (k2 === undefined) k2 = k;
|
|
@@ -17386,7 +17536,7 @@ __exportStar(require("./tradutor-reverso-javascript"), exports);
|
|
|
17386
17536
|
__exportStar(require("./tradutor-reverso-python"), exports);
|
|
17387
17537
|
__exportStar(require("./tradutor-reverso-tenda"), exports);
|
|
17388
17538
|
|
|
17389
|
-
},{"./tradutor-assemblyscript":
|
|
17539
|
+
},{"./tradutor-assemblyscript":193,"./tradutor-calango":194,"./tradutor-javascript":195,"./tradutor-mermaidjs":196,"./tradutor-portugol-ipt":197,"./tradutor-python":198,"./tradutor-reverso-javascript":199,"./tradutor-reverso-python":200,"./tradutor-reverso-tenda":201}],191:[function(require,module,exports){
|
|
17390
17540
|
"use strict";
|
|
17391
17541
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
17392
17542
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -18626,7 +18776,7 @@ __decorate([
|
|
|
18626
18776
|
Decorators_1.Override
|
|
18627
18777
|
], Python3Lexer.prototype, "nextToken", null);
|
|
18628
18778
|
|
|
18629
|
-
},{"./python3-parser":
|
|
18779
|
+
},{"./python3-parser":192,"antlr4ts/CommonToken":211,"antlr4ts/Decorators":215,"antlr4ts/Lexer":223,"antlr4ts/Token":240,"antlr4ts/VocabularyImpl":246,"antlr4ts/atn/ATNDeserializer":252,"antlr4ts/atn/LexerATNSimulator":273,"antlr4ts/misc/Utils":334}],192:[function(require,module,exports){
|
|
18630
18780
|
"use strict";
|
|
18631
18781
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
18632
18782
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -29873,7 +30023,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
29873
30023
|
}
|
|
29874
30024
|
exports.Yield_argContext = Yield_argContext;
|
|
29875
30025
|
|
|
29876
|
-
},{"antlr4ts/FailedPredicateException":
|
|
30026
|
+
},{"antlr4ts/FailedPredicateException":219,"antlr4ts/NoViableAltException":227,"antlr4ts/Parser":228,"antlr4ts/ParserRuleContext":231,"antlr4ts/RecognitionException":234,"antlr4ts/Token":240,"antlr4ts/VocabularyImpl":246,"antlr4ts/atn/ATN":248,"antlr4ts/atn/ATNDeserializer":252,"antlr4ts/atn/ParserATNSimulator":289,"antlr4ts/misc/Utils":334}],193:[function(require,module,exports){
|
|
29877
30027
|
"use strict";
|
|
29878
30028
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29879
30029
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -30508,7 +30658,7 @@ class TradutorAssemblyScript {
|
|
|
30508
30658
|
}
|
|
30509
30659
|
exports.TradutorAssemblyScript = TradutorAssemblyScript;
|
|
30510
30660
|
|
|
30511
|
-
},{"../construtos":49,"../declaracoes":
|
|
30661
|
+
},{"../construtos":49,"../declaracoes":94,"../tipos-de-simbolos/delegua":183}],194:[function(require,module,exports){
|
|
30512
30662
|
"use strict";
|
|
30513
30663
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30514
30664
|
exports.TradutorCalango = void 0;
|
|
@@ -30570,7 +30720,7 @@ class TradutorCalango {
|
|
|
30570
30720
|
}
|
|
30571
30721
|
exports.TradutorCalango = TradutorCalango;
|
|
30572
30722
|
|
|
30573
|
-
},{"../lexador/dialetos":
|
|
30723
|
+
},{"../lexador/dialetos":157}],195:[function(require,module,exports){
|
|
30574
30724
|
"use strict";
|
|
30575
30725
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
30576
30726
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -31314,7 +31464,7 @@ class TradutorJavaScript {
|
|
|
31314
31464
|
}
|
|
31315
31465
|
exports.TradutorJavaScript = TradutorJavaScript;
|
|
31316
31466
|
|
|
31317
|
-
},{"../construtos":49,"../declaracoes":
|
|
31467
|
+
},{"../construtos":49,"../declaracoes":94,"../tipos-de-simbolos/delegua":183}],196:[function(require,module,exports){
|
|
31318
31468
|
"use strict";
|
|
31319
31469
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
31320
31470
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -31768,7 +31918,7 @@ class TradutorMermaidJs {
|
|
|
31768
31918
|
}
|
|
31769
31919
|
exports.TradutorMermaidJs = TradutorMermaidJs;
|
|
31770
31920
|
|
|
31771
|
-
},{"../tipos-de-simbolos/delegua":
|
|
31921
|
+
},{"../tipos-de-simbolos/delegua":183}],197:[function(require,module,exports){
|
|
31772
31922
|
"use strict";
|
|
31773
31923
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31774
31924
|
exports.TradutorPortugolIpt = void 0;
|
|
@@ -31830,7 +31980,7 @@ class TradutorPortugolIpt {
|
|
|
31830
31980
|
}
|
|
31831
31981
|
exports.TradutorPortugolIpt = TradutorPortugolIpt;
|
|
31832
31982
|
|
|
31833
|
-
},{"../avaliador-sintatico/dialetos":8,"../lexador/dialetos":
|
|
31983
|
+
},{"../avaliador-sintatico/dialetos":8,"../lexador/dialetos":157}],198:[function(require,module,exports){
|
|
31834
31984
|
"use strict";
|
|
31835
31985
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
31836
31986
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -32472,7 +32622,7 @@ class TradutorPython {
|
|
|
32472
32622
|
}
|
|
32473
32623
|
exports.TradutorPython = TradutorPython;
|
|
32474
32624
|
|
|
32475
|
-
},{"../construtos":49,"../declaracoes":
|
|
32625
|
+
},{"../construtos":49,"../declaracoes":94,"../tipos-de-simbolos/delegua":183}],199:[function(require,module,exports){
|
|
32476
32626
|
"use strict";
|
|
32477
32627
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
32478
32628
|
exports.TradutorReversoJavaScript = void 0;
|
|
@@ -32869,7 +33019,7 @@ class TradutorReversoJavaScript {
|
|
|
32869
33019
|
}
|
|
32870
33020
|
exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
|
|
32871
33021
|
|
|
32872
|
-
},{}],
|
|
33022
|
+
},{}],200:[function(require,module,exports){
|
|
32873
33023
|
"use strict";
|
|
32874
33024
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
32875
33025
|
exports.TradutorReversoPython = void 0;
|
|
@@ -32942,7 +33092,7 @@ class TradutorReversoPython {
|
|
|
32942
33092
|
}
|
|
32943
33093
|
exports.TradutorReversoPython = TradutorReversoPython;
|
|
32944
33094
|
|
|
32945
|
-
},{"./python/python3-lexer":
|
|
33095
|
+
},{"./python/python3-lexer":191,"./python/python3-parser":192,"antlr4ts":317,"antlr4ts/tree/ParseTreeWalker":336}],201:[function(require,module,exports){
|
|
32946
33096
|
"use strict";
|
|
32947
33097
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
32948
33098
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -33536,7 +33686,7 @@ class TradutorReversoTenda {
|
|
|
33536
33686
|
}
|
|
33537
33687
|
exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
33538
33688
|
|
|
33539
|
-
},{"../construtos":49,"../tipos-de-simbolos/tenda":
|
|
33689
|
+
},{"../construtos":49,"../tipos-de-simbolos/tenda":189}],202:[function(require,module,exports){
|
|
33540
33690
|
"use strict";
|
|
33541
33691
|
/*!
|
|
33542
33692
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33544,7 +33694,7 @@ exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
|
33544
33694
|
*/
|
|
33545
33695
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
33546
33696
|
|
|
33547
|
-
},{}],
|
|
33697
|
+
},{}],203:[function(require,module,exports){
|
|
33548
33698
|
"use strict";
|
|
33549
33699
|
/*!
|
|
33550
33700
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33552,7 +33702,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
33552
33702
|
*/
|
|
33553
33703
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
33554
33704
|
|
|
33555
|
-
},{}],
|
|
33705
|
+
},{}],204:[function(require,module,exports){
|
|
33556
33706
|
"use strict";
|
|
33557
33707
|
/*!
|
|
33558
33708
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33714,7 +33864,7 @@ __decorate([
|
|
|
33714
33864
|
], ANTLRInputStream.prototype, "toString", null);
|
|
33715
33865
|
exports.ANTLRInputStream = ANTLRInputStream;
|
|
33716
33866
|
|
|
33717
|
-
},{"./Decorators":
|
|
33867
|
+
},{"./Decorators":215,"./IntStream":221,"assert":358}],205:[function(require,module,exports){
|
|
33718
33868
|
"use strict";
|
|
33719
33869
|
/*!
|
|
33720
33870
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33797,7 +33947,7 @@ __decorate([
|
|
|
33797
33947
|
], BailErrorStrategy.prototype, "sync", null);
|
|
33798
33948
|
exports.BailErrorStrategy = BailErrorStrategy;
|
|
33799
33949
|
|
|
33800
|
-
},{"./Decorators":
|
|
33950
|
+
},{"./Decorators":215,"./DefaultErrorStrategy":216,"./InputMismatchException":220,"./misc/ParseCancellationException":332}],206:[function(require,module,exports){
|
|
33801
33951
|
"use strict";
|
|
33802
33952
|
/*!
|
|
33803
33953
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34287,7 +34437,7 @@ BufferedTokenStream = __decorate([
|
|
|
34287
34437
|
], BufferedTokenStream);
|
|
34288
34438
|
exports.BufferedTokenStream = BufferedTokenStream;
|
|
34289
34439
|
|
|
34290
|
-
},{"./CommonToken":
|
|
34440
|
+
},{"./CommonToken":211,"./Decorators":215,"./Lexer":223,"./Token":240,"./misc/Interval":327,"assert":358}],207:[function(require,module,exports){
|
|
34291
34441
|
"use strict";
|
|
34292
34442
|
/*!
|
|
34293
34443
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34295,7 +34445,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
|
|
|
34295
34445
|
*/
|
|
34296
34446
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34297
34447
|
|
|
34298
|
-
},{}],
|
|
34448
|
+
},{}],208:[function(require,module,exports){
|
|
34299
34449
|
"use strict";
|
|
34300
34450
|
/*!
|
|
34301
34451
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34429,7 +34579,7 @@ var CharStreams;
|
|
|
34429
34579
|
// }
|
|
34430
34580
|
})(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
|
|
34431
34581
|
|
|
34432
|
-
},{"./CodePointBuffer":
|
|
34582
|
+
},{"./CodePointBuffer":209,"./CodePointCharStream":210,"./IntStream":221}],209:[function(require,module,exports){
|
|
34433
34583
|
"use strict";
|
|
34434
34584
|
/*!
|
|
34435
34585
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34664,7 +34814,7 @@ exports.CodePointBuffer = CodePointBuffer;
|
|
|
34664
34814
|
CodePointBuffer.Builder = Builder;
|
|
34665
34815
|
})(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
|
|
34666
34816
|
|
|
34667
|
-
},{"./misc/Character":
|
|
34817
|
+
},{"./misc/Character":323,"assert":358}],210:[function(require,module,exports){
|
|
34668
34818
|
"use strict";
|
|
34669
34819
|
/*!
|
|
34670
34820
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34814,7 +34964,7 @@ __decorate([
|
|
|
34814
34964
|
], CodePointCharStream.prototype, "getText", null);
|
|
34815
34965
|
exports.CodePointCharStream = CodePointCharStream;
|
|
34816
34966
|
|
|
34817
|
-
},{"./Decorators":
|
|
34967
|
+
},{"./Decorators":215,"./IntStream":221,"./misc/Interval":327,"assert":358}],211:[function(require,module,exports){
|
|
34818
34968
|
"use strict";
|
|
34819
34969
|
/*!
|
|
34820
34970
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35044,7 +35194,7 @@ CommonToken = __decorate([
|
|
|
35044
35194
|
], CommonToken);
|
|
35045
35195
|
exports.CommonToken = CommonToken;
|
|
35046
35196
|
|
|
35047
|
-
},{"./Decorators":
|
|
35197
|
+
},{"./Decorators":215,"./Token":240,"./misc/Interval":327}],212:[function(require,module,exports){
|
|
35048
35198
|
"use strict";
|
|
35049
35199
|
/*!
|
|
35050
35200
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35108,7 +35258,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
|
|
|
35108
35258
|
CommonTokenFactory.DEFAULT = new CommonTokenFactory();
|
|
35109
35259
|
})(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
|
|
35110
35260
|
|
|
35111
|
-
},{"./CommonToken":
|
|
35261
|
+
},{"./CommonToken":211,"./Decorators":215,"./misc/Interval":327}],213:[function(require,module,exports){
|
|
35112
35262
|
"use strict";
|
|
35113
35263
|
/*!
|
|
35114
35264
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35235,7 +35385,7 @@ CommonTokenStream = __decorate([
|
|
|
35235
35385
|
], CommonTokenStream);
|
|
35236
35386
|
exports.CommonTokenStream = CommonTokenStream;
|
|
35237
35387
|
|
|
35238
|
-
},{"./BufferedTokenStream":
|
|
35388
|
+
},{"./BufferedTokenStream":206,"./Decorators":215,"./Token":240}],214:[function(require,module,exports){
|
|
35239
35389
|
"use strict";
|
|
35240
35390
|
/*!
|
|
35241
35391
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35269,7 +35419,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
|
|
|
35269
35419
|
*/
|
|
35270
35420
|
ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
|
|
35271
35421
|
|
|
35272
|
-
},{}],
|
|
35422
|
+
},{}],215:[function(require,module,exports){
|
|
35273
35423
|
"use strict";
|
|
35274
35424
|
/*!
|
|
35275
35425
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35296,7 +35446,7 @@ function SuppressWarnings(options) {
|
|
|
35296
35446
|
}
|
|
35297
35447
|
exports.SuppressWarnings = SuppressWarnings;
|
|
35298
35448
|
|
|
35299
|
-
},{}],
|
|
35449
|
+
},{}],216:[function(require,module,exports){
|
|
35300
35450
|
"use strict";
|
|
35301
35451
|
/*!
|
|
35302
35452
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36110,7 +36260,7 @@ __decorate([
|
|
|
36110
36260
|
], DefaultErrorStrategy.prototype, "consumeUntil", null);
|
|
36111
36261
|
exports.DefaultErrorStrategy = DefaultErrorStrategy;
|
|
36112
36262
|
|
|
36113
|
-
},{"./Decorators":
|
|
36263
|
+
},{"./Decorators":215,"./FailedPredicateException":219,"./InputMismatchException":220,"./NoViableAltException":227,"./Token":240,"./atn/ATNState":254,"./atn/ATNStateType":255,"./atn/PredictionContext":295,"./misc/IntervalSet":328}],217:[function(require,module,exports){
|
|
36114
36264
|
"use strict";
|
|
36115
36265
|
/*!
|
|
36116
36266
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36186,7 +36336,7 @@ var Dependents;
|
|
|
36186
36336
|
Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
|
|
36187
36337
|
})(Dependents = exports.Dependents || (exports.Dependents = {}));
|
|
36188
36338
|
|
|
36189
|
-
},{}],
|
|
36339
|
+
},{}],218:[function(require,module,exports){
|
|
36190
36340
|
"use strict";
|
|
36191
36341
|
/*!
|
|
36192
36342
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36334,7 +36484,7 @@ __decorate([
|
|
|
36334
36484
|
], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
|
|
36335
36485
|
exports.DiagnosticErrorListener = DiagnosticErrorListener;
|
|
36336
36486
|
|
|
36337
|
-
},{"./Decorators":
|
|
36487
|
+
},{"./Decorators":215,"./misc/BitSet":322,"./misc/Interval":327}],219:[function(require,module,exports){
|
|
36338
36488
|
"use strict";
|
|
36339
36489
|
/*!
|
|
36340
36490
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36399,7 +36549,7 @@ FailedPredicateException = __decorate([
|
|
|
36399
36549
|
], FailedPredicateException);
|
|
36400
36550
|
exports.FailedPredicateException = FailedPredicateException;
|
|
36401
36551
|
|
|
36402
|
-
},{"./Decorators":
|
|
36552
|
+
},{"./Decorators":215,"./RecognitionException":234,"./atn/PredicateTransition":294}],220:[function(require,module,exports){
|
|
36403
36553
|
"use strict";
|
|
36404
36554
|
/*!
|
|
36405
36555
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36439,7 +36589,7 @@ InputMismatchException = __decorate([
|
|
|
36439
36589
|
], InputMismatchException);
|
|
36440
36590
|
exports.InputMismatchException = InputMismatchException;
|
|
36441
36591
|
|
|
36442
|
-
},{"./Decorators":
|
|
36592
|
+
},{"./Decorators":215,"./RecognitionException":234}],221:[function(require,module,exports){
|
|
36443
36593
|
"use strict";
|
|
36444
36594
|
/*!
|
|
36445
36595
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36462,7 +36612,7 @@ var IntStream;
|
|
|
36462
36612
|
IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
|
|
36463
36613
|
})(IntStream = exports.IntStream || (exports.IntStream = {}));
|
|
36464
36614
|
|
|
36465
|
-
},{}],
|
|
36615
|
+
},{}],222:[function(require,module,exports){
|
|
36466
36616
|
"use strict";
|
|
36467
36617
|
/*!
|
|
36468
36618
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36509,7 +36659,7 @@ __decorate([
|
|
|
36509
36659
|
], InterpreterRuleContext.prototype, "ruleIndex", null);
|
|
36510
36660
|
exports.InterpreterRuleContext = InterpreterRuleContext;
|
|
36511
36661
|
|
|
36512
|
-
},{"./Decorators":
|
|
36662
|
+
},{"./Decorators":215,"./ParserRuleContext":231}],223:[function(require,module,exports){
|
|
36513
36663
|
"use strict";
|
|
36514
36664
|
/*!
|
|
36515
36665
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36845,7 +36995,7 @@ __decorate([
|
|
|
36845
36995
|
], Lexer.prototype, "charPositionInLine", null);
|
|
36846
36996
|
exports.Lexer = Lexer;
|
|
36847
36997
|
|
|
36848
|
-
},{"./CommonTokenFactory":
|
|
36998
|
+
},{"./CommonTokenFactory":212,"./Decorators":215,"./IntStream":221,"./LexerNoViableAltException":225,"./Recognizer":235,"./Token":240,"./atn/LexerATNSimulator":273,"./misc/IntegerStack":326,"./misc/Interval":327}],224:[function(require,module,exports){
|
|
36849
36999
|
"use strict";
|
|
36850
37000
|
/*!
|
|
36851
37001
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36925,7 +37075,7 @@ LexerInterpreter = __decorate([
|
|
|
36925
37075
|
], LexerInterpreter);
|
|
36926
37076
|
exports.LexerInterpreter = LexerInterpreter;
|
|
36927
37077
|
|
|
36928
|
-
},{"./Decorators":
|
|
37078
|
+
},{"./Decorators":215,"./Lexer":223,"./atn/LexerATNSimulator":273}],225:[function(require,module,exports){
|
|
36929
37079
|
"use strict";
|
|
36930
37080
|
/*!
|
|
36931
37081
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36982,7 +37132,7 @@ LexerNoViableAltException = __decorate([
|
|
|
36982
37132
|
], LexerNoViableAltException);
|
|
36983
37133
|
exports.LexerNoViableAltException = LexerNoViableAltException;
|
|
36984
37134
|
|
|
36985
|
-
},{"./Decorators":
|
|
37135
|
+
},{"./Decorators":215,"./RecognitionException":234,"./misc/Interval":327,"./misc/Utils":334}],226:[function(require,module,exports){
|
|
36986
37136
|
"use strict";
|
|
36987
37137
|
/*!
|
|
36988
37138
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37192,7 +37342,7 @@ ListTokenSource = __decorate([
|
|
|
37192
37342
|
], ListTokenSource);
|
|
37193
37343
|
exports.ListTokenSource = ListTokenSource;
|
|
37194
37344
|
|
|
37195
|
-
},{"./CommonTokenFactory":
|
|
37345
|
+
},{"./CommonTokenFactory":212,"./Decorators":215,"./Token":240}],227:[function(require,module,exports){
|
|
37196
37346
|
"use strict";
|
|
37197
37347
|
/*!
|
|
37198
37348
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37247,7 +37397,7 @@ __decorate([
|
|
|
37247
37397
|
], NoViableAltException.prototype, "_startToken", void 0);
|
|
37248
37398
|
exports.NoViableAltException = NoViableAltException;
|
|
37249
37399
|
|
|
37250
|
-
},{"./Decorators":
|
|
37400
|
+
},{"./Decorators":215,"./Parser":228,"./RecognitionException":234}],228:[function(require,module,exports){
|
|
37251
37401
|
(function (process){(function (){
|
|
37252
37402
|
"use strict";
|
|
37253
37403
|
/*!
|
|
@@ -38093,7 +38243,7 @@ __decorate([
|
|
|
38093
38243
|
exports.Parser = Parser;
|
|
38094
38244
|
|
|
38095
38245
|
}).call(this)}).call(this,require('_process'))
|
|
38096
|
-
},{"./Decorators":
|
|
38246
|
+
},{"./Decorators":215,"./DefaultErrorStrategy":216,"./Lexer":223,"./ProxyParserErrorListener":233,"./Recognizer":235,"./Token":240,"./atn/ATNDeserializationOptions":251,"./atn/ATNDeserializer":252,"./atn/ParseInfo":288,"./atn/ParserATNSimulator":289,"./atn/ProfilingATNSimulator":298,"./misc/IntegerStack":326,"./misc/Utils":334,"./tree/ErrorNode":335,"./tree/TerminalNode":338,"./tree/pattern/ParseTreePatternMatcher":343,"_process":417}],229:[function(require,module,exports){
|
|
38097
38247
|
"use strict";
|
|
38098
38248
|
/*!
|
|
38099
38249
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38101,7 +38251,7 @@ exports.Parser = Parser;
|
|
|
38101
38251
|
*/
|
|
38102
38252
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38103
38253
|
|
|
38104
|
-
},{}],
|
|
38254
|
+
},{}],230:[function(require,module,exports){
|
|
38105
38255
|
"use strict";
|
|
38106
38256
|
/*!
|
|
38107
38257
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38509,7 +38659,7 @@ ParserInterpreter = __decorate([
|
|
|
38509
38659
|
], ParserInterpreter);
|
|
38510
38660
|
exports.ParserInterpreter = ParserInterpreter;
|
|
38511
38661
|
|
|
38512
|
-
},{"./Decorators":
|
|
38662
|
+
},{"./Decorators":215,"./FailedPredicateException":219,"./InputMismatchException":220,"./InterpreterRuleContext":222,"./Parser":228,"./RecognitionException":234,"./Token":240,"./atn/ATNState":254,"./atn/ATNStateType":255,"./atn/LoopEndState":285,"./atn/ParserATNSimulator":289,"./atn/StarLoopEntryState":307,"./misc/BitSet":322}],231:[function(require,module,exports){
|
|
38513
38663
|
"use strict";
|
|
38514
38664
|
/*!
|
|
38515
38665
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38810,7 +38960,7 @@ __decorate([
|
|
|
38810
38960
|
], ParserRuleContext.prototype, "sourceInterval", null);
|
|
38811
38961
|
exports.ParserRuleContext = ParserRuleContext;
|
|
38812
38962
|
|
|
38813
|
-
},{"./Decorators":
|
|
38963
|
+
},{"./Decorators":215,"./RuleContext":236,"./misc/Interval":327,"./tree/ErrorNode":335,"./tree/TerminalNode":338}],232:[function(require,module,exports){
|
|
38814
38964
|
"use strict";
|
|
38815
38965
|
/*!
|
|
38816
38966
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38860,7 +39010,7 @@ __decorate([
|
|
|
38860
39010
|
], ProxyErrorListener.prototype, "syntaxError", null);
|
|
38861
39011
|
exports.ProxyErrorListener = ProxyErrorListener;
|
|
38862
39012
|
|
|
38863
|
-
},{"./Decorators":
|
|
39013
|
+
},{"./Decorators":215}],233:[function(require,module,exports){
|
|
38864
39014
|
"use strict";
|
|
38865
39015
|
/*!
|
|
38866
39016
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38919,7 +39069,7 @@ __decorate([
|
|
|
38919
39069
|
], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
|
|
38920
39070
|
exports.ProxyParserErrorListener = ProxyParserErrorListener;
|
|
38921
39071
|
|
|
38922
|
-
},{"./Decorators":
|
|
39072
|
+
},{"./Decorators":215,"./ProxyErrorListener":232}],234:[function(require,module,exports){
|
|
38923
39073
|
"use strict";
|
|
38924
39074
|
/*!
|
|
38925
39075
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39024,7 +39174,7 @@ class RecognitionException extends Error {
|
|
|
39024
39174
|
}
|
|
39025
39175
|
exports.RecognitionException = RecognitionException;
|
|
39026
39176
|
|
|
39027
|
-
},{}],
|
|
39177
|
+
},{}],235:[function(require,module,exports){
|
|
39028
39178
|
"use strict";
|
|
39029
39179
|
/*!
|
|
39030
39180
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39243,7 +39393,7 @@ __decorate([
|
|
|
39243
39393
|
], Recognizer.prototype, "getErrorListeners", null);
|
|
39244
39394
|
exports.Recognizer = Recognizer;
|
|
39245
39395
|
|
|
39246
|
-
},{"./ConsoleErrorListener":
|
|
39396
|
+
},{"./ConsoleErrorListener":214,"./Decorators":215,"./ProxyErrorListener":232,"./Token":240,"./misc/Utils":334}],236:[function(require,module,exports){
|
|
39247
39397
|
"use strict";
|
|
39248
39398
|
/*!
|
|
39249
39399
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39460,7 +39610,7 @@ __decorate([
|
|
|
39460
39610
|
], RuleContext.prototype, "toStringTree", null);
|
|
39461
39611
|
exports.RuleContext = RuleContext;
|
|
39462
39612
|
|
|
39463
|
-
},{"./Decorators":
|
|
39613
|
+
},{"./Decorators":215,"./ParserRuleContext":231,"./Recognizer":235,"./atn/ATN":248,"./misc/Interval":327,"./tree/RuleNode":337,"./tree/Trees":339}],237:[function(require,module,exports){
|
|
39464
39614
|
"use strict";
|
|
39465
39615
|
/*!
|
|
39466
39616
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39511,7 +39661,7 @@ __decorate([
|
|
|
39511
39661
|
], RuleContextWithAltNum.prototype, "altNumber", null);
|
|
39512
39662
|
exports.RuleContextWithAltNum = RuleContextWithAltNum;
|
|
39513
39663
|
|
|
39514
|
-
},{"./Decorators":
|
|
39664
|
+
},{"./Decorators":215,"./ParserRuleContext":231,"./atn/ATN":248}],238:[function(require,module,exports){
|
|
39515
39665
|
"use strict";
|
|
39516
39666
|
/*!
|
|
39517
39667
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39534,7 +39684,7 @@ function RuleDependency(dependency) {
|
|
|
39534
39684
|
}
|
|
39535
39685
|
exports.RuleDependency = RuleDependency;
|
|
39536
39686
|
|
|
39537
|
-
},{}],
|
|
39687
|
+
},{}],239:[function(require,module,exports){
|
|
39538
39688
|
"use strict";
|
|
39539
39689
|
/*!
|
|
39540
39690
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39553,7 +39703,7 @@ function RuleVersion(version) {
|
|
|
39553
39703
|
}
|
|
39554
39704
|
exports.RuleVersion = RuleVersion;
|
|
39555
39705
|
|
|
39556
|
-
},{}],
|
|
39706
|
+
},{}],240:[function(require,module,exports){
|
|
39557
39707
|
"use strict";
|
|
39558
39708
|
/*!
|
|
39559
39709
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39593,7 +39743,7 @@ var Token;
|
|
|
39593
39743
|
Token.MIN_USER_CHANNEL_VALUE = 2;
|
|
39594
39744
|
})(Token = exports.Token || (exports.Token = {}));
|
|
39595
39745
|
|
|
39596
|
-
},{"./IntStream":
|
|
39746
|
+
},{"./IntStream":221}],241:[function(require,module,exports){
|
|
39597
39747
|
"use strict";
|
|
39598
39748
|
/*!
|
|
39599
39749
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39601,7 +39751,7 @@ var Token;
|
|
|
39601
39751
|
*/
|
|
39602
39752
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39603
39753
|
|
|
39604
|
-
},{}],
|
|
39754
|
+
},{}],242:[function(require,module,exports){
|
|
39605
39755
|
"use strict";
|
|
39606
39756
|
/*!
|
|
39607
39757
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39609,7 +39759,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
39609
39759
|
*/
|
|
39610
39760
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39611
39761
|
|
|
39612
|
-
},{}],
|
|
39762
|
+
},{}],243:[function(require,module,exports){
|
|
39613
39763
|
"use strict";
|
|
39614
39764
|
/*!
|
|
39615
39765
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39617,7 +39767,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
39617
39767
|
*/
|
|
39618
39768
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39619
39769
|
|
|
39620
|
-
},{}],
|
|
39770
|
+
},{}],244:[function(require,module,exports){
|
|
39621
39771
|
"use strict";
|
|
39622
39772
|
/*!
|
|
39623
39773
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40125,7 +40275,7 @@ __decorate([
|
|
|
40125
40275
|
Decorators_1.Override
|
|
40126
40276
|
], ReplaceOp.prototype, "toString", null);
|
|
40127
40277
|
|
|
40128
|
-
},{"./Decorators":
|
|
40278
|
+
},{"./Decorators":215,"./Token":240,"./misc/Interval":327}],245:[function(require,module,exports){
|
|
40129
40279
|
"use strict";
|
|
40130
40280
|
/*!
|
|
40131
40281
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40133,7 +40283,7 @@ __decorate([
|
|
|
40133
40283
|
*/
|
|
40134
40284
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
40135
40285
|
|
|
40136
|
-
},{}],
|
|
40286
|
+
},{}],246:[function(require,module,exports){
|
|
40137
40287
|
"use strict";
|
|
40138
40288
|
/*!
|
|
40139
40289
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40253,7 +40403,7 @@ __decorate([
|
|
|
40253
40403
|
], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
|
|
40254
40404
|
exports.VocabularyImpl = VocabularyImpl;
|
|
40255
40405
|
|
|
40256
|
-
},{"./Decorators":
|
|
40406
|
+
},{"./Decorators":215,"./Token":240}],247:[function(require,module,exports){
|
|
40257
40407
|
"use strict";
|
|
40258
40408
|
/*!
|
|
40259
40409
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40261,7 +40411,7 @@ exports.VocabularyImpl = VocabularyImpl;
|
|
|
40261
40411
|
*/
|
|
40262
40412
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
40263
40413
|
|
|
40264
|
-
},{}],
|
|
40414
|
+
},{}],248:[function(require,module,exports){
|
|
40265
40415
|
"use strict";
|
|
40266
40416
|
/*!
|
|
40267
40417
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40483,7 +40633,7 @@ exports.ATN = ATN;
|
|
|
40483
40633
|
})(ATN = exports.ATN || (exports.ATN = {}));
|
|
40484
40634
|
exports.ATN = ATN;
|
|
40485
40635
|
|
|
40486
|
-
},{"../Decorators":
|
|
40636
|
+
},{"../Decorators":215,"../Token":240,"../dfa/DFA":313,"../misc/Array2DHashMap":318,"../misc/IntervalSet":328,"../misc/ObjectEqualityComparator":331,"./InvalidState":271,"./LL1Analyzer":272,"./PredictionContext":295,"assert":358}],249:[function(require,module,exports){
|
|
40487
40637
|
"use strict";
|
|
40488
40638
|
/*!
|
|
40489
40639
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41008,7 +41158,7 @@ ActionSemanticContextATNConfig = __decorate([
|
|
|
41008
41158
|
__param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
|
|
41009
41159
|
], ActionSemanticContextATNConfig);
|
|
41010
41160
|
|
|
41011
|
-
},{"../Decorators":
|
|
41161
|
+
},{"../Decorators":215,"../misc/Array2DHashMap":318,"../misc/MurmurHash":330,"../misc/ObjectEqualityComparator":331,"./DecisionState":268,"./PredictionContext":295,"./SemanticContext":303,"assert":358}],250:[function(require,module,exports){
|
|
41012
41162
|
"use strict";
|
|
41013
41163
|
/*!
|
|
41014
41164
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41455,7 +41605,7 @@ __decorate([
|
|
|
41455
41605
|
], ATNConfigSet.prototype, "hashCode", null);
|
|
41456
41606
|
exports.ATNConfigSet = ATNConfigSet;
|
|
41457
41607
|
|
|
41458
|
-
},{"../Decorators":
|
|
41608
|
+
},{"../Decorators":215,"../misc/Array2DHashMap":318,"../misc/Array2DHashSet":319,"../misc/ArrayEqualityComparator":320,"../misc/BitSet":322,"../misc/ObjectEqualityComparator":331,"../misc/Utils":334,"./ATN":248,"./ATNConfig":249,"./PredictionContext":295,"./PredictionContextCache":296,"./SemanticContext":303,"assert":358}],251:[function(require,module,exports){
|
|
41459
41609
|
"use strict";
|
|
41460
41610
|
/*!
|
|
41461
41611
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41534,7 +41684,7 @@ __decorate([
|
|
|
41534
41684
|
], ATNDeserializationOptions, "defaultOptions", null);
|
|
41535
41685
|
exports.ATNDeserializationOptions = ATNDeserializationOptions;
|
|
41536
41686
|
|
|
41537
|
-
},{"../Decorators":
|
|
41687
|
+
},{"../Decorators":215}],252:[function(require,module,exports){
|
|
41538
41688
|
"use strict";
|
|
41539
41689
|
/*!
|
|
41540
41690
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42621,7 +42771,7 @@ __decorate([
|
|
|
42621
42771
|
], ATNDeserializer.prototype, "edgeFactory", null);
|
|
42622
42772
|
exports.ATNDeserializer = ATNDeserializer;
|
|
42623
42773
|
|
|
42624
|
-
},{"../Decorators":
|
|
42774
|
+
},{"../Decorators":215,"../Token":240,"../dfa/DFA":313,"../misc/Array2DHashSet":319,"../misc/BitSet":322,"../misc/IntervalSet":328,"../misc/UUID":333,"./ATN":248,"./ATNDeserializationOptions":251,"./ATNStateType":255,"./ActionTransition":257,"./AtomTransition":259,"./BasicBlockStartState":260,"./BasicState":261,"./BlockEndState":262,"./BlockStartState":263,"./DecisionState":268,"./EpsilonTransition":269,"./InvalidState":271,"./LexerChannelAction":275,"./LexerCustomAction":276,"./LexerModeAction":278,"./LexerMoreAction":279,"./LexerPopModeAction":280,"./LexerPushModeAction":281,"./LexerSkipAction":282,"./LexerTypeAction":283,"./LoopEndState":285,"./NotSetTransition":286,"./ParserATNSimulator":289,"./PlusBlockStartState":290,"./PlusLoopbackState":291,"./PrecedencePredicateTransition":292,"./PredicateTransition":294,"./RangeTransition":299,"./RuleStartState":300,"./RuleStopState":301,"./RuleTransition":302,"./SetTransition":304,"./StarBlockStartState":306,"./StarLoopEntryState":307,"./StarLoopbackState":308,"./TokensStartState":309,"./WildcardTransition":311}],253:[function(require,module,exports){
|
|
42625
42775
|
"use strict";
|
|
42626
42776
|
/*!
|
|
42627
42777
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42685,7 +42835,7 @@ exports.ATNSimulator = ATNSimulator;
|
|
|
42685
42835
|
})(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
|
|
42686
42836
|
exports.ATNSimulator = ATNSimulator;
|
|
42687
42837
|
|
|
42688
|
-
},{"../Decorators":
|
|
42838
|
+
},{"../Decorators":215,"../dfa/DFAState":315,"./ATNConfigSet":250,"./PredictionContext":295}],254:[function(require,module,exports){
|
|
42689
42839
|
"use strict";
|
|
42690
42840
|
/*!
|
|
42691
42841
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42872,7 +43022,7 @@ exports.ATNState = ATNState;
|
|
|
42872
43022
|
ATNState.INVALID_STATE_NUMBER = -1;
|
|
42873
43023
|
})(ATNState = exports.ATNState || (exports.ATNState = {}));
|
|
42874
43024
|
|
|
42875
|
-
},{"../Decorators":
|
|
43025
|
+
},{"../Decorators":215}],255:[function(require,module,exports){
|
|
42876
43026
|
"use strict";
|
|
42877
43027
|
/*!
|
|
42878
43028
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42898,7 +43048,7 @@ var ATNStateType;
|
|
|
42898
43048
|
ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
|
|
42899
43049
|
})(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
|
|
42900
43050
|
|
|
42901
|
-
},{}],
|
|
43051
|
+
},{}],256:[function(require,module,exports){
|
|
42902
43052
|
"use strict";
|
|
42903
43053
|
/*!
|
|
42904
43054
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42918,7 +43068,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
|
|
|
42918
43068
|
}
|
|
42919
43069
|
exports.AbstractPredicateTransition = AbstractPredicateTransition;
|
|
42920
43070
|
|
|
42921
|
-
},{"./Transition":
|
|
43071
|
+
},{"./Transition":310}],257:[function(require,module,exports){
|
|
42922
43072
|
"use strict";
|
|
42923
43073
|
/*!
|
|
42924
43074
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42974,7 +43124,7 @@ ActionTransition = __decorate([
|
|
|
42974
43124
|
], ActionTransition);
|
|
42975
43125
|
exports.ActionTransition = ActionTransition;
|
|
42976
43126
|
|
|
42977
|
-
},{"../Decorators":
|
|
43127
|
+
},{"../Decorators":215,"./Transition":310}],258:[function(require,module,exports){
|
|
42978
43128
|
"use strict";
|
|
42979
43129
|
/*!
|
|
42980
43130
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43061,7 +43211,7 @@ AmbiguityInfo = __decorate([
|
|
|
43061
43211
|
], AmbiguityInfo);
|
|
43062
43212
|
exports.AmbiguityInfo = AmbiguityInfo;
|
|
43063
43213
|
|
|
43064
|
-
},{"../Decorators":
|
|
43214
|
+
},{"../Decorators":215,"./DecisionEventInfo":266}],259:[function(require,module,exports){
|
|
43065
43215
|
"use strict";
|
|
43066
43216
|
/*!
|
|
43067
43217
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43119,7 +43269,7 @@ AtomTransition = __decorate([
|
|
|
43119
43269
|
], AtomTransition);
|
|
43120
43270
|
exports.AtomTransition = AtomTransition;
|
|
43121
43271
|
|
|
43122
|
-
},{"../Decorators":
|
|
43272
|
+
},{"../Decorators":215,"../misc/IntervalSet":328,"./Transition":310}],260:[function(require,module,exports){
|
|
43123
43273
|
"use strict";
|
|
43124
43274
|
/*!
|
|
43125
43275
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43151,7 +43301,7 @@ __decorate([
|
|
|
43151
43301
|
], BasicBlockStartState.prototype, "stateType", null);
|
|
43152
43302
|
exports.BasicBlockStartState = BasicBlockStartState;
|
|
43153
43303
|
|
|
43154
|
-
},{"../Decorators":
|
|
43304
|
+
},{"../Decorators":215,"./ATNStateType":255,"./BlockStartState":263}],261:[function(require,module,exports){
|
|
43155
43305
|
"use strict";
|
|
43156
43306
|
/*!
|
|
43157
43307
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43183,7 +43333,7 @@ __decorate([
|
|
|
43183
43333
|
], BasicState.prototype, "stateType", null);
|
|
43184
43334
|
exports.BasicState = BasicState;
|
|
43185
43335
|
|
|
43186
|
-
},{"../Decorators":
|
|
43336
|
+
},{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],262:[function(require,module,exports){
|
|
43187
43337
|
"use strict";
|
|
43188
43338
|
/*!
|
|
43189
43339
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43212,7 +43362,7 @@ __decorate([
|
|
|
43212
43362
|
], BlockEndState.prototype, "stateType", null);
|
|
43213
43363
|
exports.BlockEndState = BlockEndState;
|
|
43214
43364
|
|
|
43215
|
-
},{"../Decorators":
|
|
43365
|
+
},{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],263:[function(require,module,exports){
|
|
43216
43366
|
"use strict";
|
|
43217
43367
|
/*!
|
|
43218
43368
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43226,7 +43376,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
|
|
|
43226
43376
|
}
|
|
43227
43377
|
exports.BlockStartState = BlockStartState;
|
|
43228
43378
|
|
|
43229
|
-
},{"./DecisionState":
|
|
43379
|
+
},{"./DecisionState":268}],264:[function(require,module,exports){
|
|
43230
43380
|
"use strict";
|
|
43231
43381
|
/*!
|
|
43232
43382
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43296,7 +43446,7 @@ __decorate([
|
|
|
43296
43446
|
], ConflictInfo.prototype, "hashCode", null);
|
|
43297
43447
|
exports.ConflictInfo = ConflictInfo;
|
|
43298
43448
|
|
|
43299
|
-
},{"../Decorators":
|
|
43449
|
+
},{"../Decorators":215,"../misc/Utils":334}],265:[function(require,module,exports){
|
|
43300
43450
|
"use strict";
|
|
43301
43451
|
/*!
|
|
43302
43452
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43356,7 +43506,7 @@ ContextSensitivityInfo = __decorate([
|
|
|
43356
43506
|
], ContextSensitivityInfo);
|
|
43357
43507
|
exports.ContextSensitivityInfo = ContextSensitivityInfo;
|
|
43358
43508
|
|
|
43359
|
-
},{"../Decorators":
|
|
43509
|
+
},{"../Decorators":215,"./DecisionEventInfo":266}],266:[function(require,module,exports){
|
|
43360
43510
|
"use strict";
|
|
43361
43511
|
/*!
|
|
43362
43512
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43408,7 +43558,7 @@ DecisionEventInfo = __decorate([
|
|
|
43408
43558
|
], DecisionEventInfo);
|
|
43409
43559
|
exports.DecisionEventInfo = DecisionEventInfo;
|
|
43410
43560
|
|
|
43411
|
-
},{"../Decorators":
|
|
43561
|
+
},{"../Decorators":215}],267:[function(require,module,exports){
|
|
43412
43562
|
"use strict";
|
|
43413
43563
|
/*!
|
|
43414
43564
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43621,7 +43771,7 @@ __decorate([
|
|
|
43621
43771
|
], DecisionInfo.prototype, "toString", null);
|
|
43622
43772
|
exports.DecisionInfo = DecisionInfo;
|
|
43623
43773
|
|
|
43624
|
-
},{"../Decorators":
|
|
43774
|
+
},{"../Decorators":215}],268:[function(require,module,exports){
|
|
43625
43775
|
"use strict";
|
|
43626
43776
|
/*!
|
|
43627
43777
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43641,7 +43791,7 @@ class DecisionState extends ATNState_1.ATNState {
|
|
|
43641
43791
|
}
|
|
43642
43792
|
exports.DecisionState = DecisionState;
|
|
43643
43793
|
|
|
43644
|
-
},{"./ATNState":
|
|
43794
|
+
},{"./ATNState":254}],269:[function(require,module,exports){
|
|
43645
43795
|
"use strict";
|
|
43646
43796
|
/*!
|
|
43647
43797
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43707,7 +43857,7 @@ EpsilonTransition = __decorate([
|
|
|
43707
43857
|
], EpsilonTransition);
|
|
43708
43858
|
exports.EpsilonTransition = EpsilonTransition;
|
|
43709
43859
|
|
|
43710
|
-
},{"../Decorators":
|
|
43860
|
+
},{"../Decorators":215,"./Transition":310}],270:[function(require,module,exports){
|
|
43711
43861
|
"use strict";
|
|
43712
43862
|
/*!
|
|
43713
43863
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43760,7 +43910,7 @@ ErrorInfo = __decorate([
|
|
|
43760
43910
|
], ErrorInfo);
|
|
43761
43911
|
exports.ErrorInfo = ErrorInfo;
|
|
43762
43912
|
|
|
43763
|
-
},{"../Decorators":
|
|
43913
|
+
},{"../Decorators":215,"./DecisionEventInfo":266}],271:[function(require,module,exports){
|
|
43764
43914
|
"use strict";
|
|
43765
43915
|
/*!
|
|
43766
43916
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43791,7 +43941,7 @@ __decorate([
|
|
|
43791
43941
|
], InvalidState.prototype, "stateType", null);
|
|
43792
43942
|
exports.InvalidState = InvalidState;
|
|
43793
43943
|
|
|
43794
|
-
},{"../Decorators":
|
|
43944
|
+
},{"../Decorators":215,"./ATNStateType":255,"./BasicState":261}],272:[function(require,module,exports){
|
|
43795
43945
|
"use strict";
|
|
43796
43946
|
/*!
|
|
43797
43947
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44013,7 +44163,7 @@ LL1Analyzer = __decorate([
|
|
|
44013
44163
|
], LL1Analyzer);
|
|
44014
44164
|
exports.LL1Analyzer = LL1Analyzer;
|
|
44015
44165
|
|
|
44016
|
-
},{"../Decorators":
|
|
44166
|
+
},{"../Decorators":215,"../Token":240,"../misc/Array2DHashSet":319,"../misc/BitSet":322,"../misc/IntervalSet":328,"../misc/ObjectEqualityComparator":331,"./ATNConfig":249,"./AbstractPredicateTransition":256,"./NotSetTransition":286,"./PredictionContext":295,"./RuleStopState":301,"./RuleTransition":302,"./WildcardTransition":311}],273:[function(require,module,exports){
|
|
44017
44167
|
"use strict";
|
|
44018
44168
|
/*!
|
|
44019
44169
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44730,7 +44880,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
|
|
|
44730
44880
|
})(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
|
|
44731
44881
|
exports.LexerATNSimulator = LexerATNSimulator;
|
|
44732
44882
|
|
|
44733
|
-
},{"../Decorators":
|
|
44883
|
+
},{"../Decorators":215,"../IntStream":221,"../Lexer":223,"../LexerNoViableAltException":225,"../Token":240,"../dfa/AcceptStateInfo":312,"../dfa/DFAState":315,"../misc/Interval":327,"./ATN":248,"./ATNConfig":249,"./ATNConfigSet":250,"./ATNSimulator":253,"./LexerActionExecutor":274,"./OrderedATNConfigSet":287,"./PredictionContext":295,"./RuleStopState":301,"assert":358}],274:[function(require,module,exports){
|
|
44734
44884
|
"use strict";
|
|
44735
44885
|
/*!
|
|
44736
44886
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44931,7 +45081,7 @@ LexerActionExecutor = __decorate([
|
|
|
44931
45081
|
], LexerActionExecutor);
|
|
44932
45082
|
exports.LexerActionExecutor = LexerActionExecutor;
|
|
44933
45083
|
|
|
44934
|
-
},{"../Decorators":
|
|
45084
|
+
},{"../Decorators":215,"../misc/ArrayEqualityComparator":320,"../misc/MurmurHash":330,"./LexerIndexedCustomAction":277}],275:[function(require,module,exports){
|
|
44935
45085
|
"use strict";
|
|
44936
45086
|
/*!
|
|
44937
45087
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45036,7 +45186,7 @@ __decorate([
|
|
|
45036
45186
|
], LexerChannelAction.prototype, "toString", null);
|
|
45037
45187
|
exports.LexerChannelAction = LexerChannelAction;
|
|
45038
45188
|
|
|
45039
|
-
},{"../Decorators":
|
|
45189
|
+
},{"../Decorators":215,"../misc/MurmurHash":330}],276:[function(require,module,exports){
|
|
45040
45190
|
"use strict";
|
|
45041
45191
|
/*!
|
|
45042
45192
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45165,7 +45315,7 @@ __decorate([
|
|
|
45165
45315
|
], LexerCustomAction.prototype, "equals", null);
|
|
45166
45316
|
exports.LexerCustomAction = LexerCustomAction;
|
|
45167
45317
|
|
|
45168
|
-
},{"../Decorators":
|
|
45318
|
+
},{"../Decorators":215,"../misc/MurmurHash":330}],277:[function(require,module,exports){
|
|
45169
45319
|
"use strict";
|
|
45170
45320
|
/*!
|
|
45171
45321
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45300,7 +45450,7 @@ LexerIndexedCustomAction = __decorate([
|
|
|
45300
45450
|
], LexerIndexedCustomAction);
|
|
45301
45451
|
exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
|
|
45302
45452
|
|
|
45303
|
-
},{"../Decorators":
|
|
45453
|
+
},{"../Decorators":215,"../misc/MurmurHash":330}],278:[function(require,module,exports){
|
|
45304
45454
|
"use strict";
|
|
45305
45455
|
/*!
|
|
45306
45456
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45405,7 +45555,7 @@ __decorate([
|
|
|
45405
45555
|
], LexerModeAction.prototype, "toString", null);
|
|
45406
45556
|
exports.LexerModeAction = LexerModeAction;
|
|
45407
45557
|
|
|
45408
|
-
},{"../Decorators":
|
|
45558
|
+
},{"../Decorators":215,"../misc/MurmurHash":330}],279:[function(require,module,exports){
|
|
45409
45559
|
"use strict";
|
|
45410
45560
|
/*!
|
|
45411
45561
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45501,7 +45651,7 @@ exports.LexerMoreAction = LexerMoreAction;
|
|
|
45501
45651
|
LexerMoreAction.INSTANCE = new LexerMoreAction();
|
|
45502
45652
|
})(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
|
|
45503
45653
|
|
|
45504
|
-
},{"../Decorators":
|
|
45654
|
+
},{"../Decorators":215,"../misc/MurmurHash":330}],280:[function(require,module,exports){
|
|
45505
45655
|
"use strict";
|
|
45506
45656
|
/*!
|
|
45507
45657
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45597,7 +45747,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
|
|
|
45597
45747
|
LexerPopModeAction.INSTANCE = new LexerPopModeAction();
|
|
45598
45748
|
})(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
|
|
45599
45749
|
|
|
45600
|
-
},{"../Decorators":
|
|
45750
|
+
},{"../Decorators":215,"../misc/MurmurHash":330}],281:[function(require,module,exports){
|
|
45601
45751
|
"use strict";
|
|
45602
45752
|
/*!
|
|
45603
45753
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45702,7 +45852,7 @@ __decorate([
|
|
|
45702
45852
|
], LexerPushModeAction.prototype, "toString", null);
|
|
45703
45853
|
exports.LexerPushModeAction = LexerPushModeAction;
|
|
45704
45854
|
|
|
45705
|
-
},{"../Decorators":
|
|
45855
|
+
},{"../Decorators":215,"../misc/MurmurHash":330}],282:[function(require,module,exports){
|
|
45706
45856
|
"use strict";
|
|
45707
45857
|
/*!
|
|
45708
45858
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45798,7 +45948,7 @@ exports.LexerSkipAction = LexerSkipAction;
|
|
|
45798
45948
|
LexerSkipAction.INSTANCE = new LexerSkipAction();
|
|
45799
45949
|
})(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
|
|
45800
45950
|
|
|
45801
|
-
},{"../Decorators":
|
|
45951
|
+
},{"../Decorators":215,"../misc/MurmurHash":330}],283:[function(require,module,exports){
|
|
45802
45952
|
"use strict";
|
|
45803
45953
|
/*!
|
|
45804
45954
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45902,7 +46052,7 @@ __decorate([
|
|
|
45902
46052
|
], LexerTypeAction.prototype, "toString", null);
|
|
45903
46053
|
exports.LexerTypeAction = LexerTypeAction;
|
|
45904
46054
|
|
|
45905
|
-
},{"../Decorators":
|
|
46055
|
+
},{"../Decorators":215,"../misc/MurmurHash":330}],284:[function(require,module,exports){
|
|
45906
46056
|
"use strict";
|
|
45907
46057
|
/*!
|
|
45908
46058
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45954,7 +46104,7 @@ LookaheadEventInfo = __decorate([
|
|
|
45954
46104
|
], LookaheadEventInfo);
|
|
45955
46105
|
exports.LookaheadEventInfo = LookaheadEventInfo;
|
|
45956
46106
|
|
|
45957
|
-
},{"../Decorators":
|
|
46107
|
+
},{"../Decorators":215,"./DecisionEventInfo":266}],285:[function(require,module,exports){
|
|
45958
46108
|
"use strict";
|
|
45959
46109
|
/*!
|
|
45960
46110
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45983,7 +46133,7 @@ __decorate([
|
|
|
45983
46133
|
], LoopEndState.prototype, "stateType", null);
|
|
45984
46134
|
exports.LoopEndState = LoopEndState;
|
|
45985
46135
|
|
|
45986
|
-
},{"../Decorators":
|
|
46136
|
+
},{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],286:[function(require,module,exports){
|
|
45987
46137
|
"use strict";
|
|
45988
46138
|
/*!
|
|
45989
46139
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46032,7 +46182,7 @@ NotSetTransition = __decorate([
|
|
|
46032
46182
|
], NotSetTransition);
|
|
46033
46183
|
exports.NotSetTransition = NotSetTransition;
|
|
46034
46184
|
|
|
46035
|
-
},{"../Decorators":
|
|
46185
|
+
},{"../Decorators":215,"./SetTransition":304}],287:[function(require,module,exports){
|
|
46036
46186
|
"use strict";
|
|
46037
46187
|
/*!
|
|
46038
46188
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46087,7 +46237,7 @@ __decorate([
|
|
|
46087
46237
|
], OrderedATNConfigSet.prototype, "canMerge", null);
|
|
46088
46238
|
exports.OrderedATNConfigSet = OrderedATNConfigSet;
|
|
46089
46239
|
|
|
46090
|
-
},{"../Decorators":
|
|
46240
|
+
},{"../Decorators":215,"./ATNConfigSet":250}],288:[function(require,module,exports){
|
|
46091
46241
|
"use strict";
|
|
46092
46242
|
/*!
|
|
46093
46243
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46249,7 +46399,7 @@ ParseInfo = __decorate([
|
|
|
46249
46399
|
], ParseInfo);
|
|
46250
46400
|
exports.ParseInfo = ParseInfo;
|
|
46251
46401
|
|
|
46252
|
-
},{"../Decorators":
|
|
46402
|
+
},{"../Decorators":215}],289:[function(require,module,exports){
|
|
46253
46403
|
"use strict";
|
|
46254
46404
|
/*!
|
|
46255
46405
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48522,7 +48672,7 @@ ParserATNSimulator = __decorate([
|
|
|
48522
48672
|
], ParserATNSimulator);
|
|
48523
48673
|
exports.ParserATNSimulator = ParserATNSimulator;
|
|
48524
48674
|
|
|
48525
|
-
},{"../Decorators":
|
|
48675
|
+
},{"../Decorators":215,"../IntStream":221,"../NoViableAltException":227,"../ParserRuleContext":231,"../Token":240,"../VocabularyImpl":246,"../dfa/AcceptStateInfo":312,"../dfa/DFAState":315,"../misc/Array2DHashSet":319,"../misc/Arrays":321,"../misc/BitSet":322,"../misc/IntegerList":325,"../misc/Interval":327,"../misc/ObjectEqualityComparator":331,"./ATN":248,"./ATNConfig":249,"./ATNConfigSet":250,"./ATNSimulator":253,"./ATNStateType":255,"./ActionTransition":257,"./AtomTransition":259,"./ConflictInfo":264,"./DecisionState":268,"./NotSetTransition":286,"./PredictionContext":295,"./PredictionContextCache":296,"./PredictionMode":297,"./RuleStopState":301,"./RuleTransition":302,"./SemanticContext":303,"./SetTransition":304,"./SimulatorState":305,"assert":358}],290:[function(require,module,exports){
|
|
48526
48676
|
"use strict";
|
|
48527
48677
|
/*!
|
|
48528
48678
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48555,7 +48705,7 @@ __decorate([
|
|
|
48555
48705
|
], PlusBlockStartState.prototype, "stateType", null);
|
|
48556
48706
|
exports.PlusBlockStartState = PlusBlockStartState;
|
|
48557
48707
|
|
|
48558
|
-
},{"../Decorators":
|
|
48708
|
+
},{"../Decorators":215,"./ATNStateType":255,"./BlockStartState":263}],291:[function(require,module,exports){
|
|
48559
48709
|
"use strict";
|
|
48560
48710
|
/*!
|
|
48561
48711
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48586,7 +48736,7 @@ __decorate([
|
|
|
48586
48736
|
], PlusLoopbackState.prototype, "stateType", null);
|
|
48587
48737
|
exports.PlusLoopbackState = PlusLoopbackState;
|
|
48588
48738
|
|
|
48589
|
-
},{"../Decorators":
|
|
48739
|
+
},{"../Decorators":215,"./ATNStateType":255,"./DecisionState":268}],292:[function(require,module,exports){
|
|
48590
48740
|
"use strict";
|
|
48591
48741
|
/*!
|
|
48592
48742
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48649,7 +48799,7 @@ PrecedencePredicateTransition = __decorate([
|
|
|
48649
48799
|
], PrecedencePredicateTransition);
|
|
48650
48800
|
exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
|
|
48651
48801
|
|
|
48652
|
-
},{"../Decorators":
|
|
48802
|
+
},{"../Decorators":215,"./AbstractPredicateTransition":256,"./SemanticContext":303}],293:[function(require,module,exports){
|
|
48653
48803
|
"use strict";
|
|
48654
48804
|
/*!
|
|
48655
48805
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48712,7 +48862,7 @@ PredicateEvalInfo = __decorate([
|
|
|
48712
48862
|
], PredicateEvalInfo);
|
|
48713
48863
|
exports.PredicateEvalInfo = PredicateEvalInfo;
|
|
48714
48864
|
|
|
48715
|
-
},{"../Decorators":
|
|
48865
|
+
},{"../Decorators":215,"./DecisionEventInfo":266}],294:[function(require,module,exports){
|
|
48716
48866
|
"use strict";
|
|
48717
48867
|
/*!
|
|
48718
48868
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48778,7 +48928,7 @@ PredicateTransition = __decorate([
|
|
|
48778
48928
|
], PredicateTransition);
|
|
48779
48929
|
exports.PredicateTransition = PredicateTransition;
|
|
48780
48930
|
|
|
48781
|
-
},{"../Decorators":
|
|
48931
|
+
},{"../Decorators":215,"./AbstractPredicateTransition":256,"./SemanticContext":303}],295:[function(require,module,exports){
|
|
48782
48932
|
"use strict";
|
|
48783
48933
|
/*!
|
|
48784
48934
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49469,7 +49619,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
|
|
|
49469
49619
|
PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
|
|
49470
49620
|
})(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
|
|
49471
49621
|
|
|
49472
|
-
},{"../Decorators":
|
|
49622
|
+
},{"../Decorators":215,"../misc/Array2DHashMap":318,"../misc/Array2DHashSet":319,"../misc/Arrays":321,"../misc/MurmurHash":330,"./PredictionContextCache":296,"assert":358}],296:[function(require,module,exports){
|
|
49473
49623
|
"use strict";
|
|
49474
49624
|
/*!
|
|
49475
49625
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49610,7 +49760,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
|
|
|
49610
49760
|
PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
|
|
49611
49761
|
})(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
|
|
49612
49762
|
|
|
49613
|
-
},{"../Decorators":
|
|
49763
|
+
},{"../Decorators":215,"../misc/Array2DHashMap":318,"../misc/ObjectEqualityComparator":331,"./PredictionContext":295,"assert":358}],297:[function(require,module,exports){
|
|
49614
49764
|
"use strict";
|
|
49615
49765
|
/*!
|
|
49616
49766
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49771,7 +49921,7 @@ var PredictionMode;
|
|
|
49771
49921
|
PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
|
|
49772
49922
|
})(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
|
|
49773
49923
|
|
|
49774
|
-
},{"../Decorators":
|
|
49924
|
+
},{"../Decorators":215,"../misc/Array2DHashMap":318,"../misc/MurmurHash":330,"./RuleStopState":301}],298:[function(require,module,exports){
|
|
49775
49925
|
(function (process){(function (){
|
|
49776
49926
|
"use strict";
|
|
49777
49927
|
/*!
|
|
@@ -50040,7 +50190,7 @@ __decorate([
|
|
|
50040
50190
|
exports.ProfilingATNSimulator = ProfilingATNSimulator;
|
|
50041
50191
|
|
|
50042
50192
|
}).call(this)}).call(this,require('_process'))
|
|
50043
|
-
},{"../Decorators":
|
|
50193
|
+
},{"../Decorators":215,"./ATN":248,"./ATNSimulator":253,"./AmbiguityInfo":258,"./ContextSensitivityInfo":265,"./DecisionInfo":267,"./ErrorInfo":270,"./LookaheadEventInfo":284,"./ParserATNSimulator":289,"./PredicateEvalInfo":293,"./SemanticContext":303,"./SimulatorState":305,"_process":417}],299:[function(require,module,exports){
|
|
50044
50194
|
"use strict";
|
|
50045
50195
|
/*!
|
|
50046
50196
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50098,7 +50248,7 @@ RangeTransition = __decorate([
|
|
|
50098
50248
|
], RangeTransition);
|
|
50099
50249
|
exports.RangeTransition = RangeTransition;
|
|
50100
50250
|
|
|
50101
|
-
},{"../Decorators":
|
|
50251
|
+
},{"../Decorators":215,"../misc/IntervalSet":328,"./Transition":310}],300:[function(require,module,exports){
|
|
50102
50252
|
"use strict";
|
|
50103
50253
|
/*!
|
|
50104
50254
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50131,7 +50281,7 @@ __decorate([
|
|
|
50131
50281
|
], RuleStartState.prototype, "stateType", null);
|
|
50132
50282
|
exports.RuleStartState = RuleStartState;
|
|
50133
50283
|
|
|
50134
|
-
},{"../Decorators":
|
|
50284
|
+
},{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],301:[function(require,module,exports){
|
|
50135
50285
|
"use strict";
|
|
50136
50286
|
/*!
|
|
50137
50287
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50170,7 +50320,7 @@ __decorate([
|
|
|
50170
50320
|
], RuleStopState.prototype, "stateType", null);
|
|
50171
50321
|
exports.RuleStopState = RuleStopState;
|
|
50172
50322
|
|
|
50173
|
-
},{"../Decorators":
|
|
50323
|
+
},{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],302:[function(require,module,exports){
|
|
50174
50324
|
"use strict";
|
|
50175
50325
|
/*!
|
|
50176
50326
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50226,7 +50376,7 @@ RuleTransition = __decorate([
|
|
|
50226
50376
|
], RuleTransition);
|
|
50227
50377
|
exports.RuleTransition = RuleTransition;
|
|
50228
50378
|
|
|
50229
|
-
},{"../Decorators":
|
|
50379
|
+
},{"../Decorators":215,"./Transition":310}],303:[function(require,module,exports){
|
|
50230
50380
|
"use strict";
|
|
50231
50381
|
/*!
|
|
50232
50382
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50706,7 +50856,7 @@ exports.SemanticContext = SemanticContext;
|
|
|
50706
50856
|
SemanticContext.OR = OR;
|
|
50707
50857
|
})(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
|
|
50708
50858
|
|
|
50709
|
-
},{"../Decorators":
|
|
50859
|
+
},{"../Decorators":215,"../misc/Array2DHashSet":319,"../misc/ArrayEqualityComparator":320,"../misc/MurmurHash":330,"../misc/ObjectEqualityComparator":331,"../misc/Utils":334}],304:[function(require,module,exports){
|
|
50710
50860
|
"use strict";
|
|
50711
50861
|
/*!
|
|
50712
50862
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50772,7 +50922,7 @@ SetTransition = __decorate([
|
|
|
50772
50922
|
], SetTransition);
|
|
50773
50923
|
exports.SetTransition = SetTransition;
|
|
50774
50924
|
|
|
50775
|
-
},{"../Decorators":
|
|
50925
|
+
},{"../Decorators":215,"../Token":240,"../misc/IntervalSet":328,"./Transition":310}],305:[function(require,module,exports){
|
|
50776
50926
|
"use strict";
|
|
50777
50927
|
/*!
|
|
50778
50928
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50808,7 +50958,7 @@ SimulatorState = __decorate([
|
|
|
50808
50958
|
], SimulatorState);
|
|
50809
50959
|
exports.SimulatorState = SimulatorState;
|
|
50810
50960
|
|
|
50811
|
-
},{"../Decorators":
|
|
50961
|
+
},{"../Decorators":215,"../ParserRuleContext":231}],306:[function(require,module,exports){
|
|
50812
50962
|
"use strict";
|
|
50813
50963
|
/*!
|
|
50814
50964
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50836,7 +50986,7 @@ __decorate([
|
|
|
50836
50986
|
], StarBlockStartState.prototype, "stateType", null);
|
|
50837
50987
|
exports.StarBlockStartState = StarBlockStartState;
|
|
50838
50988
|
|
|
50839
|
-
},{"../Decorators":
|
|
50989
|
+
},{"../Decorators":215,"./ATNStateType":255,"./BlockStartState":263}],307:[function(require,module,exports){
|
|
50840
50990
|
"use strict";
|
|
50841
50991
|
/*!
|
|
50842
50992
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50893,7 +51043,7 @@ __decorate([
|
|
|
50893
51043
|
], StarLoopEntryState.prototype, "stateType", null);
|
|
50894
51044
|
exports.StarLoopEntryState = StarLoopEntryState;
|
|
50895
51045
|
|
|
50896
|
-
},{"../Decorators":
|
|
51046
|
+
},{"../Decorators":215,"../misc/BitSet":322,"./ATNStateType":255,"./DecisionState":268}],308:[function(require,module,exports){
|
|
50897
51047
|
"use strict";
|
|
50898
51048
|
/*!
|
|
50899
51049
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50924,7 +51074,7 @@ __decorate([
|
|
|
50924
51074
|
], StarLoopbackState.prototype, "stateType", null);
|
|
50925
51075
|
exports.StarLoopbackState = StarLoopbackState;
|
|
50926
51076
|
|
|
50927
|
-
},{"../Decorators":
|
|
51077
|
+
},{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],309:[function(require,module,exports){
|
|
50928
51078
|
"use strict";
|
|
50929
51079
|
/*!
|
|
50930
51080
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50953,7 +51103,7 @@ __decorate([
|
|
|
50953
51103
|
], TokensStartState.prototype, "stateType", null);
|
|
50954
51104
|
exports.TokensStartState = TokensStartState;
|
|
50955
51105
|
|
|
50956
|
-
},{"../Decorators":
|
|
51106
|
+
},{"../Decorators":215,"./ATNStateType":255,"./DecisionState":268}],310:[function(require,module,exports){
|
|
50957
51107
|
"use strict";
|
|
50958
51108
|
/*!
|
|
50959
51109
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51027,7 +51177,7 @@ Transition = __decorate([
|
|
|
51027
51177
|
], Transition);
|
|
51028
51178
|
exports.Transition = Transition;
|
|
51029
51179
|
|
|
51030
|
-
},{"../Decorators":
|
|
51180
|
+
},{"../Decorators":215}],311:[function(require,module,exports){
|
|
51031
51181
|
"use strict";
|
|
51032
51182
|
/*!
|
|
51033
51183
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51075,7 +51225,7 @@ WildcardTransition = __decorate([
|
|
|
51075
51225
|
], WildcardTransition);
|
|
51076
51226
|
exports.WildcardTransition = WildcardTransition;
|
|
51077
51227
|
|
|
51078
|
-
},{"../Decorators":
|
|
51228
|
+
},{"../Decorators":215,"./Transition":310}],312:[function(require,module,exports){
|
|
51079
51229
|
"use strict";
|
|
51080
51230
|
/*!
|
|
51081
51231
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51117,7 +51267,7 @@ class AcceptStateInfo {
|
|
|
51117
51267
|
}
|
|
51118
51268
|
exports.AcceptStateInfo = AcceptStateInfo;
|
|
51119
51269
|
|
|
51120
|
-
},{}],
|
|
51270
|
+
},{}],313:[function(require,module,exports){
|
|
51121
51271
|
"use strict";
|
|
51122
51272
|
/*!
|
|
51123
51273
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51292,7 +51442,7 @@ DFA = __decorate([
|
|
|
51292
51442
|
], DFA);
|
|
51293
51443
|
exports.DFA = DFA;
|
|
51294
51444
|
|
|
51295
|
-
},{"../Decorators":
|
|
51445
|
+
},{"../Decorators":215,"../VocabularyImpl":246,"../atn/ATNConfigSet":250,"../atn/StarLoopEntryState":307,"../misc/Array2DHashSet":319,"../misc/ObjectEqualityComparator":331,"./DFASerializer":314,"./DFAState":315,"./LexerDFASerializer":316}],314:[function(require,module,exports){
|
|
51296
51446
|
"use strict";
|
|
51297
51447
|
/*!
|
|
51298
51448
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51434,7 +51584,7 @@ __decorate([
|
|
|
51434
51584
|
], DFASerializer.prototype, "toString", null);
|
|
51435
51585
|
exports.DFASerializer = DFASerializer;
|
|
51436
51586
|
|
|
51437
|
-
},{"../Decorators":
|
|
51587
|
+
},{"../Decorators":215,"../Recognizer":235,"../VocabularyImpl":246,"../atn/ATNSimulator":253,"../atn/PredictionContext":295}],315:[function(require,module,exports){
|
|
51438
51588
|
"use strict";
|
|
51439
51589
|
/*!
|
|
51440
51590
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51665,7 +51815,7 @@ exports.DFAState = DFAState;
|
|
|
51665
51815
|
DFAState.PredPrediction = PredPrediction;
|
|
51666
51816
|
})(DFAState = exports.DFAState || (exports.DFAState = {}));
|
|
51667
51817
|
|
|
51668
|
-
},{"../Decorators":
|
|
51818
|
+
},{"../Decorators":215,"../atn/ATN":248,"../atn/PredictionContext":295,"../misc/BitSet":322,"../misc/MurmurHash":330,"assert":358}],316:[function(require,module,exports){
|
|
51669
51819
|
"use strict";
|
|
51670
51820
|
/*!
|
|
51671
51821
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51702,7 +51852,7 @@ LexerDFASerializer = __decorate([
|
|
|
51702
51852
|
], LexerDFASerializer);
|
|
51703
51853
|
exports.LexerDFASerializer = LexerDFASerializer;
|
|
51704
51854
|
|
|
51705
|
-
},{"../Decorators":
|
|
51855
|
+
},{"../Decorators":215,"../VocabularyImpl":246,"./DFASerializer":314}],317:[function(require,module,exports){
|
|
51706
51856
|
"use strict";
|
|
51707
51857
|
/*!
|
|
51708
51858
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51768,7 +51918,7 @@ __exportStar(require("./Vocabulary"), exports);
|
|
|
51768
51918
|
__exportStar(require("./VocabularyImpl"), exports);
|
|
51769
51919
|
__exportStar(require("./WritableToken"), exports);
|
|
51770
51920
|
|
|
51771
|
-
},{"./ANTLRErrorListener":
|
|
51921
|
+
},{"./ANTLRErrorListener":202,"./ANTLRErrorStrategy":203,"./ANTLRInputStream":204,"./BailErrorStrategy":205,"./BufferedTokenStream":206,"./CharStream":207,"./CharStreams":208,"./CodePointBuffer":209,"./CodePointCharStream":210,"./CommonToken":211,"./CommonTokenFactory":212,"./CommonTokenStream":213,"./ConsoleErrorListener":214,"./DefaultErrorStrategy":216,"./Dependents":217,"./DiagnosticErrorListener":218,"./FailedPredicateException":219,"./InputMismatchException":220,"./IntStream":221,"./InterpreterRuleContext":222,"./Lexer":223,"./LexerInterpreter":224,"./LexerNoViableAltException":225,"./ListTokenSource":226,"./NoViableAltException":227,"./Parser":228,"./ParserErrorListener":229,"./ParserInterpreter":230,"./ParserRuleContext":231,"./ProxyErrorListener":232,"./ProxyParserErrorListener":233,"./RecognitionException":234,"./Recognizer":235,"./RuleContext":236,"./RuleContextWithAltNum":237,"./RuleDependency":238,"./RuleVersion":239,"./Token":240,"./TokenFactory":241,"./TokenSource":242,"./TokenStream":243,"./TokenStreamRewriter":244,"./Vocabulary":245,"./VocabularyImpl":246,"./WritableToken":247}],318:[function(require,module,exports){
|
|
51772
51922
|
"use strict";
|
|
51773
51923
|
/*!
|
|
51774
51924
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51851,7 +52001,7 @@ class Array2DHashMap {
|
|
|
51851
52001
|
}
|
|
51852
52002
|
exports.Array2DHashMap = Array2DHashMap;
|
|
51853
52003
|
|
|
51854
|
-
},{"./Array2DHashSet":
|
|
52004
|
+
},{"./Array2DHashSet":319}],319:[function(require,module,exports){
|
|
51855
52005
|
"use strict";
|
|
51856
52006
|
/*!
|
|
51857
52007
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52218,7 +52368,7 @@ __decorate([
|
|
|
52218
52368
|
], Array2DHashSet.prototype, "createBuckets", null);
|
|
52219
52369
|
exports.Array2DHashSet = Array2DHashSet;
|
|
52220
52370
|
|
|
52221
|
-
},{"../Decorators":
|
|
52371
|
+
},{"../Decorators":215,"./DefaultEqualityComparator":324,"./MurmurHash":330,"assert":358}],320:[function(require,module,exports){
|
|
52222
52372
|
"use strict";
|
|
52223
52373
|
/*!
|
|
52224
52374
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52290,7 +52440,7 @@ __decorate([
|
|
|
52290
52440
|
], ArrayEqualityComparator.prototype, "equals", null);
|
|
52291
52441
|
exports.ArrayEqualityComparator = ArrayEqualityComparator;
|
|
52292
52442
|
|
|
52293
|
-
},{"../Decorators":
|
|
52443
|
+
},{"../Decorators":215,"./MurmurHash":330,"./ObjectEqualityComparator":331}],321:[function(require,module,exports){
|
|
52294
52444
|
"use strict";
|
|
52295
52445
|
/*!
|
|
52296
52446
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52360,7 +52510,7 @@ var Arrays;
|
|
|
52360
52510
|
Arrays.toString = toString;
|
|
52361
52511
|
})(Arrays = exports.Arrays || (exports.Arrays = {}));
|
|
52362
52512
|
|
|
52363
|
-
},{}],
|
|
52513
|
+
},{}],322:[function(require,module,exports){
|
|
52364
52514
|
"use strict";
|
|
52365
52515
|
/*!
|
|
52366
52516
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53032,7 +53182,7 @@ class BitSetIterator {
|
|
|
53032
53182
|
[Symbol.iterator]() { return this; }
|
|
53033
53183
|
}
|
|
53034
53184
|
|
|
53035
|
-
},{"./MurmurHash":
|
|
53185
|
+
},{"./MurmurHash":330,"util":422}],323:[function(require,module,exports){
|
|
53036
53186
|
"use strict";
|
|
53037
53187
|
/*!
|
|
53038
53188
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53053,7 +53203,7 @@ function isSupplementaryCodePoint(ch) {
|
|
|
53053
53203
|
}
|
|
53054
53204
|
exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
|
|
53055
53205
|
|
|
53056
|
-
},{}],
|
|
53206
|
+
},{}],324:[function(require,module,exports){
|
|
53057
53207
|
"use strict";
|
|
53058
53208
|
/*!
|
|
53059
53209
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53124,7 +53274,7 @@ __decorate([
|
|
|
53124
53274
|
], DefaultEqualityComparator.prototype, "equals", null);
|
|
53125
53275
|
exports.DefaultEqualityComparator = DefaultEqualityComparator;
|
|
53126
53276
|
|
|
53127
|
-
},{"../Decorators":
|
|
53277
|
+
},{"../Decorators":215,"./MurmurHash":330,"./ObjectEqualityComparator":331}],325:[function(require,module,exports){
|
|
53128
53278
|
"use strict";
|
|
53129
53279
|
/*!
|
|
53130
53280
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53418,7 +53568,7 @@ __decorate([
|
|
|
53418
53568
|
], IntegerList.prototype, "toString", null);
|
|
53419
53569
|
exports.IntegerList = IntegerList;
|
|
53420
53570
|
|
|
53421
|
-
},{"../Decorators":
|
|
53571
|
+
},{"../Decorators":215,"./Arrays":321}],326:[function(require,module,exports){
|
|
53422
53572
|
"use strict";
|
|
53423
53573
|
/*!
|
|
53424
53574
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53448,7 +53598,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
|
|
|
53448
53598
|
}
|
|
53449
53599
|
exports.IntegerStack = IntegerStack;
|
|
53450
53600
|
|
|
53451
|
-
},{"./IntegerList":
|
|
53601
|
+
},{"./IntegerList":325}],327:[function(require,module,exports){
|
|
53452
53602
|
"use strict";
|
|
53453
53603
|
/*!
|
|
53454
53604
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53591,7 +53741,7 @@ __decorate([
|
|
|
53591
53741
|
], Interval.prototype, "toString", null);
|
|
53592
53742
|
exports.Interval = Interval;
|
|
53593
53743
|
|
|
53594
|
-
},{"../Decorators":
|
|
53744
|
+
},{"../Decorators":215}],328:[function(require,module,exports){
|
|
53595
53745
|
"use strict";
|
|
53596
53746
|
/*!
|
|
53597
53747
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54237,7 +54387,7 @@ __decorate([
|
|
|
54237
54387
|
], IntervalSet, "subtract", null);
|
|
54238
54388
|
exports.IntervalSet = IntervalSet;
|
|
54239
54389
|
|
|
54240
|
-
},{"../Decorators":
|
|
54390
|
+
},{"../Decorators":215,"../Lexer":223,"../Token":240,"./ArrayEqualityComparator":320,"./IntegerList":325,"./Interval":327,"./MurmurHash":330}],329:[function(require,module,exports){
|
|
54241
54391
|
"use strict";
|
|
54242
54392
|
/*!
|
|
54243
54393
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54270,7 +54420,7 @@ class MultiMap extends Map {
|
|
|
54270
54420
|
}
|
|
54271
54421
|
exports.MultiMap = MultiMap;
|
|
54272
54422
|
|
|
54273
|
-
},{}],
|
|
54423
|
+
},{}],330:[function(require,module,exports){
|
|
54274
54424
|
"use strict";
|
|
54275
54425
|
/*!
|
|
54276
54426
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54385,7 +54535,7 @@ var MurmurHash;
|
|
|
54385
54535
|
}
|
|
54386
54536
|
})(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
|
|
54387
54537
|
|
|
54388
|
-
},{}],
|
|
54538
|
+
},{}],331:[function(require,module,exports){
|
|
54389
54539
|
"use strict";
|
|
54390
54540
|
/*!
|
|
54391
54541
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54444,7 +54594,7 @@ __decorate([
|
|
|
54444
54594
|
], ObjectEqualityComparator.prototype, "equals", null);
|
|
54445
54595
|
exports.ObjectEqualityComparator = ObjectEqualityComparator;
|
|
54446
54596
|
|
|
54447
|
-
},{"../Decorators":
|
|
54597
|
+
},{"../Decorators":215}],332:[function(require,module,exports){
|
|
54448
54598
|
"use strict";
|
|
54449
54599
|
/*!
|
|
54450
54600
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54473,7 +54623,7 @@ class ParseCancellationException extends Error {
|
|
|
54473
54623
|
}
|
|
54474
54624
|
exports.ParseCancellationException = ParseCancellationException;
|
|
54475
54625
|
|
|
54476
|
-
},{}],
|
|
54626
|
+
},{}],333:[function(require,module,exports){
|
|
54477
54627
|
"use strict";
|
|
54478
54628
|
/*!
|
|
54479
54629
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54527,7 +54677,7 @@ class UUID {
|
|
|
54527
54677
|
}
|
|
54528
54678
|
exports.UUID = UUID;
|
|
54529
54679
|
|
|
54530
|
-
},{"./MurmurHash":
|
|
54680
|
+
},{"./MurmurHash":330}],334:[function(require,module,exports){
|
|
54531
54681
|
"use strict";
|
|
54532
54682
|
/*!
|
|
54533
54683
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54702,7 +54852,7 @@ exports.toCharArray = toCharArray;
|
|
|
54702
54852
|
// return s;
|
|
54703
54853
|
// }
|
|
54704
54854
|
|
|
54705
|
-
},{}],
|
|
54855
|
+
},{}],335:[function(require,module,exports){
|
|
54706
54856
|
"use strict";
|
|
54707
54857
|
/*!
|
|
54708
54858
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54738,7 +54888,7 @@ __decorate([
|
|
|
54738
54888
|
], ErrorNode.prototype, "accept", null);
|
|
54739
54889
|
exports.ErrorNode = ErrorNode;
|
|
54740
54890
|
|
|
54741
|
-
},{"../Decorators":
|
|
54891
|
+
},{"../Decorators":215,"./TerminalNode":338}],336:[function(require,module,exports){
|
|
54742
54892
|
"use strict";
|
|
54743
54893
|
/*!
|
|
54744
54894
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54843,7 +54993,7 @@ exports.ParseTreeWalker = ParseTreeWalker;
|
|
|
54843
54993
|
ParseTreeWalker.DEFAULT = new ParseTreeWalker();
|
|
54844
54994
|
})(ParseTreeWalker = exports.ParseTreeWalker || (exports.ParseTreeWalker = {}));
|
|
54845
54995
|
|
|
54846
|
-
},{"./ErrorNode":
|
|
54996
|
+
},{"./ErrorNode":335,"./RuleNode":337,"./TerminalNode":338}],337:[function(require,module,exports){
|
|
54847
54997
|
"use strict";
|
|
54848
54998
|
/*!
|
|
54849
54999
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54855,7 +55005,7 @@ class RuleNode {
|
|
|
54855
55005
|
}
|
|
54856
55006
|
exports.RuleNode = RuleNode;
|
|
54857
55007
|
|
|
54858
|
-
},{}],
|
|
55008
|
+
},{}],338:[function(require,module,exports){
|
|
54859
55009
|
"use strict";
|
|
54860
55010
|
/*!
|
|
54861
55011
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54947,7 +55097,7 @@ __decorate([
|
|
|
54947
55097
|
], TerminalNode.prototype, "toString", null);
|
|
54948
55098
|
exports.TerminalNode = TerminalNode;
|
|
54949
55099
|
|
|
54950
|
-
},{"../Decorators":
|
|
55100
|
+
},{"../Decorators":215,"../Token":240,"../misc/Interval":327}],339:[function(require,module,exports){
|
|
54951
55101
|
"use strict";
|
|
54952
55102
|
/*!
|
|
54953
55103
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55191,7 +55341,7 @@ __decorate([
|
|
|
55191
55341
|
], Trees, "getRootOfSubtreeEnclosingRegion", null);
|
|
55192
55342
|
exports.Trees = Trees;
|
|
55193
55343
|
|
|
55194
|
-
},{"../CommonToken":
|
|
55344
|
+
},{"../CommonToken":211,"../Decorators":215,"../Parser":228,"../ParserRuleContext":231,"../Token":240,"../atn/ATN":248,"../misc/Utils":334,"./ErrorNode":335,"./RuleNode":337,"./TerminalNode":338}],340:[function(require,module,exports){
|
|
55195
55345
|
"use strict";
|
|
55196
55346
|
/*!
|
|
55197
55347
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55215,7 +55365,7 @@ class Chunk {
|
|
|
55215
55365
|
}
|
|
55216
55366
|
exports.Chunk = Chunk;
|
|
55217
55367
|
|
|
55218
|
-
},{}],
|
|
55368
|
+
},{}],341:[function(require,module,exports){
|
|
55219
55369
|
"use strict";
|
|
55220
55370
|
/*!
|
|
55221
55371
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55395,7 +55545,7 @@ ParseTreeMatch = __decorate([
|
|
|
55395
55545
|
], ParseTreeMatch);
|
|
55396
55546
|
exports.ParseTreeMatch = ParseTreeMatch;
|
|
55397
55547
|
|
|
55398
|
-
},{"../../Decorators":
|
|
55548
|
+
},{"../../Decorators":215}],342:[function(require,module,exports){
|
|
55399
55549
|
"use strict";
|
|
55400
55550
|
/*!
|
|
55401
55551
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55553,7 +55703,7 @@ ParseTreePattern = __decorate([
|
|
|
55553
55703
|
], ParseTreePattern);
|
|
55554
55704
|
exports.ParseTreePattern = ParseTreePattern;
|
|
55555
55705
|
|
|
55556
|
-
},{"../../Decorators":
|
|
55706
|
+
},{"../../Decorators":215,"../xpath/XPath":348}],343:[function(require,module,exports){
|
|
55557
55707
|
"use strict";
|
|
55558
55708
|
/*!
|
|
55559
55709
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56031,7 +56181,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
|
|
|
56031
56181
|
ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
|
|
56032
56182
|
})(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
|
|
56033
56183
|
|
|
56034
|
-
},{"../../BailErrorStrategy":
|
|
56184
|
+
},{"../../BailErrorStrategy":205,"../../CharStreams":208,"../../CommonTokenStream":213,"../../Decorators":215,"../../ListTokenSource":226,"../../ParserInterpreter":230,"../../ParserRuleContext":231,"../../RecognitionException":234,"../../Token":240,"../../misc/MultiMap":329,"../../misc/ParseCancellationException":332,"../RuleNode":337,"../TerminalNode":338,"./ParseTreeMatch":341,"./ParseTreePattern":342,"./RuleTagToken":344,"./TagChunk":345,"./TextChunk":346,"./TokenTagToken":347}],344:[function(require,module,exports){
|
|
56035
56185
|
"use strict";
|
|
56036
56186
|
/*!
|
|
56037
56187
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56229,7 +56379,7 @@ RuleTagToken = __decorate([
|
|
|
56229
56379
|
], RuleTagToken);
|
|
56230
56380
|
exports.RuleTagToken = RuleTagToken;
|
|
56231
56381
|
|
|
56232
|
-
},{"../../Decorators":
|
|
56382
|
+
},{"../../Decorators":215,"../../Token":240}],345:[function(require,module,exports){
|
|
56233
56383
|
"use strict";
|
|
56234
56384
|
/*!
|
|
56235
56385
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56316,7 +56466,7 @@ __decorate([
|
|
|
56316
56466
|
], TagChunk.prototype, "toString", null);
|
|
56317
56467
|
exports.TagChunk = TagChunk;
|
|
56318
56468
|
|
|
56319
|
-
},{"../../Decorators":
|
|
56469
|
+
},{"../../Decorators":215,"./Chunk":340}],346:[function(require,module,exports){
|
|
56320
56470
|
"use strict";
|
|
56321
56471
|
/*!
|
|
56322
56472
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56386,7 +56536,7 @@ TextChunk = __decorate([
|
|
|
56386
56536
|
], TextChunk);
|
|
56387
56537
|
exports.TextChunk = TextChunk;
|
|
56388
56538
|
|
|
56389
|
-
},{"../../Decorators":
|
|
56539
|
+
},{"../../Decorators":215,"./Chunk":340}],347:[function(require,module,exports){
|
|
56390
56540
|
"use strict";
|
|
56391
56541
|
/*!
|
|
56392
56542
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56481,7 +56631,7 @@ TokenTagToken = __decorate([
|
|
|
56481
56631
|
], TokenTagToken);
|
|
56482
56632
|
exports.TokenTagToken = TokenTagToken;
|
|
56483
56633
|
|
|
56484
|
-
},{"../../CommonToken":
|
|
56634
|
+
},{"../../CommonToken":211,"../../Decorators":215}],348:[function(require,module,exports){
|
|
56485
56635
|
"use strict";
|
|
56486
56636
|
/*!
|
|
56487
56637
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56678,7 +56828,7 @@ exports.XPath = XPath;
|
|
|
56678
56828
|
XPath.WILDCARD = "*"; // word not operator/separator
|
|
56679
56829
|
XPath.NOT = "!"; // word for invert operator
|
|
56680
56830
|
|
|
56681
|
-
},{"../../CharStreams":
|
|
56831
|
+
},{"../../CharStreams":208,"../../CommonTokenStream":213,"../../LexerNoViableAltException":225,"../../ParserRuleContext":231,"../../Token":240,"./XPathLexer":350,"./XPathLexerErrorListener":351,"./XPathRuleAnywhereElement":352,"./XPathRuleElement":353,"./XPathTokenAnywhereElement":354,"./XPathTokenElement":355,"./XPathWildcardAnywhereElement":356,"./XPathWildcardElement":357}],349:[function(require,module,exports){
|
|
56682
56832
|
"use strict";
|
|
56683
56833
|
/*!
|
|
56684
56834
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56713,7 +56863,7 @@ __decorate([
|
|
|
56713
56863
|
], XPathElement.prototype, "toString", null);
|
|
56714
56864
|
exports.XPathElement = XPathElement;
|
|
56715
56865
|
|
|
56716
|
-
},{"../../Decorators":
|
|
56866
|
+
},{"../../Decorators":215}],350:[function(require,module,exports){
|
|
56717
56867
|
"use strict";
|
|
56718
56868
|
// Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
56719
56869
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -57188,7 +57338,7 @@ XPathLexer._serializedATN = Utils.join([
|
|
|
57188
57338
|
XPathLexer._serializedATNSegment1,
|
|
57189
57339
|
], "");
|
|
57190
57340
|
|
|
57191
|
-
},{"../../Lexer":
|
|
57341
|
+
},{"../../Lexer":223,"../../VocabularyImpl":246,"../../atn/ATNDeserializer":252,"../../atn/LexerATNSimulator":273,"../../misc/Utils":334}],351:[function(require,module,exports){
|
|
57192
57342
|
"use strict";
|
|
57193
57343
|
/*!
|
|
57194
57344
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57213,7 +57363,7 @@ __decorate([
|
|
|
57213
57363
|
], XPathLexerErrorListener.prototype, "syntaxError", null);
|
|
57214
57364
|
exports.XPathLexerErrorListener = XPathLexerErrorListener;
|
|
57215
57365
|
|
|
57216
|
-
},{"../../Decorators":
|
|
57366
|
+
},{"../../Decorators":215}],352:[function(require,module,exports){
|
|
57217
57367
|
"use strict";
|
|
57218
57368
|
/*!
|
|
57219
57369
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57247,7 +57397,7 @@ __decorate([
|
|
|
57247
57397
|
], XPathRuleAnywhereElement.prototype, "evaluate", null);
|
|
57248
57398
|
exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
|
|
57249
57399
|
|
|
57250
|
-
},{"../../Decorators":
|
|
57400
|
+
},{"../../Decorators":215,"../Trees":339,"./XPathElement":349}],353:[function(require,module,exports){
|
|
57251
57401
|
"use strict";
|
|
57252
57402
|
/*!
|
|
57253
57403
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57290,7 +57440,7 @@ __decorate([
|
|
|
57290
57440
|
], XPathRuleElement.prototype, "evaluate", null);
|
|
57291
57441
|
exports.XPathRuleElement = XPathRuleElement;
|
|
57292
57442
|
|
|
57293
|
-
},{"../../Decorators":
|
|
57443
|
+
},{"../../Decorators":215,"../../ParserRuleContext":231,"../Trees":339,"./XPathElement":349}],354:[function(require,module,exports){
|
|
57294
57444
|
"use strict";
|
|
57295
57445
|
/*!
|
|
57296
57446
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57322,7 +57472,7 @@ __decorate([
|
|
|
57322
57472
|
], XPathTokenAnywhereElement.prototype, "evaluate", null);
|
|
57323
57473
|
exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
|
|
57324
57474
|
|
|
57325
|
-
},{"../../Decorators":
|
|
57475
|
+
},{"../../Decorators":215,"../Trees":339,"./XPathElement":349}],355:[function(require,module,exports){
|
|
57326
57476
|
"use strict";
|
|
57327
57477
|
/*!
|
|
57328
57478
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57365,7 +57515,7 @@ __decorate([
|
|
|
57365
57515
|
], XPathTokenElement.prototype, "evaluate", null);
|
|
57366
57516
|
exports.XPathTokenElement = XPathTokenElement;
|
|
57367
57517
|
|
|
57368
|
-
},{"../../Decorators":
|
|
57518
|
+
},{"../../Decorators":215,"../TerminalNode":338,"../Trees":339,"./XPathElement":349}],356:[function(require,module,exports){
|
|
57369
57519
|
"use strict";
|
|
57370
57520
|
/*!
|
|
57371
57521
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57401,7 +57551,7 @@ __decorate([
|
|
|
57401
57551
|
], XPathWildcardAnywhereElement.prototype, "evaluate", null);
|
|
57402
57552
|
exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
|
|
57403
57553
|
|
|
57404
|
-
},{"../../Decorators":
|
|
57554
|
+
},{"../../Decorators":215,"../Trees":339,"./XPath":348,"./XPathElement":349}],357:[function(require,module,exports){
|
|
57405
57555
|
"use strict";
|
|
57406
57556
|
/*!
|
|
57407
57557
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57441,7 +57591,7 @@ __decorate([
|
|
|
57441
57591
|
], XPathWildcardElement.prototype, "evaluate", null);
|
|
57442
57592
|
exports.XPathWildcardElement = XPathWildcardElement;
|
|
57443
57593
|
|
|
57444
|
-
},{"../../Decorators":
|
|
57594
|
+
},{"../../Decorators":215,"../Trees":339,"./XPath":348,"./XPathElement":349}],358:[function(require,module,exports){
|
|
57445
57595
|
(function (global){(function (){
|
|
57446
57596
|
'use strict';
|
|
57447
57597
|
|
|
@@ -57951,7 +58101,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
57951
58101
|
};
|
|
57952
58102
|
|
|
57953
58103
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
57954
|
-
},{"object.assign/polyfill":
|
|
58104
|
+
},{"object.assign/polyfill":415,"util/":361}],359:[function(require,module,exports){
|
|
57955
58105
|
if (typeof Object.create === 'function') {
|
|
57956
58106
|
// implementation from standard node.js 'util' module
|
|
57957
58107
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -57976,14 +58126,14 @@ if (typeof Object.create === 'function') {
|
|
|
57976
58126
|
}
|
|
57977
58127
|
}
|
|
57978
58128
|
|
|
57979
|
-
},{}],
|
|
58129
|
+
},{}],360:[function(require,module,exports){
|
|
57980
58130
|
module.exports = function isBuffer(arg) {
|
|
57981
58131
|
return arg && typeof arg === 'object'
|
|
57982
58132
|
&& typeof arg.copy === 'function'
|
|
57983
58133
|
&& typeof arg.fill === 'function'
|
|
57984
58134
|
&& typeof arg.readUInt8 === 'function';
|
|
57985
58135
|
}
|
|
57986
|
-
},{}],
|
|
58136
|
+
},{}],361:[function(require,module,exports){
|
|
57987
58137
|
(function (process,global){(function (){
|
|
57988
58138
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
57989
58139
|
//
|
|
@@ -58573,7 +58723,7 @@ function hasOwnProperty(obj, prop) {
|
|
|
58573
58723
|
}
|
|
58574
58724
|
|
|
58575
58725
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
58576
|
-
},{"./support/isBuffer":
|
|
58726
|
+
},{"./support/isBuffer":360,"_process":417,"inherits":359}],362:[function(require,module,exports){
|
|
58577
58727
|
(function (global){(function (){
|
|
58578
58728
|
'use strict';
|
|
58579
58729
|
|
|
@@ -58594,7 +58744,7 @@ module.exports = function availableTypedArrays() {
|
|
|
58594
58744
|
};
|
|
58595
58745
|
|
|
58596
58746
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
58597
|
-
},{"possible-typed-array-names":
|
|
58747
|
+
},{"possible-typed-array-names":416}],363:[function(require,module,exports){
|
|
58598
58748
|
(function (process,global){(function (){
|
|
58599
58749
|
module.exports = process.hrtime || hrtime
|
|
58600
58750
|
|
|
@@ -58625,7 +58775,7 @@ function hrtime(previousTimestamp){
|
|
|
58625
58775
|
return [seconds,nanoseconds]
|
|
58626
58776
|
}
|
|
58627
58777
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
58628
|
-
},{"_process":
|
|
58778
|
+
},{"_process":417}],364:[function(require,module,exports){
|
|
58629
58779
|
'use strict';
|
|
58630
58780
|
|
|
58631
58781
|
var bind = require('function-bind');
|
|
@@ -58637,7 +58787,7 @@ var $reflectApply = require('./reflectApply');
|
|
|
58637
58787
|
/** @type {import('./actualApply')} */
|
|
58638
58788
|
module.exports = $reflectApply || bind.call($call, $apply);
|
|
58639
58789
|
|
|
58640
|
-
},{"./functionApply":
|
|
58790
|
+
},{"./functionApply":366,"./functionCall":367,"./reflectApply":369,"function-bind":385}],365:[function(require,module,exports){
|
|
58641
58791
|
'use strict';
|
|
58642
58792
|
|
|
58643
58793
|
var bind = require('function-bind');
|
|
@@ -58649,19 +58799,19 @@ module.exports = function applyBind() {
|
|
|
58649
58799
|
return actualApply(bind, $apply, arguments);
|
|
58650
58800
|
};
|
|
58651
58801
|
|
|
58652
|
-
},{"./actualApply":
|
|
58802
|
+
},{"./actualApply":364,"./functionApply":366,"function-bind":385}],366:[function(require,module,exports){
|
|
58653
58803
|
'use strict';
|
|
58654
58804
|
|
|
58655
58805
|
/** @type {import('./functionApply')} */
|
|
58656
58806
|
module.exports = Function.prototype.apply;
|
|
58657
58807
|
|
|
58658
|
-
},{}],
|
|
58808
|
+
},{}],367:[function(require,module,exports){
|
|
58659
58809
|
'use strict';
|
|
58660
58810
|
|
|
58661
58811
|
/** @type {import('./functionCall')} */
|
|
58662
58812
|
module.exports = Function.prototype.call;
|
|
58663
58813
|
|
|
58664
|
-
},{}],
|
|
58814
|
+
},{}],368:[function(require,module,exports){
|
|
58665
58815
|
'use strict';
|
|
58666
58816
|
|
|
58667
58817
|
var bind = require('function-bind');
|
|
@@ -58678,13 +58828,13 @@ module.exports = function callBindBasic(args) {
|
|
|
58678
58828
|
return $actualApply(bind, $call, args);
|
|
58679
58829
|
};
|
|
58680
58830
|
|
|
58681
|
-
},{"./actualApply":
|
|
58831
|
+
},{"./actualApply":364,"./functionCall":367,"es-errors/type":380,"function-bind":385}],369:[function(require,module,exports){
|
|
58682
58832
|
'use strict';
|
|
58683
58833
|
|
|
58684
58834
|
/** @type {import('./reflectApply')} */
|
|
58685
58835
|
module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
|
|
58686
58836
|
|
|
58687
|
-
},{}],
|
|
58837
|
+
},{}],370:[function(require,module,exports){
|
|
58688
58838
|
'use strict';
|
|
58689
58839
|
|
|
58690
58840
|
var setFunctionLength = require('set-function-length');
|
|
@@ -58710,7 +58860,7 @@ if ($defineProperty) {
|
|
|
58710
58860
|
module.exports.apply = applyBind;
|
|
58711
58861
|
}
|
|
58712
58862
|
|
|
58713
|
-
},{"call-bind-apply-helpers":
|
|
58863
|
+
},{"call-bind-apply-helpers":368,"call-bind-apply-helpers/applyBind":365,"es-define-property":374,"set-function-length":419}],371:[function(require,module,exports){
|
|
58714
58864
|
'use strict';
|
|
58715
58865
|
|
|
58716
58866
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -58731,7 +58881,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
58731
58881
|
return intrinsic;
|
|
58732
58882
|
};
|
|
58733
58883
|
|
|
58734
|
-
},{"call-bind-apply-helpers":
|
|
58884
|
+
},{"call-bind-apply-helpers":368,"get-intrinsic":386}],372:[function(require,module,exports){
|
|
58735
58885
|
'use strict';
|
|
58736
58886
|
|
|
58737
58887
|
var $defineProperty = require('es-define-property');
|
|
@@ -58789,7 +58939,7 @@ module.exports = function defineDataProperty(
|
|
|
58789
58939
|
}
|
|
58790
58940
|
};
|
|
58791
58941
|
|
|
58792
|
-
},{"es-define-property":
|
|
58942
|
+
},{"es-define-property":374,"es-errors/syntax":379,"es-errors/type":380,"gopd":391}],373:[function(require,module,exports){
|
|
58793
58943
|
'use strict';
|
|
58794
58944
|
|
|
58795
58945
|
var callBind = require('call-bind-apply-helpers');
|
|
@@ -58821,7 +58971,7 @@ module.exports = desc && typeof desc.get === 'function'
|
|
|
58821
58971
|
}
|
|
58822
58972
|
: false;
|
|
58823
58973
|
|
|
58824
|
-
},{"call-bind-apply-helpers":
|
|
58974
|
+
},{"call-bind-apply-helpers":368,"gopd":391}],374:[function(require,module,exports){
|
|
58825
58975
|
'use strict';
|
|
58826
58976
|
|
|
58827
58977
|
/** @type {import('.')} */
|
|
@@ -58837,55 +58987,55 @@ if ($defineProperty) {
|
|
|
58837
58987
|
|
|
58838
58988
|
module.exports = $defineProperty;
|
|
58839
58989
|
|
|
58840
|
-
},{}],
|
|
58990
|
+
},{}],375:[function(require,module,exports){
|
|
58841
58991
|
'use strict';
|
|
58842
58992
|
|
|
58843
58993
|
/** @type {import('./eval')} */
|
|
58844
58994
|
module.exports = EvalError;
|
|
58845
58995
|
|
|
58846
|
-
},{}],
|
|
58996
|
+
},{}],376:[function(require,module,exports){
|
|
58847
58997
|
'use strict';
|
|
58848
58998
|
|
|
58849
58999
|
/** @type {import('.')} */
|
|
58850
59000
|
module.exports = Error;
|
|
58851
59001
|
|
|
58852
|
-
},{}],
|
|
59002
|
+
},{}],377:[function(require,module,exports){
|
|
58853
59003
|
'use strict';
|
|
58854
59004
|
|
|
58855
59005
|
/** @type {import('./range')} */
|
|
58856
59006
|
module.exports = RangeError;
|
|
58857
59007
|
|
|
58858
|
-
},{}],
|
|
59008
|
+
},{}],378:[function(require,module,exports){
|
|
58859
59009
|
'use strict';
|
|
58860
59010
|
|
|
58861
59011
|
/** @type {import('./ref')} */
|
|
58862
59012
|
module.exports = ReferenceError;
|
|
58863
59013
|
|
|
58864
|
-
},{}],
|
|
59014
|
+
},{}],379:[function(require,module,exports){
|
|
58865
59015
|
'use strict';
|
|
58866
59016
|
|
|
58867
59017
|
/** @type {import('./syntax')} */
|
|
58868
59018
|
module.exports = SyntaxError;
|
|
58869
59019
|
|
|
58870
|
-
},{}],
|
|
59020
|
+
},{}],380:[function(require,module,exports){
|
|
58871
59021
|
'use strict';
|
|
58872
59022
|
|
|
58873
59023
|
/** @type {import('./type')} */
|
|
58874
59024
|
module.exports = TypeError;
|
|
58875
59025
|
|
|
58876
|
-
},{}],
|
|
59026
|
+
},{}],381:[function(require,module,exports){
|
|
58877
59027
|
'use strict';
|
|
58878
59028
|
|
|
58879
59029
|
/** @type {import('./uri')} */
|
|
58880
59030
|
module.exports = URIError;
|
|
58881
59031
|
|
|
58882
|
-
},{}],
|
|
59032
|
+
},{}],382:[function(require,module,exports){
|
|
58883
59033
|
'use strict';
|
|
58884
59034
|
|
|
58885
59035
|
/** @type {import('.')} */
|
|
58886
59036
|
module.exports = Object;
|
|
58887
59037
|
|
|
58888
|
-
},{}],
|
|
59038
|
+
},{}],383:[function(require,module,exports){
|
|
58889
59039
|
'use strict';
|
|
58890
59040
|
|
|
58891
59041
|
var isCallable = require('is-callable');
|
|
@@ -58956,7 +59106,7 @@ module.exports = function forEach(list, iterator, thisArg) {
|
|
|
58956
59106
|
}
|
|
58957
59107
|
};
|
|
58958
59108
|
|
|
58959
|
-
},{"is-callable":
|
|
59109
|
+
},{"is-callable":399}],384:[function(require,module,exports){
|
|
58960
59110
|
'use strict';
|
|
58961
59111
|
|
|
58962
59112
|
/* eslint no-invalid-this: 1 */
|
|
@@ -59042,14 +59192,14 @@ module.exports = function bind(that) {
|
|
|
59042
59192
|
return bound;
|
|
59043
59193
|
};
|
|
59044
59194
|
|
|
59045
|
-
},{}],
|
|
59195
|
+
},{}],385:[function(require,module,exports){
|
|
59046
59196
|
'use strict';
|
|
59047
59197
|
|
|
59048
59198
|
var implementation = require('./implementation');
|
|
59049
59199
|
|
|
59050
59200
|
module.exports = Function.prototype.bind || implementation;
|
|
59051
59201
|
|
|
59052
|
-
},{"./implementation":
|
|
59202
|
+
},{"./implementation":384}],386:[function(require,module,exports){
|
|
59053
59203
|
'use strict';
|
|
59054
59204
|
|
|
59055
59205
|
var undefined;
|
|
@@ -59429,7 +59579,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
59429
59579
|
return value;
|
|
59430
59580
|
};
|
|
59431
59581
|
|
|
59432
|
-
},{"call-bind-apply-helpers/functionApply":
|
|
59582
|
+
},{"call-bind-apply-helpers/functionApply":366,"call-bind-apply-helpers/functionCall":367,"es-define-property":374,"es-errors":376,"es-errors/eval":375,"es-errors/range":377,"es-errors/ref":378,"es-errors/syntax":379,"es-errors/type":380,"es-errors/uri":381,"es-object-atoms":382,"function-bind":385,"get-proto":389,"get-proto/Object.getPrototypeOf":387,"get-proto/Reflect.getPrototypeOf":388,"gopd":391,"has-symbols":393,"hasown":396,"math-intrinsics/abs":403,"math-intrinsics/floor":404,"math-intrinsics/max":406,"math-intrinsics/min":407,"math-intrinsics/pow":408,"math-intrinsics/round":409,"math-intrinsics/sign":410}],387:[function(require,module,exports){
|
|
59433
59583
|
'use strict';
|
|
59434
59584
|
|
|
59435
59585
|
var $Object = require('es-object-atoms');
|
|
@@ -59437,13 +59587,13 @@ var $Object = require('es-object-atoms');
|
|
|
59437
59587
|
/** @type {import('./Object.getPrototypeOf')} */
|
|
59438
59588
|
module.exports = $Object.getPrototypeOf || null;
|
|
59439
59589
|
|
|
59440
|
-
},{"es-object-atoms":
|
|
59590
|
+
},{"es-object-atoms":382}],388:[function(require,module,exports){
|
|
59441
59591
|
'use strict';
|
|
59442
59592
|
|
|
59443
59593
|
/** @type {import('./Reflect.getPrototypeOf')} */
|
|
59444
59594
|
module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
|
|
59445
59595
|
|
|
59446
|
-
},{}],
|
|
59596
|
+
},{}],389:[function(require,module,exports){
|
|
59447
59597
|
'use strict';
|
|
59448
59598
|
|
|
59449
59599
|
var reflectGetProto = require('./Reflect.getPrototypeOf');
|
|
@@ -59472,13 +59622,13 @@ module.exports = reflectGetProto
|
|
|
59472
59622
|
}
|
|
59473
59623
|
: null;
|
|
59474
59624
|
|
|
59475
|
-
},{"./Object.getPrototypeOf":
|
|
59625
|
+
},{"./Object.getPrototypeOf":387,"./Reflect.getPrototypeOf":388,"dunder-proto/get":373}],390:[function(require,module,exports){
|
|
59476
59626
|
'use strict';
|
|
59477
59627
|
|
|
59478
59628
|
/** @type {import('./gOPD')} */
|
|
59479
59629
|
module.exports = Object.getOwnPropertyDescriptor;
|
|
59480
59630
|
|
|
59481
|
-
},{}],
|
|
59631
|
+
},{}],391:[function(require,module,exports){
|
|
59482
59632
|
'use strict';
|
|
59483
59633
|
|
|
59484
59634
|
/** @type {import('.')} */
|
|
@@ -59495,7 +59645,7 @@ if ($gOPD) {
|
|
|
59495
59645
|
|
|
59496
59646
|
module.exports = $gOPD;
|
|
59497
59647
|
|
|
59498
|
-
},{"./gOPD":
|
|
59648
|
+
},{"./gOPD":390}],392:[function(require,module,exports){
|
|
59499
59649
|
'use strict';
|
|
59500
59650
|
|
|
59501
59651
|
var $defineProperty = require('es-define-property');
|
|
@@ -59519,7 +59669,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
|
|
|
59519
59669
|
|
|
59520
59670
|
module.exports = hasPropertyDescriptors;
|
|
59521
59671
|
|
|
59522
|
-
},{"es-define-property":
|
|
59672
|
+
},{"es-define-property":374}],393:[function(require,module,exports){
|
|
59523
59673
|
'use strict';
|
|
59524
59674
|
|
|
59525
59675
|
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
|
@@ -59535,7 +59685,7 @@ module.exports = function hasNativeSymbols() {
|
|
|
59535
59685
|
return hasSymbolSham();
|
|
59536
59686
|
};
|
|
59537
59687
|
|
|
59538
|
-
},{"./shams":
|
|
59688
|
+
},{"./shams":394}],394:[function(require,module,exports){
|
|
59539
59689
|
'use strict';
|
|
59540
59690
|
|
|
59541
59691
|
/** @type {import('./shams')} */
|
|
@@ -59582,7 +59732,7 @@ module.exports = function hasSymbols() {
|
|
|
59582
59732
|
return true;
|
|
59583
59733
|
};
|
|
59584
59734
|
|
|
59585
|
-
},{}],
|
|
59735
|
+
},{}],395:[function(require,module,exports){
|
|
59586
59736
|
'use strict';
|
|
59587
59737
|
|
|
59588
59738
|
var hasSymbols = require('has-symbols/shams');
|
|
@@ -59592,7 +59742,7 @@ module.exports = function hasToStringTagShams() {
|
|
|
59592
59742
|
return hasSymbols() && !!Symbol.toStringTag;
|
|
59593
59743
|
};
|
|
59594
59744
|
|
|
59595
|
-
},{"has-symbols/shams":
|
|
59745
|
+
},{"has-symbols/shams":394}],396:[function(require,module,exports){
|
|
59596
59746
|
'use strict';
|
|
59597
59747
|
|
|
59598
59748
|
var call = Function.prototype.call;
|
|
@@ -59602,7 +59752,7 @@ var bind = require('function-bind');
|
|
|
59602
59752
|
/** @type {import('.')} */
|
|
59603
59753
|
module.exports = bind.call(call, $hasOwn);
|
|
59604
59754
|
|
|
59605
|
-
},{"function-bind":
|
|
59755
|
+
},{"function-bind":385}],397:[function(require,module,exports){
|
|
59606
59756
|
if (typeof Object.create === 'function') {
|
|
59607
59757
|
// implementation from standard node.js 'util' module
|
|
59608
59758
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -59631,7 +59781,7 @@ if (typeof Object.create === 'function') {
|
|
|
59631
59781
|
}
|
|
59632
59782
|
}
|
|
59633
59783
|
|
|
59634
|
-
},{}],
|
|
59784
|
+
},{}],398:[function(require,module,exports){
|
|
59635
59785
|
'use strict';
|
|
59636
59786
|
|
|
59637
59787
|
var hasToStringTag = require('has-tostringtag/shams')();
|
|
@@ -59677,7 +59827,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
|
59677
59827
|
/** @type {import('.')} */
|
|
59678
59828
|
module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
59679
59829
|
|
|
59680
|
-
},{"call-bound":
|
|
59830
|
+
},{"call-bound":371,"has-tostringtag/shams":395}],399:[function(require,module,exports){
|
|
59681
59831
|
'use strict';
|
|
59682
59832
|
|
|
59683
59833
|
var fnToStr = Function.prototype.toString;
|
|
@@ -59780,7 +59930,7 @@ module.exports = reflectApply
|
|
|
59780
59930
|
return tryFunctionObject(value);
|
|
59781
59931
|
};
|
|
59782
59932
|
|
|
59783
|
-
},{}],
|
|
59933
|
+
},{}],400:[function(require,module,exports){
|
|
59784
59934
|
'use strict';
|
|
59785
59935
|
|
|
59786
59936
|
var callBound = require('call-bound');
|
|
@@ -59829,7 +59979,7 @@ module.exports = function isGeneratorFunction(fn) {
|
|
|
59829
59979
|
return getProto(fn) === GeneratorFunction;
|
|
59830
59980
|
};
|
|
59831
59981
|
|
|
59832
|
-
},{"call-bound":
|
|
59982
|
+
},{"call-bound":371,"get-proto":389,"has-tostringtag/shams":395,"safe-regex-test":418}],401:[function(require,module,exports){
|
|
59833
59983
|
'use strict';
|
|
59834
59984
|
|
|
59835
59985
|
var callBound = require('call-bound');
|
|
@@ -59900,7 +60050,7 @@ if (hasToStringTag) {
|
|
|
59900
60050
|
|
|
59901
60051
|
module.exports = fn;
|
|
59902
60052
|
|
|
59903
|
-
},{"call-bound":
|
|
60053
|
+
},{"call-bound":371,"gopd":391,"has-tostringtag/shams":395,"hasown":396}],402:[function(require,module,exports){
|
|
59904
60054
|
'use strict';
|
|
59905
60055
|
|
|
59906
60056
|
var whichTypedArray = require('which-typed-array');
|
|
@@ -59910,19 +60060,19 @@ module.exports = function isTypedArray(value) {
|
|
|
59910
60060
|
return !!whichTypedArray(value);
|
|
59911
60061
|
};
|
|
59912
60062
|
|
|
59913
|
-
},{"which-typed-array":
|
|
60063
|
+
},{"which-typed-array":423}],403:[function(require,module,exports){
|
|
59914
60064
|
'use strict';
|
|
59915
60065
|
|
|
59916
60066
|
/** @type {import('./abs')} */
|
|
59917
60067
|
module.exports = Math.abs;
|
|
59918
60068
|
|
|
59919
|
-
},{}],
|
|
60069
|
+
},{}],404:[function(require,module,exports){
|
|
59920
60070
|
'use strict';
|
|
59921
60071
|
|
|
59922
60072
|
/** @type {import('./floor')} */
|
|
59923
60073
|
module.exports = Math.floor;
|
|
59924
60074
|
|
|
59925
|
-
},{}],
|
|
60075
|
+
},{}],405:[function(require,module,exports){
|
|
59926
60076
|
'use strict';
|
|
59927
60077
|
|
|
59928
60078
|
/** @type {import('./isNaN')} */
|
|
@@ -59930,31 +60080,31 @@ module.exports = Number.isNaN || function isNaN(a) {
|
|
|
59930
60080
|
return a !== a;
|
|
59931
60081
|
};
|
|
59932
60082
|
|
|
59933
|
-
},{}],
|
|
60083
|
+
},{}],406:[function(require,module,exports){
|
|
59934
60084
|
'use strict';
|
|
59935
60085
|
|
|
59936
60086
|
/** @type {import('./max')} */
|
|
59937
60087
|
module.exports = Math.max;
|
|
59938
60088
|
|
|
59939
|
-
},{}],
|
|
60089
|
+
},{}],407:[function(require,module,exports){
|
|
59940
60090
|
'use strict';
|
|
59941
60091
|
|
|
59942
60092
|
/** @type {import('./min')} */
|
|
59943
60093
|
module.exports = Math.min;
|
|
59944
60094
|
|
|
59945
|
-
},{}],
|
|
60095
|
+
},{}],408:[function(require,module,exports){
|
|
59946
60096
|
'use strict';
|
|
59947
60097
|
|
|
59948
60098
|
/** @type {import('./pow')} */
|
|
59949
60099
|
module.exports = Math.pow;
|
|
59950
60100
|
|
|
59951
|
-
},{}],
|
|
60101
|
+
},{}],409:[function(require,module,exports){
|
|
59952
60102
|
'use strict';
|
|
59953
60103
|
|
|
59954
60104
|
/** @type {import('./round')} */
|
|
59955
60105
|
module.exports = Math.round;
|
|
59956
60106
|
|
|
59957
|
-
},{}],
|
|
60107
|
+
},{}],410:[function(require,module,exports){
|
|
59958
60108
|
'use strict';
|
|
59959
60109
|
|
|
59960
60110
|
var $isNaN = require('./isNaN');
|
|
@@ -59967,7 +60117,7 @@ module.exports = function sign(number) {
|
|
|
59967
60117
|
return number < 0 ? -1 : +1;
|
|
59968
60118
|
};
|
|
59969
60119
|
|
|
59970
|
-
},{"./isNaN":
|
|
60120
|
+
},{"./isNaN":405}],411:[function(require,module,exports){
|
|
59971
60121
|
'use strict';
|
|
59972
60122
|
|
|
59973
60123
|
var keysShim;
|
|
@@ -60091,7 +60241,7 @@ if (!Object.keys) {
|
|
|
60091
60241
|
}
|
|
60092
60242
|
module.exports = keysShim;
|
|
60093
60243
|
|
|
60094
|
-
},{"./isArguments":
|
|
60244
|
+
},{"./isArguments":413}],412:[function(require,module,exports){
|
|
60095
60245
|
'use strict';
|
|
60096
60246
|
|
|
60097
60247
|
var slice = Array.prototype.slice;
|
|
@@ -60125,7 +60275,7 @@ keysShim.shim = function shimObjectKeys() {
|
|
|
60125
60275
|
|
|
60126
60276
|
module.exports = keysShim;
|
|
60127
60277
|
|
|
60128
|
-
},{"./implementation":
|
|
60278
|
+
},{"./implementation":411,"./isArguments":413}],413:[function(require,module,exports){
|
|
60129
60279
|
'use strict';
|
|
60130
60280
|
|
|
60131
60281
|
var toStr = Object.prototype.toString;
|
|
@@ -60144,7 +60294,7 @@ module.exports = function isArguments(value) {
|
|
|
60144
60294
|
return isArgs;
|
|
60145
60295
|
};
|
|
60146
60296
|
|
|
60147
|
-
},{}],
|
|
60297
|
+
},{}],414:[function(require,module,exports){
|
|
60148
60298
|
'use strict';
|
|
60149
60299
|
|
|
60150
60300
|
// modified from https://github.com/es-shims/es6-shim
|
|
@@ -60192,7 +60342,7 @@ module.exports = function assign(target, source1) {
|
|
|
60192
60342
|
return to; // step 4
|
|
60193
60343
|
};
|
|
60194
60344
|
|
|
60195
|
-
},{"call-bound":
|
|
60345
|
+
},{"call-bound":371,"es-object-atoms":382,"has-symbols/shams":394,"object-keys":412}],415:[function(require,module,exports){
|
|
60196
60346
|
'use strict';
|
|
60197
60347
|
|
|
60198
60348
|
var implementation = require('./implementation');
|
|
@@ -60249,7 +60399,7 @@ module.exports = function getPolyfill() {
|
|
|
60249
60399
|
return Object.assign;
|
|
60250
60400
|
};
|
|
60251
60401
|
|
|
60252
|
-
},{"./implementation":
|
|
60402
|
+
},{"./implementation":414}],416:[function(require,module,exports){
|
|
60253
60403
|
'use strict';
|
|
60254
60404
|
|
|
60255
60405
|
/** @type {import('.')} */
|
|
@@ -60268,7 +60418,7 @@ module.exports = [
|
|
|
60268
60418
|
'BigUint64Array'
|
|
60269
60419
|
];
|
|
60270
60420
|
|
|
60271
|
-
},{}],
|
|
60421
|
+
},{}],417:[function(require,module,exports){
|
|
60272
60422
|
// shim for using process in browser
|
|
60273
60423
|
var process = module.exports = {};
|
|
60274
60424
|
|
|
@@ -60454,7 +60604,7 @@ process.chdir = function (dir) {
|
|
|
60454
60604
|
};
|
|
60455
60605
|
process.umask = function() { return 0; };
|
|
60456
60606
|
|
|
60457
|
-
},{}],
|
|
60607
|
+
},{}],418:[function(require,module,exports){
|
|
60458
60608
|
'use strict';
|
|
60459
60609
|
|
|
60460
60610
|
var callBound = require('call-bound');
|
|
@@ -60473,7 +60623,7 @@ module.exports = function regexTester(regex) {
|
|
|
60473
60623
|
};
|
|
60474
60624
|
};
|
|
60475
60625
|
|
|
60476
|
-
},{"call-bound":
|
|
60626
|
+
},{"call-bound":371,"es-errors/type":380,"is-regex":401}],419:[function(require,module,exports){
|
|
60477
60627
|
'use strict';
|
|
60478
60628
|
|
|
60479
60629
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -60517,9 +60667,9 @@ module.exports = function setFunctionLength(fn, length) {
|
|
|
60517
60667
|
return fn;
|
|
60518
60668
|
};
|
|
60519
60669
|
|
|
60520
|
-
},{"define-data-property":
|
|
60521
|
-
arguments[4][
|
|
60522
|
-
},{"dup":
|
|
60670
|
+
},{"define-data-property":372,"es-errors/type":380,"get-intrinsic":386,"gopd":391,"has-property-descriptors":392}],420:[function(require,module,exports){
|
|
60671
|
+
arguments[4][360][0].apply(exports,arguments)
|
|
60672
|
+
},{"dup":360}],421:[function(require,module,exports){
|
|
60523
60673
|
// Currently in sync with Node.js lib/internal/util/types.js
|
|
60524
60674
|
// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
|
|
60525
60675
|
|
|
@@ -60855,7 +61005,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
|
|
|
60855
61005
|
});
|
|
60856
61006
|
});
|
|
60857
61007
|
|
|
60858
|
-
},{"is-arguments":
|
|
61008
|
+
},{"is-arguments":398,"is-generator-function":400,"is-typed-array":402,"which-typed-array":423}],422:[function(require,module,exports){
|
|
60859
61009
|
(function (process){(function (){
|
|
60860
61010
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
60861
61011
|
//
|
|
@@ -61574,7 +61724,7 @@ function callbackify(original) {
|
|
|
61574
61724
|
exports.callbackify = callbackify;
|
|
61575
61725
|
|
|
61576
61726
|
}).call(this)}).call(this,require('_process'))
|
|
61577
|
-
},{"./support/isBuffer":
|
|
61727
|
+
},{"./support/isBuffer":420,"./support/types":421,"_process":417,"inherits":397}],423:[function(require,module,exports){
|
|
61578
61728
|
(function (global){(function (){
|
|
61579
61729
|
'use strict';
|
|
61580
61730
|
|
|
@@ -61695,5 +61845,5 @@ module.exports = function whichTypedArray(value) {
|
|
|
61695
61845
|
};
|
|
61696
61846
|
|
|
61697
61847
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
61698
|
-
},{"available-typed-arrays":
|
|
61848
|
+
},{"available-typed-arrays":362,"call-bind":370,"call-bound":371,"for-each":383,"get-proto":389,"gopd":391,"has-tostringtag/shams":395}]},{},[112])(112)
|
|
61699
61849
|
});
|