@designliquido/delegua 0.39.0 → 0.39.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/avaliador-sintatico/avaliador-sintatico.d.ts +6 -1
- package/avaliador-sintatico/avaliador-sintatico.d.ts.map +1 -1
- package/avaliador-sintatico/avaliador-sintatico.js +207 -120
- package/avaliador-sintatico/avaliador-sintatico.js.map +1 -1
- package/bin/package.json +1 -1
- package/construtos/acesso-propriedade.d.ts +1 -0
- package/construtos/acesso-propriedade.d.ts.map +1 -1
- package/construtos/acesso-propriedade.js +7 -0
- package/construtos/acesso-propriedade.js.map +1 -1
- package/construtos/componente-linguagem.d.ts +15 -0
- package/construtos/componente-linguagem.d.ts.map +1 -0
- package/construtos/componente-linguagem.js +19 -0
- package/construtos/componente-linguagem.js.map +1 -0
- package/construtos/dicionario.d.ts +1 -0
- package/construtos/dicionario.d.ts.map +1 -1
- package/construtos/dicionario.js +1 -0
- package/construtos/dicionario.js.map +1 -1
- package/construtos/index.d.ts +2 -1
- package/construtos/index.d.ts.map +1 -1
- package/construtos/index.js +2 -1
- package/construtos/index.js.map +1 -1
- package/construtos/tipo-de.d.ts +6 -2
- package/construtos/tipo-de.d.ts.map +1 -1
- package/construtos/tipo-de.js +4 -0
- package/construtos/tipo-de.js.map +1 -1
- package/interpretador/interpretador-base.d.ts.map +1 -1
- package/interpretador/interpretador-base.js +3 -14
- package/interpretador/interpretador-base.js.map +1 -1
- package/interpretador/interpretador.d.ts +2 -1
- package/interpretador/interpretador.d.ts.map +1 -1
- package/interpretador/interpretador.js +39 -0
- package/interpretador/interpretador.js.map +1 -1
- package/package.json +1 -1
- package/tradutores/tradutor-python.d.ts.map +1 -1
- package/tradutores/tradutor-python.js +7 -2
- package/tradutores/tradutor-python.js.map +1 -1
- package/umd/delegua.js +655 -502
package/umd/delegua.js
CHANGED
|
@@ -231,7 +231,7 @@ class AvaliadorSintaticoBase {
|
|
|
231
231
|
}
|
|
232
232
|
exports.AvaliadorSintaticoBase = AvaliadorSintaticoBase;
|
|
233
233
|
|
|
234
|
-
},{"../construtos":
|
|
234
|
+
},{"../construtos":44,"../declaracoes":82,"../tipos-de-simbolos/comum":163,"./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 };
|
|
@@ -239,8 +239,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
239
239
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
240
240
|
exports.AvaliadorSintatico = void 0;
|
|
241
241
|
const browser_process_hrtime_1 = __importDefault(require("browser-process-hrtime"));
|
|
242
|
-
const delegua_1 = __importDefault(require("../tipos-de-dados/delegua"));
|
|
243
|
-
const delegua_2 = __importDefault(require("../tipos-de-simbolos/delegua"));
|
|
244
242
|
const construtos_1 = require("../construtos");
|
|
245
243
|
const erro_avaliador_sintatico_1 = require("./erro-avaliador-sintatico");
|
|
246
244
|
const tuplas_1 = require("../construtos/tuplas");
|
|
@@ -250,6 +248,9 @@ const avaliador_sintatico_base_1 = require("./avaliador-sintatico-base");
|
|
|
250
248
|
const inferenciador_1 = require("../inferenciador");
|
|
251
249
|
const pilha_escopos_1 = require("./pilha-escopos");
|
|
252
250
|
const informacao_escopo_1 = require("./informacao-escopo");
|
|
251
|
+
const delegua_1 = __importDefault(require("../tipos-de-dados/delegua"));
|
|
252
|
+
const delegua_2 = __importDefault(require("../tipos-de-simbolos/delegua"));
|
|
253
|
+
const primitivas_dicionario_1 = __importDefault(require("../bibliotecas/primitivas-dicionario"));
|
|
253
254
|
const primitivas_numero_1 = __importDefault(require("../bibliotecas/primitivas-numero"));
|
|
254
255
|
const primitivas_texto_1 = __importDefault(require("../bibliotecas/primitivas-texto"));
|
|
255
256
|
const primitivas_vetor_1 = __importDefault(require("../bibliotecas/primitivas-vetor"));
|
|
@@ -298,28 +299,72 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
298
299
|
}
|
|
299
300
|
return tipoElementarResolvido;
|
|
300
301
|
}
|
|
302
|
+
obterChaveDicionario() {
|
|
303
|
+
switch (this.simbolos[this.atual].tipo) {
|
|
304
|
+
case delegua_2.default.NUMERO:
|
|
305
|
+
case delegua_2.default.TEXTO:
|
|
306
|
+
case delegua_2.default.FALSO:
|
|
307
|
+
case delegua_2.default.VERDADEIRO:
|
|
308
|
+
return this.primario();
|
|
309
|
+
case delegua_2.default.IDENTIFICADOR:
|
|
310
|
+
const simboloIdentificador = this.avancarEDevolverAnterior();
|
|
311
|
+
let tipoOperando;
|
|
312
|
+
if (simboloIdentificador.lexema in this.tiposDefinidosEmCodigo) {
|
|
313
|
+
tipoOperando = simboloIdentificador.lexema;
|
|
314
|
+
}
|
|
315
|
+
else {
|
|
316
|
+
tipoOperando = this.pilhaEscopos.obterTipoVariavelPorNome(simboloIdentificador.lexema);
|
|
317
|
+
}
|
|
318
|
+
if (!['numero', 'número', 'texto', 'lógico'].includes(tipoOperando)) {
|
|
319
|
+
throw this.erro(simboloIdentificador, `Tipo ${tipoOperando} de identificador ${simboloIdentificador.lexema} não é válido como chave de dicionário.`);
|
|
320
|
+
}
|
|
321
|
+
return new construtos_1.Variavel(this.hashArquivo, simboloIdentificador, tipoOperando);
|
|
322
|
+
case delegua_2.default.COLCHETE_ESQUERDO:
|
|
323
|
+
this.avancarEDevolverAnterior();
|
|
324
|
+
if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.PARENTESE_ESQUERDO)) {
|
|
325
|
+
return this.construtoTupla();
|
|
326
|
+
}
|
|
327
|
+
throw this.erro(this.simbolos[this.atual], `Esperado parêntese esquerdo após colchete esquerdo para definição de chave de dicionário. Atual: ${this.simbolos[this.atual].tipo}.`);
|
|
328
|
+
default:
|
|
329
|
+
throw this.erro(this.simbolos[this.atual], `Símbolo ${this.simbolos[this.atual].tipo} inesperado ou inválido como chave de dicionário.`);
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
construtoDicionario(simboloChaveEsquerda) {
|
|
333
|
+
this.avancarEDevolverAnterior();
|
|
334
|
+
const chaves = [];
|
|
335
|
+
const valores = [];
|
|
336
|
+
if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.CHAVE_DIREITA)) {
|
|
337
|
+
return new construtos_1.Dicionario(this.hashArquivo, Number(simboloChaveEsquerda.linha), [], []);
|
|
338
|
+
}
|
|
339
|
+
while (!this.verificarSeSimboloAtualEIgualA(delegua_2.default.CHAVE_DIREITA)) {
|
|
340
|
+
const chave = this.obterChaveDicionario();
|
|
341
|
+
this.consumir(delegua_2.default.DOIS_PONTOS, "Esperado ':' entre chave e valor.");
|
|
342
|
+
const valor = this.atribuir();
|
|
343
|
+
chaves.push(chave);
|
|
344
|
+
valores.push(valor);
|
|
345
|
+
if (this.simbolos[this.atual].tipo !== delegua_2.default.CHAVE_DIREITA) {
|
|
346
|
+
this.consumir(delegua_2.default.VIRGULA, 'Esperado vírgula antes da próxima expressão.');
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
return new construtos_1.Dicionario(this.hashArquivo, Number(simboloChaveEsquerda.linha), chaves, valores);
|
|
350
|
+
}
|
|
351
|
+
construtoTupla() {
|
|
352
|
+
const expressao = this.expressao();
|
|
353
|
+
const argumentos = [expressao];
|
|
354
|
+
while (this.simbolos[this.atual].tipo === delegua_2.default.VIRGULA) {
|
|
355
|
+
this.avancarEDevolverAnterior();
|
|
356
|
+
argumentos.push(this.expressao());
|
|
357
|
+
}
|
|
358
|
+
this.consumir(delegua_2.default.PARENTESE_DIREITO, "Esperado ')' após a expressão.");
|
|
359
|
+
this.consumir(delegua_2.default.COLCHETE_DIREITO, "Esperado ']' após a expressão.");
|
|
360
|
+
return new tuplas_1.SeletorTuplas(...argumentos);
|
|
361
|
+
}
|
|
301
362
|
primario() {
|
|
302
363
|
const simboloAtual = this.simbolos[this.atual];
|
|
303
364
|
let valores = [];
|
|
304
365
|
switch (simboloAtual.tipo) {
|
|
305
366
|
case delegua_2.default.CHAVE_ESQUERDA:
|
|
306
|
-
this.
|
|
307
|
-
const chaves = [];
|
|
308
|
-
valores = [];
|
|
309
|
-
if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.CHAVE_DIREITA)) {
|
|
310
|
-
return new construtos_1.Dicionario(this.hashArquivo, Number(simboloAtual.linha), [], []);
|
|
311
|
-
}
|
|
312
|
-
while (!this.verificarSeSimboloAtualEIgualA(delegua_2.default.CHAVE_DIREITA)) {
|
|
313
|
-
const chave = this.atribuir();
|
|
314
|
-
this.consumir(delegua_2.default.DOIS_PONTOS, "Esperado ':' entre chave e valor.");
|
|
315
|
-
const valor = this.atribuir();
|
|
316
|
-
chaves.push(chave);
|
|
317
|
-
valores.push(valor);
|
|
318
|
-
if (this.simbolos[this.atual].tipo !== delegua_2.default.CHAVE_DIREITA) {
|
|
319
|
-
this.consumir(delegua_2.default.VIRGULA, 'Esperado vírgula antes da próxima expressão.');
|
|
320
|
-
}
|
|
321
|
-
}
|
|
322
|
-
return new construtos_1.Dicionario(this.hashArquivo, Number(simboloAtual.linha), chaves, valores);
|
|
367
|
+
return this.construtoDicionario(simboloAtual);
|
|
323
368
|
case delegua_2.default.COLCHETE_ESQUERDO:
|
|
324
369
|
this.avancarEDevolverAnterior();
|
|
325
370
|
valores = [];
|
|
@@ -327,19 +372,10 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
327
372
|
return new construtos_1.Vetor(this.hashArquivo, Number(simboloAtual.linha), [], 0, 'qualquer');
|
|
328
373
|
}
|
|
329
374
|
while (!this.verificarSeSimboloAtualEIgualA(delegua_2.default.COLCHETE_DIREITO)) {
|
|
330
|
-
let valor = null;
|
|
331
375
|
if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.PARENTESE_ESQUERDO)) {
|
|
332
|
-
|
|
333
|
-
const argumentos = [expressao];
|
|
334
|
-
while (this.simbolos[this.atual].tipo === delegua_2.default.VIRGULA) {
|
|
335
|
-
this.avancarEDevolverAnterior();
|
|
336
|
-
argumentos.push(this.expressao());
|
|
337
|
-
}
|
|
338
|
-
this.consumir(delegua_2.default.PARENTESE_DIREITO, "Esperado ')' após a expressão.");
|
|
339
|
-
this.consumir(delegua_2.default.COLCHETE_DIREITO, "Esperado ']' após a expressão.");
|
|
340
|
-
return new tuplas_1.SeletorTuplas(...argumentos);
|
|
376
|
+
return this.construtoTupla();
|
|
341
377
|
}
|
|
342
|
-
valor = this.atribuir();
|
|
378
|
+
const valor = this.atribuir();
|
|
343
379
|
valores.push(valor);
|
|
344
380
|
if (this.simbolos[this.atual].tipo !== delegua_2.default.COLCHETE_DIREITO) {
|
|
345
381
|
this.consumir(delegua_2.default.VIRGULA, 'Esperado vírgula antes da próxima expressão.');
|
|
@@ -380,7 +416,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
380
416
|
return new construtos_1.Isto(this.hashArquivo, Number(simboloAtual.linha), simboloAtual);
|
|
381
417
|
case delegua_2.default.NULO:
|
|
382
418
|
this.avancarEDevolverAnterior();
|
|
383
|
-
return new construtos_1.Literal(this.hashArquivo, Number(simboloAtual.linha), null);
|
|
419
|
+
return new construtos_1.Literal(this.hashArquivo, Number(simboloAtual.linha), null, 'nulo');
|
|
384
420
|
case delegua_2.default.NUMERO:
|
|
385
421
|
case delegua_2.default.TEXTO:
|
|
386
422
|
const simboloNumeroTexto = this.avancarEDevolverAnterior();
|
|
@@ -412,14 +448,67 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
412
448
|
case delegua_2.default.TIPO:
|
|
413
449
|
this.avancarEDevolverAnterior();
|
|
414
450
|
this.consumir(delegua_2.default.DE, "Esperado 'de' após 'tipo'.");
|
|
415
|
-
let
|
|
451
|
+
let construto;
|
|
416
452
|
if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.ESCREVA, delegua_2.default.LEIA, delegua_2.default.FUNCAO, delegua_2.default.FUNÇÃO, delegua_2.default.SE, delegua_2.default.ENQUANTO, delegua_2.default.PARA, delegua_2.default.RETORNA, delegua_1.default.INTEIRO, delegua_1.default.TEXTO, delegua_1.default.VETOR, delegua_1.default.LOGICO, delegua_1.default.LÓGICO, delegua_1.default.VAZIO)) {
|
|
417
|
-
|
|
453
|
+
construto = new construtos_1.ComponenteLinguagem(this.hashArquivo, this.simboloAnterior());
|
|
418
454
|
}
|
|
419
455
|
else {
|
|
420
|
-
|
|
456
|
+
construto = this.expressao();
|
|
421
457
|
}
|
|
422
|
-
|
|
458
|
+
if (construto.constructor.name === 'AcessoMetodoOuPropriedade') {
|
|
459
|
+
const construtoTipado = construto;
|
|
460
|
+
switch (construtoTipado.tipo) {
|
|
461
|
+
case delegua_1.default.DICIONARIO:
|
|
462
|
+
case delegua_1.default.DICIONÁRIO:
|
|
463
|
+
if (!(construtoTipado.simbolo.lexema in primitivas_dicionario_1.default)) {
|
|
464
|
+
throw this.erro(construtoTipado.simbolo, `${construtoTipado.simbolo.lexema} não é uma primitiva de dicionário.`);
|
|
465
|
+
}
|
|
466
|
+
const primitivaDicionarioSelecionada = primitivas_dicionario_1.default[construtoTipado.simbolo.lexema];
|
|
467
|
+
construto = new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, primitivaDicionarioSelecionada.tipoRetorno);
|
|
468
|
+
break;
|
|
469
|
+
case delegua_1.default.INTEIRO:
|
|
470
|
+
case delegua_1.default.NUMERO:
|
|
471
|
+
case delegua_1.default.NÚMERO:
|
|
472
|
+
if (!(construtoTipado.simbolo.lexema in primitivas_numero_1.default)) {
|
|
473
|
+
throw this.erro(construtoTipado.simbolo, `${construtoTipado.simbolo.lexema} não é uma primitiva de número.`);
|
|
474
|
+
}
|
|
475
|
+
const primitivaNumeroSelecionada = primitivas_numero_1.default[construtoTipado.simbolo.lexema];
|
|
476
|
+
construto = new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, primitivaNumeroSelecionada.tipoRetorno);
|
|
477
|
+
break;
|
|
478
|
+
case delegua_1.default.TEXTO:
|
|
479
|
+
if (!(construtoTipado.simbolo.lexema in primitivas_texto_1.default)) {
|
|
480
|
+
throw this.erro(construtoTipado.simbolo, `${construtoTipado.simbolo.lexema} não é uma primitiva de texto.`);
|
|
481
|
+
}
|
|
482
|
+
const primitivaTextoSelecionada = primitivas_texto_1.default[construtoTipado.simbolo.lexema];
|
|
483
|
+
construto = new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, primitivaTextoSelecionada.tipoRetorno);
|
|
484
|
+
break;
|
|
485
|
+
case delegua_1.default.VETOR:
|
|
486
|
+
case delegua_1.default.VETOR_NUMERO:
|
|
487
|
+
case delegua_1.default.VETOR_NÚMERO:
|
|
488
|
+
case delegua_1.default.VETOR_TEXTO:
|
|
489
|
+
if (!(construtoTipado.simbolo.lexema in primitivas_vetor_1.default)) {
|
|
490
|
+
throw this.erro(construtoTipado.simbolo, `${construtoTipado.simbolo.lexema} não é uma primitiva de vetor.`);
|
|
491
|
+
}
|
|
492
|
+
const primitivaVetorSelecionada = primitivas_vetor_1.default[construtoTipado.simbolo.lexema];
|
|
493
|
+
construto = new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, primitivaVetorSelecionada.tipoRetorno);
|
|
494
|
+
break;
|
|
495
|
+
default:
|
|
496
|
+
if (construtoTipado.tipo in this.tiposDefinidosEmCodigo) {
|
|
497
|
+
const tipoCorrespondente = this.tiposDefinidosEmCodigo[construtoTipado.tipo];
|
|
498
|
+
const possivelMetodo = tipoCorrespondente.metodos.filter(m => m.simbolo.lexema === construtoTipado.simbolo.lexema);
|
|
499
|
+
if (possivelMetodo.length > 0) {
|
|
500
|
+
construto = new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, possivelMetodo[0].tipoRetorno);
|
|
501
|
+
break;
|
|
502
|
+
}
|
|
503
|
+
const possivelPropriedade = tipoCorrespondente.propriedades.filter(p => p.nome.lexema === construtoTipado.simbolo.lexema);
|
|
504
|
+
if (possivelPropriedade.length > 0) {
|
|
505
|
+
construto = new construtos_1.AcessoPropriedade(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, possivelPropriedade[0].tipo);
|
|
506
|
+
break;
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
}
|
|
510
|
+
}
|
|
511
|
+
return new construtos_1.TipoDe(this.hashArquivo, simboloAtual, construto);
|
|
423
512
|
case delegua_2.default.EXPRESSAO_REGULAR:
|
|
424
513
|
let valor = '';
|
|
425
514
|
let linhaAtual = this.simbolos[this.atual].linha;
|
|
@@ -475,33 +564,41 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
475
564
|
// Toda chamada precisa saber de antemão qual o tipo resolvido.
|
|
476
565
|
let entidadeChamadaResolvida = entidadeChamada;
|
|
477
566
|
if (entidadeChamadaResolvida.constructor.name === 'AcessoMetodoOuPropriedade') {
|
|
478
|
-
const
|
|
567
|
+
const construtoTipado = entidadeChamadaResolvida;
|
|
479
568
|
switch (entidadeChamadaResolvida.tipo) {
|
|
569
|
+
case delegua_1.default.DICIONARIO:
|
|
570
|
+
case delegua_1.default.DICIONÁRIO:
|
|
571
|
+
if (!(construtoTipado.simbolo.lexema in primitivas_dicionario_1.default)) {
|
|
572
|
+
throw this.erro(construtoTipado.simbolo, `${construtoTipado.simbolo.lexema} não é uma primitiva de dicionário.`);
|
|
573
|
+
}
|
|
574
|
+
const primitivaDicionarioSelecionada = primitivas_dicionario_1.default[construtoTipado.simbolo.lexema];
|
|
575
|
+
entidadeChamadaResolvida = new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, primitivaDicionarioSelecionada.tipoRetorno);
|
|
576
|
+
break;
|
|
480
577
|
case delegua_1.default.INTEIRO:
|
|
481
578
|
case delegua_1.default.NUMERO:
|
|
482
579
|
case delegua_1.default.NÚMERO:
|
|
483
|
-
if (!(
|
|
484
|
-
throw this.erro(
|
|
580
|
+
if (!(construtoTipado.simbolo.lexema in primitivas_numero_1.default)) {
|
|
581
|
+
throw this.erro(construtoTipado.simbolo, `${construtoTipado.simbolo.lexema} não é uma primitiva de número.`);
|
|
485
582
|
}
|
|
486
|
-
const primitivaNumeroSelecionada = primitivas_numero_1.default[
|
|
487
|
-
entidadeChamadaResolvida = new construtos_1.AcessoMetodo(
|
|
583
|
+
const primitivaNumeroSelecionada = primitivas_numero_1.default[construtoTipado.simbolo.lexema];
|
|
584
|
+
entidadeChamadaResolvida = new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, primitivaNumeroSelecionada.tipoRetorno);
|
|
488
585
|
break;
|
|
489
586
|
case delegua_1.default.TEXTO:
|
|
490
|
-
if (!(
|
|
491
|
-
throw this.erro(
|
|
587
|
+
if (!(construtoTipado.simbolo.lexema in primitivas_texto_1.default)) {
|
|
588
|
+
throw this.erro(construtoTipado.simbolo, `${construtoTipado.simbolo.lexema} não é uma primitiva de texto.`);
|
|
492
589
|
}
|
|
493
|
-
const primitivaTextoSelecionada = primitivas_texto_1.default[
|
|
494
|
-
entidadeChamadaResolvida = new construtos_1.AcessoMetodo(
|
|
590
|
+
const primitivaTextoSelecionada = primitivas_texto_1.default[construtoTipado.simbolo.lexema];
|
|
591
|
+
entidadeChamadaResolvida = new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, primitivaTextoSelecionada.tipoRetorno);
|
|
495
592
|
break;
|
|
496
593
|
case delegua_1.default.VETOR:
|
|
497
594
|
case delegua_1.default.VETOR_NUMERO:
|
|
498
595
|
case delegua_1.default.VETOR_NÚMERO:
|
|
499
596
|
case delegua_1.default.VETOR_TEXTO:
|
|
500
|
-
if (!(
|
|
501
|
-
throw this.erro(
|
|
597
|
+
if (!(construtoTipado.simbolo.lexema in primitivas_vetor_1.default)) {
|
|
598
|
+
throw this.erro(construtoTipado.simbolo, `${construtoTipado.simbolo.lexema} não é uma primitiva de vetor.`);
|
|
502
599
|
}
|
|
503
|
-
const primitivaVetorSelecionada = primitivas_vetor_1.default[
|
|
504
|
-
entidadeChamadaResolvida = new construtos_1.AcessoMetodo(
|
|
600
|
+
const primitivaVetorSelecionada = primitivas_vetor_1.default[construtoTipado.simbolo.lexema];
|
|
601
|
+
entidadeChamadaResolvida = new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, primitivaVetorSelecionada.tipoRetorno);
|
|
505
602
|
break;
|
|
506
603
|
}
|
|
507
604
|
}
|
|
@@ -637,8 +734,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
637
734
|
return new construtos_1.Atribuir(this.hashArquivo, simbolo, valor);
|
|
638
735
|
}
|
|
639
736
|
if (expressao instanceof construtos_1.AcessoMetodoOuPropriedade) {
|
|
640
|
-
|
|
641
|
-
return new construtos_1.DefinirValor(this.hashArquivo, igual.linha, get.objeto, get.simbolo, valor);
|
|
737
|
+
return new construtos_1.DefinirValor(this.hashArquivo, igual.linha, expressao.objeto, expressao.simbolo, valor);
|
|
642
738
|
}
|
|
643
739
|
if (expressao instanceof construtos_1.AcessoIndiceVariavel) {
|
|
644
740
|
return new construtos_1.AtribuicaoPorIndice(this.hashArquivo, expressao.linha, expressao.entidadeChamada, expressao.indice, valor);
|
|
@@ -1104,6 +1200,47 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1104
1200
|
this.pilhaDecoradores = [];
|
|
1105
1201
|
return retornos;
|
|
1106
1202
|
}
|
|
1203
|
+
logicaComumInferenciaTiposVariaveisEConstantes(inicializador, tipo) {
|
|
1204
|
+
if (tipo !== 'qualquer') {
|
|
1205
|
+
return tipo;
|
|
1206
|
+
}
|
|
1207
|
+
switch (inicializador.constructor.name) {
|
|
1208
|
+
case 'AcessoIndiceVariavel':
|
|
1209
|
+
const entidadeChamadaAcessoIndiceVariavel = inicializador.entidadeChamada;
|
|
1210
|
+
return entidadeChamadaAcessoIndiceVariavel.tipo.slice(0, -2);
|
|
1211
|
+
case 'Chamada':
|
|
1212
|
+
const entidadeChamadaChamada = inicializador.entidadeChamada;
|
|
1213
|
+
switch (entidadeChamadaChamada.constructor.name) {
|
|
1214
|
+
case 'AcessoMetodo':
|
|
1215
|
+
const entidadeChamadaAcessoMetodo = entidadeChamadaChamada;
|
|
1216
|
+
return entidadeChamadaAcessoMetodo.tipoRetornoMetodo;
|
|
1217
|
+
case 'AcessoPropriedade':
|
|
1218
|
+
const entidadeChamadaAcessoPropriedade = entidadeChamadaChamada;
|
|
1219
|
+
return entidadeChamadaAcessoPropriedade.tipoRetornoPropriedade;
|
|
1220
|
+
case 'Variavel':
|
|
1221
|
+
const entidadeChamadaVariavel = entidadeChamadaChamada;
|
|
1222
|
+
return entidadeChamadaVariavel.tipo;
|
|
1223
|
+
}
|
|
1224
|
+
break;
|
|
1225
|
+
case 'FuncaoConstruto':
|
|
1226
|
+
const funcaoConstruto = inicializador;
|
|
1227
|
+
return `função<${funcaoConstruto.tipoRetorno}>`;
|
|
1228
|
+
case 'Leia':
|
|
1229
|
+
return 'texto';
|
|
1230
|
+
case 'Dupla':
|
|
1231
|
+
case 'Trio':
|
|
1232
|
+
case 'Quarteto':
|
|
1233
|
+
case 'Quinteto':
|
|
1234
|
+
case 'Sexteto':
|
|
1235
|
+
case 'Septeto':
|
|
1236
|
+
case 'Octeto':
|
|
1237
|
+
case 'Noneto':
|
|
1238
|
+
case 'Deceto':
|
|
1239
|
+
return delegua_1.default.TUPLA;
|
|
1240
|
+
default:
|
|
1241
|
+
return inicializador.tipo;
|
|
1242
|
+
}
|
|
1243
|
+
}
|
|
1107
1244
|
/**
|
|
1108
1245
|
* Caso símbolo atual seja `var`, devolve uma declaração de variável.
|
|
1109
1246
|
* @returns Um Construto do tipo Var.
|
|
@@ -1141,43 +1278,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1141
1278
|
}
|
|
1142
1279
|
for (let [indice, identificador] of identificadores.entries()) {
|
|
1143
1280
|
// Se tipo ainda não foi definido, infere.
|
|
1144
|
-
|
|
1145
|
-
switch (inicializadores[indice].constructor.name) {
|
|
1146
|
-
case 'AcessoIndiceVariavel':
|
|
1147
|
-
const entidadeChamadaAcessoIndiceVariavel = inicializadores[indice].entidadeChamada;
|
|
1148
|
-
tipo = entidadeChamadaAcessoIndiceVariavel.tipo.slice(0, -2);
|
|
1149
|
-
break;
|
|
1150
|
-
case 'Chamada':
|
|
1151
|
-
const entidadeChamadaChamada = inicializadores[indice].entidadeChamada;
|
|
1152
|
-
switch (entidadeChamadaChamada.constructor.name) {
|
|
1153
|
-
case 'AcessoMetodo':
|
|
1154
|
-
const entidadeChamadaAcessoMetodo = entidadeChamadaChamada;
|
|
1155
|
-
tipo = entidadeChamadaAcessoMetodo.tipoRetornoMetodo;
|
|
1156
|
-
break;
|
|
1157
|
-
case 'AcessoPropriedade':
|
|
1158
|
-
const entidadeChamadaAcessoPropriedade = entidadeChamadaChamada;
|
|
1159
|
-
tipo = entidadeChamadaAcessoPropriedade.tipoRetornoPropriedade;
|
|
1160
|
-
break;
|
|
1161
|
-
}
|
|
1162
|
-
break;
|
|
1163
|
-
case 'Dupla':
|
|
1164
|
-
case 'Trio':
|
|
1165
|
-
case 'Quarteto':
|
|
1166
|
-
case 'Quinteto':
|
|
1167
|
-
case 'Sexteto':
|
|
1168
|
-
case 'Septeto':
|
|
1169
|
-
case 'Octeto':
|
|
1170
|
-
case 'Noneto':
|
|
1171
|
-
case 'Deceto':
|
|
1172
|
-
tipo = delegua_1.default.TUPLA;
|
|
1173
|
-
break;
|
|
1174
|
-
case 'Literal':
|
|
1175
|
-
case 'Variavel':
|
|
1176
|
-
case 'Vetor':
|
|
1177
|
-
tipo = inicializadores[indice].tipo;
|
|
1178
|
-
break;
|
|
1179
|
-
}
|
|
1180
|
-
}
|
|
1281
|
+
tipo = this.logicaComumInferenciaTiposVariaveisEConstantes(inicializadores[indice], tipo);
|
|
1181
1282
|
this.pilhaEscopos.definirTipoVariavel(identificador.lexema, tipo);
|
|
1182
1283
|
retorno.push(new declaracoes_1.Var(identificador, inicializadores[indice], tipo, Array.from(this.pilhaDecoradores)));
|
|
1183
1284
|
}
|
|
@@ -1230,30 +1331,8 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1230
1331
|
}
|
|
1231
1332
|
let retorno = [];
|
|
1232
1333
|
for (let [indice, identificador] of identificadores.entries()) {
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
case 'AcessoIndiceVariavel':
|
|
1236
|
-
const entidadeChamada = inicializadores[indice].entidadeChamada;
|
|
1237
|
-
tipo = entidadeChamada.tipo.slice(0, -2);
|
|
1238
|
-
break;
|
|
1239
|
-
case 'Dupla':
|
|
1240
|
-
case 'Trio':
|
|
1241
|
-
case 'Quarteto':
|
|
1242
|
-
case 'Quinteto':
|
|
1243
|
-
case 'Sexteto':
|
|
1244
|
-
case 'Septeto':
|
|
1245
|
-
case 'Octeto':
|
|
1246
|
-
case 'Noneto':
|
|
1247
|
-
case 'Deceto':
|
|
1248
|
-
tipo = delegua_1.default.TUPLA;
|
|
1249
|
-
break;
|
|
1250
|
-
case 'Literal':
|
|
1251
|
-
case 'Variavel':
|
|
1252
|
-
case 'Vetor':
|
|
1253
|
-
tipo = inicializadores[indice].tipo;
|
|
1254
|
-
break;
|
|
1255
|
-
}
|
|
1256
|
-
}
|
|
1334
|
+
// Se tipo ainda não foi definido, infere.
|
|
1335
|
+
tipo = this.logicaComumInferenciaTiposVariaveisEConstantes(inicializadores[indice], tipo);
|
|
1257
1336
|
this.pilhaEscopos.definirTipoVariavel(identificador.lexema, tipo);
|
|
1258
1337
|
retorno.push(new declaracoes_1.Const(identificador, inicializadores[indice], tipo, Array.from(this.pilhaDecoradores)));
|
|
1259
1338
|
}
|
|
@@ -1277,8 +1356,8 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1277
1356
|
// para ela. Vai ser atualizado após avaliação do corpo da função.
|
|
1278
1357
|
this.pilhaEscopos.definirTipoVariavel(simbolo.lexema, 'qualquer');
|
|
1279
1358
|
const corpoDaFuncao = this.corpoDaFuncao(tipo);
|
|
1280
|
-
this.pilhaEscopos.definirTipoVariavel(simbolo.lexema, corpoDaFuncao.tipoRetorno
|
|
1281
|
-
return new declaracoes_1.FuncaoDeclaracao(simbolo, corpoDaFuncao, corpoDaFuncao.tipoRetorno
|
|
1359
|
+
this.pilhaEscopos.definirTipoVariavel(simbolo.lexema, corpoDaFuncao.tipoRetorno);
|
|
1360
|
+
return new declaracoes_1.FuncaoDeclaracao(simbolo, corpoDaFuncao, corpoDaFuncao.tipoRetorno, decoradores);
|
|
1282
1361
|
}
|
|
1283
1362
|
logicaComumParametros() {
|
|
1284
1363
|
const parametros = [];
|
|
@@ -1357,9 +1436,11 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1357
1436
|
}
|
|
1358
1437
|
this.consumir(delegua_2.default.PARENTESE_DIREITO, "Esperado ')' após parâmetros.");
|
|
1359
1438
|
let tipoRetorno = 'qualquer';
|
|
1439
|
+
let definicaoExplicitaDeTipo = false;
|
|
1360
1440
|
if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.DOIS_PONTOS)) {
|
|
1361
1441
|
tipoRetorno = this.verificarDefinicaoTipoAtual();
|
|
1362
1442
|
this.avancarEDevolverAnterior();
|
|
1443
|
+
definicaoExplicitaDeTipo = true;
|
|
1363
1444
|
}
|
|
1364
1445
|
this.consumir(delegua_2.default.CHAVE_ESQUERDA, `Esperado '{' antes do escopo do ${tipo}.`);
|
|
1365
1446
|
const corpo = this.blocoEscopo();
|
|
@@ -1374,19 +1455,25 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1374
1455
|
}
|
|
1375
1456
|
}
|
|
1376
1457
|
const tiposRetornos = new Set(expressoesRetorna.map(e => e.tipo));
|
|
1377
|
-
// if (tiposRetornos.size > 1 && !tiposRetornos.has('qualquer')) {
|
|
1378
1458
|
if (tiposRetornos.size > 1 && tipoRetorno !== 'qualquer') {
|
|
1379
1459
|
let tiposEncontrados = Array.from(tiposRetornos).reduce((acumulador, valor) => acumulador += valor + ', ', '');
|
|
1380
1460
|
tiposEncontrados = tiposEncontrados.slice(0, -2);
|
|
1381
1461
|
throw this.erro(parenteseEsquerdo, `Função retorna valores com mais de um tipo. Tipo esperado: ${tipoRetorno}. Tipos encontrados: ${tiposEncontrados}.`);
|
|
1382
1462
|
}
|
|
1383
1463
|
tiposRetornos.delete('qualquer');
|
|
1384
|
-
if (tipoRetorno === 'qualquer'
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1464
|
+
if (tipoRetorno === 'qualquer') {
|
|
1465
|
+
if (tiposRetornos.size > 0) {
|
|
1466
|
+
// Se o tipo de retorno é 'qualquer', seja implícito ou explícito,
|
|
1467
|
+
// este avaliador sintático pode restringir o tipo baseado nos construtos
|
|
1468
|
+
// de retornos encontrados nos blocos internos da função.
|
|
1469
|
+
const tipoRetornoDeduzido = tiposRetornos.values().next().value;
|
|
1470
|
+
tipoRetorno = tipoRetornoDeduzido;
|
|
1471
|
+
}
|
|
1472
|
+
else if (!definicaoExplicitaDeTipo) {
|
|
1473
|
+
// Ou, se esses retornos sequer existem, e o tipo explícito não é
|
|
1474
|
+
// 'qualquer', o tipo inferido é 'vazio'.
|
|
1475
|
+
tipoRetorno = 'vazio';
|
|
1476
|
+
}
|
|
1390
1477
|
}
|
|
1391
1478
|
return new construtos_1.FuncaoConstruto(this.hashArquivo, Number(parenteseEsquerdo.linha), parametros, corpo, tipoRetorno);
|
|
1392
1479
|
}
|
|
@@ -1546,7 +1633,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1546
1633
|
}
|
|
1547
1634
|
exports.AvaliadorSintatico = AvaliadorSintatico;
|
|
1548
1635
|
|
|
1549
|
-
},{"../bibliotecas/primitivas-numero":19,"../bibliotecas/primitivas-texto":20,"../bibliotecas/primitivas-vetor":21,"../construtos":
|
|
1636
|
+
},{"../bibliotecas/primitivas-dicionario":18,"../bibliotecas/primitivas-numero":19,"../bibliotecas/primitivas-texto":20,"../bibliotecas/primitivas-vetor":21,"../construtos":44,"../construtos/tuplas":53,"../declaracoes":82,"../inferenciador":116,"../lexador":153,"../tipos-de-dados/delegua":161,"../tipos-de-simbolos/delegua":164,"./avaliador-sintatico-base":1,"./erro-avaliador-sintatico":7,"./informacao-escopo":9,"./pilha-escopos":12,"browser-process-hrtime":340}],3:[function(require,module,exports){
|
|
1550
1637
|
"use strict";
|
|
1551
1638
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
1552
1639
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -2196,7 +2283,7 @@ class AvaliadorSintaticoEguaClassico {
|
|
|
2196
2283
|
}
|
|
2197
2284
|
exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
|
|
2198
2285
|
|
|
2199
|
-
},{"../../construtos":
|
|
2286
|
+
},{"../../construtos":44,"../../declaracoes":82,"../../tipos-de-simbolos/egua-classico":165,"../erro-avaliador-sintatico":7}],4:[function(require,module,exports){
|
|
2200
2287
|
"use strict";
|
|
2201
2288
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
2202
2289
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -2968,7 +3055,7 @@ class AvaliadorSintaticoPitugues {
|
|
|
2968
3055
|
}
|
|
2969
3056
|
exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
|
|
2970
3057
|
|
|
2971
|
-
},{"../../construtos":
|
|
3058
|
+
},{"../../construtos":44,"../../declaracoes":82,"../../lexador":153,"../../tipos-de-simbolos/pitugues":168,"../erro-avaliador-sintatico":7,"browser-process-hrtime":340}],5:[function(require,module,exports){
|
|
2972
3059
|
"use strict";
|
|
2973
3060
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
2974
3061
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -3138,7 +3225,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
|
|
|
3138
3225
|
}
|
|
3139
3226
|
exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
|
|
3140
3227
|
|
|
3141
|
-
},{"../../construtos":
|
|
3228
|
+
},{"../../construtos":44,"../../declaracoes":82,"../../tipos-de-simbolos/portugol-ipt":169,"../avaliador-sintatico-base":1}],6:[function(require,module,exports){
|
|
3142
3229
|
"use strict";
|
|
3143
3230
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3144
3231
|
if (k2 === undefined) k2 = k;
|
|
@@ -3325,7 +3412,7 @@ class MicroAvaliadorSintaticoBase {
|
|
|
3325
3412
|
}
|
|
3326
3413
|
exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
|
|
3327
3414
|
|
|
3328
|
-
},{"../construtos":
|
|
3415
|
+
},{"../construtos":44,"../tipos-de-simbolos/comum":163,"./erro-avaliador-sintatico":7}],11:[function(require,module,exports){
|
|
3329
3416
|
"use strict";
|
|
3330
3417
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3331
3418
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -3531,7 +3618,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
|
|
|
3531
3618
|
}
|
|
3532
3619
|
exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
|
|
3533
3620
|
|
|
3534
|
-
},{"../construtos":
|
|
3621
|
+
},{"../construtos":44,"../tipos-de-simbolos/microgramaticas/delegua":167,"./micro-avaliador-sintatico-base":10}],12:[function(require,module,exports){
|
|
3535
3622
|
"use strict";
|
|
3536
3623
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3537
3624
|
exports.PilhaEscopos = void 0;
|
|
@@ -4093,7 +4180,7 @@ async function tupla(interpretador, vetor) {
|
|
|
4093
4180
|
}
|
|
4094
4181
|
}
|
|
4095
4182
|
|
|
4096
|
-
},{"../construtos":
|
|
4183
|
+
},{"../construtos":44,"../estruturas":105,"../estruturas/descritor-tipo-classe":103,"../estruturas/funcao-padrao":104,"../estruturas/objeto-delegua-classe":108,"../excecoes":111}],18:[function(require,module,exports){
|
|
4097
4184
|
"use strict";
|
|
4098
4185
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4099
4186
|
exports.default = {
|
|
@@ -4421,6 +4508,13 @@ exports.AcessoMetodo = AcessoMetodo;
|
|
|
4421
4508
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4422
4509
|
exports.AcessoPropriedade = void 0;
|
|
4423
4510
|
class AcessoPropriedade {
|
|
4511
|
+
constructor(hashArquivo, objeto, nomePropriedade, tipoRetornoPropriedade = 'qualquer') {
|
|
4512
|
+
this.linha = objeto.linha;
|
|
4513
|
+
this.hashArquivo = hashArquivo;
|
|
4514
|
+
this.objeto = objeto;
|
|
4515
|
+
this.nomePropriedade = nomePropriedade;
|
|
4516
|
+
this.tipoRetornoPropriedade = tipoRetornoPropriedade;
|
|
4517
|
+
}
|
|
4424
4518
|
async aceitar(visitante) {
|
|
4425
4519
|
return await visitante.visitarExpressaoAcessoPropriedade(this);
|
|
4426
4520
|
}
|
|
@@ -4591,7 +4685,7 @@ class Chamada {
|
|
|
4591
4685
|
}
|
|
4592
4686
|
exports.Chamada = Chamada;
|
|
4593
4687
|
|
|
4594
|
-
},{"../geracao-identificadores":
|
|
4688
|
+
},{"../geracao-identificadores":114}],33:[function(require,module,exports){
|
|
4595
4689
|
"use strict";
|
|
4596
4690
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4597
4691
|
exports.Comentario = void 0;
|
|
@@ -4616,6 +4710,26 @@ exports.Comentario = Comentario;
|
|
|
4616
4710
|
},{}],34:[function(require,module,exports){
|
|
4617
4711
|
"use strict";
|
|
4618
4712
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4713
|
+
exports.ComponenteLinguagem = void 0;
|
|
4714
|
+
/**
|
|
4715
|
+
* Construto especial utilizado para especificar o tipo de
|
|
4716
|
+
* estruturas reservadas da linguagem.
|
|
4717
|
+
*/
|
|
4718
|
+
class ComponenteLinguagem {
|
|
4719
|
+
constructor(hashArquivo, simbolo) {
|
|
4720
|
+
this.hashArquivo = hashArquivo;
|
|
4721
|
+
this.linha = simbolo.linha;
|
|
4722
|
+
this.valor = simbolo.lexema;
|
|
4723
|
+
}
|
|
4724
|
+
aceitar(visitante) {
|
|
4725
|
+
throw new Error("Um componente de linguagem não tem método de visita.");
|
|
4726
|
+
}
|
|
4727
|
+
}
|
|
4728
|
+
exports.ComponenteLinguagem = ComponenteLinguagem;
|
|
4729
|
+
|
|
4730
|
+
},{}],35:[function(require,module,exports){
|
|
4731
|
+
"use strict";
|
|
4732
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4619
4733
|
exports.Constante = void 0;
|
|
4620
4734
|
/**
|
|
4621
4735
|
* O construto de constante.
|
|
@@ -4632,11 +4746,11 @@ class Constante {
|
|
|
4632
4746
|
}
|
|
4633
4747
|
exports.Constante = Constante;
|
|
4634
4748
|
|
|
4635
|
-
},{}],
|
|
4749
|
+
},{}],36:[function(require,module,exports){
|
|
4636
4750
|
"use strict";
|
|
4637
4751
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4638
4752
|
|
|
4639
|
-
},{}],
|
|
4753
|
+
},{}],37:[function(require,module,exports){
|
|
4640
4754
|
"use strict";
|
|
4641
4755
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4642
4756
|
exports.Decorador = void 0;
|
|
@@ -4657,7 +4771,7 @@ class Decorador {
|
|
|
4657
4771
|
}
|
|
4658
4772
|
exports.Decorador = Decorador;
|
|
4659
4773
|
|
|
4660
|
-
},{}],
|
|
4774
|
+
},{}],38:[function(require,module,exports){
|
|
4661
4775
|
"use strict";
|
|
4662
4776
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4663
4777
|
exports.DefinirValor = void 0;
|
|
@@ -4675,7 +4789,7 @@ class DefinirValor {
|
|
|
4675
4789
|
}
|
|
4676
4790
|
exports.DefinirValor = DefinirValor;
|
|
4677
4791
|
|
|
4678
|
-
},{}],
|
|
4792
|
+
},{}],39:[function(require,module,exports){
|
|
4679
4793
|
"use strict";
|
|
4680
4794
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4681
4795
|
exports.Dicionario = void 0;
|
|
@@ -4685,6 +4799,7 @@ class Dicionario {
|
|
|
4685
4799
|
this.hashArquivo = hashArquivo;
|
|
4686
4800
|
this.chaves = chaves;
|
|
4687
4801
|
this.valores = valores;
|
|
4802
|
+
this.tipo = 'dicionário';
|
|
4688
4803
|
}
|
|
4689
4804
|
async aceitar(visitante) {
|
|
4690
4805
|
return await visitante.visitarExpressaoDicionario(this);
|
|
@@ -4692,7 +4807,7 @@ class Dicionario {
|
|
|
4692
4807
|
}
|
|
4693
4808
|
exports.Dicionario = Dicionario;
|
|
4694
4809
|
|
|
4695
|
-
},{}],
|
|
4810
|
+
},{}],40:[function(require,module,exports){
|
|
4696
4811
|
"use strict";
|
|
4697
4812
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4698
4813
|
exports.ExpressaoRegular = void 0;
|
|
@@ -4709,7 +4824,7 @@ class ExpressaoRegular {
|
|
|
4709
4824
|
}
|
|
4710
4825
|
exports.ExpressaoRegular = ExpressaoRegular;
|
|
4711
4826
|
|
|
4712
|
-
},{}],
|
|
4827
|
+
},{}],41:[function(require,module,exports){
|
|
4713
4828
|
"use strict";
|
|
4714
4829
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4715
4830
|
exports.FimPara = void 0;
|
|
@@ -4736,7 +4851,7 @@ class FimPara {
|
|
|
4736
4851
|
}
|
|
4737
4852
|
exports.FimPara = FimPara;
|
|
4738
4853
|
|
|
4739
|
-
},{}],
|
|
4854
|
+
},{}],42:[function(require,module,exports){
|
|
4740
4855
|
"use strict";
|
|
4741
4856
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4742
4857
|
exports.FormatacaoEscrita = void 0;
|
|
@@ -4759,7 +4874,7 @@ class FormatacaoEscrita {
|
|
|
4759
4874
|
}
|
|
4760
4875
|
exports.FormatacaoEscrita = FormatacaoEscrita;
|
|
4761
4876
|
|
|
4762
|
-
},{}],
|
|
4877
|
+
},{}],43:[function(require,module,exports){
|
|
4763
4878
|
"use strict";
|
|
4764
4879
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4765
4880
|
exports.FuncaoConstruto = void 0;
|
|
@@ -4777,7 +4892,7 @@ class FuncaoConstruto {
|
|
|
4777
4892
|
}
|
|
4778
4893
|
exports.FuncaoConstruto = FuncaoConstruto;
|
|
4779
4894
|
|
|
4780
|
-
},{}],
|
|
4895
|
+
},{}],44:[function(require,module,exports){
|
|
4781
4896
|
"use strict";
|
|
4782
4897
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4783
4898
|
if (k2 === undefined) k2 = k;
|
|
@@ -4806,6 +4921,7 @@ __exportStar(require("./atribuir"), exports);
|
|
|
4806
4921
|
__exportStar(require("./binario"), exports);
|
|
4807
4922
|
__exportStar(require("./chamada"), exports);
|
|
4808
4923
|
__exportStar(require("./comentario"), exports);
|
|
4924
|
+
__exportStar(require("./componente-linguagem"), exports);
|
|
4809
4925
|
__exportStar(require("./constante"), exports);
|
|
4810
4926
|
__exportStar(require("./construto"), exports);
|
|
4811
4927
|
__exportStar(require("./decorador"), exports);
|
|
@@ -4818,15 +4934,15 @@ __exportStar(require("./funcao"), exports);
|
|
|
4818
4934
|
__exportStar(require("./isto"), exports);
|
|
4819
4935
|
__exportStar(require("./literal"), exports);
|
|
4820
4936
|
__exportStar(require("./logico"), exports);
|
|
4937
|
+
__exportStar(require("./qual-tipo"), exports);
|
|
4821
4938
|
__exportStar(require("./super"), exports);
|
|
4822
4939
|
__exportStar(require("./tipo-de"), exports);
|
|
4823
4940
|
__exportStar(require("./tuplas"), exports);
|
|
4824
4941
|
__exportStar(require("./unario"), exports);
|
|
4825
4942
|
__exportStar(require("./variavel"), exports);
|
|
4826
4943
|
__exportStar(require("./vetor"), exports);
|
|
4827
|
-
__exportStar(require("./qual-tipo"), exports);
|
|
4828
4944
|
|
|
4829
|
-
},{"./acesso-elemento-matriz":22,"./acesso-indice-variavel":23,"./acesso-metodo":25,"./acesso-metodo-ou-propriedade":24,"./acesso-propriedade":26,"./agrupamento":27,"./atribuicao-por-indice":28,"./atribuicao-por-indices-matriz":29,"./atribuir":30,"./binario":31,"./chamada":32,"./comentario":33,"./
|
|
4945
|
+
},{"./acesso-elemento-matriz":22,"./acesso-indice-variavel":23,"./acesso-metodo":25,"./acesso-metodo-ou-propriedade":24,"./acesso-propriedade":26,"./agrupamento":27,"./atribuicao-por-indice":28,"./atribuicao-por-indices-matriz":29,"./atribuir":30,"./binario":31,"./chamada":32,"./comentario":33,"./componente-linguagem":34,"./constante":35,"./construto":36,"./decorador":37,"./definir-valor":38,"./dicionario":39,"./expressao-regular":40,"./fim-para":41,"./formatacao-escrita":42,"./funcao":43,"./isto":45,"./literal":46,"./logico":47,"./qual-tipo":48,"./super":49,"./tipo-de":50,"./tuplas":53,"./unario":62,"./variavel":63,"./vetor":64}],45:[function(require,module,exports){
|
|
4830
4946
|
"use strict";
|
|
4831
4947
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4832
4948
|
exports.Isto = void 0;
|
|
@@ -4842,7 +4958,7 @@ class Isto {
|
|
|
4842
4958
|
}
|
|
4843
4959
|
exports.Isto = Isto;
|
|
4844
4960
|
|
|
4845
|
-
},{}],
|
|
4961
|
+
},{}],46:[function(require,module,exports){
|
|
4846
4962
|
"use strict";
|
|
4847
4963
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4848
4964
|
exports.Literal = void 0;
|
|
@@ -4859,7 +4975,7 @@ class Literal {
|
|
|
4859
4975
|
}
|
|
4860
4976
|
exports.Literal = Literal;
|
|
4861
4977
|
|
|
4862
|
-
},{}],
|
|
4978
|
+
},{}],47:[function(require,module,exports){
|
|
4863
4979
|
"use strict";
|
|
4864
4980
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4865
4981
|
exports.Logico = void 0;
|
|
@@ -4877,7 +4993,7 @@ class Logico {
|
|
|
4877
4993
|
}
|
|
4878
4994
|
exports.Logico = Logico;
|
|
4879
4995
|
|
|
4880
|
-
},{}],
|
|
4996
|
+
},{}],48:[function(require,module,exports){
|
|
4881
4997
|
"use strict";
|
|
4882
4998
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4883
4999
|
exports.QualTipo = void 0;
|
|
@@ -4895,7 +5011,7 @@ class QualTipo {
|
|
|
4895
5011
|
}
|
|
4896
5012
|
exports.QualTipo = QualTipo;
|
|
4897
5013
|
|
|
4898
|
-
},{}],
|
|
5014
|
+
},{}],49:[function(require,module,exports){
|
|
4899
5015
|
"use strict";
|
|
4900
5016
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4901
5017
|
exports.Super = void 0;
|
|
@@ -4912,10 +5028,14 @@ class Super {
|
|
|
4912
5028
|
}
|
|
4913
5029
|
exports.Super = Super;
|
|
4914
5030
|
|
|
4915
|
-
},{}],
|
|
5031
|
+
},{}],50:[function(require,module,exports){
|
|
4916
5032
|
"use strict";
|
|
4917
5033
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4918
5034
|
exports.TipoDe = void 0;
|
|
5035
|
+
/**
|
|
5036
|
+
* Construto que solicita o tipo do valor. Normalmente usado em operações de
|
|
5037
|
+
* reflexão e metaprogramação.
|
|
5038
|
+
*/
|
|
4919
5039
|
class TipoDe {
|
|
4920
5040
|
constructor(hashArquivo, simbolo, valor) {
|
|
4921
5041
|
this.linha = Number(simbolo.linha);
|
|
@@ -4929,7 +5049,7 @@ class TipoDe {
|
|
|
4929
5049
|
}
|
|
4930
5050
|
exports.TipoDe = TipoDe;
|
|
4931
5051
|
|
|
4932
|
-
},{}],
|
|
5052
|
+
},{}],51:[function(require,module,exports){
|
|
4933
5053
|
"use strict";
|
|
4934
5054
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4935
5055
|
exports.Deceto = void 0;
|
|
@@ -4963,7 +5083,7 @@ class Deceto extends tupla_1.Tupla {
|
|
|
4963
5083
|
}
|
|
4964
5084
|
exports.Deceto = Deceto;
|
|
4965
5085
|
|
|
4966
|
-
},{"./tupla":
|
|
5086
|
+
},{"./tupla":61}],52:[function(require,module,exports){
|
|
4967
5087
|
"use strict";
|
|
4968
5088
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4969
5089
|
exports.Dupla = void 0;
|
|
@@ -4977,7 +5097,7 @@ class Dupla extends tupla_1.Tupla {
|
|
|
4977
5097
|
}
|
|
4978
5098
|
exports.Dupla = Dupla;
|
|
4979
5099
|
|
|
4980
|
-
},{"./tupla":
|
|
5100
|
+
},{"./tupla":61}],53:[function(require,module,exports){
|
|
4981
5101
|
"use strict";
|
|
4982
5102
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4983
5103
|
if (k2 === undefined) k2 = k;
|
|
@@ -5046,7 +5166,7 @@ class SeletorTuplas {
|
|
|
5046
5166
|
}
|
|
5047
5167
|
exports.SeletorTuplas = SeletorTuplas;
|
|
5048
5168
|
|
|
5049
|
-
},{"./deceto":
|
|
5169
|
+
},{"./deceto":51,"./dupla":52,"./noneto":54,"./octeto":55,"./quarteto":56,"./quinteto":57,"./septeto":58,"./sexteto":59,"./trio":60,"./tupla":61}],54:[function(require,module,exports){
|
|
5050
5170
|
"use strict";
|
|
5051
5171
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5052
5172
|
exports.Noneto = void 0;
|
|
@@ -5073,7 +5193,7 @@ class Noneto extends tupla_1.Tupla {
|
|
|
5073
5193
|
}
|
|
5074
5194
|
exports.Noneto = Noneto;
|
|
5075
5195
|
|
|
5076
|
-
},{"./tupla":
|
|
5196
|
+
},{"./tupla":61}],55:[function(require,module,exports){
|
|
5077
5197
|
"use strict";
|
|
5078
5198
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5079
5199
|
exports.Octeto = void 0;
|
|
@@ -5099,7 +5219,7 @@ class Octeto extends tupla_1.Tupla {
|
|
|
5099
5219
|
}
|
|
5100
5220
|
exports.Octeto = Octeto;
|
|
5101
5221
|
|
|
5102
|
-
},{"./tupla":
|
|
5222
|
+
},{"./tupla":61}],56:[function(require,module,exports){
|
|
5103
5223
|
"use strict";
|
|
5104
5224
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5105
5225
|
exports.Quarteto = void 0;
|
|
@@ -5115,7 +5235,7 @@ class Quarteto extends tupla_1.Tupla {
|
|
|
5115
5235
|
}
|
|
5116
5236
|
exports.Quarteto = Quarteto;
|
|
5117
5237
|
|
|
5118
|
-
},{"./tupla":
|
|
5238
|
+
},{"./tupla":61}],57:[function(require,module,exports){
|
|
5119
5239
|
"use strict";
|
|
5120
5240
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5121
5241
|
exports.Quinteto = void 0;
|
|
@@ -5132,7 +5252,7 @@ class Quinteto extends tupla_1.Tupla {
|
|
|
5132
5252
|
}
|
|
5133
5253
|
exports.Quinteto = Quinteto;
|
|
5134
5254
|
|
|
5135
|
-
},{"./tupla":
|
|
5255
|
+
},{"./tupla":61}],58:[function(require,module,exports){
|
|
5136
5256
|
"use strict";
|
|
5137
5257
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5138
5258
|
exports.Septeto = void 0;
|
|
@@ -5157,7 +5277,7 @@ class Septeto extends tupla_1.Tupla {
|
|
|
5157
5277
|
}
|
|
5158
5278
|
exports.Septeto = Septeto;
|
|
5159
5279
|
|
|
5160
|
-
},{"./tupla":
|
|
5280
|
+
},{"./tupla":61}],59:[function(require,module,exports){
|
|
5161
5281
|
"use strict";
|
|
5162
5282
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5163
5283
|
exports.Sexteto = void 0;
|
|
@@ -5175,7 +5295,7 @@ class Sexteto extends tupla_1.Tupla {
|
|
|
5175
5295
|
}
|
|
5176
5296
|
exports.Sexteto = Sexteto;
|
|
5177
5297
|
|
|
5178
|
-
},{"./tupla":
|
|
5298
|
+
},{"./tupla":61}],60:[function(require,module,exports){
|
|
5179
5299
|
"use strict";
|
|
5180
5300
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5181
5301
|
exports.Trio = void 0;
|
|
@@ -5190,7 +5310,7 @@ class Trio extends tupla_1.Tupla {
|
|
|
5190
5310
|
}
|
|
5191
5311
|
exports.Trio = Trio;
|
|
5192
5312
|
|
|
5193
|
-
},{"./tupla":
|
|
5313
|
+
},{"./tupla":61}],61:[function(require,module,exports){
|
|
5194
5314
|
"use strict";
|
|
5195
5315
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5196
5316
|
exports.Tupla = void 0;
|
|
@@ -5201,7 +5321,7 @@ class Tupla {
|
|
|
5201
5321
|
}
|
|
5202
5322
|
exports.Tupla = Tupla;
|
|
5203
5323
|
|
|
5204
|
-
},{}],
|
|
5324
|
+
},{}],62:[function(require,module,exports){
|
|
5205
5325
|
"use strict";
|
|
5206
5326
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5207
5327
|
exports.Unario = void 0;
|
|
@@ -5219,7 +5339,7 @@ class Unario {
|
|
|
5219
5339
|
}
|
|
5220
5340
|
exports.Unario = Unario;
|
|
5221
5341
|
|
|
5222
|
-
},{}],
|
|
5342
|
+
},{}],63:[function(require,module,exports){
|
|
5223
5343
|
"use strict";
|
|
5224
5344
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5225
5345
|
exports.Variavel = void 0;
|
|
@@ -5236,7 +5356,7 @@ class Variavel {
|
|
|
5236
5356
|
}
|
|
5237
5357
|
exports.Variavel = Variavel;
|
|
5238
5358
|
|
|
5239
|
-
},{}],
|
|
5359
|
+
},{}],64:[function(require,module,exports){
|
|
5240
5360
|
"use strict";
|
|
5241
5361
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5242
5362
|
exports.Vetor = void 0;
|
|
@@ -5259,7 +5379,7 @@ class Vetor {
|
|
|
5259
5379
|
}
|
|
5260
5380
|
exports.Vetor = Vetor;
|
|
5261
5381
|
|
|
5262
|
-
},{}],
|
|
5382
|
+
},{}],65:[function(require,module,exports){
|
|
5263
5383
|
"use strict";
|
|
5264
5384
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5265
5385
|
exports.Aleatorio = void 0;
|
|
@@ -5276,7 +5396,7 @@ class Aleatorio extends declaracao_1.Declaracao {
|
|
|
5276
5396
|
}
|
|
5277
5397
|
exports.Aleatorio = Aleatorio;
|
|
5278
5398
|
|
|
5279
|
-
},{"./declaracao":
|
|
5399
|
+
},{"./declaracao":72}],66:[function(require,module,exports){
|
|
5280
5400
|
"use strict";
|
|
5281
5401
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5282
5402
|
exports.Bloco = void 0;
|
|
@@ -5292,7 +5412,7 @@ class Bloco extends declaracao_1.Declaracao {
|
|
|
5292
5412
|
}
|
|
5293
5413
|
exports.Bloco = Bloco;
|
|
5294
5414
|
|
|
5295
|
-
},{"./declaracao":
|
|
5415
|
+
},{"./declaracao":72}],67:[function(require,module,exports){
|
|
5296
5416
|
"use strict";
|
|
5297
5417
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5298
5418
|
exports.CabecalhoPrograma = void 0;
|
|
@@ -5308,7 +5428,7 @@ class CabecalhoPrograma extends declaracao_1.Declaracao {
|
|
|
5308
5428
|
}
|
|
5309
5429
|
exports.CabecalhoPrograma = CabecalhoPrograma;
|
|
5310
5430
|
|
|
5311
|
-
},{"./declaracao":
|
|
5431
|
+
},{"./declaracao":72}],68:[function(require,module,exports){
|
|
5312
5432
|
"use strict";
|
|
5313
5433
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5314
5434
|
exports.Classe = void 0;
|
|
@@ -5328,7 +5448,7 @@ class Classe extends declaracao_1.Declaracao {
|
|
|
5328
5448
|
}
|
|
5329
5449
|
exports.Classe = Classe;
|
|
5330
5450
|
|
|
5331
|
-
},{"./declaracao":
|
|
5451
|
+
},{"./declaracao":72}],69:[function(require,module,exports){
|
|
5332
5452
|
"use strict";
|
|
5333
5453
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5334
5454
|
exports.ConstMultiplo = void 0;
|
|
@@ -5349,7 +5469,7 @@ class ConstMultiplo extends declaracao_1.Declaracao {
|
|
|
5349
5469
|
}
|
|
5350
5470
|
exports.ConstMultiplo = ConstMultiplo;
|
|
5351
5471
|
|
|
5352
|
-
},{"./declaracao":
|
|
5472
|
+
},{"./declaracao":72}],70:[function(require,module,exports){
|
|
5353
5473
|
"use strict";
|
|
5354
5474
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5355
5475
|
exports.Const = void 0;
|
|
@@ -5375,7 +5495,7 @@ class Const extends declaracao_1.Declaracao {
|
|
|
5375
5495
|
}
|
|
5376
5496
|
exports.Const = Const;
|
|
5377
5497
|
|
|
5378
|
-
},{"./declaracao":
|
|
5498
|
+
},{"./declaracao":72}],71:[function(require,module,exports){
|
|
5379
5499
|
"use strict";
|
|
5380
5500
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5381
5501
|
exports.Continua = void 0;
|
|
@@ -5390,7 +5510,7 @@ class Continua extends declaracao_1.Declaracao {
|
|
|
5390
5510
|
}
|
|
5391
5511
|
exports.Continua = Continua;
|
|
5392
5512
|
|
|
5393
|
-
},{"./declaracao":
|
|
5513
|
+
},{"./declaracao":72}],72:[function(require,module,exports){
|
|
5394
5514
|
"use strict";
|
|
5395
5515
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5396
5516
|
exports.Declaracao = void 0;
|
|
@@ -5410,7 +5530,7 @@ class Declaracao {
|
|
|
5410
5530
|
}
|
|
5411
5531
|
exports.Declaracao = Declaracao;
|
|
5412
5532
|
|
|
5413
|
-
},{}],
|
|
5533
|
+
},{}],73:[function(require,module,exports){
|
|
5414
5534
|
"use strict";
|
|
5415
5535
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5416
5536
|
exports.Enquanto = void 0;
|
|
@@ -5427,7 +5547,7 @@ class Enquanto extends declaracao_1.Declaracao {
|
|
|
5427
5547
|
}
|
|
5428
5548
|
exports.Enquanto = Enquanto;
|
|
5429
5549
|
|
|
5430
|
-
},{"./declaracao":
|
|
5550
|
+
},{"./declaracao":72}],74:[function(require,module,exports){
|
|
5431
5551
|
"use strict";
|
|
5432
5552
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5433
5553
|
exports.Escolha = void 0;
|
|
@@ -5448,7 +5568,7 @@ class Escolha extends declaracao_1.Declaracao {
|
|
|
5448
5568
|
}
|
|
5449
5569
|
exports.Escolha = Escolha;
|
|
5450
5570
|
|
|
5451
|
-
},{"./declaracao":
|
|
5571
|
+
},{"./declaracao":72}],75:[function(require,module,exports){
|
|
5452
5572
|
"use strict";
|
|
5453
5573
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5454
5574
|
exports.EscrevaMesmaLinha = void 0;
|
|
@@ -5464,7 +5584,7 @@ class EscrevaMesmaLinha extends declaracao_1.Declaracao {
|
|
|
5464
5584
|
}
|
|
5465
5585
|
exports.EscrevaMesmaLinha = EscrevaMesmaLinha;
|
|
5466
5586
|
|
|
5467
|
-
},{"./declaracao":
|
|
5587
|
+
},{"./declaracao":72}],76:[function(require,module,exports){
|
|
5468
5588
|
"use strict";
|
|
5469
5589
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5470
5590
|
exports.Escreva = void 0;
|
|
@@ -5480,7 +5600,7 @@ class Escreva extends declaracao_1.Declaracao {
|
|
|
5480
5600
|
}
|
|
5481
5601
|
exports.Escreva = Escreva;
|
|
5482
5602
|
|
|
5483
|
-
},{"./declaracao":
|
|
5603
|
+
},{"./declaracao":72}],77:[function(require,module,exports){
|
|
5484
5604
|
"use strict";
|
|
5485
5605
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5486
5606
|
exports.Expressao = void 0;
|
|
@@ -5496,7 +5616,7 @@ class Expressao extends declaracao_1.Declaracao {
|
|
|
5496
5616
|
}
|
|
5497
5617
|
exports.Expressao = Expressao;
|
|
5498
5618
|
|
|
5499
|
-
},{"./declaracao":
|
|
5619
|
+
},{"./declaracao":72}],78:[function(require,module,exports){
|
|
5500
5620
|
"use strict";
|
|
5501
5621
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5502
5622
|
exports.Falhar = void 0;
|
|
@@ -5513,7 +5633,7 @@ class Falhar extends declaracao_1.Declaracao {
|
|
|
5513
5633
|
}
|
|
5514
5634
|
exports.Falhar = Falhar;
|
|
5515
5635
|
|
|
5516
|
-
},{"./declaracao":
|
|
5636
|
+
},{"./declaracao":72}],79:[function(require,module,exports){
|
|
5517
5637
|
"use strict";
|
|
5518
5638
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5519
5639
|
exports.Fazer = void 0;
|
|
@@ -5530,7 +5650,7 @@ class Fazer extends declaracao_1.Declaracao {
|
|
|
5530
5650
|
}
|
|
5531
5651
|
exports.Fazer = Fazer;
|
|
5532
5652
|
|
|
5533
|
-
},{"./declaracao":
|
|
5653
|
+
},{"./declaracao":72}],80:[function(require,module,exports){
|
|
5534
5654
|
"use strict";
|
|
5535
5655
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5536
5656
|
exports.FuncaoDeclaracao = void 0;
|
|
@@ -5552,7 +5672,7 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
|
|
|
5552
5672
|
}
|
|
5553
5673
|
exports.FuncaoDeclaracao = FuncaoDeclaracao;
|
|
5554
5674
|
|
|
5555
|
-
},{"./declaracao":
|
|
5675
|
+
},{"./declaracao":72}],81:[function(require,module,exports){
|
|
5556
5676
|
"use strict";
|
|
5557
5677
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5558
5678
|
exports.Importar = void 0;
|
|
@@ -5569,7 +5689,7 @@ class Importar extends declaracao_1.Declaracao {
|
|
|
5569
5689
|
}
|
|
5570
5690
|
exports.Importar = Importar;
|
|
5571
5691
|
|
|
5572
|
-
},{"./declaracao":
|
|
5692
|
+
},{"./declaracao":72}],82:[function(require,module,exports){
|
|
5573
5693
|
"use strict";
|
|
5574
5694
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5575
5695
|
if (k2 === undefined) k2 = k;
|
|
@@ -5618,7 +5738,7 @@ __exportStar(require("./var"), exports);
|
|
|
5618
5738
|
__exportStar(require("./var-multiplo"), exports);
|
|
5619
5739
|
__exportStar(require("./aleatorio"), exports);
|
|
5620
5740
|
|
|
5621
|
-
},{"./aleatorio":
|
|
5741
|
+
},{"./aleatorio":65,"./bloco":66,"./cabecalho-programa":67,"./classe":68,"./const":70,"./const-multiplo":69,"./continua":71,"./declaracao":72,"./enquanto":73,"./escolha":74,"./escreva":76,"./escreva-mesma-linha":75,"./expressao":77,"./falhar":78,"./fazer":79,"./funcao":80,"./importar":81,"./inicio-algoritmo":83,"./leia":85,"./leia-multiplo":84,"./para":87,"./para-cada":86,"./propriedade-classe":88,"./retorna":89,"./se":90,"./sustar":91,"./tendo-como":92,"./tente":93,"./var":95,"./var-multiplo":94}],83:[function(require,module,exports){
|
|
5622
5742
|
"use strict";
|
|
5623
5743
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5624
5744
|
exports.InicioAlgoritmo = void 0;
|
|
@@ -5633,7 +5753,7 @@ class InicioAlgoritmo extends declaracao_1.Declaracao {
|
|
|
5633
5753
|
}
|
|
5634
5754
|
exports.InicioAlgoritmo = InicioAlgoritmo;
|
|
5635
5755
|
|
|
5636
|
-
},{"./declaracao":
|
|
5756
|
+
},{"./declaracao":72}],84:[function(require,module,exports){
|
|
5637
5757
|
"use strict";
|
|
5638
5758
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5639
5759
|
exports.LeiaMultiplo = void 0;
|
|
@@ -5656,7 +5776,7 @@ class LeiaMultiplo extends declaracao_1.Declaracao {
|
|
|
5656
5776
|
}
|
|
5657
5777
|
exports.LeiaMultiplo = LeiaMultiplo;
|
|
5658
5778
|
|
|
5659
|
-
},{"../geracao-identificadores":
|
|
5779
|
+
},{"../geracao-identificadores":114,"./declaracao":72}],85:[function(require,module,exports){
|
|
5660
5780
|
"use strict";
|
|
5661
5781
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5662
5782
|
exports.Leia = void 0;
|
|
@@ -5679,7 +5799,7 @@ class Leia extends declaracao_1.Declaracao {
|
|
|
5679
5799
|
}
|
|
5680
5800
|
exports.Leia = Leia;
|
|
5681
5801
|
|
|
5682
|
-
},{"../geracao-identificadores":
|
|
5802
|
+
},{"../geracao-identificadores":114,"./declaracao":72}],86:[function(require,module,exports){
|
|
5683
5803
|
"use strict";
|
|
5684
5804
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5685
5805
|
exports.ParaCada = void 0;
|
|
@@ -5698,7 +5818,7 @@ class ParaCada extends declaracao_1.Declaracao {
|
|
|
5698
5818
|
}
|
|
5699
5819
|
exports.ParaCada = ParaCada;
|
|
5700
5820
|
|
|
5701
|
-
},{"./declaracao":
|
|
5821
|
+
},{"./declaracao":72}],87:[function(require,module,exports){
|
|
5702
5822
|
"use strict";
|
|
5703
5823
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5704
5824
|
exports.Para = void 0;
|
|
@@ -5724,7 +5844,7 @@ class Para extends declaracao_1.Declaracao {
|
|
|
5724
5844
|
}
|
|
5725
5845
|
exports.Para = Para;
|
|
5726
5846
|
|
|
5727
|
-
},{"./declaracao":
|
|
5847
|
+
},{"./declaracao":72}],88:[function(require,module,exports){
|
|
5728
5848
|
"use strict";
|
|
5729
5849
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5730
5850
|
exports.PropriedadeClasse = void 0;
|
|
@@ -5742,7 +5862,7 @@ class PropriedadeClasse extends declaracao_1.Declaracao {
|
|
|
5742
5862
|
}
|
|
5743
5863
|
exports.PropriedadeClasse = PropriedadeClasse;
|
|
5744
5864
|
|
|
5745
|
-
},{"./declaracao":
|
|
5865
|
+
},{"./declaracao":72}],89:[function(require,module,exports){
|
|
5746
5866
|
"use strict";
|
|
5747
5867
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5748
5868
|
exports.Retorna = void 0;
|
|
@@ -5765,7 +5885,7 @@ class Retorna extends declaracao_1.Declaracao {
|
|
|
5765
5885
|
}
|
|
5766
5886
|
exports.Retorna = Retorna;
|
|
5767
5887
|
|
|
5768
|
-
},{"./declaracao":
|
|
5888
|
+
},{"./declaracao":72}],90:[function(require,module,exports){
|
|
5769
5889
|
"use strict";
|
|
5770
5890
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5771
5891
|
exports.Se = void 0;
|
|
@@ -5784,7 +5904,7 @@ class Se extends declaracao_1.Declaracao {
|
|
|
5784
5904
|
}
|
|
5785
5905
|
exports.Se = Se;
|
|
5786
5906
|
|
|
5787
|
-
},{"./declaracao":
|
|
5907
|
+
},{"./declaracao":72}],91:[function(require,module,exports){
|
|
5788
5908
|
"use strict";
|
|
5789
5909
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5790
5910
|
exports.Sustar = void 0;
|
|
@@ -5799,7 +5919,7 @@ class Sustar extends declaracao_1.Declaracao {
|
|
|
5799
5919
|
}
|
|
5800
5920
|
exports.Sustar = Sustar;
|
|
5801
5921
|
|
|
5802
|
-
},{"./declaracao":
|
|
5922
|
+
},{"./declaracao":72}],92:[function(require,module,exports){
|
|
5803
5923
|
"use strict";
|
|
5804
5924
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5805
5925
|
exports.TendoComo = void 0;
|
|
@@ -5822,7 +5942,7 @@ class TendoComo extends declaracao_1.Declaracao {
|
|
|
5822
5942
|
}
|
|
5823
5943
|
exports.TendoComo = TendoComo;
|
|
5824
5944
|
|
|
5825
|
-
},{"./declaracao":
|
|
5945
|
+
},{"./declaracao":72}],93:[function(require,module,exports){
|
|
5826
5946
|
"use strict";
|
|
5827
5947
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5828
5948
|
exports.Tente = void 0;
|
|
@@ -5844,7 +5964,7 @@ class Tente extends declaracao_1.Declaracao {
|
|
|
5844
5964
|
}
|
|
5845
5965
|
exports.Tente = Tente;
|
|
5846
5966
|
|
|
5847
|
-
},{"./declaracao":
|
|
5967
|
+
},{"./declaracao":72}],94:[function(require,module,exports){
|
|
5848
5968
|
"use strict";
|
|
5849
5969
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5850
5970
|
exports.VarMultiplo = void 0;
|
|
@@ -5866,7 +5986,7 @@ class VarMultiplo extends declaracao_1.Declaracao {
|
|
|
5866
5986
|
}
|
|
5867
5987
|
exports.VarMultiplo = VarMultiplo;
|
|
5868
5988
|
|
|
5869
|
-
},{"./declaracao":
|
|
5989
|
+
},{"./declaracao":72}],95:[function(require,module,exports){
|
|
5870
5990
|
"use strict";
|
|
5871
5991
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5872
5992
|
exports.Var = void 0;
|
|
@@ -5894,7 +6014,7 @@ class Var extends declaracao_1.Declaracao {
|
|
|
5894
6014
|
}
|
|
5895
6015
|
exports.Var = Var;
|
|
5896
6016
|
|
|
5897
|
-
},{"./declaracao":
|
|
6017
|
+
},{"./declaracao":72}],96:[function(require,module,exports){
|
|
5898
6018
|
"use strict";
|
|
5899
6019
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5900
6020
|
exports.default = cyrb53;
|
|
@@ -5918,7 +6038,7 @@ function cyrb53(nomeArquivo, semente = 0) {
|
|
|
5918
6038
|
return 4294967296 * (2097151 & h2) + (h1 >>> 0);
|
|
5919
6039
|
}
|
|
5920
6040
|
|
|
5921
|
-
},{}],
|
|
6041
|
+
},{}],97:[function(require,module,exports){
|
|
5922
6042
|
"use strict";
|
|
5923
6043
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5924
6044
|
if (k2 === undefined) k2 = k;
|
|
@@ -5943,11 +6063,11 @@ var cyrb53_1 = require("./cyrb53");
|
|
|
5943
6063
|
Object.defineProperty(exports, "cyrb53", { enumerable: true, get: function () { return __importDefault(cyrb53_1).default; } });
|
|
5944
6064
|
__exportStar(require("./ponto-parada"), exports);
|
|
5945
6065
|
|
|
5946
|
-
},{"./cyrb53":
|
|
6066
|
+
},{"./cyrb53":96,"./ponto-parada":98}],98:[function(require,module,exports){
|
|
5947
6067
|
"use strict";
|
|
5948
6068
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5949
6069
|
|
|
5950
|
-
},{}],
|
|
6070
|
+
},{}],99:[function(require,module,exports){
|
|
5951
6071
|
"use strict";
|
|
5952
6072
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5953
6073
|
exports.EspacoVariaveis = void 0;
|
|
@@ -5968,7 +6088,7 @@ class EspacoVariaveis {
|
|
|
5968
6088
|
}
|
|
5969
6089
|
exports.EspacoVariaveis = EspacoVariaveis;
|
|
5970
6090
|
|
|
5971
|
-
},{}],
|
|
6091
|
+
},{}],100:[function(require,module,exports){
|
|
5972
6092
|
"use strict";
|
|
5973
6093
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5974
6094
|
exports.Chamavel = void 0;
|
|
@@ -5982,7 +6102,7 @@ class Chamavel {
|
|
|
5982
6102
|
}
|
|
5983
6103
|
exports.Chamavel = Chamavel;
|
|
5984
6104
|
|
|
5985
|
-
},{}],
|
|
6105
|
+
},{}],101:[function(require,module,exports){
|
|
5986
6106
|
"use strict";
|
|
5987
6107
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5988
6108
|
exports.ClassePadrao = void 0;
|
|
@@ -6023,7 +6143,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
|
|
|
6023
6143
|
}
|
|
6024
6144
|
exports.ClassePadrao = ClassePadrao;
|
|
6025
6145
|
|
|
6026
|
-
},{"./chamavel":
|
|
6146
|
+
},{"./chamavel":100}],102:[function(require,module,exports){
|
|
6027
6147
|
"use strict";
|
|
6028
6148
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6029
6149
|
exports.DeleguaFuncao = void 0;
|
|
@@ -6165,7 +6285,7 @@ class DeleguaFuncao extends chamavel_1.Chamavel {
|
|
|
6165
6285
|
}
|
|
6166
6286
|
exports.DeleguaFuncao = DeleguaFuncao;
|
|
6167
6287
|
|
|
6168
|
-
},{"../declaracoes":
|
|
6288
|
+
},{"../declaracoes":82,"../espaco-variaveis":99,"../inferenciador":116,"../quebras":160,"./chamavel":100}],103:[function(require,module,exports){
|
|
6169
6289
|
"use strict";
|
|
6170
6290
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6171
6291
|
exports.DescritorTipoClasse = void 0;
|
|
@@ -6246,7 +6366,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
|
|
|
6246
6366
|
}
|
|
6247
6367
|
exports.DescritorTipoClasse = DescritorTipoClasse;
|
|
6248
6368
|
|
|
6249
|
-
},{"../excecoes":
|
|
6369
|
+
},{"../excecoes":111,"./chamavel":100,"./objeto-delegua-classe":108}],104:[function(require,module,exports){
|
|
6250
6370
|
"use strict";
|
|
6251
6371
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6252
6372
|
exports.FuncaoPadrao = void 0;
|
|
@@ -6282,7 +6402,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
|
|
|
6282
6402
|
}
|
|
6283
6403
|
exports.FuncaoPadrao = FuncaoPadrao;
|
|
6284
6404
|
|
|
6285
|
-
},{"./chamavel":
|
|
6405
|
+
},{"./chamavel":100}],105:[function(require,module,exports){
|
|
6286
6406
|
"use strict";
|
|
6287
6407
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6288
6408
|
if (k2 === undefined) k2 = k;
|
|
@@ -6309,7 +6429,7 @@ __exportStar(require("./modulo"), exports);
|
|
|
6309
6429
|
__exportStar(require("./objeto-delegua-classe"), exports);
|
|
6310
6430
|
__exportStar(require("./objeto-padrao"), exports);
|
|
6311
6431
|
|
|
6312
|
-
},{"./chamavel":
|
|
6432
|
+
},{"./chamavel":100,"./classe-padrao":101,"./delegua-funcao":102,"./descritor-tipo-classe":103,"./funcao-padrao":104,"./metodo-primitiva":106,"./modulo":107,"./objeto-delegua-classe":108,"./objeto-padrao":109}],106:[function(require,module,exports){
|
|
6313
6433
|
"use strict";
|
|
6314
6434
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6315
6435
|
exports.MetodoPrimitiva = void 0;
|
|
@@ -6351,7 +6471,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
|
|
|
6351
6471
|
}
|
|
6352
6472
|
exports.MetodoPrimitiva = MetodoPrimitiva;
|
|
6353
6473
|
|
|
6354
|
-
},{"./chamavel":
|
|
6474
|
+
},{"./chamavel":100}],107:[function(require,module,exports){
|
|
6355
6475
|
"use strict";
|
|
6356
6476
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6357
6477
|
exports.DeleguaModulo = void 0;
|
|
@@ -6377,7 +6497,7 @@ class DeleguaModulo {
|
|
|
6377
6497
|
}
|
|
6378
6498
|
exports.DeleguaModulo = DeleguaModulo;
|
|
6379
6499
|
|
|
6380
|
-
},{}],
|
|
6500
|
+
},{}],108:[function(require,module,exports){
|
|
6381
6501
|
"use strict";
|
|
6382
6502
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6383
6503
|
exports.ObjetoDeleguaClasse = void 0;
|
|
@@ -6444,7 +6564,7 @@ class ObjetoDeleguaClasse {
|
|
|
6444
6564
|
}
|
|
6445
6565
|
exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
|
|
6446
6566
|
|
|
6447
|
-
},{"../excecoes":
|
|
6567
|
+
},{"../excecoes":111}],109:[function(require,module,exports){
|
|
6448
6568
|
"use strict";
|
|
6449
6569
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6450
6570
|
exports.ObjetoPadrao = void 0;
|
|
@@ -6478,7 +6598,7 @@ class ObjetoPadrao {
|
|
|
6478
6598
|
}
|
|
6479
6599
|
exports.ObjetoPadrao = ObjetoPadrao;
|
|
6480
6600
|
|
|
6481
|
-
},{}],
|
|
6601
|
+
},{}],110:[function(require,module,exports){
|
|
6482
6602
|
"use strict";
|
|
6483
6603
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6484
6604
|
exports.ErroEmTempoDeExecucao = void 0;
|
|
@@ -6493,7 +6613,7 @@ class ErroEmTempoDeExecucao extends Error {
|
|
|
6493
6613
|
}
|
|
6494
6614
|
exports.ErroEmTempoDeExecucao = ErroEmTempoDeExecucao;
|
|
6495
6615
|
|
|
6496
|
-
},{}],
|
|
6616
|
+
},{}],111:[function(require,module,exports){
|
|
6497
6617
|
"use strict";
|
|
6498
6618
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6499
6619
|
if (k2 === undefined) k2 = k;
|
|
@@ -6512,7 +6632,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
6512
6632
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6513
6633
|
__exportStar(require("./erro-em-tempo-de-execucao"), exports);
|
|
6514
6634
|
|
|
6515
|
-
},{"./erro-em-tempo-de-execucao":
|
|
6635
|
+
},{"./erro-em-tempo-de-execucao":110}],112:[function(require,module,exports){
|
|
6516
6636
|
"use strict";
|
|
6517
6637
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
6518
6638
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -7200,7 +7320,7 @@ class FormatadorDelegua {
|
|
|
7200
7320
|
}
|
|
7201
7321
|
exports.FormatadorDelegua = FormatadorDelegua;
|
|
7202
7322
|
|
|
7203
|
-
},{"../construtos":
|
|
7323
|
+
},{"../construtos":44,"../tipos-de-simbolos/delegua":164}],113:[function(require,module,exports){
|
|
7204
7324
|
"use strict";
|
|
7205
7325
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7206
7326
|
if (k2 === undefined) k2 = k;
|
|
@@ -7219,7 +7339,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
7219
7339
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7220
7340
|
__exportStar(require("./formatador-delegua"), exports);
|
|
7221
7341
|
|
|
7222
|
-
},{"./formatador-delegua":
|
|
7342
|
+
},{"./formatador-delegua":112}],114:[function(require,module,exports){
|
|
7223
7343
|
"use strict";
|
|
7224
7344
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7225
7345
|
exports.uuidv4 = uuidv4;
|
|
@@ -7243,7 +7363,7 @@ function uuidv4() {
|
|
|
7243
7363
|
});
|
|
7244
7364
|
}
|
|
7245
7365
|
|
|
7246
|
-
},{}],
|
|
7366
|
+
},{}],115:[function(require,module,exports){
|
|
7247
7367
|
"use strict";
|
|
7248
7368
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7249
7369
|
if (k2 === undefined) k2 = k;
|
|
@@ -7272,7 +7392,7 @@ __exportStar(require("./interpretador"), exports);
|
|
|
7272
7392
|
__exportStar(require("./lexador"), exports);
|
|
7273
7393
|
__exportStar(require("./tradutores"), exports);
|
|
7274
7394
|
|
|
7275
|
-
},{"./avaliador-sintatico":8,"./construtos":
|
|
7395
|
+
},{"./avaliador-sintatico":8,"./construtos":44,"./declaracoes":82,"./depuracao":97,"./formatadores":113,"./interfaces":122,"./interpretador":140,"./lexador":153,"./tradutores":170}],116:[function(require,module,exports){
|
|
7276
7396
|
"use strict";
|
|
7277
7397
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
7278
7398
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -7399,15 +7519,15 @@ function tipoInferenciaParaTipoDadosElementar(tipoInferencia) {
|
|
|
7399
7519
|
}
|
|
7400
7520
|
}
|
|
7401
7521
|
|
|
7402
|
-
},{"./tipos-de-dados/delegua":
|
|
7522
|
+
},{"./tipos-de-dados/delegua":161,"./tipos-de-dados/primitivos":162,"./tipos-de-simbolos/delegua":164}],117:[function(require,module,exports){
|
|
7403
7523
|
"use strict";
|
|
7404
7524
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7405
7525
|
|
|
7406
|
-
},{}],
|
|
7526
|
+
},{}],118:[function(require,module,exports){
|
|
7407
7527
|
"use strict";
|
|
7408
7528
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7409
7529
|
|
|
7410
|
-
},{}],
|
|
7530
|
+
},{}],119:[function(require,module,exports){
|
|
7411
7531
|
"use strict";
|
|
7412
7532
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7413
7533
|
exports.DiagnosticoSeveridade = void 0;
|
|
@@ -7419,7 +7539,7 @@ var DiagnosticoSeveridade;
|
|
|
7419
7539
|
DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
|
|
7420
7540
|
})(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
|
|
7421
7541
|
|
|
7422
|
-
},{}],
|
|
7542
|
+
},{}],120:[function(require,module,exports){
|
|
7423
7543
|
"use strict";
|
|
7424
7544
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7425
7545
|
if (k2 === undefined) k2 = k;
|
|
@@ -7438,11 +7558,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
7438
7558
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7439
7559
|
__exportStar(require("./diagnostico-analisador-semantico"), exports);
|
|
7440
7560
|
|
|
7441
|
-
},{"./diagnostico-analisador-semantico":
|
|
7561
|
+
},{"./diagnostico-analisador-semantico":119}],121:[function(require,module,exports){
|
|
7442
7562
|
"use strict";
|
|
7443
7563
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7444
7564
|
|
|
7445
|
-
},{}],
|
|
7565
|
+
},{}],122:[function(require,module,exports){
|
|
7446
7566
|
"use strict";
|
|
7447
7567
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7448
7568
|
if (k2 === undefined) k2 = k;
|
|
@@ -7477,11 +7597,7 @@ __exportStar(require("./construtos"), exports);
|
|
|
7477
7597
|
__exportStar(require("./erros"), exports);
|
|
7478
7598
|
__exportStar(require("./retornos"), exports);
|
|
7479
7599
|
|
|
7480
|
-
},{"./avaliador-sintatico-interface":
|
|
7481
|
-
"use strict";
|
|
7482
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7483
|
-
|
|
7484
|
-
},{}],123:[function(require,module,exports){
|
|
7600
|
+
},{"./avaliador-sintatico-interface":117,"./construtos":118,"./erros":120,"./formatador-comum-interface":121,"./interpretador-com-depuracao-interface":123,"./interpretador-interface":124,"./lexador-interface":125,"./parametro-interface":126,"./pilha-interface":127,"./primitiva-interface":128,"./resolvedor-interface":129,"./retornos":130,"./retornos/retorno-execucao-interface":132,"./simbolo-interface":135,"./tradutor-interface":136,"./variavel-interface":137,"./visitante-comum-interface":138}],123:[function(require,module,exports){
|
|
7485
7601
|
"use strict";
|
|
7486
7602
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7487
7603
|
|
|
@@ -7507,6 +7623,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
7507
7623
|
|
|
7508
7624
|
},{}],129:[function(require,module,exports){
|
|
7509
7625
|
"use strict";
|
|
7626
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7627
|
+
|
|
7628
|
+
},{}],130:[function(require,module,exports){
|
|
7629
|
+
"use strict";
|
|
7510
7630
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7511
7631
|
if (k2 === undefined) k2 = k;
|
|
7512
7632
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -7527,11 +7647,7 @@ __exportStar(require("./retorno-execucao-interface"), exports);
|
|
|
7527
7647
|
__exportStar(require("./retorno-interpretador"), exports);
|
|
7528
7648
|
__exportStar(require("./retorno-lexador"), exports);
|
|
7529
7649
|
|
|
7530
|
-
},{"./retorno-avaliador-sintatico":
|
|
7531
|
-
"use strict";
|
|
7532
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7533
|
-
|
|
7534
|
-
},{}],131:[function(require,module,exports){
|
|
7650
|
+
},{"./retorno-avaliador-sintatico":131,"./retorno-execucao-interface":132,"./retorno-interpretador":133,"./retorno-lexador":134}],131:[function(require,module,exports){
|
|
7535
7651
|
"use strict";
|
|
7536
7652
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7537
7653
|
|
|
@@ -7561,6 +7677,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
7561
7677
|
|
|
7562
7678
|
},{}],138:[function(require,module,exports){
|
|
7563
7679
|
"use strict";
|
|
7680
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7681
|
+
|
|
7682
|
+
},{}],139:[function(require,module,exports){
|
|
7683
|
+
"use strict";
|
|
7564
7684
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7565
7685
|
if (k2 === undefined) k2 = k;
|
|
7566
7686
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -7612,7 +7732,7 @@ function carregarBibliotecasGlobais(pilhaEscoposExecucao) {
|
|
|
7612
7732
|
pilhaEscoposExecucao.definirVariavel('tupla', new funcao_padrao_1.FuncaoPadrao(1, bibliotecaGlobal.tupla));
|
|
7613
7733
|
}
|
|
7614
7734
|
|
|
7615
|
-
},{"../bibliotecas/biblioteca-global":17,"../estruturas/funcao-padrao":
|
|
7735
|
+
},{"../bibliotecas/biblioteca-global":17,"../estruturas/funcao-padrao":104}],140:[function(require,module,exports){
|
|
7616
7736
|
"use strict";
|
|
7617
7737
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7618
7738
|
if (k2 === undefined) k2 = k;
|
|
@@ -7633,7 +7753,7 @@ __exportStar(require("./interpretador"), exports);
|
|
|
7633
7753
|
__exportStar(require("./interpretador-base"), exports);
|
|
7634
7754
|
__exportStar(require("./interpretador-com-depuracao"), exports);
|
|
7635
7755
|
|
|
7636
|
-
},{"./interpretador":
|
|
7756
|
+
},{"./interpretador":143,"./interpretador-base":141,"./interpretador-com-depuracao":142}],141:[function(require,module,exports){
|
|
7637
7757
|
(function (process){(function (){
|
|
7638
7758
|
"use strict";
|
|
7639
7759
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
@@ -7769,22 +7889,11 @@ class InterpretadorBase {
|
|
|
7769
7889
|
visitarExpressaoExpressaoRegular(expressao) {
|
|
7770
7890
|
return Promise.resolve(this.textoParaRegex(expressao.valor));
|
|
7771
7891
|
}
|
|
7772
|
-
|
|
7773
|
-
|
|
7774
|
-
if (tipoDe instanceof construtos_1.AcessoIndiceVariavel ||
|
|
7775
|
-
tipoDe instanceof construtos_1.Agrupamento ||
|
|
7776
|
-
tipoDe instanceof construtos_1.Binario ||
|
|
7777
|
-
tipoDe instanceof construtos_1.Chamada ||
|
|
7778
|
-
tipoDe instanceof construtos_1.Dicionario ||
|
|
7779
|
-
tipoDe instanceof construtos_1.TipoDe ||
|
|
7780
|
-
tipoDe instanceof construtos_1.Unario ||
|
|
7781
|
-
tipoDe instanceof construtos_1.Variavel) {
|
|
7782
|
-
tipoDe = await this.avaliar(tipoDe);
|
|
7783
|
-
return tipoDe.tipo || (0, inferenciador_1.inferirTipoVariavel)(tipoDe);
|
|
7784
|
-
}
|
|
7785
|
-
return (0, inferenciador_1.inferirTipoVariavel)((tipoDe === null || tipoDe === void 0 ? void 0 : tipoDe.valores) || tipoDe);
|
|
7892
|
+
visitarExpressaoTipoDe(expressao) {
|
|
7893
|
+
throw new Error('Método não implementado.');
|
|
7786
7894
|
}
|
|
7787
7895
|
// TODO: Depreciado. Priorizar `visitarExpressaoTipoDe`.
|
|
7896
|
+
// Estudar remoção.
|
|
7788
7897
|
async visitarExpressaoQualTipo(expressao) {
|
|
7789
7898
|
throw new Error('Método não implementado.');
|
|
7790
7899
|
}
|
|
@@ -9069,7 +9178,7 @@ class InterpretadorBase {
|
|
|
9069
9178
|
exports.InterpretadorBase = InterpretadorBase;
|
|
9070
9179
|
|
|
9071
9180
|
}).call(this)}).call(this,require('_process'))
|
|
9072
|
-
},{"../avaliador-sintatico":8,"../bibliotecas/primitivas-dicionario":18,"../bibliotecas/primitivas-numero":19,"../bibliotecas/primitivas-texto":20,"../bibliotecas/primitivas-vetor":21,"../construtos":
|
|
9181
|
+
},{"../avaliador-sintatico":8,"../bibliotecas/primitivas-dicionario":18,"../bibliotecas/primitivas-numero":19,"../bibliotecas/primitivas-texto":20,"../bibliotecas/primitivas-vetor":21,"../construtos":44,"../espaco-variaveis":99,"../estruturas":105,"../estruturas/metodo-primitiva":106,"../excecoes":111,"../inferenciador":116,"../lexador":153,"../quebras":160,"../tipos-de-dados/delegua":161,"../tipos-de-dados/primitivos":162,"../tipos-de-simbolos/delegua":164,"./comum":139,"./pilha-escopos-execucao":144,"_process":383,"browser-process-hrtime":340}],142:[function(require,module,exports){
|
|
9073
9182
|
"use strict";
|
|
9074
9183
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
9075
9184
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -9641,7 +9750,7 @@ class InterpretadorComDepuracao extends interpretador_base_1.InterpretadorBase {
|
|
|
9641
9750
|
}
|
|
9642
9751
|
exports.InterpretadorComDepuracao = InterpretadorComDepuracao;
|
|
9643
9752
|
|
|
9644
|
-
},{"../declaracoes":
|
|
9753
|
+
},{"../declaracoes":82,"../espaco-variaveis":99,"../inferenciador":116,"../quebras":160,"./interpretador-base":141,"lodash":376}],143:[function(require,module,exports){
|
|
9645
9754
|
"use strict";
|
|
9646
9755
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
9647
9756
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -9808,10 +9917,49 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
9808
9917
|
}
|
|
9809
9918
|
return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(null, `Método para objeto ou primitiva não encontrado: ${expressao.nomePropriedade}.`, expressao.linha));
|
|
9810
9919
|
}
|
|
9920
|
+
async visitarExpressaoTipoDe(expressao) {
|
|
9921
|
+
let valorTipoDe = expressao.valor;
|
|
9922
|
+
switch (valorTipoDe.constructor.name) {
|
|
9923
|
+
case 'AcessoIndiceVariavel':
|
|
9924
|
+
case 'Agrupamento':
|
|
9925
|
+
case 'Binario':
|
|
9926
|
+
case 'Chamada':
|
|
9927
|
+
case 'Dicionario':
|
|
9928
|
+
case 'Unario':
|
|
9929
|
+
valorTipoDe = await this.avaliar(valorTipoDe);
|
|
9930
|
+
return valorTipoDe.tipo || (0, inferenciador_1.inferirTipoVariavel)(valorTipoDe);
|
|
9931
|
+
case 'AcessoMetodo':
|
|
9932
|
+
const acessoMetodo = valorTipoDe;
|
|
9933
|
+
return `método<${acessoMetodo.tipoRetornoMetodo}>`;
|
|
9934
|
+
case 'AcessoPropriedade':
|
|
9935
|
+
const acessoPropriedade = valorTipoDe;
|
|
9936
|
+
return acessoPropriedade.tipoRetornoPropriedade;
|
|
9937
|
+
case 'AcessoMetodoOuPropriedade':
|
|
9938
|
+
// TODO: Deve ser removido mais futuramente.
|
|
9939
|
+
// Apenas `AcessoMetodo` e `AcessoPropriedade` devem funcionar aqui.
|
|
9940
|
+
throw new excecoes_1.ErroEmTempoDeExecucao(expressao.simbolo, "Não deveria cair aqui.");
|
|
9941
|
+
case 'Escreva':
|
|
9942
|
+
return 'função<vazio>';
|
|
9943
|
+
case 'Leia':
|
|
9944
|
+
return 'função<texto>';
|
|
9945
|
+
case 'Literal':
|
|
9946
|
+
const tipoLiteral = valorTipoDe;
|
|
9947
|
+
return tipoLiteral.tipo;
|
|
9948
|
+
case 'TipoDe':
|
|
9949
|
+
const alvoTipoDe = await this.avaliar(valorTipoDe);
|
|
9950
|
+
return `tipo de<${alvoTipoDe}>`;
|
|
9951
|
+
case 'Variavel':
|
|
9952
|
+
return valorTipoDe.tipo;
|
|
9953
|
+
case 'Vetor':
|
|
9954
|
+
return (0, inferenciador_1.inferirTipoVariavel)(valorTipoDe === null || valorTipoDe === void 0 ? void 0 : valorTipoDe.valores);
|
|
9955
|
+
default:
|
|
9956
|
+
return (0, inferenciador_1.inferirTipoVariavel)(valorTipoDe);
|
|
9957
|
+
}
|
|
9958
|
+
}
|
|
9811
9959
|
}
|
|
9812
9960
|
exports.Interpretador = Interpretador;
|
|
9813
9961
|
|
|
9814
|
-
},{"../bibliotecas/primitivas-dicionario":18,"../bibliotecas/primitivas-numero":19,"../bibliotecas/primitivas-texto":20,"../bibliotecas/primitivas-vetor":21,"../estruturas":
|
|
9962
|
+
},{"../bibliotecas/primitivas-dicionario":18,"../bibliotecas/primitivas-numero":19,"../bibliotecas/primitivas-texto":20,"../bibliotecas/primitivas-vetor":21,"../estruturas":105,"../excecoes":111,"../inferenciador":116,"../tipos-de-dados/delegua":161,"../tipos-de-dados/primitivos":162,"./interpretador-base":141}],144:[function(require,module,exports){
|
|
9815
9963
|
"use strict";
|
|
9816
9964
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
9817
9965
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -10062,7 +10210,7 @@ class PilhaEscoposExecucao {
|
|
|
10062
10210
|
}
|
|
10063
10211
|
exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
|
|
10064
10212
|
|
|
10065
|
-
},{"../estruturas":
|
|
10213
|
+
},{"../estruturas":105,"../excecoes":111,"../inferenciador":116,"../lexador":153,"../tipos-de-dados/delegua":161}],145:[function(require,module,exports){
|
|
10066
10214
|
"use strict";
|
|
10067
10215
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10068
10216
|
if (k2 === undefined) k2 = k;
|
|
@@ -10084,7 +10232,7 @@ __exportStar(require("./lexador-pitugues"), exports);
|
|
|
10084
10232
|
__exportStar(require("./lexador-guarani"), exports);
|
|
10085
10233
|
__exportStar(require("./lexador-portugol-ipt"), exports);
|
|
10086
10234
|
|
|
10087
|
-
},{"./lexador-egua-classico":
|
|
10235
|
+
},{"./lexador-egua-classico":146,"./lexador-guarani":147,"./lexador-pitugues":148,"./lexador-portugol-ipt":149}],146:[function(require,module,exports){
|
|
10088
10236
|
"use strict";
|
|
10089
10237
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
10090
10238
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -10372,7 +10520,7 @@ class LexadorEguaClassico {
|
|
|
10372
10520
|
}
|
|
10373
10521
|
exports.LexadorEguaClassico = LexadorEguaClassico;
|
|
10374
10522
|
|
|
10375
|
-
},{"../../tipos-de-simbolos/egua-classico":
|
|
10523
|
+
},{"../../tipos-de-simbolos/egua-classico":165,"../simbolo":159,"./palavras-reservadas/egua-classico":150}],147:[function(require,module,exports){
|
|
10376
10524
|
"use strict";
|
|
10377
10525
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
10378
10526
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -10487,7 +10635,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
|
|
|
10487
10635
|
}
|
|
10488
10636
|
exports.LexadorGuarani = LexadorGuarani;
|
|
10489
10637
|
|
|
10490
|
-
},{"../../tipos-de-simbolos/guarani":
|
|
10638
|
+
},{"../../tipos-de-simbolos/guarani":166,"../lexador-base":155,"./palavras-reservadas/guarani":151}],148:[function(require,module,exports){
|
|
10491
10639
|
"use strict";
|
|
10492
10640
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
10493
10641
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -10887,7 +11035,7 @@ class LexadorPitugues {
|
|
|
10887
11035
|
}
|
|
10888
11036
|
exports.LexadorPitugues = LexadorPitugues;
|
|
10889
11037
|
|
|
10890
|
-
},{"../../tipos-de-simbolos/pitugues":
|
|
11038
|
+
},{"../../tipos-de-simbolos/pitugues":168,"../palavras-reservadas":158,"../simbolo":159,"browser-process-hrtime":340}],149:[function(require,module,exports){
|
|
10891
11039
|
"use strict";
|
|
10892
11040
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
10893
11041
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -11126,7 +11274,7 @@ class LexadorPortugolIpt {
|
|
|
11126
11274
|
}
|
|
11127
11275
|
exports.LexadorPortugolIpt = LexadorPortugolIpt;
|
|
11128
11276
|
|
|
11129
|
-
},{"../../tipos-de-simbolos/portugol-ipt":
|
|
11277
|
+
},{"../../tipos-de-simbolos/portugol-ipt":169,"../simbolo":159,"./palavras-reservadas/portugol-ipt":152}],150:[function(require,module,exports){
|
|
11130
11278
|
"use strict";
|
|
11131
11279
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11132
11280
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -11167,7 +11315,7 @@ exports.palavrasReservadas = {
|
|
|
11167
11315
|
verdadeiro: egua_classico_1.default.VERDADEIRO,
|
|
11168
11316
|
};
|
|
11169
11317
|
|
|
11170
|
-
},{"../../../tipos-de-simbolos/egua-classico":
|
|
11318
|
+
},{"../../../tipos-de-simbolos/egua-classico":165}],151:[function(require,module,exports){
|
|
11171
11319
|
"use strict";
|
|
11172
11320
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11173
11321
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -11179,7 +11327,7 @@ exports.palavrasReservadas = {
|
|
|
11179
11327
|
hai: guarani_1.default.HAI,
|
|
11180
11328
|
};
|
|
11181
11329
|
|
|
11182
|
-
},{"../../../tipos-de-simbolos/guarani":
|
|
11330
|
+
},{"../../../tipos-de-simbolos/guarani":166}],152:[function(require,module,exports){
|
|
11183
11331
|
"use strict";
|
|
11184
11332
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11185
11333
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -11201,7 +11349,7 @@ exports.palavrasReservadas = {
|
|
|
11201
11349
|
senão: portugol_ipt_1.default.SENAO,
|
|
11202
11350
|
};
|
|
11203
11351
|
|
|
11204
|
-
},{"../../../tipos-de-simbolos/portugol-ipt":
|
|
11352
|
+
},{"../../../tipos-de-simbolos/portugol-ipt":169}],153:[function(require,module,exports){
|
|
11205
11353
|
"use strict";
|
|
11206
11354
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
11207
11355
|
if (k2 === undefined) k2 = k;
|
|
@@ -11223,7 +11371,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
|
|
|
11223
11371
|
__exportStar(require("./micro-lexador"), exports);
|
|
11224
11372
|
__exportStar(require("./simbolo"), exports);
|
|
11225
11373
|
|
|
11226
|
-
},{"./lexador":
|
|
11374
|
+
},{"./lexador":156,"./lexador-base-linha-unica":154,"./micro-lexador":157,"./simbolo":159}],154:[function(require,module,exports){
|
|
11227
11375
|
"use strict";
|
|
11228
11376
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11229
11377
|
exports.LexadorBaseLinhaUnica = void 0;
|
|
@@ -11307,7 +11455,7 @@ class LexadorBaseLinhaUnica {
|
|
|
11307
11455
|
}
|
|
11308
11456
|
exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
|
|
11309
11457
|
|
|
11310
|
-
},{"./simbolo":
|
|
11458
|
+
},{"./simbolo":159}],155:[function(require,module,exports){
|
|
11311
11459
|
"use strict";
|
|
11312
11460
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11313
11461
|
exports.LexadorBase = void 0;
|
|
@@ -11421,7 +11569,7 @@ class LexadorBase {
|
|
|
11421
11569
|
}
|
|
11422
11570
|
exports.LexadorBase = LexadorBase;
|
|
11423
11571
|
|
|
11424
|
-
},{"./simbolo":
|
|
11572
|
+
},{"./simbolo":159}],156:[function(require,module,exports){
|
|
11425
11573
|
"use strict";
|
|
11426
11574
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11427
11575
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -11866,7 +12014,7 @@ class Lexador {
|
|
|
11866
12014
|
}
|
|
11867
12015
|
exports.Lexador = Lexador;
|
|
11868
12016
|
|
|
11869
|
-
},{"../tipos-de-simbolos/delegua":
|
|
12017
|
+
},{"../tipos-de-simbolos/delegua":164,"./palavras-reservadas":158,"./simbolo":159,"browser-process-hrtime":340}],157:[function(require,module,exports){
|
|
11870
12018
|
"use strict";
|
|
11871
12019
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11872
12020
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -12079,7 +12227,7 @@ class MicroLexador {
|
|
|
12079
12227
|
}
|
|
12080
12228
|
exports.MicroLexador = MicroLexador;
|
|
12081
12229
|
|
|
12082
|
-
},{"../tipos-de-simbolos/microgramaticas/delegua":
|
|
12230
|
+
},{"../tipos-de-simbolos/microgramaticas/delegua":167,"./palavras-reservadas":158,"./simbolo":159}],158:[function(require,module,exports){
|
|
12083
12231
|
"use strict";
|
|
12084
12232
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12085
12233
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -12142,7 +12290,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
12142
12290
|
verdadeiro: delegua_1.default.VERDADEIRO,
|
|
12143
12291
|
};
|
|
12144
12292
|
|
|
12145
|
-
},{"../tipos-de-simbolos/delegua":
|
|
12293
|
+
},{"../tipos-de-simbolos/delegua":164}],159:[function(require,module,exports){
|
|
12146
12294
|
"use strict";
|
|
12147
12295
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12148
12296
|
exports.Simbolo = void 0;
|
|
@@ -12160,7 +12308,7 @@ class Simbolo {
|
|
|
12160
12308
|
}
|
|
12161
12309
|
exports.Simbolo = Simbolo;
|
|
12162
12310
|
|
|
12163
|
-
},{}],
|
|
12311
|
+
},{}],160:[function(require,module,exports){
|
|
12164
12312
|
"use strict";
|
|
12165
12313
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12166
12314
|
exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
|
|
@@ -12181,7 +12329,7 @@ class ContinuarQuebra extends Quebra {
|
|
|
12181
12329
|
}
|
|
12182
12330
|
exports.ContinuarQuebra = ContinuarQuebra;
|
|
12183
12331
|
|
|
12184
|
-
},{}],
|
|
12332
|
+
},{}],161:[function(require,module,exports){
|
|
12185
12333
|
"use strict";
|
|
12186
12334
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12187
12335
|
exports.default = {
|
|
@@ -12205,7 +12353,7 @@ exports.default = {
|
|
|
12205
12353
|
VETOR_TEXTO: 'texto[]',
|
|
12206
12354
|
};
|
|
12207
12355
|
|
|
12208
|
-
},{}],
|
|
12356
|
+
},{}],162:[function(require,module,exports){
|
|
12209
12357
|
"use strict";
|
|
12210
12358
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12211
12359
|
exports.default = {
|
|
@@ -12224,7 +12372,7 @@ exports.default = {
|
|
|
12224
12372
|
TEXTO: 'string',
|
|
12225
12373
|
};
|
|
12226
12374
|
|
|
12227
|
-
},{}],
|
|
12375
|
+
},{}],163:[function(require,module,exports){
|
|
12228
12376
|
"use strict";
|
|
12229
12377
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12230
12378
|
exports.default = {
|
|
@@ -12250,7 +12398,7 @@ exports.default = {
|
|
|
12250
12398
|
VIRGULA: 'VIRGULA',
|
|
12251
12399
|
};
|
|
12252
12400
|
|
|
12253
|
-
},{}],
|
|
12401
|
+
},{}],164:[function(require,module,exports){
|
|
12254
12402
|
"use strict";
|
|
12255
12403
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12256
12404
|
exports.default = {
|
|
@@ -12344,7 +12492,7 @@ exports.default = {
|
|
|
12344
12492
|
VIRGULA: 'VIRGULA',
|
|
12345
12493
|
};
|
|
12346
12494
|
|
|
12347
|
-
},{}],
|
|
12495
|
+
},{}],165:[function(require,module,exports){
|
|
12348
12496
|
"use strict";
|
|
12349
12497
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12350
12498
|
exports.default = {
|
|
@@ -12422,7 +12570,7 @@ exports.default = {
|
|
|
12422
12570
|
VIRGULA: 'VIRGULA',
|
|
12423
12571
|
};
|
|
12424
12572
|
|
|
12425
|
-
},{}],
|
|
12573
|
+
},{}],166:[function(require,module,exports){
|
|
12426
12574
|
"use strict";
|
|
12427
12575
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12428
12576
|
exports.default = {
|
|
@@ -12439,7 +12587,7 @@ exports.default = {
|
|
|
12439
12587
|
VIRGULA: 'VIRGULA',
|
|
12440
12588
|
};
|
|
12441
12589
|
|
|
12442
|
-
},{}],
|
|
12590
|
+
},{}],167:[function(require,module,exports){
|
|
12443
12591
|
"use strict";
|
|
12444
12592
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12445
12593
|
exports.default = {
|
|
@@ -12488,7 +12636,7 @@ exports.default = {
|
|
|
12488
12636
|
VIRGULA: 'VIRGULA',
|
|
12489
12637
|
};
|
|
12490
12638
|
|
|
12491
|
-
},{}],
|
|
12639
|
+
},{}],168:[function(require,module,exports){
|
|
12492
12640
|
"use strict";
|
|
12493
12641
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12494
12642
|
exports.default = {
|
|
@@ -12566,7 +12714,7 @@ exports.default = {
|
|
|
12566
12714
|
VIRGULA: 'VIRGULA',
|
|
12567
12715
|
};
|
|
12568
12716
|
|
|
12569
|
-
},{}],
|
|
12717
|
+
},{}],169:[function(require,module,exports){
|
|
12570
12718
|
"use strict";
|
|
12571
12719
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12572
12720
|
exports.default = {
|
|
@@ -12605,7 +12753,7 @@ exports.default = {
|
|
|
12605
12753
|
VIRGULA: 'VIRGULA',
|
|
12606
12754
|
};
|
|
12607
12755
|
|
|
12608
|
-
},{}],
|
|
12756
|
+
},{}],170:[function(require,module,exports){
|
|
12609
12757
|
"use strict";
|
|
12610
12758
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
12611
12759
|
if (k2 === undefined) k2 = k;
|
|
@@ -12629,7 +12777,7 @@ __exportStar(require("./tradutor-python"), exports);
|
|
|
12629
12777
|
__exportStar(require("./tradutor-reverso-javascript"), exports);
|
|
12630
12778
|
__exportStar(require("./tradutor-reverso-python"), exports);
|
|
12631
12779
|
|
|
12632
|
-
},{"./tradutor-assemblyscript":
|
|
12780
|
+
},{"./tradutor-assemblyscript":173,"./tradutor-javascript":174,"./tradutor-portugol-ipt":175,"./tradutor-python":176,"./tradutor-reverso-javascript":177,"./tradutor-reverso-python":178}],171:[function(require,module,exports){
|
|
12633
12781
|
"use strict";
|
|
12634
12782
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
12635
12783
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -13858,7 +14006,7 @@ __decorate([
|
|
|
13858
14006
|
Decorators_1.Override
|
|
13859
14007
|
], Python3Lexer.prototype, "nextToken", null);
|
|
13860
14008
|
|
|
13861
|
-
},{"./python3-parser":
|
|
14009
|
+
},{"./python3-parser":172,"antlr4ts/CommonToken":188,"antlr4ts/Decorators":192,"antlr4ts/Lexer":200,"antlr4ts/Token":217,"antlr4ts/VocabularyImpl":223,"antlr4ts/atn/ATNDeserializer":229,"antlr4ts/atn/LexerATNSimulator":250,"antlr4ts/misc/Utils":311}],172:[function(require,module,exports){
|
|
13862
14010
|
"use strict";
|
|
13863
14011
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
13864
14012
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -25086,7 +25234,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
25086
25234
|
}
|
|
25087
25235
|
exports.Yield_argContext = Yield_argContext;
|
|
25088
25236
|
|
|
25089
|
-
},{"antlr4ts/FailedPredicateException":
|
|
25237
|
+
},{"antlr4ts/FailedPredicateException":196,"antlr4ts/NoViableAltException":204,"antlr4ts/Parser":205,"antlr4ts/ParserRuleContext":208,"antlr4ts/RecognitionException":211,"antlr4ts/Token":217,"antlr4ts/VocabularyImpl":223,"antlr4ts/atn/ATN":225,"antlr4ts/atn/ATNDeserializer":229,"antlr4ts/atn/ParserATNSimulator":266,"antlr4ts/misc/Utils":311}],173:[function(require,module,exports){
|
|
25090
25238
|
"use strict";
|
|
25091
25239
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25092
25240
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -25683,7 +25831,7 @@ class TradutorAssemblyScript {
|
|
|
25683
25831
|
}
|
|
25684
25832
|
exports.TradutorAssemblyScript = TradutorAssemblyScript;
|
|
25685
25833
|
|
|
25686
|
-
},{"../construtos":
|
|
25834
|
+
},{"../construtos":44,"../declaracoes":82,"../tipos-de-simbolos/delegua":164}],174:[function(require,module,exports){
|
|
25687
25835
|
"use strict";
|
|
25688
25836
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25689
25837
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26302,7 +26450,7 @@ class TradutorJavaScript {
|
|
|
26302
26450
|
}
|
|
26303
26451
|
exports.TradutorJavaScript = TradutorJavaScript;
|
|
26304
26452
|
|
|
26305
|
-
},{"../construtos":
|
|
26453
|
+
},{"../construtos":44,"../declaracoes":82,"../tipos-de-simbolos/delegua":164}],175:[function(require,module,exports){
|
|
26306
26454
|
"use strict";
|
|
26307
26455
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26308
26456
|
exports.TradutorPortugolIpt = void 0;
|
|
@@ -26364,7 +26512,7 @@ class TradutorPortugolIpt {
|
|
|
26364
26512
|
}
|
|
26365
26513
|
exports.TradutorPortugolIpt = TradutorPortugolIpt;
|
|
26366
26514
|
|
|
26367
|
-
},{"../avaliador-sintatico/dialetos":6,"../lexador/dialetos":
|
|
26515
|
+
},{"../avaliador-sintatico/dialetos":6,"../lexador/dialetos":145}],176:[function(require,module,exports){
|
|
26368
26516
|
"use strict";
|
|
26369
26517
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26370
26518
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26906,15 +27054,20 @@ class TradutorPython {
|
|
|
26906
27054
|
}
|
|
26907
27055
|
traduzir(declaracoes) {
|
|
26908
27056
|
let resultado = '';
|
|
26909
|
-
|
|
26910
|
-
|
|
27057
|
+
try {
|
|
27058
|
+
for (const declaracao of declaracoes) {
|
|
27059
|
+
resultado += `${this.dicionarioDeclaracoes[declaracao.constructor.name](declaracao)} \n`;
|
|
27060
|
+
}
|
|
27061
|
+
}
|
|
27062
|
+
catch (erro) {
|
|
27063
|
+
console.error(`Erro em tradução para Python: ${erro}`);
|
|
26911
27064
|
}
|
|
26912
27065
|
return resultado.replace(/\n{2,}/g, '\n');
|
|
26913
27066
|
}
|
|
26914
27067
|
}
|
|
26915
27068
|
exports.TradutorPython = TradutorPython;
|
|
26916
27069
|
|
|
26917
|
-
},{"../construtos":
|
|
27070
|
+
},{"../construtos":44,"../declaracoes":82,"../tipos-de-simbolos/delegua":164}],177:[function(require,module,exports){
|
|
26918
27071
|
"use strict";
|
|
26919
27072
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26920
27073
|
exports.TradutorReversoJavaScript = void 0;
|
|
@@ -27308,7 +27461,7 @@ class TradutorReversoJavaScript {
|
|
|
27308
27461
|
}
|
|
27309
27462
|
exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
|
|
27310
27463
|
|
|
27311
|
-
},{}],
|
|
27464
|
+
},{}],178:[function(require,module,exports){
|
|
27312
27465
|
"use strict";
|
|
27313
27466
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27314
27467
|
exports.TradutorReversoPython = void 0;
|
|
@@ -27381,7 +27534,7 @@ class TradutorReversoPython {
|
|
|
27381
27534
|
}
|
|
27382
27535
|
exports.TradutorReversoPython = TradutorReversoPython;
|
|
27383
27536
|
|
|
27384
|
-
},{"./python/python3-lexer":
|
|
27537
|
+
},{"./python/python3-lexer":171,"./python/python3-parser":172,"antlr4ts":294,"antlr4ts/tree/ParseTreeWalker":313}],179:[function(require,module,exports){
|
|
27385
27538
|
"use strict";
|
|
27386
27539
|
/*!
|
|
27387
27540
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -27389,7 +27542,7 @@ exports.TradutorReversoPython = TradutorReversoPython;
|
|
|
27389
27542
|
*/
|
|
27390
27543
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27391
27544
|
|
|
27392
|
-
},{}],
|
|
27545
|
+
},{}],180:[function(require,module,exports){
|
|
27393
27546
|
"use strict";
|
|
27394
27547
|
/*!
|
|
27395
27548
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -27397,7 +27550,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
27397
27550
|
*/
|
|
27398
27551
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27399
27552
|
|
|
27400
|
-
},{}],
|
|
27553
|
+
},{}],181:[function(require,module,exports){
|
|
27401
27554
|
"use strict";
|
|
27402
27555
|
/*!
|
|
27403
27556
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -27559,7 +27712,7 @@ __decorate([
|
|
|
27559
27712
|
], ANTLRInputStream.prototype, "toString", null);
|
|
27560
27713
|
exports.ANTLRInputStream = ANTLRInputStream;
|
|
27561
27714
|
|
|
27562
|
-
},{"./Decorators":
|
|
27715
|
+
},{"./Decorators":192,"./IntStream":198,"assert":335}],182:[function(require,module,exports){
|
|
27563
27716
|
"use strict";
|
|
27564
27717
|
/*!
|
|
27565
27718
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -27642,7 +27795,7 @@ __decorate([
|
|
|
27642
27795
|
], BailErrorStrategy.prototype, "sync", null);
|
|
27643
27796
|
exports.BailErrorStrategy = BailErrorStrategy;
|
|
27644
27797
|
|
|
27645
|
-
},{"./Decorators":
|
|
27798
|
+
},{"./Decorators":192,"./DefaultErrorStrategy":193,"./InputMismatchException":197,"./misc/ParseCancellationException":309}],183:[function(require,module,exports){
|
|
27646
27799
|
"use strict";
|
|
27647
27800
|
/*!
|
|
27648
27801
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -28132,7 +28285,7 @@ BufferedTokenStream = __decorate([
|
|
|
28132
28285
|
], BufferedTokenStream);
|
|
28133
28286
|
exports.BufferedTokenStream = BufferedTokenStream;
|
|
28134
28287
|
|
|
28135
|
-
},{"./CommonToken":
|
|
28288
|
+
},{"./CommonToken":188,"./Decorators":192,"./Lexer":200,"./Token":217,"./misc/Interval":304,"assert":335}],184:[function(require,module,exports){
|
|
28136
28289
|
"use strict";
|
|
28137
28290
|
/*!
|
|
28138
28291
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -28140,7 +28293,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
|
|
|
28140
28293
|
*/
|
|
28141
28294
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28142
28295
|
|
|
28143
|
-
},{}],
|
|
28296
|
+
},{}],185:[function(require,module,exports){
|
|
28144
28297
|
"use strict";
|
|
28145
28298
|
/*!
|
|
28146
28299
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -28274,7 +28427,7 @@ var CharStreams;
|
|
|
28274
28427
|
// }
|
|
28275
28428
|
})(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
|
|
28276
28429
|
|
|
28277
|
-
},{"./CodePointBuffer":
|
|
28430
|
+
},{"./CodePointBuffer":186,"./CodePointCharStream":187,"./IntStream":198}],186:[function(require,module,exports){
|
|
28278
28431
|
"use strict";
|
|
28279
28432
|
/*!
|
|
28280
28433
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -28509,7 +28662,7 @@ exports.CodePointBuffer = CodePointBuffer;
|
|
|
28509
28662
|
CodePointBuffer.Builder = Builder;
|
|
28510
28663
|
})(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
|
|
28511
28664
|
|
|
28512
|
-
},{"./misc/Character":
|
|
28665
|
+
},{"./misc/Character":300,"assert":335}],187:[function(require,module,exports){
|
|
28513
28666
|
"use strict";
|
|
28514
28667
|
/*!
|
|
28515
28668
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -28659,7 +28812,7 @@ __decorate([
|
|
|
28659
28812
|
], CodePointCharStream.prototype, "getText", null);
|
|
28660
28813
|
exports.CodePointCharStream = CodePointCharStream;
|
|
28661
28814
|
|
|
28662
|
-
},{"./Decorators":
|
|
28815
|
+
},{"./Decorators":192,"./IntStream":198,"./misc/Interval":304,"assert":335}],188:[function(require,module,exports){
|
|
28663
28816
|
"use strict";
|
|
28664
28817
|
/*!
|
|
28665
28818
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -28889,7 +29042,7 @@ CommonToken = __decorate([
|
|
|
28889
29042
|
], CommonToken);
|
|
28890
29043
|
exports.CommonToken = CommonToken;
|
|
28891
29044
|
|
|
28892
|
-
},{"./Decorators":
|
|
29045
|
+
},{"./Decorators":192,"./Token":217,"./misc/Interval":304}],189:[function(require,module,exports){
|
|
28893
29046
|
"use strict";
|
|
28894
29047
|
/*!
|
|
28895
29048
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -28953,7 +29106,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
|
|
|
28953
29106
|
CommonTokenFactory.DEFAULT = new CommonTokenFactory();
|
|
28954
29107
|
})(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
|
|
28955
29108
|
|
|
28956
|
-
},{"./CommonToken":
|
|
29109
|
+
},{"./CommonToken":188,"./Decorators":192,"./misc/Interval":304}],190:[function(require,module,exports){
|
|
28957
29110
|
"use strict";
|
|
28958
29111
|
/*!
|
|
28959
29112
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -29080,7 +29233,7 @@ CommonTokenStream = __decorate([
|
|
|
29080
29233
|
], CommonTokenStream);
|
|
29081
29234
|
exports.CommonTokenStream = CommonTokenStream;
|
|
29082
29235
|
|
|
29083
|
-
},{"./BufferedTokenStream":
|
|
29236
|
+
},{"./BufferedTokenStream":183,"./Decorators":192,"./Token":217}],191:[function(require,module,exports){
|
|
29084
29237
|
"use strict";
|
|
29085
29238
|
/*!
|
|
29086
29239
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -29114,7 +29267,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
|
|
|
29114
29267
|
*/
|
|
29115
29268
|
ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
|
|
29116
29269
|
|
|
29117
|
-
},{}],
|
|
29270
|
+
},{}],192:[function(require,module,exports){
|
|
29118
29271
|
"use strict";
|
|
29119
29272
|
/*!
|
|
29120
29273
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -29141,7 +29294,7 @@ function SuppressWarnings(options) {
|
|
|
29141
29294
|
}
|
|
29142
29295
|
exports.SuppressWarnings = SuppressWarnings;
|
|
29143
29296
|
|
|
29144
|
-
},{}],
|
|
29297
|
+
},{}],193:[function(require,module,exports){
|
|
29145
29298
|
"use strict";
|
|
29146
29299
|
/*!
|
|
29147
29300
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -29955,7 +30108,7 @@ __decorate([
|
|
|
29955
30108
|
], DefaultErrorStrategy.prototype, "consumeUntil", null);
|
|
29956
30109
|
exports.DefaultErrorStrategy = DefaultErrorStrategy;
|
|
29957
30110
|
|
|
29958
|
-
},{"./Decorators":
|
|
30111
|
+
},{"./Decorators":192,"./FailedPredicateException":196,"./InputMismatchException":197,"./NoViableAltException":204,"./Token":217,"./atn/ATNState":231,"./atn/ATNStateType":232,"./atn/PredictionContext":272,"./misc/IntervalSet":305}],194:[function(require,module,exports){
|
|
29959
30112
|
"use strict";
|
|
29960
30113
|
/*!
|
|
29961
30114
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -30031,7 +30184,7 @@ var Dependents;
|
|
|
30031
30184
|
Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
|
|
30032
30185
|
})(Dependents = exports.Dependents || (exports.Dependents = {}));
|
|
30033
30186
|
|
|
30034
|
-
},{}],
|
|
30187
|
+
},{}],195:[function(require,module,exports){
|
|
30035
30188
|
"use strict";
|
|
30036
30189
|
/*!
|
|
30037
30190
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -30179,7 +30332,7 @@ __decorate([
|
|
|
30179
30332
|
], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
|
|
30180
30333
|
exports.DiagnosticErrorListener = DiagnosticErrorListener;
|
|
30181
30334
|
|
|
30182
|
-
},{"./Decorators":
|
|
30335
|
+
},{"./Decorators":192,"./misc/BitSet":299,"./misc/Interval":304}],196:[function(require,module,exports){
|
|
30183
30336
|
"use strict";
|
|
30184
30337
|
/*!
|
|
30185
30338
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -30244,7 +30397,7 @@ FailedPredicateException = __decorate([
|
|
|
30244
30397
|
], FailedPredicateException);
|
|
30245
30398
|
exports.FailedPredicateException = FailedPredicateException;
|
|
30246
30399
|
|
|
30247
|
-
},{"./Decorators":
|
|
30400
|
+
},{"./Decorators":192,"./RecognitionException":211,"./atn/PredicateTransition":271}],197:[function(require,module,exports){
|
|
30248
30401
|
"use strict";
|
|
30249
30402
|
/*!
|
|
30250
30403
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -30284,7 +30437,7 @@ InputMismatchException = __decorate([
|
|
|
30284
30437
|
], InputMismatchException);
|
|
30285
30438
|
exports.InputMismatchException = InputMismatchException;
|
|
30286
30439
|
|
|
30287
|
-
},{"./Decorators":
|
|
30440
|
+
},{"./Decorators":192,"./RecognitionException":211}],198:[function(require,module,exports){
|
|
30288
30441
|
"use strict";
|
|
30289
30442
|
/*!
|
|
30290
30443
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -30307,7 +30460,7 @@ var IntStream;
|
|
|
30307
30460
|
IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
|
|
30308
30461
|
})(IntStream = exports.IntStream || (exports.IntStream = {}));
|
|
30309
30462
|
|
|
30310
|
-
},{}],
|
|
30463
|
+
},{}],199:[function(require,module,exports){
|
|
30311
30464
|
"use strict";
|
|
30312
30465
|
/*!
|
|
30313
30466
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -30354,7 +30507,7 @@ __decorate([
|
|
|
30354
30507
|
], InterpreterRuleContext.prototype, "ruleIndex", null);
|
|
30355
30508
|
exports.InterpreterRuleContext = InterpreterRuleContext;
|
|
30356
30509
|
|
|
30357
|
-
},{"./Decorators":
|
|
30510
|
+
},{"./Decorators":192,"./ParserRuleContext":208}],200:[function(require,module,exports){
|
|
30358
30511
|
"use strict";
|
|
30359
30512
|
/*!
|
|
30360
30513
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -30690,7 +30843,7 @@ __decorate([
|
|
|
30690
30843
|
], Lexer.prototype, "charPositionInLine", null);
|
|
30691
30844
|
exports.Lexer = Lexer;
|
|
30692
30845
|
|
|
30693
|
-
},{"./CommonTokenFactory":
|
|
30846
|
+
},{"./CommonTokenFactory":189,"./Decorators":192,"./IntStream":198,"./LexerNoViableAltException":202,"./Recognizer":212,"./Token":217,"./atn/LexerATNSimulator":250,"./misc/IntegerStack":303,"./misc/Interval":304}],201:[function(require,module,exports){
|
|
30694
30847
|
"use strict";
|
|
30695
30848
|
/*!
|
|
30696
30849
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -30770,7 +30923,7 @@ LexerInterpreter = __decorate([
|
|
|
30770
30923
|
], LexerInterpreter);
|
|
30771
30924
|
exports.LexerInterpreter = LexerInterpreter;
|
|
30772
30925
|
|
|
30773
|
-
},{"./Decorators":
|
|
30926
|
+
},{"./Decorators":192,"./Lexer":200,"./atn/LexerATNSimulator":250}],202:[function(require,module,exports){
|
|
30774
30927
|
"use strict";
|
|
30775
30928
|
/*!
|
|
30776
30929
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -30827,7 +30980,7 @@ LexerNoViableAltException = __decorate([
|
|
|
30827
30980
|
], LexerNoViableAltException);
|
|
30828
30981
|
exports.LexerNoViableAltException = LexerNoViableAltException;
|
|
30829
30982
|
|
|
30830
|
-
},{"./Decorators":
|
|
30983
|
+
},{"./Decorators":192,"./RecognitionException":211,"./misc/Interval":304,"./misc/Utils":311}],203:[function(require,module,exports){
|
|
30831
30984
|
"use strict";
|
|
30832
30985
|
/*!
|
|
30833
30986
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31037,7 +31190,7 @@ ListTokenSource = __decorate([
|
|
|
31037
31190
|
], ListTokenSource);
|
|
31038
31191
|
exports.ListTokenSource = ListTokenSource;
|
|
31039
31192
|
|
|
31040
|
-
},{"./CommonTokenFactory":
|
|
31193
|
+
},{"./CommonTokenFactory":189,"./Decorators":192,"./Token":217}],204:[function(require,module,exports){
|
|
31041
31194
|
"use strict";
|
|
31042
31195
|
/*!
|
|
31043
31196
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31092,7 +31245,7 @@ __decorate([
|
|
|
31092
31245
|
], NoViableAltException.prototype, "_startToken", void 0);
|
|
31093
31246
|
exports.NoViableAltException = NoViableAltException;
|
|
31094
31247
|
|
|
31095
|
-
},{"./Decorators":
|
|
31248
|
+
},{"./Decorators":192,"./Parser":205,"./RecognitionException":211}],205:[function(require,module,exports){
|
|
31096
31249
|
(function (process){(function (){
|
|
31097
31250
|
"use strict";
|
|
31098
31251
|
/*!
|
|
@@ -31938,7 +32091,7 @@ __decorate([
|
|
|
31938
32091
|
exports.Parser = Parser;
|
|
31939
32092
|
|
|
31940
32093
|
}).call(this)}).call(this,require('_process'))
|
|
31941
|
-
},{"./Decorators":
|
|
32094
|
+
},{"./Decorators":192,"./DefaultErrorStrategy":193,"./Lexer":200,"./ProxyParserErrorListener":210,"./Recognizer":212,"./Token":217,"./atn/ATNDeserializationOptions":228,"./atn/ATNDeserializer":229,"./atn/ParseInfo":265,"./atn/ParserATNSimulator":266,"./atn/ProfilingATNSimulator":275,"./misc/IntegerStack":303,"./misc/Utils":311,"./tree/ErrorNode":312,"./tree/TerminalNode":315,"./tree/pattern/ParseTreePatternMatcher":320,"_process":383}],206:[function(require,module,exports){
|
|
31942
32095
|
"use strict";
|
|
31943
32096
|
/*!
|
|
31944
32097
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31946,7 +32099,7 @@ exports.Parser = Parser;
|
|
|
31946
32099
|
*/
|
|
31947
32100
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31948
32101
|
|
|
31949
|
-
},{}],
|
|
32102
|
+
},{}],207:[function(require,module,exports){
|
|
31950
32103
|
"use strict";
|
|
31951
32104
|
/*!
|
|
31952
32105
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32354,7 +32507,7 @@ ParserInterpreter = __decorate([
|
|
|
32354
32507
|
], ParserInterpreter);
|
|
32355
32508
|
exports.ParserInterpreter = ParserInterpreter;
|
|
32356
32509
|
|
|
32357
|
-
},{"./Decorators":
|
|
32510
|
+
},{"./Decorators":192,"./FailedPredicateException":196,"./InputMismatchException":197,"./InterpreterRuleContext":199,"./Parser":205,"./RecognitionException":211,"./Token":217,"./atn/ATNState":231,"./atn/ATNStateType":232,"./atn/LoopEndState":262,"./atn/ParserATNSimulator":266,"./atn/StarLoopEntryState":284,"./misc/BitSet":299}],208:[function(require,module,exports){
|
|
32358
32511
|
"use strict";
|
|
32359
32512
|
/*!
|
|
32360
32513
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32655,7 +32808,7 @@ __decorate([
|
|
|
32655
32808
|
], ParserRuleContext.prototype, "sourceInterval", null);
|
|
32656
32809
|
exports.ParserRuleContext = ParserRuleContext;
|
|
32657
32810
|
|
|
32658
|
-
},{"./Decorators":
|
|
32811
|
+
},{"./Decorators":192,"./RuleContext":213,"./misc/Interval":304,"./tree/ErrorNode":312,"./tree/TerminalNode":315}],209:[function(require,module,exports){
|
|
32659
32812
|
"use strict";
|
|
32660
32813
|
/*!
|
|
32661
32814
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32705,7 +32858,7 @@ __decorate([
|
|
|
32705
32858
|
], ProxyErrorListener.prototype, "syntaxError", null);
|
|
32706
32859
|
exports.ProxyErrorListener = ProxyErrorListener;
|
|
32707
32860
|
|
|
32708
|
-
},{"./Decorators":
|
|
32861
|
+
},{"./Decorators":192}],210:[function(require,module,exports){
|
|
32709
32862
|
"use strict";
|
|
32710
32863
|
/*!
|
|
32711
32864
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32764,7 +32917,7 @@ __decorate([
|
|
|
32764
32917
|
], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
|
|
32765
32918
|
exports.ProxyParserErrorListener = ProxyParserErrorListener;
|
|
32766
32919
|
|
|
32767
|
-
},{"./Decorators":
|
|
32920
|
+
},{"./Decorators":192,"./ProxyErrorListener":209}],211:[function(require,module,exports){
|
|
32768
32921
|
"use strict";
|
|
32769
32922
|
/*!
|
|
32770
32923
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32869,7 +33022,7 @@ class RecognitionException extends Error {
|
|
|
32869
33022
|
}
|
|
32870
33023
|
exports.RecognitionException = RecognitionException;
|
|
32871
33024
|
|
|
32872
|
-
},{}],
|
|
33025
|
+
},{}],212:[function(require,module,exports){
|
|
32873
33026
|
"use strict";
|
|
32874
33027
|
/*!
|
|
32875
33028
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33088,7 +33241,7 @@ __decorate([
|
|
|
33088
33241
|
], Recognizer.prototype, "getErrorListeners", null);
|
|
33089
33242
|
exports.Recognizer = Recognizer;
|
|
33090
33243
|
|
|
33091
|
-
},{"./ConsoleErrorListener":
|
|
33244
|
+
},{"./ConsoleErrorListener":191,"./Decorators":192,"./ProxyErrorListener":209,"./Token":217,"./misc/Utils":311}],213:[function(require,module,exports){
|
|
33092
33245
|
"use strict";
|
|
33093
33246
|
/*!
|
|
33094
33247
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33305,7 +33458,7 @@ __decorate([
|
|
|
33305
33458
|
], RuleContext.prototype, "toStringTree", null);
|
|
33306
33459
|
exports.RuleContext = RuleContext;
|
|
33307
33460
|
|
|
33308
|
-
},{"./Decorators":
|
|
33461
|
+
},{"./Decorators":192,"./ParserRuleContext":208,"./Recognizer":212,"./atn/ATN":225,"./misc/Interval":304,"./tree/RuleNode":314,"./tree/Trees":316}],214:[function(require,module,exports){
|
|
33309
33462
|
"use strict";
|
|
33310
33463
|
/*!
|
|
33311
33464
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33356,7 +33509,7 @@ __decorate([
|
|
|
33356
33509
|
], RuleContextWithAltNum.prototype, "altNumber", null);
|
|
33357
33510
|
exports.RuleContextWithAltNum = RuleContextWithAltNum;
|
|
33358
33511
|
|
|
33359
|
-
},{"./Decorators":
|
|
33512
|
+
},{"./Decorators":192,"./ParserRuleContext":208,"./atn/ATN":225}],215:[function(require,module,exports){
|
|
33360
33513
|
"use strict";
|
|
33361
33514
|
/*!
|
|
33362
33515
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33379,7 +33532,7 @@ function RuleDependency(dependency) {
|
|
|
33379
33532
|
}
|
|
33380
33533
|
exports.RuleDependency = RuleDependency;
|
|
33381
33534
|
|
|
33382
|
-
},{}],
|
|
33535
|
+
},{}],216:[function(require,module,exports){
|
|
33383
33536
|
"use strict";
|
|
33384
33537
|
/*!
|
|
33385
33538
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33398,7 +33551,7 @@ function RuleVersion(version) {
|
|
|
33398
33551
|
}
|
|
33399
33552
|
exports.RuleVersion = RuleVersion;
|
|
33400
33553
|
|
|
33401
|
-
},{}],
|
|
33554
|
+
},{}],217:[function(require,module,exports){
|
|
33402
33555
|
"use strict";
|
|
33403
33556
|
/*!
|
|
33404
33557
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33438,7 +33591,7 @@ var Token;
|
|
|
33438
33591
|
Token.MIN_USER_CHANNEL_VALUE = 2;
|
|
33439
33592
|
})(Token = exports.Token || (exports.Token = {}));
|
|
33440
33593
|
|
|
33441
|
-
},{"./IntStream":
|
|
33594
|
+
},{"./IntStream":198}],218:[function(require,module,exports){
|
|
33442
33595
|
"use strict";
|
|
33443
33596
|
/*!
|
|
33444
33597
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33446,7 +33599,7 @@ var Token;
|
|
|
33446
33599
|
*/
|
|
33447
33600
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
33448
33601
|
|
|
33449
|
-
},{}],
|
|
33602
|
+
},{}],219:[function(require,module,exports){
|
|
33450
33603
|
"use strict";
|
|
33451
33604
|
/*!
|
|
33452
33605
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33454,7 +33607,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
33454
33607
|
*/
|
|
33455
33608
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
33456
33609
|
|
|
33457
|
-
},{}],
|
|
33610
|
+
},{}],220:[function(require,module,exports){
|
|
33458
33611
|
"use strict";
|
|
33459
33612
|
/*!
|
|
33460
33613
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33462,7 +33615,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
33462
33615
|
*/
|
|
33463
33616
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
33464
33617
|
|
|
33465
|
-
},{}],
|
|
33618
|
+
},{}],221:[function(require,module,exports){
|
|
33466
33619
|
"use strict";
|
|
33467
33620
|
/*!
|
|
33468
33621
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33970,7 +34123,7 @@ __decorate([
|
|
|
33970
34123
|
Decorators_1.Override
|
|
33971
34124
|
], ReplaceOp.prototype, "toString", null);
|
|
33972
34125
|
|
|
33973
|
-
},{"./Decorators":
|
|
34126
|
+
},{"./Decorators":192,"./Token":217,"./misc/Interval":304}],222:[function(require,module,exports){
|
|
33974
34127
|
"use strict";
|
|
33975
34128
|
/*!
|
|
33976
34129
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33978,7 +34131,7 @@ __decorate([
|
|
|
33978
34131
|
*/
|
|
33979
34132
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
33980
34133
|
|
|
33981
|
-
},{}],
|
|
34134
|
+
},{}],223:[function(require,module,exports){
|
|
33982
34135
|
"use strict";
|
|
33983
34136
|
/*!
|
|
33984
34137
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34098,7 +34251,7 @@ __decorate([
|
|
|
34098
34251
|
], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
|
|
34099
34252
|
exports.VocabularyImpl = VocabularyImpl;
|
|
34100
34253
|
|
|
34101
|
-
},{"./Decorators":
|
|
34254
|
+
},{"./Decorators":192,"./Token":217}],224:[function(require,module,exports){
|
|
34102
34255
|
"use strict";
|
|
34103
34256
|
/*!
|
|
34104
34257
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34106,7 +34259,7 @@ exports.VocabularyImpl = VocabularyImpl;
|
|
|
34106
34259
|
*/
|
|
34107
34260
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34108
34261
|
|
|
34109
|
-
},{}],
|
|
34262
|
+
},{}],225:[function(require,module,exports){
|
|
34110
34263
|
"use strict";
|
|
34111
34264
|
/*!
|
|
34112
34265
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34328,7 +34481,7 @@ exports.ATN = ATN;
|
|
|
34328
34481
|
})(ATN = exports.ATN || (exports.ATN = {}));
|
|
34329
34482
|
exports.ATN = ATN;
|
|
34330
34483
|
|
|
34331
|
-
},{"../Decorators":
|
|
34484
|
+
},{"../Decorators":192,"../Token":217,"../dfa/DFA":290,"../misc/Array2DHashMap":295,"../misc/IntervalSet":305,"../misc/ObjectEqualityComparator":308,"./InvalidState":248,"./LL1Analyzer":249,"./PredictionContext":272,"assert":335}],226:[function(require,module,exports){
|
|
34332
34485
|
"use strict";
|
|
34333
34486
|
/*!
|
|
34334
34487
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34853,7 +35006,7 @@ ActionSemanticContextATNConfig = __decorate([
|
|
|
34853
35006
|
__param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
|
|
34854
35007
|
], ActionSemanticContextATNConfig);
|
|
34855
35008
|
|
|
34856
|
-
},{"../Decorators":
|
|
35009
|
+
},{"../Decorators":192,"../misc/Array2DHashMap":295,"../misc/MurmurHash":307,"../misc/ObjectEqualityComparator":308,"./DecisionState":245,"./PredictionContext":272,"./SemanticContext":280,"assert":335}],227:[function(require,module,exports){
|
|
34857
35010
|
"use strict";
|
|
34858
35011
|
/*!
|
|
34859
35012
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35300,7 +35453,7 @@ __decorate([
|
|
|
35300
35453
|
], ATNConfigSet.prototype, "hashCode", null);
|
|
35301
35454
|
exports.ATNConfigSet = ATNConfigSet;
|
|
35302
35455
|
|
|
35303
|
-
},{"../Decorators":
|
|
35456
|
+
},{"../Decorators":192,"../misc/Array2DHashMap":295,"../misc/Array2DHashSet":296,"../misc/ArrayEqualityComparator":297,"../misc/BitSet":299,"../misc/ObjectEqualityComparator":308,"../misc/Utils":311,"./ATN":225,"./ATNConfig":226,"./PredictionContext":272,"./PredictionContextCache":273,"./SemanticContext":280,"assert":335}],228:[function(require,module,exports){
|
|
35304
35457
|
"use strict";
|
|
35305
35458
|
/*!
|
|
35306
35459
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35379,7 +35532,7 @@ __decorate([
|
|
|
35379
35532
|
], ATNDeserializationOptions, "defaultOptions", null);
|
|
35380
35533
|
exports.ATNDeserializationOptions = ATNDeserializationOptions;
|
|
35381
35534
|
|
|
35382
|
-
},{"../Decorators":
|
|
35535
|
+
},{"../Decorators":192}],229:[function(require,module,exports){
|
|
35383
35536
|
"use strict";
|
|
35384
35537
|
/*!
|
|
35385
35538
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36466,7 +36619,7 @@ __decorate([
|
|
|
36466
36619
|
], ATNDeserializer.prototype, "edgeFactory", null);
|
|
36467
36620
|
exports.ATNDeserializer = ATNDeserializer;
|
|
36468
36621
|
|
|
36469
|
-
},{"../Decorators":
|
|
36622
|
+
},{"../Decorators":192,"../Token":217,"../dfa/DFA":290,"../misc/Array2DHashSet":296,"../misc/BitSet":299,"../misc/IntervalSet":305,"../misc/UUID":310,"./ATN":225,"./ATNDeserializationOptions":228,"./ATNStateType":232,"./ActionTransition":234,"./AtomTransition":236,"./BasicBlockStartState":237,"./BasicState":238,"./BlockEndState":239,"./BlockStartState":240,"./DecisionState":245,"./EpsilonTransition":246,"./InvalidState":248,"./LexerChannelAction":252,"./LexerCustomAction":253,"./LexerModeAction":255,"./LexerMoreAction":256,"./LexerPopModeAction":257,"./LexerPushModeAction":258,"./LexerSkipAction":259,"./LexerTypeAction":260,"./LoopEndState":262,"./NotSetTransition":263,"./ParserATNSimulator":266,"./PlusBlockStartState":267,"./PlusLoopbackState":268,"./PrecedencePredicateTransition":269,"./PredicateTransition":271,"./RangeTransition":276,"./RuleStartState":277,"./RuleStopState":278,"./RuleTransition":279,"./SetTransition":281,"./StarBlockStartState":283,"./StarLoopEntryState":284,"./StarLoopbackState":285,"./TokensStartState":286,"./WildcardTransition":288}],230:[function(require,module,exports){
|
|
36470
36623
|
"use strict";
|
|
36471
36624
|
/*!
|
|
36472
36625
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36530,7 +36683,7 @@ exports.ATNSimulator = ATNSimulator;
|
|
|
36530
36683
|
})(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
|
|
36531
36684
|
exports.ATNSimulator = ATNSimulator;
|
|
36532
36685
|
|
|
36533
|
-
},{"../Decorators":
|
|
36686
|
+
},{"../Decorators":192,"../dfa/DFAState":292,"./ATNConfigSet":227,"./PredictionContext":272}],231:[function(require,module,exports){
|
|
36534
36687
|
"use strict";
|
|
36535
36688
|
/*!
|
|
36536
36689
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36717,7 +36870,7 @@ exports.ATNState = ATNState;
|
|
|
36717
36870
|
ATNState.INVALID_STATE_NUMBER = -1;
|
|
36718
36871
|
})(ATNState = exports.ATNState || (exports.ATNState = {}));
|
|
36719
36872
|
|
|
36720
|
-
},{"../Decorators":
|
|
36873
|
+
},{"../Decorators":192}],232:[function(require,module,exports){
|
|
36721
36874
|
"use strict";
|
|
36722
36875
|
/*!
|
|
36723
36876
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36743,7 +36896,7 @@ var ATNStateType;
|
|
|
36743
36896
|
ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
|
|
36744
36897
|
})(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
|
|
36745
36898
|
|
|
36746
|
-
},{}],
|
|
36899
|
+
},{}],233:[function(require,module,exports){
|
|
36747
36900
|
"use strict";
|
|
36748
36901
|
/*!
|
|
36749
36902
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36763,7 +36916,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
|
|
|
36763
36916
|
}
|
|
36764
36917
|
exports.AbstractPredicateTransition = AbstractPredicateTransition;
|
|
36765
36918
|
|
|
36766
|
-
},{"./Transition":
|
|
36919
|
+
},{"./Transition":287}],234:[function(require,module,exports){
|
|
36767
36920
|
"use strict";
|
|
36768
36921
|
/*!
|
|
36769
36922
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36819,7 +36972,7 @@ ActionTransition = __decorate([
|
|
|
36819
36972
|
], ActionTransition);
|
|
36820
36973
|
exports.ActionTransition = ActionTransition;
|
|
36821
36974
|
|
|
36822
|
-
},{"../Decorators":
|
|
36975
|
+
},{"../Decorators":192,"./Transition":287}],235:[function(require,module,exports){
|
|
36823
36976
|
"use strict";
|
|
36824
36977
|
/*!
|
|
36825
36978
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36906,7 +37059,7 @@ AmbiguityInfo = __decorate([
|
|
|
36906
37059
|
], AmbiguityInfo);
|
|
36907
37060
|
exports.AmbiguityInfo = AmbiguityInfo;
|
|
36908
37061
|
|
|
36909
|
-
},{"../Decorators":
|
|
37062
|
+
},{"../Decorators":192,"./DecisionEventInfo":243}],236:[function(require,module,exports){
|
|
36910
37063
|
"use strict";
|
|
36911
37064
|
/*!
|
|
36912
37065
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36964,7 +37117,7 @@ AtomTransition = __decorate([
|
|
|
36964
37117
|
], AtomTransition);
|
|
36965
37118
|
exports.AtomTransition = AtomTransition;
|
|
36966
37119
|
|
|
36967
|
-
},{"../Decorators":
|
|
37120
|
+
},{"../Decorators":192,"../misc/IntervalSet":305,"./Transition":287}],237:[function(require,module,exports){
|
|
36968
37121
|
"use strict";
|
|
36969
37122
|
/*!
|
|
36970
37123
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36996,7 +37149,7 @@ __decorate([
|
|
|
36996
37149
|
], BasicBlockStartState.prototype, "stateType", null);
|
|
36997
37150
|
exports.BasicBlockStartState = BasicBlockStartState;
|
|
36998
37151
|
|
|
36999
|
-
},{"../Decorators":
|
|
37152
|
+
},{"../Decorators":192,"./ATNStateType":232,"./BlockStartState":240}],238:[function(require,module,exports){
|
|
37000
37153
|
"use strict";
|
|
37001
37154
|
/*!
|
|
37002
37155
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37028,7 +37181,7 @@ __decorate([
|
|
|
37028
37181
|
], BasicState.prototype, "stateType", null);
|
|
37029
37182
|
exports.BasicState = BasicState;
|
|
37030
37183
|
|
|
37031
|
-
},{"../Decorators":
|
|
37184
|
+
},{"../Decorators":192,"./ATNState":231,"./ATNStateType":232}],239:[function(require,module,exports){
|
|
37032
37185
|
"use strict";
|
|
37033
37186
|
/*!
|
|
37034
37187
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37057,7 +37210,7 @@ __decorate([
|
|
|
37057
37210
|
], BlockEndState.prototype, "stateType", null);
|
|
37058
37211
|
exports.BlockEndState = BlockEndState;
|
|
37059
37212
|
|
|
37060
|
-
},{"../Decorators":
|
|
37213
|
+
},{"../Decorators":192,"./ATNState":231,"./ATNStateType":232}],240:[function(require,module,exports){
|
|
37061
37214
|
"use strict";
|
|
37062
37215
|
/*!
|
|
37063
37216
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37071,7 +37224,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
|
|
|
37071
37224
|
}
|
|
37072
37225
|
exports.BlockStartState = BlockStartState;
|
|
37073
37226
|
|
|
37074
|
-
},{"./DecisionState":
|
|
37227
|
+
},{"./DecisionState":245}],241:[function(require,module,exports){
|
|
37075
37228
|
"use strict";
|
|
37076
37229
|
/*!
|
|
37077
37230
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37141,7 +37294,7 @@ __decorate([
|
|
|
37141
37294
|
], ConflictInfo.prototype, "hashCode", null);
|
|
37142
37295
|
exports.ConflictInfo = ConflictInfo;
|
|
37143
37296
|
|
|
37144
|
-
},{"../Decorators":
|
|
37297
|
+
},{"../Decorators":192,"../misc/Utils":311}],242:[function(require,module,exports){
|
|
37145
37298
|
"use strict";
|
|
37146
37299
|
/*!
|
|
37147
37300
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37201,7 +37354,7 @@ ContextSensitivityInfo = __decorate([
|
|
|
37201
37354
|
], ContextSensitivityInfo);
|
|
37202
37355
|
exports.ContextSensitivityInfo = ContextSensitivityInfo;
|
|
37203
37356
|
|
|
37204
|
-
},{"../Decorators":
|
|
37357
|
+
},{"../Decorators":192,"./DecisionEventInfo":243}],243:[function(require,module,exports){
|
|
37205
37358
|
"use strict";
|
|
37206
37359
|
/*!
|
|
37207
37360
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37253,7 +37406,7 @@ DecisionEventInfo = __decorate([
|
|
|
37253
37406
|
], DecisionEventInfo);
|
|
37254
37407
|
exports.DecisionEventInfo = DecisionEventInfo;
|
|
37255
37408
|
|
|
37256
|
-
},{"../Decorators":
|
|
37409
|
+
},{"../Decorators":192}],244:[function(require,module,exports){
|
|
37257
37410
|
"use strict";
|
|
37258
37411
|
/*!
|
|
37259
37412
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37466,7 +37619,7 @@ __decorate([
|
|
|
37466
37619
|
], DecisionInfo.prototype, "toString", null);
|
|
37467
37620
|
exports.DecisionInfo = DecisionInfo;
|
|
37468
37621
|
|
|
37469
|
-
},{"../Decorators":
|
|
37622
|
+
},{"../Decorators":192}],245:[function(require,module,exports){
|
|
37470
37623
|
"use strict";
|
|
37471
37624
|
/*!
|
|
37472
37625
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37486,7 +37639,7 @@ class DecisionState extends ATNState_1.ATNState {
|
|
|
37486
37639
|
}
|
|
37487
37640
|
exports.DecisionState = DecisionState;
|
|
37488
37641
|
|
|
37489
|
-
},{"./ATNState":
|
|
37642
|
+
},{"./ATNState":231}],246:[function(require,module,exports){
|
|
37490
37643
|
"use strict";
|
|
37491
37644
|
/*!
|
|
37492
37645
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37552,7 +37705,7 @@ EpsilonTransition = __decorate([
|
|
|
37552
37705
|
], EpsilonTransition);
|
|
37553
37706
|
exports.EpsilonTransition = EpsilonTransition;
|
|
37554
37707
|
|
|
37555
|
-
},{"../Decorators":
|
|
37708
|
+
},{"../Decorators":192,"./Transition":287}],247:[function(require,module,exports){
|
|
37556
37709
|
"use strict";
|
|
37557
37710
|
/*!
|
|
37558
37711
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37605,7 +37758,7 @@ ErrorInfo = __decorate([
|
|
|
37605
37758
|
], ErrorInfo);
|
|
37606
37759
|
exports.ErrorInfo = ErrorInfo;
|
|
37607
37760
|
|
|
37608
|
-
},{"../Decorators":
|
|
37761
|
+
},{"../Decorators":192,"./DecisionEventInfo":243}],248:[function(require,module,exports){
|
|
37609
37762
|
"use strict";
|
|
37610
37763
|
/*!
|
|
37611
37764
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37636,7 +37789,7 @@ __decorate([
|
|
|
37636
37789
|
], InvalidState.prototype, "stateType", null);
|
|
37637
37790
|
exports.InvalidState = InvalidState;
|
|
37638
37791
|
|
|
37639
|
-
},{"../Decorators":
|
|
37792
|
+
},{"../Decorators":192,"./ATNStateType":232,"./BasicState":238}],249:[function(require,module,exports){
|
|
37640
37793
|
"use strict";
|
|
37641
37794
|
/*!
|
|
37642
37795
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37858,7 +38011,7 @@ LL1Analyzer = __decorate([
|
|
|
37858
38011
|
], LL1Analyzer);
|
|
37859
38012
|
exports.LL1Analyzer = LL1Analyzer;
|
|
37860
38013
|
|
|
37861
|
-
},{"../Decorators":
|
|
38014
|
+
},{"../Decorators":192,"../Token":217,"../misc/Array2DHashSet":296,"../misc/BitSet":299,"../misc/IntervalSet":305,"../misc/ObjectEqualityComparator":308,"./ATNConfig":226,"./AbstractPredicateTransition":233,"./NotSetTransition":263,"./PredictionContext":272,"./RuleStopState":278,"./RuleTransition":279,"./WildcardTransition":288}],250:[function(require,module,exports){
|
|
37862
38015
|
"use strict";
|
|
37863
38016
|
/*!
|
|
37864
38017
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38575,7 +38728,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
|
|
|
38575
38728
|
})(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
|
|
38576
38729
|
exports.LexerATNSimulator = LexerATNSimulator;
|
|
38577
38730
|
|
|
38578
|
-
},{"../Decorators":
|
|
38731
|
+
},{"../Decorators":192,"../IntStream":198,"../Lexer":200,"../LexerNoViableAltException":202,"../Token":217,"../dfa/AcceptStateInfo":289,"../dfa/DFAState":292,"../misc/Interval":304,"./ATN":225,"./ATNConfig":226,"./ATNConfigSet":227,"./ATNSimulator":230,"./LexerActionExecutor":251,"./OrderedATNConfigSet":264,"./PredictionContext":272,"./RuleStopState":278,"assert":335}],251:[function(require,module,exports){
|
|
38579
38732
|
"use strict";
|
|
38580
38733
|
/*!
|
|
38581
38734
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38776,7 +38929,7 @@ LexerActionExecutor = __decorate([
|
|
|
38776
38929
|
], LexerActionExecutor);
|
|
38777
38930
|
exports.LexerActionExecutor = LexerActionExecutor;
|
|
38778
38931
|
|
|
38779
|
-
},{"../Decorators":
|
|
38932
|
+
},{"../Decorators":192,"../misc/ArrayEqualityComparator":297,"../misc/MurmurHash":307,"./LexerIndexedCustomAction":254}],252:[function(require,module,exports){
|
|
38780
38933
|
"use strict";
|
|
38781
38934
|
/*!
|
|
38782
38935
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38881,7 +39034,7 @@ __decorate([
|
|
|
38881
39034
|
], LexerChannelAction.prototype, "toString", null);
|
|
38882
39035
|
exports.LexerChannelAction = LexerChannelAction;
|
|
38883
39036
|
|
|
38884
|
-
},{"../Decorators":
|
|
39037
|
+
},{"../Decorators":192,"../misc/MurmurHash":307}],253:[function(require,module,exports){
|
|
38885
39038
|
"use strict";
|
|
38886
39039
|
/*!
|
|
38887
39040
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39010,7 +39163,7 @@ __decorate([
|
|
|
39010
39163
|
], LexerCustomAction.prototype, "equals", null);
|
|
39011
39164
|
exports.LexerCustomAction = LexerCustomAction;
|
|
39012
39165
|
|
|
39013
|
-
},{"../Decorators":
|
|
39166
|
+
},{"../Decorators":192,"../misc/MurmurHash":307}],254:[function(require,module,exports){
|
|
39014
39167
|
"use strict";
|
|
39015
39168
|
/*!
|
|
39016
39169
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39145,7 +39298,7 @@ LexerIndexedCustomAction = __decorate([
|
|
|
39145
39298
|
], LexerIndexedCustomAction);
|
|
39146
39299
|
exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
|
|
39147
39300
|
|
|
39148
|
-
},{"../Decorators":
|
|
39301
|
+
},{"../Decorators":192,"../misc/MurmurHash":307}],255:[function(require,module,exports){
|
|
39149
39302
|
"use strict";
|
|
39150
39303
|
/*!
|
|
39151
39304
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39250,7 +39403,7 @@ __decorate([
|
|
|
39250
39403
|
], LexerModeAction.prototype, "toString", null);
|
|
39251
39404
|
exports.LexerModeAction = LexerModeAction;
|
|
39252
39405
|
|
|
39253
|
-
},{"../Decorators":
|
|
39406
|
+
},{"../Decorators":192,"../misc/MurmurHash":307}],256:[function(require,module,exports){
|
|
39254
39407
|
"use strict";
|
|
39255
39408
|
/*!
|
|
39256
39409
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39346,7 +39499,7 @@ exports.LexerMoreAction = LexerMoreAction;
|
|
|
39346
39499
|
LexerMoreAction.INSTANCE = new LexerMoreAction();
|
|
39347
39500
|
})(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
|
|
39348
39501
|
|
|
39349
|
-
},{"../Decorators":
|
|
39502
|
+
},{"../Decorators":192,"../misc/MurmurHash":307}],257:[function(require,module,exports){
|
|
39350
39503
|
"use strict";
|
|
39351
39504
|
/*!
|
|
39352
39505
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39442,7 +39595,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
|
|
|
39442
39595
|
LexerPopModeAction.INSTANCE = new LexerPopModeAction();
|
|
39443
39596
|
})(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
|
|
39444
39597
|
|
|
39445
|
-
},{"../Decorators":
|
|
39598
|
+
},{"../Decorators":192,"../misc/MurmurHash":307}],258:[function(require,module,exports){
|
|
39446
39599
|
"use strict";
|
|
39447
39600
|
/*!
|
|
39448
39601
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39547,7 +39700,7 @@ __decorate([
|
|
|
39547
39700
|
], LexerPushModeAction.prototype, "toString", null);
|
|
39548
39701
|
exports.LexerPushModeAction = LexerPushModeAction;
|
|
39549
39702
|
|
|
39550
|
-
},{"../Decorators":
|
|
39703
|
+
},{"../Decorators":192,"../misc/MurmurHash":307}],259:[function(require,module,exports){
|
|
39551
39704
|
"use strict";
|
|
39552
39705
|
/*!
|
|
39553
39706
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39643,7 +39796,7 @@ exports.LexerSkipAction = LexerSkipAction;
|
|
|
39643
39796
|
LexerSkipAction.INSTANCE = new LexerSkipAction();
|
|
39644
39797
|
})(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
|
|
39645
39798
|
|
|
39646
|
-
},{"../Decorators":
|
|
39799
|
+
},{"../Decorators":192,"../misc/MurmurHash":307}],260:[function(require,module,exports){
|
|
39647
39800
|
"use strict";
|
|
39648
39801
|
/*!
|
|
39649
39802
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39747,7 +39900,7 @@ __decorate([
|
|
|
39747
39900
|
], LexerTypeAction.prototype, "toString", null);
|
|
39748
39901
|
exports.LexerTypeAction = LexerTypeAction;
|
|
39749
39902
|
|
|
39750
|
-
},{"../Decorators":
|
|
39903
|
+
},{"../Decorators":192,"../misc/MurmurHash":307}],261:[function(require,module,exports){
|
|
39751
39904
|
"use strict";
|
|
39752
39905
|
/*!
|
|
39753
39906
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39799,7 +39952,7 @@ LookaheadEventInfo = __decorate([
|
|
|
39799
39952
|
], LookaheadEventInfo);
|
|
39800
39953
|
exports.LookaheadEventInfo = LookaheadEventInfo;
|
|
39801
39954
|
|
|
39802
|
-
},{"../Decorators":
|
|
39955
|
+
},{"../Decorators":192,"./DecisionEventInfo":243}],262:[function(require,module,exports){
|
|
39803
39956
|
"use strict";
|
|
39804
39957
|
/*!
|
|
39805
39958
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39828,7 +39981,7 @@ __decorate([
|
|
|
39828
39981
|
], LoopEndState.prototype, "stateType", null);
|
|
39829
39982
|
exports.LoopEndState = LoopEndState;
|
|
39830
39983
|
|
|
39831
|
-
},{"../Decorators":
|
|
39984
|
+
},{"../Decorators":192,"./ATNState":231,"./ATNStateType":232}],263:[function(require,module,exports){
|
|
39832
39985
|
"use strict";
|
|
39833
39986
|
/*!
|
|
39834
39987
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39877,7 +40030,7 @@ NotSetTransition = __decorate([
|
|
|
39877
40030
|
], NotSetTransition);
|
|
39878
40031
|
exports.NotSetTransition = NotSetTransition;
|
|
39879
40032
|
|
|
39880
|
-
},{"../Decorators":
|
|
40033
|
+
},{"../Decorators":192,"./SetTransition":281}],264:[function(require,module,exports){
|
|
39881
40034
|
"use strict";
|
|
39882
40035
|
/*!
|
|
39883
40036
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39932,7 +40085,7 @@ __decorate([
|
|
|
39932
40085
|
], OrderedATNConfigSet.prototype, "canMerge", null);
|
|
39933
40086
|
exports.OrderedATNConfigSet = OrderedATNConfigSet;
|
|
39934
40087
|
|
|
39935
|
-
},{"../Decorators":
|
|
40088
|
+
},{"../Decorators":192,"./ATNConfigSet":227}],265:[function(require,module,exports){
|
|
39936
40089
|
"use strict";
|
|
39937
40090
|
/*!
|
|
39938
40091
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40094,7 +40247,7 @@ ParseInfo = __decorate([
|
|
|
40094
40247
|
], ParseInfo);
|
|
40095
40248
|
exports.ParseInfo = ParseInfo;
|
|
40096
40249
|
|
|
40097
|
-
},{"../Decorators":
|
|
40250
|
+
},{"../Decorators":192}],266:[function(require,module,exports){
|
|
40098
40251
|
"use strict";
|
|
40099
40252
|
/*!
|
|
40100
40253
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42367,7 +42520,7 @@ ParserATNSimulator = __decorate([
|
|
|
42367
42520
|
], ParserATNSimulator);
|
|
42368
42521
|
exports.ParserATNSimulator = ParserATNSimulator;
|
|
42369
42522
|
|
|
42370
|
-
},{"../Decorators":
|
|
42523
|
+
},{"../Decorators":192,"../IntStream":198,"../NoViableAltException":204,"../ParserRuleContext":208,"../Token":217,"../VocabularyImpl":223,"../dfa/AcceptStateInfo":289,"../dfa/DFAState":292,"../misc/Array2DHashSet":296,"../misc/Arrays":298,"../misc/BitSet":299,"../misc/IntegerList":302,"../misc/Interval":304,"../misc/ObjectEqualityComparator":308,"./ATN":225,"./ATNConfig":226,"./ATNConfigSet":227,"./ATNSimulator":230,"./ATNStateType":232,"./ActionTransition":234,"./AtomTransition":236,"./ConflictInfo":241,"./DecisionState":245,"./NotSetTransition":263,"./PredictionContext":272,"./PredictionContextCache":273,"./PredictionMode":274,"./RuleStopState":278,"./RuleTransition":279,"./SemanticContext":280,"./SetTransition":281,"./SimulatorState":282,"assert":335}],267:[function(require,module,exports){
|
|
42371
42524
|
"use strict";
|
|
42372
42525
|
/*!
|
|
42373
42526
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42400,7 +42553,7 @@ __decorate([
|
|
|
42400
42553
|
], PlusBlockStartState.prototype, "stateType", null);
|
|
42401
42554
|
exports.PlusBlockStartState = PlusBlockStartState;
|
|
42402
42555
|
|
|
42403
|
-
},{"../Decorators":
|
|
42556
|
+
},{"../Decorators":192,"./ATNStateType":232,"./BlockStartState":240}],268:[function(require,module,exports){
|
|
42404
42557
|
"use strict";
|
|
42405
42558
|
/*!
|
|
42406
42559
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42431,7 +42584,7 @@ __decorate([
|
|
|
42431
42584
|
], PlusLoopbackState.prototype, "stateType", null);
|
|
42432
42585
|
exports.PlusLoopbackState = PlusLoopbackState;
|
|
42433
42586
|
|
|
42434
|
-
},{"../Decorators":
|
|
42587
|
+
},{"../Decorators":192,"./ATNStateType":232,"./DecisionState":245}],269:[function(require,module,exports){
|
|
42435
42588
|
"use strict";
|
|
42436
42589
|
/*!
|
|
42437
42590
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42494,7 +42647,7 @@ PrecedencePredicateTransition = __decorate([
|
|
|
42494
42647
|
], PrecedencePredicateTransition);
|
|
42495
42648
|
exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
|
|
42496
42649
|
|
|
42497
|
-
},{"../Decorators":
|
|
42650
|
+
},{"../Decorators":192,"./AbstractPredicateTransition":233,"./SemanticContext":280}],270:[function(require,module,exports){
|
|
42498
42651
|
"use strict";
|
|
42499
42652
|
/*!
|
|
42500
42653
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42557,7 +42710,7 @@ PredicateEvalInfo = __decorate([
|
|
|
42557
42710
|
], PredicateEvalInfo);
|
|
42558
42711
|
exports.PredicateEvalInfo = PredicateEvalInfo;
|
|
42559
42712
|
|
|
42560
|
-
},{"../Decorators":
|
|
42713
|
+
},{"../Decorators":192,"./DecisionEventInfo":243}],271:[function(require,module,exports){
|
|
42561
42714
|
"use strict";
|
|
42562
42715
|
/*!
|
|
42563
42716
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42623,7 +42776,7 @@ PredicateTransition = __decorate([
|
|
|
42623
42776
|
], PredicateTransition);
|
|
42624
42777
|
exports.PredicateTransition = PredicateTransition;
|
|
42625
42778
|
|
|
42626
|
-
},{"../Decorators":
|
|
42779
|
+
},{"../Decorators":192,"./AbstractPredicateTransition":233,"./SemanticContext":280}],272:[function(require,module,exports){
|
|
42627
42780
|
"use strict";
|
|
42628
42781
|
/*!
|
|
42629
42782
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43314,7 +43467,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
|
|
|
43314
43467
|
PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
|
|
43315
43468
|
})(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
|
|
43316
43469
|
|
|
43317
|
-
},{"../Decorators":
|
|
43470
|
+
},{"../Decorators":192,"../misc/Array2DHashMap":295,"../misc/Array2DHashSet":296,"../misc/Arrays":298,"../misc/MurmurHash":307,"./PredictionContextCache":273,"assert":335}],273:[function(require,module,exports){
|
|
43318
43471
|
"use strict";
|
|
43319
43472
|
/*!
|
|
43320
43473
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43455,7 +43608,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
|
|
|
43455
43608
|
PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
|
|
43456
43609
|
})(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
|
|
43457
43610
|
|
|
43458
|
-
},{"../Decorators":
|
|
43611
|
+
},{"../Decorators":192,"../misc/Array2DHashMap":295,"../misc/ObjectEqualityComparator":308,"./PredictionContext":272,"assert":335}],274:[function(require,module,exports){
|
|
43459
43612
|
"use strict";
|
|
43460
43613
|
/*!
|
|
43461
43614
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43616,7 +43769,7 @@ var PredictionMode;
|
|
|
43616
43769
|
PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
|
|
43617
43770
|
})(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
|
|
43618
43771
|
|
|
43619
|
-
},{"../Decorators":
|
|
43772
|
+
},{"../Decorators":192,"../misc/Array2DHashMap":295,"../misc/MurmurHash":307,"./RuleStopState":278}],275:[function(require,module,exports){
|
|
43620
43773
|
(function (process){(function (){
|
|
43621
43774
|
"use strict";
|
|
43622
43775
|
/*!
|
|
@@ -43885,7 +44038,7 @@ __decorate([
|
|
|
43885
44038
|
exports.ProfilingATNSimulator = ProfilingATNSimulator;
|
|
43886
44039
|
|
|
43887
44040
|
}).call(this)}).call(this,require('_process'))
|
|
43888
|
-
},{"../Decorators":
|
|
44041
|
+
},{"../Decorators":192,"./ATN":225,"./ATNSimulator":230,"./AmbiguityInfo":235,"./ContextSensitivityInfo":242,"./DecisionInfo":244,"./ErrorInfo":247,"./LookaheadEventInfo":261,"./ParserATNSimulator":266,"./PredicateEvalInfo":270,"./SemanticContext":280,"./SimulatorState":282,"_process":383}],276:[function(require,module,exports){
|
|
43889
44042
|
"use strict";
|
|
43890
44043
|
/*!
|
|
43891
44044
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43943,7 +44096,7 @@ RangeTransition = __decorate([
|
|
|
43943
44096
|
], RangeTransition);
|
|
43944
44097
|
exports.RangeTransition = RangeTransition;
|
|
43945
44098
|
|
|
43946
|
-
},{"../Decorators":
|
|
44099
|
+
},{"../Decorators":192,"../misc/IntervalSet":305,"./Transition":287}],277:[function(require,module,exports){
|
|
43947
44100
|
"use strict";
|
|
43948
44101
|
/*!
|
|
43949
44102
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43976,7 +44129,7 @@ __decorate([
|
|
|
43976
44129
|
], RuleStartState.prototype, "stateType", null);
|
|
43977
44130
|
exports.RuleStartState = RuleStartState;
|
|
43978
44131
|
|
|
43979
|
-
},{"../Decorators":
|
|
44132
|
+
},{"../Decorators":192,"./ATNState":231,"./ATNStateType":232}],278:[function(require,module,exports){
|
|
43980
44133
|
"use strict";
|
|
43981
44134
|
/*!
|
|
43982
44135
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44015,7 +44168,7 @@ __decorate([
|
|
|
44015
44168
|
], RuleStopState.prototype, "stateType", null);
|
|
44016
44169
|
exports.RuleStopState = RuleStopState;
|
|
44017
44170
|
|
|
44018
|
-
},{"../Decorators":
|
|
44171
|
+
},{"../Decorators":192,"./ATNState":231,"./ATNStateType":232}],279:[function(require,module,exports){
|
|
44019
44172
|
"use strict";
|
|
44020
44173
|
/*!
|
|
44021
44174
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44071,7 +44224,7 @@ RuleTransition = __decorate([
|
|
|
44071
44224
|
], RuleTransition);
|
|
44072
44225
|
exports.RuleTransition = RuleTransition;
|
|
44073
44226
|
|
|
44074
|
-
},{"../Decorators":
|
|
44227
|
+
},{"../Decorators":192,"./Transition":287}],280:[function(require,module,exports){
|
|
44075
44228
|
"use strict";
|
|
44076
44229
|
/*!
|
|
44077
44230
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44551,7 +44704,7 @@ exports.SemanticContext = SemanticContext;
|
|
|
44551
44704
|
SemanticContext.OR = OR;
|
|
44552
44705
|
})(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
|
|
44553
44706
|
|
|
44554
|
-
},{"../Decorators":
|
|
44707
|
+
},{"../Decorators":192,"../misc/Array2DHashSet":296,"../misc/ArrayEqualityComparator":297,"../misc/MurmurHash":307,"../misc/ObjectEqualityComparator":308,"../misc/Utils":311}],281:[function(require,module,exports){
|
|
44555
44708
|
"use strict";
|
|
44556
44709
|
/*!
|
|
44557
44710
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44617,7 +44770,7 @@ SetTransition = __decorate([
|
|
|
44617
44770
|
], SetTransition);
|
|
44618
44771
|
exports.SetTransition = SetTransition;
|
|
44619
44772
|
|
|
44620
|
-
},{"../Decorators":
|
|
44773
|
+
},{"../Decorators":192,"../Token":217,"../misc/IntervalSet":305,"./Transition":287}],282:[function(require,module,exports){
|
|
44621
44774
|
"use strict";
|
|
44622
44775
|
/*!
|
|
44623
44776
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44653,7 +44806,7 @@ SimulatorState = __decorate([
|
|
|
44653
44806
|
], SimulatorState);
|
|
44654
44807
|
exports.SimulatorState = SimulatorState;
|
|
44655
44808
|
|
|
44656
|
-
},{"../Decorators":
|
|
44809
|
+
},{"../Decorators":192,"../ParserRuleContext":208}],283:[function(require,module,exports){
|
|
44657
44810
|
"use strict";
|
|
44658
44811
|
/*!
|
|
44659
44812
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44681,7 +44834,7 @@ __decorate([
|
|
|
44681
44834
|
], StarBlockStartState.prototype, "stateType", null);
|
|
44682
44835
|
exports.StarBlockStartState = StarBlockStartState;
|
|
44683
44836
|
|
|
44684
|
-
},{"../Decorators":
|
|
44837
|
+
},{"../Decorators":192,"./ATNStateType":232,"./BlockStartState":240}],284:[function(require,module,exports){
|
|
44685
44838
|
"use strict";
|
|
44686
44839
|
/*!
|
|
44687
44840
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44738,7 +44891,7 @@ __decorate([
|
|
|
44738
44891
|
], StarLoopEntryState.prototype, "stateType", null);
|
|
44739
44892
|
exports.StarLoopEntryState = StarLoopEntryState;
|
|
44740
44893
|
|
|
44741
|
-
},{"../Decorators":
|
|
44894
|
+
},{"../Decorators":192,"../misc/BitSet":299,"./ATNStateType":232,"./DecisionState":245}],285:[function(require,module,exports){
|
|
44742
44895
|
"use strict";
|
|
44743
44896
|
/*!
|
|
44744
44897
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44769,7 +44922,7 @@ __decorate([
|
|
|
44769
44922
|
], StarLoopbackState.prototype, "stateType", null);
|
|
44770
44923
|
exports.StarLoopbackState = StarLoopbackState;
|
|
44771
44924
|
|
|
44772
|
-
},{"../Decorators":
|
|
44925
|
+
},{"../Decorators":192,"./ATNState":231,"./ATNStateType":232}],286:[function(require,module,exports){
|
|
44773
44926
|
"use strict";
|
|
44774
44927
|
/*!
|
|
44775
44928
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44798,7 +44951,7 @@ __decorate([
|
|
|
44798
44951
|
], TokensStartState.prototype, "stateType", null);
|
|
44799
44952
|
exports.TokensStartState = TokensStartState;
|
|
44800
44953
|
|
|
44801
|
-
},{"../Decorators":
|
|
44954
|
+
},{"../Decorators":192,"./ATNStateType":232,"./DecisionState":245}],287:[function(require,module,exports){
|
|
44802
44955
|
"use strict";
|
|
44803
44956
|
/*!
|
|
44804
44957
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44872,7 +45025,7 @@ Transition = __decorate([
|
|
|
44872
45025
|
], Transition);
|
|
44873
45026
|
exports.Transition = Transition;
|
|
44874
45027
|
|
|
44875
|
-
},{"../Decorators":
|
|
45028
|
+
},{"../Decorators":192}],288:[function(require,module,exports){
|
|
44876
45029
|
"use strict";
|
|
44877
45030
|
/*!
|
|
44878
45031
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44920,7 +45073,7 @@ WildcardTransition = __decorate([
|
|
|
44920
45073
|
], WildcardTransition);
|
|
44921
45074
|
exports.WildcardTransition = WildcardTransition;
|
|
44922
45075
|
|
|
44923
|
-
},{"../Decorators":
|
|
45076
|
+
},{"../Decorators":192,"./Transition":287}],289:[function(require,module,exports){
|
|
44924
45077
|
"use strict";
|
|
44925
45078
|
/*!
|
|
44926
45079
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44962,7 +45115,7 @@ class AcceptStateInfo {
|
|
|
44962
45115
|
}
|
|
44963
45116
|
exports.AcceptStateInfo = AcceptStateInfo;
|
|
44964
45117
|
|
|
44965
|
-
},{}],
|
|
45118
|
+
},{}],290:[function(require,module,exports){
|
|
44966
45119
|
"use strict";
|
|
44967
45120
|
/*!
|
|
44968
45121
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45137,7 +45290,7 @@ DFA = __decorate([
|
|
|
45137
45290
|
], DFA);
|
|
45138
45291
|
exports.DFA = DFA;
|
|
45139
45292
|
|
|
45140
|
-
},{"../Decorators":
|
|
45293
|
+
},{"../Decorators":192,"../VocabularyImpl":223,"../atn/ATNConfigSet":227,"../atn/StarLoopEntryState":284,"../misc/Array2DHashSet":296,"../misc/ObjectEqualityComparator":308,"./DFASerializer":291,"./DFAState":292,"./LexerDFASerializer":293}],291:[function(require,module,exports){
|
|
45141
45294
|
"use strict";
|
|
45142
45295
|
/*!
|
|
45143
45296
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45279,7 +45432,7 @@ __decorate([
|
|
|
45279
45432
|
], DFASerializer.prototype, "toString", null);
|
|
45280
45433
|
exports.DFASerializer = DFASerializer;
|
|
45281
45434
|
|
|
45282
|
-
},{"../Decorators":
|
|
45435
|
+
},{"../Decorators":192,"../Recognizer":212,"../VocabularyImpl":223,"../atn/ATNSimulator":230,"../atn/PredictionContext":272}],292:[function(require,module,exports){
|
|
45283
45436
|
"use strict";
|
|
45284
45437
|
/*!
|
|
45285
45438
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45510,7 +45663,7 @@ exports.DFAState = DFAState;
|
|
|
45510
45663
|
DFAState.PredPrediction = PredPrediction;
|
|
45511
45664
|
})(DFAState = exports.DFAState || (exports.DFAState = {}));
|
|
45512
45665
|
|
|
45513
|
-
},{"../Decorators":
|
|
45666
|
+
},{"../Decorators":192,"../atn/ATN":225,"../atn/PredictionContext":272,"../misc/BitSet":299,"../misc/MurmurHash":307,"assert":335}],293:[function(require,module,exports){
|
|
45514
45667
|
"use strict";
|
|
45515
45668
|
/*!
|
|
45516
45669
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45547,7 +45700,7 @@ LexerDFASerializer = __decorate([
|
|
|
45547
45700
|
], LexerDFASerializer);
|
|
45548
45701
|
exports.LexerDFASerializer = LexerDFASerializer;
|
|
45549
45702
|
|
|
45550
|
-
},{"../Decorators":
|
|
45703
|
+
},{"../Decorators":192,"../VocabularyImpl":223,"./DFASerializer":291}],294:[function(require,module,exports){
|
|
45551
45704
|
"use strict";
|
|
45552
45705
|
/*!
|
|
45553
45706
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45613,7 +45766,7 @@ __exportStar(require("./Vocabulary"), exports);
|
|
|
45613
45766
|
__exportStar(require("./VocabularyImpl"), exports);
|
|
45614
45767
|
__exportStar(require("./WritableToken"), exports);
|
|
45615
45768
|
|
|
45616
|
-
},{"./ANTLRErrorListener":
|
|
45769
|
+
},{"./ANTLRErrorListener":179,"./ANTLRErrorStrategy":180,"./ANTLRInputStream":181,"./BailErrorStrategy":182,"./BufferedTokenStream":183,"./CharStream":184,"./CharStreams":185,"./CodePointBuffer":186,"./CodePointCharStream":187,"./CommonToken":188,"./CommonTokenFactory":189,"./CommonTokenStream":190,"./ConsoleErrorListener":191,"./DefaultErrorStrategy":193,"./Dependents":194,"./DiagnosticErrorListener":195,"./FailedPredicateException":196,"./InputMismatchException":197,"./IntStream":198,"./InterpreterRuleContext":199,"./Lexer":200,"./LexerInterpreter":201,"./LexerNoViableAltException":202,"./ListTokenSource":203,"./NoViableAltException":204,"./Parser":205,"./ParserErrorListener":206,"./ParserInterpreter":207,"./ParserRuleContext":208,"./ProxyErrorListener":209,"./ProxyParserErrorListener":210,"./RecognitionException":211,"./Recognizer":212,"./RuleContext":213,"./RuleContextWithAltNum":214,"./RuleDependency":215,"./RuleVersion":216,"./Token":217,"./TokenFactory":218,"./TokenSource":219,"./TokenStream":220,"./TokenStreamRewriter":221,"./Vocabulary":222,"./VocabularyImpl":223,"./WritableToken":224}],295:[function(require,module,exports){
|
|
45617
45770
|
"use strict";
|
|
45618
45771
|
/*!
|
|
45619
45772
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45696,7 +45849,7 @@ class Array2DHashMap {
|
|
|
45696
45849
|
}
|
|
45697
45850
|
exports.Array2DHashMap = Array2DHashMap;
|
|
45698
45851
|
|
|
45699
|
-
},{"./Array2DHashSet":
|
|
45852
|
+
},{"./Array2DHashSet":296}],296:[function(require,module,exports){
|
|
45700
45853
|
"use strict";
|
|
45701
45854
|
/*!
|
|
45702
45855
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46063,7 +46216,7 @@ __decorate([
|
|
|
46063
46216
|
], Array2DHashSet.prototype, "createBuckets", null);
|
|
46064
46217
|
exports.Array2DHashSet = Array2DHashSet;
|
|
46065
46218
|
|
|
46066
|
-
},{"../Decorators":
|
|
46219
|
+
},{"../Decorators":192,"./DefaultEqualityComparator":301,"./MurmurHash":307,"assert":335}],297:[function(require,module,exports){
|
|
46067
46220
|
"use strict";
|
|
46068
46221
|
/*!
|
|
46069
46222
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46135,7 +46288,7 @@ __decorate([
|
|
|
46135
46288
|
], ArrayEqualityComparator.prototype, "equals", null);
|
|
46136
46289
|
exports.ArrayEqualityComparator = ArrayEqualityComparator;
|
|
46137
46290
|
|
|
46138
|
-
},{"../Decorators":
|
|
46291
|
+
},{"../Decorators":192,"./MurmurHash":307,"./ObjectEqualityComparator":308}],298:[function(require,module,exports){
|
|
46139
46292
|
"use strict";
|
|
46140
46293
|
/*!
|
|
46141
46294
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46205,7 +46358,7 @@ var Arrays;
|
|
|
46205
46358
|
Arrays.toString = toString;
|
|
46206
46359
|
})(Arrays = exports.Arrays || (exports.Arrays = {}));
|
|
46207
46360
|
|
|
46208
|
-
},{}],
|
|
46361
|
+
},{}],299:[function(require,module,exports){
|
|
46209
46362
|
"use strict";
|
|
46210
46363
|
/*!
|
|
46211
46364
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46877,7 +47030,7 @@ class BitSetIterator {
|
|
|
46877
47030
|
[Symbol.iterator]() { return this; }
|
|
46878
47031
|
}
|
|
46879
47032
|
|
|
46880
|
-
},{"./MurmurHash":
|
|
47033
|
+
},{"./MurmurHash":307,"util":388}],300:[function(require,module,exports){
|
|
46881
47034
|
"use strict";
|
|
46882
47035
|
/*!
|
|
46883
47036
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46898,7 +47051,7 @@ function isSupplementaryCodePoint(ch) {
|
|
|
46898
47051
|
}
|
|
46899
47052
|
exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
|
|
46900
47053
|
|
|
46901
|
-
},{}],
|
|
47054
|
+
},{}],301:[function(require,module,exports){
|
|
46902
47055
|
"use strict";
|
|
46903
47056
|
/*!
|
|
46904
47057
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46969,7 +47122,7 @@ __decorate([
|
|
|
46969
47122
|
], DefaultEqualityComparator.prototype, "equals", null);
|
|
46970
47123
|
exports.DefaultEqualityComparator = DefaultEqualityComparator;
|
|
46971
47124
|
|
|
46972
|
-
},{"../Decorators":
|
|
47125
|
+
},{"../Decorators":192,"./MurmurHash":307,"./ObjectEqualityComparator":308}],302:[function(require,module,exports){
|
|
46973
47126
|
"use strict";
|
|
46974
47127
|
/*!
|
|
46975
47128
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47263,7 +47416,7 @@ __decorate([
|
|
|
47263
47416
|
], IntegerList.prototype, "toString", null);
|
|
47264
47417
|
exports.IntegerList = IntegerList;
|
|
47265
47418
|
|
|
47266
|
-
},{"../Decorators":
|
|
47419
|
+
},{"../Decorators":192,"./Arrays":298}],303:[function(require,module,exports){
|
|
47267
47420
|
"use strict";
|
|
47268
47421
|
/*!
|
|
47269
47422
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47293,7 +47446,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
|
|
|
47293
47446
|
}
|
|
47294
47447
|
exports.IntegerStack = IntegerStack;
|
|
47295
47448
|
|
|
47296
|
-
},{"./IntegerList":
|
|
47449
|
+
},{"./IntegerList":302}],304:[function(require,module,exports){
|
|
47297
47450
|
"use strict";
|
|
47298
47451
|
/*!
|
|
47299
47452
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47436,7 +47589,7 @@ __decorate([
|
|
|
47436
47589
|
], Interval.prototype, "toString", null);
|
|
47437
47590
|
exports.Interval = Interval;
|
|
47438
47591
|
|
|
47439
|
-
},{"../Decorators":
|
|
47592
|
+
},{"../Decorators":192}],305:[function(require,module,exports){
|
|
47440
47593
|
"use strict";
|
|
47441
47594
|
/*!
|
|
47442
47595
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48082,7 +48235,7 @@ __decorate([
|
|
|
48082
48235
|
], IntervalSet, "subtract", null);
|
|
48083
48236
|
exports.IntervalSet = IntervalSet;
|
|
48084
48237
|
|
|
48085
|
-
},{"../Decorators":
|
|
48238
|
+
},{"../Decorators":192,"../Lexer":200,"../Token":217,"./ArrayEqualityComparator":297,"./IntegerList":302,"./Interval":304,"./MurmurHash":307}],306:[function(require,module,exports){
|
|
48086
48239
|
"use strict";
|
|
48087
48240
|
/*!
|
|
48088
48241
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48115,7 +48268,7 @@ class MultiMap extends Map {
|
|
|
48115
48268
|
}
|
|
48116
48269
|
exports.MultiMap = MultiMap;
|
|
48117
48270
|
|
|
48118
|
-
},{}],
|
|
48271
|
+
},{}],307:[function(require,module,exports){
|
|
48119
48272
|
"use strict";
|
|
48120
48273
|
/*!
|
|
48121
48274
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48230,7 +48383,7 @@ var MurmurHash;
|
|
|
48230
48383
|
}
|
|
48231
48384
|
})(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
|
|
48232
48385
|
|
|
48233
|
-
},{}],
|
|
48386
|
+
},{}],308:[function(require,module,exports){
|
|
48234
48387
|
"use strict";
|
|
48235
48388
|
/*!
|
|
48236
48389
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48289,7 +48442,7 @@ __decorate([
|
|
|
48289
48442
|
], ObjectEqualityComparator.prototype, "equals", null);
|
|
48290
48443
|
exports.ObjectEqualityComparator = ObjectEqualityComparator;
|
|
48291
48444
|
|
|
48292
|
-
},{"../Decorators":
|
|
48445
|
+
},{"../Decorators":192}],309:[function(require,module,exports){
|
|
48293
48446
|
"use strict";
|
|
48294
48447
|
/*!
|
|
48295
48448
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48318,7 +48471,7 @@ class ParseCancellationException extends Error {
|
|
|
48318
48471
|
}
|
|
48319
48472
|
exports.ParseCancellationException = ParseCancellationException;
|
|
48320
48473
|
|
|
48321
|
-
},{}],
|
|
48474
|
+
},{}],310:[function(require,module,exports){
|
|
48322
48475
|
"use strict";
|
|
48323
48476
|
/*!
|
|
48324
48477
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48372,7 +48525,7 @@ class UUID {
|
|
|
48372
48525
|
}
|
|
48373
48526
|
exports.UUID = UUID;
|
|
48374
48527
|
|
|
48375
|
-
},{"./MurmurHash":
|
|
48528
|
+
},{"./MurmurHash":307}],311:[function(require,module,exports){
|
|
48376
48529
|
"use strict";
|
|
48377
48530
|
/*!
|
|
48378
48531
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48547,7 +48700,7 @@ exports.toCharArray = toCharArray;
|
|
|
48547
48700
|
// return s;
|
|
48548
48701
|
// }
|
|
48549
48702
|
|
|
48550
|
-
},{}],
|
|
48703
|
+
},{}],312:[function(require,module,exports){
|
|
48551
48704
|
"use strict";
|
|
48552
48705
|
/*!
|
|
48553
48706
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48583,7 +48736,7 @@ __decorate([
|
|
|
48583
48736
|
], ErrorNode.prototype, "accept", null);
|
|
48584
48737
|
exports.ErrorNode = ErrorNode;
|
|
48585
48738
|
|
|
48586
|
-
},{"../Decorators":
|
|
48739
|
+
},{"../Decorators":192,"./TerminalNode":315}],313:[function(require,module,exports){
|
|
48587
48740
|
"use strict";
|
|
48588
48741
|
/*!
|
|
48589
48742
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48688,7 +48841,7 @@ exports.ParseTreeWalker = ParseTreeWalker;
|
|
|
48688
48841
|
ParseTreeWalker.DEFAULT = new ParseTreeWalker();
|
|
48689
48842
|
})(ParseTreeWalker = exports.ParseTreeWalker || (exports.ParseTreeWalker = {}));
|
|
48690
48843
|
|
|
48691
|
-
},{"./ErrorNode":
|
|
48844
|
+
},{"./ErrorNode":312,"./RuleNode":314,"./TerminalNode":315}],314:[function(require,module,exports){
|
|
48692
48845
|
"use strict";
|
|
48693
48846
|
/*!
|
|
48694
48847
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48700,7 +48853,7 @@ class RuleNode {
|
|
|
48700
48853
|
}
|
|
48701
48854
|
exports.RuleNode = RuleNode;
|
|
48702
48855
|
|
|
48703
|
-
},{}],
|
|
48856
|
+
},{}],315:[function(require,module,exports){
|
|
48704
48857
|
"use strict";
|
|
48705
48858
|
/*!
|
|
48706
48859
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48792,7 +48945,7 @@ __decorate([
|
|
|
48792
48945
|
], TerminalNode.prototype, "toString", null);
|
|
48793
48946
|
exports.TerminalNode = TerminalNode;
|
|
48794
48947
|
|
|
48795
|
-
},{"../Decorators":
|
|
48948
|
+
},{"../Decorators":192,"../Token":217,"../misc/Interval":304}],316:[function(require,module,exports){
|
|
48796
48949
|
"use strict";
|
|
48797
48950
|
/*!
|
|
48798
48951
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49036,7 +49189,7 @@ __decorate([
|
|
|
49036
49189
|
], Trees, "getRootOfSubtreeEnclosingRegion", null);
|
|
49037
49190
|
exports.Trees = Trees;
|
|
49038
49191
|
|
|
49039
|
-
},{"../CommonToken":
|
|
49192
|
+
},{"../CommonToken":188,"../Decorators":192,"../Parser":205,"../ParserRuleContext":208,"../Token":217,"../atn/ATN":225,"../misc/Utils":311,"./ErrorNode":312,"./RuleNode":314,"./TerminalNode":315}],317:[function(require,module,exports){
|
|
49040
49193
|
"use strict";
|
|
49041
49194
|
/*!
|
|
49042
49195
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49060,7 +49213,7 @@ class Chunk {
|
|
|
49060
49213
|
}
|
|
49061
49214
|
exports.Chunk = Chunk;
|
|
49062
49215
|
|
|
49063
|
-
},{}],
|
|
49216
|
+
},{}],318:[function(require,module,exports){
|
|
49064
49217
|
"use strict";
|
|
49065
49218
|
/*!
|
|
49066
49219
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49240,7 +49393,7 @@ ParseTreeMatch = __decorate([
|
|
|
49240
49393
|
], ParseTreeMatch);
|
|
49241
49394
|
exports.ParseTreeMatch = ParseTreeMatch;
|
|
49242
49395
|
|
|
49243
|
-
},{"../../Decorators":
|
|
49396
|
+
},{"../../Decorators":192}],319:[function(require,module,exports){
|
|
49244
49397
|
"use strict";
|
|
49245
49398
|
/*!
|
|
49246
49399
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49398,7 +49551,7 @@ ParseTreePattern = __decorate([
|
|
|
49398
49551
|
], ParseTreePattern);
|
|
49399
49552
|
exports.ParseTreePattern = ParseTreePattern;
|
|
49400
49553
|
|
|
49401
|
-
},{"../../Decorators":
|
|
49554
|
+
},{"../../Decorators":192,"../xpath/XPath":325}],320:[function(require,module,exports){
|
|
49402
49555
|
"use strict";
|
|
49403
49556
|
/*!
|
|
49404
49557
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49876,7 +50029,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
|
|
|
49876
50029
|
ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
|
|
49877
50030
|
})(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
|
|
49878
50031
|
|
|
49879
|
-
},{"../../BailErrorStrategy":
|
|
50032
|
+
},{"../../BailErrorStrategy":182,"../../CharStreams":185,"../../CommonTokenStream":190,"../../Decorators":192,"../../ListTokenSource":203,"../../ParserInterpreter":207,"../../ParserRuleContext":208,"../../RecognitionException":211,"../../Token":217,"../../misc/MultiMap":306,"../../misc/ParseCancellationException":309,"../RuleNode":314,"../TerminalNode":315,"./ParseTreeMatch":318,"./ParseTreePattern":319,"./RuleTagToken":321,"./TagChunk":322,"./TextChunk":323,"./TokenTagToken":324}],321:[function(require,module,exports){
|
|
49880
50033
|
"use strict";
|
|
49881
50034
|
/*!
|
|
49882
50035
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50074,7 +50227,7 @@ RuleTagToken = __decorate([
|
|
|
50074
50227
|
], RuleTagToken);
|
|
50075
50228
|
exports.RuleTagToken = RuleTagToken;
|
|
50076
50229
|
|
|
50077
|
-
},{"../../Decorators":
|
|
50230
|
+
},{"../../Decorators":192,"../../Token":217}],322:[function(require,module,exports){
|
|
50078
50231
|
"use strict";
|
|
50079
50232
|
/*!
|
|
50080
50233
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50161,7 +50314,7 @@ __decorate([
|
|
|
50161
50314
|
], TagChunk.prototype, "toString", null);
|
|
50162
50315
|
exports.TagChunk = TagChunk;
|
|
50163
50316
|
|
|
50164
|
-
},{"../../Decorators":
|
|
50317
|
+
},{"../../Decorators":192,"./Chunk":317}],323:[function(require,module,exports){
|
|
50165
50318
|
"use strict";
|
|
50166
50319
|
/*!
|
|
50167
50320
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50231,7 +50384,7 @@ TextChunk = __decorate([
|
|
|
50231
50384
|
], TextChunk);
|
|
50232
50385
|
exports.TextChunk = TextChunk;
|
|
50233
50386
|
|
|
50234
|
-
},{"../../Decorators":
|
|
50387
|
+
},{"../../Decorators":192,"./Chunk":317}],324:[function(require,module,exports){
|
|
50235
50388
|
"use strict";
|
|
50236
50389
|
/*!
|
|
50237
50390
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50326,7 +50479,7 @@ TokenTagToken = __decorate([
|
|
|
50326
50479
|
], TokenTagToken);
|
|
50327
50480
|
exports.TokenTagToken = TokenTagToken;
|
|
50328
50481
|
|
|
50329
|
-
},{"../../CommonToken":
|
|
50482
|
+
},{"../../CommonToken":188,"../../Decorators":192}],325:[function(require,module,exports){
|
|
50330
50483
|
"use strict";
|
|
50331
50484
|
/*!
|
|
50332
50485
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50523,7 +50676,7 @@ exports.XPath = XPath;
|
|
|
50523
50676
|
XPath.WILDCARD = "*"; // word not operator/separator
|
|
50524
50677
|
XPath.NOT = "!"; // word for invert operator
|
|
50525
50678
|
|
|
50526
|
-
},{"../../CharStreams":
|
|
50679
|
+
},{"../../CharStreams":185,"../../CommonTokenStream":190,"../../LexerNoViableAltException":202,"../../ParserRuleContext":208,"../../Token":217,"./XPathLexer":327,"./XPathLexerErrorListener":328,"./XPathRuleAnywhereElement":329,"./XPathRuleElement":330,"./XPathTokenAnywhereElement":331,"./XPathTokenElement":332,"./XPathWildcardAnywhereElement":333,"./XPathWildcardElement":334}],326:[function(require,module,exports){
|
|
50527
50680
|
"use strict";
|
|
50528
50681
|
/*!
|
|
50529
50682
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50558,7 +50711,7 @@ __decorate([
|
|
|
50558
50711
|
], XPathElement.prototype, "toString", null);
|
|
50559
50712
|
exports.XPathElement = XPathElement;
|
|
50560
50713
|
|
|
50561
|
-
},{"../../Decorators":
|
|
50714
|
+
},{"../../Decorators":192}],327:[function(require,module,exports){
|
|
50562
50715
|
"use strict";
|
|
50563
50716
|
// Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
50564
50717
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -51033,7 +51186,7 @@ XPathLexer._serializedATN = Utils.join([
|
|
|
51033
51186
|
XPathLexer._serializedATNSegment1,
|
|
51034
51187
|
], "");
|
|
51035
51188
|
|
|
51036
|
-
},{"../../Lexer":
|
|
51189
|
+
},{"../../Lexer":200,"../../VocabularyImpl":223,"../../atn/ATNDeserializer":229,"../../atn/LexerATNSimulator":250,"../../misc/Utils":311}],328:[function(require,module,exports){
|
|
51037
51190
|
"use strict";
|
|
51038
51191
|
/*!
|
|
51039
51192
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51058,7 +51211,7 @@ __decorate([
|
|
|
51058
51211
|
], XPathLexerErrorListener.prototype, "syntaxError", null);
|
|
51059
51212
|
exports.XPathLexerErrorListener = XPathLexerErrorListener;
|
|
51060
51213
|
|
|
51061
|
-
},{"../../Decorators":
|
|
51214
|
+
},{"../../Decorators":192}],329:[function(require,module,exports){
|
|
51062
51215
|
"use strict";
|
|
51063
51216
|
/*!
|
|
51064
51217
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51092,7 +51245,7 @@ __decorate([
|
|
|
51092
51245
|
], XPathRuleAnywhereElement.prototype, "evaluate", null);
|
|
51093
51246
|
exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
|
|
51094
51247
|
|
|
51095
|
-
},{"../../Decorators":
|
|
51248
|
+
},{"../../Decorators":192,"../Trees":316,"./XPathElement":326}],330:[function(require,module,exports){
|
|
51096
51249
|
"use strict";
|
|
51097
51250
|
/*!
|
|
51098
51251
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51135,7 +51288,7 @@ __decorate([
|
|
|
51135
51288
|
], XPathRuleElement.prototype, "evaluate", null);
|
|
51136
51289
|
exports.XPathRuleElement = XPathRuleElement;
|
|
51137
51290
|
|
|
51138
|
-
},{"../../Decorators":
|
|
51291
|
+
},{"../../Decorators":192,"../../ParserRuleContext":208,"../Trees":316,"./XPathElement":326}],331:[function(require,module,exports){
|
|
51139
51292
|
"use strict";
|
|
51140
51293
|
/*!
|
|
51141
51294
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51167,7 +51320,7 @@ __decorate([
|
|
|
51167
51320
|
], XPathTokenAnywhereElement.prototype, "evaluate", null);
|
|
51168
51321
|
exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
|
|
51169
51322
|
|
|
51170
|
-
},{"../../Decorators":
|
|
51323
|
+
},{"../../Decorators":192,"../Trees":316,"./XPathElement":326}],332:[function(require,module,exports){
|
|
51171
51324
|
"use strict";
|
|
51172
51325
|
/*!
|
|
51173
51326
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51210,7 +51363,7 @@ __decorate([
|
|
|
51210
51363
|
], XPathTokenElement.prototype, "evaluate", null);
|
|
51211
51364
|
exports.XPathTokenElement = XPathTokenElement;
|
|
51212
51365
|
|
|
51213
|
-
},{"../../Decorators":
|
|
51366
|
+
},{"../../Decorators":192,"../TerminalNode":315,"../Trees":316,"./XPathElement":326}],333:[function(require,module,exports){
|
|
51214
51367
|
"use strict";
|
|
51215
51368
|
/*!
|
|
51216
51369
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51246,7 +51399,7 @@ __decorate([
|
|
|
51246
51399
|
], XPathWildcardAnywhereElement.prototype, "evaluate", null);
|
|
51247
51400
|
exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
|
|
51248
51401
|
|
|
51249
|
-
},{"../../Decorators":
|
|
51402
|
+
},{"../../Decorators":192,"../Trees":316,"./XPath":325,"./XPathElement":326}],334:[function(require,module,exports){
|
|
51250
51403
|
"use strict";
|
|
51251
51404
|
/*!
|
|
51252
51405
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51286,7 +51439,7 @@ __decorate([
|
|
|
51286
51439
|
], XPathWildcardElement.prototype, "evaluate", null);
|
|
51287
51440
|
exports.XPathWildcardElement = XPathWildcardElement;
|
|
51288
51441
|
|
|
51289
|
-
},{"../../Decorators":
|
|
51442
|
+
},{"../../Decorators":192,"../Trees":316,"./XPath":325,"./XPathElement":326}],335:[function(require,module,exports){
|
|
51290
51443
|
(function (global){(function (){
|
|
51291
51444
|
'use strict';
|
|
51292
51445
|
|
|
@@ -51796,7 +51949,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
51796
51949
|
};
|
|
51797
51950
|
|
|
51798
51951
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
51799
|
-
},{"object.assign/polyfill":
|
|
51952
|
+
},{"object.assign/polyfill":381,"util/":338}],336:[function(require,module,exports){
|
|
51800
51953
|
if (typeof Object.create === 'function') {
|
|
51801
51954
|
// implementation from standard node.js 'util' module
|
|
51802
51955
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -51821,14 +51974,14 @@ if (typeof Object.create === 'function') {
|
|
|
51821
51974
|
}
|
|
51822
51975
|
}
|
|
51823
51976
|
|
|
51824
|
-
},{}],
|
|
51977
|
+
},{}],337:[function(require,module,exports){
|
|
51825
51978
|
module.exports = function isBuffer(arg) {
|
|
51826
51979
|
return arg && typeof arg === 'object'
|
|
51827
51980
|
&& typeof arg.copy === 'function'
|
|
51828
51981
|
&& typeof arg.fill === 'function'
|
|
51829
51982
|
&& typeof arg.readUInt8 === 'function';
|
|
51830
51983
|
}
|
|
51831
|
-
},{}],
|
|
51984
|
+
},{}],338:[function(require,module,exports){
|
|
51832
51985
|
(function (process,global){(function (){
|
|
51833
51986
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
51834
51987
|
//
|
|
@@ -52418,7 +52571,7 @@ function hasOwnProperty(obj, prop) {
|
|
|
52418
52571
|
}
|
|
52419
52572
|
|
|
52420
52573
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
52421
|
-
},{"./support/isBuffer":
|
|
52574
|
+
},{"./support/isBuffer":337,"_process":383,"inherits":336}],339:[function(require,module,exports){
|
|
52422
52575
|
(function (global){(function (){
|
|
52423
52576
|
'use strict';
|
|
52424
52577
|
|
|
@@ -52439,7 +52592,7 @@ module.exports = function availableTypedArrays() {
|
|
|
52439
52592
|
};
|
|
52440
52593
|
|
|
52441
52594
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
52442
|
-
},{"possible-typed-array-names":
|
|
52595
|
+
},{"possible-typed-array-names":382}],340:[function(require,module,exports){
|
|
52443
52596
|
(function (process,global){(function (){
|
|
52444
52597
|
module.exports = process.hrtime || hrtime
|
|
52445
52598
|
|
|
@@ -52470,7 +52623,7 @@ function hrtime(previousTimestamp){
|
|
|
52470
52623
|
return [seconds,nanoseconds]
|
|
52471
52624
|
}
|
|
52472
52625
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
52473
|
-
},{"_process":
|
|
52626
|
+
},{"_process":383}],341:[function(require,module,exports){
|
|
52474
52627
|
'use strict';
|
|
52475
52628
|
|
|
52476
52629
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -52487,7 +52640,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
52487
52640
|
return intrinsic;
|
|
52488
52641
|
};
|
|
52489
52642
|
|
|
52490
|
-
},{"./":
|
|
52643
|
+
},{"./":342,"get-intrinsic":345}],342:[function(require,module,exports){
|
|
52491
52644
|
'use strict';
|
|
52492
52645
|
|
|
52493
52646
|
var bind = require('function-bind');
|
|
@@ -52536,7 +52689,7 @@ if ($defineProperty) {
|
|
|
52536
52689
|
module.exports.apply = applyBind;
|
|
52537
52690
|
}
|
|
52538
52691
|
|
|
52539
|
-
},{"function-bind":
|
|
52692
|
+
},{"function-bind":344,"get-intrinsic":345}],343:[function(require,module,exports){
|
|
52540
52693
|
'use strict';
|
|
52541
52694
|
|
|
52542
52695
|
/* eslint no-invalid-this: 1 */
|
|
@@ -52590,14 +52743,14 @@ module.exports = function bind(that) {
|
|
|
52590
52743
|
return bound;
|
|
52591
52744
|
};
|
|
52592
52745
|
|
|
52593
|
-
},{}],
|
|
52746
|
+
},{}],344:[function(require,module,exports){
|
|
52594
52747
|
'use strict';
|
|
52595
52748
|
|
|
52596
52749
|
var implementation = require('./implementation');
|
|
52597
52750
|
|
|
52598
52751
|
module.exports = Function.prototype.bind || implementation;
|
|
52599
52752
|
|
|
52600
|
-
},{"./implementation":
|
|
52753
|
+
},{"./implementation":343}],345:[function(require,module,exports){
|
|
52601
52754
|
'use strict';
|
|
52602
52755
|
|
|
52603
52756
|
var undefined;
|
|
@@ -52943,7 +53096,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
52943
53096
|
return value;
|
|
52944
53097
|
};
|
|
52945
53098
|
|
|
52946
|
-
},{"function-bind":
|
|
53099
|
+
},{"function-bind":344,"has":369,"has-symbols":364}],346:[function(require,module,exports){
|
|
52947
53100
|
'use strict';
|
|
52948
53101
|
|
|
52949
53102
|
var $defineProperty = require('es-define-property');
|
|
@@ -53001,7 +53154,7 @@ module.exports = function defineDataProperty(
|
|
|
53001
53154
|
}
|
|
53002
53155
|
};
|
|
53003
53156
|
|
|
53004
|
-
},{"es-define-property":
|
|
53157
|
+
},{"es-define-property":347,"es-errors/syntax":352,"es-errors/type":353,"gopd":359}],347:[function(require,module,exports){
|
|
53005
53158
|
'use strict';
|
|
53006
53159
|
|
|
53007
53160
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -53019,49 +53172,49 @@ if ($defineProperty) {
|
|
|
53019
53172
|
|
|
53020
53173
|
module.exports = $defineProperty;
|
|
53021
53174
|
|
|
53022
|
-
},{"get-intrinsic":
|
|
53175
|
+
},{"get-intrinsic":358}],348:[function(require,module,exports){
|
|
53023
53176
|
'use strict';
|
|
53024
53177
|
|
|
53025
53178
|
/** @type {import('./eval')} */
|
|
53026
53179
|
module.exports = EvalError;
|
|
53027
53180
|
|
|
53028
|
-
},{}],
|
|
53181
|
+
},{}],349:[function(require,module,exports){
|
|
53029
53182
|
'use strict';
|
|
53030
53183
|
|
|
53031
53184
|
/** @type {import('.')} */
|
|
53032
53185
|
module.exports = Error;
|
|
53033
53186
|
|
|
53034
|
-
},{}],
|
|
53187
|
+
},{}],350:[function(require,module,exports){
|
|
53035
53188
|
'use strict';
|
|
53036
53189
|
|
|
53037
53190
|
/** @type {import('./range')} */
|
|
53038
53191
|
module.exports = RangeError;
|
|
53039
53192
|
|
|
53040
|
-
},{}],
|
|
53193
|
+
},{}],351:[function(require,module,exports){
|
|
53041
53194
|
'use strict';
|
|
53042
53195
|
|
|
53043
53196
|
/** @type {import('./ref')} */
|
|
53044
53197
|
module.exports = ReferenceError;
|
|
53045
53198
|
|
|
53046
|
-
},{}],
|
|
53199
|
+
},{}],352:[function(require,module,exports){
|
|
53047
53200
|
'use strict';
|
|
53048
53201
|
|
|
53049
53202
|
/** @type {import('./syntax')} */
|
|
53050
53203
|
module.exports = SyntaxError;
|
|
53051
53204
|
|
|
53052
|
-
},{}],
|
|
53205
|
+
},{}],353:[function(require,module,exports){
|
|
53053
53206
|
'use strict';
|
|
53054
53207
|
|
|
53055
53208
|
/** @type {import('./type')} */
|
|
53056
53209
|
module.exports = TypeError;
|
|
53057
53210
|
|
|
53058
|
-
},{}],
|
|
53211
|
+
},{}],354:[function(require,module,exports){
|
|
53059
53212
|
'use strict';
|
|
53060
53213
|
|
|
53061
53214
|
/** @type {import('./uri')} */
|
|
53062
53215
|
module.exports = URIError;
|
|
53063
53216
|
|
|
53064
|
-
},{}],
|
|
53217
|
+
},{}],355:[function(require,module,exports){
|
|
53065
53218
|
'use strict';
|
|
53066
53219
|
|
|
53067
53220
|
var isCallable = require('is-callable');
|
|
@@ -53125,7 +53278,7 @@ var forEach = function forEach(list, iterator, thisArg) {
|
|
|
53125
53278
|
|
|
53126
53279
|
module.exports = forEach;
|
|
53127
53280
|
|
|
53128
|
-
},{"is-callable":
|
|
53281
|
+
},{"is-callable":373}],356:[function(require,module,exports){
|
|
53129
53282
|
'use strict';
|
|
53130
53283
|
|
|
53131
53284
|
/* eslint no-invalid-this: 1 */
|
|
@@ -53211,9 +53364,9 @@ module.exports = function bind(that) {
|
|
|
53211
53364
|
return bound;
|
|
53212
53365
|
};
|
|
53213
53366
|
|
|
53214
|
-
},{}],
|
|
53215
|
-
arguments[4][
|
|
53216
|
-
},{"./implementation":
|
|
53367
|
+
},{}],357:[function(require,module,exports){
|
|
53368
|
+
arguments[4][344][0].apply(exports,arguments)
|
|
53369
|
+
},{"./implementation":356,"dup":344}],358:[function(require,module,exports){
|
|
53217
53370
|
'use strict';
|
|
53218
53371
|
|
|
53219
53372
|
var undefined;
|
|
@@ -53574,7 +53727,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
53574
53727
|
return value;
|
|
53575
53728
|
};
|
|
53576
53729
|
|
|
53577
|
-
},{"es-errors":
|
|
53730
|
+
},{"es-errors":349,"es-errors/eval":348,"es-errors/range":350,"es-errors/ref":351,"es-errors/syntax":352,"es-errors/type":353,"es-errors/uri":354,"function-bind":357,"has-proto":363,"has-symbols":364,"hasown":370}],359:[function(require,module,exports){
|
|
53578
53731
|
'use strict';
|
|
53579
53732
|
|
|
53580
53733
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -53592,13 +53745,13 @@ if ($gOPD) {
|
|
|
53592
53745
|
|
|
53593
53746
|
module.exports = $gOPD;
|
|
53594
53747
|
|
|
53595
|
-
},{"get-intrinsic":
|
|
53596
|
-
arguments[4][342][0].apply(exports,arguments)
|
|
53597
|
-
},{"dup":342}],360:[function(require,module,exports){
|
|
53748
|
+
},{"get-intrinsic":362}],360:[function(require,module,exports){
|
|
53598
53749
|
arguments[4][343][0].apply(exports,arguments)
|
|
53599
|
-
},{"
|
|
53750
|
+
},{"dup":343}],361:[function(require,module,exports){
|
|
53600
53751
|
arguments[4][344][0].apply(exports,arguments)
|
|
53601
|
-
},{"
|
|
53752
|
+
},{"./implementation":360,"dup":344}],362:[function(require,module,exports){
|
|
53753
|
+
arguments[4][345][0].apply(exports,arguments)
|
|
53754
|
+
},{"dup":345,"function-bind":361,"has":369,"has-symbols":364}],363:[function(require,module,exports){
|
|
53602
53755
|
'use strict';
|
|
53603
53756
|
|
|
53604
53757
|
var test = {
|
|
@@ -53611,7 +53764,7 @@ module.exports = function hasProto() {
|
|
|
53611
53764
|
return { __proto__: test }.foo === test.foo && !({ __proto__: null } instanceof $Object);
|
|
53612
53765
|
};
|
|
53613
53766
|
|
|
53614
|
-
},{}],
|
|
53767
|
+
},{}],364:[function(require,module,exports){
|
|
53615
53768
|
'use strict';
|
|
53616
53769
|
|
|
53617
53770
|
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
|
@@ -53626,7 +53779,7 @@ module.exports = function hasNativeSymbols() {
|
|
|
53626
53779
|
return hasSymbolSham();
|
|
53627
53780
|
};
|
|
53628
53781
|
|
|
53629
|
-
},{"./shams":
|
|
53782
|
+
},{"./shams":365}],365:[function(require,module,exports){
|
|
53630
53783
|
'use strict';
|
|
53631
53784
|
|
|
53632
53785
|
/* eslint complexity: [2, 18], max-statements: [2, 33] */
|
|
@@ -53670,7 +53823,7 @@ module.exports = function hasSymbols() {
|
|
|
53670
53823
|
return true;
|
|
53671
53824
|
};
|
|
53672
53825
|
|
|
53673
|
-
},{}],
|
|
53826
|
+
},{}],366:[function(require,module,exports){
|
|
53674
53827
|
'use strict';
|
|
53675
53828
|
|
|
53676
53829
|
var hasSymbols = require('has-symbols/shams');
|
|
@@ -53679,18 +53832,18 @@ module.exports = function hasToStringTagShams() {
|
|
|
53679
53832
|
return hasSymbols() && !!Symbol.toStringTag;
|
|
53680
53833
|
};
|
|
53681
53834
|
|
|
53682
|
-
},{"has-symbols/shams":
|
|
53683
|
-
arguments[4][342][0].apply(exports,arguments)
|
|
53684
|
-
},{"dup":342}],367:[function(require,module,exports){
|
|
53835
|
+
},{"has-symbols/shams":365}],367:[function(require,module,exports){
|
|
53685
53836
|
arguments[4][343][0].apply(exports,arguments)
|
|
53686
|
-
},{"
|
|
53837
|
+
},{"dup":343}],368:[function(require,module,exports){
|
|
53838
|
+
arguments[4][344][0].apply(exports,arguments)
|
|
53839
|
+
},{"./implementation":367,"dup":344}],369:[function(require,module,exports){
|
|
53687
53840
|
'use strict';
|
|
53688
53841
|
|
|
53689
53842
|
var bind = require('function-bind');
|
|
53690
53843
|
|
|
53691
53844
|
module.exports = bind.call(Function.call, Object.prototype.hasOwnProperty);
|
|
53692
53845
|
|
|
53693
|
-
},{"function-bind":
|
|
53846
|
+
},{"function-bind":368}],370:[function(require,module,exports){
|
|
53694
53847
|
'use strict';
|
|
53695
53848
|
|
|
53696
53849
|
var call = Function.prototype.call;
|
|
@@ -53700,7 +53853,7 @@ var bind = require('function-bind');
|
|
|
53700
53853
|
/** @type {import('.')} */
|
|
53701
53854
|
module.exports = bind.call(call, $hasOwn);
|
|
53702
53855
|
|
|
53703
|
-
},{"function-bind":
|
|
53856
|
+
},{"function-bind":357}],371:[function(require,module,exports){
|
|
53704
53857
|
if (typeof Object.create === 'function') {
|
|
53705
53858
|
// implementation from standard node.js 'util' module
|
|
53706
53859
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -53729,7 +53882,7 @@ if (typeof Object.create === 'function') {
|
|
|
53729
53882
|
}
|
|
53730
53883
|
}
|
|
53731
53884
|
|
|
53732
|
-
},{}],
|
|
53885
|
+
},{}],372:[function(require,module,exports){
|
|
53733
53886
|
'use strict';
|
|
53734
53887
|
|
|
53735
53888
|
var hasToStringTag = require('has-tostringtag/shams')();
|
|
@@ -53764,7 +53917,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
|
53764
53917
|
|
|
53765
53918
|
module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
53766
53919
|
|
|
53767
|
-
},{"call-bind/callBound":
|
|
53920
|
+
},{"call-bind/callBound":341,"has-tostringtag/shams":366}],373:[function(require,module,exports){
|
|
53768
53921
|
'use strict';
|
|
53769
53922
|
|
|
53770
53923
|
var fnToStr = Function.prototype.toString;
|
|
@@ -53867,7 +54020,7 @@ module.exports = reflectApply
|
|
|
53867
54020
|
return tryFunctionObject(value);
|
|
53868
54021
|
};
|
|
53869
54022
|
|
|
53870
|
-
},{}],
|
|
54023
|
+
},{}],374:[function(require,module,exports){
|
|
53871
54024
|
'use strict';
|
|
53872
54025
|
|
|
53873
54026
|
var toStr = Object.prototype.toString;
|
|
@@ -53907,7 +54060,7 @@ module.exports = function isGeneratorFunction(fn) {
|
|
|
53907
54060
|
return getProto(fn) === GeneratorFunction;
|
|
53908
54061
|
};
|
|
53909
54062
|
|
|
53910
|
-
},{"has-tostringtag/shams":
|
|
54063
|
+
},{"has-tostringtag/shams":366}],375:[function(require,module,exports){
|
|
53911
54064
|
'use strict';
|
|
53912
54065
|
|
|
53913
54066
|
var whichTypedArray = require('which-typed-array');
|
|
@@ -53917,7 +54070,7 @@ module.exports = function isTypedArray(value) {
|
|
|
53917
54070
|
return !!whichTypedArray(value);
|
|
53918
54071
|
};
|
|
53919
54072
|
|
|
53920
|
-
},{"which-typed-array":
|
|
54073
|
+
},{"which-typed-array":389}],376:[function(require,module,exports){
|
|
53921
54074
|
(function (global){(function (){
|
|
53922
54075
|
/**
|
|
53923
54076
|
* @license
|
|
@@ -71130,7 +71283,7 @@ module.exports = function isTypedArray(value) {
|
|
|
71130
71283
|
}.call(this));
|
|
71131
71284
|
|
|
71132
71285
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
71133
|
-
},{}],
|
|
71286
|
+
},{}],377:[function(require,module,exports){
|
|
71134
71287
|
'use strict';
|
|
71135
71288
|
|
|
71136
71289
|
var keysShim;
|
|
@@ -71254,7 +71407,7 @@ if (!Object.keys) {
|
|
|
71254
71407
|
}
|
|
71255
71408
|
module.exports = keysShim;
|
|
71256
71409
|
|
|
71257
|
-
},{"./isArguments":
|
|
71410
|
+
},{"./isArguments":379}],378:[function(require,module,exports){
|
|
71258
71411
|
'use strict';
|
|
71259
71412
|
|
|
71260
71413
|
var slice = Array.prototype.slice;
|
|
@@ -71288,7 +71441,7 @@ keysShim.shim = function shimObjectKeys() {
|
|
|
71288
71441
|
|
|
71289
71442
|
module.exports = keysShim;
|
|
71290
71443
|
|
|
71291
|
-
},{"./implementation":
|
|
71444
|
+
},{"./implementation":377,"./isArguments":379}],379:[function(require,module,exports){
|
|
71292
71445
|
'use strict';
|
|
71293
71446
|
|
|
71294
71447
|
var toStr = Object.prototype.toString;
|
|
@@ -71307,7 +71460,7 @@ module.exports = function isArguments(value) {
|
|
|
71307
71460
|
return isArgs;
|
|
71308
71461
|
};
|
|
71309
71462
|
|
|
71310
|
-
},{}],
|
|
71463
|
+
},{}],380:[function(require,module,exports){
|
|
71311
71464
|
'use strict';
|
|
71312
71465
|
|
|
71313
71466
|
// modified from https://github.com/es-shims/es6-shim
|
|
@@ -71355,7 +71508,7 @@ module.exports = function assign(target, source1) {
|
|
|
71355
71508
|
return to; // step 4
|
|
71356
71509
|
};
|
|
71357
71510
|
|
|
71358
|
-
},{"call-bind/callBound":
|
|
71511
|
+
},{"call-bind/callBound":341,"has-symbols/shams":365,"object-keys":378}],381:[function(require,module,exports){
|
|
71359
71512
|
'use strict';
|
|
71360
71513
|
|
|
71361
71514
|
var implementation = require('./implementation');
|
|
@@ -71412,7 +71565,7 @@ module.exports = function getPolyfill() {
|
|
|
71412
71565
|
return Object.assign;
|
|
71413
71566
|
};
|
|
71414
71567
|
|
|
71415
|
-
},{"./implementation":
|
|
71568
|
+
},{"./implementation":380}],382:[function(require,module,exports){
|
|
71416
71569
|
'use strict';
|
|
71417
71570
|
|
|
71418
71571
|
/** @type {import('.')} */
|
|
@@ -71430,7 +71583,7 @@ module.exports = [
|
|
|
71430
71583
|
'BigUint64Array'
|
|
71431
71584
|
];
|
|
71432
71585
|
|
|
71433
|
-
},{}],
|
|
71586
|
+
},{}],383:[function(require,module,exports){
|
|
71434
71587
|
// shim for using process in browser
|
|
71435
71588
|
var process = module.exports = {};
|
|
71436
71589
|
|
|
@@ -71616,7 +71769,7 @@ process.chdir = function (dir) {
|
|
|
71616
71769
|
};
|
|
71617
71770
|
process.umask = function() { return 0; };
|
|
71618
71771
|
|
|
71619
|
-
},{}],
|
|
71772
|
+
},{}],384:[function(require,module,exports){
|
|
71620
71773
|
'use strict';
|
|
71621
71774
|
|
|
71622
71775
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -71660,7 +71813,7 @@ module.exports = function setFunctionLength(fn, length) {
|
|
|
71660
71813
|
return fn;
|
|
71661
71814
|
};
|
|
71662
71815
|
|
|
71663
|
-
},{"define-data-property":
|
|
71816
|
+
},{"define-data-property":346,"es-errors/type":353,"get-intrinsic":358,"gopd":359,"has-property-descriptors":385}],385:[function(require,module,exports){
|
|
71664
71817
|
'use strict';
|
|
71665
71818
|
|
|
71666
71819
|
var $defineProperty = require('es-define-property');
|
|
@@ -71684,9 +71837,9 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
|
|
|
71684
71837
|
|
|
71685
71838
|
module.exports = hasPropertyDescriptors;
|
|
71686
71839
|
|
|
71687
|
-
},{"es-define-property":
|
|
71688
|
-
arguments[4][
|
|
71689
|
-
},{"dup":
|
|
71840
|
+
},{"es-define-property":347}],386:[function(require,module,exports){
|
|
71841
|
+
arguments[4][337][0].apply(exports,arguments)
|
|
71842
|
+
},{"dup":337}],387:[function(require,module,exports){
|
|
71690
71843
|
// Currently in sync with Node.js lib/internal/util/types.js
|
|
71691
71844
|
// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
|
|
71692
71845
|
|
|
@@ -72022,7 +72175,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
|
|
|
72022
72175
|
});
|
|
72023
72176
|
});
|
|
72024
72177
|
|
|
72025
|
-
},{"is-arguments":
|
|
72178
|
+
},{"is-arguments":372,"is-generator-function":374,"is-typed-array":375,"which-typed-array":389}],388:[function(require,module,exports){
|
|
72026
72179
|
(function (process){(function (){
|
|
72027
72180
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
72028
72181
|
//
|
|
@@ -72741,7 +72894,7 @@ function callbackify(original) {
|
|
|
72741
72894
|
exports.callbackify = callbackify;
|
|
72742
72895
|
|
|
72743
72896
|
}).call(this)}).call(this,require('_process'))
|
|
72744
|
-
},{"./support/isBuffer":
|
|
72897
|
+
},{"./support/isBuffer":386,"./support/types":387,"_process":383,"inherits":371}],389:[function(require,module,exports){
|
|
72745
72898
|
(function (global){(function (){
|
|
72746
72899
|
'use strict';
|
|
72747
72900
|
|
|
@@ -72861,9 +73014,9 @@ module.exports = function whichTypedArray(value) {
|
|
|
72861
73014
|
};
|
|
72862
73015
|
|
|
72863
73016
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
72864
|
-
},{"available-typed-arrays":
|
|
72865
|
-
arguments[4][
|
|
72866
|
-
},{"./":
|
|
73017
|
+
},{"available-typed-arrays":339,"call-bind":391,"call-bind/callBound":390,"for-each":355,"gopd":359,"has-tostringtag/shams":392}],390:[function(require,module,exports){
|
|
73018
|
+
arguments[4][341][0].apply(exports,arguments)
|
|
73019
|
+
},{"./":391,"dup":341,"get-intrinsic":358}],391:[function(require,module,exports){
|
|
72867
73020
|
'use strict';
|
|
72868
73021
|
|
|
72869
73022
|
var bind = require('function-bind');
|
|
@@ -72900,7 +73053,7 @@ if ($defineProperty) {
|
|
|
72900
73053
|
module.exports.apply = applyBind;
|
|
72901
73054
|
}
|
|
72902
73055
|
|
|
72903
|
-
},{"es-define-property":
|
|
73056
|
+
},{"es-define-property":347,"es-errors/type":353,"function-bind":357,"get-intrinsic":358,"set-function-length":384}],392:[function(require,module,exports){
|
|
72904
73057
|
'use strict';
|
|
72905
73058
|
|
|
72906
73059
|
var hasSymbols = require('has-symbols/shams');
|
|
@@ -72910,5 +73063,5 @@ module.exports = function hasToStringTagShams() {
|
|
|
72910
73063
|
return hasSymbols() && !!Symbol.toStringTag;
|
|
72911
73064
|
};
|
|
72912
73065
|
|
|
72913
|
-
},{"has-symbols/shams":
|
|
73066
|
+
},{"has-symbols/shams":365}]},{},[115])(115)
|
|
72914
73067
|
});
|