@designliquido/delegua 0.65.0 → 0.67.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/analisador-semantico/dialetos/analisador-semantico-pitugues.d.ts +83 -0
- package/analisador-semantico/dialetos/analisador-semantico-pitugues.d.ts.map +1 -0
- package/analisador-semantico/dialetos/analisador-semantico-pitugues.js +748 -0
- package/analisador-semantico/dialetos/analisador-semantico-pitugues.js.map +1 -0
- package/analisador-semantico/dialetos/index.d.ts +2 -0
- package/analisador-semantico/dialetos/index.d.ts.map +1 -0
- package/analisador-semantico/dialetos/index.js +18 -0
- package/analisador-semantico/dialetos/index.js.map +1 -0
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.d.ts +3 -0
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.d.ts.map +1 -1
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.js +54 -12
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.js.map +1 -1
- package/bin/package.json +1 -1
- package/estilizador/estilizador-delegua.d.ts +55 -0
- package/estilizador/estilizador-delegua.d.ts.map +1 -0
- package/estilizador/estilizador-delegua.js +228 -0
- package/estilizador/estilizador-delegua.js.map +1 -0
- package/estilizador/index.d.ts +3 -0
- package/estilizador/index.d.ts.map +1 -0
- package/estilizador/index.js +19 -0
- package/estilizador/index.js.map +1 -0
- package/estilizador/regras/convencao-nomenclatura.d.ts +79 -0
- package/estilizador/regras/convencao-nomenclatura.d.ts.map +1 -0
- package/estilizador/regras/convencao-nomenclatura.js +148 -0
- package/estilizador/regras/convencao-nomenclatura.js.map +1 -0
- package/estilizador/regras/fortalecer-tipos.d.ts +28 -0
- package/estilizador/regras/fortalecer-tipos.d.ts.map +1 -0
- package/estilizador/regras/fortalecer-tipos.js +84 -0
- package/estilizador/regras/fortalecer-tipos.js.map +1 -0
- package/estilizador/regras/index.d.ts +3 -0
- package/estilizador/regras/index.d.ts.map +1 -0
- package/estilizador/regras/index.js +19 -0
- package/estilizador/regras/index.js.map +1 -0
- package/index.d.ts +1 -0
- package/index.d.ts.map +1 -1
- package/index.js +1 -0
- package/index.js.map +1 -1
- package/interfaces/estilizador-comum-interface.d.ts +85 -0
- package/interfaces/estilizador-comum-interface.d.ts.map +1 -0
- package/interfaces/estilizador-comum-interface.js +3 -0
- package/interfaces/estilizador-comum-interface.js.map +1 -0
- package/interfaces/index.d.ts +1 -0
- package/interfaces/index.d.ts.map +1 -1
- package/interfaces/index.js +1 -0
- package/interfaces/index.js.map +1 -1
- package/interpretador/depuracao/avaliador-expressao-depuracao.d.ts.map +1 -1
- package/interpretador/depuracao/avaliador-expressao-depuracao.js +2 -8
- package/interpretador/depuracao/avaliador-expressao-depuracao.js.map +1 -1
- package/interpretador/depuracao/comum.d.ts +11 -1
- package/interpretador/depuracao/comum.d.ts.map +1 -1
- package/interpretador/depuracao/comum.js +223 -3
- package/interpretador/depuracao/comum.js.map +1 -1
- package/interpretador/depuracao/interpretador-base-com-depuracao.d.ts +35 -3
- package/interpretador/depuracao/interpretador-base-com-depuracao.d.ts.map +1 -1
- package/interpretador/depuracao/interpretador-base-com-depuracao.js +50 -3
- package/interpretador/depuracao/interpretador-base-com-depuracao.js.map +1 -1
- package/interpretador/depuracao/interpretador-com-depuracao.d.ts +12 -3
- package/interpretador/depuracao/interpretador-com-depuracao.d.ts.map +1 -1
- package/interpretador/depuracao/interpretador-com-depuracao.js +27 -3
- package/interpretador/depuracao/interpretador-com-depuracao.js.map +1 -1
- package/interpretador/interpretador-base.d.ts.map +1 -1
- package/interpretador/interpretador-base.js +2 -0
- package/interpretador/interpretador-base.js.map +1 -1
- package/package.json +1 -1
- package/umd/delegua.js +916 -363
package/umd/delegua.js
CHANGED
|
@@ -240,7 +240,7 @@ class AvaliadorSintaticoBase {
|
|
|
240
240
|
}
|
|
241
241
|
exports.AvaliadorSintaticoBase = AvaliadorSintaticoBase;
|
|
242
242
|
|
|
243
|
-
},{"../construtos":51,"../declaracoes":96,"../tipos-de-simbolos/comum":
|
|
243
|
+
},{"../construtos":51,"../declaracoes":96,"../tipos-de-simbolos/comum":195,"./erro-avaliador-sintatico":12}],2:[function(require,module,exports){
|
|
244
244
|
"use strict";
|
|
245
245
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
246
246
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -2307,7 +2307,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
2307
2307
|
}
|
|
2308
2308
|
exports.AvaliadorSintatico = AvaliadorSintatico;
|
|
2309
2309
|
|
|
2310
|
-
},{"../bibliotecas/primitivas-dicionario":20,"../bibliotecas/primitivas-numero":21,"../bibliotecas/primitivas-texto":22,"../bibliotecas/primitivas-vetor":23,"../construtos":51,"../construtos/tuplas":68,"../declaracoes":96,"../inferenciador":
|
|
2310
|
+
},{"../bibliotecas/primitivas-dicionario":20,"../bibliotecas/primitivas-numero":21,"../bibliotecas/primitivas-texto":22,"../bibliotecas/primitivas-vetor":23,"../construtos":51,"../construtos/tuplas":68,"../declaracoes":96,"../inferenciador":121,"../informacao-elemento-sintatico":122,"../tipos-de-dados/delegua":191,"../tipos-de-simbolos/delegua":196,"./avaliador-sintatico-base":1,"./comum":3,"./elemento-montao-tipos":11,"./erro-avaliador-sintatico":12,"./informacao-escopo":14,"./montao-tipos":17,"./pilha-escopos":18,"browser-process-hrtime":384}],3:[function(require,module,exports){
|
|
2311
2311
|
"use strict";
|
|
2312
2312
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2313
2313
|
exports.buscarRetornos = buscarRetornos;
|
|
@@ -2408,7 +2408,7 @@ function registrarPrimitiva(primitivasConhecidas, tipo, catalogoPrimitivas) {
|
|
|
2408
2408
|
}
|
|
2409
2409
|
}
|
|
2410
2410
|
|
|
2411
|
-
},{"../declaracoes":96,"../informacao-elemento-sintatico":
|
|
2411
|
+
},{"../declaracoes":96,"../informacao-elemento-sintatico":122}],4:[function(require,module,exports){
|
|
2412
2412
|
"use strict";
|
|
2413
2413
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
2414
2414
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -2634,7 +2634,7 @@ class AvaliadorSintaticoCalango extends avaliador_sintatico_base_1.AvaliadorSint
|
|
|
2634
2634
|
}
|
|
2635
2635
|
exports.AvaliadorSintaticoCalango = AvaliadorSintaticoCalango;
|
|
2636
2636
|
|
|
2637
|
-
},{"../../construtos":51,"../../declaracoes":96,"../../informacao-elemento-sintatico":
|
|
2637
|
+
},{"../../construtos":51,"../../declaracoes":96,"../../informacao-elemento-sintatico":122,"../../tipos-de-simbolos/calango":194,"../avaliador-sintatico-base":1,"../informacao-escopo":14,"../pilha-escopos":18}],5:[function(require,module,exports){
|
|
2638
2638
|
"use strict";
|
|
2639
2639
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
2640
2640
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -3294,7 +3294,7 @@ class AvaliadorSintaticoEguaClassico {
|
|
|
3294
3294
|
}
|
|
3295
3295
|
exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
|
|
3296
3296
|
|
|
3297
|
-
},{"../../construtos":51,"../../declaracoes":96,"../../tipos-de-simbolos/egua-classico":
|
|
3297
|
+
},{"../../construtos":51,"../../declaracoes":96,"../../tipos-de-simbolos/egua-classico":197,"../erro-avaliador-sintatico":12}],6:[function(require,module,exports){
|
|
3298
3298
|
"use strict";
|
|
3299
3299
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3300
3300
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -3500,18 +3500,18 @@ class AvaliadorSintaticoPitugues {
|
|
|
3500
3500
|
}
|
|
3501
3501
|
return false;
|
|
3502
3502
|
}
|
|
3503
|
-
|
|
3503
|
+
consumirIdentificadores() {
|
|
3504
3504
|
const identificadores = [];
|
|
3505
3505
|
let indexResto = -1;
|
|
3506
3506
|
do {
|
|
3507
3507
|
let ehRestoAtual = false;
|
|
3508
|
-
// Verifica
|
|
3508
|
+
// Verifica * como token separado
|
|
3509
3509
|
if (this.verificarTipoSimboloAtual(pitugues_2.default.MULTIPLICACAO)) {
|
|
3510
3510
|
this.consumir(pitugues_2.default.MULTIPLICACAO, '');
|
|
3511
3511
|
ehRestoAtual = true;
|
|
3512
3512
|
}
|
|
3513
3513
|
const identificador = this.consumir(pitugues_2.default.IDENTIFICADOR, ehRestoAtual ? 'Esperado nome de variável após operador *.' : 'Esperado nome de variável.');
|
|
3514
|
-
// Verifica
|
|
3514
|
+
// Verifica * no nome da variável
|
|
3515
3515
|
if (identificador.lexema.startsWith('*')) {
|
|
3516
3516
|
ehRestoAtual = true;
|
|
3517
3517
|
identificador.lexema = identificador.lexema.slice(1);
|
|
@@ -3524,7 +3524,9 @@ class AvaliadorSintaticoPitugues {
|
|
|
3524
3524
|
}
|
|
3525
3525
|
identificadores.push(identificador);
|
|
3526
3526
|
} while (this.verificarSeSimboloAtualEIgualA(pitugues_2.default.VIRGULA));
|
|
3527
|
-
|
|
3527
|
+
return { simbolos: identificadores, indexResto };
|
|
3528
|
+
}
|
|
3529
|
+
consumirInicializadores() {
|
|
3528
3530
|
const inicializadores = [];
|
|
3529
3531
|
do {
|
|
3530
3532
|
if (this.estaNoFinal()) {
|
|
@@ -3532,21 +3534,56 @@ class AvaliadorSintaticoPitugues {
|
|
|
3532
3534
|
}
|
|
3533
3535
|
inicializadores.push(this.expressao());
|
|
3534
3536
|
} while (this.verificarSeSimboloAtualEIgualA(pitugues_2.default.VIRGULA));
|
|
3537
|
+
return inicializadores;
|
|
3538
|
+
}
|
|
3539
|
+
construirValidacaoDesempacotamento(identificador, origem, qtdEsperada) {
|
|
3540
|
+
const linha = identificador.linha;
|
|
3541
|
+
const chamadaTamanho = new construtos_1.Chamada(this.hashArquivo, new construtos_1.Variavel(this.hashArquivo, new lexador_1.Simbolo(pitugues_2.default.IDENTIFICADOR, "tamanho", null, linha, -1)), [origem]);
|
|
3542
|
+
const condicaoErro = new construtos_1.Binario(this.hashArquivo, chamadaTamanho, new lexador_1.Simbolo(pitugues_2.default.DIFERENTE, "!=", null, linha, -1), new construtos_1.Literal(this.hashArquivo, linha, qtdEsperada, 'número'));
|
|
3543
|
+
const mensagem = `Erro de execução: Você tentou desempacotar em ${qtdEsperada} variáveis, mas o vetor possui tamanho diferente.`;
|
|
3544
|
+
const falha = new declaracoes_1.Falhar(new lexador_1.Simbolo(pitugues_2.default.FALHAR, "falhar", null, linha, -1), new construtos_1.Literal(this.hashArquivo, linha, mensagem, 'texto'));
|
|
3545
|
+
return new declaracoes_1.Se(condicaoErro, new declaracoes_1.Bloco(this.hashArquivo, linha, [falha]), [], null);
|
|
3546
|
+
}
|
|
3547
|
+
declaracaoDeVariaveis() {
|
|
3548
|
+
const { simbolos: identificadores, indexResto } = this.consumirIdentificadores();
|
|
3549
|
+
this.consumir(pitugues_2.default.IGUAL, 'Esperado o símbolo igual(=) após identificador.');
|
|
3550
|
+
const inicializadores = this.consumirInicializadores();
|
|
3535
3551
|
const qtdIdentificadores = identificadores.length;
|
|
3536
3552
|
const qtdValores = inicializadores.length;
|
|
3553
|
+
const ehDesempacotamento = qtdIdentificadores > 1 && qtdValores === 1;
|
|
3537
3554
|
if (indexResto > -1) {
|
|
3538
|
-
// Com resto: precisa de valores suficientes para cobrir as variáveis obrigatórias.
|
|
3539
3555
|
if (qtdValores < qtdIdentificadores - 1) {
|
|
3540
|
-
|
|
3556
|
+
if (!ehDesempacotamento || (ehDesempacotamento && inicializadores[0] instanceof construtos_1.Literal)) {
|
|
3557
|
+
throw this.erro(this.simboloAnterior(), 'Quantidade insuficiente de valores para desempacotamento com operador de resto.');
|
|
3558
|
+
}
|
|
3541
3559
|
}
|
|
3542
3560
|
}
|
|
3543
3561
|
else {
|
|
3544
|
-
|
|
3545
|
-
if (qtdIdentificadores !== qtdValores) {
|
|
3562
|
+
if (!ehDesempacotamento && qtdIdentificadores !== qtdValores) {
|
|
3546
3563
|
throw this.erro(this.simboloAnterior(), 'Quantidade de inicializadores à esquerda do igual é diferente da quantidade de identificadores à direita.');
|
|
3547
3564
|
}
|
|
3565
|
+
if (ehDesempacotamento && inicializadores[0] instanceof construtos_1.Vetor) {
|
|
3566
|
+
const vetor = inicializadores[0];
|
|
3567
|
+
if (vetor.tamanho !== qtdIdentificadores) {
|
|
3568
|
+
throw this.erro(this.simboloAnterior(), `O vetor possui ${vetor.tamanho} elementos, mas você tentou desempacotar em ${qtdIdentificadores} variáveis.`);
|
|
3569
|
+
}
|
|
3570
|
+
}
|
|
3548
3571
|
}
|
|
3549
3572
|
const retorno = [];
|
|
3573
|
+
let origemParaAtribuicao = inicializadores[0];
|
|
3574
|
+
// Injeção de Código (Runtime Check)
|
|
3575
|
+
if (ehDesempacotamento && !(inicializadores[0] instanceof construtos_1.Vetor)) {
|
|
3576
|
+
const linha = identificadores[0].linha;
|
|
3577
|
+
// Cria variável temporária para evitar reavaliar a expressão original múltiplas vezes
|
|
3578
|
+
const nomeVarTemp = `__temp_desempacotamento_${new Date().getTime()}_${Math.floor(Math.random() * 1000)}`;
|
|
3579
|
+
const simboloVarTemp = new lexador_1.Simbolo(pitugues_2.default.IDENTIFICADOR, nomeVarTemp, null, linha, -1);
|
|
3580
|
+
retorno.push(new declaracoes_1.Var(simboloVarTemp, inicializadores[0], 'qualquer[]'));
|
|
3581
|
+
origemParaAtribuicao = new construtos_1.Variavel(this.hashArquivo, simboloVarTemp);
|
|
3582
|
+
// Injeta validação de tamanho se não houver operador de resto
|
|
3583
|
+
if (indexResto === -1) {
|
|
3584
|
+
retorno.push(this.construirValidacaoDesempacotamento(identificadores[0], origemParaAtribuicao, qtdIdentificadores));
|
|
3585
|
+
}
|
|
3586
|
+
}
|
|
3550
3587
|
let cursorValores = 0;
|
|
3551
3588
|
const qtdParaResto = qtdValores - (qtdIdentificadores - 1);
|
|
3552
3589
|
for (let i = 0; i < identificadores.length; i++) {
|
|
@@ -3554,18 +3591,23 @@ class AvaliadorSintaticoPitugues {
|
|
|
3554
3591
|
let inicializador;
|
|
3555
3592
|
let tipo = "qualquer";
|
|
3556
3593
|
if (i === indexResto) {
|
|
3557
|
-
// Caso Resto (*): absorve N valores em um Vetor e força tipagem de array.
|
|
3558
3594
|
const valoresResto = inicializadores.slice(cursorValores, cursorValores + qtdParaResto);
|
|
3559
3595
|
let tipoInferido = (0, inferenciador_1.inferirTipoVariavel)(valoresResto);
|
|
3560
|
-
if (!tipoInferido.endsWith('[]'))
|
|
3596
|
+
if (!tipoInferido.endsWith('[]'))
|
|
3561
3597
|
tipoInferido = `${tipoInferido}[]`;
|
|
3562
|
-
}
|
|
3563
3598
|
inicializador = new construtos_1.Vetor(identificador.hashArquivo, identificador.linha, valoresResto, valoresResto.length, tipoInferido);
|
|
3564
3599
|
tipo = tipoInferido;
|
|
3565
3600
|
cursorValores += qtdParaResto;
|
|
3566
3601
|
}
|
|
3602
|
+
else if (ehDesempacotamento) {
|
|
3603
|
+
if (inicializadores[0] instanceof construtos_1.Vetor) {
|
|
3604
|
+
inicializador = inicializadores[0].valores[i];
|
|
3605
|
+
}
|
|
3606
|
+
else {
|
|
3607
|
+
inicializador = new construtos_1.AcessoIndiceVariavel(this.hashArquivo, origemParaAtribuicao, new construtos_1.Literal(this.hashArquivo, identificador.linha, i, 'número'), new lexador_1.Simbolo(pitugues_2.default.COLCHETE_DIREITO, ']', null, identificador.linha, -1));
|
|
3608
|
+
}
|
|
3609
|
+
}
|
|
3567
3610
|
else {
|
|
3568
|
-
// Caso comum: consome 1 valor
|
|
3569
3611
|
inicializador = inicializadores[cursorValores];
|
|
3570
3612
|
cursorValores++;
|
|
3571
3613
|
tipo = this.logicaComumInferenciaTiposVariaveisEConstantes(inicializador, tipo);
|
|
@@ -4616,7 +4658,7 @@ class AvaliadorSintaticoPitugues {
|
|
|
4616
4658
|
}
|
|
4617
4659
|
exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
|
|
4618
4660
|
|
|
4619
|
-
},{"../../bibliotecas/primitivas-dicionario":20,"../../bibliotecas/primitivas-numero":21,"../../bibliotecas/primitivas-texto":22,"../../bibliotecas/primitivas-vetor":23,"../../construtos":51,"../../declaracoes":96,"../../inferenciador":
|
|
4661
|
+
},{"../../bibliotecas/primitivas-dicionario":20,"../../bibliotecas/primitivas-numero":21,"../../bibliotecas/primitivas-texto":22,"../../bibliotecas/primitivas-vetor":23,"../../construtos":51,"../../declaracoes":96,"../../inferenciador":121,"../../informacao-elemento-sintatico":122,"../../lexador":183,"../../tipos-de-dados/dialetos/pitugues":192,"../../tipos-de-simbolos/pitugues":200,"../comum":3,"../erro-avaliador-sintatico":12,"../informacao-escopo":14,"../pilha-escopos":18,"browser-process-hrtime":384}],7:[function(require,module,exports){
|
|
4620
4662
|
"use strict";
|
|
4621
4663
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4622
4664
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -4790,7 +4832,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
|
|
|
4790
4832
|
}
|
|
4791
4833
|
exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
|
|
4792
4834
|
|
|
4793
|
-
},{"../../construtos":51,"../../declaracoes":96,"../../tipos-de-simbolos/portugol-ipt":
|
|
4835
|
+
},{"../../construtos":51,"../../declaracoes":96,"../../tipos-de-simbolos/portugol-ipt":201,"../avaliador-sintatico-base":1}],8:[function(require,module,exports){
|
|
4794
4836
|
"use strict";
|
|
4795
4837
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4796
4838
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -5505,7 +5547,7 @@ class AvaliadorSintaticoPrisma extends avaliador_sintatico_base_1.AvaliadorSinta
|
|
|
5505
5547
|
}
|
|
5506
5548
|
exports.AvaliadorSintaticoPrisma = AvaliadorSintaticoPrisma;
|
|
5507
5549
|
|
|
5508
|
-
},{"../../bibliotecas/primitivas-dicionario":20,"../../bibliotecas/primitivas-numero":21,"../../bibliotecas/primitivas-texto":22,"../../bibliotecas/primitivas-vetor":23,"../../construtos":51,"../../declaracoes":96,"../../inferenciador":
|
|
5550
|
+
},{"../../bibliotecas/primitivas-dicionario":20,"../../bibliotecas/primitivas-numero":21,"../../bibliotecas/primitivas-texto":22,"../../bibliotecas/primitivas-vetor":23,"../../construtos":51,"../../declaracoes":96,"../../inferenciador":121,"../../informacao-elemento-sintatico":122,"../../lexador":183,"../../tipos-de-simbolos/prisma":202,"../avaliador-sintatico-base":1,"../comum":3,"../erro-avaliador-sintatico":12,"../informacao-escopo":14,"../pilha-escopos":18,"browser-process-hrtime":384}],9:[function(require,module,exports){
|
|
5509
5551
|
"use strict";
|
|
5510
5552
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
5511
5553
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -6491,7 +6533,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
|
|
|
6491
6533
|
}
|
|
6492
6534
|
exports.AvaliadorSintaticoTenda = AvaliadorSintaticoTenda;
|
|
6493
6535
|
|
|
6494
|
-
},{"../../bibliotecas/primitivas-dicionario":20,"../../bibliotecas/primitivas-numero":21,"../../bibliotecas/primitivas-texto":22,"../../bibliotecas/primitivas-vetor":23,"../../construtos":51,"../../construtos/tuplas":68,"../../declaracoes":96,"../../inferenciador":
|
|
6536
|
+
},{"../../bibliotecas/primitivas-dicionario":20,"../../bibliotecas/primitivas-numero":21,"../../bibliotecas/primitivas-texto":22,"../../bibliotecas/primitivas-vetor":23,"../../construtos":51,"../../construtos/tuplas":68,"../../declaracoes":96,"../../inferenciador":121,"../../informacao-elemento-sintatico":122,"../../lexador/simbolo":189,"../../tipos-de-dados/delegua":191,"../../tipos-de-simbolos/tenda":203,"../avaliador-sintatico-base":1,"./../erro-avaliador-sintatico":12,"./../informacao-escopo":14,"./../pilha-escopos":18,"browser-process-hrtime":384}],10:[function(require,module,exports){
|
|
6495
6537
|
"use strict";
|
|
6496
6538
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6497
6539
|
if (k2 === undefined) k2 = k;
|
|
@@ -6696,7 +6738,7 @@ class MicroAvaliadorSintaticoBase {
|
|
|
6696
6738
|
}
|
|
6697
6739
|
exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
|
|
6698
6740
|
|
|
6699
|
-
},{"../construtos":51,"../tipos-de-simbolos/comum":
|
|
6741
|
+
},{"../construtos":51,"../tipos-de-simbolos/comum":195,"./erro-avaliador-sintatico":12}],16:[function(require,module,exports){
|
|
6700
6742
|
"use strict";
|
|
6701
6743
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
6702
6744
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -6918,7 +6960,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
|
|
|
6918
6960
|
}
|
|
6919
6961
|
exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
|
|
6920
6962
|
|
|
6921
|
-
},{"../construtos":51,"../tipos-de-simbolos/microgramaticas/delegua":
|
|
6963
|
+
},{"../construtos":51,"../tipos-de-simbolos/microgramaticas/delegua":199,"./micro-avaliador-sintatico-base":15}],17:[function(require,module,exports){
|
|
6922
6964
|
"use strict";
|
|
6923
6965
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6924
6966
|
exports.MontaoTipos = void 0;
|
|
@@ -6969,7 +7011,7 @@ class MontaoTipos {
|
|
|
6969
7011
|
}
|
|
6970
7012
|
exports.MontaoTipos = MontaoTipos;
|
|
6971
7013
|
|
|
6972
|
-
},{"../geracao-identificadores":
|
|
7014
|
+
},{"../geracao-identificadores":119,"./erro-avaliador-sintatico":12}],18:[function(require,module,exports){
|
|
6973
7015
|
"use strict";
|
|
6974
7016
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6975
7017
|
exports.PilhaEscopos = void 0;
|
|
@@ -7955,7 +7997,7 @@ async function tupla(interpretador, vetor) {
|
|
|
7955
7997
|
}
|
|
7956
7998
|
}
|
|
7957
7999
|
|
|
7958
|
-
},{"../construtos":51,"../excecoes":
|
|
8000
|
+
},{"../construtos":51,"../excecoes":115,"../inferenciador":121,"../interpretador/estruturas":157,"../interpretador/estruturas/descritor-tipo-classe":155,"../interpretador/estruturas/funcao-padrao":156,"../interpretador/estruturas/objeto-delegua-classe":160,"../quebras":190}],20:[function(require,module,exports){
|
|
7959
8001
|
"use strict";
|
|
7960
8002
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7961
8003
|
const construtos_1 = require("../construtos");
|
|
@@ -8037,7 +8079,7 @@ exports.default = {
|
|
|
8037
8079
|
}
|
|
8038
8080
|
};
|
|
8039
8081
|
|
|
8040
|
-
},{"../construtos":51,"../informacao-elemento-sintatico":
|
|
8082
|
+
},{"../construtos":51,"../informacao-elemento-sintatico":122}],21:[function(require,module,exports){
|
|
8041
8083
|
"use strict";
|
|
8042
8084
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8043
8085
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -8122,7 +8164,7 @@ exports.default = {
|
|
|
8122
8164
|
},
|
|
8123
8165
|
};
|
|
8124
8166
|
|
|
8125
|
-
},{"../informacao-elemento-sintatico":
|
|
8167
|
+
},{"../informacao-elemento-sintatico":122}],22:[function(require,module,exports){
|
|
8126
8168
|
"use strict";
|
|
8127
8169
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8128
8170
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -8394,7 +8436,7 @@ exports.default = {
|
|
|
8394
8436
|
},
|
|
8395
8437
|
};
|
|
8396
8438
|
|
|
8397
|
-
},{"../informacao-elemento-sintatico":
|
|
8439
|
+
},{"../informacao-elemento-sintatico":122}],23:[function(require,module,exports){
|
|
8398
8440
|
"use strict";
|
|
8399
8441
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8400
8442
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -8769,7 +8811,7 @@ exports.default = {
|
|
|
8769
8811
|
},
|
|
8770
8812
|
};
|
|
8771
8813
|
|
|
8772
|
-
},{"../informacao-elemento-sintatico":
|
|
8814
|
+
},{"../informacao-elemento-sintatico":122}],24:[function(require,module,exports){
|
|
8773
8815
|
"use strict";
|
|
8774
8816
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8775
8817
|
exports.AcessoElementoMatriz = void 0;
|
|
@@ -9158,7 +9200,7 @@ class Chamada {
|
|
|
9158
9200
|
}
|
|
9159
9201
|
exports.Chamada = Chamada;
|
|
9160
9202
|
|
|
9161
|
-
},{"../geracao-identificadores":
|
|
9203
|
+
},{"../geracao-identificadores":119}],36:[function(require,module,exports){
|
|
9162
9204
|
"use strict";
|
|
9163
9205
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9164
9206
|
exports.ComentarioComoConstruto = void 0;
|
|
@@ -9640,7 +9682,7 @@ class Leia {
|
|
|
9640
9682
|
}
|
|
9641
9683
|
exports.Leia = Leia;
|
|
9642
9684
|
|
|
9643
|
-
},{"../geracao-identificadores":
|
|
9685
|
+
},{"../geracao-identificadores":119}],54:[function(require,module,exports){
|
|
9644
9686
|
"use strict";
|
|
9645
9687
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9646
9688
|
exports.ListaCompreensao = void 0;
|
|
@@ -10752,7 +10794,7 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
|
|
|
10752
10794
|
}
|
|
10753
10795
|
exports.FuncaoDeclaracao = FuncaoDeclaracao;
|
|
10754
10796
|
|
|
10755
|
-
},{"../geracao-identificadores":
|
|
10797
|
+
},{"../geracao-identificadores":119,"./declaracao":86}],95:[function(require,module,exports){
|
|
10756
10798
|
"use strict";
|
|
10757
10799
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10758
10800
|
exports.Importar = void 0;
|
|
@@ -11130,6 +11172,509 @@ exports.Var = Var;
|
|
|
11130
11172
|
},{"./declaracao":86}],109:[function(require,module,exports){
|
|
11131
11173
|
"use strict";
|
|
11132
11174
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11175
|
+
exports.EstilizadorDelegua = void 0;
|
|
11176
|
+
/**
|
|
11177
|
+
* Estilizador de código para Delégua.
|
|
11178
|
+
* Aplica transformações no AST para enforcar convenções e melhorar qualidade do código.
|
|
11179
|
+
*/
|
|
11180
|
+
class EstilizadorDelegua {
|
|
11181
|
+
constructor(regras = []) {
|
|
11182
|
+
this.regras = regras;
|
|
11183
|
+
this.violacoes = [];
|
|
11184
|
+
this.modoValidacao = false;
|
|
11185
|
+
}
|
|
11186
|
+
adicionarRegra(regra) {
|
|
11187
|
+
this.regras.push(regra);
|
|
11188
|
+
}
|
|
11189
|
+
removerRegra(nomeRegra) {
|
|
11190
|
+
this.regras = this.regras.filter((r) => r.nome !== nomeRegra);
|
|
11191
|
+
}
|
|
11192
|
+
/**
|
|
11193
|
+
* Aplica as regras de estilização recursivamente em uma declaração.
|
|
11194
|
+
* @param declaracao A declaração a ser estilizada.
|
|
11195
|
+
* @returns A declaração estilizada.
|
|
11196
|
+
*/
|
|
11197
|
+
estilizarDeclaracao(declaracao) {
|
|
11198
|
+
let declaracaoAtual = declaracao;
|
|
11199
|
+
// Aplica regras de declaração
|
|
11200
|
+
for (const regra of this.regras) {
|
|
11201
|
+
if (regra.aplicarEmDeclaracao) {
|
|
11202
|
+
if (this.modoValidacao) {
|
|
11203
|
+
// Em modo validação, clona a declaração antes de aplicar
|
|
11204
|
+
const declaracaoClonada = this.clonarDeclaracao(declaracaoAtual);
|
|
11205
|
+
const declaracaoModificada = regra.aplicarEmDeclaracao(declaracaoClonada);
|
|
11206
|
+
// Verifica se houve mudança
|
|
11207
|
+
if (this.declaracaoFoiModificada(declaracaoAtual, declaracaoModificada)) {
|
|
11208
|
+
this.violacoes.push({
|
|
11209
|
+
regra: regra.nome,
|
|
11210
|
+
mensagem: `${regra.descricao}`,
|
|
11211
|
+
linha: declaracao.linha,
|
|
11212
|
+
hashArquivo: declaracao.hashArquivo,
|
|
11213
|
+
severidade: 'aviso',
|
|
11214
|
+
});
|
|
11215
|
+
}
|
|
11216
|
+
}
|
|
11217
|
+
else {
|
|
11218
|
+
// Em modo normal, aplica a transformação
|
|
11219
|
+
declaracaoAtual = regra.aplicarEmDeclaracao(declaracaoAtual);
|
|
11220
|
+
}
|
|
11221
|
+
}
|
|
11222
|
+
}
|
|
11223
|
+
// Recursivamente estiliza construtos dentro da declaração
|
|
11224
|
+
if (!this.modoValidacao) {
|
|
11225
|
+
this.estilizarCamposDeclaracao(declaracaoAtual);
|
|
11226
|
+
}
|
|
11227
|
+
return declaracaoAtual;
|
|
11228
|
+
}
|
|
11229
|
+
/**
|
|
11230
|
+
* Verifica se uma declaração foi modificada comparando propriedades relevantes.
|
|
11231
|
+
*/
|
|
11232
|
+
declaracaoFoiModificada(original, modificada) {
|
|
11233
|
+
// Compara lexema do símbolo (para nomes)
|
|
11234
|
+
if (original.simbolo && modificada.simbolo) {
|
|
11235
|
+
if (original.simbolo.lexema !== modificada.simbolo.lexema) {
|
|
11236
|
+
return true;
|
|
11237
|
+
}
|
|
11238
|
+
}
|
|
11239
|
+
// Compara tipo
|
|
11240
|
+
if (original.tipo !== modificada.tipo) {
|
|
11241
|
+
return true;
|
|
11242
|
+
}
|
|
11243
|
+
// Compara tipoExplicito
|
|
11244
|
+
if (original.tipoExplicito !== modificada.tipoExplicito) {
|
|
11245
|
+
return true;
|
|
11246
|
+
}
|
|
11247
|
+
return false;
|
|
11248
|
+
}
|
|
11249
|
+
/**
|
|
11250
|
+
* Clona uma declaração de forma superficial.
|
|
11251
|
+
*/
|
|
11252
|
+
clonarDeclaracao(declaracao) {
|
|
11253
|
+
// Cria um novo objeto com o mesmo protótipo
|
|
11254
|
+
const clone = Object.create(Object.getPrototypeOf(declaracao));
|
|
11255
|
+
// Copia todas as propriedades
|
|
11256
|
+
for (const chave in declaracao) {
|
|
11257
|
+
if (declaracao.hasOwnProperty(chave)) {
|
|
11258
|
+
// Para objetos aninhados, clona também
|
|
11259
|
+
if (typeof declaracao[chave] === 'object' && declaracao[chave] !== null) {
|
|
11260
|
+
if (Array.isArray(declaracao[chave])) {
|
|
11261
|
+
clone[chave] = [...declaracao[chave]];
|
|
11262
|
+
}
|
|
11263
|
+
else {
|
|
11264
|
+
clone[chave] = Object.assign({}, declaracao[chave]);
|
|
11265
|
+
}
|
|
11266
|
+
}
|
|
11267
|
+
else {
|
|
11268
|
+
clone[chave] = declaracao[chave];
|
|
11269
|
+
}
|
|
11270
|
+
}
|
|
11271
|
+
}
|
|
11272
|
+
return clone;
|
|
11273
|
+
}
|
|
11274
|
+
/**
|
|
11275
|
+
* Estiliza construtos dentro de uma declaração.
|
|
11276
|
+
* @param declaracao A declaração cujos campos serão estilizados.
|
|
11277
|
+
*/
|
|
11278
|
+
estilizarCamposDeclaracao(declaracao) {
|
|
11279
|
+
// Itera sobre as propriedades da declaração
|
|
11280
|
+
for (const chave in declaracao) {
|
|
11281
|
+
if (!declaracao.hasOwnProperty(chave))
|
|
11282
|
+
continue;
|
|
11283
|
+
const valor = declaracao[chave];
|
|
11284
|
+
// Se é um construto, estiliza
|
|
11285
|
+
if (valor && typeof valor === 'object' && 'aceitar' in valor) {
|
|
11286
|
+
if (this.ehConstruto(valor)) {
|
|
11287
|
+
declaracao[chave] = this.estilizarConstruto(valor);
|
|
11288
|
+
}
|
|
11289
|
+
}
|
|
11290
|
+
// Se é um array, estiliza cada elemento
|
|
11291
|
+
if (Array.isArray(valor)) {
|
|
11292
|
+
for (let i = 0; i < valor.length; i++) {
|
|
11293
|
+
if (this.ehDeclaracao(valor[i])) {
|
|
11294
|
+
valor[i] = this.estilizarDeclaracao(valor[i]);
|
|
11295
|
+
}
|
|
11296
|
+
else if (this.ehConstruto(valor[i])) {
|
|
11297
|
+
valor[i] = this.estilizarConstruto(valor[i]);
|
|
11298
|
+
}
|
|
11299
|
+
}
|
|
11300
|
+
}
|
|
11301
|
+
}
|
|
11302
|
+
}
|
|
11303
|
+
/**
|
|
11304
|
+
* Aplica as regras de estilização em um construto.
|
|
11305
|
+
* @param construto O construto a ser estilizado.
|
|
11306
|
+
* @returns O construto estilizado.
|
|
11307
|
+
*/
|
|
11308
|
+
estilizarConstruto(construto) {
|
|
11309
|
+
let construtoAtual = construto;
|
|
11310
|
+
// Aplica regras de construto
|
|
11311
|
+
for (const regra of this.regras) {
|
|
11312
|
+
if (regra.aplicarEmConstruto) {
|
|
11313
|
+
if (this.modoValidacao) {
|
|
11314
|
+
// Em modo validação, não modifica, apenas verifica
|
|
11315
|
+
const construtoOriginal = JSON.stringify(construtoAtual);
|
|
11316
|
+
const construtoModificado = regra.aplicarEmConstruto(construtoAtual);
|
|
11317
|
+
if (JSON.stringify(construtoModificado) !== construtoOriginal) {
|
|
11318
|
+
this.violacoes.push({
|
|
11319
|
+
regra: regra.nome,
|
|
11320
|
+
mensagem: `${regra.descricao} não foi aplicada`,
|
|
11321
|
+
linha: construto.linha || 0,
|
|
11322
|
+
hashArquivo: -1,
|
|
11323
|
+
severidade: 'aviso',
|
|
11324
|
+
});
|
|
11325
|
+
}
|
|
11326
|
+
}
|
|
11327
|
+
else {
|
|
11328
|
+
construtoAtual = regra.aplicarEmConstruto(construtoAtual);
|
|
11329
|
+
}
|
|
11330
|
+
}
|
|
11331
|
+
}
|
|
11332
|
+
// Recursivamente estiliza campos do construto
|
|
11333
|
+
this.estilizarCamposConstruto(construtoAtual);
|
|
11334
|
+
return construtoAtual;
|
|
11335
|
+
}
|
|
11336
|
+
/**
|
|
11337
|
+
* Estiliza campos dentro de um construto.
|
|
11338
|
+
* @param construto O construto cujos campos serão estilizados.
|
|
11339
|
+
*/
|
|
11340
|
+
estilizarCamposConstruto(construto) {
|
|
11341
|
+
for (const chave in construto) {
|
|
11342
|
+
if (!construto.hasOwnProperty(chave))
|
|
11343
|
+
continue;
|
|
11344
|
+
const valor = construto[chave];
|
|
11345
|
+
if (valor && typeof valor === 'object' && 'aceitar' in valor) {
|
|
11346
|
+
if (this.ehConstruto(valor)) {
|
|
11347
|
+
construto[chave] = this.estilizarConstruto(valor);
|
|
11348
|
+
}
|
|
11349
|
+
else if (this.ehDeclaracao(valor)) {
|
|
11350
|
+
construto[chave] = this.estilizarDeclaracao(valor);
|
|
11351
|
+
}
|
|
11352
|
+
}
|
|
11353
|
+
if (Array.isArray(valor)) {
|
|
11354
|
+
for (let i = 0; i < valor.length; i++) {
|
|
11355
|
+
if (this.ehDeclaracao(valor[i])) {
|
|
11356
|
+
valor[i] = this.estilizarDeclaracao(valor[i]);
|
|
11357
|
+
}
|
|
11358
|
+
else if (this.ehConstruto(valor[i])) {
|
|
11359
|
+
valor[i] = this.estilizarConstruto(valor[i]);
|
|
11360
|
+
}
|
|
11361
|
+
}
|
|
11362
|
+
}
|
|
11363
|
+
}
|
|
11364
|
+
}
|
|
11365
|
+
/**
|
|
11366
|
+
* Verifica se um objeto é uma Declaração.
|
|
11367
|
+
*/
|
|
11368
|
+
ehDeclaracao(obj) {
|
|
11369
|
+
return obj && typeof obj === 'object' && 'paraTexto' in obj && 'linha' in obj && 'hashArquivo' in obj;
|
|
11370
|
+
}
|
|
11371
|
+
/**
|
|
11372
|
+
* Verifica se um objeto é um Construto.
|
|
11373
|
+
*/
|
|
11374
|
+
ehConstruto(obj) {
|
|
11375
|
+
return obj && typeof obj === 'object' && 'aceitar' in obj && !('paraTexto' in obj);
|
|
11376
|
+
}
|
|
11377
|
+
estilizar(declaracoes) {
|
|
11378
|
+
this.modoValidacao = false;
|
|
11379
|
+
this.violacoes = [];
|
|
11380
|
+
const declaracoesEstilizadas = [];
|
|
11381
|
+
for (const declaracao of declaracoes) {
|
|
11382
|
+
declaracoesEstilizadas.push(this.estilizarDeclaracao(declaracao));
|
|
11383
|
+
}
|
|
11384
|
+
return declaracoesEstilizadas;
|
|
11385
|
+
}
|
|
11386
|
+
validar(declaracoes) {
|
|
11387
|
+
this.modoValidacao = true;
|
|
11388
|
+
this.violacoes = [];
|
|
11389
|
+
// Aplica estilização em modo validação (não modifica, apenas detecta violações)
|
|
11390
|
+
for (const declaracao of declaracoes) {
|
|
11391
|
+
this.estilizarDeclaracao(declaracao);
|
|
11392
|
+
}
|
|
11393
|
+
const violacoesEncontradas = [...this.violacoes];
|
|
11394
|
+
this.violacoes = [];
|
|
11395
|
+
this.modoValidacao = false;
|
|
11396
|
+
return violacoesEncontradas;
|
|
11397
|
+
}
|
|
11398
|
+
}
|
|
11399
|
+
exports.EstilizadorDelegua = EstilizadorDelegua;
|
|
11400
|
+
|
|
11401
|
+
},{}],110:[function(require,module,exports){
|
|
11402
|
+
"use strict";
|
|
11403
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
11404
|
+
if (k2 === undefined) k2 = k;
|
|
11405
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
11406
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
11407
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
11408
|
+
}
|
|
11409
|
+
Object.defineProperty(o, k2, desc);
|
|
11410
|
+
}) : (function(o, m, k, k2) {
|
|
11411
|
+
if (k2 === undefined) k2 = k;
|
|
11412
|
+
o[k2] = m[k];
|
|
11413
|
+
}));
|
|
11414
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
11415
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11416
|
+
};
|
|
11417
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11418
|
+
__exportStar(require("./estilizador-delegua"), exports);
|
|
11419
|
+
__exportStar(require("./regras"), exports);
|
|
11420
|
+
|
|
11421
|
+
},{"./estilizador-delegua":109,"./regras":113}],111:[function(require,module,exports){
|
|
11422
|
+
"use strict";
|
|
11423
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11424
|
+
exports.RegraConvencaoNomenclatura = void 0;
|
|
11425
|
+
const declaracoes_1 = require("../../declaracoes");
|
|
11426
|
+
/**
|
|
11427
|
+
* Regra que enforça convenções de nomenclatura.
|
|
11428
|
+
*
|
|
11429
|
+
* Exemplos:
|
|
11430
|
+
* - Variáveis em caixaCamelo: `var meuNome` (não `var MeuNome` ou `var meu_nome`)
|
|
11431
|
+
* - Constantes em CAIXA_ALTA: `constante PI_VALOR` (não `constante piValor`)
|
|
11432
|
+
* - Funções em caixaCamelo: `função calcularTotal()` (não `função CalcularTotal()`)
|
|
11433
|
+
*/
|
|
11434
|
+
class RegraConvencaoNomenclatura {
|
|
11435
|
+
constructor(opcoes = {}) {
|
|
11436
|
+
this.nome = 'convencao-nomenclatura';
|
|
11437
|
+
this.descricao = 'Enforça convenções de nomenclatura para variáveis, constantes e funções';
|
|
11438
|
+
this.opcoes = {
|
|
11439
|
+
variavel: opcoes.variavel || 'caixaCamelo',
|
|
11440
|
+
constante: opcoes.constante || 'CAIXA_ALTA',
|
|
11441
|
+
funcao: opcoes.funcao || 'caixaCamelo',
|
|
11442
|
+
};
|
|
11443
|
+
}
|
|
11444
|
+
aplicarEmDeclaracao(declaracao) {
|
|
11445
|
+
// Valida/transforma nomes de variáveis
|
|
11446
|
+
if (declaracao instanceof declaracoes_1.Var) {
|
|
11447
|
+
return this.aplicarConvencaoVar(declaracao);
|
|
11448
|
+
}
|
|
11449
|
+
// Valida/transforma nomes de constantes
|
|
11450
|
+
if (declaracao instanceof declaracoes_1.Const) {
|
|
11451
|
+
return this.aplicarConvencaoConst(declaracao);
|
|
11452
|
+
}
|
|
11453
|
+
// Valida/transforma nomes de funções
|
|
11454
|
+
if (declaracao instanceof declaracoes_1.FuncaoDeclaracao) {
|
|
11455
|
+
return this.aplicarConvencaoFuncao(declaracao);
|
|
11456
|
+
}
|
|
11457
|
+
return declaracao;
|
|
11458
|
+
}
|
|
11459
|
+
/**
|
|
11460
|
+
* Aplica convenção em declaração Var.
|
|
11461
|
+
*/
|
|
11462
|
+
aplicarConvencaoVar(declaracao) {
|
|
11463
|
+
if (!this.opcoes.variavel)
|
|
11464
|
+
return declaracao;
|
|
11465
|
+
const nomeAtual = declaracao.simbolo.lexema;
|
|
11466
|
+
const nomeConvertido = this.converterNome(nomeAtual, this.opcoes.variavel);
|
|
11467
|
+
if (nomeAtual !== nomeConvertido) {
|
|
11468
|
+
declaracao.simbolo.lexema = nomeConvertido;
|
|
11469
|
+
}
|
|
11470
|
+
return declaracao;
|
|
11471
|
+
}
|
|
11472
|
+
/**
|
|
11473
|
+
* Aplica convenção em declaração Const.
|
|
11474
|
+
*/
|
|
11475
|
+
aplicarConvencaoConst(declaracao) {
|
|
11476
|
+
if (!this.opcoes.constante)
|
|
11477
|
+
return declaracao;
|
|
11478
|
+
const nomeAtual = declaracao.simbolo.lexema;
|
|
11479
|
+
const nomeConvertido = this.converterNome(nomeAtual, this.opcoes.constante);
|
|
11480
|
+
if (nomeAtual !== nomeConvertido) {
|
|
11481
|
+
declaracao.simbolo.lexema = nomeConvertido;
|
|
11482
|
+
}
|
|
11483
|
+
return declaracao;
|
|
11484
|
+
}
|
|
11485
|
+
/**
|
|
11486
|
+
* Aplica convenção em declaração de Função.
|
|
11487
|
+
*/
|
|
11488
|
+
aplicarConvencaoFuncao(declaracao) {
|
|
11489
|
+
if (!this.opcoes.funcao)
|
|
11490
|
+
return declaracao;
|
|
11491
|
+
const nomeAtual = declaracao.simbolo.lexema;
|
|
11492
|
+
const nomeConvertido = this.converterNome(nomeAtual, this.opcoes.funcao);
|
|
11493
|
+
if (nomeAtual !== nomeConvertido) {
|
|
11494
|
+
declaracao.simbolo.lexema = nomeConvertido;
|
|
11495
|
+
}
|
|
11496
|
+
return declaracao;
|
|
11497
|
+
}
|
|
11498
|
+
/**
|
|
11499
|
+
* Converte um nome para a convenção especificada.
|
|
11500
|
+
*/
|
|
11501
|
+
converterNome(nome, convencao) {
|
|
11502
|
+
switch (convencao) {
|
|
11503
|
+
case 'caixaCamelo':
|
|
11504
|
+
return this.paraCamelCase(nome);
|
|
11505
|
+
case 'caixa_cobra':
|
|
11506
|
+
return this.paraSnakeCase(nome);
|
|
11507
|
+
case 'CaixaPascal':
|
|
11508
|
+
return this.paraPascalCase(nome);
|
|
11509
|
+
case 'CAIXA_ALTA':
|
|
11510
|
+
return this.paraUpperCase(nome);
|
|
11511
|
+
default:
|
|
11512
|
+
return nome;
|
|
11513
|
+
}
|
|
11514
|
+
}
|
|
11515
|
+
/**
|
|
11516
|
+
* Converte nome para camelCase.
|
|
11517
|
+
*/
|
|
11518
|
+
paraCamelCase(nome) {
|
|
11519
|
+
// Se tem underscores, divide por eles
|
|
11520
|
+
if (nome.includes('_')) {
|
|
11521
|
+
const palavras = nome.split(/[_\s]+/);
|
|
11522
|
+
return (palavras[0].toLowerCase() +
|
|
11523
|
+
palavras
|
|
11524
|
+
.slice(1)
|
|
11525
|
+
.map((p) => p.charAt(0).toUpperCase() + p.slice(1).toLowerCase())
|
|
11526
|
+
.join(''));
|
|
11527
|
+
}
|
|
11528
|
+
// Se está em PascalCase, converte para camelCase
|
|
11529
|
+
if (nome.charAt(0) === nome.charAt(0).toUpperCase()) {
|
|
11530
|
+
return nome.charAt(0).toLowerCase() + nome.slice(1);
|
|
11531
|
+
}
|
|
11532
|
+
// Já está em camelCase
|
|
11533
|
+
return nome;
|
|
11534
|
+
}
|
|
11535
|
+
/**
|
|
11536
|
+
* Converte nome para snake_case.
|
|
11537
|
+
*/
|
|
11538
|
+
paraSnakeCase(nome) {
|
|
11539
|
+
return (nome
|
|
11540
|
+
// Adiciona underscore antes de letras maiúsculas
|
|
11541
|
+
.replace(/([A-Z])/g, '_$1')
|
|
11542
|
+
.toLowerCase()
|
|
11543
|
+
// Remove underscores duplicados
|
|
11544
|
+
.replace(/__+/g, '_')
|
|
11545
|
+
// Remove underscore inicial se houver
|
|
11546
|
+
.replace(/^_/, ''));
|
|
11547
|
+
}
|
|
11548
|
+
/**
|
|
11549
|
+
* Converte nome para PascalCase.
|
|
11550
|
+
*/
|
|
11551
|
+
paraPascalCase(nome) {
|
|
11552
|
+
const palavras = nome.split(/[_\s]+/);
|
|
11553
|
+
return palavras.map((p) => p.charAt(0).toUpperCase() + p.slice(1).toLowerCase()).join('');
|
|
11554
|
+
}
|
|
11555
|
+
/**
|
|
11556
|
+
* Converte nome para UPPER_CASE.
|
|
11557
|
+
*/
|
|
11558
|
+
paraUpperCase(nome) {
|
|
11559
|
+
return this.paraSnakeCase(nome).toUpperCase();
|
|
11560
|
+
}
|
|
11561
|
+
/**
|
|
11562
|
+
* Valida se um nome está na convenção especificada.
|
|
11563
|
+
*/
|
|
11564
|
+
validarNome(nome, convencao) {
|
|
11565
|
+
return nome === this.converterNome(nome, convencao);
|
|
11566
|
+
}
|
|
11567
|
+
}
|
|
11568
|
+
exports.RegraConvencaoNomenclatura = RegraConvencaoNomenclatura;
|
|
11569
|
+
|
|
11570
|
+
},{"../../declaracoes":96}],112:[function(require,module,exports){
|
|
11571
|
+
"use strict";
|
|
11572
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11573
|
+
exports.RegraFortalecerTipos = void 0;
|
|
11574
|
+
const declaracoes_1 = require("../../declaracoes");
|
|
11575
|
+
const construtos_1 = require("../../construtos");
|
|
11576
|
+
const inferenciador_1 = require("../../inferenciador");
|
|
11577
|
+
/**
|
|
11578
|
+
* Regra que fortalece tipos, convertendo `qualquer` para tipos inferidos.
|
|
11579
|
+
*
|
|
11580
|
+
* Exemplos:
|
|
11581
|
+
* - `var x = 5` com tipo `qualquer` → `var x: número = 5`
|
|
11582
|
+
* - `var nomes = []` com tipo `qualquer` → `var nomes: vetor = []`
|
|
11583
|
+
* - `constante PI = 3.14` com tipo `qualquer` → `constante PI: número = 3.14`
|
|
11584
|
+
*/
|
|
11585
|
+
class RegraFortalecerTipos {
|
|
11586
|
+
constructor() {
|
|
11587
|
+
this.nome = 'fortalecer-tipos';
|
|
11588
|
+
this.descricao = 'Converte tipos `qualquer` para tipos inferidos quando possível';
|
|
11589
|
+
}
|
|
11590
|
+
aplicarEmDeclaracao(declaracao) {
|
|
11591
|
+
// Fortalece tipos em declarações Var
|
|
11592
|
+
if (declaracao instanceof declaracoes_1.Var) {
|
|
11593
|
+
return this.fortalecerTipoVar(declaracao);
|
|
11594
|
+
}
|
|
11595
|
+
// Fortalece tipos em declarações Const
|
|
11596
|
+
if (declaracao instanceof declaracoes_1.Const) {
|
|
11597
|
+
return this.fortalecerTipoConst(declaracao);
|
|
11598
|
+
}
|
|
11599
|
+
return declaracao;
|
|
11600
|
+
}
|
|
11601
|
+
/**
|
|
11602
|
+
* Fortalece o tipo de uma declaração Var.
|
|
11603
|
+
*/
|
|
11604
|
+
fortalecerTipoVar(declaracao) {
|
|
11605
|
+
// Se o tipo já foi explicitamente definido, não modifica
|
|
11606
|
+
if (declaracao.tipoExplicito && declaracao.tipo !== 'qualquer') {
|
|
11607
|
+
return declaracao;
|
|
11608
|
+
}
|
|
11609
|
+
// Se há um inicializador, tenta inferir o tipo
|
|
11610
|
+
if (declaracao.inicializador) {
|
|
11611
|
+
const tipoInferido = this.inferirTipoDeConstruto(declaracao.inicializador);
|
|
11612
|
+
if (tipoInferido && tipoInferido !== 'qualquer') {
|
|
11613
|
+
declaracao.tipo = tipoInferido;
|
|
11614
|
+
declaracao.tipoExplicito = true;
|
|
11615
|
+
}
|
|
11616
|
+
}
|
|
11617
|
+
return declaracao;
|
|
11618
|
+
}
|
|
11619
|
+
/**
|
|
11620
|
+
* Fortalece o tipo de uma declaração Const.
|
|
11621
|
+
*/
|
|
11622
|
+
fortalecerTipoConst(declaracao) {
|
|
11623
|
+
// Se o tipo já foi explicitamente definido, não modifica
|
|
11624
|
+
if (declaracao.tipoExplicito && declaracao.tipo !== 'qualquer') {
|
|
11625
|
+
return declaracao;
|
|
11626
|
+
}
|
|
11627
|
+
// Se há um inicializador, tenta inferir o tipo
|
|
11628
|
+
if (declaracao.inicializador) {
|
|
11629
|
+
const tipoInferido = this.inferirTipoDeConstruto(declaracao.inicializador);
|
|
11630
|
+
if (tipoInferido && tipoInferido !== 'qualquer') {
|
|
11631
|
+
declaracao.tipo = tipoInferido;
|
|
11632
|
+
declaracao.tipoExplicito = true;
|
|
11633
|
+
}
|
|
11634
|
+
}
|
|
11635
|
+
return declaracao;
|
|
11636
|
+
}
|
|
11637
|
+
/**
|
|
11638
|
+
* Infere o tipo de um construto.
|
|
11639
|
+
*/
|
|
11640
|
+
inferirTipoDeConstruto(construto) {
|
|
11641
|
+
// Se é um literal, usa o tipo do literal
|
|
11642
|
+
if (construto instanceof construtos_1.Literal) {
|
|
11643
|
+
const tipoInferido = (0, inferenciador_1.inferirTipoVariavel)(construto.valor);
|
|
11644
|
+
return typeof tipoInferido === 'string' ? tipoInferido : 'qualquer';
|
|
11645
|
+
}
|
|
11646
|
+
// Se o construto tem tipo definido, usa esse tipo
|
|
11647
|
+
if ('tipo' in construto && construto.tipo) {
|
|
11648
|
+
return construto.tipo;
|
|
11649
|
+
}
|
|
11650
|
+
return 'qualquer';
|
|
11651
|
+
}
|
|
11652
|
+
}
|
|
11653
|
+
exports.RegraFortalecerTipos = RegraFortalecerTipos;
|
|
11654
|
+
|
|
11655
|
+
},{"../../construtos":51,"../../declaracoes":96,"../../inferenciador":121}],113:[function(require,module,exports){
|
|
11656
|
+
"use strict";
|
|
11657
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
11658
|
+
if (k2 === undefined) k2 = k;
|
|
11659
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
11660
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
11661
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
11662
|
+
}
|
|
11663
|
+
Object.defineProperty(o, k2, desc);
|
|
11664
|
+
}) : (function(o, m, k, k2) {
|
|
11665
|
+
if (k2 === undefined) k2 = k;
|
|
11666
|
+
o[k2] = m[k];
|
|
11667
|
+
}));
|
|
11668
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
11669
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11670
|
+
};
|
|
11671
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11672
|
+
__exportStar(require("./fortalecer-tipos"), exports);
|
|
11673
|
+
__exportStar(require("./convencao-nomenclatura"), exports);
|
|
11674
|
+
|
|
11675
|
+
},{"./convencao-nomenclatura":111,"./fortalecer-tipos":112}],114:[function(require,module,exports){
|
|
11676
|
+
"use strict";
|
|
11677
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11133
11678
|
exports.ErroEmTempoDeExecucao = void 0;
|
|
11134
11679
|
class ErroEmTempoDeExecucao extends Error {
|
|
11135
11680
|
constructor(simbolo, mensagem, linha) {
|
|
@@ -11142,7 +11687,7 @@ class ErroEmTempoDeExecucao extends Error {
|
|
|
11142
11687
|
}
|
|
11143
11688
|
exports.ErroEmTempoDeExecucao = ErroEmTempoDeExecucao;
|
|
11144
11689
|
|
|
11145
|
-
},{}],
|
|
11690
|
+
},{}],115:[function(require,module,exports){
|
|
11146
11691
|
"use strict";
|
|
11147
11692
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
11148
11693
|
if (k2 === undefined) k2 = k;
|
|
@@ -11161,7 +11706,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
11161
11706
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11162
11707
|
__exportStar(require("./erro-em-tempo-de-execucao"), exports);
|
|
11163
11708
|
|
|
11164
|
-
},{"./erro-em-tempo-de-execucao":
|
|
11709
|
+
},{"./erro-em-tempo-de-execucao":114}],116:[function(require,module,exports){
|
|
11165
11710
|
"use strict";
|
|
11166
11711
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11167
11712
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -11905,7 +12450,7 @@ class FormatadorDelegua {
|
|
|
11905
12450
|
}
|
|
11906
12451
|
exports.FormatadorDelegua = FormatadorDelegua;
|
|
11907
12452
|
|
|
11908
|
-
},{"../construtos":51,"../declaracoes":96,"../tipos-de-simbolos/delegua":
|
|
12453
|
+
},{"../construtos":51,"../declaracoes":96,"../tipos-de-simbolos/delegua":196}],117:[function(require,module,exports){
|
|
11909
12454
|
"use strict";
|
|
11910
12455
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11911
12456
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -12304,7 +12849,7 @@ class FormatadorPitugues {
|
|
|
12304
12849
|
}
|
|
12305
12850
|
exports.FormatadorPitugues = FormatadorPitugues;
|
|
12306
12851
|
|
|
12307
|
-
},{"../construtos":51,"../declaracoes":96,"../tipos-de-simbolos/pitugues":
|
|
12852
|
+
},{"../construtos":51,"../declaracoes":96,"../tipos-de-simbolos/pitugues":200}],118:[function(require,module,exports){
|
|
12308
12853
|
"use strict";
|
|
12309
12854
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
12310
12855
|
if (k2 === undefined) k2 = k;
|
|
@@ -12324,7 +12869,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
12324
12869
|
__exportStar(require("./formatador-delegua"), exports);
|
|
12325
12870
|
__exportStar(require("./formatador-pitugues"), exports);
|
|
12326
12871
|
|
|
12327
|
-
},{"./formatador-delegua":
|
|
12872
|
+
},{"./formatador-delegua":116,"./formatador-pitugues":117}],119:[function(require,module,exports){
|
|
12328
12873
|
"use strict";
|
|
12329
12874
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12330
12875
|
exports.cyrb53 = cyrb53;
|
|
@@ -12368,7 +12913,7 @@ function uuidv4() {
|
|
|
12368
12913
|
});
|
|
12369
12914
|
}
|
|
12370
12915
|
|
|
12371
|
-
},{}],
|
|
12916
|
+
},{}],120:[function(require,module,exports){
|
|
12372
12917
|
"use strict";
|
|
12373
12918
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
12374
12919
|
if (k2 === undefined) k2 = k;
|
|
@@ -12388,6 +12933,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
12388
12933
|
__exportStar(require("./avaliador-sintatico"), exports);
|
|
12389
12934
|
__exportStar(require("./construtos"), exports);
|
|
12390
12935
|
__exportStar(require("./declaracoes"), exports);
|
|
12936
|
+
__exportStar(require("./estilizador"), exports);
|
|
12391
12937
|
__exportStar(require("./formatadores"), exports);
|
|
12392
12938
|
__exportStar(require("./geracao-identificadores"), exports);
|
|
12393
12939
|
__exportStar(require("./interfaces"), exports);
|
|
@@ -12395,7 +12941,7 @@ __exportStar(require("./interpretador"), exports);
|
|
|
12395
12941
|
__exportStar(require("./lexador"), exports);
|
|
12396
12942
|
__exportStar(require("./tradutores"), exports);
|
|
12397
12943
|
|
|
12398
|
-
},{"./avaliador-sintatico":13,"./construtos":51,"./declaracoes":96,"./formatadores":
|
|
12944
|
+
},{"./avaliador-sintatico":13,"./construtos":51,"./declaracoes":96,"./estilizador":110,"./formatadores":118,"./geracao-identificadores":119,"./interfaces":129,"./interpretador":163,"./lexador":183,"./tradutores":204}],121:[function(require,module,exports){
|
|
12399
12945
|
"use strict";
|
|
12400
12946
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12401
12947
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -12522,7 +13068,7 @@ function tipoInferenciaParaTipoDadosElementar(tipoInferencia) {
|
|
|
12522
13068
|
}
|
|
12523
13069
|
}
|
|
12524
13070
|
|
|
12525
|
-
},{"./tipos-de-dados/delegua":
|
|
13071
|
+
},{"./tipos-de-dados/delegua":191,"./tipos-de-dados/primitivos":193,"./tipos-de-simbolos/delegua":196}],122:[function(require,module,exports){
|
|
12526
13072
|
"use strict";
|
|
12527
13073
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12528
13074
|
exports.InformacaoElementoSintatico = void 0;
|
|
@@ -12541,15 +13087,15 @@ class InformacaoElementoSintatico {
|
|
|
12541
13087
|
}
|
|
12542
13088
|
exports.InformacaoElementoSintatico = InformacaoElementoSintatico;
|
|
12543
13089
|
|
|
12544
|
-
},{}],
|
|
13090
|
+
},{}],123:[function(require,module,exports){
|
|
12545
13091
|
"use strict";
|
|
12546
13092
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12547
13093
|
|
|
12548
|
-
},{}],
|
|
13094
|
+
},{}],124:[function(require,module,exports){
|
|
12549
13095
|
"use strict";
|
|
12550
13096
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12551
13097
|
|
|
12552
|
-
},{}],
|
|
13098
|
+
},{}],125:[function(require,module,exports){
|
|
12553
13099
|
"use strict";
|
|
12554
13100
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12555
13101
|
exports.DiagnosticoSeveridade = void 0;
|
|
@@ -12561,7 +13107,7 @@ var DiagnosticoSeveridade;
|
|
|
12561
13107
|
DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
|
|
12562
13108
|
})(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
|
|
12563
13109
|
|
|
12564
|
-
},{}],
|
|
13110
|
+
},{}],126:[function(require,module,exports){
|
|
12565
13111
|
"use strict";
|
|
12566
13112
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
12567
13113
|
if (k2 === undefined) k2 = k;
|
|
@@ -12580,11 +13126,15 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
12580
13126
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12581
13127
|
__exportStar(require("./diagnostico-analisador-semantico"), exports);
|
|
12582
13128
|
|
|
12583
|
-
},{"./diagnostico-analisador-semantico":
|
|
13129
|
+
},{"./diagnostico-analisador-semantico":125}],127:[function(require,module,exports){
|
|
12584
13130
|
"use strict";
|
|
12585
13131
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12586
13132
|
|
|
12587
|
-
},{}],
|
|
13133
|
+
},{}],128:[function(require,module,exports){
|
|
13134
|
+
"use strict";
|
|
13135
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13136
|
+
|
|
13137
|
+
},{}],129:[function(require,module,exports){
|
|
12588
13138
|
"use strict";
|
|
12589
13139
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
12590
13140
|
if (k2 === undefined) k2 = k;
|
|
@@ -12602,6 +13152,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
12602
13152
|
};
|
|
12603
13153
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12604
13154
|
__exportStar(require("./avaliador-sintatico-interface"), exports);
|
|
13155
|
+
__exportStar(require("./estilizador-comum-interface"), exports);
|
|
12605
13156
|
__exportStar(require("./formatador-comum-interface"), exports);
|
|
12606
13157
|
__exportStar(require("./interpretador-com-depuracao-interface"), exports);
|
|
12607
13158
|
__exportStar(require("./interpretador-interface"), exports);
|
|
@@ -12621,39 +13172,39 @@ __exportStar(require("./construtos"), exports);
|
|
|
12621
13172
|
__exportStar(require("./erros"), exports);
|
|
12622
13173
|
__exportStar(require("./retornos"), exports);
|
|
12623
13174
|
|
|
12624
|
-
},{"./avaliador-sintatico-interface":
|
|
13175
|
+
},{"./avaliador-sintatico-interface":123,"./construtos":124,"./erros":126,"./estilizador-comum-interface":127,"./formatador-comum-interface":128,"./interpretador-com-depuracao-interface":130,"./interpretador-interface":131,"./lexador-interface":132,"./parametro-interface":133,"./pilha-interface":134,"./primitiva-interface":135,"./resolvedor-interface":136,"./resultado-parcial-interpretador-interface":137,"./retornos":138,"./retornos/retorno-execucao-interface":141,"./simbolo-interface":144,"./tradutor-interface":145,"./variavel-interface":146,"./visitante-comum-interface":147,"./visitante-delegua-interface":148}],130:[function(require,module,exports){
|
|
12625
13176
|
"use strict";
|
|
12626
13177
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12627
13178
|
|
|
12628
|
-
},{}],
|
|
13179
|
+
},{}],131:[function(require,module,exports){
|
|
12629
13180
|
"use strict";
|
|
12630
13181
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12631
13182
|
|
|
12632
|
-
},{}],
|
|
13183
|
+
},{}],132:[function(require,module,exports){
|
|
12633
13184
|
"use strict";
|
|
12634
13185
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12635
13186
|
|
|
12636
|
-
},{}],
|
|
13187
|
+
},{}],133:[function(require,module,exports){
|
|
12637
13188
|
"use strict";
|
|
12638
13189
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12639
13190
|
|
|
12640
|
-
},{}],
|
|
13191
|
+
},{}],134:[function(require,module,exports){
|
|
12641
13192
|
"use strict";
|
|
12642
13193
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12643
13194
|
|
|
12644
|
-
},{}],
|
|
13195
|
+
},{}],135:[function(require,module,exports){
|
|
12645
13196
|
"use strict";
|
|
12646
13197
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12647
13198
|
|
|
12648
|
-
},{}],
|
|
13199
|
+
},{}],136:[function(require,module,exports){
|
|
12649
13200
|
"use strict";
|
|
12650
13201
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12651
13202
|
|
|
12652
|
-
},{}],
|
|
13203
|
+
},{}],137:[function(require,module,exports){
|
|
12653
13204
|
"use strict";
|
|
12654
13205
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12655
13206
|
|
|
12656
|
-
},{}],
|
|
13207
|
+
},{}],138:[function(require,module,exports){
|
|
12657
13208
|
"use strict";
|
|
12658
13209
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
12659
13210
|
if (k2 === undefined) k2 = k;
|
|
@@ -12676,47 +13227,47 @@ __exportStar(require("./retorno-execucao-interface"), exports);
|
|
|
12676
13227
|
__exportStar(require("./retorno-interpretador-interface"), exports);
|
|
12677
13228
|
__exportStar(require("./retorno-lexador"), exports);
|
|
12678
13229
|
|
|
12679
|
-
},{"./retorno-analisador-semantico":
|
|
13230
|
+
},{"./retorno-analisador-semantico":139,"./retorno-avaliador-sintatico":140,"./retorno-execucao-interface":141,"./retorno-interpretador-interface":142,"./retorno-lexador":143}],139:[function(require,module,exports){
|
|
12680
13231
|
"use strict";
|
|
12681
13232
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12682
13233
|
|
|
12683
|
-
},{}],
|
|
13234
|
+
},{}],140:[function(require,module,exports){
|
|
12684
13235
|
"use strict";
|
|
12685
13236
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12686
13237
|
|
|
12687
|
-
},{}],
|
|
13238
|
+
},{}],141:[function(require,module,exports){
|
|
12688
13239
|
"use strict";
|
|
12689
13240
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12690
13241
|
|
|
12691
|
-
},{}],
|
|
13242
|
+
},{}],142:[function(require,module,exports){
|
|
12692
13243
|
"use strict";
|
|
12693
13244
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12694
13245
|
|
|
12695
|
-
},{}],
|
|
13246
|
+
},{}],143:[function(require,module,exports){
|
|
12696
13247
|
"use strict";
|
|
12697
13248
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12698
13249
|
|
|
12699
|
-
},{}],
|
|
13250
|
+
},{}],144:[function(require,module,exports){
|
|
12700
13251
|
"use strict";
|
|
12701
13252
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12702
13253
|
|
|
12703
|
-
},{}],
|
|
13254
|
+
},{}],145:[function(require,module,exports){
|
|
12704
13255
|
"use strict";
|
|
12705
13256
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12706
13257
|
|
|
12707
|
-
},{}],
|
|
13258
|
+
},{}],146:[function(require,module,exports){
|
|
12708
13259
|
"use strict";
|
|
12709
13260
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12710
13261
|
|
|
12711
|
-
},{}],
|
|
13262
|
+
},{}],147:[function(require,module,exports){
|
|
12712
13263
|
"use strict";
|
|
12713
13264
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12714
13265
|
|
|
12715
|
-
},{}],
|
|
13266
|
+
},{}],148:[function(require,module,exports){
|
|
12716
13267
|
"use strict";
|
|
12717
13268
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12718
13269
|
|
|
12719
|
-
},{}],
|
|
13270
|
+
},{}],149:[function(require,module,exports){
|
|
12720
13271
|
"use strict";
|
|
12721
13272
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
12722
13273
|
if (k2 === undefined) k2 = k;
|
|
@@ -12782,7 +13333,7 @@ function carregarBibliotecasGlobais(pilhaEscoposExecucao) {
|
|
|
12782
13333
|
pilhaEscoposExecucao.definirVariavel('tupla', new funcao_padrao_1.FuncaoPadrao(1, bibliotecaGlobal.tupla));
|
|
12783
13334
|
}
|
|
12784
13335
|
|
|
12785
|
-
},{"../bibliotecas/biblioteca-global":19,"./estruturas/funcao-padrao":
|
|
13336
|
+
},{"../bibliotecas/biblioteca-global":19,"./estruturas/funcao-padrao":156}],150:[function(require,module,exports){
|
|
12786
13337
|
"use strict";
|
|
12787
13338
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12788
13339
|
exports.EspacoMemoria = void 0;
|
|
@@ -12807,7 +13358,7 @@ class EspacoMemoria {
|
|
|
12807
13358
|
}
|
|
12808
13359
|
exports.EspacoMemoria = EspacoMemoria;
|
|
12809
13360
|
|
|
12810
|
-
},{}],
|
|
13361
|
+
},{}],151:[function(require,module,exports){
|
|
12811
13362
|
"use strict";
|
|
12812
13363
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12813
13364
|
exports.Chamavel = void 0;
|
|
@@ -12821,7 +13372,7 @@ class Chamavel {
|
|
|
12821
13372
|
}
|
|
12822
13373
|
exports.Chamavel = Chamavel;
|
|
12823
13374
|
|
|
12824
|
-
},{}],
|
|
13375
|
+
},{}],152:[function(require,module,exports){
|
|
12825
13376
|
"use strict";
|
|
12826
13377
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12827
13378
|
exports.ClasseDeModulo = void 0;
|
|
@@ -12842,7 +13393,7 @@ class ClasseDeModulo extends chamavel_1.Chamavel {
|
|
|
12842
13393
|
}
|
|
12843
13394
|
exports.ClasseDeModulo = ClasseDeModulo;
|
|
12844
13395
|
|
|
12845
|
-
},{"./chamavel":
|
|
13396
|
+
},{"./chamavel":151}],153:[function(require,module,exports){
|
|
12846
13397
|
"use strict";
|
|
12847
13398
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12848
13399
|
exports.ClassePadrao = void 0;
|
|
@@ -12883,7 +13434,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
|
|
|
12883
13434
|
}
|
|
12884
13435
|
exports.ClassePadrao = ClassePadrao;
|
|
12885
13436
|
|
|
12886
|
-
},{"./chamavel":
|
|
13437
|
+
},{"./chamavel":151}],154:[function(require,module,exports){
|
|
12887
13438
|
"use strict";
|
|
12888
13439
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12889
13440
|
exports.DeleguaFuncao = void 0;
|
|
@@ -13028,7 +13579,7 @@ class DeleguaFuncao extends chamavel_1.Chamavel {
|
|
|
13028
13579
|
}
|
|
13029
13580
|
exports.DeleguaFuncao = DeleguaFuncao;
|
|
13030
13581
|
|
|
13031
|
-
},{"../../declaracoes":96,"../../quebras":
|
|
13582
|
+
},{"../../declaracoes":96,"../../quebras":190,"../espaco-memoria":150,"./chamavel":151}],155:[function(require,module,exports){
|
|
13032
13583
|
"use strict";
|
|
13033
13584
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13034
13585
|
exports.DescritorTipoClasse = void 0;
|
|
@@ -13109,7 +13660,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
|
|
|
13109
13660
|
}
|
|
13110
13661
|
exports.DescritorTipoClasse = DescritorTipoClasse;
|
|
13111
13662
|
|
|
13112
|
-
},{"../../excecoes":
|
|
13663
|
+
},{"../../excecoes":115,"./chamavel":151,"./objeto-delegua-classe":160}],156:[function(require,module,exports){
|
|
13113
13664
|
"use strict";
|
|
13114
13665
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13115
13666
|
exports.FuncaoPadrao = void 0;
|
|
@@ -13146,7 +13697,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
|
|
|
13146
13697
|
}
|
|
13147
13698
|
exports.FuncaoPadrao = FuncaoPadrao;
|
|
13148
13699
|
|
|
13149
|
-
},{"./chamavel":
|
|
13700
|
+
},{"./chamavel":151}],157:[function(require,module,exports){
|
|
13150
13701
|
"use strict";
|
|
13151
13702
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13152
13703
|
if (k2 === undefined) k2 = k;
|
|
@@ -13175,7 +13726,7 @@ __exportStar(require("./objeto-delegua-classe"), exports);
|
|
|
13175
13726
|
__exportStar(require("./objeto-padrao"), exports);
|
|
13176
13727
|
__exportStar(require("./referencia-montao"), exports);
|
|
13177
13728
|
|
|
13178
|
-
},{"./chamavel":
|
|
13729
|
+
},{"./chamavel":151,"./classe-de-modulo":152,"./classe-padrao":153,"./delegua-funcao":154,"./descritor-tipo-classe":155,"./funcao-padrao":156,"./metodo-primitiva":158,"./modulo":159,"./objeto-delegua-classe":160,"./objeto-padrao":161,"./referencia-montao":162}],158:[function(require,module,exports){
|
|
13179
13730
|
"use strict";
|
|
13180
13731
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13181
13732
|
exports.MetodoPrimitiva = void 0;
|
|
@@ -13221,7 +13772,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
|
|
|
13221
13772
|
}
|
|
13222
13773
|
exports.MetodoPrimitiva = MetodoPrimitiva;
|
|
13223
13774
|
|
|
13224
|
-
},{"./chamavel":
|
|
13775
|
+
},{"./chamavel":151}],159:[function(require,module,exports){
|
|
13225
13776
|
"use strict";
|
|
13226
13777
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13227
13778
|
exports.DeleguaModulo = void 0;
|
|
@@ -13247,7 +13798,7 @@ class DeleguaModulo {
|
|
|
13247
13798
|
}
|
|
13248
13799
|
exports.DeleguaModulo = DeleguaModulo;
|
|
13249
13800
|
|
|
13250
|
-
},{}],
|
|
13801
|
+
},{}],160:[function(require,module,exports){
|
|
13251
13802
|
"use strict";
|
|
13252
13803
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13253
13804
|
exports.ObjetoDeleguaClasse = void 0;
|
|
@@ -13315,7 +13866,7 @@ class ObjetoDeleguaClasse {
|
|
|
13315
13866
|
}
|
|
13316
13867
|
exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
|
|
13317
13868
|
|
|
13318
|
-
},{"../../excecoes":
|
|
13869
|
+
},{"../../excecoes":115}],161:[function(require,module,exports){
|
|
13319
13870
|
"use strict";
|
|
13320
13871
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13321
13872
|
exports.ObjetoPadrao = void 0;
|
|
@@ -13349,7 +13900,7 @@ class ObjetoPadrao {
|
|
|
13349
13900
|
}
|
|
13350
13901
|
exports.ObjetoPadrao = ObjetoPadrao;
|
|
13351
13902
|
|
|
13352
|
-
},{}],
|
|
13903
|
+
},{}],162:[function(require,module,exports){
|
|
13353
13904
|
"use strict";
|
|
13354
13905
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13355
13906
|
exports.ReferenciaMontao = void 0;
|
|
@@ -13374,7 +13925,7 @@ class ReferenciaMontao {
|
|
|
13374
13925
|
}
|
|
13375
13926
|
exports.ReferenciaMontao = ReferenciaMontao;
|
|
13376
13927
|
|
|
13377
|
-
},{}],
|
|
13928
|
+
},{}],163:[function(require,module,exports){
|
|
13378
13929
|
"use strict";
|
|
13379
13930
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13380
13931
|
if (k2 === undefined) k2 = k;
|
|
@@ -13394,7 +13945,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
13394
13945
|
__exportStar(require("./interpretador"), exports);
|
|
13395
13946
|
__exportStar(require("./interpretador-base"), exports);
|
|
13396
13947
|
|
|
13397
|
-
},{"./interpretador":
|
|
13948
|
+
},{"./interpretador":165,"./interpretador-base":164}],164:[function(require,module,exports){
|
|
13398
13949
|
(function (process){(function (){
|
|
13399
13950
|
"use strict";
|
|
13400
13951
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
@@ -13493,6 +14044,8 @@ class InterpretadorBase {
|
|
|
13493
14044
|
return (objetoAcessado as AcessoMetodoOuPropriedade).simbolo.lexema;
|
|
13494
14045
|
case AcessoIndiceVariavel:
|
|
13495
14046
|
return this.resolverNomeObjectoAcessado((objetoAcessado as AcessoIndiceVariavel).entidadeChamada); */
|
|
14047
|
+
case construtos_1.Chamada:
|
|
14048
|
+
return this.resolverNomeObjectoAcessado(objetoAcessado.entidadeChamada);
|
|
13496
14049
|
case construtos_1.Constante:
|
|
13497
14050
|
return objetoAcessado.simbolo.lexema;
|
|
13498
14051
|
case construtos_1.AcessoMetodoOuPropriedade:
|
|
@@ -14979,7 +15532,7 @@ class InterpretadorBase {
|
|
|
14979
15532
|
exports.InterpretadorBase = InterpretadorBase;
|
|
14980
15533
|
|
|
14981
15534
|
}).call(this)}).call(this,require('_process'))
|
|
14982
|
-
},{"../avaliador-sintatico":13,"../bibliotecas/primitivas-dicionario":20,"../bibliotecas/primitivas-vetor":23,"../construtos":51,"../excecoes":
|
|
15535
|
+
},{"../avaliador-sintatico":13,"../bibliotecas/primitivas-dicionario":20,"../bibliotecas/primitivas-vetor":23,"../construtos":51,"../excecoes":115,"../inferenciador":121,"../lexador":183,"../quebras":190,"../tipos-de-dados/delegua":191,"../tipos-de-dados/primitivos":193,"../tipos-de-simbolos/delegua":196,"./espaco-memoria":150,"./estruturas":157,"./estruturas/metodo-primitiva":158,"./pilha-escopos-execucao":167,"_process":438,"browser-process-hrtime":384}],165:[function(require,module,exports){
|
|
14983
15536
|
"use strict";
|
|
14984
15537
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14985
15538
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -15979,7 +16532,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
15979
16532
|
}
|
|
15980
16533
|
exports.Interpretador = Interpretador;
|
|
15981
16534
|
|
|
15982
|
-
},{"../bibliotecas/primitivas-dicionario":20,"../bibliotecas/primitivas-numero":21,"../bibliotecas/primitivas-texto":22,"../bibliotecas/primitivas-vetor":23,"../construtos":51,"../declaracoes":96,"../excecoes":
|
|
16535
|
+
},{"../bibliotecas/primitivas-dicionario":20,"../bibliotecas/primitivas-numero":21,"../bibliotecas/primitivas-texto":22,"../bibliotecas/primitivas-vetor":23,"../construtos":51,"../declaracoes":96,"../excecoes":115,"../inferenciador":121,"../quebras":190,"../tipos-de-dados/delegua":191,"../tipos-de-dados/primitivos":193,"./comum":149,"./estruturas":157,"./interpretador-base":164,"./montao":166}],166:[function(require,module,exports){
|
|
15983
16536
|
"use strict";
|
|
15984
16537
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15985
16538
|
exports.Montao = void 0;
|
|
@@ -16036,7 +16589,7 @@ class Montao {
|
|
|
16036
16589
|
}
|
|
16037
16590
|
exports.Montao = Montao;
|
|
16038
16591
|
|
|
16039
|
-
},{"../excecoes":
|
|
16592
|
+
},{"../excecoes":115,"../geracao-identificadores":119}],167:[function(require,module,exports){
|
|
16040
16593
|
"use strict";
|
|
16041
16594
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16042
16595
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -16324,7 +16877,7 @@ class PilhaEscoposExecucao {
|
|
|
16324
16877
|
}
|
|
16325
16878
|
exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
|
|
16326
16879
|
|
|
16327
|
-
},{"../excecoes":
|
|
16880
|
+
},{"../excecoes":115,"../inferenciador":121,"../lexador":183,"../tipos-de-dados/delegua":191,"./estruturas":157}],168:[function(require,module,exports){
|
|
16328
16881
|
"use strict";
|
|
16329
16882
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16330
16883
|
if (k2 === undefined) k2 = k;
|
|
@@ -16349,7 +16902,7 @@ __exportStar(require("./lexador-portugol-ipt"), exports);
|
|
|
16349
16902
|
__exportStar(require("./lexador-prisma"), exports);
|
|
16350
16903
|
__exportStar(require("./lexador-tenda"), exports);
|
|
16351
16904
|
|
|
16352
|
-
},{"./lexador-calango":
|
|
16905
|
+
},{"./lexador-calango":169,"./lexador-egua-classico":170,"./lexador-guarani":171,"./lexador-pitugues":172,"./lexador-portugol-ipt":173,"./lexador-prisma":174,"./lexador-tenda":175}],169:[function(require,module,exports){
|
|
16353
16906
|
"use strict";
|
|
16354
16907
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16355
16908
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -16582,7 +17135,7 @@ class LexadorCalango {
|
|
|
16582
17135
|
}
|
|
16583
17136
|
exports.LexadorCalango = LexadorCalango;
|
|
16584
17137
|
|
|
16585
|
-
},{"../../tipos-de-simbolos/calango":
|
|
17138
|
+
},{"../../tipos-de-simbolos/calango":194,"../simbolo":189,"./palavras-reservadas/calango":176}],170:[function(require,module,exports){
|
|
16586
17139
|
"use strict";
|
|
16587
17140
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16588
17141
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -16872,7 +17425,7 @@ class LexadorEguaClassico {
|
|
|
16872
17425
|
}
|
|
16873
17426
|
exports.LexadorEguaClassico = LexadorEguaClassico;
|
|
16874
17427
|
|
|
16875
|
-
},{"../../tipos-de-simbolos/egua-classico":
|
|
17428
|
+
},{"../../tipos-de-simbolos/egua-classico":197,"../simbolo":189,"./palavras-reservadas/egua-classico":177}],171:[function(require,module,exports){
|
|
16876
17429
|
"use strict";
|
|
16877
17430
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16878
17431
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -16991,7 +17544,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
|
|
|
16991
17544
|
}
|
|
16992
17545
|
exports.LexadorGuarani = LexadorGuarani;
|
|
16993
17546
|
|
|
16994
|
-
},{"../../tipos-de-simbolos/guarani":
|
|
17547
|
+
},{"../../tipos-de-simbolos/guarani":198,"../lexador-base":185,"./palavras-reservadas/guarani":178}],172:[function(require,module,exports){
|
|
16995
17548
|
"use strict";
|
|
16996
17549
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16997
17550
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -17443,7 +17996,7 @@ class LexadorPitugues {
|
|
|
17443
17996
|
}
|
|
17444
17997
|
exports.LexadorPitugues = LexadorPitugues;
|
|
17445
17998
|
|
|
17446
|
-
},{"../../tipos-de-simbolos/pitugues":
|
|
17999
|
+
},{"../../tipos-de-simbolos/pitugues":200,"../simbolo":189,"./palavras-reservadas/pitugues":179,"browser-process-hrtime":384}],173:[function(require,module,exports){
|
|
17447
18000
|
"use strict";
|
|
17448
18001
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
17449
18002
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -17695,7 +18248,7 @@ class LexadorPortugolIpt {
|
|
|
17695
18248
|
}
|
|
17696
18249
|
exports.LexadorPortugolIpt = LexadorPortugolIpt;
|
|
17697
18250
|
|
|
17698
|
-
},{"../../tipos-de-simbolos/portugol-ipt":
|
|
18251
|
+
},{"../../tipos-de-simbolos/portugol-ipt":201,"../simbolo":189,"./palavras-reservadas/portugol-ipt":180}],174:[function(require,module,exports){
|
|
17699
18252
|
"use strict";
|
|
17700
18253
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
17701
18254
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -18053,7 +18606,7 @@ class LexadorPrisma {
|
|
|
18053
18606
|
}
|
|
18054
18607
|
exports.LexadorPrisma = LexadorPrisma;
|
|
18055
18608
|
|
|
18056
|
-
},{"../../tipos-de-simbolos/prisma":
|
|
18609
|
+
},{"../../tipos-de-simbolos/prisma":202,"../simbolo":189,"./palavras-reservadas/prisma":181,"browser-process-hrtime":384}],175:[function(require,module,exports){
|
|
18057
18610
|
"use strict";
|
|
18058
18611
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
18059
18612
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -18444,7 +18997,7 @@ class LexadorTenda {
|
|
|
18444
18997
|
}
|
|
18445
18998
|
exports.LexadorTenda = LexadorTenda;
|
|
18446
18999
|
|
|
18447
|
-
},{"../../tipos-de-simbolos/tenda":
|
|
19000
|
+
},{"../../tipos-de-simbolos/tenda":203,"../simbolo":189,"./palavras-reservadas/tenda":182,"browser-process-hrtime":384}],176:[function(require,module,exports){
|
|
18448
19001
|
"use strict";
|
|
18449
19002
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
18450
19003
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -18465,7 +19018,7 @@ exports.default = {
|
|
|
18465
19018
|
fimSe: calango_1.default.FIM_SE,
|
|
18466
19019
|
};
|
|
18467
19020
|
|
|
18468
|
-
},{"../../../tipos-de-simbolos/calango":
|
|
19021
|
+
},{"../../../tipos-de-simbolos/calango":194}],177:[function(require,module,exports){
|
|
18469
19022
|
"use strict";
|
|
18470
19023
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
18471
19024
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -18506,7 +19059,7 @@ exports.palavrasReservadas = {
|
|
|
18506
19059
|
verdadeiro: egua_classico_1.default.VERDADEIRO,
|
|
18507
19060
|
};
|
|
18508
19061
|
|
|
18509
|
-
},{"../../../tipos-de-simbolos/egua-classico":
|
|
19062
|
+
},{"../../../tipos-de-simbolos/egua-classico":197}],178:[function(require,module,exports){
|
|
18510
19063
|
"use strict";
|
|
18511
19064
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
18512
19065
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -18518,7 +19071,7 @@ exports.palavrasReservadas = {
|
|
|
18518
19071
|
hai: guarani_1.default.HAI,
|
|
18519
19072
|
};
|
|
18520
19073
|
|
|
18521
|
-
},{"../../../tipos-de-simbolos/guarani":
|
|
19074
|
+
},{"../../../tipos-de-simbolos/guarani":198}],179:[function(require,module,exports){
|
|
18522
19075
|
"use strict";
|
|
18523
19076
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
18524
19077
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -18580,7 +19133,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
18580
19133
|
verdadeiro: pitugues_1.default.VERDADEIRO,
|
|
18581
19134
|
};
|
|
18582
19135
|
|
|
18583
|
-
},{"../../../tipos-de-simbolos/pitugues":
|
|
19136
|
+
},{"../../../tipos-de-simbolos/pitugues":200}],180:[function(require,module,exports){
|
|
18584
19137
|
"use strict";
|
|
18585
19138
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
18586
19139
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -18602,7 +19155,7 @@ exports.palavrasReservadas = {
|
|
|
18602
19155
|
senão: portugol_ipt_1.default.SENAO,
|
|
18603
19156
|
};
|
|
18604
19157
|
|
|
18605
|
-
},{"../../../tipos-de-simbolos/portugol-ipt":
|
|
19158
|
+
},{"../../../tipos-de-simbolos/portugol-ipt":201}],181:[function(require,module,exports){
|
|
18606
19159
|
"use strict";
|
|
18607
19160
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
18608
19161
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -18650,7 +19203,7 @@ exports.palavrasReservadas = {
|
|
|
18650
19203
|
verdadeiro: prisma_1.default.VERDADEIRO,
|
|
18651
19204
|
};
|
|
18652
19205
|
|
|
18653
|
-
},{"../../../tipos-de-simbolos/prisma":
|
|
19206
|
+
},{"../../../tipos-de-simbolos/prisma":202}],182:[function(require,module,exports){
|
|
18654
19207
|
"use strict";
|
|
18655
19208
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
18656
19209
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -18708,7 +19261,7 @@ exports.palavrasReservadas = {
|
|
|
18708
19261
|
Texto: tenda_1.default.BIBLIOTECA_GLOBAL,
|
|
18709
19262
|
};
|
|
18710
19263
|
|
|
18711
|
-
},{"../../../tipos-de-simbolos/tenda":
|
|
19264
|
+
},{"../../../tipos-de-simbolos/tenda":203}],183:[function(require,module,exports){
|
|
18712
19265
|
"use strict";
|
|
18713
19266
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18714
19267
|
if (k2 === undefined) k2 = k;
|
|
@@ -18731,7 +19284,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
|
|
|
18731
19284
|
__exportStar(require("./micro-lexador"), exports);
|
|
18732
19285
|
__exportStar(require("./simbolo"), exports);
|
|
18733
19286
|
|
|
18734
|
-
},{"./dialetos":
|
|
19287
|
+
},{"./dialetos":168,"./lexador":186,"./lexador-base-linha-unica":184,"./micro-lexador":187,"./simbolo":189}],184:[function(require,module,exports){
|
|
18735
19288
|
"use strict";
|
|
18736
19289
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18737
19290
|
exports.LexadorBaseLinhaUnica = void 0;
|
|
@@ -18815,7 +19368,7 @@ class LexadorBaseLinhaUnica {
|
|
|
18815
19368
|
}
|
|
18816
19369
|
exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
|
|
18817
19370
|
|
|
18818
|
-
},{"./simbolo":
|
|
19371
|
+
},{"./simbolo":189}],185:[function(require,module,exports){
|
|
18819
19372
|
"use strict";
|
|
18820
19373
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18821
19374
|
exports.LexadorBase = void 0;
|
|
@@ -18929,7 +19482,7 @@ class LexadorBase {
|
|
|
18929
19482
|
}
|
|
18930
19483
|
exports.LexadorBase = LexadorBase;
|
|
18931
19484
|
|
|
18932
|
-
},{"./simbolo":
|
|
19485
|
+
},{"./simbolo":189}],186:[function(require,module,exports){
|
|
18933
19486
|
"use strict";
|
|
18934
19487
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
18935
19488
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -19400,7 +19953,7 @@ class Lexador {
|
|
|
19400
19953
|
}
|
|
19401
19954
|
exports.Lexador = Lexador;
|
|
19402
19955
|
|
|
19403
|
-
},{"../tipos-de-simbolos/delegua":
|
|
19956
|
+
},{"../tipos-de-simbolos/delegua":196,"./palavras-reservadas":188,"./simbolo":189,"browser-process-hrtime":384}],187:[function(require,module,exports){
|
|
19404
19957
|
"use strict";
|
|
19405
19958
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
19406
19959
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -19633,7 +20186,7 @@ class MicroLexador {
|
|
|
19633
20186
|
}
|
|
19634
20187
|
exports.MicroLexador = MicroLexador;
|
|
19635
20188
|
|
|
19636
|
-
},{"../tipos-de-simbolos/microgramaticas/delegua":
|
|
20189
|
+
},{"../tipos-de-simbolos/microgramaticas/delegua":199,"./palavras-reservadas":188,"./simbolo":189}],188:[function(require,module,exports){
|
|
19637
20190
|
"use strict";
|
|
19638
20191
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
19639
20192
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -19703,7 +20256,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
19703
20256
|
verdadeiro: delegua_1.default.VERDADEIRO,
|
|
19704
20257
|
};
|
|
19705
20258
|
|
|
19706
|
-
},{"../tipos-de-simbolos/delegua":
|
|
20259
|
+
},{"../tipos-de-simbolos/delegua":196}],189:[function(require,module,exports){
|
|
19707
20260
|
"use strict";
|
|
19708
20261
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19709
20262
|
exports.Simbolo = void 0;
|
|
@@ -19721,7 +20274,7 @@ class Simbolo {
|
|
|
19721
20274
|
}
|
|
19722
20275
|
exports.Simbolo = Simbolo;
|
|
19723
20276
|
|
|
19724
|
-
},{}],
|
|
20277
|
+
},{}],190:[function(require,module,exports){
|
|
19725
20278
|
"use strict";
|
|
19726
20279
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19727
20280
|
exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
|
|
@@ -19746,7 +20299,7 @@ class ContinuarQuebra extends Quebra {
|
|
|
19746
20299
|
}
|
|
19747
20300
|
exports.ContinuarQuebra = ContinuarQuebra;
|
|
19748
20301
|
|
|
19749
|
-
},{}],
|
|
20302
|
+
},{}],191:[function(require,module,exports){
|
|
19750
20303
|
"use strict";
|
|
19751
20304
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19752
20305
|
exports.default = {
|
|
@@ -19776,7 +20329,7 @@ exports.default = {
|
|
|
19776
20329
|
VETOR_TEXTO: 'texto[]',
|
|
19777
20330
|
};
|
|
19778
20331
|
|
|
19779
|
-
},{}],
|
|
20332
|
+
},{}],192:[function(require,module,exports){
|
|
19780
20333
|
"use strict";
|
|
19781
20334
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19782
20335
|
exports.default = {
|
|
@@ -19806,7 +20359,7 @@ exports.default = {
|
|
|
19806
20359
|
VETOR_TEXTO: 'texto[]',
|
|
19807
20360
|
};
|
|
19808
20361
|
|
|
19809
|
-
},{}],
|
|
20362
|
+
},{}],193:[function(require,module,exports){
|
|
19810
20363
|
"use strict";
|
|
19811
20364
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19812
20365
|
exports.default = {
|
|
@@ -19825,7 +20378,7 @@ exports.default = {
|
|
|
19825
20378
|
TEXTO: 'string',
|
|
19826
20379
|
};
|
|
19827
20380
|
|
|
19828
|
-
},{}],
|
|
20381
|
+
},{}],194:[function(require,module,exports){
|
|
19829
20382
|
"use strict";
|
|
19830
20383
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19831
20384
|
exports.default = {
|
|
@@ -19869,7 +20422,7 @@ exports.default = {
|
|
|
19869
20422
|
VIRGULA: 'VIRGULA',
|
|
19870
20423
|
};
|
|
19871
20424
|
|
|
19872
|
-
},{}],
|
|
20425
|
+
},{}],195:[function(require,module,exports){
|
|
19873
20426
|
"use strict";
|
|
19874
20427
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19875
20428
|
exports.default = {
|
|
@@ -19895,7 +20448,7 @@ exports.default = {
|
|
|
19895
20448
|
VIRGULA: 'VIRGULA',
|
|
19896
20449
|
};
|
|
19897
20450
|
|
|
19898
|
-
},{}],
|
|
20451
|
+
},{}],196:[function(require,module,exports){
|
|
19899
20452
|
"use strict";
|
|
19900
20453
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19901
20454
|
exports.default = {
|
|
@@ -19996,7 +20549,7 @@ exports.default = {
|
|
|
19996
20549
|
VIRGULA: 'VIRGULA',
|
|
19997
20550
|
};
|
|
19998
20551
|
|
|
19999
|
-
},{}],
|
|
20552
|
+
},{}],197:[function(require,module,exports){
|
|
20000
20553
|
"use strict";
|
|
20001
20554
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20002
20555
|
exports.default = {
|
|
@@ -20074,7 +20627,7 @@ exports.default = {
|
|
|
20074
20627
|
VIRGULA: 'VIRGULA',
|
|
20075
20628
|
};
|
|
20076
20629
|
|
|
20077
|
-
},{}],
|
|
20630
|
+
},{}],198:[function(require,module,exports){
|
|
20078
20631
|
"use strict";
|
|
20079
20632
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20080
20633
|
exports.default = {
|
|
@@ -20091,7 +20644,7 @@ exports.default = {
|
|
|
20091
20644
|
VIRGULA: 'VIRGULA',
|
|
20092
20645
|
};
|
|
20093
20646
|
|
|
20094
|
-
},{}],
|
|
20647
|
+
},{}],199:[function(require,module,exports){
|
|
20095
20648
|
"use strict";
|
|
20096
20649
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20097
20650
|
exports.default = {
|
|
@@ -20144,7 +20697,7 @@ exports.default = {
|
|
|
20144
20697
|
VIRGULA: 'VIRGULA',
|
|
20145
20698
|
};
|
|
20146
20699
|
|
|
20147
|
-
},{}],
|
|
20700
|
+
},{}],200:[function(require,module,exports){
|
|
20148
20701
|
"use strict";
|
|
20149
20702
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20150
20703
|
exports.default = {
|
|
@@ -20231,7 +20784,7 @@ exports.default = {
|
|
|
20231
20784
|
VIRGULA: 'VIRGULA',
|
|
20232
20785
|
};
|
|
20233
20786
|
|
|
20234
|
-
},{}],
|
|
20787
|
+
},{}],201:[function(require,module,exports){
|
|
20235
20788
|
"use strict";
|
|
20236
20789
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20237
20790
|
exports.default = {
|
|
@@ -20270,7 +20823,7 @@ exports.default = {
|
|
|
20270
20823
|
VIRGULA: 'VIRGULA',
|
|
20271
20824
|
};
|
|
20272
20825
|
|
|
20273
|
-
},{}],
|
|
20826
|
+
},{}],202:[function(require,module,exports){
|
|
20274
20827
|
"use strict";
|
|
20275
20828
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20276
20829
|
exports.default = {
|
|
@@ -20350,7 +20903,7 @@ exports.default = {
|
|
|
20350
20903
|
VIRGULA: 'VIRGULA',
|
|
20351
20904
|
};
|
|
20352
20905
|
|
|
20353
|
-
},{}],
|
|
20906
|
+
},{}],203:[function(require,module,exports){
|
|
20354
20907
|
"use strict";
|
|
20355
20908
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20356
20909
|
// Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
|
|
@@ -20445,7 +20998,7 @@ exports.default = {
|
|
|
20445
20998
|
VIRGULA: 'VIRGULA',
|
|
20446
20999
|
};
|
|
20447
21000
|
|
|
20448
|
-
},{}],
|
|
21001
|
+
},{}],204:[function(require,module,exports){
|
|
20449
21002
|
"use strict";
|
|
20450
21003
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
20451
21004
|
if (k2 === undefined) k2 = k;
|
|
@@ -20474,7 +21027,7 @@ __exportStar(require("./tradutor-reverso-javascript"), exports);
|
|
|
20474
21027
|
__exportStar(require("./tradutor-reverso-python"), exports);
|
|
20475
21028
|
__exportStar(require("./tradutor-reverso-tenda"), exports);
|
|
20476
21029
|
|
|
20477
|
-
},{"./tradutor-assembly-arm":
|
|
21030
|
+
},{"./tradutor-assembly-arm":212,"./tradutor-assembly-x64":213,"./tradutor-assemblyscript":214,"./tradutor-calango":215,"./tradutor-javascript":216,"./tradutor-mermaidjs":217,"./tradutor-portugol-ipt":218,"./tradutor-python":219,"./tradutor-reverso-javascript":220,"./tradutor-reverso-python":221,"./tradutor-reverso-tenda":222}],205:[function(require,module,exports){
|
|
20478
21031
|
"use strict";
|
|
20479
21032
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20480
21033
|
exports.ArestaFluxograma = void 0;
|
|
@@ -20486,7 +21039,7 @@ class ArestaFluxograma {
|
|
|
20486
21039
|
}
|
|
20487
21040
|
exports.ArestaFluxograma = ArestaFluxograma;
|
|
20488
21041
|
|
|
20489
|
-
},{}],
|
|
21042
|
+
},{}],206:[function(require,module,exports){
|
|
20490
21043
|
"use strict";
|
|
20491
21044
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20492
21045
|
exports.DiagramaClasse = void 0;
|
|
@@ -20520,7 +21073,7 @@ class DiagramaClasse {
|
|
|
20520
21073
|
}
|
|
20521
21074
|
exports.DiagramaClasse = DiagramaClasse;
|
|
20522
21075
|
|
|
20523
|
-
},{}],
|
|
21076
|
+
},{}],207:[function(require,module,exports){
|
|
20524
21077
|
"use strict";
|
|
20525
21078
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
20526
21079
|
if (k2 === undefined) k2 = k;
|
|
@@ -20542,7 +21095,7 @@ __exportStar(require("./diagrama-classe"), exports);
|
|
|
20542
21095
|
__exportStar(require("./subgrafo-classe"), exports);
|
|
20543
21096
|
__exportStar(require("./vertice-fluxograma"), exports);
|
|
20544
21097
|
|
|
20545
|
-
},{"./aresta-fluxograma":
|
|
21098
|
+
},{"./aresta-fluxograma":205,"./diagrama-classe":206,"./subgrafo-classe":208,"./vertice-fluxograma":209}],208:[function(require,module,exports){
|
|
20546
21099
|
"use strict";
|
|
20547
21100
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20548
21101
|
exports.SubgrafoClasse = void 0;
|
|
@@ -20588,7 +21141,7 @@ class SubgrafoClasse {
|
|
|
20588
21141
|
}
|
|
20589
21142
|
exports.SubgrafoClasse = SubgrafoClasse;
|
|
20590
21143
|
|
|
20591
|
-
},{}],
|
|
21144
|
+
},{}],209:[function(require,module,exports){
|
|
20592
21145
|
"use strict";
|
|
20593
21146
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20594
21147
|
exports.VerticeFluxograma = void 0;
|
|
@@ -20605,7 +21158,7 @@ class VerticeFluxograma {
|
|
|
20605
21158
|
}
|
|
20606
21159
|
exports.VerticeFluxograma = VerticeFluxograma;
|
|
20607
21160
|
|
|
20608
|
-
},{}],
|
|
21161
|
+
},{}],210:[function(require,module,exports){
|
|
20609
21162
|
"use strict";
|
|
20610
21163
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
20611
21164
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -21845,7 +22398,7 @@ __decorate([
|
|
|
21845
22398
|
Decorators_1.Override
|
|
21846
22399
|
], Python3Lexer.prototype, "nextToken", null);
|
|
21847
22400
|
|
|
21848
|
-
},{"./python3-parser":
|
|
22401
|
+
},{"./python3-parser":211,"antlr4ts/CommonToken":232,"antlr4ts/Decorators":236,"antlr4ts/Lexer":244,"antlr4ts/Token":261,"antlr4ts/VocabularyImpl":267,"antlr4ts/atn/ATNDeserializer":273,"antlr4ts/atn/LexerATNSimulator":294,"antlr4ts/misc/Utils":355}],211:[function(require,module,exports){
|
|
21849
22402
|
"use strict";
|
|
21850
22403
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
21851
22404
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -33092,7 +33645,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
33092
33645
|
}
|
|
33093
33646
|
exports.Yield_argContext = Yield_argContext;
|
|
33094
33647
|
|
|
33095
|
-
},{"antlr4ts/FailedPredicateException":
|
|
33648
|
+
},{"antlr4ts/FailedPredicateException":240,"antlr4ts/NoViableAltException":248,"antlr4ts/Parser":249,"antlr4ts/ParserRuleContext":252,"antlr4ts/RecognitionException":255,"antlr4ts/Token":261,"antlr4ts/VocabularyImpl":267,"antlr4ts/atn/ATN":269,"antlr4ts/atn/ATNDeserializer":273,"antlr4ts/atn/ParserATNSimulator":310,"antlr4ts/misc/Utils":355}],212:[function(require,module,exports){
|
|
33096
33649
|
"use strict";
|
|
33097
33650
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
33098
33651
|
exports.TradutorAssemblyARM = void 0;
|
|
@@ -33808,7 +34361,7 @@ ${labelFim}:`;
|
|
|
33808
34361
|
}
|
|
33809
34362
|
exports.TradutorAssemblyARM = TradutorAssemblyARM;
|
|
33810
34363
|
|
|
33811
|
-
},{"../construtos":51,"../declaracoes":96}],
|
|
34364
|
+
},{"../construtos":51,"../declaracoes":96}],213:[function(require,module,exports){
|
|
33812
34365
|
"use strict";
|
|
33813
34366
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
33814
34367
|
exports.TradutorAssemblyX64 = void 0;
|
|
@@ -34476,7 +35029,7 @@ ${labelFim}:`;
|
|
|
34476
35029
|
}
|
|
34477
35030
|
exports.TradutorAssemblyX64 = TradutorAssemblyX64;
|
|
34478
35031
|
|
|
34479
|
-
},{"../construtos":51,"../declaracoes":96}],
|
|
35032
|
+
},{"../construtos":51,"../declaracoes":96}],214:[function(require,module,exports){
|
|
34480
35033
|
"use strict";
|
|
34481
35034
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
34482
35035
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -35111,7 +35664,7 @@ class TradutorAssemblyScript {
|
|
|
35111
35664
|
}
|
|
35112
35665
|
exports.TradutorAssemblyScript = TradutorAssemblyScript;
|
|
35113
35666
|
|
|
35114
|
-
},{"../construtos":51,"../declaracoes":96,"../tipos-de-simbolos/delegua":
|
|
35667
|
+
},{"../construtos":51,"../declaracoes":96,"../tipos-de-simbolos/delegua":196}],215:[function(require,module,exports){
|
|
35115
35668
|
"use strict";
|
|
35116
35669
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
35117
35670
|
exports.TradutorCalango = void 0;
|
|
@@ -35173,7 +35726,7 @@ class TradutorCalango {
|
|
|
35173
35726
|
}
|
|
35174
35727
|
exports.TradutorCalango = TradutorCalango;
|
|
35175
35728
|
|
|
35176
|
-
},{"../avaliador-sintatico/dialetos/avaliador-sintatico-calango":4,"../lexador/dialetos":
|
|
35729
|
+
},{"../avaliador-sintatico/dialetos/avaliador-sintatico-calango":4,"../lexador/dialetos":168}],216:[function(require,module,exports){
|
|
35177
35730
|
"use strict";
|
|
35178
35731
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
35179
35732
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -35926,7 +36479,7 @@ class TradutorJavaScript {
|
|
|
35926
36479
|
}
|
|
35927
36480
|
exports.TradutorJavaScript = TradutorJavaScript;
|
|
35928
36481
|
|
|
35929
|
-
},{"../construtos":51,"../declaracoes":96,"../tipos-de-simbolos/delegua":
|
|
36482
|
+
},{"../construtos":51,"../declaracoes":96,"../tipos-de-simbolos/delegua":196}],217:[function(require,module,exports){
|
|
35930
36483
|
"use strict";
|
|
35931
36484
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
35932
36485
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -36444,7 +36997,7 @@ class TradutorMermaidJs {
|
|
|
36444
36997
|
}
|
|
36445
36998
|
exports.TradutorMermaidJs = TradutorMermaidJs;
|
|
36446
36999
|
|
|
36447
|
-
},{"../tipos-de-simbolos/delegua":
|
|
37000
|
+
},{"../tipos-de-simbolos/delegua":196,"./mermaid":207}],218:[function(require,module,exports){
|
|
36448
37001
|
"use strict";
|
|
36449
37002
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36450
37003
|
exports.TradutorPortugolIpt = void 0;
|
|
@@ -36506,7 +37059,7 @@ class TradutorPortugolIpt {
|
|
|
36506
37059
|
}
|
|
36507
37060
|
exports.TradutorPortugolIpt = TradutorPortugolIpt;
|
|
36508
37061
|
|
|
36509
|
-
},{"../avaliador-sintatico/dialetos":10,"../lexador/dialetos":
|
|
37062
|
+
},{"../avaliador-sintatico/dialetos":10,"../lexador/dialetos":168}],219:[function(require,module,exports){
|
|
36510
37063
|
"use strict";
|
|
36511
37064
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
36512
37065
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -37155,7 +37708,7 @@ class TradutorPython {
|
|
|
37155
37708
|
}
|
|
37156
37709
|
exports.TradutorPython = TradutorPython;
|
|
37157
37710
|
|
|
37158
|
-
},{"../construtos":51,"../declaracoes":96,"../tipos-de-simbolos/delegua":
|
|
37711
|
+
},{"../construtos":51,"../declaracoes":96,"../tipos-de-simbolos/delegua":196}],220:[function(require,module,exports){
|
|
37159
37712
|
"use strict";
|
|
37160
37713
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37161
37714
|
exports.TradutorReversoJavaScript = void 0;
|
|
@@ -37552,7 +38105,7 @@ class TradutorReversoJavaScript {
|
|
|
37552
38105
|
}
|
|
37553
38106
|
exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
|
|
37554
38107
|
|
|
37555
|
-
},{}],
|
|
38108
|
+
},{}],221:[function(require,module,exports){
|
|
37556
38109
|
"use strict";
|
|
37557
38110
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37558
38111
|
exports.TradutorReversoPython = void 0;
|
|
@@ -37625,7 +38178,7 @@ class TradutorReversoPython {
|
|
|
37625
38178
|
}
|
|
37626
38179
|
exports.TradutorReversoPython = TradutorReversoPython;
|
|
37627
38180
|
|
|
37628
|
-
},{"./python/python3-lexer":
|
|
38181
|
+
},{"./python/python3-lexer":210,"./python/python3-parser":211,"antlr4ts":338,"antlr4ts/tree/ParseTreeWalker":357}],222:[function(require,module,exports){
|
|
37629
38182
|
"use strict";
|
|
37630
38183
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
37631
38184
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -38219,7 +38772,7 @@ class TradutorReversoTenda {
|
|
|
38219
38772
|
}
|
|
38220
38773
|
exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
38221
38774
|
|
|
38222
|
-
},{"../construtos":51,"../tipos-de-simbolos/tenda":
|
|
38775
|
+
},{"../construtos":51,"../tipos-de-simbolos/tenda":203}],223:[function(require,module,exports){
|
|
38223
38776
|
"use strict";
|
|
38224
38777
|
/*!
|
|
38225
38778
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38227,7 +38780,7 @@ exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
|
38227
38780
|
*/
|
|
38228
38781
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38229
38782
|
|
|
38230
|
-
},{}],
|
|
38783
|
+
},{}],224:[function(require,module,exports){
|
|
38231
38784
|
"use strict";
|
|
38232
38785
|
/*!
|
|
38233
38786
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38235,7 +38788,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
38235
38788
|
*/
|
|
38236
38789
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38237
38790
|
|
|
38238
|
-
},{}],
|
|
38791
|
+
},{}],225:[function(require,module,exports){
|
|
38239
38792
|
"use strict";
|
|
38240
38793
|
/*!
|
|
38241
38794
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38397,7 +38950,7 @@ __decorate([
|
|
|
38397
38950
|
], ANTLRInputStream.prototype, "toString", null);
|
|
38398
38951
|
exports.ANTLRInputStream = ANTLRInputStream;
|
|
38399
38952
|
|
|
38400
|
-
},{"./Decorators":
|
|
38953
|
+
},{"./Decorators":236,"./IntStream":242,"assert":379}],226:[function(require,module,exports){
|
|
38401
38954
|
"use strict";
|
|
38402
38955
|
/*!
|
|
38403
38956
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38480,7 +39033,7 @@ __decorate([
|
|
|
38480
39033
|
], BailErrorStrategy.prototype, "sync", null);
|
|
38481
39034
|
exports.BailErrorStrategy = BailErrorStrategy;
|
|
38482
39035
|
|
|
38483
|
-
},{"./Decorators":
|
|
39036
|
+
},{"./Decorators":236,"./DefaultErrorStrategy":237,"./InputMismatchException":241,"./misc/ParseCancellationException":353}],227:[function(require,module,exports){
|
|
38484
39037
|
"use strict";
|
|
38485
39038
|
/*!
|
|
38486
39039
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38970,7 +39523,7 @@ BufferedTokenStream = __decorate([
|
|
|
38970
39523
|
], BufferedTokenStream);
|
|
38971
39524
|
exports.BufferedTokenStream = BufferedTokenStream;
|
|
38972
39525
|
|
|
38973
|
-
},{"./CommonToken":
|
|
39526
|
+
},{"./CommonToken":232,"./Decorators":236,"./Lexer":244,"./Token":261,"./misc/Interval":348,"assert":379}],228:[function(require,module,exports){
|
|
38974
39527
|
"use strict";
|
|
38975
39528
|
/*!
|
|
38976
39529
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38978,7 +39531,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
|
|
|
38978
39531
|
*/
|
|
38979
39532
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38980
39533
|
|
|
38981
|
-
},{}],
|
|
39534
|
+
},{}],229:[function(require,module,exports){
|
|
38982
39535
|
"use strict";
|
|
38983
39536
|
/*!
|
|
38984
39537
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39112,7 +39665,7 @@ var CharStreams;
|
|
|
39112
39665
|
// }
|
|
39113
39666
|
})(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
|
|
39114
39667
|
|
|
39115
|
-
},{"./CodePointBuffer":
|
|
39668
|
+
},{"./CodePointBuffer":230,"./CodePointCharStream":231,"./IntStream":242}],230:[function(require,module,exports){
|
|
39116
39669
|
"use strict";
|
|
39117
39670
|
/*!
|
|
39118
39671
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39347,7 +39900,7 @@ exports.CodePointBuffer = CodePointBuffer;
|
|
|
39347
39900
|
CodePointBuffer.Builder = Builder;
|
|
39348
39901
|
})(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
|
|
39349
39902
|
|
|
39350
|
-
},{"./misc/Character":
|
|
39903
|
+
},{"./misc/Character":344,"assert":379}],231:[function(require,module,exports){
|
|
39351
39904
|
"use strict";
|
|
39352
39905
|
/*!
|
|
39353
39906
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39497,7 +40050,7 @@ __decorate([
|
|
|
39497
40050
|
], CodePointCharStream.prototype, "getText", null);
|
|
39498
40051
|
exports.CodePointCharStream = CodePointCharStream;
|
|
39499
40052
|
|
|
39500
|
-
},{"./Decorators":
|
|
40053
|
+
},{"./Decorators":236,"./IntStream":242,"./misc/Interval":348,"assert":379}],232:[function(require,module,exports){
|
|
39501
40054
|
"use strict";
|
|
39502
40055
|
/*!
|
|
39503
40056
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39727,7 +40280,7 @@ CommonToken = __decorate([
|
|
|
39727
40280
|
], CommonToken);
|
|
39728
40281
|
exports.CommonToken = CommonToken;
|
|
39729
40282
|
|
|
39730
|
-
},{"./Decorators":
|
|
40283
|
+
},{"./Decorators":236,"./Token":261,"./misc/Interval":348}],233:[function(require,module,exports){
|
|
39731
40284
|
"use strict";
|
|
39732
40285
|
/*!
|
|
39733
40286
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39791,7 +40344,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
|
|
|
39791
40344
|
CommonTokenFactory.DEFAULT = new CommonTokenFactory();
|
|
39792
40345
|
})(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
|
|
39793
40346
|
|
|
39794
|
-
},{"./CommonToken":
|
|
40347
|
+
},{"./CommonToken":232,"./Decorators":236,"./misc/Interval":348}],234:[function(require,module,exports){
|
|
39795
40348
|
"use strict";
|
|
39796
40349
|
/*!
|
|
39797
40350
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39918,7 +40471,7 @@ CommonTokenStream = __decorate([
|
|
|
39918
40471
|
], CommonTokenStream);
|
|
39919
40472
|
exports.CommonTokenStream = CommonTokenStream;
|
|
39920
40473
|
|
|
39921
|
-
},{"./BufferedTokenStream":
|
|
40474
|
+
},{"./BufferedTokenStream":227,"./Decorators":236,"./Token":261}],235:[function(require,module,exports){
|
|
39922
40475
|
"use strict";
|
|
39923
40476
|
/*!
|
|
39924
40477
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39952,7 +40505,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
|
|
|
39952
40505
|
*/
|
|
39953
40506
|
ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
|
|
39954
40507
|
|
|
39955
|
-
},{}],
|
|
40508
|
+
},{}],236:[function(require,module,exports){
|
|
39956
40509
|
"use strict";
|
|
39957
40510
|
/*!
|
|
39958
40511
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39979,7 +40532,7 @@ function SuppressWarnings(options) {
|
|
|
39979
40532
|
}
|
|
39980
40533
|
exports.SuppressWarnings = SuppressWarnings;
|
|
39981
40534
|
|
|
39982
|
-
},{}],
|
|
40535
|
+
},{}],237:[function(require,module,exports){
|
|
39983
40536
|
"use strict";
|
|
39984
40537
|
/*!
|
|
39985
40538
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40793,7 +41346,7 @@ __decorate([
|
|
|
40793
41346
|
], DefaultErrorStrategy.prototype, "consumeUntil", null);
|
|
40794
41347
|
exports.DefaultErrorStrategy = DefaultErrorStrategy;
|
|
40795
41348
|
|
|
40796
|
-
},{"./Decorators":
|
|
41349
|
+
},{"./Decorators":236,"./FailedPredicateException":240,"./InputMismatchException":241,"./NoViableAltException":248,"./Token":261,"./atn/ATNState":275,"./atn/ATNStateType":276,"./atn/PredictionContext":316,"./misc/IntervalSet":349}],238:[function(require,module,exports){
|
|
40797
41350
|
"use strict";
|
|
40798
41351
|
/*!
|
|
40799
41352
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40869,7 +41422,7 @@ var Dependents;
|
|
|
40869
41422
|
Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
|
|
40870
41423
|
})(Dependents = exports.Dependents || (exports.Dependents = {}));
|
|
40871
41424
|
|
|
40872
|
-
},{}],
|
|
41425
|
+
},{}],239:[function(require,module,exports){
|
|
40873
41426
|
"use strict";
|
|
40874
41427
|
/*!
|
|
40875
41428
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41017,7 +41570,7 @@ __decorate([
|
|
|
41017
41570
|
], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
|
|
41018
41571
|
exports.DiagnosticErrorListener = DiagnosticErrorListener;
|
|
41019
41572
|
|
|
41020
|
-
},{"./Decorators":
|
|
41573
|
+
},{"./Decorators":236,"./misc/BitSet":343,"./misc/Interval":348}],240:[function(require,module,exports){
|
|
41021
41574
|
"use strict";
|
|
41022
41575
|
/*!
|
|
41023
41576
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41082,7 +41635,7 @@ FailedPredicateException = __decorate([
|
|
|
41082
41635
|
], FailedPredicateException);
|
|
41083
41636
|
exports.FailedPredicateException = FailedPredicateException;
|
|
41084
41637
|
|
|
41085
|
-
},{"./Decorators":
|
|
41638
|
+
},{"./Decorators":236,"./RecognitionException":255,"./atn/PredicateTransition":315}],241:[function(require,module,exports){
|
|
41086
41639
|
"use strict";
|
|
41087
41640
|
/*!
|
|
41088
41641
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41122,7 +41675,7 @@ InputMismatchException = __decorate([
|
|
|
41122
41675
|
], InputMismatchException);
|
|
41123
41676
|
exports.InputMismatchException = InputMismatchException;
|
|
41124
41677
|
|
|
41125
|
-
},{"./Decorators":
|
|
41678
|
+
},{"./Decorators":236,"./RecognitionException":255}],242:[function(require,module,exports){
|
|
41126
41679
|
"use strict";
|
|
41127
41680
|
/*!
|
|
41128
41681
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41145,7 +41698,7 @@ var IntStream;
|
|
|
41145
41698
|
IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
|
|
41146
41699
|
})(IntStream = exports.IntStream || (exports.IntStream = {}));
|
|
41147
41700
|
|
|
41148
|
-
},{}],
|
|
41701
|
+
},{}],243:[function(require,module,exports){
|
|
41149
41702
|
"use strict";
|
|
41150
41703
|
/*!
|
|
41151
41704
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41192,7 +41745,7 @@ __decorate([
|
|
|
41192
41745
|
], InterpreterRuleContext.prototype, "ruleIndex", null);
|
|
41193
41746
|
exports.InterpreterRuleContext = InterpreterRuleContext;
|
|
41194
41747
|
|
|
41195
|
-
},{"./Decorators":
|
|
41748
|
+
},{"./Decorators":236,"./ParserRuleContext":252}],244:[function(require,module,exports){
|
|
41196
41749
|
"use strict";
|
|
41197
41750
|
/*!
|
|
41198
41751
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41528,7 +42081,7 @@ __decorate([
|
|
|
41528
42081
|
], Lexer.prototype, "charPositionInLine", null);
|
|
41529
42082
|
exports.Lexer = Lexer;
|
|
41530
42083
|
|
|
41531
|
-
},{"./CommonTokenFactory":
|
|
42084
|
+
},{"./CommonTokenFactory":233,"./Decorators":236,"./IntStream":242,"./LexerNoViableAltException":246,"./Recognizer":256,"./Token":261,"./atn/LexerATNSimulator":294,"./misc/IntegerStack":347,"./misc/Interval":348}],245:[function(require,module,exports){
|
|
41532
42085
|
"use strict";
|
|
41533
42086
|
/*!
|
|
41534
42087
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41608,7 +42161,7 @@ LexerInterpreter = __decorate([
|
|
|
41608
42161
|
], LexerInterpreter);
|
|
41609
42162
|
exports.LexerInterpreter = LexerInterpreter;
|
|
41610
42163
|
|
|
41611
|
-
},{"./Decorators":
|
|
42164
|
+
},{"./Decorators":236,"./Lexer":244,"./atn/LexerATNSimulator":294}],246:[function(require,module,exports){
|
|
41612
42165
|
"use strict";
|
|
41613
42166
|
/*!
|
|
41614
42167
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41665,7 +42218,7 @@ LexerNoViableAltException = __decorate([
|
|
|
41665
42218
|
], LexerNoViableAltException);
|
|
41666
42219
|
exports.LexerNoViableAltException = LexerNoViableAltException;
|
|
41667
42220
|
|
|
41668
|
-
},{"./Decorators":
|
|
42221
|
+
},{"./Decorators":236,"./RecognitionException":255,"./misc/Interval":348,"./misc/Utils":355}],247:[function(require,module,exports){
|
|
41669
42222
|
"use strict";
|
|
41670
42223
|
/*!
|
|
41671
42224
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41875,7 +42428,7 @@ ListTokenSource = __decorate([
|
|
|
41875
42428
|
], ListTokenSource);
|
|
41876
42429
|
exports.ListTokenSource = ListTokenSource;
|
|
41877
42430
|
|
|
41878
|
-
},{"./CommonTokenFactory":
|
|
42431
|
+
},{"./CommonTokenFactory":233,"./Decorators":236,"./Token":261}],248:[function(require,module,exports){
|
|
41879
42432
|
"use strict";
|
|
41880
42433
|
/*!
|
|
41881
42434
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41930,7 +42483,7 @@ __decorate([
|
|
|
41930
42483
|
], NoViableAltException.prototype, "_startToken", void 0);
|
|
41931
42484
|
exports.NoViableAltException = NoViableAltException;
|
|
41932
42485
|
|
|
41933
|
-
},{"./Decorators":
|
|
42486
|
+
},{"./Decorators":236,"./Parser":249,"./RecognitionException":255}],249:[function(require,module,exports){
|
|
41934
42487
|
(function (process){(function (){
|
|
41935
42488
|
"use strict";
|
|
41936
42489
|
/*!
|
|
@@ -42776,7 +43329,7 @@ __decorate([
|
|
|
42776
43329
|
exports.Parser = Parser;
|
|
42777
43330
|
|
|
42778
43331
|
}).call(this)}).call(this,require('_process'))
|
|
42779
|
-
},{"./Decorators":
|
|
43332
|
+
},{"./Decorators":236,"./DefaultErrorStrategy":237,"./Lexer":244,"./ProxyParserErrorListener":254,"./Recognizer":256,"./Token":261,"./atn/ATNDeserializationOptions":272,"./atn/ATNDeserializer":273,"./atn/ParseInfo":309,"./atn/ParserATNSimulator":310,"./atn/ProfilingATNSimulator":319,"./misc/IntegerStack":347,"./misc/Utils":355,"./tree/ErrorNode":356,"./tree/TerminalNode":359,"./tree/pattern/ParseTreePatternMatcher":364,"_process":438}],250:[function(require,module,exports){
|
|
42780
43333
|
"use strict";
|
|
42781
43334
|
/*!
|
|
42782
43335
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42784,7 +43337,7 @@ exports.Parser = Parser;
|
|
|
42784
43337
|
*/
|
|
42785
43338
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
42786
43339
|
|
|
42787
|
-
},{}],
|
|
43340
|
+
},{}],251:[function(require,module,exports){
|
|
42788
43341
|
"use strict";
|
|
42789
43342
|
/*!
|
|
42790
43343
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43192,7 +43745,7 @@ ParserInterpreter = __decorate([
|
|
|
43192
43745
|
], ParserInterpreter);
|
|
43193
43746
|
exports.ParserInterpreter = ParserInterpreter;
|
|
43194
43747
|
|
|
43195
|
-
},{"./Decorators":
|
|
43748
|
+
},{"./Decorators":236,"./FailedPredicateException":240,"./InputMismatchException":241,"./InterpreterRuleContext":243,"./Parser":249,"./RecognitionException":255,"./Token":261,"./atn/ATNState":275,"./atn/ATNStateType":276,"./atn/LoopEndState":306,"./atn/ParserATNSimulator":310,"./atn/StarLoopEntryState":328,"./misc/BitSet":343}],252:[function(require,module,exports){
|
|
43196
43749
|
"use strict";
|
|
43197
43750
|
/*!
|
|
43198
43751
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43493,7 +44046,7 @@ __decorate([
|
|
|
43493
44046
|
], ParserRuleContext.prototype, "sourceInterval", null);
|
|
43494
44047
|
exports.ParserRuleContext = ParserRuleContext;
|
|
43495
44048
|
|
|
43496
|
-
},{"./Decorators":
|
|
44049
|
+
},{"./Decorators":236,"./RuleContext":257,"./misc/Interval":348,"./tree/ErrorNode":356,"./tree/TerminalNode":359}],253:[function(require,module,exports){
|
|
43497
44050
|
"use strict";
|
|
43498
44051
|
/*!
|
|
43499
44052
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43543,7 +44096,7 @@ __decorate([
|
|
|
43543
44096
|
], ProxyErrorListener.prototype, "syntaxError", null);
|
|
43544
44097
|
exports.ProxyErrorListener = ProxyErrorListener;
|
|
43545
44098
|
|
|
43546
|
-
},{"./Decorators":
|
|
44099
|
+
},{"./Decorators":236}],254:[function(require,module,exports){
|
|
43547
44100
|
"use strict";
|
|
43548
44101
|
/*!
|
|
43549
44102
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43602,7 +44155,7 @@ __decorate([
|
|
|
43602
44155
|
], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
|
|
43603
44156
|
exports.ProxyParserErrorListener = ProxyParserErrorListener;
|
|
43604
44157
|
|
|
43605
|
-
},{"./Decorators":
|
|
44158
|
+
},{"./Decorators":236,"./ProxyErrorListener":253}],255:[function(require,module,exports){
|
|
43606
44159
|
"use strict";
|
|
43607
44160
|
/*!
|
|
43608
44161
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43707,7 +44260,7 @@ class RecognitionException extends Error {
|
|
|
43707
44260
|
}
|
|
43708
44261
|
exports.RecognitionException = RecognitionException;
|
|
43709
44262
|
|
|
43710
|
-
},{}],
|
|
44263
|
+
},{}],256:[function(require,module,exports){
|
|
43711
44264
|
"use strict";
|
|
43712
44265
|
/*!
|
|
43713
44266
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43926,7 +44479,7 @@ __decorate([
|
|
|
43926
44479
|
], Recognizer.prototype, "getErrorListeners", null);
|
|
43927
44480
|
exports.Recognizer = Recognizer;
|
|
43928
44481
|
|
|
43929
|
-
},{"./ConsoleErrorListener":
|
|
44482
|
+
},{"./ConsoleErrorListener":235,"./Decorators":236,"./ProxyErrorListener":253,"./Token":261,"./misc/Utils":355}],257:[function(require,module,exports){
|
|
43930
44483
|
"use strict";
|
|
43931
44484
|
/*!
|
|
43932
44485
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44143,7 +44696,7 @@ __decorate([
|
|
|
44143
44696
|
], RuleContext.prototype, "toStringTree", null);
|
|
44144
44697
|
exports.RuleContext = RuleContext;
|
|
44145
44698
|
|
|
44146
|
-
},{"./Decorators":
|
|
44699
|
+
},{"./Decorators":236,"./ParserRuleContext":252,"./Recognizer":256,"./atn/ATN":269,"./misc/Interval":348,"./tree/RuleNode":358,"./tree/Trees":360}],258:[function(require,module,exports){
|
|
44147
44700
|
"use strict";
|
|
44148
44701
|
/*!
|
|
44149
44702
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44194,7 +44747,7 @@ __decorate([
|
|
|
44194
44747
|
], RuleContextWithAltNum.prototype, "altNumber", null);
|
|
44195
44748
|
exports.RuleContextWithAltNum = RuleContextWithAltNum;
|
|
44196
44749
|
|
|
44197
|
-
},{"./Decorators":
|
|
44750
|
+
},{"./Decorators":236,"./ParserRuleContext":252,"./atn/ATN":269}],259:[function(require,module,exports){
|
|
44198
44751
|
"use strict";
|
|
44199
44752
|
/*!
|
|
44200
44753
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44217,7 +44770,7 @@ function RuleDependency(dependency) {
|
|
|
44217
44770
|
}
|
|
44218
44771
|
exports.RuleDependency = RuleDependency;
|
|
44219
44772
|
|
|
44220
|
-
},{}],
|
|
44773
|
+
},{}],260:[function(require,module,exports){
|
|
44221
44774
|
"use strict";
|
|
44222
44775
|
/*!
|
|
44223
44776
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44236,7 +44789,7 @@ function RuleVersion(version) {
|
|
|
44236
44789
|
}
|
|
44237
44790
|
exports.RuleVersion = RuleVersion;
|
|
44238
44791
|
|
|
44239
|
-
},{}],
|
|
44792
|
+
},{}],261:[function(require,module,exports){
|
|
44240
44793
|
"use strict";
|
|
44241
44794
|
/*!
|
|
44242
44795
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44276,7 +44829,7 @@ var Token;
|
|
|
44276
44829
|
Token.MIN_USER_CHANNEL_VALUE = 2;
|
|
44277
44830
|
})(Token = exports.Token || (exports.Token = {}));
|
|
44278
44831
|
|
|
44279
|
-
},{"./IntStream":
|
|
44832
|
+
},{"./IntStream":242}],262:[function(require,module,exports){
|
|
44280
44833
|
"use strict";
|
|
44281
44834
|
/*!
|
|
44282
44835
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44284,7 +44837,7 @@ var Token;
|
|
|
44284
44837
|
*/
|
|
44285
44838
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44286
44839
|
|
|
44287
|
-
},{}],
|
|
44840
|
+
},{}],263:[function(require,module,exports){
|
|
44288
44841
|
"use strict";
|
|
44289
44842
|
/*!
|
|
44290
44843
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44292,7 +44845,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
44292
44845
|
*/
|
|
44293
44846
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44294
44847
|
|
|
44295
|
-
},{}],
|
|
44848
|
+
},{}],264:[function(require,module,exports){
|
|
44296
44849
|
"use strict";
|
|
44297
44850
|
/*!
|
|
44298
44851
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44300,7 +44853,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
44300
44853
|
*/
|
|
44301
44854
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44302
44855
|
|
|
44303
|
-
},{}],
|
|
44856
|
+
},{}],265:[function(require,module,exports){
|
|
44304
44857
|
"use strict";
|
|
44305
44858
|
/*!
|
|
44306
44859
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44808,7 +45361,7 @@ __decorate([
|
|
|
44808
45361
|
Decorators_1.Override
|
|
44809
45362
|
], ReplaceOp.prototype, "toString", null);
|
|
44810
45363
|
|
|
44811
|
-
},{"./Decorators":
|
|
45364
|
+
},{"./Decorators":236,"./Token":261,"./misc/Interval":348}],266:[function(require,module,exports){
|
|
44812
45365
|
"use strict";
|
|
44813
45366
|
/*!
|
|
44814
45367
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44816,7 +45369,7 @@ __decorate([
|
|
|
44816
45369
|
*/
|
|
44817
45370
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44818
45371
|
|
|
44819
|
-
},{}],
|
|
45372
|
+
},{}],267:[function(require,module,exports){
|
|
44820
45373
|
"use strict";
|
|
44821
45374
|
/*!
|
|
44822
45375
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44936,7 +45489,7 @@ __decorate([
|
|
|
44936
45489
|
], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
|
|
44937
45490
|
exports.VocabularyImpl = VocabularyImpl;
|
|
44938
45491
|
|
|
44939
|
-
},{"./Decorators":
|
|
45492
|
+
},{"./Decorators":236,"./Token":261}],268:[function(require,module,exports){
|
|
44940
45493
|
"use strict";
|
|
44941
45494
|
/*!
|
|
44942
45495
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44944,7 +45497,7 @@ exports.VocabularyImpl = VocabularyImpl;
|
|
|
44944
45497
|
*/
|
|
44945
45498
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44946
45499
|
|
|
44947
|
-
},{}],
|
|
45500
|
+
},{}],269:[function(require,module,exports){
|
|
44948
45501
|
"use strict";
|
|
44949
45502
|
/*!
|
|
44950
45503
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45166,7 +45719,7 @@ exports.ATN = ATN;
|
|
|
45166
45719
|
})(ATN = exports.ATN || (exports.ATN = {}));
|
|
45167
45720
|
exports.ATN = ATN;
|
|
45168
45721
|
|
|
45169
|
-
},{"../Decorators":
|
|
45722
|
+
},{"../Decorators":236,"../Token":261,"../dfa/DFA":334,"../misc/Array2DHashMap":339,"../misc/IntervalSet":349,"../misc/ObjectEqualityComparator":352,"./InvalidState":292,"./LL1Analyzer":293,"./PredictionContext":316,"assert":379}],270:[function(require,module,exports){
|
|
45170
45723
|
"use strict";
|
|
45171
45724
|
/*!
|
|
45172
45725
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45691,7 +46244,7 @@ ActionSemanticContextATNConfig = __decorate([
|
|
|
45691
46244
|
__param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
|
|
45692
46245
|
], ActionSemanticContextATNConfig);
|
|
45693
46246
|
|
|
45694
|
-
},{"../Decorators":
|
|
46247
|
+
},{"../Decorators":236,"../misc/Array2DHashMap":339,"../misc/MurmurHash":351,"../misc/ObjectEqualityComparator":352,"./DecisionState":289,"./PredictionContext":316,"./SemanticContext":324,"assert":379}],271:[function(require,module,exports){
|
|
45695
46248
|
"use strict";
|
|
45696
46249
|
/*!
|
|
45697
46250
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46138,7 +46691,7 @@ __decorate([
|
|
|
46138
46691
|
], ATNConfigSet.prototype, "hashCode", null);
|
|
46139
46692
|
exports.ATNConfigSet = ATNConfigSet;
|
|
46140
46693
|
|
|
46141
|
-
},{"../Decorators":
|
|
46694
|
+
},{"../Decorators":236,"../misc/Array2DHashMap":339,"../misc/Array2DHashSet":340,"../misc/ArrayEqualityComparator":341,"../misc/BitSet":343,"../misc/ObjectEqualityComparator":352,"../misc/Utils":355,"./ATN":269,"./ATNConfig":270,"./PredictionContext":316,"./PredictionContextCache":317,"./SemanticContext":324,"assert":379}],272:[function(require,module,exports){
|
|
46142
46695
|
"use strict";
|
|
46143
46696
|
/*!
|
|
46144
46697
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46217,7 +46770,7 @@ __decorate([
|
|
|
46217
46770
|
], ATNDeserializationOptions, "defaultOptions", null);
|
|
46218
46771
|
exports.ATNDeserializationOptions = ATNDeserializationOptions;
|
|
46219
46772
|
|
|
46220
|
-
},{"../Decorators":
|
|
46773
|
+
},{"../Decorators":236}],273:[function(require,module,exports){
|
|
46221
46774
|
"use strict";
|
|
46222
46775
|
/*!
|
|
46223
46776
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47304,7 +47857,7 @@ __decorate([
|
|
|
47304
47857
|
], ATNDeserializer.prototype, "edgeFactory", null);
|
|
47305
47858
|
exports.ATNDeserializer = ATNDeserializer;
|
|
47306
47859
|
|
|
47307
|
-
},{"../Decorators":
|
|
47860
|
+
},{"../Decorators":236,"../Token":261,"../dfa/DFA":334,"../misc/Array2DHashSet":340,"../misc/BitSet":343,"../misc/IntervalSet":349,"../misc/UUID":354,"./ATN":269,"./ATNDeserializationOptions":272,"./ATNStateType":276,"./ActionTransition":278,"./AtomTransition":280,"./BasicBlockStartState":281,"./BasicState":282,"./BlockEndState":283,"./BlockStartState":284,"./DecisionState":289,"./EpsilonTransition":290,"./InvalidState":292,"./LexerChannelAction":296,"./LexerCustomAction":297,"./LexerModeAction":299,"./LexerMoreAction":300,"./LexerPopModeAction":301,"./LexerPushModeAction":302,"./LexerSkipAction":303,"./LexerTypeAction":304,"./LoopEndState":306,"./NotSetTransition":307,"./ParserATNSimulator":310,"./PlusBlockStartState":311,"./PlusLoopbackState":312,"./PrecedencePredicateTransition":313,"./PredicateTransition":315,"./RangeTransition":320,"./RuleStartState":321,"./RuleStopState":322,"./RuleTransition":323,"./SetTransition":325,"./StarBlockStartState":327,"./StarLoopEntryState":328,"./StarLoopbackState":329,"./TokensStartState":330,"./WildcardTransition":332}],274:[function(require,module,exports){
|
|
47308
47861
|
"use strict";
|
|
47309
47862
|
/*!
|
|
47310
47863
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47368,7 +47921,7 @@ exports.ATNSimulator = ATNSimulator;
|
|
|
47368
47921
|
})(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
|
|
47369
47922
|
exports.ATNSimulator = ATNSimulator;
|
|
47370
47923
|
|
|
47371
|
-
},{"../Decorators":
|
|
47924
|
+
},{"../Decorators":236,"../dfa/DFAState":336,"./ATNConfigSet":271,"./PredictionContext":316}],275:[function(require,module,exports){
|
|
47372
47925
|
"use strict";
|
|
47373
47926
|
/*!
|
|
47374
47927
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47555,7 +48108,7 @@ exports.ATNState = ATNState;
|
|
|
47555
48108
|
ATNState.INVALID_STATE_NUMBER = -1;
|
|
47556
48109
|
})(ATNState = exports.ATNState || (exports.ATNState = {}));
|
|
47557
48110
|
|
|
47558
|
-
},{"../Decorators":
|
|
48111
|
+
},{"../Decorators":236}],276:[function(require,module,exports){
|
|
47559
48112
|
"use strict";
|
|
47560
48113
|
/*!
|
|
47561
48114
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47581,7 +48134,7 @@ var ATNStateType;
|
|
|
47581
48134
|
ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
|
|
47582
48135
|
})(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
|
|
47583
48136
|
|
|
47584
|
-
},{}],
|
|
48137
|
+
},{}],277:[function(require,module,exports){
|
|
47585
48138
|
"use strict";
|
|
47586
48139
|
/*!
|
|
47587
48140
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47601,7 +48154,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
|
|
|
47601
48154
|
}
|
|
47602
48155
|
exports.AbstractPredicateTransition = AbstractPredicateTransition;
|
|
47603
48156
|
|
|
47604
|
-
},{"./Transition":
|
|
48157
|
+
},{"./Transition":331}],278:[function(require,module,exports){
|
|
47605
48158
|
"use strict";
|
|
47606
48159
|
/*!
|
|
47607
48160
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47657,7 +48210,7 @@ ActionTransition = __decorate([
|
|
|
47657
48210
|
], ActionTransition);
|
|
47658
48211
|
exports.ActionTransition = ActionTransition;
|
|
47659
48212
|
|
|
47660
|
-
},{"../Decorators":
|
|
48213
|
+
},{"../Decorators":236,"./Transition":331}],279:[function(require,module,exports){
|
|
47661
48214
|
"use strict";
|
|
47662
48215
|
/*!
|
|
47663
48216
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47744,7 +48297,7 @@ AmbiguityInfo = __decorate([
|
|
|
47744
48297
|
], AmbiguityInfo);
|
|
47745
48298
|
exports.AmbiguityInfo = AmbiguityInfo;
|
|
47746
48299
|
|
|
47747
|
-
},{"../Decorators":
|
|
48300
|
+
},{"../Decorators":236,"./DecisionEventInfo":287}],280:[function(require,module,exports){
|
|
47748
48301
|
"use strict";
|
|
47749
48302
|
/*!
|
|
47750
48303
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47802,7 +48355,7 @@ AtomTransition = __decorate([
|
|
|
47802
48355
|
], AtomTransition);
|
|
47803
48356
|
exports.AtomTransition = AtomTransition;
|
|
47804
48357
|
|
|
47805
|
-
},{"../Decorators":
|
|
48358
|
+
},{"../Decorators":236,"../misc/IntervalSet":349,"./Transition":331}],281:[function(require,module,exports){
|
|
47806
48359
|
"use strict";
|
|
47807
48360
|
/*!
|
|
47808
48361
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47834,7 +48387,7 @@ __decorate([
|
|
|
47834
48387
|
], BasicBlockStartState.prototype, "stateType", null);
|
|
47835
48388
|
exports.BasicBlockStartState = BasicBlockStartState;
|
|
47836
48389
|
|
|
47837
|
-
},{"../Decorators":
|
|
48390
|
+
},{"../Decorators":236,"./ATNStateType":276,"./BlockStartState":284}],282:[function(require,module,exports){
|
|
47838
48391
|
"use strict";
|
|
47839
48392
|
/*!
|
|
47840
48393
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47866,7 +48419,7 @@ __decorate([
|
|
|
47866
48419
|
], BasicState.prototype, "stateType", null);
|
|
47867
48420
|
exports.BasicState = BasicState;
|
|
47868
48421
|
|
|
47869
|
-
},{"../Decorators":
|
|
48422
|
+
},{"../Decorators":236,"./ATNState":275,"./ATNStateType":276}],283:[function(require,module,exports){
|
|
47870
48423
|
"use strict";
|
|
47871
48424
|
/*!
|
|
47872
48425
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47895,7 +48448,7 @@ __decorate([
|
|
|
47895
48448
|
], BlockEndState.prototype, "stateType", null);
|
|
47896
48449
|
exports.BlockEndState = BlockEndState;
|
|
47897
48450
|
|
|
47898
|
-
},{"../Decorators":
|
|
48451
|
+
},{"../Decorators":236,"./ATNState":275,"./ATNStateType":276}],284:[function(require,module,exports){
|
|
47899
48452
|
"use strict";
|
|
47900
48453
|
/*!
|
|
47901
48454
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47909,7 +48462,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
|
|
|
47909
48462
|
}
|
|
47910
48463
|
exports.BlockStartState = BlockStartState;
|
|
47911
48464
|
|
|
47912
|
-
},{"./DecisionState":
|
|
48465
|
+
},{"./DecisionState":289}],285:[function(require,module,exports){
|
|
47913
48466
|
"use strict";
|
|
47914
48467
|
/*!
|
|
47915
48468
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47979,7 +48532,7 @@ __decorate([
|
|
|
47979
48532
|
], ConflictInfo.prototype, "hashCode", null);
|
|
47980
48533
|
exports.ConflictInfo = ConflictInfo;
|
|
47981
48534
|
|
|
47982
|
-
},{"../Decorators":
|
|
48535
|
+
},{"../Decorators":236,"../misc/Utils":355}],286:[function(require,module,exports){
|
|
47983
48536
|
"use strict";
|
|
47984
48537
|
/*!
|
|
47985
48538
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48039,7 +48592,7 @@ ContextSensitivityInfo = __decorate([
|
|
|
48039
48592
|
], ContextSensitivityInfo);
|
|
48040
48593
|
exports.ContextSensitivityInfo = ContextSensitivityInfo;
|
|
48041
48594
|
|
|
48042
|
-
},{"../Decorators":
|
|
48595
|
+
},{"../Decorators":236,"./DecisionEventInfo":287}],287:[function(require,module,exports){
|
|
48043
48596
|
"use strict";
|
|
48044
48597
|
/*!
|
|
48045
48598
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48091,7 +48644,7 @@ DecisionEventInfo = __decorate([
|
|
|
48091
48644
|
], DecisionEventInfo);
|
|
48092
48645
|
exports.DecisionEventInfo = DecisionEventInfo;
|
|
48093
48646
|
|
|
48094
|
-
},{"../Decorators":
|
|
48647
|
+
},{"../Decorators":236}],288:[function(require,module,exports){
|
|
48095
48648
|
"use strict";
|
|
48096
48649
|
/*!
|
|
48097
48650
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48304,7 +48857,7 @@ __decorate([
|
|
|
48304
48857
|
], DecisionInfo.prototype, "toString", null);
|
|
48305
48858
|
exports.DecisionInfo = DecisionInfo;
|
|
48306
48859
|
|
|
48307
|
-
},{"../Decorators":
|
|
48860
|
+
},{"../Decorators":236}],289:[function(require,module,exports){
|
|
48308
48861
|
"use strict";
|
|
48309
48862
|
/*!
|
|
48310
48863
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48324,7 +48877,7 @@ class DecisionState extends ATNState_1.ATNState {
|
|
|
48324
48877
|
}
|
|
48325
48878
|
exports.DecisionState = DecisionState;
|
|
48326
48879
|
|
|
48327
|
-
},{"./ATNState":
|
|
48880
|
+
},{"./ATNState":275}],290:[function(require,module,exports){
|
|
48328
48881
|
"use strict";
|
|
48329
48882
|
/*!
|
|
48330
48883
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48390,7 +48943,7 @@ EpsilonTransition = __decorate([
|
|
|
48390
48943
|
], EpsilonTransition);
|
|
48391
48944
|
exports.EpsilonTransition = EpsilonTransition;
|
|
48392
48945
|
|
|
48393
|
-
},{"../Decorators":
|
|
48946
|
+
},{"../Decorators":236,"./Transition":331}],291:[function(require,module,exports){
|
|
48394
48947
|
"use strict";
|
|
48395
48948
|
/*!
|
|
48396
48949
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48443,7 +48996,7 @@ ErrorInfo = __decorate([
|
|
|
48443
48996
|
], ErrorInfo);
|
|
48444
48997
|
exports.ErrorInfo = ErrorInfo;
|
|
48445
48998
|
|
|
48446
|
-
},{"../Decorators":
|
|
48999
|
+
},{"../Decorators":236,"./DecisionEventInfo":287}],292:[function(require,module,exports){
|
|
48447
49000
|
"use strict";
|
|
48448
49001
|
/*!
|
|
48449
49002
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48474,7 +49027,7 @@ __decorate([
|
|
|
48474
49027
|
], InvalidState.prototype, "stateType", null);
|
|
48475
49028
|
exports.InvalidState = InvalidState;
|
|
48476
49029
|
|
|
48477
|
-
},{"../Decorators":
|
|
49030
|
+
},{"../Decorators":236,"./ATNStateType":276,"./BasicState":282}],293:[function(require,module,exports){
|
|
48478
49031
|
"use strict";
|
|
48479
49032
|
/*!
|
|
48480
49033
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48696,7 +49249,7 @@ LL1Analyzer = __decorate([
|
|
|
48696
49249
|
], LL1Analyzer);
|
|
48697
49250
|
exports.LL1Analyzer = LL1Analyzer;
|
|
48698
49251
|
|
|
48699
|
-
},{"../Decorators":
|
|
49252
|
+
},{"../Decorators":236,"../Token":261,"../misc/Array2DHashSet":340,"../misc/BitSet":343,"../misc/IntervalSet":349,"../misc/ObjectEqualityComparator":352,"./ATNConfig":270,"./AbstractPredicateTransition":277,"./NotSetTransition":307,"./PredictionContext":316,"./RuleStopState":322,"./RuleTransition":323,"./WildcardTransition":332}],294:[function(require,module,exports){
|
|
48700
49253
|
"use strict";
|
|
48701
49254
|
/*!
|
|
48702
49255
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49413,7 +49966,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
|
|
|
49413
49966
|
})(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
|
|
49414
49967
|
exports.LexerATNSimulator = LexerATNSimulator;
|
|
49415
49968
|
|
|
49416
|
-
},{"../Decorators":
|
|
49969
|
+
},{"../Decorators":236,"../IntStream":242,"../Lexer":244,"../LexerNoViableAltException":246,"../Token":261,"../dfa/AcceptStateInfo":333,"../dfa/DFAState":336,"../misc/Interval":348,"./ATN":269,"./ATNConfig":270,"./ATNConfigSet":271,"./ATNSimulator":274,"./LexerActionExecutor":295,"./OrderedATNConfigSet":308,"./PredictionContext":316,"./RuleStopState":322,"assert":379}],295:[function(require,module,exports){
|
|
49417
49970
|
"use strict";
|
|
49418
49971
|
/*!
|
|
49419
49972
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49614,7 +50167,7 @@ LexerActionExecutor = __decorate([
|
|
|
49614
50167
|
], LexerActionExecutor);
|
|
49615
50168
|
exports.LexerActionExecutor = LexerActionExecutor;
|
|
49616
50169
|
|
|
49617
|
-
},{"../Decorators":
|
|
50170
|
+
},{"../Decorators":236,"../misc/ArrayEqualityComparator":341,"../misc/MurmurHash":351,"./LexerIndexedCustomAction":298}],296:[function(require,module,exports){
|
|
49618
50171
|
"use strict";
|
|
49619
50172
|
/*!
|
|
49620
50173
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49719,7 +50272,7 @@ __decorate([
|
|
|
49719
50272
|
], LexerChannelAction.prototype, "toString", null);
|
|
49720
50273
|
exports.LexerChannelAction = LexerChannelAction;
|
|
49721
50274
|
|
|
49722
|
-
},{"../Decorators":
|
|
50275
|
+
},{"../Decorators":236,"../misc/MurmurHash":351}],297:[function(require,module,exports){
|
|
49723
50276
|
"use strict";
|
|
49724
50277
|
/*!
|
|
49725
50278
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49848,7 +50401,7 @@ __decorate([
|
|
|
49848
50401
|
], LexerCustomAction.prototype, "equals", null);
|
|
49849
50402
|
exports.LexerCustomAction = LexerCustomAction;
|
|
49850
50403
|
|
|
49851
|
-
},{"../Decorators":
|
|
50404
|
+
},{"../Decorators":236,"../misc/MurmurHash":351}],298:[function(require,module,exports){
|
|
49852
50405
|
"use strict";
|
|
49853
50406
|
/*!
|
|
49854
50407
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49983,7 +50536,7 @@ LexerIndexedCustomAction = __decorate([
|
|
|
49983
50536
|
], LexerIndexedCustomAction);
|
|
49984
50537
|
exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
|
|
49985
50538
|
|
|
49986
|
-
},{"../Decorators":
|
|
50539
|
+
},{"../Decorators":236,"../misc/MurmurHash":351}],299:[function(require,module,exports){
|
|
49987
50540
|
"use strict";
|
|
49988
50541
|
/*!
|
|
49989
50542
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50088,7 +50641,7 @@ __decorate([
|
|
|
50088
50641
|
], LexerModeAction.prototype, "toString", null);
|
|
50089
50642
|
exports.LexerModeAction = LexerModeAction;
|
|
50090
50643
|
|
|
50091
|
-
},{"../Decorators":
|
|
50644
|
+
},{"../Decorators":236,"../misc/MurmurHash":351}],300:[function(require,module,exports){
|
|
50092
50645
|
"use strict";
|
|
50093
50646
|
/*!
|
|
50094
50647
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50184,7 +50737,7 @@ exports.LexerMoreAction = LexerMoreAction;
|
|
|
50184
50737
|
LexerMoreAction.INSTANCE = new LexerMoreAction();
|
|
50185
50738
|
})(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
|
|
50186
50739
|
|
|
50187
|
-
},{"../Decorators":
|
|
50740
|
+
},{"../Decorators":236,"../misc/MurmurHash":351}],301:[function(require,module,exports){
|
|
50188
50741
|
"use strict";
|
|
50189
50742
|
/*!
|
|
50190
50743
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50280,7 +50833,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
|
|
|
50280
50833
|
LexerPopModeAction.INSTANCE = new LexerPopModeAction();
|
|
50281
50834
|
})(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
|
|
50282
50835
|
|
|
50283
|
-
},{"../Decorators":
|
|
50836
|
+
},{"../Decorators":236,"../misc/MurmurHash":351}],302:[function(require,module,exports){
|
|
50284
50837
|
"use strict";
|
|
50285
50838
|
/*!
|
|
50286
50839
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50385,7 +50938,7 @@ __decorate([
|
|
|
50385
50938
|
], LexerPushModeAction.prototype, "toString", null);
|
|
50386
50939
|
exports.LexerPushModeAction = LexerPushModeAction;
|
|
50387
50940
|
|
|
50388
|
-
},{"../Decorators":
|
|
50941
|
+
},{"../Decorators":236,"../misc/MurmurHash":351}],303:[function(require,module,exports){
|
|
50389
50942
|
"use strict";
|
|
50390
50943
|
/*!
|
|
50391
50944
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50481,7 +51034,7 @@ exports.LexerSkipAction = LexerSkipAction;
|
|
|
50481
51034
|
LexerSkipAction.INSTANCE = new LexerSkipAction();
|
|
50482
51035
|
})(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
|
|
50483
51036
|
|
|
50484
|
-
},{"../Decorators":
|
|
51037
|
+
},{"../Decorators":236,"../misc/MurmurHash":351}],304:[function(require,module,exports){
|
|
50485
51038
|
"use strict";
|
|
50486
51039
|
/*!
|
|
50487
51040
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50585,7 +51138,7 @@ __decorate([
|
|
|
50585
51138
|
], LexerTypeAction.prototype, "toString", null);
|
|
50586
51139
|
exports.LexerTypeAction = LexerTypeAction;
|
|
50587
51140
|
|
|
50588
|
-
},{"../Decorators":
|
|
51141
|
+
},{"../Decorators":236,"../misc/MurmurHash":351}],305:[function(require,module,exports){
|
|
50589
51142
|
"use strict";
|
|
50590
51143
|
/*!
|
|
50591
51144
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50637,7 +51190,7 @@ LookaheadEventInfo = __decorate([
|
|
|
50637
51190
|
], LookaheadEventInfo);
|
|
50638
51191
|
exports.LookaheadEventInfo = LookaheadEventInfo;
|
|
50639
51192
|
|
|
50640
|
-
},{"../Decorators":
|
|
51193
|
+
},{"../Decorators":236,"./DecisionEventInfo":287}],306:[function(require,module,exports){
|
|
50641
51194
|
"use strict";
|
|
50642
51195
|
/*!
|
|
50643
51196
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50666,7 +51219,7 @@ __decorate([
|
|
|
50666
51219
|
], LoopEndState.prototype, "stateType", null);
|
|
50667
51220
|
exports.LoopEndState = LoopEndState;
|
|
50668
51221
|
|
|
50669
|
-
},{"../Decorators":
|
|
51222
|
+
},{"../Decorators":236,"./ATNState":275,"./ATNStateType":276}],307:[function(require,module,exports){
|
|
50670
51223
|
"use strict";
|
|
50671
51224
|
/*!
|
|
50672
51225
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50715,7 +51268,7 @@ NotSetTransition = __decorate([
|
|
|
50715
51268
|
], NotSetTransition);
|
|
50716
51269
|
exports.NotSetTransition = NotSetTransition;
|
|
50717
51270
|
|
|
50718
|
-
},{"../Decorators":
|
|
51271
|
+
},{"../Decorators":236,"./SetTransition":325}],308:[function(require,module,exports){
|
|
50719
51272
|
"use strict";
|
|
50720
51273
|
/*!
|
|
50721
51274
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50770,7 +51323,7 @@ __decorate([
|
|
|
50770
51323
|
], OrderedATNConfigSet.prototype, "canMerge", null);
|
|
50771
51324
|
exports.OrderedATNConfigSet = OrderedATNConfigSet;
|
|
50772
51325
|
|
|
50773
|
-
},{"../Decorators":
|
|
51326
|
+
},{"../Decorators":236,"./ATNConfigSet":271}],309:[function(require,module,exports){
|
|
50774
51327
|
"use strict";
|
|
50775
51328
|
/*!
|
|
50776
51329
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50932,7 +51485,7 @@ ParseInfo = __decorate([
|
|
|
50932
51485
|
], ParseInfo);
|
|
50933
51486
|
exports.ParseInfo = ParseInfo;
|
|
50934
51487
|
|
|
50935
|
-
},{"../Decorators":
|
|
51488
|
+
},{"../Decorators":236}],310:[function(require,module,exports){
|
|
50936
51489
|
"use strict";
|
|
50937
51490
|
/*!
|
|
50938
51491
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53205,7 +53758,7 @@ ParserATNSimulator = __decorate([
|
|
|
53205
53758
|
], ParserATNSimulator);
|
|
53206
53759
|
exports.ParserATNSimulator = ParserATNSimulator;
|
|
53207
53760
|
|
|
53208
|
-
},{"../Decorators":
|
|
53761
|
+
},{"../Decorators":236,"../IntStream":242,"../NoViableAltException":248,"../ParserRuleContext":252,"../Token":261,"../VocabularyImpl":267,"../dfa/AcceptStateInfo":333,"../dfa/DFAState":336,"../misc/Array2DHashSet":340,"../misc/Arrays":342,"../misc/BitSet":343,"../misc/IntegerList":346,"../misc/Interval":348,"../misc/ObjectEqualityComparator":352,"./ATN":269,"./ATNConfig":270,"./ATNConfigSet":271,"./ATNSimulator":274,"./ATNStateType":276,"./ActionTransition":278,"./AtomTransition":280,"./ConflictInfo":285,"./DecisionState":289,"./NotSetTransition":307,"./PredictionContext":316,"./PredictionContextCache":317,"./PredictionMode":318,"./RuleStopState":322,"./RuleTransition":323,"./SemanticContext":324,"./SetTransition":325,"./SimulatorState":326,"assert":379}],311:[function(require,module,exports){
|
|
53209
53762
|
"use strict";
|
|
53210
53763
|
/*!
|
|
53211
53764
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53238,7 +53791,7 @@ __decorate([
|
|
|
53238
53791
|
], PlusBlockStartState.prototype, "stateType", null);
|
|
53239
53792
|
exports.PlusBlockStartState = PlusBlockStartState;
|
|
53240
53793
|
|
|
53241
|
-
},{"../Decorators":
|
|
53794
|
+
},{"../Decorators":236,"./ATNStateType":276,"./BlockStartState":284}],312:[function(require,module,exports){
|
|
53242
53795
|
"use strict";
|
|
53243
53796
|
/*!
|
|
53244
53797
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53269,7 +53822,7 @@ __decorate([
|
|
|
53269
53822
|
], PlusLoopbackState.prototype, "stateType", null);
|
|
53270
53823
|
exports.PlusLoopbackState = PlusLoopbackState;
|
|
53271
53824
|
|
|
53272
|
-
},{"../Decorators":
|
|
53825
|
+
},{"../Decorators":236,"./ATNStateType":276,"./DecisionState":289}],313:[function(require,module,exports){
|
|
53273
53826
|
"use strict";
|
|
53274
53827
|
/*!
|
|
53275
53828
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53332,7 +53885,7 @@ PrecedencePredicateTransition = __decorate([
|
|
|
53332
53885
|
], PrecedencePredicateTransition);
|
|
53333
53886
|
exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
|
|
53334
53887
|
|
|
53335
|
-
},{"../Decorators":
|
|
53888
|
+
},{"../Decorators":236,"./AbstractPredicateTransition":277,"./SemanticContext":324}],314:[function(require,module,exports){
|
|
53336
53889
|
"use strict";
|
|
53337
53890
|
/*!
|
|
53338
53891
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53395,7 +53948,7 @@ PredicateEvalInfo = __decorate([
|
|
|
53395
53948
|
], PredicateEvalInfo);
|
|
53396
53949
|
exports.PredicateEvalInfo = PredicateEvalInfo;
|
|
53397
53950
|
|
|
53398
|
-
},{"../Decorators":
|
|
53951
|
+
},{"../Decorators":236,"./DecisionEventInfo":287}],315:[function(require,module,exports){
|
|
53399
53952
|
"use strict";
|
|
53400
53953
|
/*!
|
|
53401
53954
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53461,7 +54014,7 @@ PredicateTransition = __decorate([
|
|
|
53461
54014
|
], PredicateTransition);
|
|
53462
54015
|
exports.PredicateTransition = PredicateTransition;
|
|
53463
54016
|
|
|
53464
|
-
},{"../Decorators":
|
|
54017
|
+
},{"../Decorators":236,"./AbstractPredicateTransition":277,"./SemanticContext":324}],316:[function(require,module,exports){
|
|
53465
54018
|
"use strict";
|
|
53466
54019
|
/*!
|
|
53467
54020
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54152,7 +54705,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
|
|
|
54152
54705
|
PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
|
|
54153
54706
|
})(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
|
|
54154
54707
|
|
|
54155
|
-
},{"../Decorators":
|
|
54708
|
+
},{"../Decorators":236,"../misc/Array2DHashMap":339,"../misc/Array2DHashSet":340,"../misc/Arrays":342,"../misc/MurmurHash":351,"./PredictionContextCache":317,"assert":379}],317:[function(require,module,exports){
|
|
54156
54709
|
"use strict";
|
|
54157
54710
|
/*!
|
|
54158
54711
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54293,7 +54846,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
|
|
|
54293
54846
|
PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
|
|
54294
54847
|
})(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
|
|
54295
54848
|
|
|
54296
|
-
},{"../Decorators":
|
|
54849
|
+
},{"../Decorators":236,"../misc/Array2DHashMap":339,"../misc/ObjectEqualityComparator":352,"./PredictionContext":316,"assert":379}],318:[function(require,module,exports){
|
|
54297
54850
|
"use strict";
|
|
54298
54851
|
/*!
|
|
54299
54852
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54454,7 +55007,7 @@ var PredictionMode;
|
|
|
54454
55007
|
PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
|
|
54455
55008
|
})(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
|
|
54456
55009
|
|
|
54457
|
-
},{"../Decorators":
|
|
55010
|
+
},{"../Decorators":236,"../misc/Array2DHashMap":339,"../misc/MurmurHash":351,"./RuleStopState":322}],319:[function(require,module,exports){
|
|
54458
55011
|
(function (process){(function (){
|
|
54459
55012
|
"use strict";
|
|
54460
55013
|
/*!
|
|
@@ -54723,7 +55276,7 @@ __decorate([
|
|
|
54723
55276
|
exports.ProfilingATNSimulator = ProfilingATNSimulator;
|
|
54724
55277
|
|
|
54725
55278
|
}).call(this)}).call(this,require('_process'))
|
|
54726
|
-
},{"../Decorators":
|
|
55279
|
+
},{"../Decorators":236,"./ATN":269,"./ATNSimulator":274,"./AmbiguityInfo":279,"./ContextSensitivityInfo":286,"./DecisionInfo":288,"./ErrorInfo":291,"./LookaheadEventInfo":305,"./ParserATNSimulator":310,"./PredicateEvalInfo":314,"./SemanticContext":324,"./SimulatorState":326,"_process":438}],320:[function(require,module,exports){
|
|
54727
55280
|
"use strict";
|
|
54728
55281
|
/*!
|
|
54729
55282
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54781,7 +55334,7 @@ RangeTransition = __decorate([
|
|
|
54781
55334
|
], RangeTransition);
|
|
54782
55335
|
exports.RangeTransition = RangeTransition;
|
|
54783
55336
|
|
|
54784
|
-
},{"../Decorators":
|
|
55337
|
+
},{"../Decorators":236,"../misc/IntervalSet":349,"./Transition":331}],321:[function(require,module,exports){
|
|
54785
55338
|
"use strict";
|
|
54786
55339
|
/*!
|
|
54787
55340
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54814,7 +55367,7 @@ __decorate([
|
|
|
54814
55367
|
], RuleStartState.prototype, "stateType", null);
|
|
54815
55368
|
exports.RuleStartState = RuleStartState;
|
|
54816
55369
|
|
|
54817
|
-
},{"../Decorators":
|
|
55370
|
+
},{"../Decorators":236,"./ATNState":275,"./ATNStateType":276}],322:[function(require,module,exports){
|
|
54818
55371
|
"use strict";
|
|
54819
55372
|
/*!
|
|
54820
55373
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54853,7 +55406,7 @@ __decorate([
|
|
|
54853
55406
|
], RuleStopState.prototype, "stateType", null);
|
|
54854
55407
|
exports.RuleStopState = RuleStopState;
|
|
54855
55408
|
|
|
54856
|
-
},{"../Decorators":
|
|
55409
|
+
},{"../Decorators":236,"./ATNState":275,"./ATNStateType":276}],323:[function(require,module,exports){
|
|
54857
55410
|
"use strict";
|
|
54858
55411
|
/*!
|
|
54859
55412
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54909,7 +55462,7 @@ RuleTransition = __decorate([
|
|
|
54909
55462
|
], RuleTransition);
|
|
54910
55463
|
exports.RuleTransition = RuleTransition;
|
|
54911
55464
|
|
|
54912
|
-
},{"../Decorators":
|
|
55465
|
+
},{"../Decorators":236,"./Transition":331}],324:[function(require,module,exports){
|
|
54913
55466
|
"use strict";
|
|
54914
55467
|
/*!
|
|
54915
55468
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55389,7 +55942,7 @@ exports.SemanticContext = SemanticContext;
|
|
|
55389
55942
|
SemanticContext.OR = OR;
|
|
55390
55943
|
})(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
|
|
55391
55944
|
|
|
55392
|
-
},{"../Decorators":
|
|
55945
|
+
},{"../Decorators":236,"../misc/Array2DHashSet":340,"../misc/ArrayEqualityComparator":341,"../misc/MurmurHash":351,"../misc/ObjectEqualityComparator":352,"../misc/Utils":355}],325:[function(require,module,exports){
|
|
55393
55946
|
"use strict";
|
|
55394
55947
|
/*!
|
|
55395
55948
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55455,7 +56008,7 @@ SetTransition = __decorate([
|
|
|
55455
56008
|
], SetTransition);
|
|
55456
56009
|
exports.SetTransition = SetTransition;
|
|
55457
56010
|
|
|
55458
|
-
},{"../Decorators":
|
|
56011
|
+
},{"../Decorators":236,"../Token":261,"../misc/IntervalSet":349,"./Transition":331}],326:[function(require,module,exports){
|
|
55459
56012
|
"use strict";
|
|
55460
56013
|
/*!
|
|
55461
56014
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55491,7 +56044,7 @@ SimulatorState = __decorate([
|
|
|
55491
56044
|
], SimulatorState);
|
|
55492
56045
|
exports.SimulatorState = SimulatorState;
|
|
55493
56046
|
|
|
55494
|
-
},{"../Decorators":
|
|
56047
|
+
},{"../Decorators":236,"../ParserRuleContext":252}],327:[function(require,module,exports){
|
|
55495
56048
|
"use strict";
|
|
55496
56049
|
/*!
|
|
55497
56050
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55519,7 +56072,7 @@ __decorate([
|
|
|
55519
56072
|
], StarBlockStartState.prototype, "stateType", null);
|
|
55520
56073
|
exports.StarBlockStartState = StarBlockStartState;
|
|
55521
56074
|
|
|
55522
|
-
},{"../Decorators":
|
|
56075
|
+
},{"../Decorators":236,"./ATNStateType":276,"./BlockStartState":284}],328:[function(require,module,exports){
|
|
55523
56076
|
"use strict";
|
|
55524
56077
|
/*!
|
|
55525
56078
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55576,7 +56129,7 @@ __decorate([
|
|
|
55576
56129
|
], StarLoopEntryState.prototype, "stateType", null);
|
|
55577
56130
|
exports.StarLoopEntryState = StarLoopEntryState;
|
|
55578
56131
|
|
|
55579
|
-
},{"../Decorators":
|
|
56132
|
+
},{"../Decorators":236,"../misc/BitSet":343,"./ATNStateType":276,"./DecisionState":289}],329:[function(require,module,exports){
|
|
55580
56133
|
"use strict";
|
|
55581
56134
|
/*!
|
|
55582
56135
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55607,7 +56160,7 @@ __decorate([
|
|
|
55607
56160
|
], StarLoopbackState.prototype, "stateType", null);
|
|
55608
56161
|
exports.StarLoopbackState = StarLoopbackState;
|
|
55609
56162
|
|
|
55610
|
-
},{"../Decorators":
|
|
56163
|
+
},{"../Decorators":236,"./ATNState":275,"./ATNStateType":276}],330:[function(require,module,exports){
|
|
55611
56164
|
"use strict";
|
|
55612
56165
|
/*!
|
|
55613
56166
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55636,7 +56189,7 @@ __decorate([
|
|
|
55636
56189
|
], TokensStartState.prototype, "stateType", null);
|
|
55637
56190
|
exports.TokensStartState = TokensStartState;
|
|
55638
56191
|
|
|
55639
|
-
},{"../Decorators":
|
|
56192
|
+
},{"../Decorators":236,"./ATNStateType":276,"./DecisionState":289}],331:[function(require,module,exports){
|
|
55640
56193
|
"use strict";
|
|
55641
56194
|
/*!
|
|
55642
56195
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55710,7 +56263,7 @@ Transition = __decorate([
|
|
|
55710
56263
|
], Transition);
|
|
55711
56264
|
exports.Transition = Transition;
|
|
55712
56265
|
|
|
55713
|
-
},{"../Decorators":
|
|
56266
|
+
},{"../Decorators":236}],332:[function(require,module,exports){
|
|
55714
56267
|
"use strict";
|
|
55715
56268
|
/*!
|
|
55716
56269
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55758,7 +56311,7 @@ WildcardTransition = __decorate([
|
|
|
55758
56311
|
], WildcardTransition);
|
|
55759
56312
|
exports.WildcardTransition = WildcardTransition;
|
|
55760
56313
|
|
|
55761
|
-
},{"../Decorators":
|
|
56314
|
+
},{"../Decorators":236,"./Transition":331}],333:[function(require,module,exports){
|
|
55762
56315
|
"use strict";
|
|
55763
56316
|
/*!
|
|
55764
56317
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55800,7 +56353,7 @@ class AcceptStateInfo {
|
|
|
55800
56353
|
}
|
|
55801
56354
|
exports.AcceptStateInfo = AcceptStateInfo;
|
|
55802
56355
|
|
|
55803
|
-
},{}],
|
|
56356
|
+
},{}],334:[function(require,module,exports){
|
|
55804
56357
|
"use strict";
|
|
55805
56358
|
/*!
|
|
55806
56359
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55975,7 +56528,7 @@ DFA = __decorate([
|
|
|
55975
56528
|
], DFA);
|
|
55976
56529
|
exports.DFA = DFA;
|
|
55977
56530
|
|
|
55978
|
-
},{"../Decorators":
|
|
56531
|
+
},{"../Decorators":236,"../VocabularyImpl":267,"../atn/ATNConfigSet":271,"../atn/StarLoopEntryState":328,"../misc/Array2DHashSet":340,"../misc/ObjectEqualityComparator":352,"./DFASerializer":335,"./DFAState":336,"./LexerDFASerializer":337}],335:[function(require,module,exports){
|
|
55979
56532
|
"use strict";
|
|
55980
56533
|
/*!
|
|
55981
56534
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56117,7 +56670,7 @@ __decorate([
|
|
|
56117
56670
|
], DFASerializer.prototype, "toString", null);
|
|
56118
56671
|
exports.DFASerializer = DFASerializer;
|
|
56119
56672
|
|
|
56120
|
-
},{"../Decorators":
|
|
56673
|
+
},{"../Decorators":236,"../Recognizer":256,"../VocabularyImpl":267,"../atn/ATNSimulator":274,"../atn/PredictionContext":316}],336:[function(require,module,exports){
|
|
56121
56674
|
"use strict";
|
|
56122
56675
|
/*!
|
|
56123
56676
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56348,7 +56901,7 @@ exports.DFAState = DFAState;
|
|
|
56348
56901
|
DFAState.PredPrediction = PredPrediction;
|
|
56349
56902
|
})(DFAState = exports.DFAState || (exports.DFAState = {}));
|
|
56350
56903
|
|
|
56351
|
-
},{"../Decorators":
|
|
56904
|
+
},{"../Decorators":236,"../atn/ATN":269,"../atn/PredictionContext":316,"../misc/BitSet":343,"../misc/MurmurHash":351,"assert":379}],337:[function(require,module,exports){
|
|
56352
56905
|
"use strict";
|
|
56353
56906
|
/*!
|
|
56354
56907
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56385,7 +56938,7 @@ LexerDFASerializer = __decorate([
|
|
|
56385
56938
|
], LexerDFASerializer);
|
|
56386
56939
|
exports.LexerDFASerializer = LexerDFASerializer;
|
|
56387
56940
|
|
|
56388
|
-
},{"../Decorators":
|
|
56941
|
+
},{"../Decorators":236,"../VocabularyImpl":267,"./DFASerializer":335}],338:[function(require,module,exports){
|
|
56389
56942
|
"use strict";
|
|
56390
56943
|
/*!
|
|
56391
56944
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56451,7 +57004,7 @@ __exportStar(require("./Vocabulary"), exports);
|
|
|
56451
57004
|
__exportStar(require("./VocabularyImpl"), exports);
|
|
56452
57005
|
__exportStar(require("./WritableToken"), exports);
|
|
56453
57006
|
|
|
56454
|
-
},{"./ANTLRErrorListener":
|
|
57007
|
+
},{"./ANTLRErrorListener":223,"./ANTLRErrorStrategy":224,"./ANTLRInputStream":225,"./BailErrorStrategy":226,"./BufferedTokenStream":227,"./CharStream":228,"./CharStreams":229,"./CodePointBuffer":230,"./CodePointCharStream":231,"./CommonToken":232,"./CommonTokenFactory":233,"./CommonTokenStream":234,"./ConsoleErrorListener":235,"./DefaultErrorStrategy":237,"./Dependents":238,"./DiagnosticErrorListener":239,"./FailedPredicateException":240,"./InputMismatchException":241,"./IntStream":242,"./InterpreterRuleContext":243,"./Lexer":244,"./LexerInterpreter":245,"./LexerNoViableAltException":246,"./ListTokenSource":247,"./NoViableAltException":248,"./Parser":249,"./ParserErrorListener":250,"./ParserInterpreter":251,"./ParserRuleContext":252,"./ProxyErrorListener":253,"./ProxyParserErrorListener":254,"./RecognitionException":255,"./Recognizer":256,"./RuleContext":257,"./RuleContextWithAltNum":258,"./RuleDependency":259,"./RuleVersion":260,"./Token":261,"./TokenFactory":262,"./TokenSource":263,"./TokenStream":264,"./TokenStreamRewriter":265,"./Vocabulary":266,"./VocabularyImpl":267,"./WritableToken":268}],339:[function(require,module,exports){
|
|
56455
57008
|
"use strict";
|
|
56456
57009
|
/*!
|
|
56457
57010
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56534,7 +57087,7 @@ class Array2DHashMap {
|
|
|
56534
57087
|
}
|
|
56535
57088
|
exports.Array2DHashMap = Array2DHashMap;
|
|
56536
57089
|
|
|
56537
|
-
},{"./Array2DHashSet":
|
|
57090
|
+
},{"./Array2DHashSet":340}],340:[function(require,module,exports){
|
|
56538
57091
|
"use strict";
|
|
56539
57092
|
/*!
|
|
56540
57093
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56901,7 +57454,7 @@ __decorate([
|
|
|
56901
57454
|
], Array2DHashSet.prototype, "createBuckets", null);
|
|
56902
57455
|
exports.Array2DHashSet = Array2DHashSet;
|
|
56903
57456
|
|
|
56904
|
-
},{"../Decorators":
|
|
57457
|
+
},{"../Decorators":236,"./DefaultEqualityComparator":345,"./MurmurHash":351,"assert":379}],341:[function(require,module,exports){
|
|
56905
57458
|
"use strict";
|
|
56906
57459
|
/*!
|
|
56907
57460
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56973,7 +57526,7 @@ __decorate([
|
|
|
56973
57526
|
], ArrayEqualityComparator.prototype, "equals", null);
|
|
56974
57527
|
exports.ArrayEqualityComparator = ArrayEqualityComparator;
|
|
56975
57528
|
|
|
56976
|
-
},{"../Decorators":
|
|
57529
|
+
},{"../Decorators":236,"./MurmurHash":351,"./ObjectEqualityComparator":352}],342:[function(require,module,exports){
|
|
56977
57530
|
"use strict";
|
|
56978
57531
|
/*!
|
|
56979
57532
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57043,7 +57596,7 @@ var Arrays;
|
|
|
57043
57596
|
Arrays.toString = toString;
|
|
57044
57597
|
})(Arrays = exports.Arrays || (exports.Arrays = {}));
|
|
57045
57598
|
|
|
57046
|
-
},{}],
|
|
57599
|
+
},{}],343:[function(require,module,exports){
|
|
57047
57600
|
"use strict";
|
|
57048
57601
|
/*!
|
|
57049
57602
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57715,7 +58268,7 @@ class BitSetIterator {
|
|
|
57715
58268
|
[Symbol.iterator]() { return this; }
|
|
57716
58269
|
}
|
|
57717
58270
|
|
|
57718
|
-
},{"./MurmurHash":
|
|
58271
|
+
},{"./MurmurHash":351,"util":443}],344:[function(require,module,exports){
|
|
57719
58272
|
"use strict";
|
|
57720
58273
|
/*!
|
|
57721
58274
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57736,7 +58289,7 @@ function isSupplementaryCodePoint(ch) {
|
|
|
57736
58289
|
}
|
|
57737
58290
|
exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
|
|
57738
58291
|
|
|
57739
|
-
},{}],
|
|
58292
|
+
},{}],345:[function(require,module,exports){
|
|
57740
58293
|
"use strict";
|
|
57741
58294
|
/*!
|
|
57742
58295
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57807,7 +58360,7 @@ __decorate([
|
|
|
57807
58360
|
], DefaultEqualityComparator.prototype, "equals", null);
|
|
57808
58361
|
exports.DefaultEqualityComparator = DefaultEqualityComparator;
|
|
57809
58362
|
|
|
57810
|
-
},{"../Decorators":
|
|
58363
|
+
},{"../Decorators":236,"./MurmurHash":351,"./ObjectEqualityComparator":352}],346:[function(require,module,exports){
|
|
57811
58364
|
"use strict";
|
|
57812
58365
|
/*!
|
|
57813
58366
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58101,7 +58654,7 @@ __decorate([
|
|
|
58101
58654
|
], IntegerList.prototype, "toString", null);
|
|
58102
58655
|
exports.IntegerList = IntegerList;
|
|
58103
58656
|
|
|
58104
|
-
},{"../Decorators":
|
|
58657
|
+
},{"../Decorators":236,"./Arrays":342}],347:[function(require,module,exports){
|
|
58105
58658
|
"use strict";
|
|
58106
58659
|
/*!
|
|
58107
58660
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58131,7 +58684,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
|
|
|
58131
58684
|
}
|
|
58132
58685
|
exports.IntegerStack = IntegerStack;
|
|
58133
58686
|
|
|
58134
|
-
},{"./IntegerList":
|
|
58687
|
+
},{"./IntegerList":346}],348:[function(require,module,exports){
|
|
58135
58688
|
"use strict";
|
|
58136
58689
|
/*!
|
|
58137
58690
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58274,7 +58827,7 @@ __decorate([
|
|
|
58274
58827
|
], Interval.prototype, "toString", null);
|
|
58275
58828
|
exports.Interval = Interval;
|
|
58276
58829
|
|
|
58277
|
-
},{"../Decorators":
|
|
58830
|
+
},{"../Decorators":236}],349:[function(require,module,exports){
|
|
58278
58831
|
"use strict";
|
|
58279
58832
|
/*!
|
|
58280
58833
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58920,7 +59473,7 @@ __decorate([
|
|
|
58920
59473
|
], IntervalSet, "subtract", null);
|
|
58921
59474
|
exports.IntervalSet = IntervalSet;
|
|
58922
59475
|
|
|
58923
|
-
},{"../Decorators":
|
|
59476
|
+
},{"../Decorators":236,"../Lexer":244,"../Token":261,"./ArrayEqualityComparator":341,"./IntegerList":346,"./Interval":348,"./MurmurHash":351}],350:[function(require,module,exports){
|
|
58924
59477
|
"use strict";
|
|
58925
59478
|
/*!
|
|
58926
59479
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58953,7 +59506,7 @@ class MultiMap extends Map {
|
|
|
58953
59506
|
}
|
|
58954
59507
|
exports.MultiMap = MultiMap;
|
|
58955
59508
|
|
|
58956
|
-
},{}],
|
|
59509
|
+
},{}],351:[function(require,module,exports){
|
|
58957
59510
|
"use strict";
|
|
58958
59511
|
/*!
|
|
58959
59512
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59068,7 +59621,7 @@ var MurmurHash;
|
|
|
59068
59621
|
}
|
|
59069
59622
|
})(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
|
|
59070
59623
|
|
|
59071
|
-
},{}],
|
|
59624
|
+
},{}],352:[function(require,module,exports){
|
|
59072
59625
|
"use strict";
|
|
59073
59626
|
/*!
|
|
59074
59627
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59127,7 +59680,7 @@ __decorate([
|
|
|
59127
59680
|
], ObjectEqualityComparator.prototype, "equals", null);
|
|
59128
59681
|
exports.ObjectEqualityComparator = ObjectEqualityComparator;
|
|
59129
59682
|
|
|
59130
|
-
},{"../Decorators":
|
|
59683
|
+
},{"../Decorators":236}],353:[function(require,module,exports){
|
|
59131
59684
|
"use strict";
|
|
59132
59685
|
/*!
|
|
59133
59686
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59156,7 +59709,7 @@ class ParseCancellationException extends Error {
|
|
|
59156
59709
|
}
|
|
59157
59710
|
exports.ParseCancellationException = ParseCancellationException;
|
|
59158
59711
|
|
|
59159
|
-
},{}],
|
|
59712
|
+
},{}],354:[function(require,module,exports){
|
|
59160
59713
|
"use strict";
|
|
59161
59714
|
/*!
|
|
59162
59715
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59210,7 +59763,7 @@ class UUID {
|
|
|
59210
59763
|
}
|
|
59211
59764
|
exports.UUID = UUID;
|
|
59212
59765
|
|
|
59213
|
-
},{"./MurmurHash":
|
|
59766
|
+
},{"./MurmurHash":351}],355:[function(require,module,exports){
|
|
59214
59767
|
"use strict";
|
|
59215
59768
|
/*!
|
|
59216
59769
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59385,7 +59938,7 @@ exports.toCharArray = toCharArray;
|
|
|
59385
59938
|
// return s;
|
|
59386
59939
|
// }
|
|
59387
59940
|
|
|
59388
|
-
},{}],
|
|
59941
|
+
},{}],356:[function(require,module,exports){
|
|
59389
59942
|
"use strict";
|
|
59390
59943
|
/*!
|
|
59391
59944
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59421,7 +59974,7 @@ __decorate([
|
|
|
59421
59974
|
], ErrorNode.prototype, "accept", null);
|
|
59422
59975
|
exports.ErrorNode = ErrorNode;
|
|
59423
59976
|
|
|
59424
|
-
},{"../Decorators":
|
|
59977
|
+
},{"../Decorators":236,"./TerminalNode":359}],357:[function(require,module,exports){
|
|
59425
59978
|
"use strict";
|
|
59426
59979
|
/*!
|
|
59427
59980
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59526,7 +60079,7 @@ exports.ParseTreeWalker = ParseTreeWalker;
|
|
|
59526
60079
|
ParseTreeWalker.DEFAULT = new ParseTreeWalker();
|
|
59527
60080
|
})(ParseTreeWalker = exports.ParseTreeWalker || (exports.ParseTreeWalker = {}));
|
|
59528
60081
|
|
|
59529
|
-
},{"./ErrorNode":
|
|
60082
|
+
},{"./ErrorNode":356,"./RuleNode":358,"./TerminalNode":359}],358:[function(require,module,exports){
|
|
59530
60083
|
"use strict";
|
|
59531
60084
|
/*!
|
|
59532
60085
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59538,7 +60091,7 @@ class RuleNode {
|
|
|
59538
60091
|
}
|
|
59539
60092
|
exports.RuleNode = RuleNode;
|
|
59540
60093
|
|
|
59541
|
-
},{}],
|
|
60094
|
+
},{}],359:[function(require,module,exports){
|
|
59542
60095
|
"use strict";
|
|
59543
60096
|
/*!
|
|
59544
60097
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59630,7 +60183,7 @@ __decorate([
|
|
|
59630
60183
|
], TerminalNode.prototype, "toString", null);
|
|
59631
60184
|
exports.TerminalNode = TerminalNode;
|
|
59632
60185
|
|
|
59633
|
-
},{"../Decorators":
|
|
60186
|
+
},{"../Decorators":236,"../Token":261,"../misc/Interval":348}],360:[function(require,module,exports){
|
|
59634
60187
|
"use strict";
|
|
59635
60188
|
/*!
|
|
59636
60189
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59874,7 +60427,7 @@ __decorate([
|
|
|
59874
60427
|
], Trees, "getRootOfSubtreeEnclosingRegion", null);
|
|
59875
60428
|
exports.Trees = Trees;
|
|
59876
60429
|
|
|
59877
|
-
},{"../CommonToken":
|
|
60430
|
+
},{"../CommonToken":232,"../Decorators":236,"../Parser":249,"../ParserRuleContext":252,"../Token":261,"../atn/ATN":269,"../misc/Utils":355,"./ErrorNode":356,"./RuleNode":358,"./TerminalNode":359}],361:[function(require,module,exports){
|
|
59878
60431
|
"use strict";
|
|
59879
60432
|
/*!
|
|
59880
60433
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59898,7 +60451,7 @@ class Chunk {
|
|
|
59898
60451
|
}
|
|
59899
60452
|
exports.Chunk = Chunk;
|
|
59900
60453
|
|
|
59901
|
-
},{}],
|
|
60454
|
+
},{}],362:[function(require,module,exports){
|
|
59902
60455
|
"use strict";
|
|
59903
60456
|
/*!
|
|
59904
60457
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60078,7 +60631,7 @@ ParseTreeMatch = __decorate([
|
|
|
60078
60631
|
], ParseTreeMatch);
|
|
60079
60632
|
exports.ParseTreeMatch = ParseTreeMatch;
|
|
60080
60633
|
|
|
60081
|
-
},{"../../Decorators":
|
|
60634
|
+
},{"../../Decorators":236}],363:[function(require,module,exports){
|
|
60082
60635
|
"use strict";
|
|
60083
60636
|
/*!
|
|
60084
60637
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60236,7 +60789,7 @@ ParseTreePattern = __decorate([
|
|
|
60236
60789
|
], ParseTreePattern);
|
|
60237
60790
|
exports.ParseTreePattern = ParseTreePattern;
|
|
60238
60791
|
|
|
60239
|
-
},{"../../Decorators":
|
|
60792
|
+
},{"../../Decorators":236,"../xpath/XPath":369}],364:[function(require,module,exports){
|
|
60240
60793
|
"use strict";
|
|
60241
60794
|
/*!
|
|
60242
60795
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60714,7 +61267,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
|
|
|
60714
61267
|
ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
|
|
60715
61268
|
})(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
|
|
60716
61269
|
|
|
60717
|
-
},{"../../BailErrorStrategy":
|
|
61270
|
+
},{"../../BailErrorStrategy":226,"../../CharStreams":229,"../../CommonTokenStream":234,"../../Decorators":236,"../../ListTokenSource":247,"../../ParserInterpreter":251,"../../ParserRuleContext":252,"../../RecognitionException":255,"../../Token":261,"../../misc/MultiMap":350,"../../misc/ParseCancellationException":353,"../RuleNode":358,"../TerminalNode":359,"./ParseTreeMatch":362,"./ParseTreePattern":363,"./RuleTagToken":365,"./TagChunk":366,"./TextChunk":367,"./TokenTagToken":368}],365:[function(require,module,exports){
|
|
60718
61271
|
"use strict";
|
|
60719
61272
|
/*!
|
|
60720
61273
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60912,7 +61465,7 @@ RuleTagToken = __decorate([
|
|
|
60912
61465
|
], RuleTagToken);
|
|
60913
61466
|
exports.RuleTagToken = RuleTagToken;
|
|
60914
61467
|
|
|
60915
|
-
},{"../../Decorators":
|
|
61468
|
+
},{"../../Decorators":236,"../../Token":261}],366:[function(require,module,exports){
|
|
60916
61469
|
"use strict";
|
|
60917
61470
|
/*!
|
|
60918
61471
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60999,7 +61552,7 @@ __decorate([
|
|
|
60999
61552
|
], TagChunk.prototype, "toString", null);
|
|
61000
61553
|
exports.TagChunk = TagChunk;
|
|
61001
61554
|
|
|
61002
|
-
},{"../../Decorators":
|
|
61555
|
+
},{"../../Decorators":236,"./Chunk":361}],367:[function(require,module,exports){
|
|
61003
61556
|
"use strict";
|
|
61004
61557
|
/*!
|
|
61005
61558
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61069,7 +61622,7 @@ TextChunk = __decorate([
|
|
|
61069
61622
|
], TextChunk);
|
|
61070
61623
|
exports.TextChunk = TextChunk;
|
|
61071
61624
|
|
|
61072
|
-
},{"../../Decorators":
|
|
61625
|
+
},{"../../Decorators":236,"./Chunk":361}],368:[function(require,module,exports){
|
|
61073
61626
|
"use strict";
|
|
61074
61627
|
/*!
|
|
61075
61628
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61164,7 +61717,7 @@ TokenTagToken = __decorate([
|
|
|
61164
61717
|
], TokenTagToken);
|
|
61165
61718
|
exports.TokenTagToken = TokenTagToken;
|
|
61166
61719
|
|
|
61167
|
-
},{"../../CommonToken":
|
|
61720
|
+
},{"../../CommonToken":232,"../../Decorators":236}],369:[function(require,module,exports){
|
|
61168
61721
|
"use strict";
|
|
61169
61722
|
/*!
|
|
61170
61723
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61361,7 +61914,7 @@ exports.XPath = XPath;
|
|
|
61361
61914
|
XPath.WILDCARD = "*"; // word not operator/separator
|
|
61362
61915
|
XPath.NOT = "!"; // word for invert operator
|
|
61363
61916
|
|
|
61364
|
-
},{"../../CharStreams":
|
|
61917
|
+
},{"../../CharStreams":229,"../../CommonTokenStream":234,"../../LexerNoViableAltException":246,"../../ParserRuleContext":252,"../../Token":261,"./XPathLexer":371,"./XPathLexerErrorListener":372,"./XPathRuleAnywhereElement":373,"./XPathRuleElement":374,"./XPathTokenAnywhereElement":375,"./XPathTokenElement":376,"./XPathWildcardAnywhereElement":377,"./XPathWildcardElement":378}],370:[function(require,module,exports){
|
|
61365
61918
|
"use strict";
|
|
61366
61919
|
/*!
|
|
61367
61920
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61396,7 +61949,7 @@ __decorate([
|
|
|
61396
61949
|
], XPathElement.prototype, "toString", null);
|
|
61397
61950
|
exports.XPathElement = XPathElement;
|
|
61398
61951
|
|
|
61399
|
-
},{"../../Decorators":
|
|
61952
|
+
},{"../../Decorators":236}],371:[function(require,module,exports){
|
|
61400
61953
|
"use strict";
|
|
61401
61954
|
// Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
61402
61955
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -61871,7 +62424,7 @@ XPathLexer._serializedATN = Utils.join([
|
|
|
61871
62424
|
XPathLexer._serializedATNSegment1,
|
|
61872
62425
|
], "");
|
|
61873
62426
|
|
|
61874
|
-
},{"../../Lexer":
|
|
62427
|
+
},{"../../Lexer":244,"../../VocabularyImpl":267,"../../atn/ATNDeserializer":273,"../../atn/LexerATNSimulator":294,"../../misc/Utils":355}],372:[function(require,module,exports){
|
|
61875
62428
|
"use strict";
|
|
61876
62429
|
/*!
|
|
61877
62430
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61896,7 +62449,7 @@ __decorate([
|
|
|
61896
62449
|
], XPathLexerErrorListener.prototype, "syntaxError", null);
|
|
61897
62450
|
exports.XPathLexerErrorListener = XPathLexerErrorListener;
|
|
61898
62451
|
|
|
61899
|
-
},{"../../Decorators":
|
|
62452
|
+
},{"../../Decorators":236}],373:[function(require,module,exports){
|
|
61900
62453
|
"use strict";
|
|
61901
62454
|
/*!
|
|
61902
62455
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61930,7 +62483,7 @@ __decorate([
|
|
|
61930
62483
|
], XPathRuleAnywhereElement.prototype, "evaluate", null);
|
|
61931
62484
|
exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
|
|
61932
62485
|
|
|
61933
|
-
},{"../../Decorators":
|
|
62486
|
+
},{"../../Decorators":236,"../Trees":360,"./XPathElement":370}],374:[function(require,module,exports){
|
|
61934
62487
|
"use strict";
|
|
61935
62488
|
/*!
|
|
61936
62489
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61973,7 +62526,7 @@ __decorate([
|
|
|
61973
62526
|
], XPathRuleElement.prototype, "evaluate", null);
|
|
61974
62527
|
exports.XPathRuleElement = XPathRuleElement;
|
|
61975
62528
|
|
|
61976
|
-
},{"../../Decorators":
|
|
62529
|
+
},{"../../Decorators":236,"../../ParserRuleContext":252,"../Trees":360,"./XPathElement":370}],375:[function(require,module,exports){
|
|
61977
62530
|
"use strict";
|
|
61978
62531
|
/*!
|
|
61979
62532
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62005,7 +62558,7 @@ __decorate([
|
|
|
62005
62558
|
], XPathTokenAnywhereElement.prototype, "evaluate", null);
|
|
62006
62559
|
exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
|
|
62007
62560
|
|
|
62008
|
-
},{"../../Decorators":
|
|
62561
|
+
},{"../../Decorators":236,"../Trees":360,"./XPathElement":370}],376:[function(require,module,exports){
|
|
62009
62562
|
"use strict";
|
|
62010
62563
|
/*!
|
|
62011
62564
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62048,7 +62601,7 @@ __decorate([
|
|
|
62048
62601
|
], XPathTokenElement.prototype, "evaluate", null);
|
|
62049
62602
|
exports.XPathTokenElement = XPathTokenElement;
|
|
62050
62603
|
|
|
62051
|
-
},{"../../Decorators":
|
|
62604
|
+
},{"../../Decorators":236,"../TerminalNode":359,"../Trees":360,"./XPathElement":370}],377:[function(require,module,exports){
|
|
62052
62605
|
"use strict";
|
|
62053
62606
|
/*!
|
|
62054
62607
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62084,7 +62637,7 @@ __decorate([
|
|
|
62084
62637
|
], XPathWildcardAnywhereElement.prototype, "evaluate", null);
|
|
62085
62638
|
exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
|
|
62086
62639
|
|
|
62087
|
-
},{"../../Decorators":
|
|
62640
|
+
},{"../../Decorators":236,"../Trees":360,"./XPath":369,"./XPathElement":370}],378:[function(require,module,exports){
|
|
62088
62641
|
"use strict";
|
|
62089
62642
|
/*!
|
|
62090
62643
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62124,7 +62677,7 @@ __decorate([
|
|
|
62124
62677
|
], XPathWildcardElement.prototype, "evaluate", null);
|
|
62125
62678
|
exports.XPathWildcardElement = XPathWildcardElement;
|
|
62126
62679
|
|
|
62127
|
-
},{"../../Decorators":
|
|
62680
|
+
},{"../../Decorators":236,"../Trees":360,"./XPath":369,"./XPathElement":370}],379:[function(require,module,exports){
|
|
62128
62681
|
(function (global){(function (){
|
|
62129
62682
|
'use strict';
|
|
62130
62683
|
|
|
@@ -62634,7 +63187,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
62634
63187
|
};
|
|
62635
63188
|
|
|
62636
63189
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
62637
|
-
},{"object.assign/polyfill":
|
|
63190
|
+
},{"object.assign/polyfill":436,"util/":382}],380:[function(require,module,exports){
|
|
62638
63191
|
if (typeof Object.create === 'function') {
|
|
62639
63192
|
// implementation from standard node.js 'util' module
|
|
62640
63193
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -62659,14 +63212,14 @@ if (typeof Object.create === 'function') {
|
|
|
62659
63212
|
}
|
|
62660
63213
|
}
|
|
62661
63214
|
|
|
62662
|
-
},{}],
|
|
63215
|
+
},{}],381:[function(require,module,exports){
|
|
62663
63216
|
module.exports = function isBuffer(arg) {
|
|
62664
63217
|
return arg && typeof arg === 'object'
|
|
62665
63218
|
&& typeof arg.copy === 'function'
|
|
62666
63219
|
&& typeof arg.fill === 'function'
|
|
62667
63220
|
&& typeof arg.readUInt8 === 'function';
|
|
62668
63221
|
}
|
|
62669
|
-
},{}],
|
|
63222
|
+
},{}],382:[function(require,module,exports){
|
|
62670
63223
|
(function (process,global){(function (){
|
|
62671
63224
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
62672
63225
|
//
|
|
@@ -63256,7 +63809,7 @@ function hasOwnProperty(obj, prop) {
|
|
|
63256
63809
|
}
|
|
63257
63810
|
|
|
63258
63811
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
63259
|
-
},{"./support/isBuffer":
|
|
63812
|
+
},{"./support/isBuffer":381,"_process":438,"inherits":380}],383:[function(require,module,exports){
|
|
63260
63813
|
(function (global){(function (){
|
|
63261
63814
|
'use strict';
|
|
63262
63815
|
|
|
@@ -63277,7 +63830,7 @@ module.exports = function availableTypedArrays() {
|
|
|
63277
63830
|
};
|
|
63278
63831
|
|
|
63279
63832
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
63280
|
-
},{"possible-typed-array-names":
|
|
63833
|
+
},{"possible-typed-array-names":437}],384:[function(require,module,exports){
|
|
63281
63834
|
(function (process,global){(function (){
|
|
63282
63835
|
module.exports = process.hrtime || hrtime
|
|
63283
63836
|
|
|
@@ -63308,7 +63861,7 @@ function hrtime(previousTimestamp){
|
|
|
63308
63861
|
return [seconds,nanoseconds]
|
|
63309
63862
|
}
|
|
63310
63863
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
63311
|
-
},{"_process":
|
|
63864
|
+
},{"_process":438}],385:[function(require,module,exports){
|
|
63312
63865
|
'use strict';
|
|
63313
63866
|
|
|
63314
63867
|
var bind = require('function-bind');
|
|
@@ -63320,7 +63873,7 @@ var $reflectApply = require('./reflectApply');
|
|
|
63320
63873
|
/** @type {import('./actualApply')} */
|
|
63321
63874
|
module.exports = $reflectApply || bind.call($call, $apply);
|
|
63322
63875
|
|
|
63323
|
-
},{"./functionApply":
|
|
63876
|
+
},{"./functionApply":387,"./functionCall":388,"./reflectApply":390,"function-bind":406}],386:[function(require,module,exports){
|
|
63324
63877
|
'use strict';
|
|
63325
63878
|
|
|
63326
63879
|
var bind = require('function-bind');
|
|
@@ -63332,19 +63885,19 @@ module.exports = function applyBind() {
|
|
|
63332
63885
|
return actualApply(bind, $apply, arguments);
|
|
63333
63886
|
};
|
|
63334
63887
|
|
|
63335
|
-
},{"./actualApply":
|
|
63888
|
+
},{"./actualApply":385,"./functionApply":387,"function-bind":406}],387:[function(require,module,exports){
|
|
63336
63889
|
'use strict';
|
|
63337
63890
|
|
|
63338
63891
|
/** @type {import('./functionApply')} */
|
|
63339
63892
|
module.exports = Function.prototype.apply;
|
|
63340
63893
|
|
|
63341
|
-
},{}],
|
|
63894
|
+
},{}],388:[function(require,module,exports){
|
|
63342
63895
|
'use strict';
|
|
63343
63896
|
|
|
63344
63897
|
/** @type {import('./functionCall')} */
|
|
63345
63898
|
module.exports = Function.prototype.call;
|
|
63346
63899
|
|
|
63347
|
-
},{}],
|
|
63900
|
+
},{}],389:[function(require,module,exports){
|
|
63348
63901
|
'use strict';
|
|
63349
63902
|
|
|
63350
63903
|
var bind = require('function-bind');
|
|
@@ -63361,13 +63914,13 @@ module.exports = function callBindBasic(args) {
|
|
|
63361
63914
|
return $actualApply(bind, $call, args);
|
|
63362
63915
|
};
|
|
63363
63916
|
|
|
63364
|
-
},{"./actualApply":
|
|
63917
|
+
},{"./actualApply":385,"./functionCall":388,"es-errors/type":401,"function-bind":406}],390:[function(require,module,exports){
|
|
63365
63918
|
'use strict';
|
|
63366
63919
|
|
|
63367
63920
|
/** @type {import('./reflectApply')} */
|
|
63368
63921
|
module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
|
|
63369
63922
|
|
|
63370
|
-
},{}],
|
|
63923
|
+
},{}],391:[function(require,module,exports){
|
|
63371
63924
|
'use strict';
|
|
63372
63925
|
|
|
63373
63926
|
var setFunctionLength = require('set-function-length');
|
|
@@ -63393,7 +63946,7 @@ if ($defineProperty) {
|
|
|
63393
63946
|
module.exports.apply = applyBind;
|
|
63394
63947
|
}
|
|
63395
63948
|
|
|
63396
|
-
},{"call-bind-apply-helpers":
|
|
63949
|
+
},{"call-bind-apply-helpers":389,"call-bind-apply-helpers/applyBind":386,"es-define-property":395,"set-function-length":440}],392:[function(require,module,exports){
|
|
63397
63950
|
'use strict';
|
|
63398
63951
|
|
|
63399
63952
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -63414,7 +63967,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
63414
63967
|
return intrinsic;
|
|
63415
63968
|
};
|
|
63416
63969
|
|
|
63417
|
-
},{"call-bind-apply-helpers":
|
|
63970
|
+
},{"call-bind-apply-helpers":389,"get-intrinsic":407}],393:[function(require,module,exports){
|
|
63418
63971
|
'use strict';
|
|
63419
63972
|
|
|
63420
63973
|
var $defineProperty = require('es-define-property');
|
|
@@ -63472,7 +64025,7 @@ module.exports = function defineDataProperty(
|
|
|
63472
64025
|
}
|
|
63473
64026
|
};
|
|
63474
64027
|
|
|
63475
|
-
},{"es-define-property":
|
|
64028
|
+
},{"es-define-property":395,"es-errors/syntax":400,"es-errors/type":401,"gopd":412}],394:[function(require,module,exports){
|
|
63476
64029
|
'use strict';
|
|
63477
64030
|
|
|
63478
64031
|
var callBind = require('call-bind-apply-helpers');
|
|
@@ -63504,7 +64057,7 @@ module.exports = desc && typeof desc.get === 'function'
|
|
|
63504
64057
|
}
|
|
63505
64058
|
: false;
|
|
63506
64059
|
|
|
63507
|
-
},{"call-bind-apply-helpers":
|
|
64060
|
+
},{"call-bind-apply-helpers":389,"gopd":412}],395:[function(require,module,exports){
|
|
63508
64061
|
'use strict';
|
|
63509
64062
|
|
|
63510
64063
|
/** @type {import('.')} */
|
|
@@ -63520,55 +64073,55 @@ if ($defineProperty) {
|
|
|
63520
64073
|
|
|
63521
64074
|
module.exports = $defineProperty;
|
|
63522
64075
|
|
|
63523
|
-
},{}],
|
|
64076
|
+
},{}],396:[function(require,module,exports){
|
|
63524
64077
|
'use strict';
|
|
63525
64078
|
|
|
63526
64079
|
/** @type {import('./eval')} */
|
|
63527
64080
|
module.exports = EvalError;
|
|
63528
64081
|
|
|
63529
|
-
},{}],
|
|
64082
|
+
},{}],397:[function(require,module,exports){
|
|
63530
64083
|
'use strict';
|
|
63531
64084
|
|
|
63532
64085
|
/** @type {import('.')} */
|
|
63533
64086
|
module.exports = Error;
|
|
63534
64087
|
|
|
63535
|
-
},{}],
|
|
64088
|
+
},{}],398:[function(require,module,exports){
|
|
63536
64089
|
'use strict';
|
|
63537
64090
|
|
|
63538
64091
|
/** @type {import('./range')} */
|
|
63539
64092
|
module.exports = RangeError;
|
|
63540
64093
|
|
|
63541
|
-
},{}],
|
|
64094
|
+
},{}],399:[function(require,module,exports){
|
|
63542
64095
|
'use strict';
|
|
63543
64096
|
|
|
63544
64097
|
/** @type {import('./ref')} */
|
|
63545
64098
|
module.exports = ReferenceError;
|
|
63546
64099
|
|
|
63547
|
-
},{}],
|
|
64100
|
+
},{}],400:[function(require,module,exports){
|
|
63548
64101
|
'use strict';
|
|
63549
64102
|
|
|
63550
64103
|
/** @type {import('./syntax')} */
|
|
63551
64104
|
module.exports = SyntaxError;
|
|
63552
64105
|
|
|
63553
|
-
},{}],
|
|
64106
|
+
},{}],401:[function(require,module,exports){
|
|
63554
64107
|
'use strict';
|
|
63555
64108
|
|
|
63556
64109
|
/** @type {import('./type')} */
|
|
63557
64110
|
module.exports = TypeError;
|
|
63558
64111
|
|
|
63559
|
-
},{}],
|
|
64112
|
+
},{}],402:[function(require,module,exports){
|
|
63560
64113
|
'use strict';
|
|
63561
64114
|
|
|
63562
64115
|
/** @type {import('./uri')} */
|
|
63563
64116
|
module.exports = URIError;
|
|
63564
64117
|
|
|
63565
|
-
},{}],
|
|
64118
|
+
},{}],403:[function(require,module,exports){
|
|
63566
64119
|
'use strict';
|
|
63567
64120
|
|
|
63568
64121
|
/** @type {import('.')} */
|
|
63569
64122
|
module.exports = Object;
|
|
63570
64123
|
|
|
63571
|
-
},{}],
|
|
64124
|
+
},{}],404:[function(require,module,exports){
|
|
63572
64125
|
'use strict';
|
|
63573
64126
|
|
|
63574
64127
|
var isCallable = require('is-callable');
|
|
@@ -63639,7 +64192,7 @@ module.exports = function forEach(list, iterator, thisArg) {
|
|
|
63639
64192
|
}
|
|
63640
64193
|
};
|
|
63641
64194
|
|
|
63642
|
-
},{"is-callable":
|
|
64195
|
+
},{"is-callable":420}],405:[function(require,module,exports){
|
|
63643
64196
|
'use strict';
|
|
63644
64197
|
|
|
63645
64198
|
/* eslint no-invalid-this: 1 */
|
|
@@ -63725,14 +64278,14 @@ module.exports = function bind(that) {
|
|
|
63725
64278
|
return bound;
|
|
63726
64279
|
};
|
|
63727
64280
|
|
|
63728
|
-
},{}],
|
|
64281
|
+
},{}],406:[function(require,module,exports){
|
|
63729
64282
|
'use strict';
|
|
63730
64283
|
|
|
63731
64284
|
var implementation = require('./implementation');
|
|
63732
64285
|
|
|
63733
64286
|
module.exports = Function.prototype.bind || implementation;
|
|
63734
64287
|
|
|
63735
|
-
},{"./implementation":
|
|
64288
|
+
},{"./implementation":405}],407:[function(require,module,exports){
|
|
63736
64289
|
'use strict';
|
|
63737
64290
|
|
|
63738
64291
|
var undefined;
|
|
@@ -64112,7 +64665,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
64112
64665
|
return value;
|
|
64113
64666
|
};
|
|
64114
64667
|
|
|
64115
|
-
},{"call-bind-apply-helpers/functionApply":
|
|
64668
|
+
},{"call-bind-apply-helpers/functionApply":387,"call-bind-apply-helpers/functionCall":388,"es-define-property":395,"es-errors":397,"es-errors/eval":396,"es-errors/range":398,"es-errors/ref":399,"es-errors/syntax":400,"es-errors/type":401,"es-errors/uri":402,"es-object-atoms":403,"function-bind":406,"get-proto":410,"get-proto/Object.getPrototypeOf":408,"get-proto/Reflect.getPrototypeOf":409,"gopd":412,"has-symbols":414,"hasown":417,"math-intrinsics/abs":424,"math-intrinsics/floor":425,"math-intrinsics/max":427,"math-intrinsics/min":428,"math-intrinsics/pow":429,"math-intrinsics/round":430,"math-intrinsics/sign":431}],408:[function(require,module,exports){
|
|
64116
64669
|
'use strict';
|
|
64117
64670
|
|
|
64118
64671
|
var $Object = require('es-object-atoms');
|
|
@@ -64120,13 +64673,13 @@ var $Object = require('es-object-atoms');
|
|
|
64120
64673
|
/** @type {import('./Object.getPrototypeOf')} */
|
|
64121
64674
|
module.exports = $Object.getPrototypeOf || null;
|
|
64122
64675
|
|
|
64123
|
-
},{"es-object-atoms":
|
|
64676
|
+
},{"es-object-atoms":403}],409:[function(require,module,exports){
|
|
64124
64677
|
'use strict';
|
|
64125
64678
|
|
|
64126
64679
|
/** @type {import('./Reflect.getPrototypeOf')} */
|
|
64127
64680
|
module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
|
|
64128
64681
|
|
|
64129
|
-
},{}],
|
|
64682
|
+
},{}],410:[function(require,module,exports){
|
|
64130
64683
|
'use strict';
|
|
64131
64684
|
|
|
64132
64685
|
var reflectGetProto = require('./Reflect.getPrototypeOf');
|
|
@@ -64155,13 +64708,13 @@ module.exports = reflectGetProto
|
|
|
64155
64708
|
}
|
|
64156
64709
|
: null;
|
|
64157
64710
|
|
|
64158
|
-
},{"./Object.getPrototypeOf":
|
|
64711
|
+
},{"./Object.getPrototypeOf":408,"./Reflect.getPrototypeOf":409,"dunder-proto/get":394}],411:[function(require,module,exports){
|
|
64159
64712
|
'use strict';
|
|
64160
64713
|
|
|
64161
64714
|
/** @type {import('./gOPD')} */
|
|
64162
64715
|
module.exports = Object.getOwnPropertyDescriptor;
|
|
64163
64716
|
|
|
64164
|
-
},{}],
|
|
64717
|
+
},{}],412:[function(require,module,exports){
|
|
64165
64718
|
'use strict';
|
|
64166
64719
|
|
|
64167
64720
|
/** @type {import('.')} */
|
|
@@ -64178,7 +64731,7 @@ if ($gOPD) {
|
|
|
64178
64731
|
|
|
64179
64732
|
module.exports = $gOPD;
|
|
64180
64733
|
|
|
64181
|
-
},{"./gOPD":
|
|
64734
|
+
},{"./gOPD":411}],413:[function(require,module,exports){
|
|
64182
64735
|
'use strict';
|
|
64183
64736
|
|
|
64184
64737
|
var $defineProperty = require('es-define-property');
|
|
@@ -64202,7 +64755,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
|
|
|
64202
64755
|
|
|
64203
64756
|
module.exports = hasPropertyDescriptors;
|
|
64204
64757
|
|
|
64205
|
-
},{"es-define-property":
|
|
64758
|
+
},{"es-define-property":395}],414:[function(require,module,exports){
|
|
64206
64759
|
'use strict';
|
|
64207
64760
|
|
|
64208
64761
|
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
|
@@ -64218,7 +64771,7 @@ module.exports = function hasNativeSymbols() {
|
|
|
64218
64771
|
return hasSymbolSham();
|
|
64219
64772
|
};
|
|
64220
64773
|
|
|
64221
|
-
},{"./shams":
|
|
64774
|
+
},{"./shams":415}],415:[function(require,module,exports){
|
|
64222
64775
|
'use strict';
|
|
64223
64776
|
|
|
64224
64777
|
/** @type {import('./shams')} */
|
|
@@ -64265,7 +64818,7 @@ module.exports = function hasSymbols() {
|
|
|
64265
64818
|
return true;
|
|
64266
64819
|
};
|
|
64267
64820
|
|
|
64268
|
-
},{}],
|
|
64821
|
+
},{}],416:[function(require,module,exports){
|
|
64269
64822
|
'use strict';
|
|
64270
64823
|
|
|
64271
64824
|
var hasSymbols = require('has-symbols/shams');
|
|
@@ -64275,7 +64828,7 @@ module.exports = function hasToStringTagShams() {
|
|
|
64275
64828
|
return hasSymbols() && !!Symbol.toStringTag;
|
|
64276
64829
|
};
|
|
64277
64830
|
|
|
64278
|
-
},{"has-symbols/shams":
|
|
64831
|
+
},{"has-symbols/shams":415}],417:[function(require,module,exports){
|
|
64279
64832
|
'use strict';
|
|
64280
64833
|
|
|
64281
64834
|
var call = Function.prototype.call;
|
|
@@ -64285,7 +64838,7 @@ var bind = require('function-bind');
|
|
|
64285
64838
|
/** @type {import('.')} */
|
|
64286
64839
|
module.exports = bind.call(call, $hasOwn);
|
|
64287
64840
|
|
|
64288
|
-
},{"function-bind":
|
|
64841
|
+
},{"function-bind":406}],418:[function(require,module,exports){
|
|
64289
64842
|
if (typeof Object.create === 'function') {
|
|
64290
64843
|
// implementation from standard node.js 'util' module
|
|
64291
64844
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -64314,7 +64867,7 @@ if (typeof Object.create === 'function') {
|
|
|
64314
64867
|
}
|
|
64315
64868
|
}
|
|
64316
64869
|
|
|
64317
|
-
},{}],
|
|
64870
|
+
},{}],419:[function(require,module,exports){
|
|
64318
64871
|
'use strict';
|
|
64319
64872
|
|
|
64320
64873
|
var hasToStringTag = require('has-tostringtag/shams')();
|
|
@@ -64360,7 +64913,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
|
64360
64913
|
/** @type {import('.')} */
|
|
64361
64914
|
module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
64362
64915
|
|
|
64363
|
-
},{"call-bound":
|
|
64916
|
+
},{"call-bound":392,"has-tostringtag/shams":416}],420:[function(require,module,exports){
|
|
64364
64917
|
'use strict';
|
|
64365
64918
|
|
|
64366
64919
|
var fnToStr = Function.prototype.toString;
|
|
@@ -64463,7 +65016,7 @@ module.exports = reflectApply
|
|
|
64463
65016
|
return tryFunctionObject(value);
|
|
64464
65017
|
};
|
|
64465
65018
|
|
|
64466
|
-
},{}],
|
|
65019
|
+
},{}],421:[function(require,module,exports){
|
|
64467
65020
|
'use strict';
|
|
64468
65021
|
|
|
64469
65022
|
var callBound = require('call-bound');
|
|
@@ -64512,7 +65065,7 @@ module.exports = function isGeneratorFunction(fn) {
|
|
|
64512
65065
|
return getProto(fn) === GeneratorFunction;
|
|
64513
65066
|
};
|
|
64514
65067
|
|
|
64515
|
-
},{"call-bound":
|
|
65068
|
+
},{"call-bound":392,"get-proto":410,"has-tostringtag/shams":416,"safe-regex-test":439}],422:[function(require,module,exports){
|
|
64516
65069
|
'use strict';
|
|
64517
65070
|
|
|
64518
65071
|
var callBound = require('call-bound');
|
|
@@ -64583,7 +65136,7 @@ if (hasToStringTag) {
|
|
|
64583
65136
|
|
|
64584
65137
|
module.exports = fn;
|
|
64585
65138
|
|
|
64586
|
-
},{"call-bound":
|
|
65139
|
+
},{"call-bound":392,"gopd":412,"has-tostringtag/shams":416,"hasown":417}],423:[function(require,module,exports){
|
|
64587
65140
|
'use strict';
|
|
64588
65141
|
|
|
64589
65142
|
var whichTypedArray = require('which-typed-array');
|
|
@@ -64593,19 +65146,19 @@ module.exports = function isTypedArray(value) {
|
|
|
64593
65146
|
return !!whichTypedArray(value);
|
|
64594
65147
|
};
|
|
64595
65148
|
|
|
64596
|
-
},{"which-typed-array":
|
|
65149
|
+
},{"which-typed-array":444}],424:[function(require,module,exports){
|
|
64597
65150
|
'use strict';
|
|
64598
65151
|
|
|
64599
65152
|
/** @type {import('./abs')} */
|
|
64600
65153
|
module.exports = Math.abs;
|
|
64601
65154
|
|
|
64602
|
-
},{}],
|
|
65155
|
+
},{}],425:[function(require,module,exports){
|
|
64603
65156
|
'use strict';
|
|
64604
65157
|
|
|
64605
65158
|
/** @type {import('./floor')} */
|
|
64606
65159
|
module.exports = Math.floor;
|
|
64607
65160
|
|
|
64608
|
-
},{}],
|
|
65161
|
+
},{}],426:[function(require,module,exports){
|
|
64609
65162
|
'use strict';
|
|
64610
65163
|
|
|
64611
65164
|
/** @type {import('./isNaN')} */
|
|
@@ -64613,31 +65166,31 @@ module.exports = Number.isNaN || function isNaN(a) {
|
|
|
64613
65166
|
return a !== a;
|
|
64614
65167
|
};
|
|
64615
65168
|
|
|
64616
|
-
},{}],
|
|
65169
|
+
},{}],427:[function(require,module,exports){
|
|
64617
65170
|
'use strict';
|
|
64618
65171
|
|
|
64619
65172
|
/** @type {import('./max')} */
|
|
64620
65173
|
module.exports = Math.max;
|
|
64621
65174
|
|
|
64622
|
-
},{}],
|
|
65175
|
+
},{}],428:[function(require,module,exports){
|
|
64623
65176
|
'use strict';
|
|
64624
65177
|
|
|
64625
65178
|
/** @type {import('./min')} */
|
|
64626
65179
|
module.exports = Math.min;
|
|
64627
65180
|
|
|
64628
|
-
},{}],
|
|
65181
|
+
},{}],429:[function(require,module,exports){
|
|
64629
65182
|
'use strict';
|
|
64630
65183
|
|
|
64631
65184
|
/** @type {import('./pow')} */
|
|
64632
65185
|
module.exports = Math.pow;
|
|
64633
65186
|
|
|
64634
|
-
},{}],
|
|
65187
|
+
},{}],430:[function(require,module,exports){
|
|
64635
65188
|
'use strict';
|
|
64636
65189
|
|
|
64637
65190
|
/** @type {import('./round')} */
|
|
64638
65191
|
module.exports = Math.round;
|
|
64639
65192
|
|
|
64640
|
-
},{}],
|
|
65193
|
+
},{}],431:[function(require,module,exports){
|
|
64641
65194
|
'use strict';
|
|
64642
65195
|
|
|
64643
65196
|
var $isNaN = require('./isNaN');
|
|
@@ -64650,7 +65203,7 @@ module.exports = function sign(number) {
|
|
|
64650
65203
|
return number < 0 ? -1 : +1;
|
|
64651
65204
|
};
|
|
64652
65205
|
|
|
64653
|
-
},{"./isNaN":
|
|
65206
|
+
},{"./isNaN":426}],432:[function(require,module,exports){
|
|
64654
65207
|
'use strict';
|
|
64655
65208
|
|
|
64656
65209
|
var keysShim;
|
|
@@ -64774,7 +65327,7 @@ if (!Object.keys) {
|
|
|
64774
65327
|
}
|
|
64775
65328
|
module.exports = keysShim;
|
|
64776
65329
|
|
|
64777
|
-
},{"./isArguments":
|
|
65330
|
+
},{"./isArguments":434}],433:[function(require,module,exports){
|
|
64778
65331
|
'use strict';
|
|
64779
65332
|
|
|
64780
65333
|
var slice = Array.prototype.slice;
|
|
@@ -64808,7 +65361,7 @@ keysShim.shim = function shimObjectKeys() {
|
|
|
64808
65361
|
|
|
64809
65362
|
module.exports = keysShim;
|
|
64810
65363
|
|
|
64811
|
-
},{"./implementation":
|
|
65364
|
+
},{"./implementation":432,"./isArguments":434}],434:[function(require,module,exports){
|
|
64812
65365
|
'use strict';
|
|
64813
65366
|
|
|
64814
65367
|
var toStr = Object.prototype.toString;
|
|
@@ -64827,7 +65380,7 @@ module.exports = function isArguments(value) {
|
|
|
64827
65380
|
return isArgs;
|
|
64828
65381
|
};
|
|
64829
65382
|
|
|
64830
|
-
},{}],
|
|
65383
|
+
},{}],435:[function(require,module,exports){
|
|
64831
65384
|
'use strict';
|
|
64832
65385
|
|
|
64833
65386
|
// modified from https://github.com/es-shims/es6-shim
|
|
@@ -64875,7 +65428,7 @@ module.exports = function assign(target, source1) {
|
|
|
64875
65428
|
return to; // step 4
|
|
64876
65429
|
};
|
|
64877
65430
|
|
|
64878
|
-
},{"call-bound":
|
|
65431
|
+
},{"call-bound":392,"es-object-atoms":403,"has-symbols/shams":415,"object-keys":433}],436:[function(require,module,exports){
|
|
64879
65432
|
'use strict';
|
|
64880
65433
|
|
|
64881
65434
|
var implementation = require('./implementation');
|
|
@@ -64932,7 +65485,7 @@ module.exports = function getPolyfill() {
|
|
|
64932
65485
|
return Object.assign;
|
|
64933
65486
|
};
|
|
64934
65487
|
|
|
64935
|
-
},{"./implementation":
|
|
65488
|
+
},{"./implementation":435}],437:[function(require,module,exports){
|
|
64936
65489
|
'use strict';
|
|
64937
65490
|
|
|
64938
65491
|
/** @type {import('.')} */
|
|
@@ -64951,7 +65504,7 @@ module.exports = [
|
|
|
64951
65504
|
'BigUint64Array'
|
|
64952
65505
|
];
|
|
64953
65506
|
|
|
64954
|
-
},{}],
|
|
65507
|
+
},{}],438:[function(require,module,exports){
|
|
64955
65508
|
// shim for using process in browser
|
|
64956
65509
|
var process = module.exports = {};
|
|
64957
65510
|
|
|
@@ -65137,7 +65690,7 @@ process.chdir = function (dir) {
|
|
|
65137
65690
|
};
|
|
65138
65691
|
process.umask = function() { return 0; };
|
|
65139
65692
|
|
|
65140
|
-
},{}],
|
|
65693
|
+
},{}],439:[function(require,module,exports){
|
|
65141
65694
|
'use strict';
|
|
65142
65695
|
|
|
65143
65696
|
var callBound = require('call-bound');
|
|
@@ -65156,7 +65709,7 @@ module.exports = function regexTester(regex) {
|
|
|
65156
65709
|
};
|
|
65157
65710
|
};
|
|
65158
65711
|
|
|
65159
|
-
},{"call-bound":
|
|
65712
|
+
},{"call-bound":392,"es-errors/type":401,"is-regex":422}],440:[function(require,module,exports){
|
|
65160
65713
|
'use strict';
|
|
65161
65714
|
|
|
65162
65715
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -65200,9 +65753,9 @@ module.exports = function setFunctionLength(fn, length) {
|
|
|
65200
65753
|
return fn;
|
|
65201
65754
|
};
|
|
65202
65755
|
|
|
65203
|
-
},{"define-data-property":
|
|
65204
|
-
arguments[4][
|
|
65205
|
-
},{"dup":
|
|
65756
|
+
},{"define-data-property":393,"es-errors/type":401,"get-intrinsic":407,"gopd":412,"has-property-descriptors":413}],441:[function(require,module,exports){
|
|
65757
|
+
arguments[4][381][0].apply(exports,arguments)
|
|
65758
|
+
},{"dup":381}],442:[function(require,module,exports){
|
|
65206
65759
|
// Currently in sync with Node.js lib/internal/util/types.js
|
|
65207
65760
|
// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
|
|
65208
65761
|
|
|
@@ -65538,7 +66091,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
|
|
|
65538
66091
|
});
|
|
65539
66092
|
});
|
|
65540
66093
|
|
|
65541
|
-
},{"is-arguments":
|
|
66094
|
+
},{"is-arguments":419,"is-generator-function":421,"is-typed-array":423,"which-typed-array":444}],443:[function(require,module,exports){
|
|
65542
66095
|
(function (process){(function (){
|
|
65543
66096
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
65544
66097
|
//
|
|
@@ -66257,7 +66810,7 @@ function callbackify(original) {
|
|
|
66257
66810
|
exports.callbackify = callbackify;
|
|
66258
66811
|
|
|
66259
66812
|
}).call(this)}).call(this,require('_process'))
|
|
66260
|
-
},{"./support/isBuffer":
|
|
66813
|
+
},{"./support/isBuffer":441,"./support/types":442,"_process":438,"inherits":418}],444:[function(require,module,exports){
|
|
66261
66814
|
(function (global){(function (){
|
|
66262
66815
|
'use strict';
|
|
66263
66816
|
|
|
@@ -66378,5 +66931,5 @@ module.exports = function whichTypedArray(value) {
|
|
|
66378
66931
|
};
|
|
66379
66932
|
|
|
66380
66933
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
66381
|
-
},{"available-typed-arrays":
|
|
66934
|
+
},{"available-typed-arrays":383,"call-bind":391,"call-bound":392,"for-each":404,"get-proto":410,"gopd":412,"has-tostringtag/shams":416}]},{},[120])(120)
|
|
66382
66935
|
});
|