@designliquido/delegua 0.41.8 → 0.42.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/analisador-semantico/analisador-semantico.d.ts.map +1 -1
- package/analisador-semantico/analisador-semantico.js +28 -14
- package/analisador-semantico/analisador-semantico.js.map +1 -1
- package/avaliador-sintatico/avaliador-sintatico.d.ts +16 -3
- package/avaliador-sintatico/avaliador-sintatico.d.ts.map +1 -1
- package/avaliador-sintatico/avaliador-sintatico.js +168 -43
- package/avaliador-sintatico/avaliador-sintatico.js.map +1 -1
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.d.ts.map +1 -1
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.js +1 -0
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.js.map +1 -1
- package/avaliador-sintatico/index.d.ts +1 -0
- package/avaliador-sintatico/index.d.ts.map +1 -1
- package/avaliador-sintatico/index.js +1 -0
- package/avaliador-sintatico/index.js.map +1 -1
- package/avaliador-sintatico/informacao-escopo.d.ts +2 -1
- package/avaliador-sintatico/informacao-escopo.d.ts.map +1 -1
- package/avaliador-sintatico/informacao-escopo.js.map +1 -1
- package/avaliador-sintatico/pilha-escopos.d.ts +3 -1
- package/avaliador-sintatico/pilha-escopos.d.ts.map +1 -1
- package/avaliador-sintatico/pilha-escopos.js +6 -3
- package/avaliador-sintatico/pilha-escopos.js.map +1 -1
- package/bibliotecas/biblioteca-global.d.ts +7 -7
- package/bibliotecas/biblioteca-global.d.ts.map +1 -1
- package/bibliotecas/biblioteca-global.js +14 -8
- package/bibliotecas/biblioteca-global.js.map +1 -1
- package/bibliotecas/primitivas-dicionario.d.ts.map +1 -1
- package/bibliotecas/primitivas-dicionario.js +2 -0
- package/bibliotecas/primitivas-dicionario.js.map +1 -1
- package/bibliotecas/primitivas-numero.d.ts.map +1 -1
- package/bibliotecas/primitivas-numero.js +2 -0
- package/bibliotecas/primitivas-numero.js.map +1 -1
- package/bibliotecas/primitivas-texto.d.ts.map +1 -1
- package/bibliotecas/primitivas-texto.js +28 -0
- package/bibliotecas/primitivas-texto.js.map +1 -1
- package/bibliotecas/primitivas-vetor.d.ts.map +1 -1
- package/bibliotecas/primitivas-vetor.js +46 -4
- package/bibliotecas/primitivas-vetor.js.map +1 -1
- package/bin/package.json +1 -1
- package/informacao-variavel-ou-constante.d.ts +8 -0
- package/informacao-variavel-ou-constante.d.ts.map +1 -0
- package/informacao-variavel-ou-constante.js +16 -0
- package/informacao-variavel-ou-constante.js.map +1 -0
- package/interfaces/primitiva-interface.d.ts +2 -0
- package/interfaces/primitiva-interface.d.ts.map +1 -1
- package/lexador/dialetos/lexador-pitugues.d.ts.map +1 -1
- package/lexador/dialetos/lexador-pitugues.js +39 -39
- package/lexador/dialetos/lexador-pitugues.js.map +1 -1
- package/lexador/dialetos/palavras-reservadas/pitugues.d.ts +56 -0
- package/lexador/dialetos/palavras-reservadas/pitugues.d.ts.map +1 -0
- package/lexador/dialetos/palavras-reservadas/pitugues.js +63 -0
- package/lexador/dialetos/palavras-reservadas/pitugues.js.map +1 -0
- package/lexador/index.d.ts +1 -0
- package/lexador/index.d.ts.map +1 -1
- package/lexador/index.js +1 -0
- package/lexador/index.js.map +1 -1
- package/package.json +1 -1
- package/tipos-de-simbolos/pitugues.d.ts +6 -0
- package/tipos-de-simbolos/pitugues.d.ts.map +1 -1
- package/tipos-de-simbolos/pitugues.js +6 -0
- package/tipos-de-simbolos/pitugues.js.map +1 -1
- package/umd/delegua.js +694 -396
- package/bin/delegua +0 -3
- package/bin/delegua.cmd +0 -1
package/umd/delegua.js
CHANGED
|
@@ -231,7 +231,7 @@ class AvaliadorSintaticoBase {
|
|
|
231
231
|
}
|
|
232
232
|
exports.AvaliadorSintaticoBase = AvaliadorSintaticoBase;
|
|
233
233
|
|
|
234
|
-
},{"../construtos":42,"../declaracoes":82,"../tipos-de-simbolos/comum":
|
|
234
|
+
},{"../construtos":42,"../declaracoes":82,"../tipos-de-simbolos/comum":164,"./erro-avaliador-sintatico":7}],2:[function(require,module,exports){
|
|
235
235
|
"use strict";
|
|
236
236
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
237
237
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -247,6 +247,7 @@ const avaliador_sintatico_base_1 = require("./avaliador-sintatico-base");
|
|
|
247
247
|
const inferenciador_1 = require("../inferenciador");
|
|
248
248
|
const pilha_escopos_1 = require("./pilha-escopos");
|
|
249
249
|
const informacao_escopo_1 = require("./informacao-escopo");
|
|
250
|
+
const informacao_variavel_ou_constante_1 = require("../informacao-variavel-ou-constante");
|
|
250
251
|
const delegua_1 = __importDefault(require("../tipos-de-dados/delegua"));
|
|
251
252
|
const delegua_2 = __importDefault(require("../tipos-de-simbolos/delegua"));
|
|
252
253
|
const primitivas_dicionario_1 = __importDefault(require("../bibliotecas/primitivas-dicionario"));
|
|
@@ -275,22 +276,23 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
275
276
|
this.tiposDefinidosEmCodigo = {};
|
|
276
277
|
this.tiposDeFerramentasExternas = {};
|
|
277
278
|
this.primitivasConhecidas = {};
|
|
278
|
-
for (const nomePrimitivaDicionario of Object.
|
|
279
|
-
this.primitivasConhecidas[nomePrimitivaDicionario] = 'dicionário';
|
|
279
|
+
for (const [nomePrimitivaDicionario, dadosPrimitiva] of Object.entries(primitivas_dicionario_1.default)) {
|
|
280
|
+
this.primitivasConhecidas[nomePrimitivaDicionario] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(nomePrimitivaDicionario, 'dicionário', dadosPrimitiva.argumentos);
|
|
280
281
|
}
|
|
281
|
-
for (const nomePrimitivaNumero of Object.
|
|
282
|
-
this.primitivasConhecidas[nomePrimitivaNumero] = 'número';
|
|
282
|
+
for (const [nomePrimitivaNumero, dadosPrimitiva] of Object.entries(primitivas_numero_1.default)) {
|
|
283
|
+
this.primitivasConhecidas[nomePrimitivaNumero] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(nomePrimitivaNumero, 'número', dadosPrimitiva.argumentos);
|
|
283
284
|
}
|
|
284
|
-
for (const nomePrimitivaTexto of Object.
|
|
285
|
-
this.primitivasConhecidas[nomePrimitivaTexto] = 'texto';
|
|
285
|
+
for (const [nomePrimitivaTexto, dadosPrimitiva] of Object.entries(primitivas_texto_1.default)) {
|
|
286
|
+
this.primitivasConhecidas[nomePrimitivaTexto] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(nomePrimitivaTexto, 'texto', dadosPrimitiva.argumentos);
|
|
286
287
|
}
|
|
287
|
-
for (const nomePrimitivaVetor of Object.
|
|
288
|
-
this.primitivasConhecidas[nomePrimitivaVetor] = 'vetor';
|
|
288
|
+
for (const [nomePrimitivaVetor, dadosPrimitiva] of Object.entries(primitivas_vetor_1.default)) {
|
|
289
|
+
this.primitivasConhecidas[nomePrimitivaVetor] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(nomePrimitivaVetor, 'vetor', dadosPrimitiva.argumentos);
|
|
289
290
|
}
|
|
290
|
-
|
|
291
|
-
this.primitivasConhecidas['
|
|
292
|
-
this.primitivasConhecidas['
|
|
293
|
-
this.primitivasConhecidas['
|
|
291
|
+
// TODO: Por enquanto não há necessidade de validar argumentos aqui, mas isso pode mudar no futuro.
|
|
292
|
+
this.primitivasConhecidas['inteiro'] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('inteiro', 'inteiro');
|
|
293
|
+
this.primitivasConhecidas['numero'] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('numero', 'número');
|
|
294
|
+
this.primitivasConhecidas['número'] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('número', 'número');
|
|
295
|
+
this.primitivasConhecidas['texto'] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('texto', 'texto');
|
|
294
296
|
this.pilhaEscopos = new pilha_escopos_1.PilhaEscopos();
|
|
295
297
|
}
|
|
296
298
|
verificarDefinicaoTipoAtual() {
|
|
@@ -422,7 +424,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
422
424
|
case delegua_2.default.FUNÇÃO:
|
|
423
425
|
const simboloFuncao = this.avancarEDevolverAnterior();
|
|
424
426
|
const corpoDaFuncao = this.corpoDaFuncao(simboloFuncao.lexema);
|
|
425
|
-
this.pilhaEscopos.
|
|
427
|
+
this.pilhaEscopos.definirInformacoesVariavel(simboloFuncao.lexema, new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(simboloFuncao.lexema, 'função'));
|
|
426
428
|
return corpoDaFuncao;
|
|
427
429
|
case delegua_2.default.IDENTIFICADOR:
|
|
428
430
|
const simboloIdentificador = this.avancarEDevolverAnterior();
|
|
@@ -542,11 +544,13 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
542
544
|
chamar() {
|
|
543
545
|
let expressao = this.primario();
|
|
544
546
|
while (true) {
|
|
547
|
+
let tipoPrimitiva = undefined;
|
|
545
548
|
if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.PARENTESE_ESQUERDO)) {
|
|
546
|
-
expressao = this.finalizarChamada(expressao);
|
|
549
|
+
expressao = this.finalizarChamada(expressao, tipoPrimitiva);
|
|
547
550
|
}
|
|
548
551
|
else if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.PONTO)) {
|
|
549
552
|
const nome = this.consumir(delegua_2.default.IDENTIFICADOR, "Esperado nome de método ou propriedade após '.'.");
|
|
553
|
+
tipoPrimitiva = expressao.tipo;
|
|
550
554
|
expressao = new construtos_1.AcessoMetodoOuPropriedade(this.hashArquivo, expressao, nome);
|
|
551
555
|
}
|
|
552
556
|
else if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.COLCHETE_ESQUERDO)) {
|
|
@@ -610,10 +614,59 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
610
614
|
}
|
|
611
615
|
return entidadeChamadaResolvida;
|
|
612
616
|
}
|
|
613
|
-
|
|
617
|
+
validarArgumentosEntidadeChamada(argumentosEntidadeChamada, argumentosUtilizados) {
|
|
618
|
+
if (argumentosEntidadeChamada.length === 0) {
|
|
619
|
+
return [];
|
|
620
|
+
}
|
|
621
|
+
const possiveisErros = [];
|
|
622
|
+
for (const [indice, argumentoEntidadeChamada] of argumentosEntidadeChamada.entries()) {
|
|
623
|
+
const argumentoUtilizado = argumentosUtilizados[indice];
|
|
624
|
+
if (argumentoUtilizado.tipo === null || argumentoUtilizado.tipo === undefined) {
|
|
625
|
+
continue;
|
|
626
|
+
}
|
|
627
|
+
const argumentoEntidadeChamadaVetor = argumentoEntidadeChamada.tipo.endsWith('[]');
|
|
628
|
+
const argumentoUtilizadoVetor = argumentoUtilizado.tipo.endsWith('[]');
|
|
629
|
+
if (argumentoEntidadeChamadaVetor !== argumentoUtilizadoVetor) {
|
|
630
|
+
possiveisErros.push(`Argumento: ${argumentoEntidadeChamada.nome}. Tipo esperado: ${argumentoEntidadeChamada.tipo}; Tipo utilizado: ${argumentoUtilizado.tipo}`);
|
|
631
|
+
continue;
|
|
632
|
+
}
|
|
633
|
+
const argumentoEntidadeChamadaQualquer = argumentoEntidadeChamada.tipo.startsWith('qualquer');
|
|
634
|
+
if (argumentoEntidadeChamadaQualquer) {
|
|
635
|
+
continue;
|
|
636
|
+
}
|
|
637
|
+
if (argumentoUtilizado.tipo !== argumentoEntidadeChamada.tipo) {
|
|
638
|
+
possiveisErros.push(`Argumento: ${argumentoEntidadeChamada.nome}. Tipo esperado: ${argumentoEntidadeChamada.tipo}; Tipo utilizado: ${argumentoUtilizado.tipo}`);
|
|
639
|
+
}
|
|
640
|
+
}
|
|
641
|
+
return possiveisErros;
|
|
642
|
+
}
|
|
643
|
+
/**
|
|
644
|
+
* Diversas verificações de resolução de entidade chamada, como resolver chamada da pilha ou usar referência, argumentos, etc.
|
|
645
|
+
* @param entidadeChamada O construto da entidade chamada.
|
|
646
|
+
* @param argumentos Os argumentos utilizados na chamada.
|
|
647
|
+
* @param tipoPrimitiva Se for uma primitiva, o tipo dela. Senão, `undefined`.
|
|
648
|
+
* @returns A entidade chamada resolvida, se as validações passarem.
|
|
649
|
+
*/
|
|
650
|
+
resolverEntidadeChamada(entidadeChamada, argumentos, tipoPrimitiva = undefined) {
|
|
614
651
|
if (entidadeChamada.constructor.name === 'Variavel') {
|
|
615
652
|
const entidadeChamadaResolvidaVariavel = entidadeChamada;
|
|
616
|
-
if (
|
|
653
|
+
if (tipoPrimitiva === undefined) {
|
|
654
|
+
// Provavelmente uma chamada a alguma função da biblioteca global.
|
|
655
|
+
const informacoesPossivelFuncaoBibliotecaGlobal = this.pilhaEscopos.obterBibliotecaGlobal(entidadeChamadaResolvidaVariavel.simbolo.lexema);
|
|
656
|
+
if (informacoesPossivelFuncaoBibliotecaGlobal !== undefined) {
|
|
657
|
+
const erros = this.validarArgumentosEntidadeChamada(informacoesPossivelFuncaoBibliotecaGlobal.argumentos, argumentos);
|
|
658
|
+
if (erros.length > 0) {
|
|
659
|
+
throw new erro_avaliador_sintatico_1.ErroAvaliadorSintatico(entidadeChamadaResolvidaVariavel.simbolo, `Erros ao resolver argumentos de chamada a ${entidadeChamadaResolvidaVariavel.simbolo.lexema}: \n${erros.reduce((mensagem, erro) => mensagem += `${erro}\n`, '')}`);
|
|
660
|
+
}
|
|
661
|
+
return entidadeChamadaResolvidaVariavel;
|
|
662
|
+
}
|
|
663
|
+
}
|
|
664
|
+
if (tipoPrimitiva !== undefined && this.primitivasConhecidas.hasOwnProperty(entidadeChamadaResolvidaVariavel.simbolo.lexema)) {
|
|
665
|
+
var informacoesPrimitiva = this.primitivasConhecidas[entidadeChamadaResolvidaVariavel.simbolo.lexema];
|
|
666
|
+
const erros = this.validarArgumentosEntidadeChamada(informacoesPrimitiva.argumentos, argumentos);
|
|
667
|
+
if (erros.length > 0) {
|
|
668
|
+
throw new erro_avaliador_sintatico_1.ErroAvaliadorSintatico(entidadeChamadaResolvidaVariavel.simbolo, `Erros ao resolver argumentos de chamada a ${entidadeChamadaResolvidaVariavel.simbolo.lexema}: \n${erros.reduce((mensagem, erro) => mensagem += `${erro}\n`, '')}`);
|
|
669
|
+
}
|
|
617
670
|
return entidadeChamadaResolvidaVariavel;
|
|
618
671
|
}
|
|
619
672
|
if (entidadeChamadaResolvidaVariavel.simbolo.lexema in this.tiposDefinidosEmCodigo) {
|
|
@@ -630,7 +683,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
630
683
|
}
|
|
631
684
|
return entidadeChamada;
|
|
632
685
|
}
|
|
633
|
-
finalizarChamada(entidadeChamada) {
|
|
686
|
+
finalizarChamada(entidadeChamada, tipoPrimitiva = undefined) {
|
|
634
687
|
const argumentos = [];
|
|
635
688
|
if (!this.verificarTipoSimboloAtual(delegua_2.default.PARENTESE_DIREITO)) {
|
|
636
689
|
do {
|
|
@@ -643,7 +696,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
643
696
|
}
|
|
644
697
|
this.consumir(delegua_2.default.PARENTESE_DIREITO, "Esperado ')' após os argumentos.");
|
|
645
698
|
// Toda chamada precisa saber de antemão qual o tipo resolvido.
|
|
646
|
-
const entidadeChamadaResolvida = this.resolverEntidadeChamada(entidadeChamada);
|
|
699
|
+
const entidadeChamadaResolvida = this.resolverEntidadeChamada(entidadeChamada, argumentos, tipoPrimitiva);
|
|
647
700
|
// TODO: Criar forma de validar tipos dos argumentos da entidade chamada.
|
|
648
701
|
const construtoChamada = new construtos_1.Chamada(this.hashArquivo, entidadeChamadaResolvida, argumentos);
|
|
649
702
|
construtoChamada.tipo = 'qualquer';
|
|
@@ -993,7 +1046,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
993
1046
|
if (!tipoVetor.endsWith('[]')) {
|
|
994
1047
|
throw this.erro(simboloPara, `Variável ou constante em 'para cada' não é iterável. Tipo resolvido: ${tipoVetor}.`);
|
|
995
1048
|
}
|
|
996
|
-
this.pilhaEscopos.
|
|
1049
|
+
this.pilhaEscopos.definirInformacoesVariavel(nomeVariavelIteracao.lexema, new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(nomeVariavelIteracao.lexema, tipoVetor.slice(0, -2)));
|
|
997
1050
|
// TODO: Talvez não seja uma ideia melhor chamar o método de `Bloco` aqui?
|
|
998
1051
|
const corpo = this.resolverDeclaracao();
|
|
999
1052
|
return new declaracoes_1.ParaCada(this.hashArquivo, Number(simboloPara.linha), nomeVariavelIteracao.lexema, vetor, corpo);
|
|
@@ -1232,7 +1285,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1232
1285
|
default:
|
|
1233
1286
|
break;
|
|
1234
1287
|
}
|
|
1235
|
-
this.pilhaEscopos.
|
|
1288
|
+
this.pilhaEscopos.definirInformacoesVariavel(simboloNomeVariavel.lexema, new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(simboloNomeVariavel.lexema, tipoInicializacao));
|
|
1236
1289
|
const blocoCorpo = this.blocoEscopo();
|
|
1237
1290
|
return new declaracoes_1.TendoComo(simboloTendo.linha, simboloTendo.hashArquivo, simboloNomeVariavel, expressaoInicializacao, new declaracoes_1.Bloco(simboloTendo.linha, simboloTendo.hashArquivo, blocoCorpo));
|
|
1238
1291
|
}
|
|
@@ -1246,7 +1299,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1246
1299
|
const inicializador = this.expressao();
|
|
1247
1300
|
const retornos = [];
|
|
1248
1301
|
for (let identificador of identificadores) {
|
|
1249
|
-
this.pilhaEscopos.
|
|
1302
|
+
this.pilhaEscopos.definirInformacoesVariavel(identificador.lexema, new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(identificador.lexema, this.logicaComumInferenciaTiposVariaveisEConstantes(inicializador, 'qualquer')));
|
|
1250
1303
|
const declaracaoVar = new declaracoes_1.Var(identificador, new construtos_1.AcessoMetodoOuPropriedade(this.hashArquivo, inicializador, identificador));
|
|
1251
1304
|
declaracaoVar.decoradores = Array.from(this.pilhaDecoradores);
|
|
1252
1305
|
retornos.push(declaracaoVar);
|
|
@@ -1322,7 +1375,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1322
1375
|
if (!this.verificarSeSimboloAtualEIgualA(delegua_2.default.IGUAL)) {
|
|
1323
1376
|
// Inicialização de variáveis sem valor.
|
|
1324
1377
|
for (let identificador of identificadores.values()) {
|
|
1325
|
-
this.pilhaEscopos.
|
|
1378
|
+
this.pilhaEscopos.definirInformacoesVariavel(identificador.lexema, new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(identificador.lexema, tipo));
|
|
1326
1379
|
retorno.push(new declaracoes_1.Var(identificador, null, tipo, Array.from(this.pilhaDecoradores)));
|
|
1327
1380
|
}
|
|
1328
1381
|
this.verificarSeSimboloAtualEIgualA(delegua_2.default.PONTO_E_VIRGULA);
|
|
@@ -1339,7 +1392,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1339
1392
|
for (let [indice, identificador] of identificadores.entries()) {
|
|
1340
1393
|
// Se tipo ainda não foi definido, infere.
|
|
1341
1394
|
tipo = this.logicaComumInferenciaTiposVariaveisEConstantes(inicializadores[indice], tipo);
|
|
1342
|
-
this.pilhaEscopos.
|
|
1395
|
+
this.pilhaEscopos.definirInformacoesVariavel(identificador.lexema, new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(identificador.lexema, tipo));
|
|
1343
1396
|
retorno.push(new declaracoes_1.Var(identificador, inicializadores[indice], tipo, Array.from(this.pilhaDecoradores)));
|
|
1344
1397
|
}
|
|
1345
1398
|
this.verificarSeSimboloAtualEIgualA(delegua_2.default.PONTO_E_VIRGULA);
|
|
@@ -1357,7 +1410,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1357
1410
|
const retornos = [];
|
|
1358
1411
|
for (let identificador of identificadores) {
|
|
1359
1412
|
// TODO: Melhorar dicionário para intuir o tipo de cada propriedade.
|
|
1360
|
-
this.pilhaEscopos.
|
|
1413
|
+
this.pilhaEscopos.definirInformacoesVariavel(identificador.lexema, new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(identificador.lexema, 'qualquer'));
|
|
1361
1414
|
const declaracaoConst = new declaracoes_1.Const(identificador, new construtos_1.AcessoMetodoOuPropriedade(this.hashArquivo, inicializador, identificador));
|
|
1362
1415
|
declaracaoConst.decoradores = Array.from(this.pilhaDecoradores);
|
|
1363
1416
|
retornos.push(declaracaoConst);
|
|
@@ -1393,7 +1446,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1393
1446
|
for (let [indice, identificador] of identificadores.entries()) {
|
|
1394
1447
|
// Se tipo ainda não foi definido, infere.
|
|
1395
1448
|
tipo = this.logicaComumInferenciaTiposVariaveisEConstantes(inicializadores[indice], tipo);
|
|
1396
|
-
this.pilhaEscopos.
|
|
1449
|
+
this.pilhaEscopos.definirInformacoesVariavel(identificador.lexema, new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(identificador.lexema, tipo));
|
|
1397
1450
|
retorno.push(new declaracoes_1.Const(identificador, inicializadores[indice], tipo, Array.from(this.pilhaDecoradores)));
|
|
1398
1451
|
}
|
|
1399
1452
|
this.pilhaDecoradores = [];
|
|
@@ -1414,9 +1467,9 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1414
1467
|
this.pilhaDecoradores = [];
|
|
1415
1468
|
// Se houver chamadas recursivas à função, precisamos definir um tipo
|
|
1416
1469
|
// para ela. Vai ser atualizado após avaliação do corpo da função.
|
|
1417
|
-
this.pilhaEscopos.
|
|
1470
|
+
this.pilhaEscopos.definirInformacoesVariavel(simbolo.lexema, new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(simbolo.lexema, 'qualquer'));
|
|
1418
1471
|
const corpoDaFuncao = this.corpoDaFuncao(tipo);
|
|
1419
|
-
this.pilhaEscopos.
|
|
1472
|
+
this.pilhaEscopos.definirInformacoesVariavel(simbolo.lexema, new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(simbolo.lexema, corpoDaFuncao.tipo));
|
|
1420
1473
|
const funcaoDeclaracao = new declaracoes_1.FuncaoDeclaracao(simbolo, corpoDaFuncao, corpoDaFuncao.tipo, decoradores);
|
|
1421
1474
|
this.pilhaEscopos.registrarReferenciaFuncao(simbolo.lexema, funcaoDeclaracao);
|
|
1422
1475
|
return funcaoDeclaracao;
|
|
@@ -1442,7 +1495,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1442
1495
|
parametro.tipoDado = tipoDadoParametro;
|
|
1443
1496
|
this.avancarEDevolverAnterior();
|
|
1444
1497
|
}
|
|
1445
|
-
this.pilhaEscopos.
|
|
1498
|
+
this.pilhaEscopos.definirInformacoesVariavel(parametro.nome.lexema, new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(parametro.nome.lexema, parametro.tipoDado || 'qualquer'));
|
|
1446
1499
|
parametros.push(parametro);
|
|
1447
1500
|
if (parametro.abrangencia === 'multiplo')
|
|
1448
1501
|
break;
|
|
@@ -1645,28 +1698,99 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1645
1698
|
this.avancarEDevolverAnterior();
|
|
1646
1699
|
}
|
|
1647
1700
|
}
|
|
1701
|
+
/**
|
|
1702
|
+
* Inicializa o primeiro nível da pilha de escopos, normalmente com ítens da biblioteca global.
|
|
1703
|
+
* TODO: Esta abordagem deve ser depreciada, em favor do novo suporte a referências de funções.
|
|
1704
|
+
*/
|
|
1648
1705
|
inicializarPilhaEscopos() {
|
|
1649
1706
|
this.pilhaEscopos = new pilha_escopos_1.PilhaEscopos();
|
|
1650
1707
|
this.pilhaEscopos.empilhar(new informacao_escopo_1.InformacaoEscopo());
|
|
1651
1708
|
// Funções nativas de Delégua
|
|
1652
|
-
this.pilhaEscopos.
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
this.pilhaEscopos.
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
this.pilhaEscopos.
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
this.pilhaEscopos.
|
|
1664
|
-
|
|
1665
|
-
|
|
1709
|
+
this.pilhaEscopos.definirInformacoesVariavel('aleatorio', new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('aleatorio', 'inteiro', [
|
|
1710
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('número', 'número')
|
|
1711
|
+
]));
|
|
1712
|
+
this.pilhaEscopos.definirInformacoesVariavel('aleatorioEntre', new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('aleatorioEntre', 'inteiro', [
|
|
1713
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('minimo', 'número'),
|
|
1714
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('maximo', 'número')
|
|
1715
|
+
]));
|
|
1716
|
+
this.pilhaEscopos.definirInformacoesVariavel('algum', new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('algum', 'lógico', [
|
|
1717
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('vetor', 'qualquer[]'),
|
|
1718
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('funcaoPesquisa', 'função')
|
|
1719
|
+
]));
|
|
1720
|
+
this.pilhaEscopos.definirInformacoesVariavel('encontrar', new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('encontrar', 'qualquer', [
|
|
1721
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('vetor', 'qualquer[]'),
|
|
1722
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('funcaoPesquisa', 'função')
|
|
1723
|
+
]));
|
|
1724
|
+
this.pilhaEscopos.definirInformacoesVariavel('encontrarIndice', new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('encontrarIndice', 'inteiro', [
|
|
1725
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('vetor', 'qualquer[]'),
|
|
1726
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('funcaoPesquisa', 'função')
|
|
1727
|
+
]));
|
|
1728
|
+
this.pilhaEscopos.definirInformacoesVariavel('encontrarUltimo', new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('encontrarUltimo', 'inteiro', [
|
|
1729
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('vetor', 'qualquer[]'),
|
|
1730
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('funcaoPesquisa', 'função')
|
|
1731
|
+
]));
|
|
1732
|
+
this.pilhaEscopos.definirInformacoesVariavel('encontrarUltimoIndice', new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('encontrarUltimoIndice', 'inteiro', [
|
|
1733
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('vetor', 'qualquer[]'),
|
|
1734
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('funcaoPesquisa', 'função')
|
|
1735
|
+
]));
|
|
1736
|
+
this.pilhaEscopos.definirInformacoesVariavel('filtrarPor', new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('filtrarPor', 'qualquer[]', [
|
|
1737
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('vetor', 'qualquer[]'),
|
|
1738
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('funcaoFiltragem', 'função')
|
|
1739
|
+
]));
|
|
1740
|
+
this.pilhaEscopos.definirInformacoesVariavel('incluido', new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('incluido', 'lógico', [
|
|
1741
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('vetor', 'qualquer[]'),
|
|
1742
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('valor', 'qualquer')
|
|
1743
|
+
]));
|
|
1744
|
+
this.pilhaEscopos.definirInformacoesVariavel('inteiro', new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('inteiro', 'inteiro', [
|
|
1745
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('valor', 'qualquer')
|
|
1746
|
+
]));
|
|
1747
|
+
this.pilhaEscopos.definirInformacoesVariavel('mapear', new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('mapear', 'qualquer[]', [
|
|
1748
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('vetor', 'qualquer[]'),
|
|
1749
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('funcaoMapeamento', 'função')
|
|
1750
|
+
]));
|
|
1751
|
+
this.pilhaEscopos.definirInformacoesVariavel('numero', new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('número', 'número', [
|
|
1752
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('valorParaConverter', 'qualquer')
|
|
1753
|
+
]));
|
|
1754
|
+
this.pilhaEscopos.definirInformacoesVariavel('número', new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('número', 'número', [
|
|
1755
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('valorParaConverter', 'qualquer')
|
|
1756
|
+
]));
|
|
1757
|
+
this.pilhaEscopos.definirInformacoesVariavel('ordenar', new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('ordenar', 'qualquer[]', [
|
|
1758
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('vetor', 'qualquer[]'),
|
|
1759
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('funcaoOrdenacao', 'função')
|
|
1760
|
+
]));
|
|
1761
|
+
this.pilhaEscopos.definirInformacoesVariavel('paraCada', new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('paraCada', 'qualquer[]', [
|
|
1762
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('vetor', 'qualquer[]'),
|
|
1763
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('funcaoFiltragem', 'função')
|
|
1764
|
+
]));
|
|
1765
|
+
this.pilhaEscopos.definirInformacoesVariavel('primeiroEmCondicao', new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('primeiroEmCondicao', 'qualquer', [
|
|
1766
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('vetor', 'qualquer[]'),
|
|
1767
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('funcaoFiltragem', 'função')
|
|
1768
|
+
]));
|
|
1769
|
+
this.pilhaEscopos.definirInformacoesVariavel('real', new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('real', 'número', [
|
|
1770
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('valorParaConverter', 'qualquer')
|
|
1771
|
+
]));
|
|
1772
|
+
this.pilhaEscopos.definirInformacoesVariavel('reduzir', new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('reduzir', 'qualquer', [
|
|
1773
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('vetor', 'qualquer[]'),
|
|
1774
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('funcaoReducao', 'função'),
|
|
1775
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('valorInicial', 'qualquer')
|
|
1776
|
+
]));
|
|
1777
|
+
this.pilhaEscopos.definirInformacoesVariavel('tamanho', new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('tamanho', 'inteiro', [
|
|
1778
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('objeto', 'qualquer')
|
|
1779
|
+
]));
|
|
1780
|
+
this.pilhaEscopos.definirInformacoesVariavel('texto', new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('texto', 'texto', [
|
|
1781
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('valorParaConverter', 'qualquer')
|
|
1782
|
+
]));
|
|
1783
|
+
this.pilhaEscopos.definirInformacoesVariavel('todosEmCondicao', new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('todosEmCondicao', 'lógico', [
|
|
1784
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('vetor', 'qualquer[]'),
|
|
1785
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('funcaoCondicional', 'função')
|
|
1786
|
+
]));
|
|
1787
|
+
this.pilhaEscopos.definirInformacoesVariavel('tupla', new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('tupla', 'tupla', [
|
|
1788
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('vetor', 'qualquer[]')
|
|
1789
|
+
]));
|
|
1666
1790
|
// TODO: Escrever algum tipo de validação aqui.
|
|
1667
1791
|
for (const tipos of Object.values(this.tiposDeFerramentasExternas)) {
|
|
1668
1792
|
for (const [nomeTipo, tipo] of Object.entries(tipos)) {
|
|
1669
|
-
this.pilhaEscopos.
|
|
1793
|
+
this.pilhaEscopos.definirInformacoesVariavel(nomeTipo, new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(nomeTipo, tipo));
|
|
1670
1794
|
}
|
|
1671
1795
|
}
|
|
1672
1796
|
}
|
|
@@ -1693,6 +1817,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1693
1817
|
}
|
|
1694
1818
|
if (this.performance) {
|
|
1695
1819
|
const deltaAnalise = (0, browser_process_hrtime_1.default)(inicioAnalise);
|
|
1820
|
+
// eslint-disable-next-line no-undef
|
|
1696
1821
|
console.log(`[Avaliador Sintático] Tempo para análise: ${deltaAnalise[0] * 1e9 + deltaAnalise[1]}ns`);
|
|
1697
1822
|
}
|
|
1698
1823
|
return {
|
|
@@ -1703,7 +1828,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1703
1828
|
}
|
|
1704
1829
|
exports.AvaliadorSintatico = AvaliadorSintatico;
|
|
1705
1830
|
|
|
1706
|
-
},{"../bibliotecas/primitivas-dicionario":16,"../bibliotecas/primitivas-numero":17,"../bibliotecas/primitivas-texto":18,"../bibliotecas/primitivas-vetor":19,"../construtos":42,"../construtos/tuplas":52,"../declaracoes":82,"../inferenciador":105,"../tipos-de-dados/delegua":
|
|
1831
|
+
},{"../bibliotecas/primitivas-dicionario":16,"../bibliotecas/primitivas-numero":17,"../bibliotecas/primitivas-texto":18,"../bibliotecas/primitivas-vetor":19,"../construtos":42,"../construtos/tuplas":52,"../declaracoes":82,"../inferenciador":105,"../informacao-variavel-ou-constante":106,"../tipos-de-dados/delegua":162,"../tipos-de-simbolos/delegua":165,"./avaliador-sintatico-base":1,"./erro-avaliador-sintatico":7,"./informacao-escopo":9,"./pilha-escopos":12,"browser-process-hrtime":342}],3:[function(require,module,exports){
|
|
1707
1832
|
"use strict";
|
|
1708
1833
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
1709
1834
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -2355,7 +2480,7 @@ class AvaliadorSintaticoEguaClassico {
|
|
|
2355
2480
|
}
|
|
2356
2481
|
exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
|
|
2357
2482
|
|
|
2358
|
-
},{"../../construtos":42,"../../declaracoes":82,"../../tipos-de-simbolos/egua-classico":
|
|
2483
|
+
},{"../../construtos":42,"../../declaracoes":82,"../../tipos-de-simbolos/egua-classico":166,"../erro-avaliador-sintatico":7}],4:[function(require,module,exports){
|
|
2359
2484
|
"use strict";
|
|
2360
2485
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
2361
2486
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -3015,6 +3140,7 @@ class AvaliadorSintaticoPitugues {
|
|
|
3015
3140
|
case pitugues_1.default.ESCOLHA:
|
|
3016
3141
|
this.avancarEDevolverAnterior();
|
|
3017
3142
|
return this.declaracaoEscolha();
|
|
3143
|
+
case pitugues_1.default.IMPRIMA:
|
|
3018
3144
|
case pitugues_1.default.ESCREVA:
|
|
3019
3145
|
this.avancarEDevolverAnterior();
|
|
3020
3146
|
return this.declaracaoEscreva();
|
|
@@ -3162,7 +3288,7 @@ class AvaliadorSintaticoPitugues {
|
|
|
3162
3288
|
}
|
|
3163
3289
|
exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
|
|
3164
3290
|
|
|
3165
|
-
},{"../../construtos":42,"../../declaracoes":82,"../../inferenciador":105,"../../lexador":
|
|
3291
|
+
},{"../../construtos":42,"../../declaracoes":82,"../../inferenciador":105,"../../lexador":154,"../../tipos-de-simbolos/pitugues":169,"../erro-avaliador-sintatico":7,"browser-process-hrtime":342}],5:[function(require,module,exports){
|
|
3166
3292
|
"use strict";
|
|
3167
3293
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3168
3294
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -3331,7 +3457,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
|
|
|
3331
3457
|
}
|
|
3332
3458
|
exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
|
|
3333
3459
|
|
|
3334
|
-
},{"../../construtos":42,"../../declaracoes":82,"../../tipos-de-simbolos/portugol-ipt":
|
|
3460
|
+
},{"../../construtos":42,"../../declaracoes":82,"../../tipos-de-simbolos/portugol-ipt":170,"../avaliador-sintatico-base":1}],6:[function(require,module,exports){
|
|
3335
3461
|
"use strict";
|
|
3336
3462
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3337
3463
|
if (k2 === undefined) k2 = k;
|
|
@@ -3386,11 +3512,12 @@ __exportStar(require("./avaliador-sintatico"), exports);
|
|
|
3386
3512
|
__exportStar(require("./avaliador-sintatico-base"), exports);
|
|
3387
3513
|
__exportStar(require("./dialetos"), exports);
|
|
3388
3514
|
__exportStar(require("./erro-avaliador-sintatico"), exports);
|
|
3515
|
+
__exportStar(require("./informacao-escopo"), exports);
|
|
3389
3516
|
__exportStar(require("./micro-avaliador-sintatico"), exports);
|
|
3390
3517
|
__exportStar(require("./pilha-escopos"), exports);
|
|
3391
3518
|
__exportStar(require("./retornos"), exports);
|
|
3392
3519
|
|
|
3393
|
-
},{"./avaliador-sintatico":2,"./avaliador-sintatico-base":1,"./dialetos":6,"./erro-avaliador-sintatico":7,"./micro-avaliador-sintatico":11,"./pilha-escopos":12,"./retornos":13}],9:[function(require,module,exports){
|
|
3520
|
+
},{"./avaliador-sintatico":2,"./avaliador-sintatico-base":1,"./dialetos":6,"./erro-avaliador-sintatico":7,"./informacao-escopo":9,"./micro-avaliador-sintatico":11,"./pilha-escopos":12,"./retornos":13}],9:[function(require,module,exports){
|
|
3394
3521
|
"use strict";
|
|
3395
3522
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3396
3523
|
exports.InformacaoEscopo = void 0;
|
|
@@ -3520,7 +3647,7 @@ class MicroAvaliadorSintaticoBase {
|
|
|
3520
3647
|
}
|
|
3521
3648
|
exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
|
|
3522
3649
|
|
|
3523
|
-
},{"../construtos":42,"../tipos-de-simbolos/comum":
|
|
3650
|
+
},{"../construtos":42,"../tipos-de-simbolos/comum":164,"./erro-avaliador-sintatico":7}],11:[function(require,module,exports){
|
|
3524
3651
|
"use strict";
|
|
3525
3652
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3526
3653
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -3726,7 +3853,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
|
|
|
3726
3853
|
}
|
|
3727
3854
|
exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
|
|
3728
3855
|
|
|
3729
|
-
},{"../construtos":42,"../tipos-de-simbolos/microgramaticas/delegua":
|
|
3856
|
+
},{"../construtos":42,"../tipos-de-simbolos/microgramaticas/delegua":168,"./micro-avaliador-sintatico-base":10}],12:[function(require,module,exports){
|
|
3730
3857
|
"use strict";
|
|
3731
3858
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3732
3859
|
exports.PilhaEscopos = void 0;
|
|
@@ -3750,18 +3877,21 @@ class PilhaEscopos {
|
|
|
3750
3877
|
throw new Error('Pilha vazia.');
|
|
3751
3878
|
return this.pilha.pop();
|
|
3752
3879
|
}
|
|
3880
|
+
obterBibliotecaGlobal(nome) {
|
|
3881
|
+
return this.pilha[0].variaveisEConstantes[nome];
|
|
3882
|
+
}
|
|
3753
3883
|
obterTipoVariavelPorNome(nome) {
|
|
3754
3884
|
for (let i = 1; i <= this.pilha.length; i++) {
|
|
3755
3885
|
const informacaoEscopo = this.pilha[this.pilha.length - i];
|
|
3756
3886
|
if (informacaoEscopo.variaveisEConstantes[nome] !== undefined) {
|
|
3757
|
-
return informacaoEscopo.variaveisEConstantes[nome];
|
|
3887
|
+
return informacaoEscopo.variaveisEConstantes[nome].tipo;
|
|
3758
3888
|
}
|
|
3759
3889
|
}
|
|
3760
3890
|
throw new Error("Variável não definida: '" + nome + "'.");
|
|
3761
3891
|
}
|
|
3762
|
-
|
|
3892
|
+
definirInformacoesVariavel(nomeVariavel, informacoes) {
|
|
3763
3893
|
const topoDaPilha = this.topoDaPilha();
|
|
3764
|
-
topoDaPilha.variaveisEConstantes[nomeVariavel] =
|
|
3894
|
+
topoDaPilha.variaveisEConstantes[nomeVariavel] = informacoes;
|
|
3765
3895
|
}
|
|
3766
3896
|
registrarReferenciaFuncao(nome, definicao) {
|
|
3767
3897
|
const topoDaPilha = this.topoDaPilha();
|
|
@@ -3943,7 +4073,7 @@ async function encontrarIndice(interpretador, vetor, funcaoPesquisa) {
|
|
|
3943
4073
|
* @param {InterpretadorInterface} interpretador A instância do interpretador.
|
|
3944
4074
|
* @param {VariavelInterface | any} vetor Uma variável de Delégua ou um vetor nativo de JavaScript.
|
|
3945
4075
|
* @param {VariavelInterface | any} funcaoPesquisa A função que ensina o método de pesquisa.
|
|
3946
|
-
* @returns {Promise<
|
|
4076
|
+
* @returns {Promise<any>} O número correspondente ao índice se o elemento for encontrado, ou nulo em caso contrário.
|
|
3947
4077
|
*/
|
|
3948
4078
|
async function encontrarUltimo(interpretador, vetor, funcaoPesquisa) {
|
|
3949
4079
|
const valorVetor = vetor.hasOwnProperty('valor') ? vetor.valor : vetor;
|
|
@@ -4065,6 +4195,8 @@ async function mapear(interpretador, vetor, funcaoMapeamento) {
|
|
|
4065
4195
|
return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(this.simbolo, 'Parâmetro inválido. O primeiro parâmetro da função mapear() não pode ser nulo.'));
|
|
4066
4196
|
const valorVetor = vetor.hasOwnProperty('valor') ? vetor.valor : vetor;
|
|
4067
4197
|
const valorFuncaoMapeamento = funcaoMapeamento.hasOwnProperty('valor') ? funcaoMapeamento.valor : funcaoMapeamento;
|
|
4198
|
+
// TODO: As lógicas de validação abaixo deixam de fazer sentido com a validação de argumentos feita
|
|
4199
|
+
// na avaliação sintática. Estudar remoção.
|
|
4068
4200
|
if (!Array.isArray(valorVetor)) {
|
|
4069
4201
|
return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(this.simbolo, 'Parâmetro inválido. O primeiro parâmetro da função mapear() deve ser um vetor.'));
|
|
4070
4202
|
}
|
|
@@ -4127,6 +4259,8 @@ async function paraCada(interpretador, vetor, funcaoFiltragem) {
|
|
|
4127
4259
|
return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(this.simbolo, 'Parâmetro inválido. O primeiro parâmetro da função paraCada() não pode ser nulo.'));
|
|
4128
4260
|
const valorVetor = vetor.hasOwnProperty('valor') ? vetor.valor : vetor;
|
|
4129
4261
|
const valorFuncaoFiltragem = funcaoFiltragem.hasOwnProperty('valor') ? funcaoFiltragem.valor : funcaoFiltragem;
|
|
4262
|
+
// TODO: As lógicas de validação abaixo deixam de fazer sentido com a validação de argumentos feita
|
|
4263
|
+
// na avaliação sintática. Estudar remoção.
|
|
4130
4264
|
if (!Array.isArray(valorVetor)) {
|
|
4131
4265
|
return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(this.simbolo, 'Parâmetro inválido. O primeiro parâmetro da função paraCada() deve ser um vetor.'));
|
|
4132
4266
|
}
|
|
@@ -4183,13 +4317,13 @@ async function real(interpretador, numero) {
|
|
|
4183
4317
|
* @param interpretador
|
|
4184
4318
|
* @param vetor
|
|
4185
4319
|
* @param funcaoReducao
|
|
4186
|
-
* @param
|
|
4320
|
+
* @param valorInicial
|
|
4187
4321
|
* @returns
|
|
4188
4322
|
*/
|
|
4189
|
-
async function reduzir(interpretador, vetor, funcaoReducao,
|
|
4323
|
+
async function reduzir(interpretador, vetor, funcaoReducao, valorInicial = null) {
|
|
4190
4324
|
const valorVetor = vetor.hasOwnProperty('valor') ? vetor.valor : vetor;
|
|
4191
4325
|
const valorFuncaoReducao = funcaoReducao.hasOwnProperty('valor') ? funcaoReducao.valor : funcaoReducao;
|
|
4192
|
-
const valorPadrao =
|
|
4326
|
+
const valorPadrao = valorInicial.hasOwnProperty('valor') ? valorInicial.valor : valorInicial;
|
|
4193
4327
|
if (!Array.isArray(valorVetor)) {
|
|
4194
4328
|
return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(this.simbolo, 'Parâmetro inválido. O primeiro parâmetro da função deve ser um vetor.'));
|
|
4195
4329
|
}
|
|
@@ -4239,11 +4373,11 @@ async function tamanho(interpretador, objeto) {
|
|
|
4239
4373
|
/**
|
|
4240
4374
|
* Transforma o valor ou variável em texto.
|
|
4241
4375
|
* @param {InterpretadorInterface} interpretador A instância do interpretador.
|
|
4242
|
-
* @param {VariavelInterface | any}
|
|
4376
|
+
* @param {VariavelInterface | any} valorParaConverter O valor ou variável.
|
|
4243
4377
|
* @returns {Promise<string>} O valor resolvido em texto.
|
|
4244
4378
|
*/
|
|
4245
|
-
async function texto(interpretador,
|
|
4246
|
-
return Promise.resolve(`${
|
|
4379
|
+
async function texto(interpretador, valorParaConverter) {
|
|
4380
|
+
return Promise.resolve(`${valorParaConverter.hasOwnProperty('valor') ? valorParaConverter.valor : valorParaConverter}`);
|
|
4247
4381
|
}
|
|
4248
4382
|
/**
|
|
4249
4383
|
* Retorna verdadeiro se todos os elementos do primeiro parâmetro retornam verdadeiro ao
|
|
@@ -4279,10 +4413,12 @@ async function todosEmCondicao(interpretador, vetor, funcaoCondicional) {
|
|
|
4279
4413
|
* largura do vetor.
|
|
4280
4414
|
* @param {InterpretadorInterface} interpretador A instância do interpretador.
|
|
4281
4415
|
* @param {VariavelInterface | any[]} vetor O vetor.
|
|
4282
|
-
* @returns
|
|
4416
|
+
* @returns A tupla resolvida.
|
|
4283
4417
|
*/
|
|
4284
4418
|
async function tupla(interpretador, vetor) {
|
|
4285
4419
|
const valorVetor = !Array.isArray(vetor) && vetor.hasOwnProperty('valor') ? vetor.valor : vetor;
|
|
4420
|
+
// TODO: As lógicas de validação abaixo deixam de fazer sentido com a validação de argumentos feita
|
|
4421
|
+
// na avaliação sintática. Estudar remoção.
|
|
4286
4422
|
if (!Array.isArray(valorVetor)) {
|
|
4287
4423
|
return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(this.simbolo, 'Argumento de função nativa `tupla` não parece ser um vetor.'));
|
|
4288
4424
|
}
|
|
@@ -4311,18 +4447,20 @@ async function tupla(interpretador, vetor) {
|
|
|
4311
4447
|
}
|
|
4312
4448
|
}
|
|
4313
4449
|
|
|
4314
|
-
},{"../construtos":42,"../excecoes":99,"../interpretador/estruturas":
|
|
4450
|
+
},{"../construtos":42,"../excecoes":99,"../interpretador/estruturas":135,"../interpretador/estruturas/descritor-tipo-classe":133,"../interpretador/estruturas/funcao-padrao":134,"../interpretador/estruturas/objeto-delegua-classe":138}],16:[function(require,module,exports){
|
|
4315
4451
|
"use strict";
|
|
4316
4452
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4317
4453
|
exports.default = {
|
|
4318
4454
|
chaves: {
|
|
4319
4455
|
tipoRetorno: 'texto[]',
|
|
4456
|
+
argumentos: [],
|
|
4320
4457
|
implementacao: (interpretador, valor) => {
|
|
4321
4458
|
return Promise.resolve(Object.keys(valor));
|
|
4322
4459
|
},
|
|
4323
4460
|
},
|
|
4324
4461
|
valores: {
|
|
4325
4462
|
tipoRetorno: 'qualquer[]',
|
|
4463
|
+
argumentos: [],
|
|
4326
4464
|
implementacao: (interpretador, valor) => {
|
|
4327
4465
|
return Promise.resolve(Object.values(valor));
|
|
4328
4466
|
},
|
|
@@ -4335,12 +4473,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
4335
4473
|
exports.default = {
|
|
4336
4474
|
arredondarParaBaixo: {
|
|
4337
4475
|
tipoRetorno: 'número',
|
|
4476
|
+
argumentos: [],
|
|
4338
4477
|
implementacao: (interpretador, valor) => {
|
|
4339
4478
|
return Promise.resolve(Math.floor(valor));
|
|
4340
4479
|
},
|
|
4341
4480
|
},
|
|
4342
4481
|
arredondarParaCima: {
|
|
4343
4482
|
tipoRetorno: 'número',
|
|
4483
|
+
argumentos: [],
|
|
4344
4484
|
implementacao: (interpretador, valor) => {
|
|
4345
4485
|
return Promise.resolve(Math.ceil(valor));
|
|
4346
4486
|
},
|
|
@@ -4350,25 +4490,34 @@ exports.default = {
|
|
|
4350
4490
|
},{}],18:[function(require,module,exports){
|
|
4351
4491
|
"use strict";
|
|
4352
4492
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4493
|
+
const informacao_variavel_ou_constante_1 = require("../informacao-variavel-ou-constante");
|
|
4353
4494
|
exports.default = {
|
|
4354
4495
|
aparar: {
|
|
4355
4496
|
tipoRetorno: 'texto',
|
|
4497
|
+
argumentos: [],
|
|
4356
4498
|
implementacao: (interpretador, texto) => Promise.resolve(texto.trim()),
|
|
4357
4499
|
},
|
|
4358
4500
|
apararFim: {
|
|
4359
4501
|
tipoRetorno: 'texto',
|
|
4502
|
+
argumentos: [],
|
|
4360
4503
|
implementacao: (interpretador, texto) => Promise.resolve(texto.trimEnd()),
|
|
4361
4504
|
},
|
|
4362
4505
|
apararInicio: {
|
|
4363
4506
|
tipoRetorno: 'texto',
|
|
4507
|
+
argumentos: [],
|
|
4364
4508
|
implementacao: (interpretador, texto) => Promise.resolve(texto.trimStart()),
|
|
4365
4509
|
},
|
|
4366
4510
|
concatenar: {
|
|
4367
4511
|
tipoRetorno: 'texto',
|
|
4512
|
+
argumentos: [],
|
|
4368
4513
|
implementacao: (interpretador, ...texto) => Promise.resolve(''.concat(...texto)),
|
|
4369
4514
|
},
|
|
4370
4515
|
dividir: {
|
|
4371
4516
|
tipoRetorno: 'texto[]',
|
|
4517
|
+
argumentos: [
|
|
4518
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('divisor', 'texto'),
|
|
4519
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('limite', 'número')
|
|
4520
|
+
],
|
|
4372
4521
|
implementacao: (interpretador, texto, divisor, limite) => {
|
|
4373
4522
|
if (limite) {
|
|
4374
4523
|
return Promise.resolve(texto.split(divisor, limite));
|
|
@@ -4378,44 +4527,67 @@ exports.default = {
|
|
|
4378
4527
|
},
|
|
4379
4528
|
fatiar: {
|
|
4380
4529
|
tipoRetorno: 'texto',
|
|
4530
|
+
argumentos: [
|
|
4531
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('inicio', 'número'),
|
|
4532
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('fim', 'número')
|
|
4533
|
+
],
|
|
4381
4534
|
implementacao: (interpretador, texto, inicio, fim) => Promise.resolve(texto.slice(inicio, fim)),
|
|
4382
4535
|
},
|
|
4383
4536
|
inclui: {
|
|
4384
4537
|
tipoRetorno: 'texto',
|
|
4538
|
+
argumentos: [
|
|
4539
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('elemento', 'texto')
|
|
4540
|
+
],
|
|
4385
4541
|
implementacao: (interpretador, texto, elemento) => Promise.resolve(texto.includes(elemento)),
|
|
4386
4542
|
},
|
|
4387
4543
|
inverter: {
|
|
4388
4544
|
tipoRetorno: 'texto',
|
|
4545
|
+
argumentos: [],
|
|
4389
4546
|
implementacao: (interpretador, texto) => Promise.resolve(texto.split('').reduce((texto, caracter) => (texto = caracter + texto), '')),
|
|
4390
4547
|
},
|
|
4391
4548
|
maiusculo: {
|
|
4392
4549
|
tipoRetorno: 'texto',
|
|
4550
|
+
argumentos: [],
|
|
4393
4551
|
implementacao: (interpretador, texto) => Promise.resolve(texto.toUpperCase()),
|
|
4394
4552
|
},
|
|
4395
4553
|
minusculo: {
|
|
4396
4554
|
tipoRetorno: 'texto',
|
|
4555
|
+
argumentos: [],
|
|
4397
4556
|
implementacao: (interpretador, texto) => Promise.resolve(texto.toLowerCase()),
|
|
4398
4557
|
},
|
|
4399
4558
|
substituir: {
|
|
4400
4559
|
tipoRetorno: 'texto',
|
|
4560
|
+
argumentos: [
|
|
4561
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('elemento', 'texto'),
|
|
4562
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('substituto', 'texto')
|
|
4563
|
+
],
|
|
4401
4564
|
implementacao: (interpretador, texto, elemento, substituto) => Promise.resolve(texto.replace(elemento, substituto)),
|
|
4402
4565
|
},
|
|
4403
4566
|
subtexto: {
|
|
4404
4567
|
tipoRetorno: 'texto',
|
|
4568
|
+
argumentos: [
|
|
4569
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('inicio', 'número'),
|
|
4570
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('fim', 'número')
|
|
4571
|
+
],
|
|
4405
4572
|
implementacao: (interpretador, texto, inicio, fim) => Promise.resolve(texto.slice(inicio, fim)),
|
|
4406
4573
|
},
|
|
4407
4574
|
tamanho: {
|
|
4408
4575
|
tipoRetorno: 'número',
|
|
4576
|
+
argumentos: [],
|
|
4409
4577
|
implementacao: (interpretador, texto) => Promise.resolve(texto.length),
|
|
4410
4578
|
},
|
|
4411
4579
|
};
|
|
4412
4580
|
|
|
4413
|
-
},{}],19:[function(require,module,exports){
|
|
4581
|
+
},{"../informacao-variavel-ou-constante":106}],19:[function(require,module,exports){
|
|
4414
4582
|
"use strict";
|
|
4415
4583
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4584
|
+
const informacao_variavel_ou_constante_1 = require("../informacao-variavel-ou-constante");
|
|
4416
4585
|
exports.default = {
|
|
4417
4586
|
adicionar: {
|
|
4418
4587
|
tipoRetorno: 'qualquer[]',
|
|
4588
|
+
argumentos: [
|
|
4589
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('elemento', 'qualquer')
|
|
4590
|
+
],
|
|
4419
4591
|
implementacao: (interpretador, vetor, elemento) => {
|
|
4420
4592
|
vetor.push(elemento);
|
|
4421
4593
|
return Promise.resolve(vetor);
|
|
@@ -4423,12 +4595,18 @@ exports.default = {
|
|
|
4423
4595
|
},
|
|
4424
4596
|
concatenar: {
|
|
4425
4597
|
tipoRetorno: 'qualquer[]',
|
|
4598
|
+
argumentos: [
|
|
4599
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('outroVetor', 'qualquer[]')
|
|
4600
|
+
],
|
|
4426
4601
|
implementacao: (interpretador, vetor, outroVetor) => {
|
|
4427
4602
|
return Promise.resolve(vetor.concat(outroVetor));
|
|
4428
4603
|
},
|
|
4429
4604
|
},
|
|
4430
4605
|
empilhar: {
|
|
4431
4606
|
tipoRetorno: 'qualquer[]',
|
|
4607
|
+
argumentos: [
|
|
4608
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('elemento', 'qualquer')
|
|
4609
|
+
],
|
|
4432
4610
|
implementacao: (interpretador, vetor, elemento) => {
|
|
4433
4611
|
vetor.push(elemento);
|
|
4434
4612
|
return Promise.resolve(vetor);
|
|
@@ -4436,25 +4614,37 @@ exports.default = {
|
|
|
4436
4614
|
},
|
|
4437
4615
|
encaixar: {
|
|
4438
4616
|
tipoRetorno: 'qualquer[]',
|
|
4439
|
-
|
|
4617
|
+
argumentos: [
|
|
4618
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('inicio', 'qualquer'),
|
|
4619
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('excluirQuantidade', 'número'),
|
|
4620
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('itens', 'qualquer[]')
|
|
4621
|
+
],
|
|
4622
|
+
implementacao: (interpretador, vetor, inicio, excluirQuantidade, ...itens) => {
|
|
4440
4623
|
let elementos = [];
|
|
4441
4624
|
if (excluirQuantidade || excluirQuantidade === 0) {
|
|
4442
|
-
elementos = !
|
|
4625
|
+
elementos = !itens.length
|
|
4443
4626
|
? vetor.splice(inicio, excluirQuantidade)
|
|
4444
|
-
: vetor.splice(inicio, excluirQuantidade, ...
|
|
4627
|
+
: vetor.splice(inicio, excluirQuantidade, ...itens);
|
|
4445
4628
|
}
|
|
4446
4629
|
else {
|
|
4447
|
-
elementos = !
|
|
4630
|
+
elementos = !itens.length ? vetor.splice(inicio) : vetor.splice(inicio, ...itens);
|
|
4448
4631
|
}
|
|
4449
4632
|
return Promise.resolve(elementos);
|
|
4450
4633
|
},
|
|
4451
4634
|
},
|
|
4452
4635
|
fatiar: {
|
|
4453
4636
|
tipoRetorno: 'qualquer[]',
|
|
4637
|
+
argumentos: [
|
|
4638
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('inicio', 'número'),
|
|
4639
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('fim', 'número')
|
|
4640
|
+
],
|
|
4454
4641
|
implementacao: (interpretador, vetor, inicio, fim) => Promise.resolve(vetor.slice(inicio, fim)),
|
|
4455
4642
|
},
|
|
4456
4643
|
filtrarPor: {
|
|
4457
4644
|
tipoRetorno: 'qualquer[]',
|
|
4645
|
+
argumentos: [
|
|
4646
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('funcao', 'função')
|
|
4647
|
+
],
|
|
4458
4648
|
implementacao: async (interpretador, vetor, funcao) => {
|
|
4459
4649
|
if (funcao === undefined || funcao === null) {
|
|
4460
4650
|
return Promise.reject("É necessário passar uma função para o método 'filtrarPor'");
|
|
@@ -4470,18 +4660,28 @@ exports.default = {
|
|
|
4470
4660
|
},
|
|
4471
4661
|
inclui: {
|
|
4472
4662
|
tipoRetorno: 'lógico',
|
|
4663
|
+
argumentos: [
|
|
4664
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('elemento', 'qualquer')
|
|
4665
|
+
],
|
|
4473
4666
|
implementacao: (interpretador, vetor, elemento) => Promise.resolve(vetor.includes(elemento)),
|
|
4474
4667
|
},
|
|
4475
4668
|
inverter: {
|
|
4476
4669
|
tipoRetorno: 'qualquer[]',
|
|
4670
|
+
argumentos: [],
|
|
4477
4671
|
implementacao: (interpretador, vetor) => Promise.resolve(vetor.reverse()),
|
|
4478
4672
|
},
|
|
4479
4673
|
juntar: {
|
|
4480
4674
|
tipoRetorno: 'texto',
|
|
4675
|
+
argumentos: [
|
|
4676
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('separador', 'texto')
|
|
4677
|
+
],
|
|
4481
4678
|
implementacao: (interpretador, vetor, separador) => Promise.resolve(vetor.join(separador)),
|
|
4482
4679
|
},
|
|
4483
4680
|
mapear: {
|
|
4484
4681
|
tipoRetorno: 'qualquer[]',
|
|
4682
|
+
argumentos: [
|
|
4683
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('funcao', 'função')
|
|
4684
|
+
],
|
|
4485
4685
|
implementacao: async (interpretador, vetor, funcao) => {
|
|
4486
4686
|
if (funcao === undefined || funcao === null) {
|
|
4487
4687
|
return Promise.reject("É necessário passar uma função para o método 'mapear'");
|
|
@@ -4496,6 +4696,9 @@ exports.default = {
|
|
|
4496
4696
|
},
|
|
4497
4697
|
ordenar: {
|
|
4498
4698
|
tipoRetorno: 'qualquer[]',
|
|
4699
|
+
argumentos: [
|
|
4700
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('funcaoOrdenacao', 'função')
|
|
4701
|
+
],
|
|
4499
4702
|
implementacao: async (interpretador, vetor, funcaoOrdenacao) => {
|
|
4500
4703
|
if (funcaoOrdenacao !== undefined && funcaoOrdenacao !== null) {
|
|
4501
4704
|
for (let i = 0; i < vetor.length - 1; i++) {
|
|
@@ -4517,6 +4720,9 @@ exports.default = {
|
|
|
4517
4720
|
},
|
|
4518
4721
|
remover: {
|
|
4519
4722
|
tipoRetorno: 'qualquer[]',
|
|
4723
|
+
argumentos: [
|
|
4724
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('elemento', 'qualquer')
|
|
4725
|
+
],
|
|
4520
4726
|
implementacao: (interpretador, vetor, elemento) => {
|
|
4521
4727
|
const index = vetor.indexOf(elemento);
|
|
4522
4728
|
if (index !== -1)
|
|
@@ -4526,6 +4732,7 @@ exports.default = {
|
|
|
4526
4732
|
},
|
|
4527
4733
|
removerPrimeiro: {
|
|
4528
4734
|
tipoRetorno: 'qualquer',
|
|
4735
|
+
argumentos: [],
|
|
4529
4736
|
implementacao: (interpretador, vetor) => {
|
|
4530
4737
|
let elemento = vetor.shift();
|
|
4531
4738
|
return Promise.resolve(elemento);
|
|
@@ -4533,6 +4740,7 @@ exports.default = {
|
|
|
4533
4740
|
},
|
|
4534
4741
|
removerUltimo: {
|
|
4535
4742
|
tipoRetorno: 'qualquer',
|
|
4743
|
+
argumentos: [],
|
|
4536
4744
|
implementacao: (interpretador, vetor) => {
|
|
4537
4745
|
let elemento = vetor.pop();
|
|
4538
4746
|
return Promise.resolve(elemento);
|
|
@@ -4540,17 +4748,19 @@ exports.default = {
|
|
|
4540
4748
|
},
|
|
4541
4749
|
somar: {
|
|
4542
4750
|
tipoRetorno: 'qualquer',
|
|
4751
|
+
argumentos: [],
|
|
4543
4752
|
implementacao: (interpretador, vetor) => {
|
|
4544
4753
|
return Promise.resolve(vetor.reduce((acc, item) => acc + (typeof item === 'number' ? item : item.valor), 0));
|
|
4545
4754
|
},
|
|
4546
4755
|
},
|
|
4547
4756
|
tamanho: {
|
|
4548
4757
|
tipoRetorno: 'número',
|
|
4758
|
+
argumentos: [],
|
|
4549
4759
|
implementacao: (interpretador, vetor) => Promise.resolve(vetor.length),
|
|
4550
4760
|
},
|
|
4551
4761
|
};
|
|
4552
4762
|
|
|
4553
|
-
},{}],20:[function(require,module,exports){
|
|
4763
|
+
},{"../informacao-variavel-ou-constante":106}],20:[function(require,module,exports){
|
|
4554
4764
|
"use strict";
|
|
4555
4765
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4556
4766
|
exports.AcessoElementoMatriz = void 0;
|
|
@@ -6968,7 +7178,7 @@ class FormatadorDelegua {
|
|
|
6968
7178
|
}
|
|
6969
7179
|
exports.FormatadorDelegua = FormatadorDelegua;
|
|
6970
7180
|
|
|
6971
|
-
},{"../construtos":42,"../tipos-de-simbolos/delegua":
|
|
7181
|
+
},{"../construtos":42,"../tipos-de-simbolos/delegua":165}],101:[function(require,module,exports){
|
|
6972
7182
|
"use strict";
|
|
6973
7183
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6974
7184
|
exports.FormatadorPitugues = void 0;
|
|
@@ -7217,7 +7427,7 @@ __exportStar(require("./interpretador"), exports);
|
|
|
7217
7427
|
__exportStar(require("./lexador"), exports);
|
|
7218
7428
|
__exportStar(require("./tradutores"), exports);
|
|
7219
7429
|
|
|
7220
|
-
},{"./avaliador-sintatico":8,"./construtos":42,"./declaracoes":82,"./depuracao":95,"./formatadores":102,"./interfaces":
|
|
7430
|
+
},{"./avaliador-sintatico":8,"./construtos":42,"./declaracoes":82,"./depuracao":95,"./formatadores":102,"./interfaces":112,"./interpretador":140,"./lexador":154,"./tradutores":171}],105:[function(require,module,exports){
|
|
7221
7431
|
"use strict";
|
|
7222
7432
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
7223
7433
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -7344,9 +7554,22 @@ function tipoInferenciaParaTipoDadosElementar(tipoInferencia) {
|
|
|
7344
7554
|
}
|
|
7345
7555
|
}
|
|
7346
7556
|
|
|
7347
|
-
},{"./tipos-de-dados/delegua":
|
|
7557
|
+
},{"./tipos-de-dados/delegua":162,"./tipos-de-dados/primitivos":163,"./tipos-de-simbolos/delegua":165}],106:[function(require,module,exports){
|
|
7348
7558
|
"use strict";
|
|
7349
7559
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7560
|
+
exports.InformacaoVariavelOuConstante = void 0;
|
|
7561
|
+
class InformacaoVariavelOuConstante {
|
|
7562
|
+
constructor(nome, tipo, argumentos = []) {
|
|
7563
|
+
this.argumentos = [];
|
|
7564
|
+
this.nome = nome;
|
|
7565
|
+
this.tipo = tipo;
|
|
7566
|
+
this.argumentos = argumentos;
|
|
7567
|
+
}
|
|
7568
|
+
toString() {
|
|
7569
|
+
return `InformacaoVariavelOuConstante(nome=${this.nome}, tipo=${this.tipo}, argumentos=${this.argumentos.map(arg => arg.toString()).join(', ')})`;
|
|
7570
|
+
}
|
|
7571
|
+
}
|
|
7572
|
+
exports.InformacaoVariavelOuConstante = InformacaoVariavelOuConstante;
|
|
7350
7573
|
|
|
7351
7574
|
},{}],107:[function(require,module,exports){
|
|
7352
7575
|
"use strict";
|
|
@@ -7355,6 +7578,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
7355
7578
|
},{}],108:[function(require,module,exports){
|
|
7356
7579
|
"use strict";
|
|
7357
7580
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7581
|
+
|
|
7582
|
+
},{}],109:[function(require,module,exports){
|
|
7583
|
+
"use strict";
|
|
7584
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7358
7585
|
exports.DiagnosticoSeveridade = void 0;
|
|
7359
7586
|
var DiagnosticoSeveridade;
|
|
7360
7587
|
(function (DiagnosticoSeveridade) {
|
|
@@ -7364,7 +7591,7 @@ var DiagnosticoSeveridade;
|
|
|
7364
7591
|
DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
|
|
7365
7592
|
})(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
|
|
7366
7593
|
|
|
7367
|
-
},{}],
|
|
7594
|
+
},{}],110:[function(require,module,exports){
|
|
7368
7595
|
"use strict";
|
|
7369
7596
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7370
7597
|
if (k2 === undefined) k2 = k;
|
|
@@ -7383,11 +7610,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
7383
7610
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7384
7611
|
__exportStar(require("./diagnostico-analisador-semantico"), exports);
|
|
7385
7612
|
|
|
7386
|
-
},{"./diagnostico-analisador-semantico":
|
|
7613
|
+
},{"./diagnostico-analisador-semantico":109}],111:[function(require,module,exports){
|
|
7387
7614
|
"use strict";
|
|
7388
7615
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7389
7616
|
|
|
7390
|
-
},{}],
|
|
7617
|
+
},{}],112:[function(require,module,exports){
|
|
7391
7618
|
"use strict";
|
|
7392
7619
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7393
7620
|
if (k2 === undefined) k2 = k;
|
|
@@ -7422,11 +7649,7 @@ __exportStar(require("./construtos"), exports);
|
|
|
7422
7649
|
__exportStar(require("./erros"), exports);
|
|
7423
7650
|
__exportStar(require("./retornos"), exports);
|
|
7424
7651
|
|
|
7425
|
-
},{"./avaliador-sintatico-interface":
|
|
7426
|
-
"use strict";
|
|
7427
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7428
|
-
|
|
7429
|
-
},{}],113:[function(require,module,exports){
|
|
7652
|
+
},{"./avaliador-sintatico-interface":107,"./construtos":108,"./erros":110,"./formatador-comum-interface":111,"./interpretador-com-depuracao-interface":113,"./interpretador-interface":114,"./lexador-interface":115,"./parametro-interface":116,"./pilha-interface":117,"./primitiva-interface":118,"./resolvedor-interface":119,"./retornos":120,"./retornos/retorno-execucao-interface":122,"./simbolo-interface":125,"./tradutor-interface":126,"./variavel-interface":127,"./visitante-comum-interface":128}],113:[function(require,module,exports){
|
|
7430
7653
|
"use strict";
|
|
7431
7654
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7432
7655
|
|
|
@@ -7452,6 +7675,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
7452
7675
|
|
|
7453
7676
|
},{}],119:[function(require,module,exports){
|
|
7454
7677
|
"use strict";
|
|
7678
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7679
|
+
|
|
7680
|
+
},{}],120:[function(require,module,exports){
|
|
7681
|
+
"use strict";
|
|
7455
7682
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7456
7683
|
if (k2 === undefined) k2 = k;
|
|
7457
7684
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -7472,11 +7699,7 @@ __exportStar(require("./retorno-execucao-interface"), exports);
|
|
|
7472
7699
|
__exportStar(require("./retorno-interpretador"), exports);
|
|
7473
7700
|
__exportStar(require("./retorno-lexador"), exports);
|
|
7474
7701
|
|
|
7475
|
-
},{"./retorno-avaliador-sintatico":
|
|
7476
|
-
"use strict";
|
|
7477
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7478
|
-
|
|
7479
|
-
},{}],121:[function(require,module,exports){
|
|
7702
|
+
},{"./retorno-avaliador-sintatico":121,"./retorno-execucao-interface":122,"./retorno-interpretador":123,"./retorno-lexador":124}],121:[function(require,module,exports){
|
|
7480
7703
|
"use strict";
|
|
7481
7704
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7482
7705
|
|
|
@@ -7506,6 +7729,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
7506
7729
|
|
|
7507
7730
|
},{}],128:[function(require,module,exports){
|
|
7508
7731
|
"use strict";
|
|
7732
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7733
|
+
|
|
7734
|
+
},{}],129:[function(require,module,exports){
|
|
7735
|
+
"use strict";
|
|
7509
7736
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7510
7737
|
if (k2 === undefined) k2 = k;
|
|
7511
7738
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -7569,7 +7796,7 @@ function carregarBibliotecasGlobais(pilhaEscoposExecucao) {
|
|
|
7569
7796
|
pilhaEscoposExecucao.definirVariavel('tupla', new funcao_padrao_1.FuncaoPadrao(1, bibliotecaGlobal.tupla));
|
|
7570
7797
|
}
|
|
7571
7798
|
|
|
7572
|
-
},{"../bibliotecas/biblioteca-global":15,"./estruturas/funcao-padrao":
|
|
7799
|
+
},{"../bibliotecas/biblioteca-global":15,"./estruturas/funcao-padrao":134}],130:[function(require,module,exports){
|
|
7573
7800
|
"use strict";
|
|
7574
7801
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7575
7802
|
exports.Chamavel = void 0;
|
|
@@ -7583,7 +7810,7 @@ class Chamavel {
|
|
|
7583
7810
|
}
|
|
7584
7811
|
exports.Chamavel = Chamavel;
|
|
7585
7812
|
|
|
7586
|
-
},{}],
|
|
7813
|
+
},{}],131:[function(require,module,exports){
|
|
7587
7814
|
"use strict";
|
|
7588
7815
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7589
7816
|
exports.ClassePadrao = void 0;
|
|
@@ -7624,7 +7851,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
|
|
|
7624
7851
|
}
|
|
7625
7852
|
exports.ClassePadrao = ClassePadrao;
|
|
7626
7853
|
|
|
7627
|
-
},{"./chamavel":
|
|
7854
|
+
},{"./chamavel":130}],132:[function(require,module,exports){
|
|
7628
7855
|
"use strict";
|
|
7629
7856
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7630
7857
|
exports.DeleguaFuncao = void 0;
|
|
@@ -7774,7 +8001,7 @@ class DeleguaFuncao extends chamavel_1.Chamavel {
|
|
|
7774
8001
|
}
|
|
7775
8002
|
exports.DeleguaFuncao = DeleguaFuncao;
|
|
7776
8003
|
|
|
7777
|
-
},{"../../declaracoes":82,"../../espaco-variaveis":97,"../../inferenciador":105,"../../quebras":
|
|
8004
|
+
},{"../../declaracoes":82,"../../espaco-variaveis":97,"../../inferenciador":105,"../../quebras":161,"./chamavel":130}],133:[function(require,module,exports){
|
|
7778
8005
|
"use strict";
|
|
7779
8006
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7780
8007
|
exports.DescritorTipoClasse = void 0;
|
|
@@ -7855,7 +8082,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
|
|
|
7855
8082
|
}
|
|
7856
8083
|
exports.DescritorTipoClasse = DescritorTipoClasse;
|
|
7857
8084
|
|
|
7858
|
-
},{"../../excecoes":99,"./chamavel":
|
|
8085
|
+
},{"../../excecoes":99,"./chamavel":130,"./objeto-delegua-classe":138}],134:[function(require,module,exports){
|
|
7859
8086
|
"use strict";
|
|
7860
8087
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7861
8088
|
exports.FuncaoPadrao = void 0;
|
|
@@ -7891,7 +8118,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
|
|
|
7891
8118
|
}
|
|
7892
8119
|
exports.FuncaoPadrao = FuncaoPadrao;
|
|
7893
8120
|
|
|
7894
|
-
},{"./chamavel":
|
|
8121
|
+
},{"./chamavel":130}],135:[function(require,module,exports){
|
|
7895
8122
|
"use strict";
|
|
7896
8123
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7897
8124
|
if (k2 === undefined) k2 = k;
|
|
@@ -7918,7 +8145,7 @@ __exportStar(require("./modulo"), exports);
|
|
|
7918
8145
|
__exportStar(require("./objeto-delegua-classe"), exports);
|
|
7919
8146
|
__exportStar(require("./objeto-padrao"), exports);
|
|
7920
8147
|
|
|
7921
|
-
},{"./chamavel":
|
|
8148
|
+
},{"./chamavel":130,"./classe-padrao":131,"./delegua-funcao":132,"./descritor-tipo-classe":133,"./funcao-padrao":134,"./metodo-primitiva":136,"./modulo":137,"./objeto-delegua-classe":138,"./objeto-padrao":139}],136:[function(require,module,exports){
|
|
7922
8149
|
"use strict";
|
|
7923
8150
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7924
8151
|
exports.MetodoPrimitiva = void 0;
|
|
@@ -7960,7 +8187,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
|
|
|
7960
8187
|
}
|
|
7961
8188
|
exports.MetodoPrimitiva = MetodoPrimitiva;
|
|
7962
8189
|
|
|
7963
|
-
},{"./chamavel":
|
|
8190
|
+
},{"./chamavel":130}],137:[function(require,module,exports){
|
|
7964
8191
|
"use strict";
|
|
7965
8192
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7966
8193
|
exports.DeleguaModulo = void 0;
|
|
@@ -7986,7 +8213,7 @@ class DeleguaModulo {
|
|
|
7986
8213
|
}
|
|
7987
8214
|
exports.DeleguaModulo = DeleguaModulo;
|
|
7988
8215
|
|
|
7989
|
-
},{}],
|
|
8216
|
+
},{}],138:[function(require,module,exports){
|
|
7990
8217
|
"use strict";
|
|
7991
8218
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7992
8219
|
exports.ObjetoDeleguaClasse = void 0;
|
|
@@ -8053,7 +8280,7 @@ class ObjetoDeleguaClasse {
|
|
|
8053
8280
|
}
|
|
8054
8281
|
exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
|
|
8055
8282
|
|
|
8056
|
-
},{"../../excecoes":99}],
|
|
8283
|
+
},{"../../excecoes":99}],139:[function(require,module,exports){
|
|
8057
8284
|
"use strict";
|
|
8058
8285
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8059
8286
|
exports.ObjetoPadrao = void 0;
|
|
@@ -8087,7 +8314,7 @@ class ObjetoPadrao {
|
|
|
8087
8314
|
}
|
|
8088
8315
|
exports.ObjetoPadrao = ObjetoPadrao;
|
|
8089
8316
|
|
|
8090
|
-
},{}],
|
|
8317
|
+
},{}],140:[function(require,module,exports){
|
|
8091
8318
|
"use strict";
|
|
8092
8319
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
8093
8320
|
if (k2 === undefined) k2 = k;
|
|
@@ -8108,7 +8335,7 @@ __exportStar(require("./interpretador"), exports);
|
|
|
8108
8335
|
__exportStar(require("./interpretador-base"), exports);
|
|
8109
8336
|
__exportStar(require("./interpretador-com-depuracao"), exports);
|
|
8110
8337
|
|
|
8111
|
-
},{"./interpretador":
|
|
8338
|
+
},{"./interpretador":143,"./interpretador-base":141,"./interpretador-com-depuracao":142}],141:[function(require,module,exports){
|
|
8112
8339
|
(function (process){(function (){
|
|
8113
8340
|
"use strict";
|
|
8114
8341
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
@@ -9468,7 +9695,7 @@ class InterpretadorBase {
|
|
|
9468
9695
|
exports.InterpretadorBase = InterpretadorBase;
|
|
9469
9696
|
|
|
9470
9697
|
}).call(this)}).call(this,require('_process'))
|
|
9471
|
-
},{"../avaliador-sintatico":8,"../bibliotecas/primitivas-dicionario":16,"../construtos":42,"../espaco-variaveis":97,"../excecoes":99,"../inferenciador":105,"../lexador":
|
|
9698
|
+
},{"../avaliador-sintatico":8,"../bibliotecas/primitivas-dicionario":16,"../construtos":42,"../espaco-variaveis":97,"../excecoes":99,"../inferenciador":105,"../lexador":154,"../quebras":161,"../tipos-de-dados/delegua":162,"../tipos-de-dados/primitivos":163,"../tipos-de-simbolos/delegua":165,"./comum":129,"./estruturas":135,"./estruturas/metodo-primitiva":136,"./pilha-escopos-execucao":144,"_process":385,"browser-process-hrtime":342}],142:[function(require,module,exports){
|
|
9472
9699
|
"use strict";
|
|
9473
9700
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
9474
9701
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -10040,7 +10267,7 @@ class InterpretadorComDepuracao extends interpretador_1.Interpretador {
|
|
|
10040
10267
|
}
|
|
10041
10268
|
exports.InterpretadorComDepuracao = InterpretadorComDepuracao;
|
|
10042
10269
|
|
|
10043
|
-
},{"../construtos":42,"../espaco-variaveis":97,"../inferenciador":105,"../quebras":
|
|
10270
|
+
},{"../construtos":42,"../espaco-variaveis":97,"../inferenciador":105,"../quebras":161,"./interpretador":143,"lodash":378}],143:[function(require,module,exports){
|
|
10044
10271
|
"use strict";
|
|
10045
10272
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
10046
10273
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -10321,7 +10548,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
10321
10548
|
}
|
|
10322
10549
|
exports.Interpretador = Interpretador;
|
|
10323
10550
|
|
|
10324
|
-
},{"../bibliotecas/primitivas-dicionario":16,"../bibliotecas/primitivas-numero":17,"../bibliotecas/primitivas-texto":18,"../bibliotecas/primitivas-vetor":19,"../excecoes":99,"../inferenciador":105,"../quebras":
|
|
10551
|
+
},{"../bibliotecas/primitivas-dicionario":16,"../bibliotecas/primitivas-numero":17,"../bibliotecas/primitivas-texto":18,"../bibliotecas/primitivas-vetor":19,"../excecoes":99,"../inferenciador":105,"../quebras":161,"../tipos-de-dados/delegua":162,"../tipos-de-dados/primitivos":163,"./estruturas":135,"./interpretador-base":141}],144:[function(require,module,exports){
|
|
10325
10552
|
"use strict";
|
|
10326
10553
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
10327
10554
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -10585,7 +10812,7 @@ class PilhaEscoposExecucao {
|
|
|
10585
10812
|
}
|
|
10586
10813
|
exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
|
|
10587
10814
|
|
|
10588
|
-
},{"../excecoes":99,"../inferenciador":105,"../lexador":
|
|
10815
|
+
},{"../excecoes":99,"../inferenciador":105,"../lexador":154,"../tipos-de-dados/delegua":162,"./estruturas":135}],145:[function(require,module,exports){
|
|
10589
10816
|
"use strict";
|
|
10590
10817
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10591
10818
|
if (k2 === undefined) k2 = k;
|
|
@@ -10607,7 +10834,7 @@ __exportStar(require("./lexador-pitugues"), exports);
|
|
|
10607
10834
|
__exportStar(require("./lexador-guarani"), exports);
|
|
10608
10835
|
__exportStar(require("./lexador-portugol-ipt"), exports);
|
|
10609
10836
|
|
|
10610
|
-
},{"./lexador-egua-classico":
|
|
10837
|
+
},{"./lexador-egua-classico":146,"./lexador-guarani":147,"./lexador-pitugues":148,"./lexador-portugol-ipt":149}],146:[function(require,module,exports){
|
|
10611
10838
|
"use strict";
|
|
10612
10839
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
10613
10840
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -10895,7 +11122,7 @@ class LexadorEguaClassico {
|
|
|
10895
11122
|
}
|
|
10896
11123
|
exports.LexadorEguaClassico = LexadorEguaClassico;
|
|
10897
11124
|
|
|
10898
|
-
},{"../../tipos-de-simbolos/egua-classico":
|
|
11125
|
+
},{"../../tipos-de-simbolos/egua-classico":166,"../simbolo":160,"./palavras-reservadas/egua-classico":150}],147:[function(require,module,exports){
|
|
10899
11126
|
"use strict";
|
|
10900
11127
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
10901
11128
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -11010,7 +11237,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
|
|
|
11010
11237
|
}
|
|
11011
11238
|
exports.LexadorGuarani = LexadorGuarani;
|
|
11012
11239
|
|
|
11013
|
-
},{"../../tipos-de-simbolos/guarani":
|
|
11240
|
+
},{"../../tipos-de-simbolos/guarani":167,"../lexador-base":156,"./palavras-reservadas/guarani":151}],148:[function(require,module,exports){
|
|
11014
11241
|
"use strict";
|
|
11015
11242
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11016
11243
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -11018,9 +11245,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
11018
11245
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11019
11246
|
exports.LexadorPitugues = void 0;
|
|
11020
11247
|
const browser_process_hrtime_1 = __importDefault(require("browser-process-hrtime"));
|
|
11021
|
-
const pitugues_1 = __importDefault(require("../../tipos-de-simbolos/pitugues"));
|
|
11022
11248
|
const simbolo_1 = require("../simbolo");
|
|
11023
|
-
const
|
|
11249
|
+
const pitugues_1 = require("./palavras-reservadas/pitugues");
|
|
11250
|
+
const pitugues_2 = __importDefault(require("../../tipos-de-simbolos/pitugues"));
|
|
11024
11251
|
/**
|
|
11025
11252
|
* O Lexador é responsável por transformar o código em uma coleção de tokens de linguagem.
|
|
11026
11253
|
* Cada token de linguagem é representado por um tipo, um lexema e informações da linha de código em que foi expresso.
|
|
@@ -11137,7 +11364,7 @@ class LexadorPitugues {
|
|
|
11137
11364
|
return;
|
|
11138
11365
|
}
|
|
11139
11366
|
const textoCompleto = this.codigo[this.linha].substring(this.inicioSimbolo + 1, this.atual);
|
|
11140
|
-
this.simbolos.push(new simbolo_1.Simbolo(
|
|
11367
|
+
this.simbolos.push(new simbolo_1.Simbolo(pitugues_2.default.TEXTO, textoCompleto, textoCompleto, linhaPrimeiroCaracter + 1, this.hashArquivo));
|
|
11141
11368
|
}
|
|
11142
11369
|
analisarNumero() {
|
|
11143
11370
|
const linhaPrimeiroDigito = this.linha;
|
|
@@ -11158,7 +11385,7 @@ class LexadorPitugues {
|
|
|
11158
11385
|
else {
|
|
11159
11386
|
numeroCompleto = this.codigo[this.linha].substring(this.inicioSimbolo, this.atual);
|
|
11160
11387
|
}
|
|
11161
|
-
this.simbolos.push(new simbolo_1.Simbolo(
|
|
11388
|
+
this.simbolos.push(new simbolo_1.Simbolo(pitugues_2.default.NUMERO, numeroCompleto, parseFloat(numeroCompleto), linhaPrimeiroDigito + 1, this.hashArquivo));
|
|
11162
11389
|
}
|
|
11163
11390
|
identificarPalavraChave() {
|
|
11164
11391
|
const linhaPrimeiroCaracter = this.linha;
|
|
@@ -11173,9 +11400,9 @@ class LexadorPitugues {
|
|
|
11173
11400
|
else {
|
|
11174
11401
|
textoPalavraChave = this.codigo[this.linha].substring(this.inicioSimbolo, this.atual);
|
|
11175
11402
|
}
|
|
11176
|
-
const tipo = textoPalavraChave in
|
|
11177
|
-
?
|
|
11178
|
-
:
|
|
11403
|
+
const tipo = textoPalavraChave in pitugues_1.palavrasReservadas
|
|
11404
|
+
? pitugues_1.palavrasReservadas[textoPalavraChave]
|
|
11405
|
+
: pitugues_2.default.IDENTIFICADOR;
|
|
11179
11406
|
this.simbolos.push(new simbolo_1.Simbolo(tipo, textoPalavraChave, null, linhaPrimeiroCaracter + 1, this.hashArquivo));
|
|
11180
11407
|
}
|
|
11181
11408
|
analisarIndentacao() {
|
|
@@ -11210,86 +11437,86 @@ class LexadorPitugues {
|
|
|
11210
11437
|
case '=':
|
|
11211
11438
|
this.avancar();
|
|
11212
11439
|
if (this.simboloAtual() === '=') {
|
|
11213
|
-
this.adicionarSimbolo(
|
|
11440
|
+
this.adicionarSimbolo(pitugues_2.default.IGUAL_IGUAL);
|
|
11214
11441
|
this.avancar();
|
|
11215
11442
|
}
|
|
11216
11443
|
else {
|
|
11217
|
-
this.adicionarSimbolo(
|
|
11444
|
+
this.adicionarSimbolo(pitugues_2.default.IGUAL);
|
|
11218
11445
|
}
|
|
11219
11446
|
break;
|
|
11220
11447
|
case '#':
|
|
11221
11448
|
this.avancarParaProximaLinha();
|
|
11222
11449
|
break;
|
|
11223
11450
|
case '[':
|
|
11224
|
-
this.adicionarSimbolo(
|
|
11451
|
+
this.adicionarSimbolo(pitugues_2.default.COLCHETE_ESQUERDO);
|
|
11225
11452
|
this.avancar();
|
|
11226
11453
|
break;
|
|
11227
11454
|
case ']':
|
|
11228
|
-
this.adicionarSimbolo(
|
|
11455
|
+
this.adicionarSimbolo(pitugues_2.default.COLCHETE_DIREITO);
|
|
11229
11456
|
this.avancar();
|
|
11230
11457
|
break;
|
|
11231
11458
|
case '(':
|
|
11232
|
-
this.adicionarSimbolo(
|
|
11459
|
+
this.adicionarSimbolo(pitugues_2.default.PARENTESE_ESQUERDO);
|
|
11233
11460
|
this.avancar();
|
|
11234
11461
|
break;
|
|
11235
11462
|
case ')':
|
|
11236
|
-
this.adicionarSimbolo(
|
|
11463
|
+
this.adicionarSimbolo(pitugues_2.default.PARENTESE_DIREITO);
|
|
11237
11464
|
this.avancar();
|
|
11238
11465
|
break;
|
|
11239
11466
|
case '{':
|
|
11240
|
-
this.adicionarSimbolo(
|
|
11467
|
+
this.adicionarSimbolo(pitugues_2.default.CHAVE_ESQUERDA);
|
|
11241
11468
|
this.avancar();
|
|
11242
11469
|
break;
|
|
11243
11470
|
case '}':
|
|
11244
|
-
this.adicionarSimbolo(
|
|
11471
|
+
this.adicionarSimbolo(pitugues_2.default.CHAVE_DIREITA);
|
|
11245
11472
|
this.avancar();
|
|
11246
11473
|
break;
|
|
11247
11474
|
case ',':
|
|
11248
|
-
this.adicionarSimbolo(
|
|
11475
|
+
this.adicionarSimbolo(pitugues_2.default.VIRGULA);
|
|
11249
11476
|
this.avancar();
|
|
11250
11477
|
break;
|
|
11251
11478
|
case '.':
|
|
11252
|
-
this.adicionarSimbolo(
|
|
11479
|
+
this.adicionarSimbolo(pitugues_2.default.PONTO);
|
|
11253
11480
|
this.avancar();
|
|
11254
11481
|
break;
|
|
11255
11482
|
case '-':
|
|
11256
11483
|
this.avancar();
|
|
11257
11484
|
if (this.simboloAtual() === '=') {
|
|
11258
|
-
this.adicionarSimbolo(
|
|
11485
|
+
this.adicionarSimbolo(pitugues_2.default.MENOS_IGUAL);
|
|
11259
11486
|
this.avancar();
|
|
11260
11487
|
}
|
|
11261
11488
|
else {
|
|
11262
|
-
this.adicionarSimbolo(
|
|
11489
|
+
this.adicionarSimbolo(pitugues_2.default.SUBTRACAO);
|
|
11263
11490
|
}
|
|
11264
11491
|
break;
|
|
11265
11492
|
case '+':
|
|
11266
11493
|
this.avancar();
|
|
11267
11494
|
if (this.simboloAtual() === '=') {
|
|
11268
|
-
this.adicionarSimbolo(
|
|
11495
|
+
this.adicionarSimbolo(pitugues_2.default.MAIS_IGUAL);
|
|
11269
11496
|
this.avancar();
|
|
11270
11497
|
}
|
|
11271
11498
|
else {
|
|
11272
|
-
this.adicionarSimbolo(
|
|
11499
|
+
this.adicionarSimbolo(pitugues_2.default.ADICAO);
|
|
11273
11500
|
}
|
|
11274
11501
|
break;
|
|
11275
11502
|
case '/':
|
|
11276
11503
|
this.avancar();
|
|
11277
11504
|
switch (this.simboloAtual()) {
|
|
11278
11505
|
case '/':
|
|
11279
|
-
this.adicionarSimbolo(
|
|
11506
|
+
this.adicionarSimbolo(pitugues_2.default.DIVISAO_INTEIRA);
|
|
11280
11507
|
this.avancar();
|
|
11281
11508
|
break;
|
|
11282
11509
|
default:
|
|
11283
|
-
this.adicionarSimbolo(
|
|
11510
|
+
this.adicionarSimbolo(pitugues_2.default.DIVISAO);
|
|
11284
11511
|
break;
|
|
11285
11512
|
}
|
|
11286
11513
|
break;
|
|
11287
11514
|
case ':':
|
|
11288
|
-
this.adicionarSimbolo(
|
|
11515
|
+
this.adicionarSimbolo(pitugues_2.default.DOIS_PONTOS);
|
|
11289
11516
|
this.avancar();
|
|
11290
11517
|
break;
|
|
11291
11518
|
case '%':
|
|
11292
|
-
this.adicionarSimbolo(
|
|
11519
|
+
this.adicionarSimbolo(pitugues_2.default.MODULO);
|
|
11293
11520
|
this.avancar();
|
|
11294
11521
|
break;
|
|
11295
11522
|
case '*':
|
|
@@ -11297,63 +11524,63 @@ class LexadorPitugues {
|
|
|
11297
11524
|
this.avancar();
|
|
11298
11525
|
if (this.simboloAtual() === '*') {
|
|
11299
11526
|
this.avancar();
|
|
11300
|
-
this.adicionarSimbolo(
|
|
11527
|
+
this.adicionarSimbolo(pitugues_2.default.EXPONENCIACAO);
|
|
11301
11528
|
}
|
|
11302
11529
|
else {
|
|
11303
|
-
this.adicionarSimbolo(
|
|
11530
|
+
this.adicionarSimbolo(pitugues_2.default.MULTIPLICACAO);
|
|
11304
11531
|
}
|
|
11305
11532
|
break;
|
|
11306
11533
|
case '!':
|
|
11307
11534
|
this.avancar();
|
|
11308
11535
|
if (this.simboloAtual() === '=') {
|
|
11309
|
-
this.adicionarSimbolo(
|
|
11536
|
+
this.adicionarSimbolo(pitugues_2.default.DIFERENTE);
|
|
11310
11537
|
this.avancar();
|
|
11311
11538
|
}
|
|
11312
11539
|
else {
|
|
11313
|
-
this.adicionarSimbolo(
|
|
11540
|
+
this.adicionarSimbolo(pitugues_2.default.NEGACAO);
|
|
11314
11541
|
}
|
|
11315
11542
|
case '&':
|
|
11316
|
-
this.adicionarSimbolo(
|
|
11543
|
+
this.adicionarSimbolo(pitugues_2.default.BIT_AND);
|
|
11317
11544
|
this.avancar();
|
|
11318
11545
|
break;
|
|
11319
11546
|
case '~':
|
|
11320
|
-
this.adicionarSimbolo(
|
|
11547
|
+
this.adicionarSimbolo(pitugues_2.default.BIT_NOT);
|
|
11321
11548
|
this.avancar();
|
|
11322
11549
|
break;
|
|
11323
11550
|
case '|':
|
|
11324
|
-
this.adicionarSimbolo(
|
|
11551
|
+
this.adicionarSimbolo(pitugues_2.default.BIT_OR);
|
|
11325
11552
|
this.avancar();
|
|
11326
11553
|
break;
|
|
11327
11554
|
case '^':
|
|
11328
|
-
this.adicionarSimbolo(
|
|
11555
|
+
this.adicionarSimbolo(pitugues_2.default.BIT_XOR);
|
|
11329
11556
|
this.avancar();
|
|
11330
11557
|
break;
|
|
11331
11558
|
case '<':
|
|
11332
11559
|
this.avancar();
|
|
11333
11560
|
if (this.simboloAtual() === '=') {
|
|
11334
|
-
this.adicionarSimbolo(
|
|
11561
|
+
this.adicionarSimbolo(pitugues_2.default.MENOR_IGUAL);
|
|
11335
11562
|
this.avancar();
|
|
11336
11563
|
}
|
|
11337
11564
|
else if (this.simboloAtual() === '<') {
|
|
11338
|
-
this.adicionarSimbolo(
|
|
11565
|
+
this.adicionarSimbolo(pitugues_2.default.MENOR_MENOR);
|
|
11339
11566
|
this.avancar();
|
|
11340
11567
|
}
|
|
11341
11568
|
else {
|
|
11342
|
-
this.adicionarSimbolo(
|
|
11569
|
+
this.adicionarSimbolo(pitugues_2.default.MENOR);
|
|
11343
11570
|
}
|
|
11344
11571
|
break;
|
|
11345
11572
|
case '>':
|
|
11346
11573
|
this.avancar();
|
|
11347
11574
|
if (this.simboloAtual() === '=') {
|
|
11348
|
-
this.adicionarSimbolo(
|
|
11575
|
+
this.adicionarSimbolo(pitugues_2.default.MAIOR_IGUAL);
|
|
11349
11576
|
this.avancar();
|
|
11350
11577
|
}
|
|
11351
11578
|
else if (this.simboloAtual() === '>') {
|
|
11352
|
-
this.adicionarSimbolo(
|
|
11579
|
+
this.adicionarSimbolo(pitugues_2.default.MAIOR_MAIOR);
|
|
11353
11580
|
this.avancar();
|
|
11354
11581
|
}
|
|
11355
11582
|
else {
|
|
11356
|
-
this.adicionarSimbolo(
|
|
11583
|
+
this.adicionarSimbolo(pitugues_2.default.MAIOR);
|
|
11357
11584
|
}
|
|
11358
11585
|
break;
|
|
11359
11586
|
case '"':
|
|
@@ -11410,7 +11637,7 @@ class LexadorPitugues {
|
|
|
11410
11637
|
}
|
|
11411
11638
|
exports.LexadorPitugues = LexadorPitugues;
|
|
11412
11639
|
|
|
11413
|
-
},{"../../tipos-de-simbolos/pitugues":
|
|
11640
|
+
},{"../../tipos-de-simbolos/pitugues":169,"../simbolo":160,"./palavras-reservadas/pitugues":152,"browser-process-hrtime":342}],149:[function(require,module,exports){
|
|
11414
11641
|
"use strict";
|
|
11415
11642
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11416
11643
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -11649,7 +11876,7 @@ class LexadorPortugolIpt {
|
|
|
11649
11876
|
}
|
|
11650
11877
|
exports.LexadorPortugolIpt = LexadorPortugolIpt;
|
|
11651
11878
|
|
|
11652
|
-
},{"../../tipos-de-simbolos/portugol-ipt":
|
|
11879
|
+
},{"../../tipos-de-simbolos/portugol-ipt":170,"../simbolo":160,"./palavras-reservadas/portugol-ipt":153}],150:[function(require,module,exports){
|
|
11653
11880
|
"use strict";
|
|
11654
11881
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11655
11882
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -11690,7 +11917,7 @@ exports.palavrasReservadas = {
|
|
|
11690
11917
|
verdadeiro: egua_classico_1.default.VERDADEIRO,
|
|
11691
11918
|
};
|
|
11692
11919
|
|
|
11693
|
-
},{"../../../tipos-de-simbolos/egua-classico":
|
|
11920
|
+
},{"../../../tipos-de-simbolos/egua-classico":166}],151:[function(require,module,exports){
|
|
11694
11921
|
"use strict";
|
|
11695
11922
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11696
11923
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -11702,7 +11929,71 @@ exports.palavrasReservadas = {
|
|
|
11702
11929
|
hai: guarani_1.default.HAI,
|
|
11703
11930
|
};
|
|
11704
11931
|
|
|
11705
|
-
},{"../../../tipos-de-simbolos/guarani":
|
|
11932
|
+
},{"../../../tipos-de-simbolos/guarani":167}],152:[function(require,module,exports){
|
|
11933
|
+
"use strict";
|
|
11934
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11935
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
11936
|
+
};
|
|
11937
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11938
|
+
exports.palavrasReservadasMicroGramatica = exports.palavrasReservadas = void 0;
|
|
11939
|
+
const pitugues_1 = __importDefault(require("../../../tipos-de-simbolos/pitugues"));
|
|
11940
|
+
exports.palavrasReservadas = {
|
|
11941
|
+
cada: pitugues_1.default.CADA,
|
|
11942
|
+
caso: pitugues_1.default.CASO,
|
|
11943
|
+
classe: pitugues_1.default.CLASSE,
|
|
11944
|
+
como: pitugues_1.default.COMO,
|
|
11945
|
+
construtor: pitugues_1.default.CONSTRUTOR,
|
|
11946
|
+
continua: pitugues_1.default.CONTINUA,
|
|
11947
|
+
constante: pitugues_1.default.CONSTANTE,
|
|
11948
|
+
const: pitugues_1.default.CONSTANTE,
|
|
11949
|
+
de: pitugues_1.default.DE,
|
|
11950
|
+
e: pitugues_1.default.E,
|
|
11951
|
+
em: pitugues_1.default.EM,
|
|
11952
|
+
enquanto: pitugues_1.default.ENQUANTO,
|
|
11953
|
+
escolha: pitugues_1.default.ESCOLHA,
|
|
11954
|
+
escreva: pitugues_1.default.ESCREVA,
|
|
11955
|
+
falhar: pitugues_1.default.FALHAR,
|
|
11956
|
+
falso: pitugues_1.default.FALSO,
|
|
11957
|
+
fazer: pitugues_1.default.FAZER,
|
|
11958
|
+
finalmente: pitugues_1.default.FINALMENTE,
|
|
11959
|
+
fixo: pitugues_1.default.CONSTANTE,
|
|
11960
|
+
funcao: pitugues_1.default.FUNCAO,
|
|
11961
|
+
função: pitugues_1.default.FUNÇÃO,
|
|
11962
|
+
herda: pitugues_1.default.HERDA,
|
|
11963
|
+
importar: pitugues_1.default.IMPORTAR,
|
|
11964
|
+
imprima: pitugues_1.default.IMPRIMA,
|
|
11965
|
+
isto: pitugues_1.default.ISTO,
|
|
11966
|
+
leia: pitugues_1.default.LEIA,
|
|
11967
|
+
nulo: pitugues_1.default.NULO,
|
|
11968
|
+
ou: pitugues_1.default.OU,
|
|
11969
|
+
padrao: pitugues_1.default.PADRAO,
|
|
11970
|
+
para: pitugues_1.default.PARA,
|
|
11971
|
+
pausa: pitugues_1.default.PAUSA,
|
|
11972
|
+
pegue: pitugues_1.default.PEGUE,
|
|
11973
|
+
retorna: pitugues_1.default.RETORNA,
|
|
11974
|
+
se: pitugues_1.default.SE,
|
|
11975
|
+
senao: pitugues_1.default.SENAO,
|
|
11976
|
+
senão: pitugues_1.default.SENÃO,
|
|
11977
|
+
super: pitugues_1.default.SUPER,
|
|
11978
|
+
sustar: pitugues_1.default.SUSTAR,
|
|
11979
|
+
tendo: pitugues_1.default.TENDO,
|
|
11980
|
+
tente: pitugues_1.default.TENTE,
|
|
11981
|
+
tipo: pitugues_1.default.TIPO,
|
|
11982
|
+
var: pitugues_1.default.VARIAVEL,
|
|
11983
|
+
variavel: pitugues_1.default.VARIAVEL,
|
|
11984
|
+
variável: pitugues_1.default.VARIAVEL,
|
|
11985
|
+
verdadeiro: pitugues_1.default.VERDADEIRO,
|
|
11986
|
+
};
|
|
11987
|
+
exports.palavrasReservadasMicroGramatica = {
|
|
11988
|
+
e: pitugues_1.default.E,
|
|
11989
|
+
em: pitugues_1.default.EM,
|
|
11990
|
+
falso: pitugues_1.default.FALSO,
|
|
11991
|
+
nulo: pitugues_1.default.NULO,
|
|
11992
|
+
ou: pitugues_1.default.OU,
|
|
11993
|
+
verdadeiro: pitugues_1.default.VERDADEIRO,
|
|
11994
|
+
};
|
|
11995
|
+
|
|
11996
|
+
},{"../../../tipos-de-simbolos/pitugues":169}],153:[function(require,module,exports){
|
|
11706
11997
|
"use strict";
|
|
11707
11998
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11708
11999
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -11724,7 +12015,7 @@ exports.palavrasReservadas = {
|
|
|
11724
12015
|
senão: portugol_ipt_1.default.SENAO,
|
|
11725
12016
|
};
|
|
11726
12017
|
|
|
11727
|
-
},{"../../../tipos-de-simbolos/portugol-ipt":
|
|
12018
|
+
},{"../../../tipos-de-simbolos/portugol-ipt":170}],154:[function(require,module,exports){
|
|
11728
12019
|
"use strict";
|
|
11729
12020
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
11730
12021
|
if (k2 === undefined) k2 = k;
|
|
@@ -11741,12 +12032,13 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
11741
12032
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11742
12033
|
};
|
|
11743
12034
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12035
|
+
__exportStar(require("./dialetos"), exports);
|
|
11744
12036
|
__exportStar(require("./lexador"), exports);
|
|
11745
12037
|
__exportStar(require("./lexador-base-linha-unica"), exports);
|
|
11746
12038
|
__exportStar(require("./micro-lexador"), exports);
|
|
11747
12039
|
__exportStar(require("./simbolo"), exports);
|
|
11748
12040
|
|
|
11749
|
-
},{"./lexador":
|
|
12041
|
+
},{"./dialetos":145,"./lexador":157,"./lexador-base-linha-unica":155,"./micro-lexador":158,"./simbolo":160}],155:[function(require,module,exports){
|
|
11750
12042
|
"use strict";
|
|
11751
12043
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11752
12044
|
exports.LexadorBaseLinhaUnica = void 0;
|
|
@@ -11830,7 +12122,7 @@ class LexadorBaseLinhaUnica {
|
|
|
11830
12122
|
}
|
|
11831
12123
|
exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
|
|
11832
12124
|
|
|
11833
|
-
},{"./simbolo":
|
|
12125
|
+
},{"./simbolo":160}],156:[function(require,module,exports){
|
|
11834
12126
|
"use strict";
|
|
11835
12127
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11836
12128
|
exports.LexadorBase = void 0;
|
|
@@ -11944,7 +12236,7 @@ class LexadorBase {
|
|
|
11944
12236
|
}
|
|
11945
12237
|
exports.LexadorBase = LexadorBase;
|
|
11946
12238
|
|
|
11947
|
-
},{"./simbolo":
|
|
12239
|
+
},{"./simbolo":160}],157:[function(require,module,exports){
|
|
11948
12240
|
"use strict";
|
|
11949
12241
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11950
12242
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -12389,7 +12681,7 @@ class Lexador {
|
|
|
12389
12681
|
}
|
|
12390
12682
|
exports.Lexador = Lexador;
|
|
12391
12683
|
|
|
12392
|
-
},{"../tipos-de-simbolos/delegua":
|
|
12684
|
+
},{"../tipos-de-simbolos/delegua":165,"./palavras-reservadas":159,"./simbolo":160,"browser-process-hrtime":342}],158:[function(require,module,exports){
|
|
12393
12685
|
"use strict";
|
|
12394
12686
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12395
12687
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -12602,7 +12894,7 @@ class MicroLexador {
|
|
|
12602
12894
|
}
|
|
12603
12895
|
exports.MicroLexador = MicroLexador;
|
|
12604
12896
|
|
|
12605
|
-
},{"../tipos-de-simbolos/microgramaticas/delegua":
|
|
12897
|
+
},{"../tipos-de-simbolos/microgramaticas/delegua":168,"./palavras-reservadas":159,"./simbolo":160}],159:[function(require,module,exports){
|
|
12606
12898
|
"use strict";
|
|
12607
12899
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12608
12900
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -12665,7 +12957,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
12665
12957
|
verdadeiro: delegua_1.default.VERDADEIRO,
|
|
12666
12958
|
};
|
|
12667
12959
|
|
|
12668
|
-
},{"../tipos-de-simbolos/delegua":
|
|
12960
|
+
},{"../tipos-de-simbolos/delegua":165}],160:[function(require,module,exports){
|
|
12669
12961
|
"use strict";
|
|
12670
12962
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12671
12963
|
exports.Simbolo = void 0;
|
|
@@ -12683,7 +12975,7 @@ class Simbolo {
|
|
|
12683
12975
|
}
|
|
12684
12976
|
exports.Simbolo = Simbolo;
|
|
12685
12977
|
|
|
12686
|
-
},{}],
|
|
12978
|
+
},{}],161:[function(require,module,exports){
|
|
12687
12979
|
"use strict";
|
|
12688
12980
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12689
12981
|
exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
|
|
@@ -12707,7 +12999,7 @@ class ContinuarQuebra extends Quebra {
|
|
|
12707
12999
|
}
|
|
12708
13000
|
exports.ContinuarQuebra = ContinuarQuebra;
|
|
12709
13001
|
|
|
12710
|
-
},{}],
|
|
13002
|
+
},{}],162:[function(require,module,exports){
|
|
12711
13003
|
"use strict";
|
|
12712
13004
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12713
13005
|
exports.default = {
|
|
@@ -12737,7 +13029,7 @@ exports.default = {
|
|
|
12737
13029
|
VETOR_TEXTO: 'texto[]',
|
|
12738
13030
|
};
|
|
12739
13031
|
|
|
12740
|
-
},{}],
|
|
13032
|
+
},{}],163:[function(require,module,exports){
|
|
12741
13033
|
"use strict";
|
|
12742
13034
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12743
13035
|
exports.default = {
|
|
@@ -12756,7 +13048,7 @@ exports.default = {
|
|
|
12756
13048
|
TEXTO: 'string',
|
|
12757
13049
|
};
|
|
12758
13050
|
|
|
12759
|
-
},{}],
|
|
13051
|
+
},{}],164:[function(require,module,exports){
|
|
12760
13052
|
"use strict";
|
|
12761
13053
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12762
13054
|
exports.default = {
|
|
@@ -12782,7 +13074,7 @@ exports.default = {
|
|
|
12782
13074
|
VIRGULA: 'VIRGULA',
|
|
12783
13075
|
};
|
|
12784
13076
|
|
|
12785
|
-
},{}],
|
|
13077
|
+
},{}],165:[function(require,module,exports){
|
|
12786
13078
|
"use strict";
|
|
12787
13079
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12788
13080
|
exports.default = {
|
|
@@ -12877,7 +13169,7 @@ exports.default = {
|
|
|
12877
13169
|
VIRGULA: 'VIRGULA',
|
|
12878
13170
|
};
|
|
12879
13171
|
|
|
12880
|
-
},{}],
|
|
13172
|
+
},{}],166:[function(require,module,exports){
|
|
12881
13173
|
"use strict";
|
|
12882
13174
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12883
13175
|
exports.default = {
|
|
@@ -12955,7 +13247,7 @@ exports.default = {
|
|
|
12955
13247
|
VIRGULA: 'VIRGULA',
|
|
12956
13248
|
};
|
|
12957
13249
|
|
|
12958
|
-
},{}],
|
|
13250
|
+
},{}],167:[function(require,module,exports){
|
|
12959
13251
|
"use strict";
|
|
12960
13252
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12961
13253
|
exports.default = {
|
|
@@ -12972,7 +13264,7 @@ exports.default = {
|
|
|
12972
13264
|
VIRGULA: 'VIRGULA',
|
|
12973
13265
|
};
|
|
12974
13266
|
|
|
12975
|
-
},{}],
|
|
13267
|
+
},{}],168:[function(require,module,exports){
|
|
12976
13268
|
"use strict";
|
|
12977
13269
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12978
13270
|
exports.default = {
|
|
@@ -13021,7 +13313,7 @@ exports.default = {
|
|
|
13021
13313
|
VIRGULA: 'VIRGULA',
|
|
13022
13314
|
};
|
|
13023
13315
|
|
|
13024
|
-
},{}],
|
|
13316
|
+
},{}],169:[function(require,module,exports){
|
|
13025
13317
|
"use strict";
|
|
13026
13318
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13027
13319
|
exports.default = {
|
|
@@ -13030,15 +13322,18 @@ exports.default = {
|
|
|
13030
13322
|
BIT_OR: 'BIT_OR',
|
|
13031
13323
|
BIT_XOR: 'BIT_XOR',
|
|
13032
13324
|
BIT_NOT: 'BIT_NOT',
|
|
13325
|
+
CADA: 'CADA',
|
|
13033
13326
|
CASO: 'CASO',
|
|
13034
13327
|
CHAVE_DIREITA: 'CHAVE_DIREITA',
|
|
13035
13328
|
CHAVE_ESQUERDA: 'CHAVE_ESQUERDA',
|
|
13036
13329
|
CLASSE: 'CLASSE',
|
|
13037
13330
|
COLCHETE_DIREITO: 'COLCHETE_DIREITO',
|
|
13038
13331
|
COLCHETE_ESQUERDO: 'COLCHETE_ESQUERDO',
|
|
13332
|
+
COMO: 'COMO',
|
|
13039
13333
|
CONSTANTE: 'CONSTANTE',
|
|
13040
13334
|
CONSTRUTOR: 'CONSTRUTOR',
|
|
13041
13335
|
CONTINUA: 'CONTINUA',
|
|
13336
|
+
DE: 'DE',
|
|
13042
13337
|
DIFERENTE: 'DIFERENTE',
|
|
13043
13338
|
DIVISAO: 'DIVISAO',
|
|
13044
13339
|
DIVISAO_INTEIRA: 'DIVISAO_INTEIRA',
|
|
@@ -13053,6 +13348,7 @@ exports.default = {
|
|
|
13053
13348
|
FALHAR: 'FALHAR',
|
|
13054
13349
|
IGUAL: 'IGUAL',
|
|
13055
13350
|
IGUAL_IGUAL: 'IGUAL_IGUAL',
|
|
13351
|
+
IMPRIMA: 'IMPRIMA',
|
|
13056
13352
|
FALSO: 'FALSO',
|
|
13057
13353
|
FAZER: 'FAZER',
|
|
13058
13354
|
FINALMENTE: 'FINALMENTE',
|
|
@@ -13092,14 +13388,16 @@ exports.default = {
|
|
|
13092
13388
|
SENÃO: 'SENÃO',
|
|
13093
13389
|
SUPER: 'SUPER',
|
|
13094
13390
|
SUSTAR: 'SUSTAR',
|
|
13391
|
+
TENDO: 'TENDO',
|
|
13095
13392
|
TENTE: 'TENTE',
|
|
13096
13393
|
TEXTO: 'TEXTO',
|
|
13394
|
+
TIPO: 'TIPO',
|
|
13097
13395
|
VARIAVEL: 'VARIAVEL',
|
|
13098
13396
|
VERDADEIRO: 'VERDADEIRO',
|
|
13099
13397
|
VIRGULA: 'VIRGULA',
|
|
13100
13398
|
};
|
|
13101
13399
|
|
|
13102
|
-
},{}],
|
|
13400
|
+
},{}],170:[function(require,module,exports){
|
|
13103
13401
|
"use strict";
|
|
13104
13402
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13105
13403
|
exports.default = {
|
|
@@ -13138,7 +13436,7 @@ exports.default = {
|
|
|
13138
13436
|
VIRGULA: 'VIRGULA',
|
|
13139
13437
|
};
|
|
13140
13438
|
|
|
13141
|
-
},{}],
|
|
13439
|
+
},{}],171:[function(require,module,exports){
|
|
13142
13440
|
"use strict";
|
|
13143
13441
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13144
13442
|
if (k2 === undefined) k2 = k;
|
|
@@ -13163,7 +13461,7 @@ __exportStar(require("./tradutor-python"), exports);
|
|
|
13163
13461
|
__exportStar(require("./tradutor-reverso-javascript"), exports);
|
|
13164
13462
|
__exportStar(require("./tradutor-reverso-python"), exports);
|
|
13165
13463
|
|
|
13166
|
-
},{"./tradutor-assemblyscript":
|
|
13464
|
+
},{"./tradutor-assemblyscript":174,"./tradutor-javascript":175,"./tradutor-mermaidjs":176,"./tradutor-portugol-ipt":177,"./tradutor-python":178,"./tradutor-reverso-javascript":179,"./tradutor-reverso-python":180}],172:[function(require,module,exports){
|
|
13167
13465
|
"use strict";
|
|
13168
13466
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
13169
13467
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -14402,7 +14700,7 @@ __decorate([
|
|
|
14402
14700
|
Decorators_1.Override
|
|
14403
14701
|
], Python3Lexer.prototype, "nextToken", null);
|
|
14404
14702
|
|
|
14405
|
-
},{"./python3-parser":
|
|
14703
|
+
},{"./python3-parser":173,"antlr4ts/CommonToken":190,"antlr4ts/Decorators":194,"antlr4ts/Lexer":202,"antlr4ts/Token":219,"antlr4ts/VocabularyImpl":225,"antlr4ts/atn/ATNDeserializer":231,"antlr4ts/atn/LexerATNSimulator":252,"antlr4ts/misc/Utils":313}],173:[function(require,module,exports){
|
|
14406
14704
|
"use strict";
|
|
14407
14705
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
14408
14706
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -25640,7 +25938,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
25640
25938
|
}
|
|
25641
25939
|
exports.Yield_argContext = Yield_argContext;
|
|
25642
25940
|
|
|
25643
|
-
},{"antlr4ts/FailedPredicateException":
|
|
25941
|
+
},{"antlr4ts/FailedPredicateException":198,"antlr4ts/NoViableAltException":206,"antlr4ts/Parser":207,"antlr4ts/ParserRuleContext":210,"antlr4ts/RecognitionException":213,"antlr4ts/Token":219,"antlr4ts/VocabularyImpl":225,"antlr4ts/atn/ATN":227,"antlr4ts/atn/ATNDeserializer":231,"antlr4ts/atn/ParserATNSimulator":268,"antlr4ts/misc/Utils":313}],174:[function(require,module,exports){
|
|
25644
25942
|
"use strict";
|
|
25645
25943
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25646
25944
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26260,7 +26558,7 @@ class TradutorAssemblyScript {
|
|
|
26260
26558
|
}
|
|
26261
26559
|
exports.TradutorAssemblyScript = TradutorAssemblyScript;
|
|
26262
26560
|
|
|
26263
|
-
},{"../construtos":42,"../declaracoes":82,"../tipos-de-simbolos/delegua":
|
|
26561
|
+
},{"../construtos":42,"../declaracoes":82,"../tipos-de-simbolos/delegua":165}],175:[function(require,module,exports){
|
|
26264
26562
|
"use strict";
|
|
26265
26563
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26266
26564
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26983,7 +27281,7 @@ class TradutorJavaScript {
|
|
|
26983
27281
|
}
|
|
26984
27282
|
exports.TradutorJavaScript = TradutorJavaScript;
|
|
26985
27283
|
|
|
26986
|
-
},{"../construtos":42,"../declaracoes":82,"../tipos-de-simbolos/delegua":
|
|
27284
|
+
},{"../construtos":42,"../declaracoes":82,"../tipos-de-simbolos/delegua":165}],176:[function(require,module,exports){
|
|
26987
27285
|
"use strict";
|
|
26988
27286
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26989
27287
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27434,7 +27732,7 @@ class TradutorMermaidJs {
|
|
|
27434
27732
|
}
|
|
27435
27733
|
exports.TradutorMermaidJs = TradutorMermaidJs;
|
|
27436
27734
|
|
|
27437
|
-
},{"../tipos-de-simbolos/delegua":
|
|
27735
|
+
},{"../tipos-de-simbolos/delegua":165}],177:[function(require,module,exports){
|
|
27438
27736
|
"use strict";
|
|
27439
27737
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27440
27738
|
exports.TradutorPortugolIpt = void 0;
|
|
@@ -27496,7 +27794,7 @@ class TradutorPortugolIpt {
|
|
|
27496
27794
|
}
|
|
27497
27795
|
exports.TradutorPortugolIpt = TradutorPortugolIpt;
|
|
27498
27796
|
|
|
27499
|
-
},{"../avaliador-sintatico/dialetos":6,"../lexador/dialetos":
|
|
27797
|
+
},{"../avaliador-sintatico/dialetos":6,"../lexador/dialetos":145}],178:[function(require,module,exports){
|
|
27500
27798
|
"use strict";
|
|
27501
27799
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27502
27800
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28134,7 +28432,7 @@ class TradutorPython {
|
|
|
28134
28432
|
}
|
|
28135
28433
|
exports.TradutorPython = TradutorPython;
|
|
28136
28434
|
|
|
28137
|
-
},{"../construtos":42,"../declaracoes":82,"../tipos-de-simbolos/delegua":
|
|
28435
|
+
},{"../construtos":42,"../declaracoes":82,"../tipos-de-simbolos/delegua":165}],179:[function(require,module,exports){
|
|
28138
28436
|
"use strict";
|
|
28139
28437
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28140
28438
|
exports.TradutorReversoJavaScript = void 0;
|
|
@@ -28528,7 +28826,7 @@ class TradutorReversoJavaScript {
|
|
|
28528
28826
|
}
|
|
28529
28827
|
exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
|
|
28530
28828
|
|
|
28531
|
-
},{}],
|
|
28829
|
+
},{}],180:[function(require,module,exports){
|
|
28532
28830
|
"use strict";
|
|
28533
28831
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28534
28832
|
exports.TradutorReversoPython = void 0;
|
|
@@ -28601,7 +28899,7 @@ class TradutorReversoPython {
|
|
|
28601
28899
|
}
|
|
28602
28900
|
exports.TradutorReversoPython = TradutorReversoPython;
|
|
28603
28901
|
|
|
28604
|
-
},{"./python/python3-lexer":
|
|
28902
|
+
},{"./python/python3-lexer":172,"./python/python3-parser":173,"antlr4ts":296,"antlr4ts/tree/ParseTreeWalker":315}],181:[function(require,module,exports){
|
|
28605
28903
|
"use strict";
|
|
28606
28904
|
/*!
|
|
28607
28905
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -28609,7 +28907,7 @@ exports.TradutorReversoPython = TradutorReversoPython;
|
|
|
28609
28907
|
*/
|
|
28610
28908
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28611
28909
|
|
|
28612
|
-
},{}],
|
|
28910
|
+
},{}],182:[function(require,module,exports){
|
|
28613
28911
|
"use strict";
|
|
28614
28912
|
/*!
|
|
28615
28913
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -28617,7 +28915,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
28617
28915
|
*/
|
|
28618
28916
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28619
28917
|
|
|
28620
|
-
},{}],
|
|
28918
|
+
},{}],183:[function(require,module,exports){
|
|
28621
28919
|
"use strict";
|
|
28622
28920
|
/*!
|
|
28623
28921
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -28779,7 +29077,7 @@ __decorate([
|
|
|
28779
29077
|
], ANTLRInputStream.prototype, "toString", null);
|
|
28780
29078
|
exports.ANTLRInputStream = ANTLRInputStream;
|
|
28781
29079
|
|
|
28782
|
-
},{"./Decorators":
|
|
29080
|
+
},{"./Decorators":194,"./IntStream":200,"assert":337}],184:[function(require,module,exports){
|
|
28783
29081
|
"use strict";
|
|
28784
29082
|
/*!
|
|
28785
29083
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -28862,7 +29160,7 @@ __decorate([
|
|
|
28862
29160
|
], BailErrorStrategy.prototype, "sync", null);
|
|
28863
29161
|
exports.BailErrorStrategy = BailErrorStrategy;
|
|
28864
29162
|
|
|
28865
|
-
},{"./Decorators":
|
|
29163
|
+
},{"./Decorators":194,"./DefaultErrorStrategy":195,"./InputMismatchException":199,"./misc/ParseCancellationException":311}],185:[function(require,module,exports){
|
|
28866
29164
|
"use strict";
|
|
28867
29165
|
/*!
|
|
28868
29166
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -29352,7 +29650,7 @@ BufferedTokenStream = __decorate([
|
|
|
29352
29650
|
], BufferedTokenStream);
|
|
29353
29651
|
exports.BufferedTokenStream = BufferedTokenStream;
|
|
29354
29652
|
|
|
29355
|
-
},{"./CommonToken":
|
|
29653
|
+
},{"./CommonToken":190,"./Decorators":194,"./Lexer":202,"./Token":219,"./misc/Interval":306,"assert":337}],186:[function(require,module,exports){
|
|
29356
29654
|
"use strict";
|
|
29357
29655
|
/*!
|
|
29358
29656
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -29360,7 +29658,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
|
|
|
29360
29658
|
*/
|
|
29361
29659
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29362
29660
|
|
|
29363
|
-
},{}],
|
|
29661
|
+
},{}],187:[function(require,module,exports){
|
|
29364
29662
|
"use strict";
|
|
29365
29663
|
/*!
|
|
29366
29664
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -29494,7 +29792,7 @@ var CharStreams;
|
|
|
29494
29792
|
// }
|
|
29495
29793
|
})(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
|
|
29496
29794
|
|
|
29497
|
-
},{"./CodePointBuffer":
|
|
29795
|
+
},{"./CodePointBuffer":188,"./CodePointCharStream":189,"./IntStream":200}],188:[function(require,module,exports){
|
|
29498
29796
|
"use strict";
|
|
29499
29797
|
/*!
|
|
29500
29798
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -29729,7 +30027,7 @@ exports.CodePointBuffer = CodePointBuffer;
|
|
|
29729
30027
|
CodePointBuffer.Builder = Builder;
|
|
29730
30028
|
})(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
|
|
29731
30029
|
|
|
29732
|
-
},{"./misc/Character":
|
|
30030
|
+
},{"./misc/Character":302,"assert":337}],189:[function(require,module,exports){
|
|
29733
30031
|
"use strict";
|
|
29734
30032
|
/*!
|
|
29735
30033
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -29879,7 +30177,7 @@ __decorate([
|
|
|
29879
30177
|
], CodePointCharStream.prototype, "getText", null);
|
|
29880
30178
|
exports.CodePointCharStream = CodePointCharStream;
|
|
29881
30179
|
|
|
29882
|
-
},{"./Decorators":
|
|
30180
|
+
},{"./Decorators":194,"./IntStream":200,"./misc/Interval":306,"assert":337}],190:[function(require,module,exports){
|
|
29883
30181
|
"use strict";
|
|
29884
30182
|
/*!
|
|
29885
30183
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -30109,7 +30407,7 @@ CommonToken = __decorate([
|
|
|
30109
30407
|
], CommonToken);
|
|
30110
30408
|
exports.CommonToken = CommonToken;
|
|
30111
30409
|
|
|
30112
|
-
},{"./Decorators":
|
|
30410
|
+
},{"./Decorators":194,"./Token":219,"./misc/Interval":306}],191:[function(require,module,exports){
|
|
30113
30411
|
"use strict";
|
|
30114
30412
|
/*!
|
|
30115
30413
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -30173,7 +30471,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
|
|
|
30173
30471
|
CommonTokenFactory.DEFAULT = new CommonTokenFactory();
|
|
30174
30472
|
})(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
|
|
30175
30473
|
|
|
30176
|
-
},{"./CommonToken":
|
|
30474
|
+
},{"./CommonToken":190,"./Decorators":194,"./misc/Interval":306}],192:[function(require,module,exports){
|
|
30177
30475
|
"use strict";
|
|
30178
30476
|
/*!
|
|
30179
30477
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -30300,7 +30598,7 @@ CommonTokenStream = __decorate([
|
|
|
30300
30598
|
], CommonTokenStream);
|
|
30301
30599
|
exports.CommonTokenStream = CommonTokenStream;
|
|
30302
30600
|
|
|
30303
|
-
},{"./BufferedTokenStream":
|
|
30601
|
+
},{"./BufferedTokenStream":185,"./Decorators":194,"./Token":219}],193:[function(require,module,exports){
|
|
30304
30602
|
"use strict";
|
|
30305
30603
|
/*!
|
|
30306
30604
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -30334,7 +30632,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
|
|
|
30334
30632
|
*/
|
|
30335
30633
|
ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
|
|
30336
30634
|
|
|
30337
|
-
},{}],
|
|
30635
|
+
},{}],194:[function(require,module,exports){
|
|
30338
30636
|
"use strict";
|
|
30339
30637
|
/*!
|
|
30340
30638
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -30361,7 +30659,7 @@ function SuppressWarnings(options) {
|
|
|
30361
30659
|
}
|
|
30362
30660
|
exports.SuppressWarnings = SuppressWarnings;
|
|
30363
30661
|
|
|
30364
|
-
},{}],
|
|
30662
|
+
},{}],195:[function(require,module,exports){
|
|
30365
30663
|
"use strict";
|
|
30366
30664
|
/*!
|
|
30367
30665
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31175,7 +31473,7 @@ __decorate([
|
|
|
31175
31473
|
], DefaultErrorStrategy.prototype, "consumeUntil", null);
|
|
31176
31474
|
exports.DefaultErrorStrategy = DefaultErrorStrategy;
|
|
31177
31475
|
|
|
31178
|
-
},{"./Decorators":
|
|
31476
|
+
},{"./Decorators":194,"./FailedPredicateException":198,"./InputMismatchException":199,"./NoViableAltException":206,"./Token":219,"./atn/ATNState":233,"./atn/ATNStateType":234,"./atn/PredictionContext":274,"./misc/IntervalSet":307}],196:[function(require,module,exports){
|
|
31179
31477
|
"use strict";
|
|
31180
31478
|
/*!
|
|
31181
31479
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31251,7 +31549,7 @@ var Dependents;
|
|
|
31251
31549
|
Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
|
|
31252
31550
|
})(Dependents = exports.Dependents || (exports.Dependents = {}));
|
|
31253
31551
|
|
|
31254
|
-
},{}],
|
|
31552
|
+
},{}],197:[function(require,module,exports){
|
|
31255
31553
|
"use strict";
|
|
31256
31554
|
/*!
|
|
31257
31555
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31399,7 +31697,7 @@ __decorate([
|
|
|
31399
31697
|
], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
|
|
31400
31698
|
exports.DiagnosticErrorListener = DiagnosticErrorListener;
|
|
31401
31699
|
|
|
31402
|
-
},{"./Decorators":
|
|
31700
|
+
},{"./Decorators":194,"./misc/BitSet":301,"./misc/Interval":306}],198:[function(require,module,exports){
|
|
31403
31701
|
"use strict";
|
|
31404
31702
|
/*!
|
|
31405
31703
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31464,7 +31762,7 @@ FailedPredicateException = __decorate([
|
|
|
31464
31762
|
], FailedPredicateException);
|
|
31465
31763
|
exports.FailedPredicateException = FailedPredicateException;
|
|
31466
31764
|
|
|
31467
|
-
},{"./Decorators":
|
|
31765
|
+
},{"./Decorators":194,"./RecognitionException":213,"./atn/PredicateTransition":273}],199:[function(require,module,exports){
|
|
31468
31766
|
"use strict";
|
|
31469
31767
|
/*!
|
|
31470
31768
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31504,7 +31802,7 @@ InputMismatchException = __decorate([
|
|
|
31504
31802
|
], InputMismatchException);
|
|
31505
31803
|
exports.InputMismatchException = InputMismatchException;
|
|
31506
31804
|
|
|
31507
|
-
},{"./Decorators":
|
|
31805
|
+
},{"./Decorators":194,"./RecognitionException":213}],200:[function(require,module,exports){
|
|
31508
31806
|
"use strict";
|
|
31509
31807
|
/*!
|
|
31510
31808
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31527,7 +31825,7 @@ var IntStream;
|
|
|
31527
31825
|
IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
|
|
31528
31826
|
})(IntStream = exports.IntStream || (exports.IntStream = {}));
|
|
31529
31827
|
|
|
31530
|
-
},{}],
|
|
31828
|
+
},{}],201:[function(require,module,exports){
|
|
31531
31829
|
"use strict";
|
|
31532
31830
|
/*!
|
|
31533
31831
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31574,7 +31872,7 @@ __decorate([
|
|
|
31574
31872
|
], InterpreterRuleContext.prototype, "ruleIndex", null);
|
|
31575
31873
|
exports.InterpreterRuleContext = InterpreterRuleContext;
|
|
31576
31874
|
|
|
31577
|
-
},{"./Decorators":
|
|
31875
|
+
},{"./Decorators":194,"./ParserRuleContext":210}],202:[function(require,module,exports){
|
|
31578
31876
|
"use strict";
|
|
31579
31877
|
/*!
|
|
31580
31878
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31910,7 +32208,7 @@ __decorate([
|
|
|
31910
32208
|
], Lexer.prototype, "charPositionInLine", null);
|
|
31911
32209
|
exports.Lexer = Lexer;
|
|
31912
32210
|
|
|
31913
|
-
},{"./CommonTokenFactory":
|
|
32211
|
+
},{"./CommonTokenFactory":191,"./Decorators":194,"./IntStream":200,"./LexerNoViableAltException":204,"./Recognizer":214,"./Token":219,"./atn/LexerATNSimulator":252,"./misc/IntegerStack":305,"./misc/Interval":306}],203:[function(require,module,exports){
|
|
31914
32212
|
"use strict";
|
|
31915
32213
|
/*!
|
|
31916
32214
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31990,7 +32288,7 @@ LexerInterpreter = __decorate([
|
|
|
31990
32288
|
], LexerInterpreter);
|
|
31991
32289
|
exports.LexerInterpreter = LexerInterpreter;
|
|
31992
32290
|
|
|
31993
|
-
},{"./Decorators":
|
|
32291
|
+
},{"./Decorators":194,"./Lexer":202,"./atn/LexerATNSimulator":252}],204:[function(require,module,exports){
|
|
31994
32292
|
"use strict";
|
|
31995
32293
|
/*!
|
|
31996
32294
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32047,7 +32345,7 @@ LexerNoViableAltException = __decorate([
|
|
|
32047
32345
|
], LexerNoViableAltException);
|
|
32048
32346
|
exports.LexerNoViableAltException = LexerNoViableAltException;
|
|
32049
32347
|
|
|
32050
|
-
},{"./Decorators":
|
|
32348
|
+
},{"./Decorators":194,"./RecognitionException":213,"./misc/Interval":306,"./misc/Utils":313}],205:[function(require,module,exports){
|
|
32051
32349
|
"use strict";
|
|
32052
32350
|
/*!
|
|
32053
32351
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32257,7 +32555,7 @@ ListTokenSource = __decorate([
|
|
|
32257
32555
|
], ListTokenSource);
|
|
32258
32556
|
exports.ListTokenSource = ListTokenSource;
|
|
32259
32557
|
|
|
32260
|
-
},{"./CommonTokenFactory":
|
|
32558
|
+
},{"./CommonTokenFactory":191,"./Decorators":194,"./Token":219}],206:[function(require,module,exports){
|
|
32261
32559
|
"use strict";
|
|
32262
32560
|
/*!
|
|
32263
32561
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32312,7 +32610,7 @@ __decorate([
|
|
|
32312
32610
|
], NoViableAltException.prototype, "_startToken", void 0);
|
|
32313
32611
|
exports.NoViableAltException = NoViableAltException;
|
|
32314
32612
|
|
|
32315
|
-
},{"./Decorators":
|
|
32613
|
+
},{"./Decorators":194,"./Parser":207,"./RecognitionException":213}],207:[function(require,module,exports){
|
|
32316
32614
|
(function (process){(function (){
|
|
32317
32615
|
"use strict";
|
|
32318
32616
|
/*!
|
|
@@ -33158,7 +33456,7 @@ __decorate([
|
|
|
33158
33456
|
exports.Parser = Parser;
|
|
33159
33457
|
|
|
33160
33458
|
}).call(this)}).call(this,require('_process'))
|
|
33161
|
-
},{"./Decorators":
|
|
33459
|
+
},{"./Decorators":194,"./DefaultErrorStrategy":195,"./Lexer":202,"./ProxyParserErrorListener":212,"./Recognizer":214,"./Token":219,"./atn/ATNDeserializationOptions":230,"./atn/ATNDeserializer":231,"./atn/ParseInfo":267,"./atn/ParserATNSimulator":268,"./atn/ProfilingATNSimulator":277,"./misc/IntegerStack":305,"./misc/Utils":313,"./tree/ErrorNode":314,"./tree/TerminalNode":317,"./tree/pattern/ParseTreePatternMatcher":322,"_process":385}],208:[function(require,module,exports){
|
|
33162
33460
|
"use strict";
|
|
33163
33461
|
/*!
|
|
33164
33462
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33166,7 +33464,7 @@ exports.Parser = Parser;
|
|
|
33166
33464
|
*/
|
|
33167
33465
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
33168
33466
|
|
|
33169
|
-
},{}],
|
|
33467
|
+
},{}],209:[function(require,module,exports){
|
|
33170
33468
|
"use strict";
|
|
33171
33469
|
/*!
|
|
33172
33470
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33574,7 +33872,7 @@ ParserInterpreter = __decorate([
|
|
|
33574
33872
|
], ParserInterpreter);
|
|
33575
33873
|
exports.ParserInterpreter = ParserInterpreter;
|
|
33576
33874
|
|
|
33577
|
-
},{"./Decorators":
|
|
33875
|
+
},{"./Decorators":194,"./FailedPredicateException":198,"./InputMismatchException":199,"./InterpreterRuleContext":201,"./Parser":207,"./RecognitionException":213,"./Token":219,"./atn/ATNState":233,"./atn/ATNStateType":234,"./atn/LoopEndState":264,"./atn/ParserATNSimulator":268,"./atn/StarLoopEntryState":286,"./misc/BitSet":301}],210:[function(require,module,exports){
|
|
33578
33876
|
"use strict";
|
|
33579
33877
|
/*!
|
|
33580
33878
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33875,7 +34173,7 @@ __decorate([
|
|
|
33875
34173
|
], ParserRuleContext.prototype, "sourceInterval", null);
|
|
33876
34174
|
exports.ParserRuleContext = ParserRuleContext;
|
|
33877
34175
|
|
|
33878
|
-
},{"./Decorators":
|
|
34176
|
+
},{"./Decorators":194,"./RuleContext":215,"./misc/Interval":306,"./tree/ErrorNode":314,"./tree/TerminalNode":317}],211:[function(require,module,exports){
|
|
33879
34177
|
"use strict";
|
|
33880
34178
|
/*!
|
|
33881
34179
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33925,7 +34223,7 @@ __decorate([
|
|
|
33925
34223
|
], ProxyErrorListener.prototype, "syntaxError", null);
|
|
33926
34224
|
exports.ProxyErrorListener = ProxyErrorListener;
|
|
33927
34225
|
|
|
33928
|
-
},{"./Decorators":
|
|
34226
|
+
},{"./Decorators":194}],212:[function(require,module,exports){
|
|
33929
34227
|
"use strict";
|
|
33930
34228
|
/*!
|
|
33931
34229
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33984,7 +34282,7 @@ __decorate([
|
|
|
33984
34282
|
], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
|
|
33985
34283
|
exports.ProxyParserErrorListener = ProxyParserErrorListener;
|
|
33986
34284
|
|
|
33987
|
-
},{"./Decorators":
|
|
34285
|
+
},{"./Decorators":194,"./ProxyErrorListener":211}],213:[function(require,module,exports){
|
|
33988
34286
|
"use strict";
|
|
33989
34287
|
/*!
|
|
33990
34288
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34089,7 +34387,7 @@ class RecognitionException extends Error {
|
|
|
34089
34387
|
}
|
|
34090
34388
|
exports.RecognitionException = RecognitionException;
|
|
34091
34389
|
|
|
34092
|
-
},{}],
|
|
34390
|
+
},{}],214:[function(require,module,exports){
|
|
34093
34391
|
"use strict";
|
|
34094
34392
|
/*!
|
|
34095
34393
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34308,7 +34606,7 @@ __decorate([
|
|
|
34308
34606
|
], Recognizer.prototype, "getErrorListeners", null);
|
|
34309
34607
|
exports.Recognizer = Recognizer;
|
|
34310
34608
|
|
|
34311
|
-
},{"./ConsoleErrorListener":
|
|
34609
|
+
},{"./ConsoleErrorListener":193,"./Decorators":194,"./ProxyErrorListener":211,"./Token":219,"./misc/Utils":313}],215:[function(require,module,exports){
|
|
34312
34610
|
"use strict";
|
|
34313
34611
|
/*!
|
|
34314
34612
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34525,7 +34823,7 @@ __decorate([
|
|
|
34525
34823
|
], RuleContext.prototype, "toStringTree", null);
|
|
34526
34824
|
exports.RuleContext = RuleContext;
|
|
34527
34825
|
|
|
34528
|
-
},{"./Decorators":
|
|
34826
|
+
},{"./Decorators":194,"./ParserRuleContext":210,"./Recognizer":214,"./atn/ATN":227,"./misc/Interval":306,"./tree/RuleNode":316,"./tree/Trees":318}],216:[function(require,module,exports){
|
|
34529
34827
|
"use strict";
|
|
34530
34828
|
/*!
|
|
34531
34829
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34576,7 +34874,7 @@ __decorate([
|
|
|
34576
34874
|
], RuleContextWithAltNum.prototype, "altNumber", null);
|
|
34577
34875
|
exports.RuleContextWithAltNum = RuleContextWithAltNum;
|
|
34578
34876
|
|
|
34579
|
-
},{"./Decorators":
|
|
34877
|
+
},{"./Decorators":194,"./ParserRuleContext":210,"./atn/ATN":227}],217:[function(require,module,exports){
|
|
34580
34878
|
"use strict";
|
|
34581
34879
|
/*!
|
|
34582
34880
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34599,7 +34897,7 @@ function RuleDependency(dependency) {
|
|
|
34599
34897
|
}
|
|
34600
34898
|
exports.RuleDependency = RuleDependency;
|
|
34601
34899
|
|
|
34602
|
-
},{}],
|
|
34900
|
+
},{}],218:[function(require,module,exports){
|
|
34603
34901
|
"use strict";
|
|
34604
34902
|
/*!
|
|
34605
34903
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34618,7 +34916,7 @@ function RuleVersion(version) {
|
|
|
34618
34916
|
}
|
|
34619
34917
|
exports.RuleVersion = RuleVersion;
|
|
34620
34918
|
|
|
34621
|
-
},{}],
|
|
34919
|
+
},{}],219:[function(require,module,exports){
|
|
34622
34920
|
"use strict";
|
|
34623
34921
|
/*!
|
|
34624
34922
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34658,7 +34956,7 @@ var Token;
|
|
|
34658
34956
|
Token.MIN_USER_CHANNEL_VALUE = 2;
|
|
34659
34957
|
})(Token = exports.Token || (exports.Token = {}));
|
|
34660
34958
|
|
|
34661
|
-
},{"./IntStream":
|
|
34959
|
+
},{"./IntStream":200}],220:[function(require,module,exports){
|
|
34662
34960
|
"use strict";
|
|
34663
34961
|
/*!
|
|
34664
34962
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34666,7 +34964,7 @@ var Token;
|
|
|
34666
34964
|
*/
|
|
34667
34965
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34668
34966
|
|
|
34669
|
-
},{}],
|
|
34967
|
+
},{}],221:[function(require,module,exports){
|
|
34670
34968
|
"use strict";
|
|
34671
34969
|
/*!
|
|
34672
34970
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34674,7 +34972,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
34674
34972
|
*/
|
|
34675
34973
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34676
34974
|
|
|
34677
|
-
},{}],
|
|
34975
|
+
},{}],222:[function(require,module,exports){
|
|
34678
34976
|
"use strict";
|
|
34679
34977
|
/*!
|
|
34680
34978
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34682,7 +34980,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
34682
34980
|
*/
|
|
34683
34981
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34684
34982
|
|
|
34685
|
-
},{}],
|
|
34983
|
+
},{}],223:[function(require,module,exports){
|
|
34686
34984
|
"use strict";
|
|
34687
34985
|
/*!
|
|
34688
34986
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35190,7 +35488,7 @@ __decorate([
|
|
|
35190
35488
|
Decorators_1.Override
|
|
35191
35489
|
], ReplaceOp.prototype, "toString", null);
|
|
35192
35490
|
|
|
35193
|
-
},{"./Decorators":
|
|
35491
|
+
},{"./Decorators":194,"./Token":219,"./misc/Interval":306}],224:[function(require,module,exports){
|
|
35194
35492
|
"use strict";
|
|
35195
35493
|
/*!
|
|
35196
35494
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35198,7 +35496,7 @@ __decorate([
|
|
|
35198
35496
|
*/
|
|
35199
35497
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
35200
35498
|
|
|
35201
|
-
},{}],
|
|
35499
|
+
},{}],225:[function(require,module,exports){
|
|
35202
35500
|
"use strict";
|
|
35203
35501
|
/*!
|
|
35204
35502
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35318,7 +35616,7 @@ __decorate([
|
|
|
35318
35616
|
], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
|
|
35319
35617
|
exports.VocabularyImpl = VocabularyImpl;
|
|
35320
35618
|
|
|
35321
|
-
},{"./Decorators":
|
|
35619
|
+
},{"./Decorators":194,"./Token":219}],226:[function(require,module,exports){
|
|
35322
35620
|
"use strict";
|
|
35323
35621
|
/*!
|
|
35324
35622
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35326,7 +35624,7 @@ exports.VocabularyImpl = VocabularyImpl;
|
|
|
35326
35624
|
*/
|
|
35327
35625
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
35328
35626
|
|
|
35329
|
-
},{}],
|
|
35627
|
+
},{}],227:[function(require,module,exports){
|
|
35330
35628
|
"use strict";
|
|
35331
35629
|
/*!
|
|
35332
35630
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35548,7 +35846,7 @@ exports.ATN = ATN;
|
|
|
35548
35846
|
})(ATN = exports.ATN || (exports.ATN = {}));
|
|
35549
35847
|
exports.ATN = ATN;
|
|
35550
35848
|
|
|
35551
|
-
},{"../Decorators":
|
|
35849
|
+
},{"../Decorators":194,"../Token":219,"../dfa/DFA":292,"../misc/Array2DHashMap":297,"../misc/IntervalSet":307,"../misc/ObjectEqualityComparator":310,"./InvalidState":250,"./LL1Analyzer":251,"./PredictionContext":274,"assert":337}],228:[function(require,module,exports){
|
|
35552
35850
|
"use strict";
|
|
35553
35851
|
/*!
|
|
35554
35852
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36073,7 +36371,7 @@ ActionSemanticContextATNConfig = __decorate([
|
|
|
36073
36371
|
__param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
|
|
36074
36372
|
], ActionSemanticContextATNConfig);
|
|
36075
36373
|
|
|
36076
|
-
},{"../Decorators":
|
|
36374
|
+
},{"../Decorators":194,"../misc/Array2DHashMap":297,"../misc/MurmurHash":309,"../misc/ObjectEqualityComparator":310,"./DecisionState":247,"./PredictionContext":274,"./SemanticContext":282,"assert":337}],229:[function(require,module,exports){
|
|
36077
36375
|
"use strict";
|
|
36078
36376
|
/*!
|
|
36079
36377
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36520,7 +36818,7 @@ __decorate([
|
|
|
36520
36818
|
], ATNConfigSet.prototype, "hashCode", null);
|
|
36521
36819
|
exports.ATNConfigSet = ATNConfigSet;
|
|
36522
36820
|
|
|
36523
|
-
},{"../Decorators":
|
|
36821
|
+
},{"../Decorators":194,"../misc/Array2DHashMap":297,"../misc/Array2DHashSet":298,"../misc/ArrayEqualityComparator":299,"../misc/BitSet":301,"../misc/ObjectEqualityComparator":310,"../misc/Utils":313,"./ATN":227,"./ATNConfig":228,"./PredictionContext":274,"./PredictionContextCache":275,"./SemanticContext":282,"assert":337}],230:[function(require,module,exports){
|
|
36524
36822
|
"use strict";
|
|
36525
36823
|
/*!
|
|
36526
36824
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36599,7 +36897,7 @@ __decorate([
|
|
|
36599
36897
|
], ATNDeserializationOptions, "defaultOptions", null);
|
|
36600
36898
|
exports.ATNDeserializationOptions = ATNDeserializationOptions;
|
|
36601
36899
|
|
|
36602
|
-
},{"../Decorators":
|
|
36900
|
+
},{"../Decorators":194}],231:[function(require,module,exports){
|
|
36603
36901
|
"use strict";
|
|
36604
36902
|
/*!
|
|
36605
36903
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37686,7 +37984,7 @@ __decorate([
|
|
|
37686
37984
|
], ATNDeserializer.prototype, "edgeFactory", null);
|
|
37687
37985
|
exports.ATNDeserializer = ATNDeserializer;
|
|
37688
37986
|
|
|
37689
|
-
},{"../Decorators":
|
|
37987
|
+
},{"../Decorators":194,"../Token":219,"../dfa/DFA":292,"../misc/Array2DHashSet":298,"../misc/BitSet":301,"../misc/IntervalSet":307,"../misc/UUID":312,"./ATN":227,"./ATNDeserializationOptions":230,"./ATNStateType":234,"./ActionTransition":236,"./AtomTransition":238,"./BasicBlockStartState":239,"./BasicState":240,"./BlockEndState":241,"./BlockStartState":242,"./DecisionState":247,"./EpsilonTransition":248,"./InvalidState":250,"./LexerChannelAction":254,"./LexerCustomAction":255,"./LexerModeAction":257,"./LexerMoreAction":258,"./LexerPopModeAction":259,"./LexerPushModeAction":260,"./LexerSkipAction":261,"./LexerTypeAction":262,"./LoopEndState":264,"./NotSetTransition":265,"./ParserATNSimulator":268,"./PlusBlockStartState":269,"./PlusLoopbackState":270,"./PrecedencePredicateTransition":271,"./PredicateTransition":273,"./RangeTransition":278,"./RuleStartState":279,"./RuleStopState":280,"./RuleTransition":281,"./SetTransition":283,"./StarBlockStartState":285,"./StarLoopEntryState":286,"./StarLoopbackState":287,"./TokensStartState":288,"./WildcardTransition":290}],232:[function(require,module,exports){
|
|
37690
37988
|
"use strict";
|
|
37691
37989
|
/*!
|
|
37692
37990
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37750,7 +38048,7 @@ exports.ATNSimulator = ATNSimulator;
|
|
|
37750
38048
|
})(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
|
|
37751
38049
|
exports.ATNSimulator = ATNSimulator;
|
|
37752
38050
|
|
|
37753
|
-
},{"../Decorators":
|
|
38051
|
+
},{"../Decorators":194,"../dfa/DFAState":294,"./ATNConfigSet":229,"./PredictionContext":274}],233:[function(require,module,exports){
|
|
37754
38052
|
"use strict";
|
|
37755
38053
|
/*!
|
|
37756
38054
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37937,7 +38235,7 @@ exports.ATNState = ATNState;
|
|
|
37937
38235
|
ATNState.INVALID_STATE_NUMBER = -1;
|
|
37938
38236
|
})(ATNState = exports.ATNState || (exports.ATNState = {}));
|
|
37939
38237
|
|
|
37940
|
-
},{"../Decorators":
|
|
38238
|
+
},{"../Decorators":194}],234:[function(require,module,exports){
|
|
37941
38239
|
"use strict";
|
|
37942
38240
|
/*!
|
|
37943
38241
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37963,7 +38261,7 @@ var ATNStateType;
|
|
|
37963
38261
|
ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
|
|
37964
38262
|
})(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
|
|
37965
38263
|
|
|
37966
|
-
},{}],
|
|
38264
|
+
},{}],235:[function(require,module,exports){
|
|
37967
38265
|
"use strict";
|
|
37968
38266
|
/*!
|
|
37969
38267
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37983,7 +38281,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
|
|
|
37983
38281
|
}
|
|
37984
38282
|
exports.AbstractPredicateTransition = AbstractPredicateTransition;
|
|
37985
38283
|
|
|
37986
|
-
},{"./Transition":
|
|
38284
|
+
},{"./Transition":289}],236:[function(require,module,exports){
|
|
37987
38285
|
"use strict";
|
|
37988
38286
|
/*!
|
|
37989
38287
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38039,7 +38337,7 @@ ActionTransition = __decorate([
|
|
|
38039
38337
|
], ActionTransition);
|
|
38040
38338
|
exports.ActionTransition = ActionTransition;
|
|
38041
38339
|
|
|
38042
|
-
},{"../Decorators":
|
|
38340
|
+
},{"../Decorators":194,"./Transition":289}],237:[function(require,module,exports){
|
|
38043
38341
|
"use strict";
|
|
38044
38342
|
/*!
|
|
38045
38343
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38126,7 +38424,7 @@ AmbiguityInfo = __decorate([
|
|
|
38126
38424
|
], AmbiguityInfo);
|
|
38127
38425
|
exports.AmbiguityInfo = AmbiguityInfo;
|
|
38128
38426
|
|
|
38129
|
-
},{"../Decorators":
|
|
38427
|
+
},{"../Decorators":194,"./DecisionEventInfo":245}],238:[function(require,module,exports){
|
|
38130
38428
|
"use strict";
|
|
38131
38429
|
/*!
|
|
38132
38430
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38184,7 +38482,7 @@ AtomTransition = __decorate([
|
|
|
38184
38482
|
], AtomTransition);
|
|
38185
38483
|
exports.AtomTransition = AtomTransition;
|
|
38186
38484
|
|
|
38187
|
-
},{"../Decorators":
|
|
38485
|
+
},{"../Decorators":194,"../misc/IntervalSet":307,"./Transition":289}],239:[function(require,module,exports){
|
|
38188
38486
|
"use strict";
|
|
38189
38487
|
/*!
|
|
38190
38488
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38216,7 +38514,7 @@ __decorate([
|
|
|
38216
38514
|
], BasicBlockStartState.prototype, "stateType", null);
|
|
38217
38515
|
exports.BasicBlockStartState = BasicBlockStartState;
|
|
38218
38516
|
|
|
38219
|
-
},{"../Decorators":
|
|
38517
|
+
},{"../Decorators":194,"./ATNStateType":234,"./BlockStartState":242}],240:[function(require,module,exports){
|
|
38220
38518
|
"use strict";
|
|
38221
38519
|
/*!
|
|
38222
38520
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38248,7 +38546,7 @@ __decorate([
|
|
|
38248
38546
|
], BasicState.prototype, "stateType", null);
|
|
38249
38547
|
exports.BasicState = BasicState;
|
|
38250
38548
|
|
|
38251
|
-
},{"../Decorators":
|
|
38549
|
+
},{"../Decorators":194,"./ATNState":233,"./ATNStateType":234}],241:[function(require,module,exports){
|
|
38252
38550
|
"use strict";
|
|
38253
38551
|
/*!
|
|
38254
38552
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38277,7 +38575,7 @@ __decorate([
|
|
|
38277
38575
|
], BlockEndState.prototype, "stateType", null);
|
|
38278
38576
|
exports.BlockEndState = BlockEndState;
|
|
38279
38577
|
|
|
38280
|
-
},{"../Decorators":
|
|
38578
|
+
},{"../Decorators":194,"./ATNState":233,"./ATNStateType":234}],242:[function(require,module,exports){
|
|
38281
38579
|
"use strict";
|
|
38282
38580
|
/*!
|
|
38283
38581
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38291,7 +38589,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
|
|
|
38291
38589
|
}
|
|
38292
38590
|
exports.BlockStartState = BlockStartState;
|
|
38293
38591
|
|
|
38294
|
-
},{"./DecisionState":
|
|
38592
|
+
},{"./DecisionState":247}],243:[function(require,module,exports){
|
|
38295
38593
|
"use strict";
|
|
38296
38594
|
/*!
|
|
38297
38595
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38361,7 +38659,7 @@ __decorate([
|
|
|
38361
38659
|
], ConflictInfo.prototype, "hashCode", null);
|
|
38362
38660
|
exports.ConflictInfo = ConflictInfo;
|
|
38363
38661
|
|
|
38364
|
-
},{"../Decorators":
|
|
38662
|
+
},{"../Decorators":194,"../misc/Utils":313}],244:[function(require,module,exports){
|
|
38365
38663
|
"use strict";
|
|
38366
38664
|
/*!
|
|
38367
38665
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38421,7 +38719,7 @@ ContextSensitivityInfo = __decorate([
|
|
|
38421
38719
|
], ContextSensitivityInfo);
|
|
38422
38720
|
exports.ContextSensitivityInfo = ContextSensitivityInfo;
|
|
38423
38721
|
|
|
38424
|
-
},{"../Decorators":
|
|
38722
|
+
},{"../Decorators":194,"./DecisionEventInfo":245}],245:[function(require,module,exports){
|
|
38425
38723
|
"use strict";
|
|
38426
38724
|
/*!
|
|
38427
38725
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38473,7 +38771,7 @@ DecisionEventInfo = __decorate([
|
|
|
38473
38771
|
], DecisionEventInfo);
|
|
38474
38772
|
exports.DecisionEventInfo = DecisionEventInfo;
|
|
38475
38773
|
|
|
38476
|
-
},{"../Decorators":
|
|
38774
|
+
},{"../Decorators":194}],246:[function(require,module,exports){
|
|
38477
38775
|
"use strict";
|
|
38478
38776
|
/*!
|
|
38479
38777
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38686,7 +38984,7 @@ __decorate([
|
|
|
38686
38984
|
], DecisionInfo.prototype, "toString", null);
|
|
38687
38985
|
exports.DecisionInfo = DecisionInfo;
|
|
38688
38986
|
|
|
38689
|
-
},{"../Decorators":
|
|
38987
|
+
},{"../Decorators":194}],247:[function(require,module,exports){
|
|
38690
38988
|
"use strict";
|
|
38691
38989
|
/*!
|
|
38692
38990
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38706,7 +39004,7 @@ class DecisionState extends ATNState_1.ATNState {
|
|
|
38706
39004
|
}
|
|
38707
39005
|
exports.DecisionState = DecisionState;
|
|
38708
39006
|
|
|
38709
|
-
},{"./ATNState":
|
|
39007
|
+
},{"./ATNState":233}],248:[function(require,module,exports){
|
|
38710
39008
|
"use strict";
|
|
38711
39009
|
/*!
|
|
38712
39010
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38772,7 +39070,7 @@ EpsilonTransition = __decorate([
|
|
|
38772
39070
|
], EpsilonTransition);
|
|
38773
39071
|
exports.EpsilonTransition = EpsilonTransition;
|
|
38774
39072
|
|
|
38775
|
-
},{"../Decorators":
|
|
39073
|
+
},{"../Decorators":194,"./Transition":289}],249:[function(require,module,exports){
|
|
38776
39074
|
"use strict";
|
|
38777
39075
|
/*!
|
|
38778
39076
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38825,7 +39123,7 @@ ErrorInfo = __decorate([
|
|
|
38825
39123
|
], ErrorInfo);
|
|
38826
39124
|
exports.ErrorInfo = ErrorInfo;
|
|
38827
39125
|
|
|
38828
|
-
},{"../Decorators":
|
|
39126
|
+
},{"../Decorators":194,"./DecisionEventInfo":245}],250:[function(require,module,exports){
|
|
38829
39127
|
"use strict";
|
|
38830
39128
|
/*!
|
|
38831
39129
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38856,7 +39154,7 @@ __decorate([
|
|
|
38856
39154
|
], InvalidState.prototype, "stateType", null);
|
|
38857
39155
|
exports.InvalidState = InvalidState;
|
|
38858
39156
|
|
|
38859
|
-
},{"../Decorators":
|
|
39157
|
+
},{"../Decorators":194,"./ATNStateType":234,"./BasicState":240}],251:[function(require,module,exports){
|
|
38860
39158
|
"use strict";
|
|
38861
39159
|
/*!
|
|
38862
39160
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39078,7 +39376,7 @@ LL1Analyzer = __decorate([
|
|
|
39078
39376
|
], LL1Analyzer);
|
|
39079
39377
|
exports.LL1Analyzer = LL1Analyzer;
|
|
39080
39378
|
|
|
39081
|
-
},{"../Decorators":
|
|
39379
|
+
},{"../Decorators":194,"../Token":219,"../misc/Array2DHashSet":298,"../misc/BitSet":301,"../misc/IntervalSet":307,"../misc/ObjectEqualityComparator":310,"./ATNConfig":228,"./AbstractPredicateTransition":235,"./NotSetTransition":265,"./PredictionContext":274,"./RuleStopState":280,"./RuleTransition":281,"./WildcardTransition":290}],252:[function(require,module,exports){
|
|
39082
39380
|
"use strict";
|
|
39083
39381
|
/*!
|
|
39084
39382
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39795,7 +40093,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
|
|
|
39795
40093
|
})(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
|
|
39796
40094
|
exports.LexerATNSimulator = LexerATNSimulator;
|
|
39797
40095
|
|
|
39798
|
-
},{"../Decorators":
|
|
40096
|
+
},{"../Decorators":194,"../IntStream":200,"../Lexer":202,"../LexerNoViableAltException":204,"../Token":219,"../dfa/AcceptStateInfo":291,"../dfa/DFAState":294,"../misc/Interval":306,"./ATN":227,"./ATNConfig":228,"./ATNConfigSet":229,"./ATNSimulator":232,"./LexerActionExecutor":253,"./OrderedATNConfigSet":266,"./PredictionContext":274,"./RuleStopState":280,"assert":337}],253:[function(require,module,exports){
|
|
39799
40097
|
"use strict";
|
|
39800
40098
|
/*!
|
|
39801
40099
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39996,7 +40294,7 @@ LexerActionExecutor = __decorate([
|
|
|
39996
40294
|
], LexerActionExecutor);
|
|
39997
40295
|
exports.LexerActionExecutor = LexerActionExecutor;
|
|
39998
40296
|
|
|
39999
|
-
},{"../Decorators":
|
|
40297
|
+
},{"../Decorators":194,"../misc/ArrayEqualityComparator":299,"../misc/MurmurHash":309,"./LexerIndexedCustomAction":256}],254:[function(require,module,exports){
|
|
40000
40298
|
"use strict";
|
|
40001
40299
|
/*!
|
|
40002
40300
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40101,7 +40399,7 @@ __decorate([
|
|
|
40101
40399
|
], LexerChannelAction.prototype, "toString", null);
|
|
40102
40400
|
exports.LexerChannelAction = LexerChannelAction;
|
|
40103
40401
|
|
|
40104
|
-
},{"../Decorators":
|
|
40402
|
+
},{"../Decorators":194,"../misc/MurmurHash":309}],255:[function(require,module,exports){
|
|
40105
40403
|
"use strict";
|
|
40106
40404
|
/*!
|
|
40107
40405
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40230,7 +40528,7 @@ __decorate([
|
|
|
40230
40528
|
], LexerCustomAction.prototype, "equals", null);
|
|
40231
40529
|
exports.LexerCustomAction = LexerCustomAction;
|
|
40232
40530
|
|
|
40233
|
-
},{"../Decorators":
|
|
40531
|
+
},{"../Decorators":194,"../misc/MurmurHash":309}],256:[function(require,module,exports){
|
|
40234
40532
|
"use strict";
|
|
40235
40533
|
/*!
|
|
40236
40534
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40365,7 +40663,7 @@ LexerIndexedCustomAction = __decorate([
|
|
|
40365
40663
|
], LexerIndexedCustomAction);
|
|
40366
40664
|
exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
|
|
40367
40665
|
|
|
40368
|
-
},{"../Decorators":
|
|
40666
|
+
},{"../Decorators":194,"../misc/MurmurHash":309}],257:[function(require,module,exports){
|
|
40369
40667
|
"use strict";
|
|
40370
40668
|
/*!
|
|
40371
40669
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40470,7 +40768,7 @@ __decorate([
|
|
|
40470
40768
|
], LexerModeAction.prototype, "toString", null);
|
|
40471
40769
|
exports.LexerModeAction = LexerModeAction;
|
|
40472
40770
|
|
|
40473
|
-
},{"../Decorators":
|
|
40771
|
+
},{"../Decorators":194,"../misc/MurmurHash":309}],258:[function(require,module,exports){
|
|
40474
40772
|
"use strict";
|
|
40475
40773
|
/*!
|
|
40476
40774
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40566,7 +40864,7 @@ exports.LexerMoreAction = LexerMoreAction;
|
|
|
40566
40864
|
LexerMoreAction.INSTANCE = new LexerMoreAction();
|
|
40567
40865
|
})(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
|
|
40568
40866
|
|
|
40569
|
-
},{"../Decorators":
|
|
40867
|
+
},{"../Decorators":194,"../misc/MurmurHash":309}],259:[function(require,module,exports){
|
|
40570
40868
|
"use strict";
|
|
40571
40869
|
/*!
|
|
40572
40870
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40662,7 +40960,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
|
|
|
40662
40960
|
LexerPopModeAction.INSTANCE = new LexerPopModeAction();
|
|
40663
40961
|
})(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
|
|
40664
40962
|
|
|
40665
|
-
},{"../Decorators":
|
|
40963
|
+
},{"../Decorators":194,"../misc/MurmurHash":309}],260:[function(require,module,exports){
|
|
40666
40964
|
"use strict";
|
|
40667
40965
|
/*!
|
|
40668
40966
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40767,7 +41065,7 @@ __decorate([
|
|
|
40767
41065
|
], LexerPushModeAction.prototype, "toString", null);
|
|
40768
41066
|
exports.LexerPushModeAction = LexerPushModeAction;
|
|
40769
41067
|
|
|
40770
|
-
},{"../Decorators":
|
|
41068
|
+
},{"../Decorators":194,"../misc/MurmurHash":309}],261:[function(require,module,exports){
|
|
40771
41069
|
"use strict";
|
|
40772
41070
|
/*!
|
|
40773
41071
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40863,7 +41161,7 @@ exports.LexerSkipAction = LexerSkipAction;
|
|
|
40863
41161
|
LexerSkipAction.INSTANCE = new LexerSkipAction();
|
|
40864
41162
|
})(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
|
|
40865
41163
|
|
|
40866
|
-
},{"../Decorators":
|
|
41164
|
+
},{"../Decorators":194,"../misc/MurmurHash":309}],262:[function(require,module,exports){
|
|
40867
41165
|
"use strict";
|
|
40868
41166
|
/*!
|
|
40869
41167
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40967,7 +41265,7 @@ __decorate([
|
|
|
40967
41265
|
], LexerTypeAction.prototype, "toString", null);
|
|
40968
41266
|
exports.LexerTypeAction = LexerTypeAction;
|
|
40969
41267
|
|
|
40970
|
-
},{"../Decorators":
|
|
41268
|
+
},{"../Decorators":194,"../misc/MurmurHash":309}],263:[function(require,module,exports){
|
|
40971
41269
|
"use strict";
|
|
40972
41270
|
/*!
|
|
40973
41271
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41019,7 +41317,7 @@ LookaheadEventInfo = __decorate([
|
|
|
41019
41317
|
], LookaheadEventInfo);
|
|
41020
41318
|
exports.LookaheadEventInfo = LookaheadEventInfo;
|
|
41021
41319
|
|
|
41022
|
-
},{"../Decorators":
|
|
41320
|
+
},{"../Decorators":194,"./DecisionEventInfo":245}],264:[function(require,module,exports){
|
|
41023
41321
|
"use strict";
|
|
41024
41322
|
/*!
|
|
41025
41323
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41048,7 +41346,7 @@ __decorate([
|
|
|
41048
41346
|
], LoopEndState.prototype, "stateType", null);
|
|
41049
41347
|
exports.LoopEndState = LoopEndState;
|
|
41050
41348
|
|
|
41051
|
-
},{"../Decorators":
|
|
41349
|
+
},{"../Decorators":194,"./ATNState":233,"./ATNStateType":234}],265:[function(require,module,exports){
|
|
41052
41350
|
"use strict";
|
|
41053
41351
|
/*!
|
|
41054
41352
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41097,7 +41395,7 @@ NotSetTransition = __decorate([
|
|
|
41097
41395
|
], NotSetTransition);
|
|
41098
41396
|
exports.NotSetTransition = NotSetTransition;
|
|
41099
41397
|
|
|
41100
|
-
},{"../Decorators":
|
|
41398
|
+
},{"../Decorators":194,"./SetTransition":283}],266:[function(require,module,exports){
|
|
41101
41399
|
"use strict";
|
|
41102
41400
|
/*!
|
|
41103
41401
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41152,7 +41450,7 @@ __decorate([
|
|
|
41152
41450
|
], OrderedATNConfigSet.prototype, "canMerge", null);
|
|
41153
41451
|
exports.OrderedATNConfigSet = OrderedATNConfigSet;
|
|
41154
41452
|
|
|
41155
|
-
},{"../Decorators":
|
|
41453
|
+
},{"../Decorators":194,"./ATNConfigSet":229}],267:[function(require,module,exports){
|
|
41156
41454
|
"use strict";
|
|
41157
41455
|
/*!
|
|
41158
41456
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41314,7 +41612,7 @@ ParseInfo = __decorate([
|
|
|
41314
41612
|
], ParseInfo);
|
|
41315
41613
|
exports.ParseInfo = ParseInfo;
|
|
41316
41614
|
|
|
41317
|
-
},{"../Decorators":
|
|
41615
|
+
},{"../Decorators":194}],268:[function(require,module,exports){
|
|
41318
41616
|
"use strict";
|
|
41319
41617
|
/*!
|
|
41320
41618
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43587,7 +43885,7 @@ ParserATNSimulator = __decorate([
|
|
|
43587
43885
|
], ParserATNSimulator);
|
|
43588
43886
|
exports.ParserATNSimulator = ParserATNSimulator;
|
|
43589
43887
|
|
|
43590
|
-
},{"../Decorators":
|
|
43888
|
+
},{"../Decorators":194,"../IntStream":200,"../NoViableAltException":206,"../ParserRuleContext":210,"../Token":219,"../VocabularyImpl":225,"../dfa/AcceptStateInfo":291,"../dfa/DFAState":294,"../misc/Array2DHashSet":298,"../misc/Arrays":300,"../misc/BitSet":301,"../misc/IntegerList":304,"../misc/Interval":306,"../misc/ObjectEqualityComparator":310,"./ATN":227,"./ATNConfig":228,"./ATNConfigSet":229,"./ATNSimulator":232,"./ATNStateType":234,"./ActionTransition":236,"./AtomTransition":238,"./ConflictInfo":243,"./DecisionState":247,"./NotSetTransition":265,"./PredictionContext":274,"./PredictionContextCache":275,"./PredictionMode":276,"./RuleStopState":280,"./RuleTransition":281,"./SemanticContext":282,"./SetTransition":283,"./SimulatorState":284,"assert":337}],269:[function(require,module,exports){
|
|
43591
43889
|
"use strict";
|
|
43592
43890
|
/*!
|
|
43593
43891
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43620,7 +43918,7 @@ __decorate([
|
|
|
43620
43918
|
], PlusBlockStartState.prototype, "stateType", null);
|
|
43621
43919
|
exports.PlusBlockStartState = PlusBlockStartState;
|
|
43622
43920
|
|
|
43623
|
-
},{"../Decorators":
|
|
43921
|
+
},{"../Decorators":194,"./ATNStateType":234,"./BlockStartState":242}],270:[function(require,module,exports){
|
|
43624
43922
|
"use strict";
|
|
43625
43923
|
/*!
|
|
43626
43924
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43651,7 +43949,7 @@ __decorate([
|
|
|
43651
43949
|
], PlusLoopbackState.prototype, "stateType", null);
|
|
43652
43950
|
exports.PlusLoopbackState = PlusLoopbackState;
|
|
43653
43951
|
|
|
43654
|
-
},{"../Decorators":
|
|
43952
|
+
},{"../Decorators":194,"./ATNStateType":234,"./DecisionState":247}],271:[function(require,module,exports){
|
|
43655
43953
|
"use strict";
|
|
43656
43954
|
/*!
|
|
43657
43955
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43714,7 +44012,7 @@ PrecedencePredicateTransition = __decorate([
|
|
|
43714
44012
|
], PrecedencePredicateTransition);
|
|
43715
44013
|
exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
|
|
43716
44014
|
|
|
43717
|
-
},{"../Decorators":
|
|
44015
|
+
},{"../Decorators":194,"./AbstractPredicateTransition":235,"./SemanticContext":282}],272:[function(require,module,exports){
|
|
43718
44016
|
"use strict";
|
|
43719
44017
|
/*!
|
|
43720
44018
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43777,7 +44075,7 @@ PredicateEvalInfo = __decorate([
|
|
|
43777
44075
|
], PredicateEvalInfo);
|
|
43778
44076
|
exports.PredicateEvalInfo = PredicateEvalInfo;
|
|
43779
44077
|
|
|
43780
|
-
},{"../Decorators":
|
|
44078
|
+
},{"../Decorators":194,"./DecisionEventInfo":245}],273:[function(require,module,exports){
|
|
43781
44079
|
"use strict";
|
|
43782
44080
|
/*!
|
|
43783
44081
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43843,7 +44141,7 @@ PredicateTransition = __decorate([
|
|
|
43843
44141
|
], PredicateTransition);
|
|
43844
44142
|
exports.PredicateTransition = PredicateTransition;
|
|
43845
44143
|
|
|
43846
|
-
},{"../Decorators":
|
|
44144
|
+
},{"../Decorators":194,"./AbstractPredicateTransition":235,"./SemanticContext":282}],274:[function(require,module,exports){
|
|
43847
44145
|
"use strict";
|
|
43848
44146
|
/*!
|
|
43849
44147
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44534,7 +44832,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
|
|
|
44534
44832
|
PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
|
|
44535
44833
|
})(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
|
|
44536
44834
|
|
|
44537
|
-
},{"../Decorators":
|
|
44835
|
+
},{"../Decorators":194,"../misc/Array2DHashMap":297,"../misc/Array2DHashSet":298,"../misc/Arrays":300,"../misc/MurmurHash":309,"./PredictionContextCache":275,"assert":337}],275:[function(require,module,exports){
|
|
44538
44836
|
"use strict";
|
|
44539
44837
|
/*!
|
|
44540
44838
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44675,7 +44973,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
|
|
|
44675
44973
|
PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
|
|
44676
44974
|
})(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
|
|
44677
44975
|
|
|
44678
|
-
},{"../Decorators":
|
|
44976
|
+
},{"../Decorators":194,"../misc/Array2DHashMap":297,"../misc/ObjectEqualityComparator":310,"./PredictionContext":274,"assert":337}],276:[function(require,module,exports){
|
|
44679
44977
|
"use strict";
|
|
44680
44978
|
/*!
|
|
44681
44979
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44836,7 +45134,7 @@ var PredictionMode;
|
|
|
44836
45134
|
PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
|
|
44837
45135
|
})(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
|
|
44838
45136
|
|
|
44839
|
-
},{"../Decorators":
|
|
45137
|
+
},{"../Decorators":194,"../misc/Array2DHashMap":297,"../misc/MurmurHash":309,"./RuleStopState":280}],277:[function(require,module,exports){
|
|
44840
45138
|
(function (process){(function (){
|
|
44841
45139
|
"use strict";
|
|
44842
45140
|
/*!
|
|
@@ -45105,7 +45403,7 @@ __decorate([
|
|
|
45105
45403
|
exports.ProfilingATNSimulator = ProfilingATNSimulator;
|
|
45106
45404
|
|
|
45107
45405
|
}).call(this)}).call(this,require('_process'))
|
|
45108
|
-
},{"../Decorators":
|
|
45406
|
+
},{"../Decorators":194,"./ATN":227,"./ATNSimulator":232,"./AmbiguityInfo":237,"./ContextSensitivityInfo":244,"./DecisionInfo":246,"./ErrorInfo":249,"./LookaheadEventInfo":263,"./ParserATNSimulator":268,"./PredicateEvalInfo":272,"./SemanticContext":282,"./SimulatorState":284,"_process":385}],278:[function(require,module,exports){
|
|
45109
45407
|
"use strict";
|
|
45110
45408
|
/*!
|
|
45111
45409
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45163,7 +45461,7 @@ RangeTransition = __decorate([
|
|
|
45163
45461
|
], RangeTransition);
|
|
45164
45462
|
exports.RangeTransition = RangeTransition;
|
|
45165
45463
|
|
|
45166
|
-
},{"../Decorators":
|
|
45464
|
+
},{"../Decorators":194,"../misc/IntervalSet":307,"./Transition":289}],279:[function(require,module,exports){
|
|
45167
45465
|
"use strict";
|
|
45168
45466
|
/*!
|
|
45169
45467
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45196,7 +45494,7 @@ __decorate([
|
|
|
45196
45494
|
], RuleStartState.prototype, "stateType", null);
|
|
45197
45495
|
exports.RuleStartState = RuleStartState;
|
|
45198
45496
|
|
|
45199
|
-
},{"../Decorators":
|
|
45497
|
+
},{"../Decorators":194,"./ATNState":233,"./ATNStateType":234}],280:[function(require,module,exports){
|
|
45200
45498
|
"use strict";
|
|
45201
45499
|
/*!
|
|
45202
45500
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45235,7 +45533,7 @@ __decorate([
|
|
|
45235
45533
|
], RuleStopState.prototype, "stateType", null);
|
|
45236
45534
|
exports.RuleStopState = RuleStopState;
|
|
45237
45535
|
|
|
45238
|
-
},{"../Decorators":
|
|
45536
|
+
},{"../Decorators":194,"./ATNState":233,"./ATNStateType":234}],281:[function(require,module,exports){
|
|
45239
45537
|
"use strict";
|
|
45240
45538
|
/*!
|
|
45241
45539
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45291,7 +45589,7 @@ RuleTransition = __decorate([
|
|
|
45291
45589
|
], RuleTransition);
|
|
45292
45590
|
exports.RuleTransition = RuleTransition;
|
|
45293
45591
|
|
|
45294
|
-
},{"../Decorators":
|
|
45592
|
+
},{"../Decorators":194,"./Transition":289}],282:[function(require,module,exports){
|
|
45295
45593
|
"use strict";
|
|
45296
45594
|
/*!
|
|
45297
45595
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45771,7 +46069,7 @@ exports.SemanticContext = SemanticContext;
|
|
|
45771
46069
|
SemanticContext.OR = OR;
|
|
45772
46070
|
})(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
|
|
45773
46071
|
|
|
45774
|
-
},{"../Decorators":
|
|
46072
|
+
},{"../Decorators":194,"../misc/Array2DHashSet":298,"../misc/ArrayEqualityComparator":299,"../misc/MurmurHash":309,"../misc/ObjectEqualityComparator":310,"../misc/Utils":313}],283:[function(require,module,exports){
|
|
45775
46073
|
"use strict";
|
|
45776
46074
|
/*!
|
|
45777
46075
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45837,7 +46135,7 @@ SetTransition = __decorate([
|
|
|
45837
46135
|
], SetTransition);
|
|
45838
46136
|
exports.SetTransition = SetTransition;
|
|
45839
46137
|
|
|
45840
|
-
},{"../Decorators":
|
|
46138
|
+
},{"../Decorators":194,"../Token":219,"../misc/IntervalSet":307,"./Transition":289}],284:[function(require,module,exports){
|
|
45841
46139
|
"use strict";
|
|
45842
46140
|
/*!
|
|
45843
46141
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45873,7 +46171,7 @@ SimulatorState = __decorate([
|
|
|
45873
46171
|
], SimulatorState);
|
|
45874
46172
|
exports.SimulatorState = SimulatorState;
|
|
45875
46173
|
|
|
45876
|
-
},{"../Decorators":
|
|
46174
|
+
},{"../Decorators":194,"../ParserRuleContext":210}],285:[function(require,module,exports){
|
|
45877
46175
|
"use strict";
|
|
45878
46176
|
/*!
|
|
45879
46177
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45901,7 +46199,7 @@ __decorate([
|
|
|
45901
46199
|
], StarBlockStartState.prototype, "stateType", null);
|
|
45902
46200
|
exports.StarBlockStartState = StarBlockStartState;
|
|
45903
46201
|
|
|
45904
|
-
},{"../Decorators":
|
|
46202
|
+
},{"../Decorators":194,"./ATNStateType":234,"./BlockStartState":242}],286:[function(require,module,exports){
|
|
45905
46203
|
"use strict";
|
|
45906
46204
|
/*!
|
|
45907
46205
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45958,7 +46256,7 @@ __decorate([
|
|
|
45958
46256
|
], StarLoopEntryState.prototype, "stateType", null);
|
|
45959
46257
|
exports.StarLoopEntryState = StarLoopEntryState;
|
|
45960
46258
|
|
|
45961
|
-
},{"../Decorators":
|
|
46259
|
+
},{"../Decorators":194,"../misc/BitSet":301,"./ATNStateType":234,"./DecisionState":247}],287:[function(require,module,exports){
|
|
45962
46260
|
"use strict";
|
|
45963
46261
|
/*!
|
|
45964
46262
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45989,7 +46287,7 @@ __decorate([
|
|
|
45989
46287
|
], StarLoopbackState.prototype, "stateType", null);
|
|
45990
46288
|
exports.StarLoopbackState = StarLoopbackState;
|
|
45991
46289
|
|
|
45992
|
-
},{"../Decorators":
|
|
46290
|
+
},{"../Decorators":194,"./ATNState":233,"./ATNStateType":234}],288:[function(require,module,exports){
|
|
45993
46291
|
"use strict";
|
|
45994
46292
|
/*!
|
|
45995
46293
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46018,7 +46316,7 @@ __decorate([
|
|
|
46018
46316
|
], TokensStartState.prototype, "stateType", null);
|
|
46019
46317
|
exports.TokensStartState = TokensStartState;
|
|
46020
46318
|
|
|
46021
|
-
},{"../Decorators":
|
|
46319
|
+
},{"../Decorators":194,"./ATNStateType":234,"./DecisionState":247}],289:[function(require,module,exports){
|
|
46022
46320
|
"use strict";
|
|
46023
46321
|
/*!
|
|
46024
46322
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46092,7 +46390,7 @@ Transition = __decorate([
|
|
|
46092
46390
|
], Transition);
|
|
46093
46391
|
exports.Transition = Transition;
|
|
46094
46392
|
|
|
46095
|
-
},{"../Decorators":
|
|
46393
|
+
},{"../Decorators":194}],290:[function(require,module,exports){
|
|
46096
46394
|
"use strict";
|
|
46097
46395
|
/*!
|
|
46098
46396
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46140,7 +46438,7 @@ WildcardTransition = __decorate([
|
|
|
46140
46438
|
], WildcardTransition);
|
|
46141
46439
|
exports.WildcardTransition = WildcardTransition;
|
|
46142
46440
|
|
|
46143
|
-
},{"../Decorators":
|
|
46441
|
+
},{"../Decorators":194,"./Transition":289}],291:[function(require,module,exports){
|
|
46144
46442
|
"use strict";
|
|
46145
46443
|
/*!
|
|
46146
46444
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46182,7 +46480,7 @@ class AcceptStateInfo {
|
|
|
46182
46480
|
}
|
|
46183
46481
|
exports.AcceptStateInfo = AcceptStateInfo;
|
|
46184
46482
|
|
|
46185
|
-
},{}],
|
|
46483
|
+
},{}],292:[function(require,module,exports){
|
|
46186
46484
|
"use strict";
|
|
46187
46485
|
/*!
|
|
46188
46486
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46357,7 +46655,7 @@ DFA = __decorate([
|
|
|
46357
46655
|
], DFA);
|
|
46358
46656
|
exports.DFA = DFA;
|
|
46359
46657
|
|
|
46360
|
-
},{"../Decorators":
|
|
46658
|
+
},{"../Decorators":194,"../VocabularyImpl":225,"../atn/ATNConfigSet":229,"../atn/StarLoopEntryState":286,"../misc/Array2DHashSet":298,"../misc/ObjectEqualityComparator":310,"./DFASerializer":293,"./DFAState":294,"./LexerDFASerializer":295}],293:[function(require,module,exports){
|
|
46361
46659
|
"use strict";
|
|
46362
46660
|
/*!
|
|
46363
46661
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46499,7 +46797,7 @@ __decorate([
|
|
|
46499
46797
|
], DFASerializer.prototype, "toString", null);
|
|
46500
46798
|
exports.DFASerializer = DFASerializer;
|
|
46501
46799
|
|
|
46502
|
-
},{"../Decorators":
|
|
46800
|
+
},{"../Decorators":194,"../Recognizer":214,"../VocabularyImpl":225,"../atn/ATNSimulator":232,"../atn/PredictionContext":274}],294:[function(require,module,exports){
|
|
46503
46801
|
"use strict";
|
|
46504
46802
|
/*!
|
|
46505
46803
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46730,7 +47028,7 @@ exports.DFAState = DFAState;
|
|
|
46730
47028
|
DFAState.PredPrediction = PredPrediction;
|
|
46731
47029
|
})(DFAState = exports.DFAState || (exports.DFAState = {}));
|
|
46732
47030
|
|
|
46733
|
-
},{"../Decorators":
|
|
47031
|
+
},{"../Decorators":194,"../atn/ATN":227,"../atn/PredictionContext":274,"../misc/BitSet":301,"../misc/MurmurHash":309,"assert":337}],295:[function(require,module,exports){
|
|
46734
47032
|
"use strict";
|
|
46735
47033
|
/*!
|
|
46736
47034
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46767,7 +47065,7 @@ LexerDFASerializer = __decorate([
|
|
|
46767
47065
|
], LexerDFASerializer);
|
|
46768
47066
|
exports.LexerDFASerializer = LexerDFASerializer;
|
|
46769
47067
|
|
|
46770
|
-
},{"../Decorators":
|
|
47068
|
+
},{"../Decorators":194,"../VocabularyImpl":225,"./DFASerializer":293}],296:[function(require,module,exports){
|
|
46771
47069
|
"use strict";
|
|
46772
47070
|
/*!
|
|
46773
47071
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46833,7 +47131,7 @@ __exportStar(require("./Vocabulary"), exports);
|
|
|
46833
47131
|
__exportStar(require("./VocabularyImpl"), exports);
|
|
46834
47132
|
__exportStar(require("./WritableToken"), exports);
|
|
46835
47133
|
|
|
46836
|
-
},{"./ANTLRErrorListener":
|
|
47134
|
+
},{"./ANTLRErrorListener":181,"./ANTLRErrorStrategy":182,"./ANTLRInputStream":183,"./BailErrorStrategy":184,"./BufferedTokenStream":185,"./CharStream":186,"./CharStreams":187,"./CodePointBuffer":188,"./CodePointCharStream":189,"./CommonToken":190,"./CommonTokenFactory":191,"./CommonTokenStream":192,"./ConsoleErrorListener":193,"./DefaultErrorStrategy":195,"./Dependents":196,"./DiagnosticErrorListener":197,"./FailedPredicateException":198,"./InputMismatchException":199,"./IntStream":200,"./InterpreterRuleContext":201,"./Lexer":202,"./LexerInterpreter":203,"./LexerNoViableAltException":204,"./ListTokenSource":205,"./NoViableAltException":206,"./Parser":207,"./ParserErrorListener":208,"./ParserInterpreter":209,"./ParserRuleContext":210,"./ProxyErrorListener":211,"./ProxyParserErrorListener":212,"./RecognitionException":213,"./Recognizer":214,"./RuleContext":215,"./RuleContextWithAltNum":216,"./RuleDependency":217,"./RuleVersion":218,"./Token":219,"./TokenFactory":220,"./TokenSource":221,"./TokenStream":222,"./TokenStreamRewriter":223,"./Vocabulary":224,"./VocabularyImpl":225,"./WritableToken":226}],297:[function(require,module,exports){
|
|
46837
47135
|
"use strict";
|
|
46838
47136
|
/*!
|
|
46839
47137
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46916,7 +47214,7 @@ class Array2DHashMap {
|
|
|
46916
47214
|
}
|
|
46917
47215
|
exports.Array2DHashMap = Array2DHashMap;
|
|
46918
47216
|
|
|
46919
|
-
},{"./Array2DHashSet":
|
|
47217
|
+
},{"./Array2DHashSet":298}],298:[function(require,module,exports){
|
|
46920
47218
|
"use strict";
|
|
46921
47219
|
/*!
|
|
46922
47220
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47283,7 +47581,7 @@ __decorate([
|
|
|
47283
47581
|
], Array2DHashSet.prototype, "createBuckets", null);
|
|
47284
47582
|
exports.Array2DHashSet = Array2DHashSet;
|
|
47285
47583
|
|
|
47286
|
-
},{"../Decorators":
|
|
47584
|
+
},{"../Decorators":194,"./DefaultEqualityComparator":303,"./MurmurHash":309,"assert":337}],299:[function(require,module,exports){
|
|
47287
47585
|
"use strict";
|
|
47288
47586
|
/*!
|
|
47289
47587
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47355,7 +47653,7 @@ __decorate([
|
|
|
47355
47653
|
], ArrayEqualityComparator.prototype, "equals", null);
|
|
47356
47654
|
exports.ArrayEqualityComparator = ArrayEqualityComparator;
|
|
47357
47655
|
|
|
47358
|
-
},{"../Decorators":
|
|
47656
|
+
},{"../Decorators":194,"./MurmurHash":309,"./ObjectEqualityComparator":310}],300:[function(require,module,exports){
|
|
47359
47657
|
"use strict";
|
|
47360
47658
|
/*!
|
|
47361
47659
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47425,7 +47723,7 @@ var Arrays;
|
|
|
47425
47723
|
Arrays.toString = toString;
|
|
47426
47724
|
})(Arrays = exports.Arrays || (exports.Arrays = {}));
|
|
47427
47725
|
|
|
47428
|
-
},{}],
|
|
47726
|
+
},{}],301:[function(require,module,exports){
|
|
47429
47727
|
"use strict";
|
|
47430
47728
|
/*!
|
|
47431
47729
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48097,7 +48395,7 @@ class BitSetIterator {
|
|
|
48097
48395
|
[Symbol.iterator]() { return this; }
|
|
48098
48396
|
}
|
|
48099
48397
|
|
|
48100
|
-
},{"./MurmurHash":
|
|
48398
|
+
},{"./MurmurHash":309,"util":390}],302:[function(require,module,exports){
|
|
48101
48399
|
"use strict";
|
|
48102
48400
|
/*!
|
|
48103
48401
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48118,7 +48416,7 @@ function isSupplementaryCodePoint(ch) {
|
|
|
48118
48416
|
}
|
|
48119
48417
|
exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
|
|
48120
48418
|
|
|
48121
|
-
},{}],
|
|
48419
|
+
},{}],303:[function(require,module,exports){
|
|
48122
48420
|
"use strict";
|
|
48123
48421
|
/*!
|
|
48124
48422
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48189,7 +48487,7 @@ __decorate([
|
|
|
48189
48487
|
], DefaultEqualityComparator.prototype, "equals", null);
|
|
48190
48488
|
exports.DefaultEqualityComparator = DefaultEqualityComparator;
|
|
48191
48489
|
|
|
48192
|
-
},{"../Decorators":
|
|
48490
|
+
},{"../Decorators":194,"./MurmurHash":309,"./ObjectEqualityComparator":310}],304:[function(require,module,exports){
|
|
48193
48491
|
"use strict";
|
|
48194
48492
|
/*!
|
|
48195
48493
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48483,7 +48781,7 @@ __decorate([
|
|
|
48483
48781
|
], IntegerList.prototype, "toString", null);
|
|
48484
48782
|
exports.IntegerList = IntegerList;
|
|
48485
48783
|
|
|
48486
|
-
},{"../Decorators":
|
|
48784
|
+
},{"../Decorators":194,"./Arrays":300}],305:[function(require,module,exports){
|
|
48487
48785
|
"use strict";
|
|
48488
48786
|
/*!
|
|
48489
48787
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48513,7 +48811,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
|
|
|
48513
48811
|
}
|
|
48514
48812
|
exports.IntegerStack = IntegerStack;
|
|
48515
48813
|
|
|
48516
|
-
},{"./IntegerList":
|
|
48814
|
+
},{"./IntegerList":304}],306:[function(require,module,exports){
|
|
48517
48815
|
"use strict";
|
|
48518
48816
|
/*!
|
|
48519
48817
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48656,7 +48954,7 @@ __decorate([
|
|
|
48656
48954
|
], Interval.prototype, "toString", null);
|
|
48657
48955
|
exports.Interval = Interval;
|
|
48658
48956
|
|
|
48659
|
-
},{"../Decorators":
|
|
48957
|
+
},{"../Decorators":194}],307:[function(require,module,exports){
|
|
48660
48958
|
"use strict";
|
|
48661
48959
|
/*!
|
|
48662
48960
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49302,7 +49600,7 @@ __decorate([
|
|
|
49302
49600
|
], IntervalSet, "subtract", null);
|
|
49303
49601
|
exports.IntervalSet = IntervalSet;
|
|
49304
49602
|
|
|
49305
|
-
},{"../Decorators":
|
|
49603
|
+
},{"../Decorators":194,"../Lexer":202,"../Token":219,"./ArrayEqualityComparator":299,"./IntegerList":304,"./Interval":306,"./MurmurHash":309}],308:[function(require,module,exports){
|
|
49306
49604
|
"use strict";
|
|
49307
49605
|
/*!
|
|
49308
49606
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49335,7 +49633,7 @@ class MultiMap extends Map {
|
|
|
49335
49633
|
}
|
|
49336
49634
|
exports.MultiMap = MultiMap;
|
|
49337
49635
|
|
|
49338
|
-
},{}],
|
|
49636
|
+
},{}],309:[function(require,module,exports){
|
|
49339
49637
|
"use strict";
|
|
49340
49638
|
/*!
|
|
49341
49639
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49450,7 +49748,7 @@ var MurmurHash;
|
|
|
49450
49748
|
}
|
|
49451
49749
|
})(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
|
|
49452
49750
|
|
|
49453
|
-
},{}],
|
|
49751
|
+
},{}],310:[function(require,module,exports){
|
|
49454
49752
|
"use strict";
|
|
49455
49753
|
/*!
|
|
49456
49754
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49509,7 +49807,7 @@ __decorate([
|
|
|
49509
49807
|
], ObjectEqualityComparator.prototype, "equals", null);
|
|
49510
49808
|
exports.ObjectEqualityComparator = ObjectEqualityComparator;
|
|
49511
49809
|
|
|
49512
|
-
},{"../Decorators":
|
|
49810
|
+
},{"../Decorators":194}],311:[function(require,module,exports){
|
|
49513
49811
|
"use strict";
|
|
49514
49812
|
/*!
|
|
49515
49813
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49538,7 +49836,7 @@ class ParseCancellationException extends Error {
|
|
|
49538
49836
|
}
|
|
49539
49837
|
exports.ParseCancellationException = ParseCancellationException;
|
|
49540
49838
|
|
|
49541
|
-
},{}],
|
|
49839
|
+
},{}],312:[function(require,module,exports){
|
|
49542
49840
|
"use strict";
|
|
49543
49841
|
/*!
|
|
49544
49842
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49592,7 +49890,7 @@ class UUID {
|
|
|
49592
49890
|
}
|
|
49593
49891
|
exports.UUID = UUID;
|
|
49594
49892
|
|
|
49595
|
-
},{"./MurmurHash":
|
|
49893
|
+
},{"./MurmurHash":309}],313:[function(require,module,exports){
|
|
49596
49894
|
"use strict";
|
|
49597
49895
|
/*!
|
|
49598
49896
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49767,7 +50065,7 @@ exports.toCharArray = toCharArray;
|
|
|
49767
50065
|
// return s;
|
|
49768
50066
|
// }
|
|
49769
50067
|
|
|
49770
|
-
},{}],
|
|
50068
|
+
},{}],314:[function(require,module,exports){
|
|
49771
50069
|
"use strict";
|
|
49772
50070
|
/*!
|
|
49773
50071
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49803,7 +50101,7 @@ __decorate([
|
|
|
49803
50101
|
], ErrorNode.prototype, "accept", null);
|
|
49804
50102
|
exports.ErrorNode = ErrorNode;
|
|
49805
50103
|
|
|
49806
|
-
},{"../Decorators":
|
|
50104
|
+
},{"../Decorators":194,"./TerminalNode":317}],315:[function(require,module,exports){
|
|
49807
50105
|
"use strict";
|
|
49808
50106
|
/*!
|
|
49809
50107
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49908,7 +50206,7 @@ exports.ParseTreeWalker = ParseTreeWalker;
|
|
|
49908
50206
|
ParseTreeWalker.DEFAULT = new ParseTreeWalker();
|
|
49909
50207
|
})(ParseTreeWalker = exports.ParseTreeWalker || (exports.ParseTreeWalker = {}));
|
|
49910
50208
|
|
|
49911
|
-
},{"./ErrorNode":
|
|
50209
|
+
},{"./ErrorNode":314,"./RuleNode":316,"./TerminalNode":317}],316:[function(require,module,exports){
|
|
49912
50210
|
"use strict";
|
|
49913
50211
|
/*!
|
|
49914
50212
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49920,7 +50218,7 @@ class RuleNode {
|
|
|
49920
50218
|
}
|
|
49921
50219
|
exports.RuleNode = RuleNode;
|
|
49922
50220
|
|
|
49923
|
-
},{}],
|
|
50221
|
+
},{}],317:[function(require,module,exports){
|
|
49924
50222
|
"use strict";
|
|
49925
50223
|
/*!
|
|
49926
50224
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50012,7 +50310,7 @@ __decorate([
|
|
|
50012
50310
|
], TerminalNode.prototype, "toString", null);
|
|
50013
50311
|
exports.TerminalNode = TerminalNode;
|
|
50014
50312
|
|
|
50015
|
-
},{"../Decorators":
|
|
50313
|
+
},{"../Decorators":194,"../Token":219,"../misc/Interval":306}],318:[function(require,module,exports){
|
|
50016
50314
|
"use strict";
|
|
50017
50315
|
/*!
|
|
50018
50316
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50256,7 +50554,7 @@ __decorate([
|
|
|
50256
50554
|
], Trees, "getRootOfSubtreeEnclosingRegion", null);
|
|
50257
50555
|
exports.Trees = Trees;
|
|
50258
50556
|
|
|
50259
|
-
},{"../CommonToken":
|
|
50557
|
+
},{"../CommonToken":190,"../Decorators":194,"../Parser":207,"../ParserRuleContext":210,"../Token":219,"../atn/ATN":227,"../misc/Utils":313,"./ErrorNode":314,"./RuleNode":316,"./TerminalNode":317}],319:[function(require,module,exports){
|
|
50260
50558
|
"use strict";
|
|
50261
50559
|
/*!
|
|
50262
50560
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50280,7 +50578,7 @@ class Chunk {
|
|
|
50280
50578
|
}
|
|
50281
50579
|
exports.Chunk = Chunk;
|
|
50282
50580
|
|
|
50283
|
-
},{}],
|
|
50581
|
+
},{}],320:[function(require,module,exports){
|
|
50284
50582
|
"use strict";
|
|
50285
50583
|
/*!
|
|
50286
50584
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50460,7 +50758,7 @@ ParseTreeMatch = __decorate([
|
|
|
50460
50758
|
], ParseTreeMatch);
|
|
50461
50759
|
exports.ParseTreeMatch = ParseTreeMatch;
|
|
50462
50760
|
|
|
50463
|
-
},{"../../Decorators":
|
|
50761
|
+
},{"../../Decorators":194}],321:[function(require,module,exports){
|
|
50464
50762
|
"use strict";
|
|
50465
50763
|
/*!
|
|
50466
50764
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50618,7 +50916,7 @@ ParseTreePattern = __decorate([
|
|
|
50618
50916
|
], ParseTreePattern);
|
|
50619
50917
|
exports.ParseTreePattern = ParseTreePattern;
|
|
50620
50918
|
|
|
50621
|
-
},{"../../Decorators":
|
|
50919
|
+
},{"../../Decorators":194,"../xpath/XPath":327}],322:[function(require,module,exports){
|
|
50622
50920
|
"use strict";
|
|
50623
50921
|
/*!
|
|
50624
50922
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51096,7 +51394,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
|
|
|
51096
51394
|
ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
|
|
51097
51395
|
})(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
|
|
51098
51396
|
|
|
51099
|
-
},{"../../BailErrorStrategy":
|
|
51397
|
+
},{"../../BailErrorStrategy":184,"../../CharStreams":187,"../../CommonTokenStream":192,"../../Decorators":194,"../../ListTokenSource":205,"../../ParserInterpreter":209,"../../ParserRuleContext":210,"../../RecognitionException":213,"../../Token":219,"../../misc/MultiMap":308,"../../misc/ParseCancellationException":311,"../RuleNode":316,"../TerminalNode":317,"./ParseTreeMatch":320,"./ParseTreePattern":321,"./RuleTagToken":323,"./TagChunk":324,"./TextChunk":325,"./TokenTagToken":326}],323:[function(require,module,exports){
|
|
51100
51398
|
"use strict";
|
|
51101
51399
|
/*!
|
|
51102
51400
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51294,7 +51592,7 @@ RuleTagToken = __decorate([
|
|
|
51294
51592
|
], RuleTagToken);
|
|
51295
51593
|
exports.RuleTagToken = RuleTagToken;
|
|
51296
51594
|
|
|
51297
|
-
},{"../../Decorators":
|
|
51595
|
+
},{"../../Decorators":194,"../../Token":219}],324:[function(require,module,exports){
|
|
51298
51596
|
"use strict";
|
|
51299
51597
|
/*!
|
|
51300
51598
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51381,7 +51679,7 @@ __decorate([
|
|
|
51381
51679
|
], TagChunk.prototype, "toString", null);
|
|
51382
51680
|
exports.TagChunk = TagChunk;
|
|
51383
51681
|
|
|
51384
|
-
},{"../../Decorators":
|
|
51682
|
+
},{"../../Decorators":194,"./Chunk":319}],325:[function(require,module,exports){
|
|
51385
51683
|
"use strict";
|
|
51386
51684
|
/*!
|
|
51387
51685
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51451,7 +51749,7 @@ TextChunk = __decorate([
|
|
|
51451
51749
|
], TextChunk);
|
|
51452
51750
|
exports.TextChunk = TextChunk;
|
|
51453
51751
|
|
|
51454
|
-
},{"../../Decorators":
|
|
51752
|
+
},{"../../Decorators":194,"./Chunk":319}],326:[function(require,module,exports){
|
|
51455
51753
|
"use strict";
|
|
51456
51754
|
/*!
|
|
51457
51755
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51546,7 +51844,7 @@ TokenTagToken = __decorate([
|
|
|
51546
51844
|
], TokenTagToken);
|
|
51547
51845
|
exports.TokenTagToken = TokenTagToken;
|
|
51548
51846
|
|
|
51549
|
-
},{"../../CommonToken":
|
|
51847
|
+
},{"../../CommonToken":190,"../../Decorators":194}],327:[function(require,module,exports){
|
|
51550
51848
|
"use strict";
|
|
51551
51849
|
/*!
|
|
51552
51850
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51743,7 +52041,7 @@ exports.XPath = XPath;
|
|
|
51743
52041
|
XPath.WILDCARD = "*"; // word not operator/separator
|
|
51744
52042
|
XPath.NOT = "!"; // word for invert operator
|
|
51745
52043
|
|
|
51746
|
-
},{"../../CharStreams":
|
|
52044
|
+
},{"../../CharStreams":187,"../../CommonTokenStream":192,"../../LexerNoViableAltException":204,"../../ParserRuleContext":210,"../../Token":219,"./XPathLexer":329,"./XPathLexerErrorListener":330,"./XPathRuleAnywhereElement":331,"./XPathRuleElement":332,"./XPathTokenAnywhereElement":333,"./XPathTokenElement":334,"./XPathWildcardAnywhereElement":335,"./XPathWildcardElement":336}],328:[function(require,module,exports){
|
|
51747
52045
|
"use strict";
|
|
51748
52046
|
/*!
|
|
51749
52047
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51778,7 +52076,7 @@ __decorate([
|
|
|
51778
52076
|
], XPathElement.prototype, "toString", null);
|
|
51779
52077
|
exports.XPathElement = XPathElement;
|
|
51780
52078
|
|
|
51781
|
-
},{"../../Decorators":
|
|
52079
|
+
},{"../../Decorators":194}],329:[function(require,module,exports){
|
|
51782
52080
|
"use strict";
|
|
51783
52081
|
// Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
51784
52082
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -52253,7 +52551,7 @@ XPathLexer._serializedATN = Utils.join([
|
|
|
52253
52551
|
XPathLexer._serializedATNSegment1,
|
|
52254
52552
|
], "");
|
|
52255
52553
|
|
|
52256
|
-
},{"../../Lexer":
|
|
52554
|
+
},{"../../Lexer":202,"../../VocabularyImpl":225,"../../atn/ATNDeserializer":231,"../../atn/LexerATNSimulator":252,"../../misc/Utils":313}],330:[function(require,module,exports){
|
|
52257
52555
|
"use strict";
|
|
52258
52556
|
/*!
|
|
52259
52557
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52278,7 +52576,7 @@ __decorate([
|
|
|
52278
52576
|
], XPathLexerErrorListener.prototype, "syntaxError", null);
|
|
52279
52577
|
exports.XPathLexerErrorListener = XPathLexerErrorListener;
|
|
52280
52578
|
|
|
52281
|
-
},{"../../Decorators":
|
|
52579
|
+
},{"../../Decorators":194}],331:[function(require,module,exports){
|
|
52282
52580
|
"use strict";
|
|
52283
52581
|
/*!
|
|
52284
52582
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52312,7 +52610,7 @@ __decorate([
|
|
|
52312
52610
|
], XPathRuleAnywhereElement.prototype, "evaluate", null);
|
|
52313
52611
|
exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
|
|
52314
52612
|
|
|
52315
|
-
},{"../../Decorators":
|
|
52613
|
+
},{"../../Decorators":194,"../Trees":318,"./XPathElement":328}],332:[function(require,module,exports){
|
|
52316
52614
|
"use strict";
|
|
52317
52615
|
/*!
|
|
52318
52616
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52355,7 +52653,7 @@ __decorate([
|
|
|
52355
52653
|
], XPathRuleElement.prototype, "evaluate", null);
|
|
52356
52654
|
exports.XPathRuleElement = XPathRuleElement;
|
|
52357
52655
|
|
|
52358
|
-
},{"../../Decorators":
|
|
52656
|
+
},{"../../Decorators":194,"../../ParserRuleContext":210,"../Trees":318,"./XPathElement":328}],333:[function(require,module,exports){
|
|
52359
52657
|
"use strict";
|
|
52360
52658
|
/*!
|
|
52361
52659
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52387,7 +52685,7 @@ __decorate([
|
|
|
52387
52685
|
], XPathTokenAnywhereElement.prototype, "evaluate", null);
|
|
52388
52686
|
exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
|
|
52389
52687
|
|
|
52390
|
-
},{"../../Decorators":
|
|
52688
|
+
},{"../../Decorators":194,"../Trees":318,"./XPathElement":328}],334:[function(require,module,exports){
|
|
52391
52689
|
"use strict";
|
|
52392
52690
|
/*!
|
|
52393
52691
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52430,7 +52728,7 @@ __decorate([
|
|
|
52430
52728
|
], XPathTokenElement.prototype, "evaluate", null);
|
|
52431
52729
|
exports.XPathTokenElement = XPathTokenElement;
|
|
52432
52730
|
|
|
52433
|
-
},{"../../Decorators":
|
|
52731
|
+
},{"../../Decorators":194,"../TerminalNode":317,"../Trees":318,"./XPathElement":328}],335:[function(require,module,exports){
|
|
52434
52732
|
"use strict";
|
|
52435
52733
|
/*!
|
|
52436
52734
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52466,7 +52764,7 @@ __decorate([
|
|
|
52466
52764
|
], XPathWildcardAnywhereElement.prototype, "evaluate", null);
|
|
52467
52765
|
exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
|
|
52468
52766
|
|
|
52469
|
-
},{"../../Decorators":
|
|
52767
|
+
},{"../../Decorators":194,"../Trees":318,"./XPath":327,"./XPathElement":328}],336:[function(require,module,exports){
|
|
52470
52768
|
"use strict";
|
|
52471
52769
|
/*!
|
|
52472
52770
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52506,7 +52804,7 @@ __decorate([
|
|
|
52506
52804
|
], XPathWildcardElement.prototype, "evaluate", null);
|
|
52507
52805
|
exports.XPathWildcardElement = XPathWildcardElement;
|
|
52508
52806
|
|
|
52509
|
-
},{"../../Decorators":
|
|
52807
|
+
},{"../../Decorators":194,"../Trees":318,"./XPath":327,"./XPathElement":328}],337:[function(require,module,exports){
|
|
52510
52808
|
(function (global){(function (){
|
|
52511
52809
|
'use strict';
|
|
52512
52810
|
|
|
@@ -53016,7 +53314,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
53016
53314
|
};
|
|
53017
53315
|
|
|
53018
53316
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
53019
|
-
},{"object.assign/polyfill":
|
|
53317
|
+
},{"object.assign/polyfill":383,"util/":340}],338:[function(require,module,exports){
|
|
53020
53318
|
if (typeof Object.create === 'function') {
|
|
53021
53319
|
// implementation from standard node.js 'util' module
|
|
53022
53320
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -53041,14 +53339,14 @@ if (typeof Object.create === 'function') {
|
|
|
53041
53339
|
}
|
|
53042
53340
|
}
|
|
53043
53341
|
|
|
53044
|
-
},{}],
|
|
53342
|
+
},{}],339:[function(require,module,exports){
|
|
53045
53343
|
module.exports = function isBuffer(arg) {
|
|
53046
53344
|
return arg && typeof arg === 'object'
|
|
53047
53345
|
&& typeof arg.copy === 'function'
|
|
53048
53346
|
&& typeof arg.fill === 'function'
|
|
53049
53347
|
&& typeof arg.readUInt8 === 'function';
|
|
53050
53348
|
}
|
|
53051
|
-
},{}],
|
|
53349
|
+
},{}],340:[function(require,module,exports){
|
|
53052
53350
|
(function (process,global){(function (){
|
|
53053
53351
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
53054
53352
|
//
|
|
@@ -53638,7 +53936,7 @@ function hasOwnProperty(obj, prop) {
|
|
|
53638
53936
|
}
|
|
53639
53937
|
|
|
53640
53938
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
53641
|
-
},{"./support/isBuffer":
|
|
53939
|
+
},{"./support/isBuffer":339,"_process":385,"inherits":338}],341:[function(require,module,exports){
|
|
53642
53940
|
(function (global){(function (){
|
|
53643
53941
|
'use strict';
|
|
53644
53942
|
|
|
@@ -53659,7 +53957,7 @@ module.exports = function availableTypedArrays() {
|
|
|
53659
53957
|
};
|
|
53660
53958
|
|
|
53661
53959
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
53662
|
-
},{"possible-typed-array-names":
|
|
53960
|
+
},{"possible-typed-array-names":384}],342:[function(require,module,exports){
|
|
53663
53961
|
(function (process,global){(function (){
|
|
53664
53962
|
module.exports = process.hrtime || hrtime
|
|
53665
53963
|
|
|
@@ -53690,7 +53988,7 @@ function hrtime(previousTimestamp){
|
|
|
53690
53988
|
return [seconds,nanoseconds]
|
|
53691
53989
|
}
|
|
53692
53990
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
53693
|
-
},{"_process":
|
|
53991
|
+
},{"_process":385}],343:[function(require,module,exports){
|
|
53694
53992
|
'use strict';
|
|
53695
53993
|
|
|
53696
53994
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -53707,7 +54005,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
53707
54005
|
return intrinsic;
|
|
53708
54006
|
};
|
|
53709
54007
|
|
|
53710
|
-
},{"./":
|
|
54008
|
+
},{"./":344,"get-intrinsic":347}],344:[function(require,module,exports){
|
|
53711
54009
|
'use strict';
|
|
53712
54010
|
|
|
53713
54011
|
var bind = require('function-bind');
|
|
@@ -53756,7 +54054,7 @@ if ($defineProperty) {
|
|
|
53756
54054
|
module.exports.apply = applyBind;
|
|
53757
54055
|
}
|
|
53758
54056
|
|
|
53759
|
-
},{"function-bind":
|
|
54057
|
+
},{"function-bind":346,"get-intrinsic":347}],345:[function(require,module,exports){
|
|
53760
54058
|
'use strict';
|
|
53761
54059
|
|
|
53762
54060
|
/* eslint no-invalid-this: 1 */
|
|
@@ -53810,14 +54108,14 @@ module.exports = function bind(that) {
|
|
|
53810
54108
|
return bound;
|
|
53811
54109
|
};
|
|
53812
54110
|
|
|
53813
|
-
},{}],
|
|
54111
|
+
},{}],346:[function(require,module,exports){
|
|
53814
54112
|
'use strict';
|
|
53815
54113
|
|
|
53816
54114
|
var implementation = require('./implementation');
|
|
53817
54115
|
|
|
53818
54116
|
module.exports = Function.prototype.bind || implementation;
|
|
53819
54117
|
|
|
53820
|
-
},{"./implementation":
|
|
54118
|
+
},{"./implementation":345}],347:[function(require,module,exports){
|
|
53821
54119
|
'use strict';
|
|
53822
54120
|
|
|
53823
54121
|
var undefined;
|
|
@@ -54163,7 +54461,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
54163
54461
|
return value;
|
|
54164
54462
|
};
|
|
54165
54463
|
|
|
54166
|
-
},{"function-bind":
|
|
54464
|
+
},{"function-bind":346,"has":371,"has-symbols":366}],348:[function(require,module,exports){
|
|
54167
54465
|
'use strict';
|
|
54168
54466
|
|
|
54169
54467
|
var $defineProperty = require('es-define-property');
|
|
@@ -54221,7 +54519,7 @@ module.exports = function defineDataProperty(
|
|
|
54221
54519
|
}
|
|
54222
54520
|
};
|
|
54223
54521
|
|
|
54224
|
-
},{"es-define-property":
|
|
54522
|
+
},{"es-define-property":349,"es-errors/syntax":354,"es-errors/type":355,"gopd":361}],349:[function(require,module,exports){
|
|
54225
54523
|
'use strict';
|
|
54226
54524
|
|
|
54227
54525
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -54239,49 +54537,49 @@ if ($defineProperty) {
|
|
|
54239
54537
|
|
|
54240
54538
|
module.exports = $defineProperty;
|
|
54241
54539
|
|
|
54242
|
-
},{"get-intrinsic":
|
|
54540
|
+
},{"get-intrinsic":360}],350:[function(require,module,exports){
|
|
54243
54541
|
'use strict';
|
|
54244
54542
|
|
|
54245
54543
|
/** @type {import('./eval')} */
|
|
54246
54544
|
module.exports = EvalError;
|
|
54247
54545
|
|
|
54248
|
-
},{}],
|
|
54546
|
+
},{}],351:[function(require,module,exports){
|
|
54249
54547
|
'use strict';
|
|
54250
54548
|
|
|
54251
54549
|
/** @type {import('.')} */
|
|
54252
54550
|
module.exports = Error;
|
|
54253
54551
|
|
|
54254
|
-
},{}],
|
|
54552
|
+
},{}],352:[function(require,module,exports){
|
|
54255
54553
|
'use strict';
|
|
54256
54554
|
|
|
54257
54555
|
/** @type {import('./range')} */
|
|
54258
54556
|
module.exports = RangeError;
|
|
54259
54557
|
|
|
54260
|
-
},{}],
|
|
54558
|
+
},{}],353:[function(require,module,exports){
|
|
54261
54559
|
'use strict';
|
|
54262
54560
|
|
|
54263
54561
|
/** @type {import('./ref')} */
|
|
54264
54562
|
module.exports = ReferenceError;
|
|
54265
54563
|
|
|
54266
|
-
},{}],
|
|
54564
|
+
},{}],354:[function(require,module,exports){
|
|
54267
54565
|
'use strict';
|
|
54268
54566
|
|
|
54269
54567
|
/** @type {import('./syntax')} */
|
|
54270
54568
|
module.exports = SyntaxError;
|
|
54271
54569
|
|
|
54272
|
-
},{}],
|
|
54570
|
+
},{}],355:[function(require,module,exports){
|
|
54273
54571
|
'use strict';
|
|
54274
54572
|
|
|
54275
54573
|
/** @type {import('./type')} */
|
|
54276
54574
|
module.exports = TypeError;
|
|
54277
54575
|
|
|
54278
|
-
},{}],
|
|
54576
|
+
},{}],356:[function(require,module,exports){
|
|
54279
54577
|
'use strict';
|
|
54280
54578
|
|
|
54281
54579
|
/** @type {import('./uri')} */
|
|
54282
54580
|
module.exports = URIError;
|
|
54283
54581
|
|
|
54284
|
-
},{}],
|
|
54582
|
+
},{}],357:[function(require,module,exports){
|
|
54285
54583
|
'use strict';
|
|
54286
54584
|
|
|
54287
54585
|
var isCallable = require('is-callable');
|
|
@@ -54345,7 +54643,7 @@ var forEach = function forEach(list, iterator, thisArg) {
|
|
|
54345
54643
|
|
|
54346
54644
|
module.exports = forEach;
|
|
54347
54645
|
|
|
54348
|
-
},{"is-callable":
|
|
54646
|
+
},{"is-callable":375}],358:[function(require,module,exports){
|
|
54349
54647
|
'use strict';
|
|
54350
54648
|
|
|
54351
54649
|
/* eslint no-invalid-this: 1 */
|
|
@@ -54431,9 +54729,9 @@ module.exports = function bind(that) {
|
|
|
54431
54729
|
return bound;
|
|
54432
54730
|
};
|
|
54433
54731
|
|
|
54434
|
-
},{}],
|
|
54435
|
-
arguments[4][
|
|
54436
|
-
},{"./implementation":
|
|
54732
|
+
},{}],359:[function(require,module,exports){
|
|
54733
|
+
arguments[4][346][0].apply(exports,arguments)
|
|
54734
|
+
},{"./implementation":358,"dup":346}],360:[function(require,module,exports){
|
|
54437
54735
|
'use strict';
|
|
54438
54736
|
|
|
54439
54737
|
var undefined;
|
|
@@ -54794,7 +55092,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
54794
55092
|
return value;
|
|
54795
55093
|
};
|
|
54796
55094
|
|
|
54797
|
-
},{"es-errors":
|
|
55095
|
+
},{"es-errors":351,"es-errors/eval":350,"es-errors/range":352,"es-errors/ref":353,"es-errors/syntax":354,"es-errors/type":355,"es-errors/uri":356,"function-bind":359,"has-proto":365,"has-symbols":366,"hasown":372}],361:[function(require,module,exports){
|
|
54798
55096
|
'use strict';
|
|
54799
55097
|
|
|
54800
55098
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -54812,13 +55110,13 @@ if ($gOPD) {
|
|
|
54812
55110
|
|
|
54813
55111
|
module.exports = $gOPD;
|
|
54814
55112
|
|
|
54815
|
-
},{"get-intrinsic":
|
|
54816
|
-
arguments[4][343][0].apply(exports,arguments)
|
|
54817
|
-
},{"dup":343}],361:[function(require,module,exports){
|
|
54818
|
-
arguments[4][344][0].apply(exports,arguments)
|
|
54819
|
-
},{"./implementation":360,"dup":344}],362:[function(require,module,exports){
|
|
55113
|
+
},{"get-intrinsic":364}],362:[function(require,module,exports){
|
|
54820
55114
|
arguments[4][345][0].apply(exports,arguments)
|
|
54821
|
-
},{"dup":345
|
|
55115
|
+
},{"dup":345}],363:[function(require,module,exports){
|
|
55116
|
+
arguments[4][346][0].apply(exports,arguments)
|
|
55117
|
+
},{"./implementation":362,"dup":346}],364:[function(require,module,exports){
|
|
55118
|
+
arguments[4][347][0].apply(exports,arguments)
|
|
55119
|
+
},{"dup":347,"function-bind":363,"has":371,"has-symbols":366}],365:[function(require,module,exports){
|
|
54822
55120
|
'use strict';
|
|
54823
55121
|
|
|
54824
55122
|
var test = {
|
|
@@ -54831,7 +55129,7 @@ module.exports = function hasProto() {
|
|
|
54831
55129
|
return { __proto__: test }.foo === test.foo && !({ __proto__: null } instanceof $Object);
|
|
54832
55130
|
};
|
|
54833
55131
|
|
|
54834
|
-
},{}],
|
|
55132
|
+
},{}],366:[function(require,module,exports){
|
|
54835
55133
|
'use strict';
|
|
54836
55134
|
|
|
54837
55135
|
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
|
@@ -54846,7 +55144,7 @@ module.exports = function hasNativeSymbols() {
|
|
|
54846
55144
|
return hasSymbolSham();
|
|
54847
55145
|
};
|
|
54848
55146
|
|
|
54849
|
-
},{"./shams":
|
|
55147
|
+
},{"./shams":367}],367:[function(require,module,exports){
|
|
54850
55148
|
'use strict';
|
|
54851
55149
|
|
|
54852
55150
|
/* eslint complexity: [2, 18], max-statements: [2, 33] */
|
|
@@ -54890,7 +55188,7 @@ module.exports = function hasSymbols() {
|
|
|
54890
55188
|
return true;
|
|
54891
55189
|
};
|
|
54892
55190
|
|
|
54893
|
-
},{}],
|
|
55191
|
+
},{}],368:[function(require,module,exports){
|
|
54894
55192
|
'use strict';
|
|
54895
55193
|
|
|
54896
55194
|
var hasSymbols = require('has-symbols/shams');
|
|
@@ -54899,18 +55197,18 @@ module.exports = function hasToStringTagShams() {
|
|
|
54899
55197
|
return hasSymbols() && !!Symbol.toStringTag;
|
|
54900
55198
|
};
|
|
54901
55199
|
|
|
54902
|
-
},{"has-symbols/shams":
|
|
54903
|
-
arguments[4][
|
|
54904
|
-
},{"dup":
|
|
54905
|
-
arguments[4][
|
|
54906
|
-
},{"./implementation":
|
|
55200
|
+
},{"has-symbols/shams":367}],369:[function(require,module,exports){
|
|
55201
|
+
arguments[4][345][0].apply(exports,arguments)
|
|
55202
|
+
},{"dup":345}],370:[function(require,module,exports){
|
|
55203
|
+
arguments[4][346][0].apply(exports,arguments)
|
|
55204
|
+
},{"./implementation":369,"dup":346}],371:[function(require,module,exports){
|
|
54907
55205
|
'use strict';
|
|
54908
55206
|
|
|
54909
55207
|
var bind = require('function-bind');
|
|
54910
55208
|
|
|
54911
55209
|
module.exports = bind.call(Function.call, Object.prototype.hasOwnProperty);
|
|
54912
55210
|
|
|
54913
|
-
},{"function-bind":
|
|
55211
|
+
},{"function-bind":370}],372:[function(require,module,exports){
|
|
54914
55212
|
'use strict';
|
|
54915
55213
|
|
|
54916
55214
|
var call = Function.prototype.call;
|
|
@@ -54920,7 +55218,7 @@ var bind = require('function-bind');
|
|
|
54920
55218
|
/** @type {import('.')} */
|
|
54921
55219
|
module.exports = bind.call(call, $hasOwn);
|
|
54922
55220
|
|
|
54923
|
-
},{"function-bind":
|
|
55221
|
+
},{"function-bind":359}],373:[function(require,module,exports){
|
|
54924
55222
|
if (typeof Object.create === 'function') {
|
|
54925
55223
|
// implementation from standard node.js 'util' module
|
|
54926
55224
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -54949,7 +55247,7 @@ if (typeof Object.create === 'function') {
|
|
|
54949
55247
|
}
|
|
54950
55248
|
}
|
|
54951
55249
|
|
|
54952
|
-
},{}],
|
|
55250
|
+
},{}],374:[function(require,module,exports){
|
|
54953
55251
|
'use strict';
|
|
54954
55252
|
|
|
54955
55253
|
var hasToStringTag = require('has-tostringtag/shams')();
|
|
@@ -54984,7 +55282,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
|
54984
55282
|
|
|
54985
55283
|
module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
54986
55284
|
|
|
54987
|
-
},{"call-bind/callBound":
|
|
55285
|
+
},{"call-bind/callBound":343,"has-tostringtag/shams":368}],375:[function(require,module,exports){
|
|
54988
55286
|
'use strict';
|
|
54989
55287
|
|
|
54990
55288
|
var fnToStr = Function.prototype.toString;
|
|
@@ -55087,7 +55385,7 @@ module.exports = reflectApply
|
|
|
55087
55385
|
return tryFunctionObject(value);
|
|
55088
55386
|
};
|
|
55089
55387
|
|
|
55090
|
-
},{}],
|
|
55388
|
+
},{}],376:[function(require,module,exports){
|
|
55091
55389
|
'use strict';
|
|
55092
55390
|
|
|
55093
55391
|
var toStr = Object.prototype.toString;
|
|
@@ -55127,7 +55425,7 @@ module.exports = function isGeneratorFunction(fn) {
|
|
|
55127
55425
|
return getProto(fn) === GeneratorFunction;
|
|
55128
55426
|
};
|
|
55129
55427
|
|
|
55130
|
-
},{"has-tostringtag/shams":
|
|
55428
|
+
},{"has-tostringtag/shams":368}],377:[function(require,module,exports){
|
|
55131
55429
|
'use strict';
|
|
55132
55430
|
|
|
55133
55431
|
var whichTypedArray = require('which-typed-array');
|
|
@@ -55137,7 +55435,7 @@ module.exports = function isTypedArray(value) {
|
|
|
55137
55435
|
return !!whichTypedArray(value);
|
|
55138
55436
|
};
|
|
55139
55437
|
|
|
55140
|
-
},{"which-typed-array":
|
|
55438
|
+
},{"which-typed-array":391}],378:[function(require,module,exports){
|
|
55141
55439
|
(function (global){(function (){
|
|
55142
55440
|
/**
|
|
55143
55441
|
* @license
|
|
@@ -72350,7 +72648,7 @@ module.exports = function isTypedArray(value) {
|
|
|
72350
72648
|
}.call(this));
|
|
72351
72649
|
|
|
72352
72650
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
72353
|
-
},{}],
|
|
72651
|
+
},{}],379:[function(require,module,exports){
|
|
72354
72652
|
'use strict';
|
|
72355
72653
|
|
|
72356
72654
|
var keysShim;
|
|
@@ -72474,7 +72772,7 @@ if (!Object.keys) {
|
|
|
72474
72772
|
}
|
|
72475
72773
|
module.exports = keysShim;
|
|
72476
72774
|
|
|
72477
|
-
},{"./isArguments":
|
|
72775
|
+
},{"./isArguments":381}],380:[function(require,module,exports){
|
|
72478
72776
|
'use strict';
|
|
72479
72777
|
|
|
72480
72778
|
var slice = Array.prototype.slice;
|
|
@@ -72508,7 +72806,7 @@ keysShim.shim = function shimObjectKeys() {
|
|
|
72508
72806
|
|
|
72509
72807
|
module.exports = keysShim;
|
|
72510
72808
|
|
|
72511
|
-
},{"./implementation":
|
|
72809
|
+
},{"./implementation":379,"./isArguments":381}],381:[function(require,module,exports){
|
|
72512
72810
|
'use strict';
|
|
72513
72811
|
|
|
72514
72812
|
var toStr = Object.prototype.toString;
|
|
@@ -72527,7 +72825,7 @@ module.exports = function isArguments(value) {
|
|
|
72527
72825
|
return isArgs;
|
|
72528
72826
|
};
|
|
72529
72827
|
|
|
72530
|
-
},{}],
|
|
72828
|
+
},{}],382:[function(require,module,exports){
|
|
72531
72829
|
'use strict';
|
|
72532
72830
|
|
|
72533
72831
|
// modified from https://github.com/es-shims/es6-shim
|
|
@@ -72575,7 +72873,7 @@ module.exports = function assign(target, source1) {
|
|
|
72575
72873
|
return to; // step 4
|
|
72576
72874
|
};
|
|
72577
72875
|
|
|
72578
|
-
},{"call-bind/callBound":
|
|
72876
|
+
},{"call-bind/callBound":343,"has-symbols/shams":367,"object-keys":380}],383:[function(require,module,exports){
|
|
72579
72877
|
'use strict';
|
|
72580
72878
|
|
|
72581
72879
|
var implementation = require('./implementation');
|
|
@@ -72632,7 +72930,7 @@ module.exports = function getPolyfill() {
|
|
|
72632
72930
|
return Object.assign;
|
|
72633
72931
|
};
|
|
72634
72932
|
|
|
72635
|
-
},{"./implementation":
|
|
72933
|
+
},{"./implementation":382}],384:[function(require,module,exports){
|
|
72636
72934
|
'use strict';
|
|
72637
72935
|
|
|
72638
72936
|
/** @type {import('.')} */
|
|
@@ -72650,7 +72948,7 @@ module.exports = [
|
|
|
72650
72948
|
'BigUint64Array'
|
|
72651
72949
|
];
|
|
72652
72950
|
|
|
72653
|
-
},{}],
|
|
72951
|
+
},{}],385:[function(require,module,exports){
|
|
72654
72952
|
// shim for using process in browser
|
|
72655
72953
|
var process = module.exports = {};
|
|
72656
72954
|
|
|
@@ -72836,7 +73134,7 @@ process.chdir = function (dir) {
|
|
|
72836
73134
|
};
|
|
72837
73135
|
process.umask = function() { return 0; };
|
|
72838
73136
|
|
|
72839
|
-
},{}],
|
|
73137
|
+
},{}],386:[function(require,module,exports){
|
|
72840
73138
|
'use strict';
|
|
72841
73139
|
|
|
72842
73140
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -72880,7 +73178,7 @@ module.exports = function setFunctionLength(fn, length) {
|
|
|
72880
73178
|
return fn;
|
|
72881
73179
|
};
|
|
72882
73180
|
|
|
72883
|
-
},{"define-data-property":
|
|
73181
|
+
},{"define-data-property":348,"es-errors/type":355,"get-intrinsic":360,"gopd":361,"has-property-descriptors":387}],387:[function(require,module,exports){
|
|
72884
73182
|
'use strict';
|
|
72885
73183
|
|
|
72886
73184
|
var $defineProperty = require('es-define-property');
|
|
@@ -72904,9 +73202,9 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
|
|
|
72904
73202
|
|
|
72905
73203
|
module.exports = hasPropertyDescriptors;
|
|
72906
73204
|
|
|
72907
|
-
},{"es-define-property":
|
|
72908
|
-
arguments[4][
|
|
72909
|
-
},{"dup":
|
|
73205
|
+
},{"es-define-property":349}],388:[function(require,module,exports){
|
|
73206
|
+
arguments[4][339][0].apply(exports,arguments)
|
|
73207
|
+
},{"dup":339}],389:[function(require,module,exports){
|
|
72910
73208
|
// Currently in sync with Node.js lib/internal/util/types.js
|
|
72911
73209
|
// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
|
|
72912
73210
|
|
|
@@ -73242,7 +73540,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
|
|
|
73242
73540
|
});
|
|
73243
73541
|
});
|
|
73244
73542
|
|
|
73245
|
-
},{"is-arguments":
|
|
73543
|
+
},{"is-arguments":374,"is-generator-function":376,"is-typed-array":377,"which-typed-array":391}],390:[function(require,module,exports){
|
|
73246
73544
|
(function (process){(function (){
|
|
73247
73545
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
73248
73546
|
//
|
|
@@ -73961,7 +74259,7 @@ function callbackify(original) {
|
|
|
73961
74259
|
exports.callbackify = callbackify;
|
|
73962
74260
|
|
|
73963
74261
|
}).call(this)}).call(this,require('_process'))
|
|
73964
|
-
},{"./support/isBuffer":
|
|
74262
|
+
},{"./support/isBuffer":388,"./support/types":389,"_process":385,"inherits":373}],391:[function(require,module,exports){
|
|
73965
74263
|
(function (global){(function (){
|
|
73966
74264
|
'use strict';
|
|
73967
74265
|
|
|
@@ -74081,9 +74379,9 @@ module.exports = function whichTypedArray(value) {
|
|
|
74081
74379
|
};
|
|
74082
74380
|
|
|
74083
74381
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
74084
|
-
},{"available-typed-arrays":
|
|
74085
|
-
arguments[4][
|
|
74086
|
-
},{"./":
|
|
74382
|
+
},{"available-typed-arrays":341,"call-bind":393,"call-bind/callBound":392,"for-each":357,"gopd":361,"has-tostringtag/shams":394}],392:[function(require,module,exports){
|
|
74383
|
+
arguments[4][343][0].apply(exports,arguments)
|
|
74384
|
+
},{"./":393,"dup":343,"get-intrinsic":360}],393:[function(require,module,exports){
|
|
74087
74385
|
'use strict';
|
|
74088
74386
|
|
|
74089
74387
|
var bind = require('function-bind');
|
|
@@ -74120,7 +74418,7 @@ if ($defineProperty) {
|
|
|
74120
74418
|
module.exports.apply = applyBind;
|
|
74121
74419
|
}
|
|
74122
74420
|
|
|
74123
|
-
},{"es-define-property":
|
|
74421
|
+
},{"es-define-property":349,"es-errors/type":355,"function-bind":359,"get-intrinsic":360,"set-function-length":386}],394:[function(require,module,exports){
|
|
74124
74422
|
'use strict';
|
|
74125
74423
|
|
|
74126
74424
|
var hasSymbols = require('has-symbols/shams');
|
|
@@ -74130,5 +74428,5 @@ module.exports = function hasToStringTagShams() {
|
|
|
74130
74428
|
return hasSymbols() && !!Symbol.toStringTag;
|
|
74131
74429
|
};
|
|
74132
74430
|
|
|
74133
|
-
},{"has-symbols/shams":
|
|
74431
|
+
},{"has-symbols/shams":367}]},{},[104])(104)
|
|
74134
74432
|
});
|