@designliquido/delegua 1.21.0 → 1.22.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/analisador-semantico/analisador-semantico.d.ts.map +1 -1
- package/analisador-semantico/analisador-semantico.js +31 -3
- package/analisador-semantico/analisador-semantico.js.map +1 -1
- package/analisador-semantico/tabela-diagnosticos-semanticos.d.ts.map +1 -1
- package/analisador-semantico/tabela-diagnosticos-semanticos.js +5 -0
- package/analisador-semantico/tabela-diagnosticos-semanticos.js.map +1 -1
- package/avaliador-sintatico/avaliador-sintatico.d.ts.map +1 -1
- package/avaliador-sintatico/avaliador-sintatico.js +19 -2
- package/avaliador-sintatico/avaliador-sintatico.js.map +1 -1
- package/bibliotecas/dialetos/pitugues/primitivas-dicionario.d.ts.map +1 -1
- package/bibliotecas/dialetos/pitugues/primitivas-dicionario.js +111 -3
- package/bibliotecas/dialetos/pitugues/primitivas-dicionario.js.map +1 -1
- package/bibliotecas/dialetos/pitugues/primitivas-numero.d.ts.map +1 -1
- package/bibliotecas/dialetos/pitugues/primitivas-numero.js +58 -3
- package/bibliotecas/dialetos/pitugues/primitivas-numero.js.map +1 -1
- package/bibliotecas/dialetos/pitugues/primitivas-texto.d.ts.map +1 -1
- package/bibliotecas/dialetos/pitugues/primitivas-texto.js +59 -57
- package/bibliotecas/dialetos/pitugues/primitivas-texto.js.map +1 -1
- package/bibliotecas/dialetos/pitugues/primitivas-tupla.d.ts.map +1 -1
- package/bibliotecas/dialetos/pitugues/primitivas-tupla.js +27 -13
- package/bibliotecas/dialetos/pitugues/primitivas-tupla.js.map +1 -1
- package/bibliotecas/dialetos/pitugues/primitivas-vetor.d.ts.map +1 -1
- package/bibliotecas/dialetos/pitugues/primitivas-vetor.js +68 -160
- package/bibliotecas/dialetos/pitugues/primitivas-vetor.js.map +1 -1
- package/bibliotecas/testes/modulo-afirmar.d.ts +3 -0
- package/bibliotecas/testes/modulo-afirmar.d.ts.map +1 -0
- package/bibliotecas/testes/modulo-afirmar.js +62 -0
- package/bibliotecas/testes/modulo-afirmar.js.map +1 -0
- package/bibliotecas/testes/modulo-testes.d.ts +4 -0
- package/bibliotecas/testes/modulo-testes.d.ts.map +1 -0
- package/bibliotecas/testes/modulo-testes.js +66 -0
- package/bibliotecas/testes/modulo-testes.js.map +1 -0
- package/bibliotecas/testes/registro-testes.d.ts +12 -0
- package/bibliotecas/testes/registro-testes.d.ts.map +1 -0
- package/bibliotecas/testes/registro-testes.js +11 -0
- package/bibliotecas/testes/registro-testes.js.map +1 -0
- package/bin/package.json +1 -1
- package/excecoes/erro-de-assertiva.d.ts +8 -0
- package/excecoes/erro-de-assertiva.d.ts.map +1 -0
- package/excecoes/erro-de-assertiva.js +14 -0
- package/excecoes/erro-de-assertiva.js.map +1 -0
- package/excecoes/index.d.ts +1 -0
- package/excecoes/index.d.ts.map +1 -1
- package/excecoes/index.js +1 -0
- package/excecoes/index.js.map +1 -1
- package/interfaces/erros/correcao-implementacao-metodo-interface.d.ts +8 -0
- package/interfaces/erros/correcao-implementacao-metodo-interface.d.ts.map +1 -0
- package/interfaces/erros/correcao-implementacao-metodo-interface.js +3 -0
- package/interfaces/erros/correcao-implementacao-metodo-interface.js.map +1 -0
- package/interfaces/erros/diagnostico-analisador-semantico-interface.d.ts +2 -0
- package/interfaces/erros/diagnostico-analisador-semantico-interface.d.ts.map +1 -1
- package/interfaces/erros/diagnostico-analisador-semantico-interface.js.map +1 -1
- package/interfaces/erros/index.d.ts +1 -0
- package/interfaces/erros/index.d.ts.map +1 -1
- package/interfaces/erros/index.js +1 -0
- package/interfaces/erros/index.js.map +1 -1
- package/interpretador/interpretador-base.d.ts +17 -0
- package/interpretador/interpretador-base.d.ts.map +1 -1
- package/interpretador/interpretador-base.js +17 -1
- package/interpretador/interpretador-base.js.map +1 -1
- package/interpretador/interpretador.d.ts +5 -2
- package/interpretador/interpretador.d.ts.map +1 -1
- package/interpretador/interpretador.js +24 -0
- package/interpretador/interpretador.js.map +1 -1
- package/package.json +1 -1
- package/umd/delegua.js +775 -508
package/umd/delegua.js
CHANGED
|
@@ -494,7 +494,7 @@ class AnalisadorSemanticoBase {
|
|
|
494
494
|
}
|
|
495
495
|
exports.AnalisadorSemanticoBase = AnalisadorSemanticoBase;
|
|
496
496
|
|
|
497
|
-
},{"../construtos":
|
|
497
|
+
},{"../construtos":67,"../declaracoes":116,"../interfaces":176,"../quebras":247,"./gerenciador-escopos":5,"./tabela-diagnosticos-semanticos":8}],2:[function(require,module,exports){
|
|
498
498
|
"use strict";
|
|
499
499
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
500
500
|
exports.AnalisadorSemantico = void 0;
|
|
@@ -1642,10 +1642,38 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
1642
1642
|
const classeDef = this.classesRegistradas.get(tipoObjeto);
|
|
1643
1643
|
if (!classeDef)
|
|
1644
1644
|
return;
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1645
|
+
// Busca o membro na classe e em toda a hierarquia de superclasses
|
|
1646
|
+
const encontrarMembroNaHierarquia = (classe) => {
|
|
1647
|
+
const encontrado = classe.metodos.find((m) => m.simbolo.lexema === nomeMembro) ??
|
|
1648
|
+
classe.propriedades.find((p) => p.nome.lexema === nomeMembro);
|
|
1649
|
+
if (encontrado)
|
|
1650
|
+
return encontrado;
|
|
1651
|
+
for (const sc of classe.superClasses) {
|
|
1652
|
+
const pai = this.classesRegistradas.get(sc.simbolo.lexema);
|
|
1653
|
+
if (pai) {
|
|
1654
|
+
const membroPai = encontrarMembroNaHierarquia(pai);
|
|
1655
|
+
if (membroPai)
|
|
1656
|
+
return membroPai;
|
|
1657
|
+
}
|
|
1658
|
+
}
|
|
1659
|
+
return undefined;
|
|
1660
|
+
};
|
|
1661
|
+
const membro = encontrarMembroNaHierarquia(classeDef);
|
|
1662
|
+
if (!membro) {
|
|
1663
|
+
const mensagemErro = `Método não encontrado na classe '${tipoObjeto}': ${nomeMembro}.`;
|
|
1664
|
+
this.erro(expressao.simbolo, mensagemErro, 'SEMANTICO_METODO_NAO_ENCONTRADO');
|
|
1665
|
+
const diagnostico = this.diagnosticos.find((d) => d.linha === expressao.simbolo.linha && d.mensagem === mensagemErro);
|
|
1666
|
+
if (diagnostico) {
|
|
1667
|
+
diagnostico.correcaoMetodo = {
|
|
1668
|
+
tipo: 'implementar-metodo',
|
|
1669
|
+
nomeClasse: tipoObjeto,
|
|
1670
|
+
nomeMetodo: nomeMembro,
|
|
1671
|
+
linhaDeclaracaoClasse: classeDef.linha,
|
|
1672
|
+
hashArquivoClasse: classeDef.hashArquivo,
|
|
1673
|
+
};
|
|
1674
|
+
}
|
|
1648
1675
|
return;
|
|
1676
|
+
}
|
|
1649
1677
|
if (membro.acesso === 'privado') {
|
|
1650
1678
|
if (this.classeAtualEmAnalise?.simbolo.lexema !== tipoObjeto) {
|
|
1651
1679
|
this.erro(expressao.simbolo, `Membro '${nomeMembro}' é privado e não pode ser acessado fora da classe '${tipoObjeto}'.`);
|
|
@@ -1856,7 +1884,7 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
1856
1884
|
}
|
|
1857
1885
|
exports.AnalisadorSemantico = AnalisadorSemantico;
|
|
1858
1886
|
|
|
1859
|
-
},{"../avaliador-sintatico/comum":12,"../avaliador-sintatico/micro-avaliador-sintatico":25,"../construtos":
|
|
1887
|
+
},{"../avaliador-sintatico/comum":12,"../avaliador-sintatico/micro-avaliador-sintatico":25,"../construtos":67,"../declaracoes":116,"../interfaces/erros":173,"../lexador/micro-lexador":244,"./analisador-semantico-base":1,"./gerenciador-escopos":5,"./pilha-variaveis":7}],3:[function(require,module,exports){
|
|
1860
1888
|
"use strict";
|
|
1861
1889
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1862
1890
|
|
|
@@ -2022,6 +2050,11 @@ exports.TABELA_ERROS_SEMANTICOS = [
|
|
|
2022
2050
|
descricao: 'Quantidade ou tipo de parametros invalida para funcao.',
|
|
2023
2051
|
padroesMensagem: [/funcao.*espera.*parametr/i, /parametr.*diferente/i],
|
|
2024
2052
|
},
|
|
2053
|
+
{
|
|
2054
|
+
codigoDiagnostico: 'SEMANTICO_METODO_NAO_ENCONTRADO',
|
|
2055
|
+
descricao: 'Metodo nao encontrado na classe.',
|
|
2056
|
+
padroesMensagem: [/m[eé]todo n[aã]o encontrado na classe/i],
|
|
2057
|
+
},
|
|
2025
2058
|
{
|
|
2026
2059
|
codigoDiagnostico: 'SEMANTICO_ERRO_GENERICO',
|
|
2027
2060
|
descricao: 'Erro semantico nao categorizado.',
|
|
@@ -2063,7 +2096,7 @@ function inferirCodigoDiagnosticoSemantico(mensagem, severidade) {
|
|
|
2063
2096
|
return 'SEMANTICO_DIAGNOSTICO_GENERICO';
|
|
2064
2097
|
}
|
|
2065
2098
|
|
|
2066
|
-
},{"../interfaces":
|
|
2099
|
+
},{"../interfaces":176}],9:[function(require,module,exports){
|
|
2067
2100
|
"use strict";
|
|
2068
2101
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2069
2102
|
|
|
@@ -2343,7 +2376,7 @@ class AvaliadorSintaticoBase {
|
|
|
2343
2376
|
}
|
|
2344
2377
|
exports.AvaliadorSintaticoBase = AvaliadorSintaticoBase;
|
|
2345
2378
|
|
|
2346
|
-
},{"../construtos":
|
|
2379
|
+
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/comum":252,"./erro-avaliador-sintatico":21}],11:[function(require,module,exports){
|
|
2347
2380
|
"use strict";
|
|
2348
2381
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
2349
2382
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -2435,10 +2468,23 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
2435
2468
|
if (this.simbolos[this.atual].lexema in this.interfacesDeclaradas) {
|
|
2436
2469
|
return this.simbolos[this.atual].lexema;
|
|
2437
2470
|
}
|
|
2438
|
-
const
|
|
2471
|
+
const lexemaOriginal = this.simbolos[this.atual].lexema;
|
|
2472
|
+
const lexemaElementar = lexemaOriginal.toLowerCase();
|
|
2439
2473
|
const tipoElementarResolvido = tipos.find((tipo) => tipo === lexemaElementar);
|
|
2440
2474
|
if (!tipoElementarResolvido) {
|
|
2441
|
-
|
|
2475
|
+
// Mantém o avaliador sintático sincronizado mesmo com tipos não reconhecidos
|
|
2476
|
+
// (ex.: anotações vindas de módulos externos ainda não resolvidos).
|
|
2477
|
+
// Assim evitamos que o próximo token (como '[') seja interpretado
|
|
2478
|
+
// como início de outra produção e gere erros encadeados.
|
|
2479
|
+
if (this.verificarTipoProximoSimbolo(delegua_2.default.COLCHETE_ESQUERDO)) {
|
|
2480
|
+
this.avancarEDevolverAnterior();
|
|
2481
|
+
if (!this.verificarTipoProximoSimbolo(delegua_2.default.COLCHETE_DIREITO)) {
|
|
2482
|
+
throw this.erro(this.simbolos[this.atual], `Esperado símbolo de fechamento do vetor: ']'. Atual: ${this.simbolos[this.atual].lexema}`);
|
|
2483
|
+
}
|
|
2484
|
+
this.avancarEDevolverAnterior();
|
|
2485
|
+
return `${lexemaOriginal}[]`;
|
|
2486
|
+
}
|
|
2487
|
+
return lexemaOriginal;
|
|
2442
2488
|
}
|
|
2443
2489
|
if ((tipoElementarResolvido === 'funcao' || tipoElementarResolvido === 'função') &&
|
|
2444
2490
|
this.verificarTipoProximoSimbolo(delegua_2.default.MENOR)) {
|
|
@@ -3824,9 +3870,13 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
3824
3870
|
const importar = new declaracoes_1.Importar(construtoCaminhoModulo);
|
|
3825
3871
|
if (identificadorDeTudo !== null) {
|
|
3826
3872
|
importar.simboloTudo = identificadorDeTudo;
|
|
3873
|
+
this.pilhaEscopos.definirInformacoesVariavel(identificadorDeTudo.lexema, new informacao_elemento_sintatico_1.InformacaoElementoSintatico(identificadorDeTudo.lexema, 'módulo'));
|
|
3827
3874
|
}
|
|
3828
3875
|
else {
|
|
3829
3876
|
importar.elementosImportacao = elementosImportacao;
|
|
3877
|
+
for (const elemento of elementosImportacao) {
|
|
3878
|
+
this.pilhaEscopos.definirInformacoesVariavel(elemento.lexema, new informacao_elemento_sintatico_1.InformacaoElementoSintatico(elemento.lexema, 'qualquer'));
|
|
3879
|
+
}
|
|
3830
3880
|
}
|
|
3831
3881
|
return Promise.resolve(importar);
|
|
3832
3882
|
}
|
|
@@ -5456,7 +5506,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
5456
5506
|
}
|
|
5457
5507
|
exports.AvaliadorSintatico = AvaliadorSintatico;
|
|
5458
5508
|
|
|
5459
|
-
},{"../bibliotecas/primitivas-dicionario":31,"../bibliotecas/primitivas-numero":32,"../bibliotecas/primitivas-texto":33,"../bibliotecas/primitivas-vetor":34,"../construtos":
|
|
5509
|
+
},{"../bibliotecas/primitivas-dicionario":31,"../bibliotecas/primitivas-numero":32,"../bibliotecas/primitivas-texto":33,"../bibliotecas/primitivas-vetor":34,"../construtos":67,"../construtos/tuplas":86,"../declaracoes":116,"../inferenciador":146,"../informacao-elemento-sintatico":147,"../lexador/simbolo":246,"../tipos-de-dados/delegua":248,"../tipos-de-simbolos/delegua":253,"./avaliador-sintatico-base":10,"./comum":12,"./elemento-montao-tipos":20,"./erro-avaliador-sintatico":21,"./informacao-escopo":23,"./montao-tipos":26,"./pilha-escopos":27,"browser-process-hrtime":446}],12:[function(require,module,exports){
|
|
5460
5510
|
"use strict";
|
|
5461
5511
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5462
5512
|
exports.buscarRetornos = buscarRetornos;
|
|
@@ -5571,7 +5621,7 @@ function registrarPrimitiva(primitivasConhecidas, tipo, catalogoPrimitivas) {
|
|
|
5571
5621
|
}
|
|
5572
5622
|
}
|
|
5573
5623
|
|
|
5574
|
-
},{"../declaracoes":
|
|
5624
|
+
},{"../declaracoes":116,"../informacao-elemento-sintatico":147}],13:[function(require,module,exports){
|
|
5575
5625
|
"use strict";
|
|
5576
5626
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
5577
5627
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -6231,7 +6281,7 @@ class AvaliadorSintaticoEguaClassico {
|
|
|
6231
6281
|
}
|
|
6232
6282
|
exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
|
|
6233
6283
|
|
|
6234
|
-
},{"../../construtos":
|
|
6284
|
+
},{"../../construtos":67,"../../declaracoes":116,"../../tipos-de-simbolos/egua-classico":254,"../erro-avaliador-sintatico":21}],14:[function(require,module,exports){
|
|
6235
6285
|
"use strict";
|
|
6236
6286
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
6237
6287
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -8040,7 +8090,7 @@ class AvaliadorSintaticoPitugues {
|
|
|
8040
8090
|
}
|
|
8041
8091
|
exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
|
|
8042
8092
|
|
|
8043
|
-
},{"../../bibliotecas/dialetos/pitugues/primitivas-tupla":30,"../../bibliotecas/primitivas-dicionario":31,"../../bibliotecas/primitivas-numero":32,"../../bibliotecas/primitivas-texto":33,"../../bibliotecas/primitivas-vetor":34,"../../construtos":
|
|
8093
|
+
},{"../../bibliotecas/dialetos/pitugues/primitivas-tupla":30,"../../bibliotecas/primitivas-dicionario":31,"../../bibliotecas/primitivas-numero":32,"../../bibliotecas/primitivas-texto":33,"../../bibliotecas/primitivas-vetor":34,"../../construtos":67,"../../declaracoes":116,"../../inferenciador":146,"../../informacao-elemento-sintatico":147,"../../lexador":238,"../../lexador/micro-lexador-pitugues":243,"../../tipos-de-dados/dialetos/pitugues":249,"../../tipos-de-simbolos/pitugues":257,"../comum":12,"../erro-avaliador-sintatico":21,"../informacao-escopo":23,"../pilha-escopos":27,"./micro-avaliador-sintatico-pitugues":19,"browser-process-hrtime":446}],15:[function(require,module,exports){
|
|
8044
8094
|
"use strict";
|
|
8045
8095
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8046
8096
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -8588,7 +8638,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
|
|
|
8588
8638
|
}
|
|
8589
8639
|
exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
|
|
8590
8640
|
|
|
8591
|
-
},{"../../construtos":
|
|
8641
|
+
},{"../../construtos":67,"../../declaracoes":116,"../../lexador/simbolo":246,"../../tipos-de-simbolos/portugol-ipt":258,"../avaliador-sintatico-base":10}],16:[function(require,module,exports){
|
|
8592
8642
|
"use strict";
|
|
8593
8643
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8594
8644
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -9555,7 +9605,7 @@ class AvaliadorSintaticoPrisma extends avaliador_sintatico_base_1.AvaliadorSinta
|
|
|
9555
9605
|
}
|
|
9556
9606
|
exports.AvaliadorSintaticoPrisma = AvaliadorSintaticoPrisma;
|
|
9557
9607
|
|
|
9558
|
-
},{"../../bibliotecas/primitivas-dicionario":31,"../../bibliotecas/primitivas-numero":32,"../../bibliotecas/primitivas-texto":33,"../../bibliotecas/primitivas-vetor":34,"../../construtos":
|
|
9608
|
+
},{"../../bibliotecas/primitivas-dicionario":31,"../../bibliotecas/primitivas-numero":32,"../../bibliotecas/primitivas-texto":33,"../../bibliotecas/primitivas-vetor":34,"../../construtos":67,"../../declaracoes":116,"../../inferenciador":146,"../../informacao-elemento-sintatico":147,"../../lexador":238,"../../tipos-de-simbolos/prisma":259,"../avaliador-sintatico-base":10,"../comum":12,"../erro-avaliador-sintatico":21,"../informacao-escopo":23,"../pilha-escopos":27,"browser-process-hrtime":446}],17:[function(require,module,exports){
|
|
9559
9609
|
"use strict";
|
|
9560
9610
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
9561
9611
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -10567,7 +10617,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
|
|
|
10567
10617
|
}
|
|
10568
10618
|
exports.AvaliadorSintaticoTenda = AvaliadorSintaticoTenda;
|
|
10569
10619
|
|
|
10570
|
-
},{"../../bibliotecas/primitivas-dicionario":31,"../../bibliotecas/primitivas-numero":32,"../../bibliotecas/primitivas-texto":33,"../../bibliotecas/primitivas-vetor":34,"../../construtos":
|
|
10620
|
+
},{"../../bibliotecas/primitivas-dicionario":31,"../../bibliotecas/primitivas-numero":32,"../../bibliotecas/primitivas-texto":33,"../../bibliotecas/primitivas-vetor":34,"../../construtos":67,"../../construtos/tuplas":86,"../../declaracoes":116,"../../inferenciador":146,"../../informacao-elemento-sintatico":147,"../../lexador/simbolo":246,"../../tipos-de-dados/delegua":248,"../../tipos-de-simbolos/tenda":260,"../avaliador-sintatico-base":10,"./../erro-avaliador-sintatico":21,"./../informacao-escopo":23,"./../pilha-escopos":27,"browser-process-hrtime":446}],18:[function(require,module,exports){
|
|
10571
10621
|
"use strict";
|
|
10572
10622
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10573
10623
|
if (k2 === undefined) k2 = k;
|
|
@@ -10836,7 +10886,7 @@ class MicroAvaliadorSintaticoPitugues extends micro_avaliador_sintatico_base_1.M
|
|
|
10836
10886
|
}
|
|
10837
10887
|
exports.MicroAvaliadorSintaticoPitugues = MicroAvaliadorSintaticoPitugues;
|
|
10838
10888
|
|
|
10839
|
-
},{"../../construtos":
|
|
10889
|
+
},{"../../construtos":67,"../../declaracoes":116,"../../inferenciador":146,"../../tipos-de-simbolos/pitugues":257,"../micro-avaliador-sintatico-base":24}],20:[function(require,module,exports){
|
|
10840
10890
|
"use strict";
|
|
10841
10891
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10842
10892
|
exports.ElementoMontaoTipos = void 0;
|
|
@@ -11022,7 +11072,7 @@ class MicroAvaliadorSintaticoBase {
|
|
|
11022
11072
|
}
|
|
11023
11073
|
exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
|
|
11024
11074
|
|
|
11025
|
-
},{"../construtos":
|
|
11075
|
+
},{"../construtos":67,"../tipos-de-simbolos/comum":252,"./erro-avaliador-sintatico":21}],25:[function(require,module,exports){
|
|
11026
11076
|
"use strict";
|
|
11027
11077
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11028
11078
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -11255,7 +11305,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
|
|
|
11255
11305
|
}
|
|
11256
11306
|
exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
|
|
11257
11307
|
|
|
11258
|
-
},{"../construtos":
|
|
11308
|
+
},{"../construtos":67,"../tipos-de-simbolos/microgramaticas/delegua":256,"./micro-avaliador-sintatico-base":24}],26:[function(require,module,exports){
|
|
11259
11309
|
"use strict";
|
|
11260
11310
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11261
11311
|
exports.MontaoTipos = void 0;
|
|
@@ -11306,7 +11356,7 @@ class MontaoTipos {
|
|
|
11306
11356
|
}
|
|
11307
11357
|
exports.MontaoTipos = MontaoTipos;
|
|
11308
11358
|
|
|
11309
|
-
},{"../geracao-identificadores":
|
|
11359
|
+
},{"../geracao-identificadores":144,"./erro-avaliador-sintatico":21}],27:[function(require,module,exports){
|
|
11310
11360
|
"use strict";
|
|
11311
11361
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11312
11362
|
exports.PilhaEscopos = void 0;
|
|
@@ -12597,30 +12647,44 @@ async function vetor(interpretador, tupla) {
|
|
|
12597
12647
|
return resultadoFinal;
|
|
12598
12648
|
}
|
|
12599
12649
|
|
|
12600
|
-
},{"../construtos":
|
|
12650
|
+
},{"../construtos":67,"../excecoes":140,"../interpretador/estruturas":209,"../interpretador/estruturas/descritor-tipo-classe":207,"../interpretador/estruturas/funcao-padrao":208,"../interpretador/estruturas/objeto-delegua-classe":214,"../quebras":247}],30:[function(require,module,exports){
|
|
12601
12651
|
"use strict";
|
|
12602
12652
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12603
12653
|
const excecoes_1 = require("../../../excecoes");
|
|
12604
12654
|
const construtos_1 = require("../../../construtos");
|
|
12655
|
+
const informacao_elemento_sintatico_1 = require("../../../informacao-elemento-sintatico");
|
|
12656
|
+
const obterValoresPuros = (interpretador, tupla, nomeMetodo) => {
|
|
12657
|
+
const objetoTupla = interpretador.resolverValor(tupla);
|
|
12658
|
+
if (!(objetoTupla instanceof construtos_1.TuplaN)) {
|
|
12659
|
+
throw new excecoes_1.ErroEmTempoDeExecucao(null, `A função "${nomeMetodo}" só pode ser chamada em tuplas.`, interpretador.linhaDeclaracaoAtual);
|
|
12660
|
+
}
|
|
12661
|
+
return objetoTupla.elementos.map((elemento) => interpretador.resolverValor(elemento));
|
|
12662
|
+
};
|
|
12605
12663
|
exports.default = {
|
|
12606
|
-
|
|
12607
|
-
tipoRetorno: '
|
|
12608
|
-
argumentos: [
|
|
12609
|
-
|
|
12610
|
-
|
|
12611
|
-
|
|
12612
|
-
|
|
12613
|
-
|
|
12614
|
-
|
|
12615
|
-
|
|
12664
|
+
juntar: {
|
|
12665
|
+
tipoRetorno: 'texto',
|
|
12666
|
+
argumentos: [
|
|
12667
|
+
new informacao_elemento_sintatico_1.InformacaoElementoSintatico('separador', 'texto', false, [], 'O texto usado para separar os elementos. O padrão é uma vírgula.'),
|
|
12668
|
+
],
|
|
12669
|
+
implementacao: (interpretador, tupla, separador) => {
|
|
12670
|
+
const valores = obterValoresPuros(interpretador, tupla, 'juntar');
|
|
12671
|
+
const sep = separador !== undefined
|
|
12672
|
+
? interpretador.resolverValor(separador)
|
|
12673
|
+
: ',';
|
|
12674
|
+
return Promise.resolve(valores.join(sep));
|
|
12616
12675
|
},
|
|
12617
|
-
assinaturaFormato: 'tupla.
|
|
12618
|
-
documentacao: '# `tupla.
|
|
12619
|
-
|
|
12676
|
+
assinaturaFormato: 'tupla.juntar(separador?)',
|
|
12677
|
+
documentacao: '# `tupla.juntar(separador)` \n \n' +
|
|
12678
|
+
'Junta todos os elementos da tupla em um único texto, separados pelo separador fornecido.' +
|
|
12679
|
+
'\n\n ## Exemplo de Código\n' +
|
|
12680
|
+
'\n\n```pitugues\nt = ("A", "B", "C")\n' +
|
|
12681
|
+
'escreva(t.juntar("-")) // "A-B-C"\n```' +
|
|
12682
|
+
'\n\n ### Formas de uso \n',
|
|
12683
|
+
exemploCodigo: 'tupla.juntar("-")',
|
|
12620
12684
|
},
|
|
12621
12685
|
};
|
|
12622
12686
|
|
|
12623
|
-
},{"../../../construtos":
|
|
12687
|
+
},{"../../../construtos":67,"../../../excecoes":140,"../../../informacao-elemento-sintatico":147}],31:[function(require,module,exports){
|
|
12624
12688
|
"use strict";
|
|
12625
12689
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12626
12690
|
const construtos_1 = require("../construtos");
|
|
@@ -12733,7 +12797,7 @@ exports.default = {
|
|
|
12733
12797
|
},
|
|
12734
12798
|
};
|
|
12735
12799
|
|
|
12736
|
-
},{"../construtos":
|
|
12800
|
+
},{"../construtos":67,"../informacao-elemento-sintatico":147}],32:[function(require,module,exports){
|
|
12737
12801
|
"use strict";
|
|
12738
12802
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12739
12803
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -12818,7 +12882,7 @@ exports.default = {
|
|
|
12818
12882
|
},
|
|
12819
12883
|
};
|
|
12820
12884
|
|
|
12821
|
-
},{"../informacao-elemento-sintatico":
|
|
12885
|
+
},{"../informacao-elemento-sintatico":147}],33:[function(require,module,exports){
|
|
12822
12886
|
"use strict";
|
|
12823
12887
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12824
12888
|
exports.implementacaoParticao = void 0;
|
|
@@ -13217,7 +13281,7 @@ exports.default = {
|
|
|
13217
13281
|
},
|
|
13218
13282
|
};
|
|
13219
13283
|
|
|
13220
|
-
},{"../construtos":
|
|
13284
|
+
},{"../construtos":67,"../excecoes":140,"../informacao-elemento-sintatico":147}],34:[function(require,module,exports){
|
|
13221
13285
|
"use strict";
|
|
13222
13286
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13223
13287
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -13628,7 +13692,149 @@ exports.default = {
|
|
|
13628
13692
|
},
|
|
13629
13693
|
};
|
|
13630
13694
|
|
|
13631
|
-
},{"../construtos":
|
|
13695
|
+
},{"../construtos":67,"../excecoes":140,"../inferenciador":146,"../informacao-elemento-sintatico":147}],35:[function(require,module,exports){
|
|
13696
|
+
"use strict";
|
|
13697
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13698
|
+
exports.construirModuloAfirmar = construirModuloAfirmar;
|
|
13699
|
+
const erro_de_assertiva_1 = require("../../excecoes/erro-de-assertiva");
|
|
13700
|
+
const funcao_padrao_1 = require("../../interpretador/estruturas/funcao-padrao");
|
|
13701
|
+
const modulo_1 = require("../../interpretador/estruturas/modulo");
|
|
13702
|
+
function simboloAtual(interpretador) {
|
|
13703
|
+
return {
|
|
13704
|
+
hashArquivo: interpretador.hashArquivoDeclaracaoAtual,
|
|
13705
|
+
linha: interpretador.linhaDeclaracaoAtual,
|
|
13706
|
+
};
|
|
13707
|
+
}
|
|
13708
|
+
function construirModuloAfirmar() {
|
|
13709
|
+
const modulo = new modulo_1.DeleguaModulo('afirmar');
|
|
13710
|
+
modulo.componentes['igual'] = new funcao_padrao_1.FuncaoPadrao(2, function (interpretador, valorTestado, obtidoTestado) {
|
|
13711
|
+
const esperado = interpretador.resolverValor(valorTestado);
|
|
13712
|
+
const obtido = interpretador.resolverValor(obtidoTestado);
|
|
13713
|
+
if (esperado !== obtido) {
|
|
13714
|
+
return Promise.reject(new erro_de_assertiva_1.ErroDeAssertiva(simboloAtual(interpretador), `Esperava ${String(esperado)}, mas obteve ${String(obtido)}.`, esperado, obtido));
|
|
13715
|
+
}
|
|
13716
|
+
});
|
|
13717
|
+
modulo.componentes['diferente'] = new funcao_padrao_1.FuncaoPadrao(2, function (interpretador, valorATestado, valorBTestado) {
|
|
13718
|
+
const valorA = interpretador.resolverValor(valorATestado);
|
|
13719
|
+
const valorB = interpretador.resolverValor(valorBTestado);
|
|
13720
|
+
if (valorA === valorB) {
|
|
13721
|
+
return Promise.reject(new erro_de_assertiva_1.ErroDeAssertiva(simboloAtual(interpretador), `Esperava valores diferentes, mas ambos são ${String(valorA)}.`, undefined, valorA));
|
|
13722
|
+
}
|
|
13723
|
+
});
|
|
13724
|
+
modulo.componentes['verdadeiro'] = new funcao_padrao_1.FuncaoPadrao(1, function (interpretador, valorTestado) {
|
|
13725
|
+
const valor = interpretador.resolverValor(valorTestado);
|
|
13726
|
+
if (!valor) {
|
|
13727
|
+
return Promise.reject(new erro_de_assertiva_1.ErroDeAssertiva(simboloAtual(interpretador), `Esperava verdadeiro, mas obteve ${String(valor)}.`, true, valor));
|
|
13728
|
+
}
|
|
13729
|
+
});
|
|
13730
|
+
modulo.componentes['falso'] = new funcao_padrao_1.FuncaoPadrao(1, function (interpretador, valorTestado) {
|
|
13731
|
+
const valor = interpretador.resolverValor(valorTestado);
|
|
13732
|
+
if (valor) {
|
|
13733
|
+
return Promise.reject(new erro_de_assertiva_1.ErroDeAssertiva(simboloAtual(interpretador), `Esperava falso, mas obteve ${String(valor)}.`, false, valor));
|
|
13734
|
+
}
|
|
13735
|
+
});
|
|
13736
|
+
modulo.componentes['nulo'] = new funcao_padrao_1.FuncaoPadrao(1, function (interpretador, valorTestado) {
|
|
13737
|
+
const valor = interpretador.resolverValor(valorTestado);
|
|
13738
|
+
if (valor !== null && valor !== undefined) {
|
|
13739
|
+
return Promise.reject(new erro_de_assertiva_1.ErroDeAssertiva(simboloAtual(interpretador), `Esperava nulo, mas obteve ${String(valor)}.`, null, valor));
|
|
13740
|
+
}
|
|
13741
|
+
});
|
|
13742
|
+
modulo.componentes['erro'] = new funcao_padrao_1.FuncaoPadrao(1, async function (interpretador, funcaoTestada) {
|
|
13743
|
+
const funcao = interpretador.resolverValor(funcaoTestada);
|
|
13744
|
+
let erroLancado = false;
|
|
13745
|
+
try {
|
|
13746
|
+
await funcao.chamar(interpretador, [], null);
|
|
13747
|
+
}
|
|
13748
|
+
catch (_) {
|
|
13749
|
+
erroLancado = true;
|
|
13750
|
+
}
|
|
13751
|
+
if (!erroLancado) {
|
|
13752
|
+
return Promise.reject(new erro_de_assertiva_1.ErroDeAssertiva(simboloAtual(interpretador), 'Esperava que a função lançasse um erro, mas ela completou sem erros.'));
|
|
13753
|
+
}
|
|
13754
|
+
});
|
|
13755
|
+
return modulo;
|
|
13756
|
+
}
|
|
13757
|
+
|
|
13758
|
+
},{"../../excecoes/erro-de-assertiva":138,"../../interpretador/estruturas/funcao-padrao":208,"../../interpretador/estruturas/modulo":212}],36:[function(require,module,exports){
|
|
13759
|
+
"use strict";
|
|
13760
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13761
|
+
exports.construirModuloDeTestes = construirModuloDeTestes;
|
|
13762
|
+
const erro_de_assertiva_1 = require("../../excecoes/erro-de-assertiva");
|
|
13763
|
+
const funcao_padrao_1 = require("../../interpretador/estruturas/funcao-padrao");
|
|
13764
|
+
const modulo_1 = require("../../interpretador/estruturas/modulo");
|
|
13765
|
+
const modulo_afirmar_1 = require("./modulo-afirmar");
|
|
13766
|
+
function simboloAtual(interpretador) {
|
|
13767
|
+
return {
|
|
13768
|
+
hashArquivo: interpretador.hashArquivoDeclaracaoAtual,
|
|
13769
|
+
linha: interpretador.linhaDeclaracaoAtual,
|
|
13770
|
+
};
|
|
13771
|
+
}
|
|
13772
|
+
function construirModuloDeTestes(interpretador, registro) {
|
|
13773
|
+
const modulo = new modulo_1.DeleguaModulo('testes');
|
|
13774
|
+
modulo.componentes['afirmar'] = (0, modulo_afirmar_1.construirModuloAfirmar)();
|
|
13775
|
+
modulo.componentes['grupo'] = new funcao_padrao_1.FuncaoPadrao(2, async function (_visitante, nomeRaw, funcaoRaw) {
|
|
13776
|
+
const nome = interpretador.resolverValor(nomeRaw);
|
|
13777
|
+
const funcao = interpretador.resolverValor(funcaoRaw);
|
|
13778
|
+
const suiteAnterior = registro.suiteAtual;
|
|
13779
|
+
registro.suiteAtual = suiteAnterior ? `${suiteAnterior} > ${nome}` : nome;
|
|
13780
|
+
const emDeclaracaoTenteAnterior = interpretador.emDeclaracaoTente;
|
|
13781
|
+
interpretador.emDeclaracaoTente = true;
|
|
13782
|
+
try {
|
|
13783
|
+
await funcao.chamar(interpretador, [], null);
|
|
13784
|
+
}
|
|
13785
|
+
finally {
|
|
13786
|
+
registro.suiteAtual = suiteAnterior;
|
|
13787
|
+
interpretador.emDeclaracaoTente = emDeclaracaoTenteAnterior;
|
|
13788
|
+
}
|
|
13789
|
+
});
|
|
13790
|
+
modulo.componentes['teste'] = new funcao_padrao_1.FuncaoPadrao(2, async function (_visitante, nomeRaw, funcaoRaw) {
|
|
13791
|
+
const nome = interpretador.resolverValor(nomeRaw);
|
|
13792
|
+
const funcao = interpretador.resolverValor(funcaoRaw);
|
|
13793
|
+
const inicio = Date.now();
|
|
13794
|
+
const emDeclaracaoTenteAnterior = interpretador.emDeclaracaoTente;
|
|
13795
|
+
interpretador.emDeclaracaoTente = true;
|
|
13796
|
+
try {
|
|
13797
|
+
await funcao.chamar(interpretador, [], null);
|
|
13798
|
+
registro.resultados.push({
|
|
13799
|
+
nomeSuite: registro.suiteAtual,
|
|
13800
|
+
nomeTeste: nome,
|
|
13801
|
+
status: 'passou',
|
|
13802
|
+
tempoMs: Date.now() - inicio,
|
|
13803
|
+
});
|
|
13804
|
+
}
|
|
13805
|
+
catch (e) {
|
|
13806
|
+
registro.resultados.push({
|
|
13807
|
+
nomeSuite: registro.suiteAtual,
|
|
13808
|
+
nomeTeste: nome,
|
|
13809
|
+
status: 'falhou',
|
|
13810
|
+
mensagemErro: e.mensagem || e.message || String(e),
|
|
13811
|
+
tempoMs: Date.now() - inicio,
|
|
13812
|
+
});
|
|
13813
|
+
}
|
|
13814
|
+
finally {
|
|
13815
|
+
interpretador.emDeclaracaoTente = emDeclaracaoTenteAnterior;
|
|
13816
|
+
}
|
|
13817
|
+
});
|
|
13818
|
+
modulo.componentes['lancarErro'] = new funcao_padrao_1.FuncaoPadrao(1, function (_visitante, mensagemRaw) {
|
|
13819
|
+
const mensagem = interpretador.resolverValor(mensagemRaw);
|
|
13820
|
+
return Promise.reject(new erro_de_assertiva_1.ErroDeAssertiva(simboloAtual(interpretador), String(mensagem)));
|
|
13821
|
+
});
|
|
13822
|
+
return modulo;
|
|
13823
|
+
}
|
|
13824
|
+
|
|
13825
|
+
},{"../../excecoes/erro-de-assertiva":138,"../../interpretador/estruturas/funcao-padrao":208,"../../interpretador/estruturas/modulo":212,"./modulo-afirmar":35}],37:[function(require,module,exports){
|
|
13826
|
+
"use strict";
|
|
13827
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13828
|
+
exports.RegistroTestes = void 0;
|
|
13829
|
+
class RegistroTestes {
|
|
13830
|
+
constructor() {
|
|
13831
|
+
this.resultados = [];
|
|
13832
|
+
this.suiteAtual = '';
|
|
13833
|
+
}
|
|
13834
|
+
}
|
|
13835
|
+
exports.RegistroTestes = RegistroTestes;
|
|
13836
|
+
|
|
13837
|
+
},{}],38:[function(require,module,exports){
|
|
13632
13838
|
"use strict";
|
|
13633
13839
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13634
13840
|
exports.AcessoElementoMatriz = void 0;
|
|
@@ -13656,7 +13862,7 @@ class AcessoElementoMatriz {
|
|
|
13656
13862
|
}
|
|
13657
13863
|
exports.AcessoElementoMatriz = AcessoElementoMatriz;
|
|
13658
13864
|
|
|
13659
|
-
},{}],
|
|
13865
|
+
},{}],39:[function(require,module,exports){
|
|
13660
13866
|
"use strict";
|
|
13661
13867
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13662
13868
|
exports.AcessoIndiceVariavel = void 0;
|
|
@@ -13688,7 +13894,7 @@ class AcessoIndiceVariavel {
|
|
|
13688
13894
|
}
|
|
13689
13895
|
exports.AcessoIndiceVariavel = AcessoIndiceVariavel;
|
|
13690
13896
|
|
|
13691
|
-
},{}],
|
|
13897
|
+
},{}],40:[function(require,module,exports){
|
|
13692
13898
|
"use strict";
|
|
13693
13899
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13694
13900
|
exports.AcessoIntervaloVariavel = void 0;
|
|
@@ -13727,7 +13933,7 @@ class AcessoIntervaloVariavel {
|
|
|
13727
13933
|
}
|
|
13728
13934
|
exports.AcessoIntervaloVariavel = AcessoIntervaloVariavel;
|
|
13729
13935
|
|
|
13730
|
-
},{}],
|
|
13936
|
+
},{}],41:[function(require,module,exports){
|
|
13731
13937
|
"use strict";
|
|
13732
13938
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13733
13939
|
exports.AcessoMetodoOuPropriedade = void 0;
|
|
@@ -13759,7 +13965,7 @@ class AcessoMetodoOuPropriedade {
|
|
|
13759
13965
|
}
|
|
13760
13966
|
exports.AcessoMetodoOuPropriedade = AcessoMetodoOuPropriedade;
|
|
13761
13967
|
|
|
13762
|
-
},{}],
|
|
13968
|
+
},{}],42:[function(require,module,exports){
|
|
13763
13969
|
"use strict";
|
|
13764
13970
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13765
13971
|
exports.AcessoMetodo = void 0;
|
|
@@ -13784,7 +13990,7 @@ class AcessoMetodo {
|
|
|
13784
13990
|
}
|
|
13785
13991
|
exports.AcessoMetodo = AcessoMetodo;
|
|
13786
13992
|
|
|
13787
|
-
},{}],
|
|
13993
|
+
},{}],43:[function(require,module,exports){
|
|
13788
13994
|
"use strict";
|
|
13789
13995
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13790
13996
|
exports.AcessoPropriedade = void 0;
|
|
@@ -13808,7 +14014,7 @@ class AcessoPropriedade {
|
|
|
13808
14014
|
}
|
|
13809
14015
|
exports.AcessoPropriedade = AcessoPropriedade;
|
|
13810
14016
|
|
|
13811
|
-
},{}],
|
|
14017
|
+
},{}],44:[function(require,module,exports){
|
|
13812
14018
|
"use strict";
|
|
13813
14019
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13814
14020
|
exports.Agrupamento = void 0;
|
|
@@ -13836,7 +14042,7 @@ class Agrupamento {
|
|
|
13836
14042
|
}
|
|
13837
14043
|
exports.Agrupamento = Agrupamento;
|
|
13838
14044
|
|
|
13839
|
-
},{}],
|
|
14045
|
+
},{}],45:[function(require,module,exports){
|
|
13840
14046
|
"use strict";
|
|
13841
14047
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13842
14048
|
exports.AjudaComoConstruto = void 0;
|
|
@@ -13869,7 +14075,7 @@ class AjudaComoConstruto {
|
|
|
13869
14075
|
}
|
|
13870
14076
|
exports.AjudaComoConstruto = AjudaComoConstruto;
|
|
13871
14077
|
|
|
13872
|
-
},{}],
|
|
14078
|
+
},{}],46:[function(require,module,exports){
|
|
13873
14079
|
"use strict";
|
|
13874
14080
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13875
14081
|
exports.ArgumentoReferenciaFuncao = void 0;
|
|
@@ -13896,7 +14102,7 @@ class ArgumentoReferenciaFuncao {
|
|
|
13896
14102
|
}
|
|
13897
14103
|
exports.ArgumentoReferenciaFuncao = ArgumentoReferenciaFuncao;
|
|
13898
14104
|
|
|
13899
|
-
},{}],
|
|
14105
|
+
},{}],47:[function(require,module,exports){
|
|
13900
14106
|
"use strict";
|
|
13901
14107
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13902
14108
|
exports.AtribuicaoPorIndice = void 0;
|
|
@@ -13923,7 +14129,7 @@ class AtribuicaoPorIndice {
|
|
|
13923
14129
|
}
|
|
13924
14130
|
exports.AtribuicaoPorIndice = AtribuicaoPorIndice;
|
|
13925
14131
|
|
|
13926
|
-
},{}],
|
|
14132
|
+
},{}],48:[function(require,module,exports){
|
|
13927
14133
|
"use strict";
|
|
13928
14134
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13929
14135
|
exports.AtribuicaoPorIndicesMatriz = void 0;
|
|
@@ -13952,7 +14158,7 @@ class AtribuicaoPorIndicesMatriz {
|
|
|
13952
14158
|
}
|
|
13953
14159
|
exports.AtribuicaoPorIndicesMatriz = AtribuicaoPorIndicesMatriz;
|
|
13954
14160
|
|
|
13955
|
-
},{}],
|
|
14161
|
+
},{}],49:[function(require,module,exports){
|
|
13956
14162
|
"use strict";
|
|
13957
14163
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13958
14164
|
exports.Atribuir = void 0;
|
|
@@ -13999,7 +14205,7 @@ class Atribuir {
|
|
|
13999
14205
|
}
|
|
14000
14206
|
exports.Atribuir = Atribuir;
|
|
14001
14207
|
|
|
14002
|
-
},{"./variavel":
|
|
14208
|
+
},{"./variavel":95}],50:[function(require,module,exports){
|
|
14003
14209
|
"use strict";
|
|
14004
14210
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14005
14211
|
exports.Binario = void 0;
|
|
@@ -14071,7 +14277,7 @@ class Binario {
|
|
|
14071
14277
|
}
|
|
14072
14278
|
exports.Binario = Binario;
|
|
14073
14279
|
|
|
14074
|
-
},{}],
|
|
14280
|
+
},{}],51:[function(require,module,exports){
|
|
14075
14281
|
"use strict";
|
|
14076
14282
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14077
14283
|
exports.Bote = void 0;
|
|
@@ -14094,7 +14300,7 @@ class Bote {
|
|
|
14094
14300
|
}
|
|
14095
14301
|
exports.Bote = Bote;
|
|
14096
14302
|
|
|
14097
|
-
},{}],
|
|
14303
|
+
},{}],52:[function(require,module,exports){
|
|
14098
14304
|
"use strict";
|
|
14099
14305
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14100
14306
|
exports.Chamada = void 0;
|
|
@@ -14126,7 +14332,7 @@ class Chamada {
|
|
|
14126
14332
|
}
|
|
14127
14333
|
exports.Chamada = Chamada;
|
|
14128
14334
|
|
|
14129
|
-
},{"../geracao-identificadores":
|
|
14335
|
+
},{"../geracao-identificadores":144}],53:[function(require,module,exports){
|
|
14130
14336
|
"use strict";
|
|
14131
14337
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14132
14338
|
exports.ComentarioComoConstruto = void 0;
|
|
@@ -14153,7 +14359,7 @@ class ComentarioComoConstruto {
|
|
|
14153
14359
|
}
|
|
14154
14360
|
exports.ComentarioComoConstruto = ComentarioComoConstruto;
|
|
14155
14361
|
|
|
14156
|
-
},{}],
|
|
14362
|
+
},{}],54:[function(require,module,exports){
|
|
14157
14363
|
"use strict";
|
|
14158
14364
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14159
14365
|
exports.ComponenteLinguagem = void 0;
|
|
@@ -14179,7 +14385,7 @@ class ComponenteLinguagem {
|
|
|
14179
14385
|
}
|
|
14180
14386
|
exports.ComponenteLinguagem = ComponenteLinguagem;
|
|
14181
14387
|
|
|
14182
|
-
},{}],
|
|
14388
|
+
},{}],55:[function(require,module,exports){
|
|
14183
14389
|
"use strict";
|
|
14184
14390
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14185
14391
|
exports.Constante = void 0;
|
|
@@ -14204,7 +14410,7 @@ class Constante {
|
|
|
14204
14410
|
}
|
|
14205
14411
|
exports.Constante = Constante;
|
|
14206
14412
|
|
|
14207
|
-
},{}],
|
|
14413
|
+
},{}],56:[function(require,module,exports){
|
|
14208
14414
|
"use strict";
|
|
14209
14415
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14210
14416
|
exports.Decorador = void 0;
|
|
@@ -14245,7 +14451,7 @@ class Decorador {
|
|
|
14245
14451
|
}
|
|
14246
14452
|
exports.Decorador = Decorador;
|
|
14247
14453
|
|
|
14248
|
-
},{}],
|
|
14454
|
+
},{}],57:[function(require,module,exports){
|
|
14249
14455
|
"use strict";
|
|
14250
14456
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14251
14457
|
exports.DefinirValor = void 0;
|
|
@@ -14269,7 +14475,7 @@ class DefinirValor {
|
|
|
14269
14475
|
}
|
|
14270
14476
|
exports.DefinirValor = DefinirValor;
|
|
14271
14477
|
|
|
14272
|
-
},{}],
|
|
14478
|
+
},{}],58:[function(require,module,exports){
|
|
14273
14479
|
"use strict";
|
|
14274
14480
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14275
14481
|
exports.Dicionario = void 0;
|
|
@@ -14294,7 +14500,7 @@ class Dicionario {
|
|
|
14294
14500
|
}
|
|
14295
14501
|
exports.Dicionario = Dicionario;
|
|
14296
14502
|
|
|
14297
|
-
},{}],
|
|
14503
|
+
},{}],59:[function(require,module,exports){
|
|
14298
14504
|
"use strict";
|
|
14299
14505
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14300
14506
|
exports.Elvis = void 0;
|
|
@@ -14319,7 +14525,7 @@ class Elvis {
|
|
|
14319
14525
|
}
|
|
14320
14526
|
exports.Elvis = Elvis;
|
|
14321
14527
|
|
|
14322
|
-
},{}],
|
|
14528
|
+
},{}],60:[function(require,module,exports){
|
|
14323
14529
|
"use strict";
|
|
14324
14530
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14325
14531
|
exports.EnquantoComoConstruto = void 0;
|
|
@@ -14342,7 +14548,7 @@ class EnquantoComoConstruto {
|
|
|
14342
14548
|
}
|
|
14343
14549
|
exports.EnquantoComoConstruto = EnquantoComoConstruto;
|
|
14344
14550
|
|
|
14345
|
-
},{}],
|
|
14551
|
+
},{}],61:[function(require,module,exports){
|
|
14346
14552
|
"use strict";
|
|
14347
14553
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14348
14554
|
exports.ExpressaoRegular = void 0;
|
|
@@ -14365,7 +14571,7 @@ class ExpressaoRegular {
|
|
|
14365
14571
|
}
|
|
14366
14572
|
exports.ExpressaoRegular = ExpressaoRegular;
|
|
14367
14573
|
|
|
14368
|
-
},{}],
|
|
14574
|
+
},{}],62:[function(require,module,exports){
|
|
14369
14575
|
"use strict";
|
|
14370
14576
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14371
14577
|
exports.FazerComoConstruto = void 0;
|
|
@@ -14388,7 +14594,7 @@ class FazerComoConstruto {
|
|
|
14388
14594
|
}
|
|
14389
14595
|
exports.FazerComoConstruto = FazerComoConstruto;
|
|
14390
14596
|
|
|
14391
|
-
},{}],
|
|
14597
|
+
},{}],63:[function(require,module,exports){
|
|
14392
14598
|
"use strict";
|
|
14393
14599
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14394
14600
|
exports.FimPara = void 0;
|
|
@@ -14421,7 +14627,7 @@ class FimPara {
|
|
|
14421
14627
|
}
|
|
14422
14628
|
exports.FimPara = FimPara;
|
|
14423
14629
|
|
|
14424
|
-
},{}],
|
|
14630
|
+
},{}],64:[function(require,module,exports){
|
|
14425
14631
|
"use strict";
|
|
14426
14632
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14427
14633
|
exports.FormatacaoEscrita = void 0;
|
|
@@ -14450,7 +14656,7 @@ class FormatacaoEscrita {
|
|
|
14450
14656
|
}
|
|
14451
14657
|
exports.FormatacaoEscrita = FormatacaoEscrita;
|
|
14452
14658
|
|
|
14453
|
-
},{}],
|
|
14659
|
+
},{}],65:[function(require,module,exports){
|
|
14454
14660
|
"use strict";
|
|
14455
14661
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14456
14662
|
exports.FuncaoConstruto = void 0;
|
|
@@ -14488,7 +14694,7 @@ class FuncaoConstruto {
|
|
|
14488
14694
|
}
|
|
14489
14695
|
exports.FuncaoConstruto = FuncaoConstruto;
|
|
14490
14696
|
|
|
14491
|
-
},{}],
|
|
14697
|
+
},{}],66:[function(require,module,exports){
|
|
14492
14698
|
"use strict";
|
|
14493
14699
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14494
14700
|
exports.ImportarComoConstruto = void 0;
|
|
@@ -14514,7 +14720,7 @@ class ImportarComoConstruto {
|
|
|
14514
14720
|
}
|
|
14515
14721
|
exports.ImportarComoConstruto = ImportarComoConstruto;
|
|
14516
14722
|
|
|
14517
|
-
},{}],
|
|
14723
|
+
},{}],67:[function(require,module,exports){
|
|
14518
14724
|
"use strict";
|
|
14519
14725
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14520
14726
|
if (k2 === undefined) k2 = k;
|
|
@@ -14581,7 +14787,7 @@ __exportStar(require("./unario"), exports);
|
|
|
14581
14787
|
__exportStar(require("./variavel"), exports);
|
|
14582
14788
|
__exportStar(require("./vetor"), exports);
|
|
14583
14789
|
|
|
14584
|
-
},{"./acesso-elemento-matriz":
|
|
14790
|
+
},{"./acesso-elemento-matriz":38,"./acesso-indice-variavel":39,"./acesso-intervalo-variavel":40,"./acesso-metodo":42,"./acesso-metodo-ou-propriedade":41,"./acesso-propriedade":43,"./agrupamento":44,"./ajuda-como-construto":45,"./argumento-referencia-funcao":46,"./atribuicao-por-indice":47,"./atribuicao-por-indices-matriz":48,"./atribuir":49,"./binario":50,"./bote":51,"./chamada":52,"./comentario-como-construto":53,"./componente-linguagem":54,"./constante":55,"./decorador":56,"./definir-valor":57,"./dicionario":58,"./elvis":59,"./enquanto-como-construto":60,"./expressao-regular":61,"./fazer-como-construto":62,"./fim-para":63,"./formatacao-escrita":64,"./funcao":65,"./importar-como-construto":66,"./isto":68,"./leia":69,"./lista-compreensao":70,"./literal":71,"./logico":72,"./morsa":73,"./para-cada-como-construto":74,"./para-como-construto":75,"./referencia-biblioteca-global":76,"./referencia-funcao":77,"./se-ternario":78,"./separador":79,"./super":80,"./tipo-de":81,"./tupla":83,"./tupla-n":82,"./tuplas":86,"./unario":94,"./variavel":95,"./vetor":96}],68:[function(require,module,exports){
|
|
14585
14791
|
"use strict";
|
|
14586
14792
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14587
14793
|
exports.Isto = void 0;
|
|
@@ -14604,7 +14810,7 @@ class Isto {
|
|
|
14604
14810
|
}
|
|
14605
14811
|
exports.Isto = Isto;
|
|
14606
14812
|
|
|
14607
|
-
},{}],
|
|
14813
|
+
},{}],69:[function(require,module,exports){
|
|
14608
14814
|
"use strict";
|
|
14609
14815
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14610
14816
|
exports.Leia = void 0;
|
|
@@ -14634,7 +14840,7 @@ class Leia {
|
|
|
14634
14840
|
}
|
|
14635
14841
|
exports.Leia = Leia;
|
|
14636
14842
|
|
|
14637
|
-
},{"../geracao-identificadores":
|
|
14843
|
+
},{"../geracao-identificadores":144}],70:[function(require,module,exports){
|
|
14638
14844
|
"use strict";
|
|
14639
14845
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14640
14846
|
exports.ListaCompreensao = void 0;
|
|
@@ -14659,7 +14865,7 @@ class ListaCompreensao {
|
|
|
14659
14865
|
}
|
|
14660
14866
|
exports.ListaCompreensao = ListaCompreensao;
|
|
14661
14867
|
|
|
14662
|
-
},{}],
|
|
14868
|
+
},{}],71:[function(require,module,exports){
|
|
14663
14869
|
"use strict";
|
|
14664
14870
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14665
14871
|
exports.Literal = void 0;
|
|
@@ -14690,7 +14896,7 @@ class Literal {
|
|
|
14690
14896
|
}
|
|
14691
14897
|
exports.Literal = Literal;
|
|
14692
14898
|
|
|
14693
|
-
},{}],
|
|
14899
|
+
},{}],72:[function(require,module,exports){
|
|
14694
14900
|
"use strict";
|
|
14695
14901
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14696
14902
|
exports.Logico = void 0;
|
|
@@ -14717,7 +14923,7 @@ class Logico {
|
|
|
14717
14923
|
}
|
|
14718
14924
|
exports.Logico = Logico;
|
|
14719
14925
|
|
|
14720
|
-
},{}],
|
|
14926
|
+
},{}],73:[function(require,module,exports){
|
|
14721
14927
|
"use strict";
|
|
14722
14928
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14723
14929
|
exports.Morsa = void 0;
|
|
@@ -14740,7 +14946,7 @@ class Morsa {
|
|
|
14740
14946
|
}
|
|
14741
14947
|
exports.Morsa = Morsa;
|
|
14742
14948
|
|
|
14743
|
-
},{}],
|
|
14949
|
+
},{}],74:[function(require,module,exports){
|
|
14744
14950
|
"use strict";
|
|
14745
14951
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14746
14952
|
exports.ParaCadaComoConstruto = void 0;
|
|
@@ -14765,7 +14971,7 @@ class ParaCadaComoConstruto {
|
|
|
14765
14971
|
}
|
|
14766
14972
|
exports.ParaCadaComoConstruto = ParaCadaComoConstruto;
|
|
14767
14973
|
|
|
14768
|
-
},{}],
|
|
14974
|
+
},{}],75:[function(require,module,exports){
|
|
14769
14975
|
"use strict";
|
|
14770
14976
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14771
14977
|
exports.ParaComoConstruto = void 0;
|
|
@@ -14793,7 +14999,7 @@ class ParaComoConstruto {
|
|
|
14793
14999
|
}
|
|
14794
15000
|
exports.ParaComoConstruto = ParaComoConstruto;
|
|
14795
15001
|
|
|
14796
|
-
},{}],
|
|
15002
|
+
},{}],76:[function(require,module,exports){
|
|
14797
15003
|
"use strict";
|
|
14798
15004
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14799
15005
|
exports.ReferenciaBibliotecaGlobal = void 0;
|
|
@@ -14819,7 +15025,7 @@ class ReferenciaBibliotecaGlobal {
|
|
|
14819
15025
|
}
|
|
14820
15026
|
exports.ReferenciaBibliotecaGlobal = ReferenciaBibliotecaGlobal;
|
|
14821
15027
|
|
|
14822
|
-
},{}],
|
|
15028
|
+
},{}],77:[function(require,module,exports){
|
|
14823
15029
|
"use strict";
|
|
14824
15030
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14825
15031
|
exports.ReferenciaFuncao = void 0;
|
|
@@ -14843,7 +15049,7 @@ class ReferenciaFuncao {
|
|
|
14843
15049
|
}
|
|
14844
15050
|
exports.ReferenciaFuncao = ReferenciaFuncao;
|
|
14845
15051
|
|
|
14846
|
-
},{}],
|
|
15052
|
+
},{}],78:[function(require,module,exports){
|
|
14847
15053
|
"use strict";
|
|
14848
15054
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14849
15055
|
exports.SeTernario = void 0;
|
|
@@ -14868,7 +15074,7 @@ class SeTernario {
|
|
|
14868
15074
|
}
|
|
14869
15075
|
exports.SeTernario = SeTernario;
|
|
14870
15076
|
|
|
14871
|
-
},{}],
|
|
15077
|
+
},{}],79:[function(require,module,exports){
|
|
14872
15078
|
"use strict";
|
|
14873
15079
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14874
15080
|
exports.Separador = void 0;
|
|
@@ -14890,7 +15096,7 @@ class Separador {
|
|
|
14890
15096
|
}
|
|
14891
15097
|
exports.Separador = Separador;
|
|
14892
15098
|
|
|
14893
|
-
},{}],
|
|
15099
|
+
},{}],80:[function(require,module,exports){
|
|
14894
15100
|
"use strict";
|
|
14895
15101
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14896
15102
|
exports.Super = void 0;
|
|
@@ -14913,7 +15119,7 @@ class Super {
|
|
|
14913
15119
|
}
|
|
14914
15120
|
exports.Super = Super;
|
|
14915
15121
|
|
|
14916
|
-
},{}],
|
|
15122
|
+
},{}],81:[function(require,module,exports){
|
|
14917
15123
|
"use strict";
|
|
14918
15124
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14919
15125
|
exports.TipoDe = void 0;
|
|
@@ -14940,7 +15146,7 @@ class TipoDe {
|
|
|
14940
15146
|
}
|
|
14941
15147
|
exports.TipoDe = TipoDe;
|
|
14942
15148
|
|
|
14943
|
-
},{}],
|
|
15149
|
+
},{}],82:[function(require,module,exports){
|
|
14944
15150
|
"use strict";
|
|
14945
15151
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14946
15152
|
exports.TuplaN = void 0;
|
|
@@ -14969,7 +15175,7 @@ class TuplaN extends tupla_1.Tupla {
|
|
|
14969
15175
|
}
|
|
14970
15176
|
exports.TuplaN = TuplaN;
|
|
14971
15177
|
|
|
14972
|
-
},{"./tupla":
|
|
15178
|
+
},{"./tupla":83}],83:[function(require,module,exports){
|
|
14973
15179
|
"use strict";
|
|
14974
15180
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14975
15181
|
exports.Tupla = void 0;
|
|
@@ -14980,7 +15186,7 @@ class Tupla {
|
|
|
14980
15186
|
}
|
|
14981
15187
|
exports.Tupla = Tupla;
|
|
14982
15188
|
|
|
14983
|
-
},{}],
|
|
15189
|
+
},{}],84:[function(require,module,exports){
|
|
14984
15190
|
"use strict";
|
|
14985
15191
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14986
15192
|
exports.Deceto = void 0;
|
|
@@ -15031,7 +15237,7 @@ class Deceto extends tupla_1.Tupla {
|
|
|
15031
15237
|
}
|
|
15032
15238
|
exports.Deceto = Deceto;
|
|
15033
15239
|
|
|
15034
|
-
},{"../tupla":
|
|
15240
|
+
},{"../tupla":83}],85:[function(require,module,exports){
|
|
15035
15241
|
"use strict";
|
|
15036
15242
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15037
15243
|
exports.Dupla = void 0;
|
|
@@ -15053,7 +15259,7 @@ class Dupla extends tupla_1.Tupla {
|
|
|
15053
15259
|
}
|
|
15054
15260
|
exports.Dupla = Dupla;
|
|
15055
15261
|
|
|
15056
|
-
},{"../tupla":
|
|
15262
|
+
},{"../tupla":83}],86:[function(require,module,exports){
|
|
15057
15263
|
"use strict";
|
|
15058
15264
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15059
15265
|
if (k2 === undefined) k2 = k;
|
|
@@ -15121,7 +15327,7 @@ class SeletorTuplas {
|
|
|
15121
15327
|
}
|
|
15122
15328
|
exports.SeletorTuplas = SeletorTuplas;
|
|
15123
15329
|
|
|
15124
|
-
},{"./deceto":
|
|
15330
|
+
},{"./deceto":84,"./dupla":85,"./noneto":87,"./octeto":88,"./quarteto":89,"./quinteto":90,"./septeto":91,"./sexteto":92,"./trio":93}],87:[function(require,module,exports){
|
|
15125
15331
|
"use strict";
|
|
15126
15332
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15127
15333
|
exports.Noneto = void 0;
|
|
@@ -15163,7 +15369,7 @@ class Noneto extends tupla_1.Tupla {
|
|
|
15163
15369
|
}
|
|
15164
15370
|
exports.Noneto = Noneto;
|
|
15165
15371
|
|
|
15166
|
-
},{"../tupla":
|
|
15372
|
+
},{"../tupla":83}],88:[function(require,module,exports){
|
|
15167
15373
|
"use strict";
|
|
15168
15374
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15169
15375
|
exports.Octeto = void 0;
|
|
@@ -15203,7 +15409,7 @@ class Octeto extends tupla_1.Tupla {
|
|
|
15203
15409
|
}
|
|
15204
15410
|
exports.Octeto = Octeto;
|
|
15205
15411
|
|
|
15206
|
-
},{"../tupla":
|
|
15412
|
+
},{"../tupla":83}],89:[function(require,module,exports){
|
|
15207
15413
|
"use strict";
|
|
15208
15414
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15209
15415
|
exports.Quarteto = void 0;
|
|
@@ -15229,7 +15435,7 @@ class Quarteto extends tupla_1.Tupla {
|
|
|
15229
15435
|
}
|
|
15230
15436
|
exports.Quarteto = Quarteto;
|
|
15231
15437
|
|
|
15232
|
-
},{"../tupla":
|
|
15438
|
+
},{"../tupla":83}],90:[function(require,module,exports){
|
|
15233
15439
|
"use strict";
|
|
15234
15440
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15235
15441
|
exports.Quinteto = void 0;
|
|
@@ -15257,7 +15463,7 @@ class Quinteto extends tupla_1.Tupla {
|
|
|
15257
15463
|
}
|
|
15258
15464
|
exports.Quinteto = Quinteto;
|
|
15259
15465
|
|
|
15260
|
-
},{"../tupla":
|
|
15466
|
+
},{"../tupla":83}],91:[function(require,module,exports){
|
|
15261
15467
|
"use strict";
|
|
15262
15468
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15263
15469
|
exports.Septeto = void 0;
|
|
@@ -15295,7 +15501,7 @@ class Septeto extends tupla_1.Tupla {
|
|
|
15295
15501
|
}
|
|
15296
15502
|
exports.Septeto = Septeto;
|
|
15297
15503
|
|
|
15298
|
-
},{"../tupla":
|
|
15504
|
+
},{"../tupla":83}],92:[function(require,module,exports){
|
|
15299
15505
|
"use strict";
|
|
15300
15506
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15301
15507
|
exports.Sexteto = void 0;
|
|
@@ -15325,7 +15531,7 @@ class Sexteto extends tupla_1.Tupla {
|
|
|
15325
15531
|
}
|
|
15326
15532
|
exports.Sexteto = Sexteto;
|
|
15327
15533
|
|
|
15328
|
-
},{"../tupla":
|
|
15534
|
+
},{"../tupla":83}],93:[function(require,module,exports){
|
|
15329
15535
|
"use strict";
|
|
15330
15536
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15331
15537
|
exports.Trio = void 0;
|
|
@@ -15349,7 +15555,7 @@ class Trio extends tupla_1.Tupla {
|
|
|
15349
15555
|
}
|
|
15350
15556
|
exports.Trio = Trio;
|
|
15351
15557
|
|
|
15352
|
-
},{"../tupla":
|
|
15558
|
+
},{"../tupla":83}],94:[function(require,module,exports){
|
|
15353
15559
|
"use strict";
|
|
15354
15560
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15355
15561
|
exports.Unario = void 0;
|
|
@@ -15375,7 +15581,7 @@ class Unario {
|
|
|
15375
15581
|
}
|
|
15376
15582
|
exports.Unario = Unario;
|
|
15377
15583
|
|
|
15378
|
-
},{}],
|
|
15584
|
+
},{}],95:[function(require,module,exports){
|
|
15379
15585
|
"use strict";
|
|
15380
15586
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15381
15587
|
exports.Variavel = void 0;
|
|
@@ -15398,7 +15604,7 @@ class Variavel {
|
|
|
15398
15604
|
}
|
|
15399
15605
|
exports.Variavel = Variavel;
|
|
15400
15606
|
|
|
15401
|
-
},{}],
|
|
15607
|
+
},{}],96:[function(require,module,exports){
|
|
15402
15608
|
"use strict";
|
|
15403
15609
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15404
15610
|
exports.Vetor = void 0;
|
|
@@ -15433,7 +15639,7 @@ class Vetor {
|
|
|
15433
15639
|
}
|
|
15434
15640
|
exports.Vetor = Vetor;
|
|
15435
15641
|
|
|
15436
|
-
},{"./comentario-como-construto":
|
|
15642
|
+
},{"./comentario-como-construto":53,"./separador":79}],97:[function(require,module,exports){
|
|
15437
15643
|
"use strict";
|
|
15438
15644
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15439
15645
|
exports.Ajuda = void 0;
|
|
@@ -15462,7 +15668,7 @@ class Ajuda extends declaracao_1.Declaracao {
|
|
|
15462
15668
|
}
|
|
15463
15669
|
exports.Ajuda = Ajuda;
|
|
15464
15670
|
|
|
15465
|
-
},{"./declaracao":
|
|
15671
|
+
},{"./declaracao":105}],98:[function(require,module,exports){
|
|
15466
15672
|
"use strict";
|
|
15467
15673
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15468
15674
|
exports.Bloco = void 0;
|
|
@@ -15488,7 +15694,7 @@ class Bloco extends declaracao_1.Declaracao {
|
|
|
15488
15694
|
}
|
|
15489
15695
|
exports.Bloco = Bloco;
|
|
15490
15696
|
|
|
15491
|
-
},{"./declaracao":
|
|
15697
|
+
},{"./declaracao":105}],99:[function(require,module,exports){
|
|
15492
15698
|
"use strict";
|
|
15493
15699
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15494
15700
|
exports.CabecalhoPrograma = void 0;
|
|
@@ -15510,7 +15716,7 @@ class CabecalhoPrograma extends declaracao_1.Declaracao {
|
|
|
15510
15716
|
}
|
|
15511
15717
|
exports.CabecalhoPrograma = CabecalhoPrograma;
|
|
15512
15718
|
|
|
15513
|
-
},{"./declaracao":
|
|
15719
|
+
},{"./declaracao":105}],100:[function(require,module,exports){
|
|
15514
15720
|
"use strict";
|
|
15515
15721
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15516
15722
|
exports.Classe = void 0;
|
|
@@ -15557,7 +15763,7 @@ class Classe extends declaracao_1.Declaracao {
|
|
|
15557
15763
|
}
|
|
15558
15764
|
exports.Classe = Classe;
|
|
15559
15765
|
|
|
15560
|
-
},{"./declaracao":
|
|
15766
|
+
},{"./declaracao":105}],101:[function(require,module,exports){
|
|
15561
15767
|
"use strict";
|
|
15562
15768
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15563
15769
|
exports.Comentario = void 0;
|
|
@@ -15582,7 +15788,7 @@ class Comentario extends declaracao_1.Declaracao {
|
|
|
15582
15788
|
}
|
|
15583
15789
|
exports.Comentario = Comentario;
|
|
15584
15790
|
|
|
15585
|
-
},{"./declaracao":
|
|
15791
|
+
},{"./declaracao":105}],102:[function(require,module,exports){
|
|
15586
15792
|
"use strict";
|
|
15587
15793
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15588
15794
|
exports.ConstMultiplo = void 0;
|
|
@@ -15607,7 +15813,7 @@ class ConstMultiplo extends declaracao_1.Declaracao {
|
|
|
15607
15813
|
}
|
|
15608
15814
|
exports.ConstMultiplo = ConstMultiplo;
|
|
15609
15815
|
|
|
15610
|
-
},{"./declaracao":
|
|
15816
|
+
},{"./declaracao":105}],103:[function(require,module,exports){
|
|
15611
15817
|
"use strict";
|
|
15612
15818
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15613
15819
|
exports.Const = void 0;
|
|
@@ -15637,7 +15843,7 @@ class Const extends declaracao_1.Declaracao {
|
|
|
15637
15843
|
}
|
|
15638
15844
|
exports.Const = Const;
|
|
15639
15845
|
|
|
15640
|
-
},{"./declaracao":
|
|
15846
|
+
},{"./declaracao":105}],104:[function(require,module,exports){
|
|
15641
15847
|
"use strict";
|
|
15642
15848
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15643
15849
|
exports.Continua = void 0;
|
|
@@ -15655,7 +15861,7 @@ class Continua extends declaracao_1.Declaracao {
|
|
|
15655
15861
|
}
|
|
15656
15862
|
exports.Continua = Continua;
|
|
15657
15863
|
|
|
15658
|
-
},{"./declaracao":
|
|
15864
|
+
},{"./declaracao":105}],105:[function(require,module,exports){
|
|
15659
15865
|
"use strict";
|
|
15660
15866
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15661
15867
|
exports.Declaracao = void 0;
|
|
@@ -15678,7 +15884,7 @@ class Declaracao {
|
|
|
15678
15884
|
}
|
|
15679
15885
|
exports.Declaracao = Declaracao;
|
|
15680
15886
|
|
|
15681
|
-
},{}],
|
|
15887
|
+
},{}],106:[function(require,module,exports){
|
|
15682
15888
|
"use strict";
|
|
15683
15889
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15684
15890
|
exports.Enquanto = void 0;
|
|
@@ -15699,7 +15905,7 @@ class Enquanto extends declaracao_1.Declaracao {
|
|
|
15699
15905
|
}
|
|
15700
15906
|
exports.Enquanto = Enquanto;
|
|
15701
15907
|
|
|
15702
|
-
},{"./declaracao":
|
|
15908
|
+
},{"./declaracao":105}],107:[function(require,module,exports){
|
|
15703
15909
|
"use strict";
|
|
15704
15910
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15705
15911
|
exports.Escolha = void 0;
|
|
@@ -15724,7 +15930,7 @@ class Escolha extends declaracao_1.Declaracao {
|
|
|
15724
15930
|
}
|
|
15725
15931
|
exports.Escolha = Escolha;
|
|
15726
15932
|
|
|
15727
|
-
},{"./declaracao":
|
|
15933
|
+
},{"./declaracao":105}],108:[function(require,module,exports){
|
|
15728
15934
|
"use strict";
|
|
15729
15935
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15730
15936
|
exports.EscrevaMesmaLinha = void 0;
|
|
@@ -15743,7 +15949,7 @@ class EscrevaMesmaLinha extends declaracao_1.Declaracao {
|
|
|
15743
15949
|
}
|
|
15744
15950
|
exports.EscrevaMesmaLinha = EscrevaMesmaLinha;
|
|
15745
15951
|
|
|
15746
|
-
},{"./declaracao":
|
|
15952
|
+
},{"./declaracao":105}],109:[function(require,module,exports){
|
|
15747
15953
|
"use strict";
|
|
15748
15954
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15749
15955
|
exports.Escreva = void 0;
|
|
@@ -15762,7 +15968,7 @@ class Escreva extends declaracao_1.Declaracao {
|
|
|
15762
15968
|
}
|
|
15763
15969
|
exports.Escreva = Escreva;
|
|
15764
15970
|
|
|
15765
|
-
},{"./declaracao":
|
|
15971
|
+
},{"./declaracao":105}],110:[function(require,module,exports){
|
|
15766
15972
|
"use strict";
|
|
15767
15973
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15768
15974
|
exports.Expressao = void 0;
|
|
@@ -15781,7 +15987,7 @@ class Expressao extends declaracao_1.Declaracao {
|
|
|
15781
15987
|
}
|
|
15782
15988
|
exports.Expressao = Expressao;
|
|
15783
15989
|
|
|
15784
|
-
},{"./declaracao":
|
|
15990
|
+
},{"./declaracao":105}],111:[function(require,module,exports){
|
|
15785
15991
|
"use strict";
|
|
15786
15992
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15787
15993
|
exports.Extensao = void 0;
|
|
@@ -15811,7 +16017,7 @@ class Extensao extends declaracao_1.Declaracao {
|
|
|
15811
16017
|
}
|
|
15812
16018
|
exports.Extensao = Extensao;
|
|
15813
16019
|
|
|
15814
|
-
},{"./declaracao":
|
|
16020
|
+
},{"./declaracao":105}],112:[function(require,module,exports){
|
|
15815
16021
|
"use strict";
|
|
15816
16022
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15817
16023
|
exports.Falhar = void 0;
|
|
@@ -15831,7 +16037,7 @@ class Falhar extends declaracao_1.Declaracao {
|
|
|
15831
16037
|
}
|
|
15832
16038
|
exports.Falhar = Falhar;
|
|
15833
16039
|
|
|
15834
|
-
},{"./declaracao":
|
|
16040
|
+
},{"./declaracao":105}],113:[function(require,module,exports){
|
|
15835
16041
|
"use strict";
|
|
15836
16042
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15837
16043
|
exports.Fazer = void 0;
|
|
@@ -15852,7 +16058,7 @@ class Fazer extends declaracao_1.Declaracao {
|
|
|
15852
16058
|
}
|
|
15853
16059
|
exports.Fazer = Fazer;
|
|
15854
16060
|
|
|
15855
|
-
},{"./declaracao":
|
|
16061
|
+
},{"./declaracao":105}],114:[function(require,module,exports){
|
|
15856
16062
|
"use strict";
|
|
15857
16063
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15858
16064
|
exports.FuncaoDeclaracao = void 0;
|
|
@@ -15886,7 +16092,7 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
|
|
|
15886
16092
|
}
|
|
15887
16093
|
exports.FuncaoDeclaracao = FuncaoDeclaracao;
|
|
15888
16094
|
|
|
15889
|
-
},{"../geracao-identificadores":
|
|
16095
|
+
},{"../geracao-identificadores":144,"./declaracao":105}],115:[function(require,module,exports){
|
|
15890
16096
|
"use strict";
|
|
15891
16097
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15892
16098
|
exports.Importar = void 0;
|
|
@@ -15912,7 +16118,7 @@ class Importar extends declaracao_1.Declaracao {
|
|
|
15912
16118
|
}
|
|
15913
16119
|
exports.Importar = Importar;
|
|
15914
16120
|
|
|
15915
|
-
},{"./declaracao":
|
|
16121
|
+
},{"./declaracao":105}],116:[function(require,module,exports){
|
|
15916
16122
|
"use strict";
|
|
15917
16123
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15918
16124
|
if (k2 === undefined) k2 = k;
|
|
@@ -15963,7 +16169,7 @@ __exportStar(require("./texto-documentacao"), exports);
|
|
|
15963
16169
|
__exportStar(require("./var"), exports);
|
|
15964
16170
|
__exportStar(require("./var-multiplo"), exports);
|
|
15965
16171
|
|
|
15966
|
-
},{"./ajuda":
|
|
16172
|
+
},{"./ajuda":97,"./bloco":98,"./cabecalho-programa":99,"./classe":100,"./comentario":101,"./const":103,"./const-multiplo":102,"./continua":104,"./declaracao":105,"./enquanto":106,"./escolha":107,"./escreva":109,"./escreva-mesma-linha":108,"./expressao":110,"./extensao":111,"./falhar":112,"./fazer":113,"./funcao":114,"./importar":115,"./inicio-algoritmo":117,"./interface":118,"./para":120,"./para-cada":119,"./propriedade-classe":121,"./retorna":122,"./se":123,"./sustar":124,"./tendo-como":125,"./tente":126,"./texto-documentacao":127,"./var":129,"./var-multiplo":128}],117:[function(require,module,exports){
|
|
15967
16173
|
"use strict";
|
|
15968
16174
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15969
16175
|
exports.InicioAlgoritmo = void 0;
|
|
@@ -15983,7 +16189,7 @@ class InicioAlgoritmo extends declaracao_1.Declaracao {
|
|
|
15983
16189
|
}
|
|
15984
16190
|
exports.InicioAlgoritmo = InicioAlgoritmo;
|
|
15985
16191
|
|
|
15986
|
-
},{"./declaracao":
|
|
16192
|
+
},{"./declaracao":105}],118:[function(require,module,exports){
|
|
15987
16193
|
"use strict";
|
|
15988
16194
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15989
16195
|
exports.InterfaceDeclaracao = exports.AssinaturaMetodo = void 0;
|
|
@@ -16029,7 +16235,7 @@ class InterfaceDeclaracao extends declaracao_1.Declaracao {
|
|
|
16029
16235
|
}
|
|
16030
16236
|
exports.InterfaceDeclaracao = InterfaceDeclaracao;
|
|
16031
16237
|
|
|
16032
|
-
},{"./declaracao":
|
|
16238
|
+
},{"./declaracao":105}],119:[function(require,module,exports){
|
|
16033
16239
|
"use strict";
|
|
16034
16240
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16035
16241
|
exports.ParaCada = void 0;
|
|
@@ -16052,7 +16258,7 @@ class ParaCada extends declaracao_1.Declaracao {
|
|
|
16052
16258
|
}
|
|
16053
16259
|
exports.ParaCada = ParaCada;
|
|
16054
16260
|
|
|
16055
|
-
},{"./declaracao":
|
|
16261
|
+
},{"./declaracao":105}],120:[function(require,module,exports){
|
|
16056
16262
|
"use strict";
|
|
16057
16263
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16058
16264
|
exports.Para = void 0;
|
|
@@ -16089,7 +16295,7 @@ class Para extends declaracao_1.Declaracao {
|
|
|
16089
16295
|
}
|
|
16090
16296
|
exports.Para = Para;
|
|
16091
16297
|
|
|
16092
|
-
},{"./declaracao":
|
|
16298
|
+
},{"./declaracao":105}],121:[function(require,module,exports){
|
|
16093
16299
|
"use strict";
|
|
16094
16300
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16095
16301
|
exports.PropriedadeClasse = void 0;
|
|
@@ -16115,7 +16321,7 @@ class PropriedadeClasse extends declaracao_1.Declaracao {
|
|
|
16115
16321
|
}
|
|
16116
16322
|
exports.PropriedadeClasse = PropriedadeClasse;
|
|
16117
16323
|
|
|
16118
|
-
},{"./declaracao":
|
|
16324
|
+
},{"./declaracao":105}],122:[function(require,module,exports){
|
|
16119
16325
|
"use strict";
|
|
16120
16326
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16121
16327
|
exports.Retorna = void 0;
|
|
@@ -16141,7 +16347,7 @@ class Retorna extends declaracao_1.Declaracao {
|
|
|
16141
16347
|
}
|
|
16142
16348
|
exports.Retorna = Retorna;
|
|
16143
16349
|
|
|
16144
|
-
},{"./declaracao":
|
|
16350
|
+
},{"./declaracao":105}],123:[function(require,module,exports){
|
|
16145
16351
|
"use strict";
|
|
16146
16352
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16147
16353
|
exports.Se = void 0;
|
|
@@ -16164,7 +16370,7 @@ class Se extends declaracao_1.Declaracao {
|
|
|
16164
16370
|
}
|
|
16165
16371
|
exports.Se = Se;
|
|
16166
16372
|
|
|
16167
|
-
},{"./declaracao":
|
|
16373
|
+
},{"./declaracao":105}],124:[function(require,module,exports){
|
|
16168
16374
|
"use strict";
|
|
16169
16375
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16170
16376
|
exports.Sustar = void 0;
|
|
@@ -16182,7 +16388,7 @@ class Sustar extends declaracao_1.Declaracao {
|
|
|
16182
16388
|
}
|
|
16183
16389
|
exports.Sustar = Sustar;
|
|
16184
16390
|
|
|
16185
|
-
},{"./declaracao":
|
|
16391
|
+
},{"./declaracao":105}],125:[function(require,module,exports){
|
|
16186
16392
|
"use strict";
|
|
16187
16393
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16188
16394
|
exports.TendoComo = void 0;
|
|
@@ -16209,7 +16415,7 @@ class TendoComo extends declaracao_1.Declaracao {
|
|
|
16209
16415
|
}
|
|
16210
16416
|
exports.TendoComo = TendoComo;
|
|
16211
16417
|
|
|
16212
|
-
},{"./declaracao":
|
|
16418
|
+
},{"./declaracao":105}],126:[function(require,module,exports){
|
|
16213
16419
|
"use strict";
|
|
16214
16420
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16215
16421
|
exports.Tente = void 0;
|
|
@@ -16235,7 +16441,7 @@ class Tente extends declaracao_1.Declaracao {
|
|
|
16235
16441
|
}
|
|
16236
16442
|
exports.Tente = Tente;
|
|
16237
16443
|
|
|
16238
|
-
},{"./declaracao":
|
|
16444
|
+
},{"./declaracao":105}],127:[function(require,module,exports){
|
|
16239
16445
|
"use strict";
|
|
16240
16446
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16241
16447
|
exports.TextoDocumentacao = void 0;
|
|
@@ -16257,7 +16463,7 @@ class TextoDocumentacao extends declaracao_1.Declaracao {
|
|
|
16257
16463
|
}
|
|
16258
16464
|
exports.TextoDocumentacao = TextoDocumentacao;
|
|
16259
16465
|
|
|
16260
|
-
},{"./declaracao":
|
|
16466
|
+
},{"./declaracao":105}],128:[function(require,module,exports){
|
|
16261
16467
|
"use strict";
|
|
16262
16468
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16263
16469
|
exports.VarMultiplo = void 0;
|
|
@@ -16283,7 +16489,7 @@ class VarMultiplo extends declaracao_1.Declaracao {
|
|
|
16283
16489
|
}
|
|
16284
16490
|
exports.VarMultiplo = VarMultiplo;
|
|
16285
16491
|
|
|
16286
|
-
},{"./declaracao":
|
|
16492
|
+
},{"./declaracao":105}],129:[function(require,module,exports){
|
|
16287
16493
|
"use strict";
|
|
16288
16494
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16289
16495
|
exports.Var = void 0;
|
|
@@ -16318,7 +16524,7 @@ class Var extends declaracao_1.Declaracao {
|
|
|
16318
16524
|
}
|
|
16319
16525
|
exports.Var = Var;
|
|
16320
16526
|
|
|
16321
|
-
},{"./declaracao":
|
|
16527
|
+
},{"./declaracao":105}],130:[function(require,module,exports){
|
|
16322
16528
|
"use strict";
|
|
16323
16529
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16324
16530
|
exports.EstilizadorDelegua = void 0;
|
|
@@ -16567,7 +16773,7 @@ class EstilizadorDelegua {
|
|
|
16567
16773
|
}
|
|
16568
16774
|
exports.EstilizadorDelegua = EstilizadorDelegua;
|
|
16569
16775
|
|
|
16570
|
-
},{"../formatadores":
|
|
16776
|
+
},{"../formatadores":143,"./quebrador-linha":132}],131:[function(require,module,exports){
|
|
16571
16777
|
"use strict";
|
|
16572
16778
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16573
16779
|
if (k2 === undefined) k2 = k;
|
|
@@ -16588,7 +16794,7 @@ __exportStar(require("./estilizador-delegua"), exports);
|
|
|
16588
16794
|
__exportStar(require("./quebrador-linha"), exports);
|
|
16589
16795
|
__exportStar(require("./regras"), exports);
|
|
16590
16796
|
|
|
16591
|
-
},{"./estilizador-delegua":
|
|
16797
|
+
},{"./estilizador-delegua":130,"./quebrador-linha":132,"./regras":133}],132:[function(require,module,exports){
|
|
16592
16798
|
"use strict";
|
|
16593
16799
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16594
16800
|
exports.QuebradorDeLinha = void 0;
|
|
@@ -16786,7 +16992,7 @@ class QuebradorDeLinha {
|
|
|
16786
16992
|
}
|
|
16787
16993
|
exports.QuebradorDeLinha = QuebradorDeLinha;
|
|
16788
16994
|
|
|
16789
|
-
},{}],
|
|
16995
|
+
},{}],133:[function(require,module,exports){
|
|
16790
16996
|
"use strict";
|
|
16791
16997
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16792
16998
|
if (k2 === undefined) k2 = k;
|
|
@@ -16808,7 +17014,7 @@ __exportStar(require("./regra-convencao-nomenclatura"), exports);
|
|
|
16808
17014
|
__exportStar(require("./regra-explicitar-tipos-parametros"), exports);
|
|
16809
17015
|
__exportStar(require("./regra-paradigma-consistente"), exports);
|
|
16810
17016
|
|
|
16811
|
-
},{"./regra-convencao-nomenclatura":
|
|
17017
|
+
},{"./regra-convencao-nomenclatura":134,"./regra-explicitar-tipos-parametros":135,"./regra-fortalecer-tipos":136,"./regra-paradigma-consistente":137}],134:[function(require,module,exports){
|
|
16812
17018
|
"use strict";
|
|
16813
17019
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16814
17020
|
exports.RegraConvencaoNomenclatura = void 0;
|
|
@@ -16977,7 +17183,7 @@ class RegraConvencaoNomenclatura {
|
|
|
16977
17183
|
}
|
|
16978
17184
|
exports.RegraConvencaoNomenclatura = RegraConvencaoNomenclatura;
|
|
16979
17185
|
|
|
16980
|
-
},{"../../declaracoes":
|
|
17186
|
+
},{"../../declaracoes":116}],135:[function(require,module,exports){
|
|
16981
17187
|
"use strict";
|
|
16982
17188
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16983
17189
|
exports.RegraExplicitarTiposParametros = void 0;
|
|
@@ -17028,7 +17234,7 @@ class RegraExplicitarTiposParametros {
|
|
|
17028
17234
|
}
|
|
17029
17235
|
exports.RegraExplicitarTiposParametros = RegraExplicitarTiposParametros;
|
|
17030
17236
|
|
|
17031
|
-
},{}],
|
|
17237
|
+
},{}],136:[function(require,module,exports){
|
|
17032
17238
|
"use strict";
|
|
17033
17239
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17034
17240
|
exports.RegraFortalecerTipos = void 0;
|
|
@@ -17113,7 +17319,7 @@ class RegraFortalecerTipos {
|
|
|
17113
17319
|
}
|
|
17114
17320
|
exports.RegraFortalecerTipos = RegraFortalecerTipos;
|
|
17115
17321
|
|
|
17116
|
-
},{"../../construtos":
|
|
17322
|
+
},{"../../construtos":67,"../../declaracoes":116,"../../inferenciador":146}],137:[function(require,module,exports){
|
|
17117
17323
|
"use strict";
|
|
17118
17324
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17119
17325
|
exports.RegraParadigmaConsistente = void 0;
|
|
@@ -17203,7 +17409,22 @@ class RegraParadigmaConsistente {
|
|
|
17203
17409
|
}
|
|
17204
17410
|
exports.RegraParadigmaConsistente = RegraParadigmaConsistente;
|
|
17205
17411
|
|
|
17206
|
-
},{"../../construtos/leia":
|
|
17412
|
+
},{"../../construtos/leia":69,"../../declaracoes":116,"../../lexador/mapeamento-paradigmas":242}],138:[function(require,module,exports){
|
|
17413
|
+
"use strict";
|
|
17414
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17415
|
+
exports.ErroDeAssertiva = void 0;
|
|
17416
|
+
const erro_em_tempo_de_execucao_1 = require("./erro-em-tempo-de-execucao");
|
|
17417
|
+
class ErroDeAssertiva extends erro_em_tempo_de_execucao_1.ErroEmTempoDeExecucao {
|
|
17418
|
+
constructor(simbolo, mensagem, esperado, obtido) {
|
|
17419
|
+
super(simbolo, mensagem);
|
|
17420
|
+
this.esperado = esperado;
|
|
17421
|
+
this.obtido = obtido;
|
|
17422
|
+
Object.setPrototypeOf(this, ErroDeAssertiva.prototype);
|
|
17423
|
+
}
|
|
17424
|
+
}
|
|
17425
|
+
exports.ErroDeAssertiva = ErroDeAssertiva;
|
|
17426
|
+
|
|
17427
|
+
},{"./erro-em-tempo-de-execucao":139}],139:[function(require,module,exports){
|
|
17207
17428
|
"use strict";
|
|
17208
17429
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17209
17430
|
exports.ErroEmTempoDeExecucao = void 0;
|
|
@@ -17218,7 +17439,7 @@ class ErroEmTempoDeExecucao extends Error {
|
|
|
17218
17439
|
}
|
|
17219
17440
|
exports.ErroEmTempoDeExecucao = ErroEmTempoDeExecucao;
|
|
17220
17441
|
|
|
17221
|
-
},{}],
|
|
17442
|
+
},{}],140:[function(require,module,exports){
|
|
17222
17443
|
"use strict";
|
|
17223
17444
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
17224
17445
|
if (k2 === undefined) k2 = k;
|
|
@@ -17235,9 +17456,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
17235
17456
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17236
17457
|
};
|
|
17237
17458
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17459
|
+
__exportStar(require("./erro-de-assertiva"), exports);
|
|
17238
17460
|
__exportStar(require("./erro-em-tempo-de-execucao"), exports);
|
|
17239
17461
|
|
|
17240
|
-
},{"./erro-em-tempo-de-execucao":
|
|
17462
|
+
},{"./erro-de-assertiva":138,"./erro-em-tempo-de-execucao":139}],141:[function(require,module,exports){
|
|
17241
17463
|
"use strict";
|
|
17242
17464
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
17243
17465
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -18198,7 +18420,7 @@ class FormatadorDelegua {
|
|
|
18198
18420
|
}
|
|
18199
18421
|
exports.FormatadorDelegua = FormatadorDelegua;
|
|
18200
18422
|
|
|
18201
|
-
},{"../construtos":
|
|
18423
|
+
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/delegua":253}],142:[function(require,module,exports){
|
|
18202
18424
|
"use strict";
|
|
18203
18425
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
18204
18426
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -18670,7 +18892,7 @@ class FormatadorPitugues {
|
|
|
18670
18892
|
}
|
|
18671
18893
|
exports.FormatadorPitugues = FormatadorPitugues;
|
|
18672
18894
|
|
|
18673
|
-
},{"../construtos":
|
|
18895
|
+
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/pitugues":257}],143:[function(require,module,exports){
|
|
18674
18896
|
"use strict";
|
|
18675
18897
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18676
18898
|
if (k2 === undefined) k2 = k;
|
|
@@ -18690,7 +18912,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
18690
18912
|
__exportStar(require("./formatador-delegua"), exports);
|
|
18691
18913
|
__exportStar(require("./formatador-pitugues"), exports);
|
|
18692
18914
|
|
|
18693
|
-
},{"./formatador-delegua":
|
|
18915
|
+
},{"./formatador-delegua":141,"./formatador-pitugues":142}],144:[function(require,module,exports){
|
|
18694
18916
|
"use strict";
|
|
18695
18917
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18696
18918
|
exports.cyrb53 = cyrb53;
|
|
@@ -18734,7 +18956,7 @@ function uuidv4() {
|
|
|
18734
18956
|
});
|
|
18735
18957
|
}
|
|
18736
18958
|
|
|
18737
|
-
},{}],
|
|
18959
|
+
},{}],145:[function(require,module,exports){
|
|
18738
18960
|
"use strict";
|
|
18739
18961
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18740
18962
|
if (k2 === undefined) k2 = k;
|
|
@@ -18763,7 +18985,7 @@ __exportStar(require("./interpretador"), exports);
|
|
|
18763
18985
|
__exportStar(require("./lexador"), exports);
|
|
18764
18986
|
__exportStar(require("./tradutores"), exports);
|
|
18765
18987
|
|
|
18766
|
-
},{"./analisador-semantico":6,"./avaliador-sintatico":22,"./construtos":
|
|
18988
|
+
},{"./analisador-semantico":6,"./avaliador-sintatico":22,"./construtos":67,"./declaracoes":116,"./estilizador":131,"./formatadores":143,"./geracao-identificadores":144,"./interfaces":176,"./interpretador":218,"./lexador":238,"./tradutores":261}],146:[function(require,module,exports){
|
|
18767
18989
|
"use strict";
|
|
18768
18990
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
18769
18991
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -18889,7 +19111,7 @@ function inferirTipoVariavel(variavel) {
|
|
|
18889
19111
|
}
|
|
18890
19112
|
}
|
|
18891
19113
|
|
|
18892
|
-
},{"./tipos-de-dados/delegua":
|
|
19114
|
+
},{"./tipos-de-dados/delegua":248,"./tipos-de-dados/primitivos":250,"./tipos-de-simbolos/delegua":253}],147:[function(require,module,exports){
|
|
18893
19115
|
"use strict";
|
|
18894
19116
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18895
19117
|
exports.InformacaoElementoSintatico = void 0;
|
|
@@ -18908,15 +19130,15 @@ class InformacaoElementoSintatico {
|
|
|
18908
19130
|
}
|
|
18909
19131
|
exports.InformacaoElementoSintatico = InformacaoElementoSintatico;
|
|
18910
19132
|
|
|
18911
|
-
},{}],
|
|
19133
|
+
},{}],148:[function(require,module,exports){
|
|
18912
19134
|
"use strict";
|
|
18913
19135
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18914
19136
|
|
|
18915
|
-
},{}],
|
|
19137
|
+
},{}],149:[function(require,module,exports){
|
|
18916
19138
|
"use strict";
|
|
18917
19139
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18918
19140
|
|
|
18919
|
-
},{}],
|
|
19141
|
+
},{}],150:[function(require,module,exports){
|
|
18920
19142
|
"use strict";
|
|
18921
19143
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18922
19144
|
if (k2 === undefined) k2 = k;
|
|
@@ -18937,27 +19159,27 @@ __exportStar(require("./avaliador-sintatico-interface"), exports);
|
|
|
18937
19159
|
__exportStar(require("./correcao-implementacao-interface"), exports);
|
|
18938
19160
|
__exportStar(require("./membro-interface-faltando-interface"), exports);
|
|
18939
19161
|
|
|
18940
|
-
},{"./avaliador-sintatico-interface":
|
|
19162
|
+
},{"./avaliador-sintatico-interface":148,"./correcao-implementacao-interface":149,"./membro-interface-faltando-interface":151}],151:[function(require,module,exports){
|
|
18941
19163
|
"use strict";
|
|
18942
19164
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18943
19165
|
|
|
18944
|
-
},{}],
|
|
19166
|
+
},{}],152:[function(require,module,exports){
|
|
18945
19167
|
"use strict";
|
|
18946
19168
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18947
19169
|
|
|
18948
|
-
},{}],
|
|
19170
|
+
},{}],153:[function(require,module,exports){
|
|
18949
19171
|
"use strict";
|
|
18950
19172
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18951
19173
|
|
|
18952
|
-
},{}],
|
|
19174
|
+
},{}],154:[function(require,module,exports){
|
|
18953
19175
|
"use strict";
|
|
18954
19176
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18955
19177
|
|
|
18956
|
-
},{}],
|
|
19178
|
+
},{}],155:[function(require,module,exports){
|
|
18957
19179
|
"use strict";
|
|
18958
19180
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18959
19181
|
|
|
18960
|
-
},{}],
|
|
19182
|
+
},{}],156:[function(require,module,exports){
|
|
18961
19183
|
"use strict";
|
|
18962
19184
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18963
19185
|
if (k2 === undefined) k2 = k;
|
|
@@ -18977,11 +19199,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
18977
19199
|
__exportStar(require("./caminho-escolha-interface"), exports);
|
|
18978
19200
|
__exportStar(require("./construto-interface"), exports);
|
|
18979
19201
|
|
|
18980
|
-
},{"./caminho-escolha-interface":
|
|
19202
|
+
},{"./caminho-escolha-interface":154,"./construto-interface":155}],157:[function(require,module,exports){
|
|
18981
19203
|
"use strict";
|
|
18982
19204
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18983
19205
|
|
|
18984
|
-
},{}],
|
|
19206
|
+
},{}],158:[function(require,module,exports){
|
|
18985
19207
|
"use strict";
|
|
18986
19208
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18987
19209
|
if (k2 === undefined) k2 = k;
|
|
@@ -19000,15 +19222,15 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
19000
19222
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19001
19223
|
__exportStar(require("./caminho-se-senao-interface"), exports);
|
|
19002
19224
|
|
|
19003
|
-
},{"./caminho-se-senao-interface":
|
|
19225
|
+
},{"./caminho-se-senao-interface":157}],159:[function(require,module,exports){
|
|
19004
19226
|
"use strict";
|
|
19005
19227
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19006
19228
|
|
|
19007
|
-
},{}],
|
|
19229
|
+
},{}],160:[function(require,module,exports){
|
|
19008
19230
|
"use strict";
|
|
19009
19231
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19010
19232
|
|
|
19011
|
-
},{}],
|
|
19233
|
+
},{}],161:[function(require,module,exports){
|
|
19012
19234
|
"use strict";
|
|
19013
19235
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19014
19236
|
if (k2 === undefined) k2 = k;
|
|
@@ -19030,19 +19252,19 @@ __exportStar(require("./fazer-interface"), exports);
|
|
|
19030
19252
|
__exportStar(require("./para-cada-interface"), exports);
|
|
19031
19253
|
__exportStar(require("./para-interface"), exports);
|
|
19032
19254
|
|
|
19033
|
-
},{"./enquanto-interface":
|
|
19255
|
+
},{"./enquanto-interface":159,"./fazer-interface":160,"./para-cada-interface":162,"./para-interface":163}],162:[function(require,module,exports){
|
|
19034
19256
|
"use strict";
|
|
19035
19257
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19036
19258
|
|
|
19037
|
-
},{}],
|
|
19259
|
+
},{}],163:[function(require,module,exports){
|
|
19038
19260
|
"use strict";
|
|
19039
19261
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19040
19262
|
|
|
19041
|
-
},{}],
|
|
19263
|
+
},{}],164:[function(require,module,exports){
|
|
19042
19264
|
"use strict";
|
|
19043
19265
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19044
19266
|
|
|
19045
|
-
},{}],
|
|
19267
|
+
},{}],165:[function(require,module,exports){
|
|
19046
19268
|
"use strict";
|
|
19047
19269
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19048
19270
|
if (k2 === undefined) k2 = k;
|
|
@@ -19061,23 +19283,27 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
19061
19283
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19062
19284
|
__exportStar(require("./retorno-resolvedor-interface"), exports);
|
|
19063
19285
|
|
|
19064
|
-
},{"./retorno-resolvedor-interface":
|
|
19286
|
+
},{"./retorno-resolvedor-interface":166}],166:[function(require,module,exports){
|
|
19065
19287
|
"use strict";
|
|
19066
19288
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19067
19289
|
|
|
19068
|
-
},{}],
|
|
19290
|
+
},{}],167:[function(require,module,exports){
|
|
19069
19291
|
"use strict";
|
|
19070
19292
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19071
19293
|
|
|
19072
|
-
},{}],
|
|
19294
|
+
},{}],168:[function(require,module,exports){
|
|
19073
19295
|
"use strict";
|
|
19074
19296
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19075
19297
|
|
|
19076
|
-
},{}],
|
|
19298
|
+
},{}],169:[function(require,module,exports){
|
|
19299
|
+
"use strict";
|
|
19300
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19301
|
+
|
|
19302
|
+
},{}],170:[function(require,module,exports){
|
|
19077
19303
|
"use strict";
|
|
19078
19304
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19079
19305
|
|
|
19080
|
-
},{}],
|
|
19306
|
+
},{}],171:[function(require,module,exports){
|
|
19081
19307
|
"use strict";
|
|
19082
19308
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19083
19309
|
exports.DiagnosticoSeveridade = void 0;
|
|
@@ -19089,11 +19315,11 @@ var DiagnosticoSeveridade;
|
|
|
19089
19315
|
DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
|
|
19090
19316
|
})(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
|
|
19091
19317
|
|
|
19092
|
-
},{}],
|
|
19318
|
+
},{}],172:[function(require,module,exports){
|
|
19093
19319
|
"use strict";
|
|
19094
19320
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19095
19321
|
|
|
19096
|
-
},{}],
|
|
19322
|
+
},{}],173:[function(require,module,exports){
|
|
19097
19323
|
"use strict";
|
|
19098
19324
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19099
19325
|
if (k2 === undefined) k2 = k;
|
|
@@ -19110,19 +19336,20 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
19110
19336
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
19111
19337
|
};
|
|
19112
19338
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19339
|
+
__exportStar(require("./correcao-implementacao-metodo-interface"), exports);
|
|
19113
19340
|
__exportStar(require("./correcao-sugerida-interface"), exports);
|
|
19114
19341
|
__exportStar(require("./diagnostico-analisador-semantico-interface"), exports);
|
|
19115
19342
|
__exportStar(require("./erro-interpretador-interface"), exports);
|
|
19116
19343
|
|
|
19117
|
-
},{"./correcao-sugerida-interface":
|
|
19344
|
+
},{"./correcao-implementacao-metodo-interface":169,"./correcao-sugerida-interface":170,"./diagnostico-analisador-semantico-interface":171,"./erro-interpretador-interface":172}],174:[function(require,module,exports){
|
|
19118
19345
|
"use strict";
|
|
19119
19346
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19120
19347
|
|
|
19121
|
-
},{}],
|
|
19348
|
+
},{}],175:[function(require,module,exports){
|
|
19122
19349
|
"use strict";
|
|
19123
19350
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19124
19351
|
|
|
19125
|
-
},{}],
|
|
19352
|
+
},{}],176:[function(require,module,exports){
|
|
19126
19353
|
"use strict";
|
|
19127
19354
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19128
19355
|
if (k2 === undefined) k2 = k;
|
|
@@ -19171,47 +19398,47 @@ __exportStar(require("./erros"), exports);
|
|
|
19171
19398
|
__exportStar(require("./retornos"), exports);
|
|
19172
19399
|
__exportStar(require("./tradutores"), exports);
|
|
19173
19400
|
|
|
19174
|
-
},{"./avaliador-sintatico":
|
|
19401
|
+
},{"./avaliador-sintatico":150,"./componente-modulo-classe-interface":152,"./componente-modulo-funcao-interface":153,"./construtos":156,"./declaracoes":158,"./delegua":161,"./depuracao":164,"./egua-classico":165,"./entrada-tabela-diagnostico-semantico-interface":167,"./entrada-tabela-diagnosticos-sintatico-interface":168,"./erros":173,"./estilizador/estilizador-interface":174,"./formatador-comum-interface":175,"./interpretador-com-depuracao-interface":177,"./interpretador-interface":178,"./iteravel-interface":179,"./lexador-interface":180,"./modulo-interface":181,"./parametro-interface":182,"./pilha-interface":183,"./primitiva-interface":184,"./resolvedor-interface":185,"./resultado-parcial-interpretador-interface":186,"./retornos":187,"./retornos/retorno-execucao-interface":190,"./simbolo-interface":193,"./tradutores":195,"./tradutores/tradutor-interface":196,"./variavel-interface":197,"./visitante-comum-interface":198,"./visitante-delegua-interface":199}],177:[function(require,module,exports){
|
|
19175
19402
|
"use strict";
|
|
19176
19403
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19177
19404
|
|
|
19178
|
-
},{}],
|
|
19405
|
+
},{}],178:[function(require,module,exports){
|
|
19179
19406
|
"use strict";
|
|
19180
19407
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19181
19408
|
|
|
19182
|
-
},{}],
|
|
19409
|
+
},{}],179:[function(require,module,exports){
|
|
19183
19410
|
"use strict";
|
|
19184
19411
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19185
19412
|
|
|
19186
|
-
},{}],
|
|
19413
|
+
},{}],180:[function(require,module,exports){
|
|
19187
19414
|
"use strict";
|
|
19188
19415
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19189
19416
|
|
|
19190
|
-
},{}],
|
|
19417
|
+
},{}],181:[function(require,module,exports){
|
|
19191
19418
|
"use strict";
|
|
19192
19419
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19193
19420
|
|
|
19194
|
-
},{}],
|
|
19421
|
+
},{}],182:[function(require,module,exports){
|
|
19195
19422
|
"use strict";
|
|
19196
19423
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19197
19424
|
|
|
19198
|
-
},{}],
|
|
19425
|
+
},{}],183:[function(require,module,exports){
|
|
19199
19426
|
"use strict";
|
|
19200
19427
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19201
19428
|
|
|
19202
|
-
},{}],
|
|
19429
|
+
},{}],184:[function(require,module,exports){
|
|
19203
19430
|
"use strict";
|
|
19204
19431
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19205
19432
|
|
|
19206
|
-
},{}],
|
|
19433
|
+
},{}],185:[function(require,module,exports){
|
|
19207
19434
|
"use strict";
|
|
19208
19435
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19209
19436
|
|
|
19210
|
-
},{}],
|
|
19437
|
+
},{}],186:[function(require,module,exports){
|
|
19211
19438
|
"use strict";
|
|
19212
19439
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19213
19440
|
|
|
19214
|
-
},{}],
|
|
19441
|
+
},{}],187:[function(require,module,exports){
|
|
19215
19442
|
"use strict";
|
|
19216
19443
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19217
19444
|
if (k2 === undefined) k2 = k;
|
|
@@ -19234,35 +19461,35 @@ __exportStar(require("./retorno-execucao-interface"), exports);
|
|
|
19234
19461
|
__exportStar(require("./retorno-interpretador-interface"), exports);
|
|
19235
19462
|
__exportStar(require("./retorno-lexador-interface"), exports);
|
|
19236
19463
|
|
|
19237
|
-
},{"./retorno-analisador-semantico-interface":
|
|
19464
|
+
},{"./retorno-analisador-semantico-interface":188,"./retorno-avaliador-sintatico-interface":189,"./retorno-execucao-interface":190,"./retorno-interpretador-interface":191,"./retorno-lexador-interface":192}],188:[function(require,module,exports){
|
|
19238
19465
|
"use strict";
|
|
19239
19466
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19240
19467
|
|
|
19241
|
-
},{}],
|
|
19468
|
+
},{}],189:[function(require,module,exports){
|
|
19242
19469
|
"use strict";
|
|
19243
19470
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19244
19471
|
|
|
19245
|
-
},{}],
|
|
19472
|
+
},{}],190:[function(require,module,exports){
|
|
19246
19473
|
"use strict";
|
|
19247
19474
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19248
19475
|
|
|
19249
|
-
},{}],
|
|
19476
|
+
},{}],191:[function(require,module,exports){
|
|
19250
19477
|
"use strict";
|
|
19251
19478
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19252
19479
|
|
|
19253
|
-
},{}],
|
|
19480
|
+
},{}],192:[function(require,module,exports){
|
|
19254
19481
|
"use strict";
|
|
19255
19482
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19256
19483
|
|
|
19257
|
-
},{}],
|
|
19484
|
+
},{}],193:[function(require,module,exports){
|
|
19258
19485
|
"use strict";
|
|
19259
19486
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19260
19487
|
|
|
19261
|
-
},{}],
|
|
19488
|
+
},{}],194:[function(require,module,exports){
|
|
19262
19489
|
"use strict";
|
|
19263
19490
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19264
19491
|
|
|
19265
|
-
},{}],
|
|
19492
|
+
},{}],195:[function(require,module,exports){
|
|
19266
19493
|
"use strict";
|
|
19267
19494
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19268
19495
|
if (k2 === undefined) k2 = k;
|
|
@@ -19282,23 +19509,23 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
19282
19509
|
__exportStar(require("./contexto-funcao-interface"), exports);
|
|
19283
19510
|
__exportStar(require("./tradutor-interface"), exports);
|
|
19284
19511
|
|
|
19285
|
-
},{"./contexto-funcao-interface":
|
|
19512
|
+
},{"./contexto-funcao-interface":194,"./tradutor-interface":196}],196:[function(require,module,exports){
|
|
19286
19513
|
"use strict";
|
|
19287
19514
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19288
19515
|
|
|
19289
|
-
},{}],
|
|
19516
|
+
},{}],197:[function(require,module,exports){
|
|
19290
19517
|
"use strict";
|
|
19291
19518
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19292
19519
|
|
|
19293
|
-
},{}],
|
|
19520
|
+
},{}],198:[function(require,module,exports){
|
|
19294
19521
|
"use strict";
|
|
19295
19522
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19296
19523
|
|
|
19297
|
-
},{}],
|
|
19524
|
+
},{}],199:[function(require,module,exports){
|
|
19298
19525
|
"use strict";
|
|
19299
19526
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19300
19527
|
|
|
19301
|
-
},{}],
|
|
19528
|
+
},{}],200:[function(require,module,exports){
|
|
19302
19529
|
"use strict";
|
|
19303
19530
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19304
19531
|
if (k2 === undefined) k2 = k;
|
|
@@ -19913,7 +20140,7 @@ function obterAjudaFuncaoPadrao(funcaoPadrao) {
|
|
|
19913
20140
|
}
|
|
19914
20141
|
}
|
|
19915
20142
|
|
|
19916
|
-
},{"../bibliotecas/biblioteca-global":29,"../construtos":
|
|
20143
|
+
},{"../bibliotecas/biblioteca-global":29,"../construtos":67,"./estruturas/delegua-funcao":206,"./estruturas/descritor-tipo-classe":207,"./estruturas/funcao-padrao":208,"./estruturas/objeto-delegua-classe":214}],201:[function(require,module,exports){
|
|
19917
20144
|
"use strict";
|
|
19918
20145
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19919
20146
|
exports.EspacoMemoria = void 0;
|
|
@@ -19938,7 +20165,7 @@ class EspacoMemoria {
|
|
|
19938
20165
|
}
|
|
19939
20166
|
exports.EspacoMemoria = EspacoMemoria;
|
|
19940
20167
|
|
|
19941
|
-
},{}],
|
|
20168
|
+
},{}],202:[function(require,module,exports){
|
|
19942
20169
|
"use strict";
|
|
19943
20170
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19944
20171
|
exports.Chamavel = void 0;
|
|
@@ -19955,7 +20182,7 @@ class Chamavel {
|
|
|
19955
20182
|
}
|
|
19956
20183
|
exports.Chamavel = Chamavel;
|
|
19957
20184
|
|
|
19958
|
-
},{}],
|
|
20185
|
+
},{}],203:[function(require,module,exports){
|
|
19959
20186
|
"use strict";
|
|
19960
20187
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19961
20188
|
exports.ClasseDeModulo = void 0;
|
|
@@ -19976,7 +20203,7 @@ class ClasseDeModulo extends chamavel_1.Chamavel {
|
|
|
19976
20203
|
}
|
|
19977
20204
|
exports.ClasseDeModulo = ClasseDeModulo;
|
|
19978
20205
|
|
|
19979
|
-
},{"./chamavel":
|
|
20206
|
+
},{"./chamavel":202}],204:[function(require,module,exports){
|
|
19980
20207
|
"use strict";
|
|
19981
20208
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19982
20209
|
exports.ClassePadrao = void 0;
|
|
@@ -20017,7 +20244,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
|
|
|
20017
20244
|
}
|
|
20018
20245
|
exports.ClassePadrao = ClassePadrao;
|
|
20019
20246
|
|
|
20020
|
-
},{"./chamavel":
|
|
20247
|
+
},{"./chamavel":202}],205:[function(require,module,exports){
|
|
20021
20248
|
"use strict";
|
|
20022
20249
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20023
20250
|
exports.DeleguaFuncaoNativa = void 0;
|
|
@@ -20060,7 +20287,7 @@ class DeleguaFuncaoNativa extends delegua_funcao_1.DeleguaFuncao {
|
|
|
20060
20287
|
}
|
|
20061
20288
|
exports.DeleguaFuncaoNativa = DeleguaFuncaoNativa;
|
|
20062
20289
|
|
|
20063
|
-
},{"./delegua-funcao":
|
|
20290
|
+
},{"./delegua-funcao":206}],206:[function(require,module,exports){
|
|
20064
20291
|
"use strict";
|
|
20065
20292
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20066
20293
|
exports.DeleguaFuncao = void 0;
|
|
@@ -20252,7 +20479,7 @@ function tipoDeDados(valor) {
|
|
|
20252
20479
|
}
|
|
20253
20480
|
}
|
|
20254
20481
|
|
|
20255
|
-
},{"../../declaracoes":
|
|
20482
|
+
},{"../../declaracoes":116,"../../quebras":247,"../espaco-memoria":201,"./chamavel":202,"./objeto-delegua-classe":214}],207:[function(require,module,exports){
|
|
20256
20483
|
"use strict";
|
|
20257
20484
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20258
20485
|
exports.DescritorTipoClasse = void 0;
|
|
@@ -20567,7 +20794,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
|
|
|
20567
20794
|
}
|
|
20568
20795
|
exports.DescritorTipoClasse = DescritorTipoClasse;
|
|
20569
20796
|
|
|
20570
|
-
},{"../../excecoes":
|
|
20797
|
+
},{"../../excecoes":140,"./chamavel":202,"./metodo-polimorfico":210,"./objeto-delegua-classe":214}],208:[function(require,module,exports){
|
|
20571
20798
|
"use strict";
|
|
20572
20799
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20573
20800
|
exports.FuncaoPadrao = void 0;
|
|
@@ -20606,7 +20833,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
|
|
|
20606
20833
|
}
|
|
20607
20834
|
exports.FuncaoPadrao = FuncaoPadrao;
|
|
20608
20835
|
|
|
20609
|
-
},{"./chamavel":
|
|
20836
|
+
},{"./chamavel":202}],209:[function(require,module,exports){
|
|
20610
20837
|
"use strict";
|
|
20611
20838
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
20612
20839
|
if (k2 === undefined) k2 = k;
|
|
@@ -20639,7 +20866,7 @@ __exportStar(require("./objeto-padrao"), exports);
|
|
|
20639
20866
|
__exportStar(require("./referencia-montao"), exports);
|
|
20640
20867
|
__exportStar(require("./super-proxy"), exports);
|
|
20641
20868
|
|
|
20642
|
-
},{"./chamavel":
|
|
20869
|
+
},{"./chamavel":202,"./classe-de-modulo":203,"./classe-padrao":204,"./delegua-funcao":206,"./delegua-funcao-nativa":205,"./descritor-tipo-classe":207,"./funcao-padrao":208,"./metodo-polimorfico":210,"./metodo-primitiva":211,"./modulo":212,"./objeto-base":213,"./objeto-delegua-classe":214,"./objeto-padrao":215,"./referencia-montao":216,"./super-proxy":217}],210:[function(require,module,exports){
|
|
20643
20870
|
"use strict";
|
|
20644
20871
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20645
20872
|
exports.MetodoPolimorfico = void 0;
|
|
@@ -20817,7 +21044,7 @@ class MetodoPolimorfico extends chamavel_1.Chamavel {
|
|
|
20817
21044
|
}
|
|
20818
21045
|
exports.MetodoPolimorfico = MetodoPolimorfico;
|
|
20819
21046
|
|
|
20820
|
-
},{"../../excecoes":
|
|
21047
|
+
},{"../../excecoes":140,"../../inferenciador":146,"./chamavel":202}],211:[function(require,module,exports){
|
|
20821
21048
|
"use strict";
|
|
20822
21049
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20823
21050
|
exports.MetodoPrimitiva = void 0;
|
|
@@ -20863,7 +21090,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
|
|
|
20863
21090
|
}
|
|
20864
21091
|
exports.MetodoPrimitiva = MetodoPrimitiva;
|
|
20865
21092
|
|
|
20866
|
-
},{"./chamavel":
|
|
21093
|
+
},{"./chamavel":202}],212:[function(require,module,exports){
|
|
20867
21094
|
"use strict";
|
|
20868
21095
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20869
21096
|
exports.DeleguaModulo = void 0;
|
|
@@ -20889,7 +21116,7 @@ class DeleguaModulo {
|
|
|
20889
21116
|
}
|
|
20890
21117
|
exports.DeleguaModulo = DeleguaModulo;
|
|
20891
21118
|
|
|
20892
|
-
},{}],
|
|
21119
|
+
},{}],213:[function(require,module,exports){
|
|
20893
21120
|
"use strict";
|
|
20894
21121
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20895
21122
|
exports.OBJETO_BASE = void 0;
|
|
@@ -20963,7 +21190,7 @@ function criarDescritorObjeto() {
|
|
|
20963
21190
|
}
|
|
20964
21191
|
exports.OBJETO_BASE = criarDescritorObjeto();
|
|
20965
21192
|
|
|
20966
|
-
},{"./delegua-funcao-nativa":
|
|
21193
|
+
},{"./delegua-funcao-nativa":205,"./descritor-tipo-classe":207}],214:[function(require,module,exports){
|
|
20967
21194
|
"use strict";
|
|
20968
21195
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20969
21196
|
exports.ObjetoDeleguaClasse = void 0;
|
|
@@ -21145,7 +21372,7 @@ class ObjetoDeleguaClasse {
|
|
|
21145
21372
|
}
|
|
21146
21373
|
exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
|
|
21147
21374
|
|
|
21148
|
-
},{"../../excecoes":
|
|
21375
|
+
},{"../../excecoes":140}],215:[function(require,module,exports){
|
|
21149
21376
|
"use strict";
|
|
21150
21377
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21151
21378
|
exports.ObjetoPadrao = void 0;
|
|
@@ -21179,7 +21406,7 @@ class ObjetoPadrao {
|
|
|
21179
21406
|
}
|
|
21180
21407
|
exports.ObjetoPadrao = ObjetoPadrao;
|
|
21181
21408
|
|
|
21182
|
-
},{}],
|
|
21409
|
+
},{}],216:[function(require,module,exports){
|
|
21183
21410
|
"use strict";
|
|
21184
21411
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21185
21412
|
exports.ReferenciaMontao = void 0;
|
|
@@ -21204,7 +21431,7 @@ class ReferenciaMontao {
|
|
|
21204
21431
|
}
|
|
21205
21432
|
exports.ReferenciaMontao = ReferenciaMontao;
|
|
21206
21433
|
|
|
21207
|
-
},{}],
|
|
21434
|
+
},{}],217:[function(require,module,exports){
|
|
21208
21435
|
"use strict";
|
|
21209
21436
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21210
21437
|
exports.SuperProxy = void 0;
|
|
@@ -21243,7 +21470,7 @@ class SuperProxy extends chamavel_1.Chamavel {
|
|
|
21243
21470
|
}
|
|
21244
21471
|
exports.SuperProxy = SuperProxy;
|
|
21245
21472
|
|
|
21246
|
-
},{"./chamavel":
|
|
21473
|
+
},{"./chamavel":202}],218:[function(require,module,exports){
|
|
21247
21474
|
"use strict";
|
|
21248
21475
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
21249
21476
|
if (k2 === undefined) k2 = k;
|
|
@@ -21264,7 +21491,7 @@ __exportStar(require("./estruturas"), exports);
|
|
|
21264
21491
|
__exportStar(require("./interpretador"), exports);
|
|
21265
21492
|
__exportStar(require("./interpretador-base"), exports);
|
|
21266
21493
|
|
|
21267
|
-
},{"./estruturas":
|
|
21494
|
+
},{"./estruturas":209,"./interpretador":220,"./interpretador-base":219}],219:[function(require,module,exports){
|
|
21268
21495
|
"use strict";
|
|
21269
21496
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21270
21497
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21575,6 +21802,9 @@ class InterpretadorBase {
|
|
|
21575
21802
|
/* if (expressao === null || expressao === undefined) {
|
|
21576
21803
|
console.log('Aqui');
|
|
21577
21804
|
} */
|
|
21805
|
+
if (expressao.hashArquivo >= 0 && expressao.linha >= 0) {
|
|
21806
|
+
this.registrarExpressao?.(expressao.hashArquivo, expressao.linha);
|
|
21807
|
+
}
|
|
21578
21808
|
return await expressao.aceitar(this);
|
|
21579
21809
|
}
|
|
21580
21810
|
/**
|
|
@@ -22162,15 +22392,19 @@ class InterpretadorBase {
|
|
|
22162
22392
|
}
|
|
22163
22393
|
if (entidadeChamada instanceof estruturas_1.FuncaoPadrao) {
|
|
22164
22394
|
try {
|
|
22165
|
-
return entidadeChamada.chamar(this, argumentos.map((a) => a && this.resolverValor(a.valor)), expressao.entidadeChamada.simbolo // TODO: O que exatamente pode ser aqui?
|
|
22395
|
+
return await entidadeChamada.chamar(this, argumentos.map((a) => a && this.resolverValor(a.valor)), expressao.entidadeChamada.simbolo // TODO: O que exatamente pode ser aqui?
|
|
22166
22396
|
);
|
|
22167
22397
|
}
|
|
22168
22398
|
catch (erro) {
|
|
22399
|
+
if (this.emDeclaracaoTente) {
|
|
22400
|
+
return Promise.reject(erro);
|
|
22401
|
+
}
|
|
22169
22402
|
this.erros.push({
|
|
22170
22403
|
erroInterno: erro,
|
|
22171
22404
|
linha: expressao.linha,
|
|
22172
22405
|
hashArquivo: expressao.hashArquivo,
|
|
22173
22406
|
});
|
|
22407
|
+
return;
|
|
22174
22408
|
}
|
|
22175
22409
|
}
|
|
22176
22410
|
// Por algum motivo misterioso, `entidadeChamada instanceof Chamavel` dá `false` em Liquido,
|
|
@@ -22342,6 +22576,7 @@ class InterpretadorBase {
|
|
|
22342
22576
|
!this.eVerdadeiro(await this.avaliar(declaracao.condicao))) {
|
|
22343
22577
|
break;
|
|
22344
22578
|
}
|
|
22579
|
+
this.registrarRamo?.(declaracao.hashArquivo, declaracao.linha, 'iteracao');
|
|
22345
22580
|
try {
|
|
22346
22581
|
await this.cederControle(++iteracoes);
|
|
22347
22582
|
retornoExecucao = await this.executar(declaracao.corpo);
|
|
@@ -22390,6 +22625,7 @@ class InterpretadorBase {
|
|
|
22390
22625
|
let iteracoes = 0;
|
|
22391
22626
|
while (!(retornoExecucao && retornoExecucao.valorRetornado instanceof quebras_1.Quebra) &&
|
|
22392
22627
|
declaracao.posicaoAtual < valorVetorResolvido.length) {
|
|
22628
|
+
this.registrarRamo?.(declaracao.hashArquivo, declaracao.linha, 'iteracao');
|
|
22393
22629
|
try {
|
|
22394
22630
|
await this.cederControle(++iteracoes);
|
|
22395
22631
|
if (declaracao.variavelIteracao instanceof construtos_1.Variavel) {
|
|
@@ -22434,18 +22670,22 @@ class InterpretadorBase {
|
|
|
22434
22670
|
async visitarDeclaracaoSe(declaracao) {
|
|
22435
22671
|
const avaliacaoCondicaoSe = await this.avaliar(declaracao.condicao);
|
|
22436
22672
|
if (this.eVerdadeiro(avaliacaoCondicaoSe)) {
|
|
22673
|
+
this.registrarRamo?.(declaracao.hashArquivo, declaracao.linha, 'verdadeiro');
|
|
22437
22674
|
return await this.executar(declaracao.caminhoEntao);
|
|
22438
22675
|
}
|
|
22439
22676
|
const declaracaoCaminhosSeSenao = declaracao.caminhosSeSenao || [];
|
|
22440
22677
|
for (let i = 0; i < declaracaoCaminhosSeSenao.length; i++) {
|
|
22441
22678
|
const atual = declaracaoCaminhosSeSenao[i];
|
|
22442
22679
|
if (this.eVerdadeiro(await this.avaliar(atual.condicao))) {
|
|
22680
|
+
this.registrarRamo?.(declaracao.hashArquivo, declaracao.linha, 'verdadeiro');
|
|
22443
22681
|
return await this.executar(atual.caminho);
|
|
22444
22682
|
}
|
|
22445
22683
|
}
|
|
22446
22684
|
if (declaracao.caminhoSenao) {
|
|
22685
|
+
this.registrarRamo?.(declaracao.hashArquivo, declaracao.linha, 'senao');
|
|
22447
22686
|
return await this.executar(declaracao.caminhoSenao);
|
|
22448
22687
|
}
|
|
22688
|
+
this.registrarRamo?.(declaracao.hashArquivo, declaracao.linha, 'falso');
|
|
22449
22689
|
return null;
|
|
22450
22690
|
}
|
|
22451
22691
|
async visitarDeclaracaoEnquanto(declaracao) {
|
|
@@ -22453,6 +22693,7 @@ class InterpretadorBase {
|
|
|
22453
22693
|
let iteracoes = 0;
|
|
22454
22694
|
while (!(retornoExecucao && retornoExecucao.valorRetornado instanceof quebras_1.Quebra) &&
|
|
22455
22695
|
this.eVerdadeiro(await this.avaliar(declaracao.condicao))) {
|
|
22696
|
+
this.registrarRamo?.(declaracao.hashArquivo, declaracao.linha, 'iteracao');
|
|
22456
22697
|
try {
|
|
22457
22698
|
await this.cederControle(++iteracoes);
|
|
22458
22699
|
retornoExecucao = await this.executar(declaracao.corpo);
|
|
@@ -22502,6 +22743,7 @@ class InterpretadorBase {
|
|
|
22502
22743
|
}
|
|
22503
22744
|
}
|
|
22504
22745
|
if (caminhoPadrao !== null && !encontrado) {
|
|
22746
|
+
this.registrarRamo?.(declaracao.hashArquivo, declaracao.linha, 'caso-padrao');
|
|
22505
22747
|
await this.executarBloco(caminhoPadrao.declaracoes);
|
|
22506
22748
|
}
|
|
22507
22749
|
}
|
|
@@ -22518,6 +22760,7 @@ class InterpretadorBase {
|
|
|
22518
22760
|
let retornoExecucao = undefined;
|
|
22519
22761
|
let iteracoes = 0;
|
|
22520
22762
|
do {
|
|
22763
|
+
this.registrarRamo?.(declaracao.hashArquivo, declaracao.linha, 'iteracao');
|
|
22521
22764
|
try {
|
|
22522
22765
|
await this.cederControle(++iteracoes);
|
|
22523
22766
|
retornoExecucao = await this.executar(declaracao.caminhoFazer);
|
|
@@ -23475,7 +23718,7 @@ class InterpretadorBase {
|
|
|
23475
23718
|
}
|
|
23476
23719
|
exports.InterpretadorBase = InterpretadorBase;
|
|
23477
23720
|
|
|
23478
|
-
},{"../avaliador-sintatico":22,"../bibliotecas/primitivas-dicionario":31,"../bibliotecas/primitivas-vetor":34,"../construtos":
|
|
23721
|
+
},{"../avaliador-sintatico":22,"../bibliotecas/primitivas-dicionario":31,"../bibliotecas/primitivas-vetor":34,"../construtos":67,"../excecoes":140,"../inferenciador":146,"../lexador":238,"../quebras":247,"../tipos-de-dados/delegua":248,"../tipos-de-dados/primitivos":250,"../tipos-de-simbolos/delegua":253,"./espaco-memoria":201,"./estruturas":209,"./estruturas/metodo-primitiva":211,"./pilha-escopos-execucao":222,"browser-process-hrtime":446}],220:[function(require,module,exports){
|
|
23479
23722
|
"use strict";
|
|
23480
23723
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
23481
23724
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -23491,6 +23734,8 @@ const declaracoes_1 = require("../declaracoes");
|
|
|
23491
23734
|
const quebras_1 = require("../quebras");
|
|
23492
23735
|
const montao_1 = require("./montao");
|
|
23493
23736
|
const comum_1 = require("./comum");
|
|
23737
|
+
const modulo_testes_1 = require("../bibliotecas/testes/modulo-testes");
|
|
23738
|
+
const registro_testes_1 = require("../bibliotecas/testes/registro-testes");
|
|
23494
23739
|
const primitivas_dicionario_1 = __importDefault(require("../bibliotecas/primitivas-dicionario"));
|
|
23495
23740
|
const primitivas_numero_1 = __importDefault(require("../bibliotecas/primitivas-numero"));
|
|
23496
23741
|
const primitivas_texto_1 = __importDefault(require("../bibliotecas/primitivas-texto"));
|
|
@@ -23507,6 +23752,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
23507
23752
|
constructor(diretorioBase, performance = false, funcaoDeRetorno = undefined, funcaoDeRetornoMesmaLinha = undefined) {
|
|
23508
23753
|
super(diretorioBase, performance, funcaoDeRetorno, funcaoDeRetornoMesmaLinha);
|
|
23509
23754
|
this.acumularRetornos = false;
|
|
23755
|
+
this.registroTestes = new registro_testes_1.RegistroTestes();
|
|
23510
23756
|
this.montao = new montao_1.Montao();
|
|
23511
23757
|
this.pontoInicializacaoBibliotecasGlobais();
|
|
23512
23758
|
}
|
|
@@ -23692,6 +23938,27 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
23692
23938
|
// Interfaces não possuem comportamento em tempo de execução.
|
|
23693
23939
|
return Promise.resolve();
|
|
23694
23940
|
}
|
|
23941
|
+
async visitarDeclaracaoImportar(declaracao) {
|
|
23942
|
+
const resultadoCaminho = await this.avaliar(declaracao.caminho);
|
|
23943
|
+
const caminho = this.resolverValor(resultadoCaminho);
|
|
23944
|
+
if (caminho === 'testes') {
|
|
23945
|
+
this.registroTestes = new registro_testes_1.RegistroTestes();
|
|
23946
|
+
const modulo = (0, modulo_testes_1.construirModuloDeTestes)(this, this.registroTestes);
|
|
23947
|
+
if (declaracao.simboloTudo !== null) {
|
|
23948
|
+
this.pilhaEscoposExecucao.definirVariavel(declaracao.simboloTudo.lexema, modulo);
|
|
23949
|
+
}
|
|
23950
|
+
else {
|
|
23951
|
+
for (const elemento of declaracao.elementosImportacao) {
|
|
23952
|
+
const componente = modulo.componentes[elemento.lexema];
|
|
23953
|
+
if (componente !== undefined) {
|
|
23954
|
+
this.pilhaEscoposExecucao.definirVariavel(elemento.lexema, componente);
|
|
23955
|
+
}
|
|
23956
|
+
}
|
|
23957
|
+
}
|
|
23958
|
+
return modulo;
|
|
23959
|
+
}
|
|
23960
|
+
return Promise.reject('Importação de arquivos não suportada neste interpretador. Use delegua-node para importações de arquivos.');
|
|
23961
|
+
}
|
|
23695
23962
|
async visitarDeclaracaoAjuda(declaracao) {
|
|
23696
23963
|
if (declaracao.funcao && declaracao.elemento) {
|
|
23697
23964
|
try {
|
|
@@ -24974,7 +25241,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
24974
25241
|
}
|
|
24975
25242
|
exports.Interpretador = Interpretador;
|
|
24976
25243
|
|
|
24977
|
-
},{"../bibliotecas/dialetos/pitugues/primitivas-tupla":30,"../bibliotecas/primitivas-dicionario":31,"../bibliotecas/primitivas-numero":32,"../bibliotecas/primitivas-texto":33,"../bibliotecas/primitivas-vetor":34,"../construtos":
|
|
25244
|
+
},{"../bibliotecas/dialetos/pitugues/primitivas-tupla":30,"../bibliotecas/primitivas-dicionario":31,"../bibliotecas/primitivas-numero":32,"../bibliotecas/primitivas-texto":33,"../bibliotecas/primitivas-vetor":34,"../bibliotecas/testes/modulo-testes":36,"../bibliotecas/testes/registro-testes":37,"../construtos":67,"../declaracoes":116,"../excecoes":140,"../inferenciador":146,"../quebras":247,"../tipos-de-dados/delegua":248,"../tipos-de-dados/primitivos":250,"../tipos-de-simbolos/delegua":253,"./comum":200,"./estruturas":209,"./interpretador-base":219,"./montao":221}],221:[function(require,module,exports){
|
|
24978
25245
|
"use strict";
|
|
24979
25246
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24980
25247
|
exports.Montao = void 0;
|
|
@@ -25031,7 +25298,7 @@ class Montao {
|
|
|
25031
25298
|
}
|
|
25032
25299
|
exports.Montao = Montao;
|
|
25033
25300
|
|
|
25034
|
-
},{"../excecoes":
|
|
25301
|
+
},{"../excecoes":140,"../geracao-identificadores":144}],222:[function(require,module,exports){
|
|
25035
25302
|
"use strict";
|
|
25036
25303
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25037
25304
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -25362,7 +25629,7 @@ class PilhaEscoposExecucao {
|
|
|
25362
25629
|
}
|
|
25363
25630
|
exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
|
|
25364
25631
|
|
|
25365
|
-
},{"../excecoes":
|
|
25632
|
+
},{"../excecoes":140,"../inferenciador":146,"../lexador":238,"../tipos-de-dados/delegua":248,"./estruturas":209}],223:[function(require,module,exports){
|
|
25366
25633
|
"use strict";
|
|
25367
25634
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
25368
25635
|
if (k2 === undefined) k2 = k;
|
|
@@ -25387,7 +25654,7 @@ __exportStar(require("./lexador-portugol-ipt"), exports);
|
|
|
25387
25654
|
__exportStar(require("./lexador-prisma"), exports);
|
|
25388
25655
|
__exportStar(require("./lexador-tenda"), exports);
|
|
25389
25656
|
|
|
25390
|
-
},{"./lexador-calango":
|
|
25657
|
+
},{"./lexador-calango":224,"./lexador-egua-classico":225,"./lexador-guarani":226,"./lexador-pitugues":227,"./lexador-portugol-ipt":228,"./lexador-prisma":229,"./lexador-tenda":230}],224:[function(require,module,exports){
|
|
25391
25658
|
"use strict";
|
|
25392
25659
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25393
25660
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -25702,7 +25969,7 @@ class LexadorCalango {
|
|
|
25702
25969
|
}
|
|
25703
25970
|
exports.LexadorCalango = LexadorCalango;
|
|
25704
25971
|
|
|
25705
|
-
},{"../../tipos-de-simbolos/calango":
|
|
25972
|
+
},{"../../tipos-de-simbolos/calango":251,"../simbolo":246,"./palavras-reservadas/calango":231}],225:[function(require,module,exports){
|
|
25706
25973
|
"use strict";
|
|
25707
25974
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25708
25975
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -25995,7 +26262,7 @@ class LexadorEguaClassico {
|
|
|
25995
26262
|
}
|
|
25996
26263
|
exports.LexadorEguaClassico = LexadorEguaClassico;
|
|
25997
26264
|
|
|
25998
|
-
},{"../../tipos-de-simbolos/egua-classico":
|
|
26265
|
+
},{"../../tipos-de-simbolos/egua-classico":254,"../simbolo":246,"./palavras-reservadas/egua-classico":232}],226:[function(require,module,exports){
|
|
25999
26266
|
"use strict";
|
|
26000
26267
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26001
26268
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26114,7 +26381,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
|
|
|
26114
26381
|
}
|
|
26115
26382
|
exports.LexadorGuarani = LexadorGuarani;
|
|
26116
26383
|
|
|
26117
|
-
},{"../../tipos-de-simbolos/guarani":
|
|
26384
|
+
},{"../../tipos-de-simbolos/guarani":255,"../lexador-base":240,"./palavras-reservadas/guarani":233}],227:[function(require,module,exports){
|
|
26118
26385
|
"use strict";
|
|
26119
26386
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26120
26387
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26657,7 +26924,7 @@ class LexadorPitugues {
|
|
|
26657
26924
|
}
|
|
26658
26925
|
exports.LexadorPitugues = LexadorPitugues;
|
|
26659
26926
|
|
|
26660
|
-
},{"../../tipos-de-simbolos/pitugues":
|
|
26927
|
+
},{"../../tipos-de-simbolos/pitugues":257,"../simbolo":246,"./palavras-reservadas/pitugues":234,"browser-process-hrtime":446}],228:[function(require,module,exports){
|
|
26661
26928
|
"use strict";
|
|
26662
26929
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26663
26930
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26966,7 +27233,7 @@ class LexadorPortugolIpt {
|
|
|
26966
27233
|
}
|
|
26967
27234
|
exports.LexadorPortugolIpt = LexadorPortugolIpt;
|
|
26968
27235
|
|
|
26969
|
-
},{"../../tipos-de-simbolos/portugol-ipt":
|
|
27236
|
+
},{"../../tipos-de-simbolos/portugol-ipt":258,"../simbolo":246,"./palavras-reservadas/portugol-ipt":235}],229:[function(require,module,exports){
|
|
26970
27237
|
"use strict";
|
|
26971
27238
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26972
27239
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27367,7 +27634,7 @@ class LexadorPrisma {
|
|
|
27367
27634
|
}
|
|
27368
27635
|
exports.LexadorPrisma = LexadorPrisma;
|
|
27369
27636
|
|
|
27370
|
-
},{"../../tipos-de-simbolos/prisma":
|
|
27637
|
+
},{"../../tipos-de-simbolos/prisma":259,"../simbolo":246,"./palavras-reservadas/prisma":236,"browser-process-hrtime":446}],230:[function(require,module,exports){
|
|
27371
27638
|
"use strict";
|
|
27372
27639
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27373
27640
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27761,7 +28028,7 @@ class LexadorTenda {
|
|
|
27761
28028
|
}
|
|
27762
28029
|
exports.LexadorTenda = LexadorTenda;
|
|
27763
28030
|
|
|
27764
|
-
},{"../../tipos-de-simbolos/tenda":
|
|
28031
|
+
},{"../../tipos-de-simbolos/tenda":260,"../simbolo":246,"./palavras-reservadas/tenda":237,"browser-process-hrtime":446}],231:[function(require,module,exports){
|
|
27765
28032
|
"use strict";
|
|
27766
28033
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27767
28034
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27809,7 +28076,7 @@ exports.default = {
|
|
|
27809
28076
|
verdadeiro: calango_1.default.VERDADEIRO,
|
|
27810
28077
|
};
|
|
27811
28078
|
|
|
27812
|
-
},{"../../../tipos-de-simbolos/calango":
|
|
28079
|
+
},{"../../../tipos-de-simbolos/calango":251}],232:[function(require,module,exports){
|
|
27813
28080
|
"use strict";
|
|
27814
28081
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27815
28082
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27850,7 +28117,7 @@ exports.palavrasReservadas = {
|
|
|
27850
28117
|
verdadeiro: egua_classico_1.default.VERDADEIRO,
|
|
27851
28118
|
};
|
|
27852
28119
|
|
|
27853
|
-
},{"../../../tipos-de-simbolos/egua-classico":
|
|
28120
|
+
},{"../../../tipos-de-simbolos/egua-classico":254}],233:[function(require,module,exports){
|
|
27854
28121
|
"use strict";
|
|
27855
28122
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27856
28123
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27862,7 +28129,7 @@ exports.palavrasReservadas = {
|
|
|
27862
28129
|
hai: guarani_1.default.HAI,
|
|
27863
28130
|
};
|
|
27864
28131
|
|
|
27865
|
-
},{"../../../tipos-de-simbolos/guarani":
|
|
28132
|
+
},{"../../../tipos-de-simbolos/guarani":255}],234:[function(require,module,exports){
|
|
27866
28133
|
"use strict";
|
|
27867
28134
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27868
28135
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27924,7 +28191,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
27924
28191
|
verdadeiro: pitugues_1.default.VERDADEIRO,
|
|
27925
28192
|
};
|
|
27926
28193
|
|
|
27927
|
-
},{"../../../tipos-de-simbolos/pitugues":
|
|
28194
|
+
},{"../../../tipos-de-simbolos/pitugues":257}],235:[function(require,module,exports){
|
|
27928
28195
|
"use strict";
|
|
27929
28196
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27930
28197
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27984,7 +28251,7 @@ exports.palavrasReservadas = {
|
|
|
27984
28251
|
não: portugol_ipt_1.default.NAO,
|
|
27985
28252
|
};
|
|
27986
28253
|
|
|
27987
|
-
},{"../../../tipos-de-simbolos/portugol-ipt":
|
|
28254
|
+
},{"../../../tipos-de-simbolos/portugol-ipt":258}],236:[function(require,module,exports){
|
|
27988
28255
|
"use strict";
|
|
27989
28256
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27990
28257
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28035,7 +28302,7 @@ exports.palavrasReservadas = {
|
|
|
28035
28302
|
verdadeiro: prisma_1.default.VERDADEIRO,
|
|
28036
28303
|
};
|
|
28037
28304
|
|
|
28038
|
-
},{"../../../tipos-de-simbolos/prisma":
|
|
28305
|
+
},{"../../../tipos-de-simbolos/prisma":259}],237:[function(require,module,exports){
|
|
28039
28306
|
"use strict";
|
|
28040
28307
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28041
28308
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28093,7 +28360,7 @@ exports.palavrasReservadas = {
|
|
|
28093
28360
|
Texto: tenda_1.default.BIBLIOTECA_GLOBAL,
|
|
28094
28361
|
};
|
|
28095
28362
|
|
|
28096
|
-
},{"../../../tipos-de-simbolos/tenda":
|
|
28363
|
+
},{"../../../tipos-de-simbolos/tenda":260}],238:[function(require,module,exports){
|
|
28097
28364
|
"use strict";
|
|
28098
28365
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
28099
28366
|
if (k2 === undefined) k2 = k;
|
|
@@ -28116,7 +28383,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
|
|
|
28116
28383
|
__exportStar(require("./micro-lexador"), exports);
|
|
28117
28384
|
__exportStar(require("./simbolo"), exports);
|
|
28118
28385
|
|
|
28119
|
-
},{"./dialetos":
|
|
28386
|
+
},{"./dialetos":223,"./lexador":241,"./lexador-base-linha-unica":239,"./micro-lexador":244,"./simbolo":246}],239:[function(require,module,exports){
|
|
28120
28387
|
"use strict";
|
|
28121
28388
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28122
28389
|
exports.LexadorBaseLinhaUnica = void 0;
|
|
@@ -28205,7 +28472,7 @@ class LexadorBaseLinhaUnica {
|
|
|
28205
28472
|
}
|
|
28206
28473
|
exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
|
|
28207
28474
|
|
|
28208
|
-
},{"./simbolo":
|
|
28475
|
+
},{"./simbolo":246}],240:[function(require,module,exports){
|
|
28209
28476
|
"use strict";
|
|
28210
28477
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28211
28478
|
exports.LexadorBase = void 0;
|
|
@@ -28344,7 +28611,7 @@ class LexadorBase {
|
|
|
28344
28611
|
}
|
|
28345
28612
|
exports.LexadorBase = LexadorBase;
|
|
28346
28613
|
|
|
28347
|
-
},{"./simbolo":
|
|
28614
|
+
},{"./simbolo":246}],241:[function(require,module,exports){
|
|
28348
28615
|
"use strict";
|
|
28349
28616
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28350
28617
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29018,7 +29285,7 @@ class Lexador {
|
|
|
29018
29285
|
}
|
|
29019
29286
|
exports.Lexador = Lexador;
|
|
29020
29287
|
|
|
29021
|
-
},{"../tipos-de-simbolos/delegua":
|
|
29288
|
+
},{"../tipos-de-simbolos/delegua":253,"./palavras-reservadas":245,"./simbolo":246,"browser-process-hrtime":446}],242:[function(require,module,exports){
|
|
29022
29289
|
"use strict";
|
|
29023
29290
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29024
29291
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29201,7 +29468,7 @@ function pertenceAoParadigma(lexema, paradigma) {
|
|
|
29201
29468
|
return paradigmaLexema === paradigma;
|
|
29202
29469
|
}
|
|
29203
29470
|
|
|
29204
|
-
},{"../tipos-de-simbolos/delegua":
|
|
29471
|
+
},{"../tipos-de-simbolos/delegua":253}],243:[function(require,module,exports){
|
|
29205
29472
|
"use strict";
|
|
29206
29473
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29207
29474
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29421,7 +29688,7 @@ class MicroLexadorPitugues {
|
|
|
29421
29688
|
}
|
|
29422
29689
|
exports.MicroLexadorPitugues = MicroLexadorPitugues;
|
|
29423
29690
|
|
|
29424
|
-
},{"../tipos-de-simbolos/pitugues":
|
|
29691
|
+
},{"../tipos-de-simbolos/pitugues":257,"./palavras-reservadas":245,"./simbolo":246}],244:[function(require,module,exports){
|
|
29425
29692
|
"use strict";
|
|
29426
29693
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29427
29694
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29659,7 +29926,7 @@ class MicroLexador {
|
|
|
29659
29926
|
}
|
|
29660
29927
|
exports.MicroLexador = MicroLexador;
|
|
29661
29928
|
|
|
29662
|
-
},{"../tipos-de-simbolos/microgramaticas/delegua":
|
|
29929
|
+
},{"../tipos-de-simbolos/microgramaticas/delegua":256,"./palavras-reservadas":245,"./simbolo":246}],245:[function(require,module,exports){
|
|
29663
29930
|
"use strict";
|
|
29664
29931
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29665
29932
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29760,7 +30027,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
29760
30027
|
verdadeiro: delegua_1.default.VERDADEIRO,
|
|
29761
30028
|
};
|
|
29762
30029
|
|
|
29763
|
-
},{"../tipos-de-simbolos/delegua":
|
|
30030
|
+
},{"../tipos-de-simbolos/delegua":253}],246:[function(require,module,exports){
|
|
29764
30031
|
"use strict";
|
|
29765
30032
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29766
30033
|
exports.Simbolo = void 0;
|
|
@@ -29781,7 +30048,7 @@ class Simbolo {
|
|
|
29781
30048
|
}
|
|
29782
30049
|
exports.Simbolo = Simbolo;
|
|
29783
30050
|
|
|
29784
|
-
},{}],
|
|
30051
|
+
},{}],247:[function(require,module,exports){
|
|
29785
30052
|
"use strict";
|
|
29786
30053
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29787
30054
|
exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
|
|
@@ -29806,7 +30073,7 @@ class ContinuarQuebra extends Quebra {
|
|
|
29806
30073
|
}
|
|
29807
30074
|
exports.ContinuarQuebra = ContinuarQuebra;
|
|
29808
30075
|
|
|
29809
|
-
},{}],
|
|
30076
|
+
},{}],248:[function(require,module,exports){
|
|
29810
30077
|
"use strict";
|
|
29811
30078
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29812
30079
|
exports.default = {
|
|
@@ -29840,7 +30107,7 @@ exports.default = {
|
|
|
29840
30107
|
VETOR_TEXTO: 'texto[]',
|
|
29841
30108
|
};
|
|
29842
30109
|
|
|
29843
|
-
},{}],
|
|
30110
|
+
},{}],249:[function(require,module,exports){
|
|
29844
30111
|
"use strict";
|
|
29845
30112
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29846
30113
|
exports.default = {
|
|
@@ -29870,7 +30137,7 @@ exports.default = {
|
|
|
29870
30137
|
VETOR_TEXTO: 'texto[]',
|
|
29871
30138
|
};
|
|
29872
30139
|
|
|
29873
|
-
},{}],
|
|
30140
|
+
},{}],250:[function(require,module,exports){
|
|
29874
30141
|
"use strict";
|
|
29875
30142
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29876
30143
|
exports.default = {
|
|
@@ -29889,7 +30156,7 @@ exports.default = {
|
|
|
29889
30156
|
TEXTO: 'string',
|
|
29890
30157
|
};
|
|
29891
30158
|
|
|
29892
|
-
},{}],
|
|
30159
|
+
},{}],251:[function(require,module,exports){
|
|
29893
30160
|
"use strict";
|
|
29894
30161
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29895
30162
|
exports.default = {
|
|
@@ -29961,7 +30228,7 @@ exports.default = {
|
|
|
29961
30228
|
VIRGULA: 'VIRGULA',
|
|
29962
30229
|
};
|
|
29963
30230
|
|
|
29964
|
-
},{}],
|
|
30231
|
+
},{}],252:[function(require,module,exports){
|
|
29965
30232
|
"use strict";
|
|
29966
30233
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29967
30234
|
exports.default = {
|
|
@@ -29988,7 +30255,7 @@ exports.default = {
|
|
|
29988
30255
|
VIRGULA: 'VIRGULA',
|
|
29989
30256
|
};
|
|
29990
30257
|
|
|
29991
|
-
},{}],
|
|
30258
|
+
},{}],253:[function(require,module,exports){
|
|
29992
30259
|
"use strict";
|
|
29993
30260
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29994
30261
|
exports.default = {
|
|
@@ -30104,7 +30371,7 @@ exports.default = {
|
|
|
30104
30371
|
VIRGULA: 'VIRGULA',
|
|
30105
30372
|
};
|
|
30106
30373
|
|
|
30107
|
-
},{}],
|
|
30374
|
+
},{}],254:[function(require,module,exports){
|
|
30108
30375
|
"use strict";
|
|
30109
30376
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30110
30377
|
exports.default = {
|
|
@@ -30182,7 +30449,7 @@ exports.default = {
|
|
|
30182
30449
|
VIRGULA: 'VIRGULA',
|
|
30183
30450
|
};
|
|
30184
30451
|
|
|
30185
|
-
},{}],
|
|
30452
|
+
},{}],255:[function(require,module,exports){
|
|
30186
30453
|
"use strict";
|
|
30187
30454
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30188
30455
|
exports.default = {
|
|
@@ -30199,7 +30466,7 @@ exports.default = {
|
|
|
30199
30466
|
VIRGULA: 'VIRGULA',
|
|
30200
30467
|
};
|
|
30201
30468
|
|
|
30202
|
-
},{}],
|
|
30469
|
+
},{}],256:[function(require,module,exports){
|
|
30203
30470
|
"use strict";
|
|
30204
30471
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30205
30472
|
exports.default = {
|
|
@@ -30252,7 +30519,7 @@ exports.default = {
|
|
|
30252
30519
|
VIRGULA: 'VIRGULA',
|
|
30253
30520
|
};
|
|
30254
30521
|
|
|
30255
|
-
},{}],
|
|
30522
|
+
},{}],257:[function(require,module,exports){
|
|
30256
30523
|
"use strict";
|
|
30257
30524
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30258
30525
|
exports.default = {
|
|
@@ -30347,7 +30614,7 @@ exports.default = {
|
|
|
30347
30614
|
VIRGULA: 'VIRGULA',
|
|
30348
30615
|
};
|
|
30349
30616
|
|
|
30350
|
-
},{}],
|
|
30617
|
+
},{}],258:[function(require,module,exports){
|
|
30351
30618
|
"use strict";
|
|
30352
30619
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30353
30620
|
exports.default = {
|
|
@@ -30426,7 +30693,7 @@ exports.default = {
|
|
|
30426
30693
|
VARIAVEL: 'VARIAVEL',
|
|
30427
30694
|
};
|
|
30428
30695
|
|
|
30429
|
-
},{}],
|
|
30696
|
+
},{}],259:[function(require,module,exports){
|
|
30430
30697
|
"use strict";
|
|
30431
30698
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30432
30699
|
exports.default = {
|
|
@@ -30510,7 +30777,7 @@ exports.default = {
|
|
|
30510
30777
|
VIRGULA: 'VIRGULA',
|
|
30511
30778
|
};
|
|
30512
30779
|
|
|
30513
|
-
},{}],
|
|
30780
|
+
},{}],260:[function(require,module,exports){
|
|
30514
30781
|
"use strict";
|
|
30515
30782
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30516
30783
|
// Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
|
|
@@ -30605,7 +30872,7 @@ exports.default = {
|
|
|
30605
30872
|
VIRGULA: 'VIRGULA',
|
|
30606
30873
|
};
|
|
30607
30874
|
|
|
30608
|
-
},{}],
|
|
30875
|
+
},{}],261:[function(require,module,exports){
|
|
30609
30876
|
"use strict";
|
|
30610
30877
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
30611
30878
|
if (k2 === undefined) k2 = k;
|
|
@@ -30638,7 +30905,7 @@ __exportStar(require("./tradutor-reverso-python"), exports);
|
|
|
30638
30905
|
__exportStar(require("./tradutor-reverso-tenda"), exports);
|
|
30639
30906
|
__exportStar(require("./tradutor-ruby"), exports);
|
|
30640
30907
|
|
|
30641
|
-
},{"./tradutor-assembly-arm":
|
|
30908
|
+
},{"./tradutor-assembly-arm":270,"./tradutor-assembly-risc-v":271,"./tradutor-assembly-x64":272,"./tradutor-assemblyscript":273,"./tradutor-elixir":274,"./tradutor-javascript":275,"./tradutor-mermaidjs":276,"./tradutor-portugol-ipt":277,"./tradutor-python":278,"./tradutor-reverso-calango":279,"./tradutor-reverso-javascript":280,"./tradutor-reverso-python":281,"./tradutor-reverso-tenda":282,"./tradutor-ruby":283,"./tradutor-webassembly":284}],262:[function(require,module,exports){
|
|
30642
30909
|
"use strict";
|
|
30643
30910
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30644
30911
|
exports.ArestaFluxograma = void 0;
|
|
@@ -30650,7 +30917,7 @@ class ArestaFluxograma {
|
|
|
30650
30917
|
}
|
|
30651
30918
|
exports.ArestaFluxograma = ArestaFluxograma;
|
|
30652
30919
|
|
|
30653
|
-
},{}],
|
|
30920
|
+
},{}],263:[function(require,module,exports){
|
|
30654
30921
|
"use strict";
|
|
30655
30922
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
30656
30923
|
if (k2 === undefined) k2 = k;
|
|
@@ -30673,7 +30940,7 @@ __exportStar(require("./subgrafo-funcao"), exports);
|
|
|
30673
30940
|
__exportStar(require("./subgrafo-metodo"), exports);
|
|
30674
30941
|
__exportStar(require("./vertice-fluxograma"), exports);
|
|
30675
30942
|
|
|
30676
|
-
},{"./aresta-fluxograma":
|
|
30943
|
+
},{"./aresta-fluxograma":262,"./subgrafo-classe":264,"./subgrafo-funcao":265,"./subgrafo-metodo":266,"./vertice-fluxograma":267}],264:[function(require,module,exports){
|
|
30677
30944
|
"use strict";
|
|
30678
30945
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30679
30946
|
exports.SubgrafoClasse = void 0;
|
|
@@ -30719,7 +30986,7 @@ class SubgrafoClasse {
|
|
|
30719
30986
|
}
|
|
30720
30987
|
exports.SubgrafoClasse = SubgrafoClasse;
|
|
30721
30988
|
|
|
30722
|
-
},{}],
|
|
30989
|
+
},{}],265:[function(require,module,exports){
|
|
30723
30990
|
"use strict";
|
|
30724
30991
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30725
30992
|
exports.SubgrafoFuncao = void 0;
|
|
@@ -30734,7 +31001,7 @@ class SubgrafoFuncao {
|
|
|
30734
31001
|
}
|
|
30735
31002
|
exports.SubgrafoFuncao = SubgrafoFuncao;
|
|
30736
31003
|
|
|
30737
|
-
},{}],
|
|
31004
|
+
},{}],266:[function(require,module,exports){
|
|
30738
31005
|
"use strict";
|
|
30739
31006
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30740
31007
|
exports.SubgrafoMetodo = void 0;
|
|
@@ -30751,7 +31018,7 @@ class SubgrafoMetodo {
|
|
|
30751
31018
|
}
|
|
30752
31019
|
exports.SubgrafoMetodo = SubgrafoMetodo;
|
|
30753
31020
|
|
|
30754
|
-
},{}],
|
|
31021
|
+
},{}],267:[function(require,module,exports){
|
|
30755
31022
|
"use strict";
|
|
30756
31023
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30757
31024
|
exports.VerticeFluxograma = void 0;
|
|
@@ -30768,7 +31035,7 @@ class VerticeFluxograma {
|
|
|
30768
31035
|
}
|
|
30769
31036
|
exports.VerticeFluxograma = VerticeFluxograma;
|
|
30770
31037
|
|
|
30771
|
-
},{}],
|
|
31038
|
+
},{}],268:[function(require,module,exports){
|
|
30772
31039
|
"use strict";
|
|
30773
31040
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
30774
31041
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -32008,7 +32275,7 @@ __decorate([
|
|
|
32008
32275
|
Decorators_1.Override
|
|
32009
32276
|
], Python3Lexer.prototype, "nextToken", null);
|
|
32010
32277
|
|
|
32011
|
-
},{"./python3-parser":
|
|
32278
|
+
},{"./python3-parser":269,"antlr4ts/CommonToken":294,"antlr4ts/Decorators":298,"antlr4ts/Lexer":306,"antlr4ts/Token":323,"antlr4ts/VocabularyImpl":329,"antlr4ts/atn/ATNDeserializer":335,"antlr4ts/atn/LexerATNSimulator":356,"antlr4ts/misc/Utils":417}],269:[function(require,module,exports){
|
|
32012
32279
|
"use strict";
|
|
32013
32280
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
32014
32281
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -43255,7 +43522,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
43255
43522
|
}
|
|
43256
43523
|
exports.Yield_argContext = Yield_argContext;
|
|
43257
43524
|
|
|
43258
|
-
},{"antlr4ts/FailedPredicateException":
|
|
43525
|
+
},{"antlr4ts/FailedPredicateException":302,"antlr4ts/NoViableAltException":310,"antlr4ts/Parser":311,"antlr4ts/ParserRuleContext":314,"antlr4ts/RecognitionException":317,"antlr4ts/Token":323,"antlr4ts/VocabularyImpl":329,"antlr4ts/atn/ATN":331,"antlr4ts/atn/ATNDeserializer":335,"antlr4ts/atn/ParserATNSimulator":372,"antlr4ts/misc/Utils":417}],270:[function(require,module,exports){
|
|
43259
43526
|
"use strict";
|
|
43260
43527
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
43261
43528
|
exports.TradutorAssemblyARM = void 0;
|
|
@@ -43967,7 +44234,7 @@ ${labelFim}:`;
|
|
|
43967
44234
|
}
|
|
43968
44235
|
exports.TradutorAssemblyARM = TradutorAssemblyARM;
|
|
43969
44236
|
|
|
43970
|
-
},{"../construtos":
|
|
44237
|
+
},{"../construtos":67,"../declaracoes":116}],271:[function(require,module,exports){
|
|
43971
44238
|
"use strict";
|
|
43972
44239
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
43973
44240
|
exports.TradutorAssemblyRISCV = void 0;
|
|
@@ -44656,7 +44923,7 @@ ${labelSenao}:`;
|
|
|
44656
44923
|
}
|
|
44657
44924
|
exports.TradutorAssemblyRISCV = TradutorAssemblyRISCV;
|
|
44658
44925
|
|
|
44659
|
-
},{"../construtos":
|
|
44926
|
+
},{"../construtos":67,"../declaracoes":116}],272:[function(require,module,exports){
|
|
44660
44927
|
"use strict";
|
|
44661
44928
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44662
44929
|
exports.TradutorAssemblyX64 = void 0;
|
|
@@ -45431,7 +45698,7 @@ __delegua_print_int:
|
|
|
45431
45698
|
}
|
|
45432
45699
|
exports.TradutorAssemblyX64 = TradutorAssemblyX64;
|
|
45433
45700
|
|
|
45434
|
-
},{"../construtos":
|
|
45701
|
+
},{"../construtos":67,"../declaracoes":116}],273:[function(require,module,exports){
|
|
45435
45702
|
"use strict";
|
|
45436
45703
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
45437
45704
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -46646,7 +46913,7 @@ class TradutorAssemblyScript {
|
|
|
46646
46913
|
}
|
|
46647
46914
|
exports.TradutorAssemblyScript = TradutorAssemblyScript;
|
|
46648
46915
|
|
|
46649
|
-
},{"../construtos":
|
|
46916
|
+
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/delegua":253}],274:[function(require,module,exports){
|
|
46650
46917
|
"use strict";
|
|
46651
46918
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
46652
46919
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -47607,7 +47874,7 @@ class TradutorElixir {
|
|
|
47607
47874
|
}
|
|
47608
47875
|
exports.TradutorElixir = TradutorElixir;
|
|
47609
47876
|
|
|
47610
|
-
},{"../tipos-de-simbolos/delegua":
|
|
47877
|
+
},{"../tipos-de-simbolos/delegua":253}],275:[function(require,module,exports){
|
|
47611
47878
|
"use strict";
|
|
47612
47879
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
47613
47880
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -48399,7 +48666,7 @@ class TradutorJavaScript {
|
|
|
48399
48666
|
}
|
|
48400
48667
|
exports.TradutorJavaScript = TradutorJavaScript;
|
|
48401
48668
|
|
|
48402
|
-
},{"../construtos":
|
|
48669
|
+
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/delegua":253}],276:[function(require,module,exports){
|
|
48403
48670
|
"use strict";
|
|
48404
48671
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
48405
48672
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -49228,7 +49495,7 @@ class TradutorMermaidJs {
|
|
|
49228
49495
|
}
|
|
49229
49496
|
exports.TradutorMermaidJs = TradutorMermaidJs;
|
|
49230
49497
|
|
|
49231
|
-
},{"../construtos":
|
|
49498
|
+
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/delegua":253,"./mermaid":263}],277:[function(require,module,exports){
|
|
49232
49499
|
"use strict";
|
|
49233
49500
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
49234
49501
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -49610,7 +49877,7 @@ class TradutorPortugolIpt {
|
|
|
49610
49877
|
}
|
|
49611
49878
|
exports.TradutorPortugolIpt = TradutorPortugolIpt;
|
|
49612
49879
|
|
|
49613
|
-
},{"../avaliador-sintatico/dialetos":18,"../construtos":
|
|
49880
|
+
},{"../avaliador-sintatico/dialetos":18,"../construtos":67,"../declaracoes":116,"../lexador/dialetos":223,"../tipos-de-simbolos/portugol-ipt":258}],278:[function(require,module,exports){
|
|
49614
49881
|
"use strict";
|
|
49615
49882
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
49616
49883
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -50295,7 +50562,7 @@ class TradutorPython {
|
|
|
50295
50562
|
}
|
|
50296
50563
|
exports.TradutorPython = TradutorPython;
|
|
50297
50564
|
|
|
50298
|
-
},{"../construtos":
|
|
50565
|
+
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/delegua":253}],279:[function(require,module,exports){
|
|
50299
50566
|
"use strict";
|
|
50300
50567
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
50301
50568
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -50649,7 +50916,7 @@ class TradutorReversoCalango {
|
|
|
50649
50916
|
}
|
|
50650
50917
|
exports.TradutorReversoCalango = TradutorReversoCalango;
|
|
50651
50918
|
|
|
50652
|
-
},{"../tipos-de-simbolos/calango":
|
|
50919
|
+
},{"../tipos-de-simbolos/calango":251}],280:[function(require,module,exports){
|
|
50653
50920
|
"use strict";
|
|
50654
50921
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50655
50922
|
exports.TradutorReversoJavaScript = void 0;
|
|
@@ -51044,7 +51311,7 @@ class TradutorReversoJavaScript {
|
|
|
51044
51311
|
}
|
|
51045
51312
|
exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
|
|
51046
51313
|
|
|
51047
|
-
},{}],
|
|
51314
|
+
},{}],281:[function(require,module,exports){
|
|
51048
51315
|
"use strict";
|
|
51049
51316
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51050
51317
|
exports.TradutorReversoPython = void 0;
|
|
@@ -51697,7 +51964,7 @@ class TradutorReversoPython extends AbstractParseTreeVisitor_1.AbstractParseTree
|
|
|
51697
51964
|
}
|
|
51698
51965
|
exports.TradutorReversoPython = TradutorReversoPython;
|
|
51699
51966
|
|
|
51700
|
-
},{"./python/python3-lexer":
|
|
51967
|
+
},{"./python/python3-lexer":268,"./python/python3-parser":269,"antlr4ts":400,"antlr4ts/tree/AbstractParseTreeVisitor":418}],282:[function(require,module,exports){
|
|
51701
51968
|
"use strict";
|
|
51702
51969
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
51703
51970
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -52288,7 +52555,7 @@ class TradutorReversoTenda {
|
|
|
52288
52555
|
}
|
|
52289
52556
|
exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
52290
52557
|
|
|
52291
|
-
},{"../construtos":
|
|
52558
|
+
},{"../construtos":67,"../tipos-de-simbolos/tenda":260}],283:[function(require,module,exports){
|
|
52292
52559
|
"use strict";
|
|
52293
52560
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
52294
52561
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -52975,7 +53242,7 @@ class TradutorRuby {
|
|
|
52975
53242
|
}
|
|
52976
53243
|
exports.TradutorRuby = TradutorRuby;
|
|
52977
53244
|
|
|
52978
|
-
},{"../construtos":
|
|
53245
|
+
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/delegua":253}],284:[function(require,module,exports){
|
|
52979
53246
|
"use strict";
|
|
52980
53247
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
52981
53248
|
exports.TradutorWebAssembly = void 0;
|
|
@@ -53862,7 +54129,7 @@ process.exit(codigoSaida);
|
|
|
53862
54129
|
}
|
|
53863
54130
|
exports.TradutorWebAssembly = TradutorWebAssembly;
|
|
53864
54131
|
|
|
53865
|
-
},{"../construtos":
|
|
54132
|
+
},{"../construtos":67,"../declaracoes":116}],285:[function(require,module,exports){
|
|
53866
54133
|
"use strict";
|
|
53867
54134
|
/*!
|
|
53868
54135
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53870,7 +54137,7 @@ exports.TradutorWebAssembly = TradutorWebAssembly;
|
|
|
53870
54137
|
*/
|
|
53871
54138
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53872
54139
|
|
|
53873
|
-
},{}],
|
|
54140
|
+
},{}],286:[function(require,module,exports){
|
|
53874
54141
|
"use strict";
|
|
53875
54142
|
/*!
|
|
53876
54143
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53878,7 +54145,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
53878
54145
|
*/
|
|
53879
54146
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53880
54147
|
|
|
53881
|
-
},{}],
|
|
54148
|
+
},{}],287:[function(require,module,exports){
|
|
53882
54149
|
"use strict";
|
|
53883
54150
|
/*!
|
|
53884
54151
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54040,7 +54307,7 @@ __decorate([
|
|
|
54040
54307
|
], ANTLRInputStream.prototype, "toString", null);
|
|
54041
54308
|
exports.ANTLRInputStream = ANTLRInputStream;
|
|
54042
54309
|
|
|
54043
|
-
},{"./Decorators":
|
|
54310
|
+
},{"./Decorators":298,"./IntStream":304,"assert":441}],288:[function(require,module,exports){
|
|
54044
54311
|
"use strict";
|
|
54045
54312
|
/*!
|
|
54046
54313
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54123,7 +54390,7 @@ __decorate([
|
|
|
54123
54390
|
], BailErrorStrategy.prototype, "sync", null);
|
|
54124
54391
|
exports.BailErrorStrategy = BailErrorStrategy;
|
|
54125
54392
|
|
|
54126
|
-
},{"./Decorators":
|
|
54393
|
+
},{"./Decorators":298,"./DefaultErrorStrategy":299,"./InputMismatchException":303,"./misc/ParseCancellationException":415}],289:[function(require,module,exports){
|
|
54127
54394
|
"use strict";
|
|
54128
54395
|
/*!
|
|
54129
54396
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54613,7 +54880,7 @@ BufferedTokenStream = __decorate([
|
|
|
54613
54880
|
], BufferedTokenStream);
|
|
54614
54881
|
exports.BufferedTokenStream = BufferedTokenStream;
|
|
54615
54882
|
|
|
54616
|
-
},{"./CommonToken":
|
|
54883
|
+
},{"./CommonToken":294,"./Decorators":298,"./Lexer":306,"./Token":323,"./misc/Interval":410,"assert":441}],290:[function(require,module,exports){
|
|
54617
54884
|
"use strict";
|
|
54618
54885
|
/*!
|
|
54619
54886
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54621,7 +54888,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
|
|
|
54621
54888
|
*/
|
|
54622
54889
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54623
54890
|
|
|
54624
|
-
},{}],
|
|
54891
|
+
},{}],291:[function(require,module,exports){
|
|
54625
54892
|
"use strict";
|
|
54626
54893
|
/*!
|
|
54627
54894
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54755,7 +55022,7 @@ var CharStreams;
|
|
|
54755
55022
|
// }
|
|
54756
55023
|
})(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
|
|
54757
55024
|
|
|
54758
|
-
},{"./CodePointBuffer":
|
|
55025
|
+
},{"./CodePointBuffer":292,"./CodePointCharStream":293,"./IntStream":304}],292:[function(require,module,exports){
|
|
54759
55026
|
"use strict";
|
|
54760
55027
|
/*!
|
|
54761
55028
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54990,7 +55257,7 @@ exports.CodePointBuffer = CodePointBuffer;
|
|
|
54990
55257
|
CodePointBuffer.Builder = Builder;
|
|
54991
55258
|
})(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
|
|
54992
55259
|
|
|
54993
|
-
},{"./misc/Character":
|
|
55260
|
+
},{"./misc/Character":406,"assert":441}],293:[function(require,module,exports){
|
|
54994
55261
|
"use strict";
|
|
54995
55262
|
/*!
|
|
54996
55263
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55140,7 +55407,7 @@ __decorate([
|
|
|
55140
55407
|
], CodePointCharStream.prototype, "getText", null);
|
|
55141
55408
|
exports.CodePointCharStream = CodePointCharStream;
|
|
55142
55409
|
|
|
55143
|
-
},{"./Decorators":
|
|
55410
|
+
},{"./Decorators":298,"./IntStream":304,"./misc/Interval":410,"assert":441}],294:[function(require,module,exports){
|
|
55144
55411
|
"use strict";
|
|
55145
55412
|
/*!
|
|
55146
55413
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55370,7 +55637,7 @@ CommonToken = __decorate([
|
|
|
55370
55637
|
], CommonToken);
|
|
55371
55638
|
exports.CommonToken = CommonToken;
|
|
55372
55639
|
|
|
55373
|
-
},{"./Decorators":
|
|
55640
|
+
},{"./Decorators":298,"./Token":323,"./misc/Interval":410}],295:[function(require,module,exports){
|
|
55374
55641
|
"use strict";
|
|
55375
55642
|
/*!
|
|
55376
55643
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55434,7 +55701,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
|
|
|
55434
55701
|
CommonTokenFactory.DEFAULT = new CommonTokenFactory();
|
|
55435
55702
|
})(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
|
|
55436
55703
|
|
|
55437
|
-
},{"./CommonToken":
|
|
55704
|
+
},{"./CommonToken":294,"./Decorators":298,"./misc/Interval":410}],296:[function(require,module,exports){
|
|
55438
55705
|
"use strict";
|
|
55439
55706
|
/*!
|
|
55440
55707
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55561,7 +55828,7 @@ CommonTokenStream = __decorate([
|
|
|
55561
55828
|
], CommonTokenStream);
|
|
55562
55829
|
exports.CommonTokenStream = CommonTokenStream;
|
|
55563
55830
|
|
|
55564
|
-
},{"./BufferedTokenStream":
|
|
55831
|
+
},{"./BufferedTokenStream":289,"./Decorators":298,"./Token":323}],297:[function(require,module,exports){
|
|
55565
55832
|
"use strict";
|
|
55566
55833
|
/*!
|
|
55567
55834
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55595,7 +55862,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
|
|
|
55595
55862
|
*/
|
|
55596
55863
|
ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
|
|
55597
55864
|
|
|
55598
|
-
},{}],
|
|
55865
|
+
},{}],298:[function(require,module,exports){
|
|
55599
55866
|
"use strict";
|
|
55600
55867
|
/*!
|
|
55601
55868
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55622,7 +55889,7 @@ function SuppressWarnings(options) {
|
|
|
55622
55889
|
}
|
|
55623
55890
|
exports.SuppressWarnings = SuppressWarnings;
|
|
55624
55891
|
|
|
55625
|
-
},{}],
|
|
55892
|
+
},{}],299:[function(require,module,exports){
|
|
55626
55893
|
"use strict";
|
|
55627
55894
|
/*!
|
|
55628
55895
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56436,7 +56703,7 @@ __decorate([
|
|
|
56436
56703
|
], DefaultErrorStrategy.prototype, "consumeUntil", null);
|
|
56437
56704
|
exports.DefaultErrorStrategy = DefaultErrorStrategy;
|
|
56438
56705
|
|
|
56439
|
-
},{"./Decorators":
|
|
56706
|
+
},{"./Decorators":298,"./FailedPredicateException":302,"./InputMismatchException":303,"./NoViableAltException":310,"./Token":323,"./atn/ATNState":337,"./atn/ATNStateType":338,"./atn/PredictionContext":378,"./misc/IntervalSet":411}],300:[function(require,module,exports){
|
|
56440
56707
|
"use strict";
|
|
56441
56708
|
/*!
|
|
56442
56709
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56512,7 +56779,7 @@ var Dependents;
|
|
|
56512
56779
|
Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
|
|
56513
56780
|
})(Dependents = exports.Dependents || (exports.Dependents = {}));
|
|
56514
56781
|
|
|
56515
|
-
},{}],
|
|
56782
|
+
},{}],301:[function(require,module,exports){
|
|
56516
56783
|
"use strict";
|
|
56517
56784
|
/*!
|
|
56518
56785
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56660,7 +56927,7 @@ __decorate([
|
|
|
56660
56927
|
], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
|
|
56661
56928
|
exports.DiagnosticErrorListener = DiagnosticErrorListener;
|
|
56662
56929
|
|
|
56663
|
-
},{"./Decorators":
|
|
56930
|
+
},{"./Decorators":298,"./misc/BitSet":405,"./misc/Interval":410}],302:[function(require,module,exports){
|
|
56664
56931
|
"use strict";
|
|
56665
56932
|
/*!
|
|
56666
56933
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56725,7 +56992,7 @@ FailedPredicateException = __decorate([
|
|
|
56725
56992
|
], FailedPredicateException);
|
|
56726
56993
|
exports.FailedPredicateException = FailedPredicateException;
|
|
56727
56994
|
|
|
56728
|
-
},{"./Decorators":
|
|
56995
|
+
},{"./Decorators":298,"./RecognitionException":317,"./atn/PredicateTransition":377}],303:[function(require,module,exports){
|
|
56729
56996
|
"use strict";
|
|
56730
56997
|
/*!
|
|
56731
56998
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56765,7 +57032,7 @@ InputMismatchException = __decorate([
|
|
|
56765
57032
|
], InputMismatchException);
|
|
56766
57033
|
exports.InputMismatchException = InputMismatchException;
|
|
56767
57034
|
|
|
56768
|
-
},{"./Decorators":
|
|
57035
|
+
},{"./Decorators":298,"./RecognitionException":317}],304:[function(require,module,exports){
|
|
56769
57036
|
"use strict";
|
|
56770
57037
|
/*!
|
|
56771
57038
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56788,7 +57055,7 @@ var IntStream;
|
|
|
56788
57055
|
IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
|
|
56789
57056
|
})(IntStream = exports.IntStream || (exports.IntStream = {}));
|
|
56790
57057
|
|
|
56791
|
-
},{}],
|
|
57058
|
+
},{}],305:[function(require,module,exports){
|
|
56792
57059
|
"use strict";
|
|
56793
57060
|
/*!
|
|
56794
57061
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56835,7 +57102,7 @@ __decorate([
|
|
|
56835
57102
|
], InterpreterRuleContext.prototype, "ruleIndex", null);
|
|
56836
57103
|
exports.InterpreterRuleContext = InterpreterRuleContext;
|
|
56837
57104
|
|
|
56838
|
-
},{"./Decorators":
|
|
57105
|
+
},{"./Decorators":298,"./ParserRuleContext":314}],306:[function(require,module,exports){
|
|
56839
57106
|
"use strict";
|
|
56840
57107
|
/*!
|
|
56841
57108
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57171,7 +57438,7 @@ __decorate([
|
|
|
57171
57438
|
], Lexer.prototype, "charPositionInLine", null);
|
|
57172
57439
|
exports.Lexer = Lexer;
|
|
57173
57440
|
|
|
57174
|
-
},{"./CommonTokenFactory":
|
|
57441
|
+
},{"./CommonTokenFactory":295,"./Decorators":298,"./IntStream":304,"./LexerNoViableAltException":308,"./Recognizer":318,"./Token":323,"./atn/LexerATNSimulator":356,"./misc/IntegerStack":409,"./misc/Interval":410}],307:[function(require,module,exports){
|
|
57175
57442
|
"use strict";
|
|
57176
57443
|
/*!
|
|
57177
57444
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57251,7 +57518,7 @@ LexerInterpreter = __decorate([
|
|
|
57251
57518
|
], LexerInterpreter);
|
|
57252
57519
|
exports.LexerInterpreter = LexerInterpreter;
|
|
57253
57520
|
|
|
57254
|
-
},{"./Decorators":
|
|
57521
|
+
},{"./Decorators":298,"./Lexer":306,"./atn/LexerATNSimulator":356}],308:[function(require,module,exports){
|
|
57255
57522
|
"use strict";
|
|
57256
57523
|
/*!
|
|
57257
57524
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57308,7 +57575,7 @@ LexerNoViableAltException = __decorate([
|
|
|
57308
57575
|
], LexerNoViableAltException);
|
|
57309
57576
|
exports.LexerNoViableAltException = LexerNoViableAltException;
|
|
57310
57577
|
|
|
57311
|
-
},{"./Decorators":
|
|
57578
|
+
},{"./Decorators":298,"./RecognitionException":317,"./misc/Interval":410,"./misc/Utils":417}],309:[function(require,module,exports){
|
|
57312
57579
|
"use strict";
|
|
57313
57580
|
/*!
|
|
57314
57581
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57518,7 +57785,7 @@ ListTokenSource = __decorate([
|
|
|
57518
57785
|
], ListTokenSource);
|
|
57519
57786
|
exports.ListTokenSource = ListTokenSource;
|
|
57520
57787
|
|
|
57521
|
-
},{"./CommonTokenFactory":
|
|
57788
|
+
},{"./CommonTokenFactory":295,"./Decorators":298,"./Token":323}],310:[function(require,module,exports){
|
|
57522
57789
|
"use strict";
|
|
57523
57790
|
/*!
|
|
57524
57791
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57573,7 +57840,7 @@ __decorate([
|
|
|
57573
57840
|
], NoViableAltException.prototype, "_startToken", void 0);
|
|
57574
57841
|
exports.NoViableAltException = NoViableAltException;
|
|
57575
57842
|
|
|
57576
|
-
},{"./Decorators":
|
|
57843
|
+
},{"./Decorators":298,"./Parser":311,"./RecognitionException":317}],311:[function(require,module,exports){
|
|
57577
57844
|
(function (process){(function (){
|
|
57578
57845
|
"use strict";
|
|
57579
57846
|
/*!
|
|
@@ -58419,7 +58686,7 @@ __decorate([
|
|
|
58419
58686
|
exports.Parser = Parser;
|
|
58420
58687
|
|
|
58421
58688
|
}).call(this)}).call(this,require('_process'))
|
|
58422
|
-
},{"./Decorators":
|
|
58689
|
+
},{"./Decorators":298,"./DefaultErrorStrategy":299,"./Lexer":306,"./ProxyParserErrorListener":316,"./Recognizer":318,"./Token":323,"./atn/ATNDeserializationOptions":334,"./atn/ATNDeserializer":335,"./atn/ParseInfo":371,"./atn/ParserATNSimulator":372,"./atn/ProfilingATNSimulator":381,"./misc/IntegerStack":409,"./misc/Utils":417,"./tree/ErrorNode":419,"./tree/TerminalNode":421,"./tree/pattern/ParseTreePatternMatcher":426,"_process":500}],312:[function(require,module,exports){
|
|
58423
58690
|
"use strict";
|
|
58424
58691
|
/*!
|
|
58425
58692
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58427,7 +58694,7 @@ exports.Parser = Parser;
|
|
|
58427
58694
|
*/
|
|
58428
58695
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58429
58696
|
|
|
58430
|
-
},{}],
|
|
58697
|
+
},{}],313:[function(require,module,exports){
|
|
58431
58698
|
"use strict";
|
|
58432
58699
|
/*!
|
|
58433
58700
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58835,7 +59102,7 @@ ParserInterpreter = __decorate([
|
|
|
58835
59102
|
], ParserInterpreter);
|
|
58836
59103
|
exports.ParserInterpreter = ParserInterpreter;
|
|
58837
59104
|
|
|
58838
|
-
},{"./Decorators":
|
|
59105
|
+
},{"./Decorators":298,"./FailedPredicateException":302,"./InputMismatchException":303,"./InterpreterRuleContext":305,"./Parser":311,"./RecognitionException":317,"./Token":323,"./atn/ATNState":337,"./atn/ATNStateType":338,"./atn/LoopEndState":368,"./atn/ParserATNSimulator":372,"./atn/StarLoopEntryState":390,"./misc/BitSet":405}],314:[function(require,module,exports){
|
|
58839
59106
|
"use strict";
|
|
58840
59107
|
/*!
|
|
58841
59108
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59136,7 +59403,7 @@ __decorate([
|
|
|
59136
59403
|
], ParserRuleContext.prototype, "sourceInterval", null);
|
|
59137
59404
|
exports.ParserRuleContext = ParserRuleContext;
|
|
59138
59405
|
|
|
59139
|
-
},{"./Decorators":
|
|
59406
|
+
},{"./Decorators":298,"./RuleContext":319,"./misc/Interval":410,"./tree/ErrorNode":419,"./tree/TerminalNode":421}],315:[function(require,module,exports){
|
|
59140
59407
|
"use strict";
|
|
59141
59408
|
/*!
|
|
59142
59409
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59186,7 +59453,7 @@ __decorate([
|
|
|
59186
59453
|
], ProxyErrorListener.prototype, "syntaxError", null);
|
|
59187
59454
|
exports.ProxyErrorListener = ProxyErrorListener;
|
|
59188
59455
|
|
|
59189
|
-
},{"./Decorators":
|
|
59456
|
+
},{"./Decorators":298}],316:[function(require,module,exports){
|
|
59190
59457
|
"use strict";
|
|
59191
59458
|
/*!
|
|
59192
59459
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59245,7 +59512,7 @@ __decorate([
|
|
|
59245
59512
|
], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
|
|
59246
59513
|
exports.ProxyParserErrorListener = ProxyParserErrorListener;
|
|
59247
59514
|
|
|
59248
|
-
},{"./Decorators":
|
|
59515
|
+
},{"./Decorators":298,"./ProxyErrorListener":315}],317:[function(require,module,exports){
|
|
59249
59516
|
"use strict";
|
|
59250
59517
|
/*!
|
|
59251
59518
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59350,7 +59617,7 @@ class RecognitionException extends Error {
|
|
|
59350
59617
|
}
|
|
59351
59618
|
exports.RecognitionException = RecognitionException;
|
|
59352
59619
|
|
|
59353
|
-
},{}],
|
|
59620
|
+
},{}],318:[function(require,module,exports){
|
|
59354
59621
|
"use strict";
|
|
59355
59622
|
/*!
|
|
59356
59623
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59569,7 +59836,7 @@ __decorate([
|
|
|
59569
59836
|
], Recognizer.prototype, "getErrorListeners", null);
|
|
59570
59837
|
exports.Recognizer = Recognizer;
|
|
59571
59838
|
|
|
59572
|
-
},{"./ConsoleErrorListener":
|
|
59839
|
+
},{"./ConsoleErrorListener":297,"./Decorators":298,"./ProxyErrorListener":315,"./Token":323,"./misc/Utils":417}],319:[function(require,module,exports){
|
|
59573
59840
|
"use strict";
|
|
59574
59841
|
/*!
|
|
59575
59842
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59786,7 +60053,7 @@ __decorate([
|
|
|
59786
60053
|
], RuleContext.prototype, "toStringTree", null);
|
|
59787
60054
|
exports.RuleContext = RuleContext;
|
|
59788
60055
|
|
|
59789
|
-
},{"./Decorators":
|
|
60056
|
+
},{"./Decorators":298,"./ParserRuleContext":314,"./Recognizer":318,"./atn/ATN":331,"./misc/Interval":410,"./tree/RuleNode":420,"./tree/Trees":422}],320:[function(require,module,exports){
|
|
59790
60057
|
"use strict";
|
|
59791
60058
|
/*!
|
|
59792
60059
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59837,7 +60104,7 @@ __decorate([
|
|
|
59837
60104
|
], RuleContextWithAltNum.prototype, "altNumber", null);
|
|
59838
60105
|
exports.RuleContextWithAltNum = RuleContextWithAltNum;
|
|
59839
60106
|
|
|
59840
|
-
},{"./Decorators":
|
|
60107
|
+
},{"./Decorators":298,"./ParserRuleContext":314,"./atn/ATN":331}],321:[function(require,module,exports){
|
|
59841
60108
|
"use strict";
|
|
59842
60109
|
/*!
|
|
59843
60110
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59860,7 +60127,7 @@ function RuleDependency(dependency) {
|
|
|
59860
60127
|
}
|
|
59861
60128
|
exports.RuleDependency = RuleDependency;
|
|
59862
60129
|
|
|
59863
|
-
},{}],
|
|
60130
|
+
},{}],322:[function(require,module,exports){
|
|
59864
60131
|
"use strict";
|
|
59865
60132
|
/*!
|
|
59866
60133
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59879,7 +60146,7 @@ function RuleVersion(version) {
|
|
|
59879
60146
|
}
|
|
59880
60147
|
exports.RuleVersion = RuleVersion;
|
|
59881
60148
|
|
|
59882
|
-
},{}],
|
|
60149
|
+
},{}],323:[function(require,module,exports){
|
|
59883
60150
|
"use strict";
|
|
59884
60151
|
/*!
|
|
59885
60152
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59919,7 +60186,7 @@ var Token;
|
|
|
59919
60186
|
Token.MIN_USER_CHANNEL_VALUE = 2;
|
|
59920
60187
|
})(Token = exports.Token || (exports.Token = {}));
|
|
59921
60188
|
|
|
59922
|
-
},{"./IntStream":
|
|
60189
|
+
},{"./IntStream":304}],324:[function(require,module,exports){
|
|
59923
60190
|
"use strict";
|
|
59924
60191
|
/*!
|
|
59925
60192
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59927,7 +60194,7 @@ var Token;
|
|
|
59927
60194
|
*/
|
|
59928
60195
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
59929
60196
|
|
|
59930
|
-
},{}],
|
|
60197
|
+
},{}],325:[function(require,module,exports){
|
|
59931
60198
|
"use strict";
|
|
59932
60199
|
/*!
|
|
59933
60200
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59935,7 +60202,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
59935
60202
|
*/
|
|
59936
60203
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
59937
60204
|
|
|
59938
|
-
},{}],
|
|
60205
|
+
},{}],326:[function(require,module,exports){
|
|
59939
60206
|
"use strict";
|
|
59940
60207
|
/*!
|
|
59941
60208
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59943,7 +60210,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
59943
60210
|
*/
|
|
59944
60211
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
59945
60212
|
|
|
59946
|
-
},{}],
|
|
60213
|
+
},{}],327:[function(require,module,exports){
|
|
59947
60214
|
"use strict";
|
|
59948
60215
|
/*!
|
|
59949
60216
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60451,7 +60718,7 @@ __decorate([
|
|
|
60451
60718
|
Decorators_1.Override
|
|
60452
60719
|
], ReplaceOp.prototype, "toString", null);
|
|
60453
60720
|
|
|
60454
|
-
},{"./Decorators":
|
|
60721
|
+
},{"./Decorators":298,"./Token":323,"./misc/Interval":410}],328:[function(require,module,exports){
|
|
60455
60722
|
"use strict";
|
|
60456
60723
|
/*!
|
|
60457
60724
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60459,7 +60726,7 @@ __decorate([
|
|
|
60459
60726
|
*/
|
|
60460
60727
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
60461
60728
|
|
|
60462
|
-
},{}],
|
|
60729
|
+
},{}],329:[function(require,module,exports){
|
|
60463
60730
|
"use strict";
|
|
60464
60731
|
/*!
|
|
60465
60732
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60579,7 +60846,7 @@ __decorate([
|
|
|
60579
60846
|
], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
|
|
60580
60847
|
exports.VocabularyImpl = VocabularyImpl;
|
|
60581
60848
|
|
|
60582
|
-
},{"./Decorators":
|
|
60849
|
+
},{"./Decorators":298,"./Token":323}],330:[function(require,module,exports){
|
|
60583
60850
|
"use strict";
|
|
60584
60851
|
/*!
|
|
60585
60852
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60587,7 +60854,7 @@ exports.VocabularyImpl = VocabularyImpl;
|
|
|
60587
60854
|
*/
|
|
60588
60855
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
60589
60856
|
|
|
60590
|
-
},{}],
|
|
60857
|
+
},{}],331:[function(require,module,exports){
|
|
60591
60858
|
"use strict";
|
|
60592
60859
|
/*!
|
|
60593
60860
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60809,7 +61076,7 @@ exports.ATN = ATN;
|
|
|
60809
61076
|
})(ATN = exports.ATN || (exports.ATN = {}));
|
|
60810
61077
|
exports.ATN = ATN;
|
|
60811
61078
|
|
|
60812
|
-
},{"../Decorators":
|
|
61079
|
+
},{"../Decorators":298,"../Token":323,"../dfa/DFA":396,"../misc/Array2DHashMap":401,"../misc/IntervalSet":411,"../misc/ObjectEqualityComparator":414,"./InvalidState":354,"./LL1Analyzer":355,"./PredictionContext":378,"assert":441}],332:[function(require,module,exports){
|
|
60813
61080
|
"use strict";
|
|
60814
61081
|
/*!
|
|
60815
61082
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61334,7 +61601,7 @@ ActionSemanticContextATNConfig = __decorate([
|
|
|
61334
61601
|
__param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
|
|
61335
61602
|
], ActionSemanticContextATNConfig);
|
|
61336
61603
|
|
|
61337
|
-
},{"../Decorators":
|
|
61604
|
+
},{"../Decorators":298,"../misc/Array2DHashMap":401,"../misc/MurmurHash":413,"../misc/ObjectEqualityComparator":414,"./DecisionState":351,"./PredictionContext":378,"./SemanticContext":386,"assert":441}],333:[function(require,module,exports){
|
|
61338
61605
|
"use strict";
|
|
61339
61606
|
/*!
|
|
61340
61607
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61781,7 +62048,7 @@ __decorate([
|
|
|
61781
62048
|
], ATNConfigSet.prototype, "hashCode", null);
|
|
61782
62049
|
exports.ATNConfigSet = ATNConfigSet;
|
|
61783
62050
|
|
|
61784
|
-
},{"../Decorators":
|
|
62051
|
+
},{"../Decorators":298,"../misc/Array2DHashMap":401,"../misc/Array2DHashSet":402,"../misc/ArrayEqualityComparator":403,"../misc/BitSet":405,"../misc/ObjectEqualityComparator":414,"../misc/Utils":417,"./ATN":331,"./ATNConfig":332,"./PredictionContext":378,"./PredictionContextCache":379,"./SemanticContext":386,"assert":441}],334:[function(require,module,exports){
|
|
61785
62052
|
"use strict";
|
|
61786
62053
|
/*!
|
|
61787
62054
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61860,7 +62127,7 @@ __decorate([
|
|
|
61860
62127
|
], ATNDeserializationOptions, "defaultOptions", null);
|
|
61861
62128
|
exports.ATNDeserializationOptions = ATNDeserializationOptions;
|
|
61862
62129
|
|
|
61863
|
-
},{"../Decorators":
|
|
62130
|
+
},{"../Decorators":298}],335:[function(require,module,exports){
|
|
61864
62131
|
"use strict";
|
|
61865
62132
|
/*!
|
|
61866
62133
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62947,7 +63214,7 @@ __decorate([
|
|
|
62947
63214
|
], ATNDeserializer.prototype, "edgeFactory", null);
|
|
62948
63215
|
exports.ATNDeserializer = ATNDeserializer;
|
|
62949
63216
|
|
|
62950
|
-
},{"../Decorators":
|
|
63217
|
+
},{"../Decorators":298,"../Token":323,"../dfa/DFA":396,"../misc/Array2DHashSet":402,"../misc/BitSet":405,"../misc/IntervalSet":411,"../misc/UUID":416,"./ATN":331,"./ATNDeserializationOptions":334,"./ATNStateType":338,"./ActionTransition":340,"./AtomTransition":342,"./BasicBlockStartState":343,"./BasicState":344,"./BlockEndState":345,"./BlockStartState":346,"./DecisionState":351,"./EpsilonTransition":352,"./InvalidState":354,"./LexerChannelAction":358,"./LexerCustomAction":359,"./LexerModeAction":361,"./LexerMoreAction":362,"./LexerPopModeAction":363,"./LexerPushModeAction":364,"./LexerSkipAction":365,"./LexerTypeAction":366,"./LoopEndState":368,"./NotSetTransition":369,"./ParserATNSimulator":372,"./PlusBlockStartState":373,"./PlusLoopbackState":374,"./PrecedencePredicateTransition":375,"./PredicateTransition":377,"./RangeTransition":382,"./RuleStartState":383,"./RuleStopState":384,"./RuleTransition":385,"./SetTransition":387,"./StarBlockStartState":389,"./StarLoopEntryState":390,"./StarLoopbackState":391,"./TokensStartState":392,"./WildcardTransition":394}],336:[function(require,module,exports){
|
|
62951
63218
|
"use strict";
|
|
62952
63219
|
/*!
|
|
62953
63220
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63011,7 +63278,7 @@ exports.ATNSimulator = ATNSimulator;
|
|
|
63011
63278
|
})(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
|
|
63012
63279
|
exports.ATNSimulator = ATNSimulator;
|
|
63013
63280
|
|
|
63014
|
-
},{"../Decorators":
|
|
63281
|
+
},{"../Decorators":298,"../dfa/DFAState":398,"./ATNConfigSet":333,"./PredictionContext":378}],337:[function(require,module,exports){
|
|
63015
63282
|
"use strict";
|
|
63016
63283
|
/*!
|
|
63017
63284
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63198,7 +63465,7 @@ exports.ATNState = ATNState;
|
|
|
63198
63465
|
ATNState.INVALID_STATE_NUMBER = -1;
|
|
63199
63466
|
})(ATNState = exports.ATNState || (exports.ATNState = {}));
|
|
63200
63467
|
|
|
63201
|
-
},{"../Decorators":
|
|
63468
|
+
},{"../Decorators":298}],338:[function(require,module,exports){
|
|
63202
63469
|
"use strict";
|
|
63203
63470
|
/*!
|
|
63204
63471
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63224,7 +63491,7 @@ var ATNStateType;
|
|
|
63224
63491
|
ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
|
|
63225
63492
|
})(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
|
|
63226
63493
|
|
|
63227
|
-
},{}],
|
|
63494
|
+
},{}],339:[function(require,module,exports){
|
|
63228
63495
|
"use strict";
|
|
63229
63496
|
/*!
|
|
63230
63497
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63244,7 +63511,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
|
|
|
63244
63511
|
}
|
|
63245
63512
|
exports.AbstractPredicateTransition = AbstractPredicateTransition;
|
|
63246
63513
|
|
|
63247
|
-
},{"./Transition":
|
|
63514
|
+
},{"./Transition":393}],340:[function(require,module,exports){
|
|
63248
63515
|
"use strict";
|
|
63249
63516
|
/*!
|
|
63250
63517
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63300,7 +63567,7 @@ ActionTransition = __decorate([
|
|
|
63300
63567
|
], ActionTransition);
|
|
63301
63568
|
exports.ActionTransition = ActionTransition;
|
|
63302
63569
|
|
|
63303
|
-
},{"../Decorators":
|
|
63570
|
+
},{"../Decorators":298,"./Transition":393}],341:[function(require,module,exports){
|
|
63304
63571
|
"use strict";
|
|
63305
63572
|
/*!
|
|
63306
63573
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63387,7 +63654,7 @@ AmbiguityInfo = __decorate([
|
|
|
63387
63654
|
], AmbiguityInfo);
|
|
63388
63655
|
exports.AmbiguityInfo = AmbiguityInfo;
|
|
63389
63656
|
|
|
63390
|
-
},{"../Decorators":
|
|
63657
|
+
},{"../Decorators":298,"./DecisionEventInfo":349}],342:[function(require,module,exports){
|
|
63391
63658
|
"use strict";
|
|
63392
63659
|
/*!
|
|
63393
63660
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63445,7 +63712,7 @@ AtomTransition = __decorate([
|
|
|
63445
63712
|
], AtomTransition);
|
|
63446
63713
|
exports.AtomTransition = AtomTransition;
|
|
63447
63714
|
|
|
63448
|
-
},{"../Decorators":
|
|
63715
|
+
},{"../Decorators":298,"../misc/IntervalSet":411,"./Transition":393}],343:[function(require,module,exports){
|
|
63449
63716
|
"use strict";
|
|
63450
63717
|
/*!
|
|
63451
63718
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63477,7 +63744,7 @@ __decorate([
|
|
|
63477
63744
|
], BasicBlockStartState.prototype, "stateType", null);
|
|
63478
63745
|
exports.BasicBlockStartState = BasicBlockStartState;
|
|
63479
63746
|
|
|
63480
|
-
},{"../Decorators":
|
|
63747
|
+
},{"../Decorators":298,"./ATNStateType":338,"./BlockStartState":346}],344:[function(require,module,exports){
|
|
63481
63748
|
"use strict";
|
|
63482
63749
|
/*!
|
|
63483
63750
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63509,7 +63776,7 @@ __decorate([
|
|
|
63509
63776
|
], BasicState.prototype, "stateType", null);
|
|
63510
63777
|
exports.BasicState = BasicState;
|
|
63511
63778
|
|
|
63512
|
-
},{"../Decorators":
|
|
63779
|
+
},{"../Decorators":298,"./ATNState":337,"./ATNStateType":338}],345:[function(require,module,exports){
|
|
63513
63780
|
"use strict";
|
|
63514
63781
|
/*!
|
|
63515
63782
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63538,7 +63805,7 @@ __decorate([
|
|
|
63538
63805
|
], BlockEndState.prototype, "stateType", null);
|
|
63539
63806
|
exports.BlockEndState = BlockEndState;
|
|
63540
63807
|
|
|
63541
|
-
},{"../Decorators":
|
|
63808
|
+
},{"../Decorators":298,"./ATNState":337,"./ATNStateType":338}],346:[function(require,module,exports){
|
|
63542
63809
|
"use strict";
|
|
63543
63810
|
/*!
|
|
63544
63811
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63552,7 +63819,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
|
|
|
63552
63819
|
}
|
|
63553
63820
|
exports.BlockStartState = BlockStartState;
|
|
63554
63821
|
|
|
63555
|
-
},{"./DecisionState":
|
|
63822
|
+
},{"./DecisionState":351}],347:[function(require,module,exports){
|
|
63556
63823
|
"use strict";
|
|
63557
63824
|
/*!
|
|
63558
63825
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63622,7 +63889,7 @@ __decorate([
|
|
|
63622
63889
|
], ConflictInfo.prototype, "hashCode", null);
|
|
63623
63890
|
exports.ConflictInfo = ConflictInfo;
|
|
63624
63891
|
|
|
63625
|
-
},{"../Decorators":
|
|
63892
|
+
},{"../Decorators":298,"../misc/Utils":417}],348:[function(require,module,exports){
|
|
63626
63893
|
"use strict";
|
|
63627
63894
|
/*!
|
|
63628
63895
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63682,7 +63949,7 @@ ContextSensitivityInfo = __decorate([
|
|
|
63682
63949
|
], ContextSensitivityInfo);
|
|
63683
63950
|
exports.ContextSensitivityInfo = ContextSensitivityInfo;
|
|
63684
63951
|
|
|
63685
|
-
},{"../Decorators":
|
|
63952
|
+
},{"../Decorators":298,"./DecisionEventInfo":349}],349:[function(require,module,exports){
|
|
63686
63953
|
"use strict";
|
|
63687
63954
|
/*!
|
|
63688
63955
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63734,7 +64001,7 @@ DecisionEventInfo = __decorate([
|
|
|
63734
64001
|
], DecisionEventInfo);
|
|
63735
64002
|
exports.DecisionEventInfo = DecisionEventInfo;
|
|
63736
64003
|
|
|
63737
|
-
},{"../Decorators":
|
|
64004
|
+
},{"../Decorators":298}],350:[function(require,module,exports){
|
|
63738
64005
|
"use strict";
|
|
63739
64006
|
/*!
|
|
63740
64007
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63947,7 +64214,7 @@ __decorate([
|
|
|
63947
64214
|
], DecisionInfo.prototype, "toString", null);
|
|
63948
64215
|
exports.DecisionInfo = DecisionInfo;
|
|
63949
64216
|
|
|
63950
|
-
},{"../Decorators":
|
|
64217
|
+
},{"../Decorators":298}],351:[function(require,module,exports){
|
|
63951
64218
|
"use strict";
|
|
63952
64219
|
/*!
|
|
63953
64220
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63967,7 +64234,7 @@ class DecisionState extends ATNState_1.ATNState {
|
|
|
63967
64234
|
}
|
|
63968
64235
|
exports.DecisionState = DecisionState;
|
|
63969
64236
|
|
|
63970
|
-
},{"./ATNState":
|
|
64237
|
+
},{"./ATNState":337}],352:[function(require,module,exports){
|
|
63971
64238
|
"use strict";
|
|
63972
64239
|
/*!
|
|
63973
64240
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64033,7 +64300,7 @@ EpsilonTransition = __decorate([
|
|
|
64033
64300
|
], EpsilonTransition);
|
|
64034
64301
|
exports.EpsilonTransition = EpsilonTransition;
|
|
64035
64302
|
|
|
64036
|
-
},{"../Decorators":
|
|
64303
|
+
},{"../Decorators":298,"./Transition":393}],353:[function(require,module,exports){
|
|
64037
64304
|
"use strict";
|
|
64038
64305
|
/*!
|
|
64039
64306
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64086,7 +64353,7 @@ ErrorInfo = __decorate([
|
|
|
64086
64353
|
], ErrorInfo);
|
|
64087
64354
|
exports.ErrorInfo = ErrorInfo;
|
|
64088
64355
|
|
|
64089
|
-
},{"../Decorators":
|
|
64356
|
+
},{"../Decorators":298,"./DecisionEventInfo":349}],354:[function(require,module,exports){
|
|
64090
64357
|
"use strict";
|
|
64091
64358
|
/*!
|
|
64092
64359
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64117,7 +64384,7 @@ __decorate([
|
|
|
64117
64384
|
], InvalidState.prototype, "stateType", null);
|
|
64118
64385
|
exports.InvalidState = InvalidState;
|
|
64119
64386
|
|
|
64120
|
-
},{"../Decorators":
|
|
64387
|
+
},{"../Decorators":298,"./ATNStateType":338,"./BasicState":344}],355:[function(require,module,exports){
|
|
64121
64388
|
"use strict";
|
|
64122
64389
|
/*!
|
|
64123
64390
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64339,7 +64606,7 @@ LL1Analyzer = __decorate([
|
|
|
64339
64606
|
], LL1Analyzer);
|
|
64340
64607
|
exports.LL1Analyzer = LL1Analyzer;
|
|
64341
64608
|
|
|
64342
|
-
},{"../Decorators":
|
|
64609
|
+
},{"../Decorators":298,"../Token":323,"../misc/Array2DHashSet":402,"../misc/BitSet":405,"../misc/IntervalSet":411,"../misc/ObjectEqualityComparator":414,"./ATNConfig":332,"./AbstractPredicateTransition":339,"./NotSetTransition":369,"./PredictionContext":378,"./RuleStopState":384,"./RuleTransition":385,"./WildcardTransition":394}],356:[function(require,module,exports){
|
|
64343
64610
|
"use strict";
|
|
64344
64611
|
/*!
|
|
64345
64612
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65056,7 +65323,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
|
|
|
65056
65323
|
})(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
|
|
65057
65324
|
exports.LexerATNSimulator = LexerATNSimulator;
|
|
65058
65325
|
|
|
65059
|
-
},{"../Decorators":
|
|
65326
|
+
},{"../Decorators":298,"../IntStream":304,"../Lexer":306,"../LexerNoViableAltException":308,"../Token":323,"../dfa/AcceptStateInfo":395,"../dfa/DFAState":398,"../misc/Interval":410,"./ATN":331,"./ATNConfig":332,"./ATNConfigSet":333,"./ATNSimulator":336,"./LexerActionExecutor":357,"./OrderedATNConfigSet":370,"./PredictionContext":378,"./RuleStopState":384,"assert":441}],357:[function(require,module,exports){
|
|
65060
65327
|
"use strict";
|
|
65061
65328
|
/*!
|
|
65062
65329
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65257,7 +65524,7 @@ LexerActionExecutor = __decorate([
|
|
|
65257
65524
|
], LexerActionExecutor);
|
|
65258
65525
|
exports.LexerActionExecutor = LexerActionExecutor;
|
|
65259
65526
|
|
|
65260
|
-
},{"../Decorators":
|
|
65527
|
+
},{"../Decorators":298,"../misc/ArrayEqualityComparator":403,"../misc/MurmurHash":413,"./LexerIndexedCustomAction":360}],358:[function(require,module,exports){
|
|
65261
65528
|
"use strict";
|
|
65262
65529
|
/*!
|
|
65263
65530
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65362,7 +65629,7 @@ __decorate([
|
|
|
65362
65629
|
], LexerChannelAction.prototype, "toString", null);
|
|
65363
65630
|
exports.LexerChannelAction = LexerChannelAction;
|
|
65364
65631
|
|
|
65365
|
-
},{"../Decorators":
|
|
65632
|
+
},{"../Decorators":298,"../misc/MurmurHash":413}],359:[function(require,module,exports){
|
|
65366
65633
|
"use strict";
|
|
65367
65634
|
/*!
|
|
65368
65635
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65491,7 +65758,7 @@ __decorate([
|
|
|
65491
65758
|
], LexerCustomAction.prototype, "equals", null);
|
|
65492
65759
|
exports.LexerCustomAction = LexerCustomAction;
|
|
65493
65760
|
|
|
65494
|
-
},{"../Decorators":
|
|
65761
|
+
},{"../Decorators":298,"../misc/MurmurHash":413}],360:[function(require,module,exports){
|
|
65495
65762
|
"use strict";
|
|
65496
65763
|
/*!
|
|
65497
65764
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65626,7 +65893,7 @@ LexerIndexedCustomAction = __decorate([
|
|
|
65626
65893
|
], LexerIndexedCustomAction);
|
|
65627
65894
|
exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
|
|
65628
65895
|
|
|
65629
|
-
},{"../Decorators":
|
|
65896
|
+
},{"../Decorators":298,"../misc/MurmurHash":413}],361:[function(require,module,exports){
|
|
65630
65897
|
"use strict";
|
|
65631
65898
|
/*!
|
|
65632
65899
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65731,7 +65998,7 @@ __decorate([
|
|
|
65731
65998
|
], LexerModeAction.prototype, "toString", null);
|
|
65732
65999
|
exports.LexerModeAction = LexerModeAction;
|
|
65733
66000
|
|
|
65734
|
-
},{"../Decorators":
|
|
66001
|
+
},{"../Decorators":298,"../misc/MurmurHash":413}],362:[function(require,module,exports){
|
|
65735
66002
|
"use strict";
|
|
65736
66003
|
/*!
|
|
65737
66004
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65827,7 +66094,7 @@ exports.LexerMoreAction = LexerMoreAction;
|
|
|
65827
66094
|
LexerMoreAction.INSTANCE = new LexerMoreAction();
|
|
65828
66095
|
})(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
|
|
65829
66096
|
|
|
65830
|
-
},{"../Decorators":
|
|
66097
|
+
},{"../Decorators":298,"../misc/MurmurHash":413}],363:[function(require,module,exports){
|
|
65831
66098
|
"use strict";
|
|
65832
66099
|
/*!
|
|
65833
66100
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65923,7 +66190,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
|
|
|
65923
66190
|
LexerPopModeAction.INSTANCE = new LexerPopModeAction();
|
|
65924
66191
|
})(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
|
|
65925
66192
|
|
|
65926
|
-
},{"../Decorators":
|
|
66193
|
+
},{"../Decorators":298,"../misc/MurmurHash":413}],364:[function(require,module,exports){
|
|
65927
66194
|
"use strict";
|
|
65928
66195
|
/*!
|
|
65929
66196
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66028,7 +66295,7 @@ __decorate([
|
|
|
66028
66295
|
], LexerPushModeAction.prototype, "toString", null);
|
|
66029
66296
|
exports.LexerPushModeAction = LexerPushModeAction;
|
|
66030
66297
|
|
|
66031
|
-
},{"../Decorators":
|
|
66298
|
+
},{"../Decorators":298,"../misc/MurmurHash":413}],365:[function(require,module,exports){
|
|
66032
66299
|
"use strict";
|
|
66033
66300
|
/*!
|
|
66034
66301
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66124,7 +66391,7 @@ exports.LexerSkipAction = LexerSkipAction;
|
|
|
66124
66391
|
LexerSkipAction.INSTANCE = new LexerSkipAction();
|
|
66125
66392
|
})(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
|
|
66126
66393
|
|
|
66127
|
-
},{"../Decorators":
|
|
66394
|
+
},{"../Decorators":298,"../misc/MurmurHash":413}],366:[function(require,module,exports){
|
|
66128
66395
|
"use strict";
|
|
66129
66396
|
/*!
|
|
66130
66397
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66228,7 +66495,7 @@ __decorate([
|
|
|
66228
66495
|
], LexerTypeAction.prototype, "toString", null);
|
|
66229
66496
|
exports.LexerTypeAction = LexerTypeAction;
|
|
66230
66497
|
|
|
66231
|
-
},{"../Decorators":
|
|
66498
|
+
},{"../Decorators":298,"../misc/MurmurHash":413}],367:[function(require,module,exports){
|
|
66232
66499
|
"use strict";
|
|
66233
66500
|
/*!
|
|
66234
66501
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66280,7 +66547,7 @@ LookaheadEventInfo = __decorate([
|
|
|
66280
66547
|
], LookaheadEventInfo);
|
|
66281
66548
|
exports.LookaheadEventInfo = LookaheadEventInfo;
|
|
66282
66549
|
|
|
66283
|
-
},{"../Decorators":
|
|
66550
|
+
},{"../Decorators":298,"./DecisionEventInfo":349}],368:[function(require,module,exports){
|
|
66284
66551
|
"use strict";
|
|
66285
66552
|
/*!
|
|
66286
66553
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66309,7 +66576,7 @@ __decorate([
|
|
|
66309
66576
|
], LoopEndState.prototype, "stateType", null);
|
|
66310
66577
|
exports.LoopEndState = LoopEndState;
|
|
66311
66578
|
|
|
66312
|
-
},{"../Decorators":
|
|
66579
|
+
},{"../Decorators":298,"./ATNState":337,"./ATNStateType":338}],369:[function(require,module,exports){
|
|
66313
66580
|
"use strict";
|
|
66314
66581
|
/*!
|
|
66315
66582
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66358,7 +66625,7 @@ NotSetTransition = __decorate([
|
|
|
66358
66625
|
], NotSetTransition);
|
|
66359
66626
|
exports.NotSetTransition = NotSetTransition;
|
|
66360
66627
|
|
|
66361
|
-
},{"../Decorators":
|
|
66628
|
+
},{"../Decorators":298,"./SetTransition":387}],370:[function(require,module,exports){
|
|
66362
66629
|
"use strict";
|
|
66363
66630
|
/*!
|
|
66364
66631
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66413,7 +66680,7 @@ __decorate([
|
|
|
66413
66680
|
], OrderedATNConfigSet.prototype, "canMerge", null);
|
|
66414
66681
|
exports.OrderedATNConfigSet = OrderedATNConfigSet;
|
|
66415
66682
|
|
|
66416
|
-
},{"../Decorators":
|
|
66683
|
+
},{"../Decorators":298,"./ATNConfigSet":333}],371:[function(require,module,exports){
|
|
66417
66684
|
"use strict";
|
|
66418
66685
|
/*!
|
|
66419
66686
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66575,7 +66842,7 @@ ParseInfo = __decorate([
|
|
|
66575
66842
|
], ParseInfo);
|
|
66576
66843
|
exports.ParseInfo = ParseInfo;
|
|
66577
66844
|
|
|
66578
|
-
},{"../Decorators":
|
|
66845
|
+
},{"../Decorators":298}],372:[function(require,module,exports){
|
|
66579
66846
|
"use strict";
|
|
66580
66847
|
/*!
|
|
66581
66848
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68848,7 +69115,7 @@ ParserATNSimulator = __decorate([
|
|
|
68848
69115
|
], ParserATNSimulator);
|
|
68849
69116
|
exports.ParserATNSimulator = ParserATNSimulator;
|
|
68850
69117
|
|
|
68851
|
-
},{"../Decorators":
|
|
69118
|
+
},{"../Decorators":298,"../IntStream":304,"../NoViableAltException":310,"../ParserRuleContext":314,"../Token":323,"../VocabularyImpl":329,"../dfa/AcceptStateInfo":395,"../dfa/DFAState":398,"../misc/Array2DHashSet":402,"../misc/Arrays":404,"../misc/BitSet":405,"../misc/IntegerList":408,"../misc/Interval":410,"../misc/ObjectEqualityComparator":414,"./ATN":331,"./ATNConfig":332,"./ATNConfigSet":333,"./ATNSimulator":336,"./ATNStateType":338,"./ActionTransition":340,"./AtomTransition":342,"./ConflictInfo":347,"./DecisionState":351,"./NotSetTransition":369,"./PredictionContext":378,"./PredictionContextCache":379,"./PredictionMode":380,"./RuleStopState":384,"./RuleTransition":385,"./SemanticContext":386,"./SetTransition":387,"./SimulatorState":388,"assert":441}],373:[function(require,module,exports){
|
|
68852
69119
|
"use strict";
|
|
68853
69120
|
/*!
|
|
68854
69121
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68881,7 +69148,7 @@ __decorate([
|
|
|
68881
69148
|
], PlusBlockStartState.prototype, "stateType", null);
|
|
68882
69149
|
exports.PlusBlockStartState = PlusBlockStartState;
|
|
68883
69150
|
|
|
68884
|
-
},{"../Decorators":
|
|
69151
|
+
},{"../Decorators":298,"./ATNStateType":338,"./BlockStartState":346}],374:[function(require,module,exports){
|
|
68885
69152
|
"use strict";
|
|
68886
69153
|
/*!
|
|
68887
69154
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68912,7 +69179,7 @@ __decorate([
|
|
|
68912
69179
|
], PlusLoopbackState.prototype, "stateType", null);
|
|
68913
69180
|
exports.PlusLoopbackState = PlusLoopbackState;
|
|
68914
69181
|
|
|
68915
|
-
},{"../Decorators":
|
|
69182
|
+
},{"../Decorators":298,"./ATNStateType":338,"./DecisionState":351}],375:[function(require,module,exports){
|
|
68916
69183
|
"use strict";
|
|
68917
69184
|
/*!
|
|
68918
69185
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68975,7 +69242,7 @@ PrecedencePredicateTransition = __decorate([
|
|
|
68975
69242
|
], PrecedencePredicateTransition);
|
|
68976
69243
|
exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
|
|
68977
69244
|
|
|
68978
|
-
},{"../Decorators":
|
|
69245
|
+
},{"../Decorators":298,"./AbstractPredicateTransition":339,"./SemanticContext":386}],376:[function(require,module,exports){
|
|
68979
69246
|
"use strict";
|
|
68980
69247
|
/*!
|
|
68981
69248
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69038,7 +69305,7 @@ PredicateEvalInfo = __decorate([
|
|
|
69038
69305
|
], PredicateEvalInfo);
|
|
69039
69306
|
exports.PredicateEvalInfo = PredicateEvalInfo;
|
|
69040
69307
|
|
|
69041
|
-
},{"../Decorators":
|
|
69308
|
+
},{"../Decorators":298,"./DecisionEventInfo":349}],377:[function(require,module,exports){
|
|
69042
69309
|
"use strict";
|
|
69043
69310
|
/*!
|
|
69044
69311
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69104,7 +69371,7 @@ PredicateTransition = __decorate([
|
|
|
69104
69371
|
], PredicateTransition);
|
|
69105
69372
|
exports.PredicateTransition = PredicateTransition;
|
|
69106
69373
|
|
|
69107
|
-
},{"../Decorators":
|
|
69374
|
+
},{"../Decorators":298,"./AbstractPredicateTransition":339,"./SemanticContext":386}],378:[function(require,module,exports){
|
|
69108
69375
|
"use strict";
|
|
69109
69376
|
/*!
|
|
69110
69377
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69795,7 +70062,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
|
|
|
69795
70062
|
PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
|
|
69796
70063
|
})(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
|
|
69797
70064
|
|
|
69798
|
-
},{"../Decorators":
|
|
70065
|
+
},{"../Decorators":298,"../misc/Array2DHashMap":401,"../misc/Array2DHashSet":402,"../misc/Arrays":404,"../misc/MurmurHash":413,"./PredictionContextCache":379,"assert":441}],379:[function(require,module,exports){
|
|
69799
70066
|
"use strict";
|
|
69800
70067
|
/*!
|
|
69801
70068
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69936,7 +70203,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
|
|
|
69936
70203
|
PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
|
|
69937
70204
|
})(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
|
|
69938
70205
|
|
|
69939
|
-
},{"../Decorators":
|
|
70206
|
+
},{"../Decorators":298,"../misc/Array2DHashMap":401,"../misc/ObjectEqualityComparator":414,"./PredictionContext":378,"assert":441}],380:[function(require,module,exports){
|
|
69940
70207
|
"use strict";
|
|
69941
70208
|
/*!
|
|
69942
70209
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70097,7 +70364,7 @@ var PredictionMode;
|
|
|
70097
70364
|
PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
|
|
70098
70365
|
})(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
|
|
70099
70366
|
|
|
70100
|
-
},{"../Decorators":
|
|
70367
|
+
},{"../Decorators":298,"../misc/Array2DHashMap":401,"../misc/MurmurHash":413,"./RuleStopState":384}],381:[function(require,module,exports){
|
|
70101
70368
|
(function (process){(function (){
|
|
70102
70369
|
"use strict";
|
|
70103
70370
|
/*!
|
|
@@ -70366,7 +70633,7 @@ __decorate([
|
|
|
70366
70633
|
exports.ProfilingATNSimulator = ProfilingATNSimulator;
|
|
70367
70634
|
|
|
70368
70635
|
}).call(this)}).call(this,require('_process'))
|
|
70369
|
-
},{"../Decorators":
|
|
70636
|
+
},{"../Decorators":298,"./ATN":331,"./ATNSimulator":336,"./AmbiguityInfo":341,"./ContextSensitivityInfo":348,"./DecisionInfo":350,"./ErrorInfo":353,"./LookaheadEventInfo":367,"./ParserATNSimulator":372,"./PredicateEvalInfo":376,"./SemanticContext":386,"./SimulatorState":388,"_process":500}],382:[function(require,module,exports){
|
|
70370
70637
|
"use strict";
|
|
70371
70638
|
/*!
|
|
70372
70639
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70424,7 +70691,7 @@ RangeTransition = __decorate([
|
|
|
70424
70691
|
], RangeTransition);
|
|
70425
70692
|
exports.RangeTransition = RangeTransition;
|
|
70426
70693
|
|
|
70427
|
-
},{"../Decorators":
|
|
70694
|
+
},{"../Decorators":298,"../misc/IntervalSet":411,"./Transition":393}],383:[function(require,module,exports){
|
|
70428
70695
|
"use strict";
|
|
70429
70696
|
/*!
|
|
70430
70697
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70457,7 +70724,7 @@ __decorate([
|
|
|
70457
70724
|
], RuleStartState.prototype, "stateType", null);
|
|
70458
70725
|
exports.RuleStartState = RuleStartState;
|
|
70459
70726
|
|
|
70460
|
-
},{"../Decorators":
|
|
70727
|
+
},{"../Decorators":298,"./ATNState":337,"./ATNStateType":338}],384:[function(require,module,exports){
|
|
70461
70728
|
"use strict";
|
|
70462
70729
|
/*!
|
|
70463
70730
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70496,7 +70763,7 @@ __decorate([
|
|
|
70496
70763
|
], RuleStopState.prototype, "stateType", null);
|
|
70497
70764
|
exports.RuleStopState = RuleStopState;
|
|
70498
70765
|
|
|
70499
|
-
},{"../Decorators":
|
|
70766
|
+
},{"../Decorators":298,"./ATNState":337,"./ATNStateType":338}],385:[function(require,module,exports){
|
|
70500
70767
|
"use strict";
|
|
70501
70768
|
/*!
|
|
70502
70769
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70552,7 +70819,7 @@ RuleTransition = __decorate([
|
|
|
70552
70819
|
], RuleTransition);
|
|
70553
70820
|
exports.RuleTransition = RuleTransition;
|
|
70554
70821
|
|
|
70555
|
-
},{"../Decorators":
|
|
70822
|
+
},{"../Decorators":298,"./Transition":393}],386:[function(require,module,exports){
|
|
70556
70823
|
"use strict";
|
|
70557
70824
|
/*!
|
|
70558
70825
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71032,7 +71299,7 @@ exports.SemanticContext = SemanticContext;
|
|
|
71032
71299
|
SemanticContext.OR = OR;
|
|
71033
71300
|
})(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
|
|
71034
71301
|
|
|
71035
|
-
},{"../Decorators":
|
|
71302
|
+
},{"../Decorators":298,"../misc/Array2DHashSet":402,"../misc/ArrayEqualityComparator":403,"../misc/MurmurHash":413,"../misc/ObjectEqualityComparator":414,"../misc/Utils":417}],387:[function(require,module,exports){
|
|
71036
71303
|
"use strict";
|
|
71037
71304
|
/*!
|
|
71038
71305
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71098,7 +71365,7 @@ SetTransition = __decorate([
|
|
|
71098
71365
|
], SetTransition);
|
|
71099
71366
|
exports.SetTransition = SetTransition;
|
|
71100
71367
|
|
|
71101
|
-
},{"../Decorators":
|
|
71368
|
+
},{"../Decorators":298,"../Token":323,"../misc/IntervalSet":411,"./Transition":393}],388:[function(require,module,exports){
|
|
71102
71369
|
"use strict";
|
|
71103
71370
|
/*!
|
|
71104
71371
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71134,7 +71401,7 @@ SimulatorState = __decorate([
|
|
|
71134
71401
|
], SimulatorState);
|
|
71135
71402
|
exports.SimulatorState = SimulatorState;
|
|
71136
71403
|
|
|
71137
|
-
},{"../Decorators":
|
|
71404
|
+
},{"../Decorators":298,"../ParserRuleContext":314}],389:[function(require,module,exports){
|
|
71138
71405
|
"use strict";
|
|
71139
71406
|
/*!
|
|
71140
71407
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71162,7 +71429,7 @@ __decorate([
|
|
|
71162
71429
|
], StarBlockStartState.prototype, "stateType", null);
|
|
71163
71430
|
exports.StarBlockStartState = StarBlockStartState;
|
|
71164
71431
|
|
|
71165
|
-
},{"../Decorators":
|
|
71432
|
+
},{"../Decorators":298,"./ATNStateType":338,"./BlockStartState":346}],390:[function(require,module,exports){
|
|
71166
71433
|
"use strict";
|
|
71167
71434
|
/*!
|
|
71168
71435
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71219,7 +71486,7 @@ __decorate([
|
|
|
71219
71486
|
], StarLoopEntryState.prototype, "stateType", null);
|
|
71220
71487
|
exports.StarLoopEntryState = StarLoopEntryState;
|
|
71221
71488
|
|
|
71222
|
-
},{"../Decorators":
|
|
71489
|
+
},{"../Decorators":298,"../misc/BitSet":405,"./ATNStateType":338,"./DecisionState":351}],391:[function(require,module,exports){
|
|
71223
71490
|
"use strict";
|
|
71224
71491
|
/*!
|
|
71225
71492
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71250,7 +71517,7 @@ __decorate([
|
|
|
71250
71517
|
], StarLoopbackState.prototype, "stateType", null);
|
|
71251
71518
|
exports.StarLoopbackState = StarLoopbackState;
|
|
71252
71519
|
|
|
71253
|
-
},{"../Decorators":
|
|
71520
|
+
},{"../Decorators":298,"./ATNState":337,"./ATNStateType":338}],392:[function(require,module,exports){
|
|
71254
71521
|
"use strict";
|
|
71255
71522
|
/*!
|
|
71256
71523
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71279,7 +71546,7 @@ __decorate([
|
|
|
71279
71546
|
], TokensStartState.prototype, "stateType", null);
|
|
71280
71547
|
exports.TokensStartState = TokensStartState;
|
|
71281
71548
|
|
|
71282
|
-
},{"../Decorators":
|
|
71549
|
+
},{"../Decorators":298,"./ATNStateType":338,"./DecisionState":351}],393:[function(require,module,exports){
|
|
71283
71550
|
"use strict";
|
|
71284
71551
|
/*!
|
|
71285
71552
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71353,7 +71620,7 @@ Transition = __decorate([
|
|
|
71353
71620
|
], Transition);
|
|
71354
71621
|
exports.Transition = Transition;
|
|
71355
71622
|
|
|
71356
|
-
},{"../Decorators":
|
|
71623
|
+
},{"../Decorators":298}],394:[function(require,module,exports){
|
|
71357
71624
|
"use strict";
|
|
71358
71625
|
/*!
|
|
71359
71626
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71401,7 +71668,7 @@ WildcardTransition = __decorate([
|
|
|
71401
71668
|
], WildcardTransition);
|
|
71402
71669
|
exports.WildcardTransition = WildcardTransition;
|
|
71403
71670
|
|
|
71404
|
-
},{"../Decorators":
|
|
71671
|
+
},{"../Decorators":298,"./Transition":393}],395:[function(require,module,exports){
|
|
71405
71672
|
"use strict";
|
|
71406
71673
|
/*!
|
|
71407
71674
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71443,7 +71710,7 @@ class AcceptStateInfo {
|
|
|
71443
71710
|
}
|
|
71444
71711
|
exports.AcceptStateInfo = AcceptStateInfo;
|
|
71445
71712
|
|
|
71446
|
-
},{}],
|
|
71713
|
+
},{}],396:[function(require,module,exports){
|
|
71447
71714
|
"use strict";
|
|
71448
71715
|
/*!
|
|
71449
71716
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71618,7 +71885,7 @@ DFA = __decorate([
|
|
|
71618
71885
|
], DFA);
|
|
71619
71886
|
exports.DFA = DFA;
|
|
71620
71887
|
|
|
71621
|
-
},{"../Decorators":
|
|
71888
|
+
},{"../Decorators":298,"../VocabularyImpl":329,"../atn/ATNConfigSet":333,"../atn/StarLoopEntryState":390,"../misc/Array2DHashSet":402,"../misc/ObjectEqualityComparator":414,"./DFASerializer":397,"./DFAState":398,"./LexerDFASerializer":399}],397:[function(require,module,exports){
|
|
71622
71889
|
"use strict";
|
|
71623
71890
|
/*!
|
|
71624
71891
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71760,7 +72027,7 @@ __decorate([
|
|
|
71760
72027
|
], DFASerializer.prototype, "toString", null);
|
|
71761
72028
|
exports.DFASerializer = DFASerializer;
|
|
71762
72029
|
|
|
71763
|
-
},{"../Decorators":
|
|
72030
|
+
},{"../Decorators":298,"../Recognizer":318,"../VocabularyImpl":329,"../atn/ATNSimulator":336,"../atn/PredictionContext":378}],398:[function(require,module,exports){
|
|
71764
72031
|
"use strict";
|
|
71765
72032
|
/*!
|
|
71766
72033
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71991,7 +72258,7 @@ exports.DFAState = DFAState;
|
|
|
71991
72258
|
DFAState.PredPrediction = PredPrediction;
|
|
71992
72259
|
})(DFAState = exports.DFAState || (exports.DFAState = {}));
|
|
71993
72260
|
|
|
71994
|
-
},{"../Decorators":
|
|
72261
|
+
},{"../Decorators":298,"../atn/ATN":331,"../atn/PredictionContext":378,"../misc/BitSet":405,"../misc/MurmurHash":413,"assert":441}],399:[function(require,module,exports){
|
|
71995
72262
|
"use strict";
|
|
71996
72263
|
/*!
|
|
71997
72264
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72028,7 +72295,7 @@ LexerDFASerializer = __decorate([
|
|
|
72028
72295
|
], LexerDFASerializer);
|
|
72029
72296
|
exports.LexerDFASerializer = LexerDFASerializer;
|
|
72030
72297
|
|
|
72031
|
-
},{"../Decorators":
|
|
72298
|
+
},{"../Decorators":298,"../VocabularyImpl":329,"./DFASerializer":397}],400:[function(require,module,exports){
|
|
72032
72299
|
"use strict";
|
|
72033
72300
|
/*!
|
|
72034
72301
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72094,7 +72361,7 @@ __exportStar(require("./Vocabulary"), exports);
|
|
|
72094
72361
|
__exportStar(require("./VocabularyImpl"), exports);
|
|
72095
72362
|
__exportStar(require("./WritableToken"), exports);
|
|
72096
72363
|
|
|
72097
|
-
},{"./ANTLRErrorListener":
|
|
72364
|
+
},{"./ANTLRErrorListener":285,"./ANTLRErrorStrategy":286,"./ANTLRInputStream":287,"./BailErrorStrategy":288,"./BufferedTokenStream":289,"./CharStream":290,"./CharStreams":291,"./CodePointBuffer":292,"./CodePointCharStream":293,"./CommonToken":294,"./CommonTokenFactory":295,"./CommonTokenStream":296,"./ConsoleErrorListener":297,"./DefaultErrorStrategy":299,"./Dependents":300,"./DiagnosticErrorListener":301,"./FailedPredicateException":302,"./InputMismatchException":303,"./IntStream":304,"./InterpreterRuleContext":305,"./Lexer":306,"./LexerInterpreter":307,"./LexerNoViableAltException":308,"./ListTokenSource":309,"./NoViableAltException":310,"./Parser":311,"./ParserErrorListener":312,"./ParserInterpreter":313,"./ParserRuleContext":314,"./ProxyErrorListener":315,"./ProxyParserErrorListener":316,"./RecognitionException":317,"./Recognizer":318,"./RuleContext":319,"./RuleContextWithAltNum":320,"./RuleDependency":321,"./RuleVersion":322,"./Token":323,"./TokenFactory":324,"./TokenSource":325,"./TokenStream":326,"./TokenStreamRewriter":327,"./Vocabulary":328,"./VocabularyImpl":329,"./WritableToken":330}],401:[function(require,module,exports){
|
|
72098
72365
|
"use strict";
|
|
72099
72366
|
/*!
|
|
72100
72367
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72177,7 +72444,7 @@ class Array2DHashMap {
|
|
|
72177
72444
|
}
|
|
72178
72445
|
exports.Array2DHashMap = Array2DHashMap;
|
|
72179
72446
|
|
|
72180
|
-
},{"./Array2DHashSet":
|
|
72447
|
+
},{"./Array2DHashSet":402}],402:[function(require,module,exports){
|
|
72181
72448
|
"use strict";
|
|
72182
72449
|
/*!
|
|
72183
72450
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72544,7 +72811,7 @@ __decorate([
|
|
|
72544
72811
|
], Array2DHashSet.prototype, "createBuckets", null);
|
|
72545
72812
|
exports.Array2DHashSet = Array2DHashSet;
|
|
72546
72813
|
|
|
72547
|
-
},{"../Decorators":
|
|
72814
|
+
},{"../Decorators":298,"./DefaultEqualityComparator":407,"./MurmurHash":413,"assert":441}],403:[function(require,module,exports){
|
|
72548
72815
|
"use strict";
|
|
72549
72816
|
/*!
|
|
72550
72817
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72616,7 +72883,7 @@ __decorate([
|
|
|
72616
72883
|
], ArrayEqualityComparator.prototype, "equals", null);
|
|
72617
72884
|
exports.ArrayEqualityComparator = ArrayEqualityComparator;
|
|
72618
72885
|
|
|
72619
|
-
},{"../Decorators":
|
|
72886
|
+
},{"../Decorators":298,"./MurmurHash":413,"./ObjectEqualityComparator":414}],404:[function(require,module,exports){
|
|
72620
72887
|
"use strict";
|
|
72621
72888
|
/*!
|
|
72622
72889
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72686,7 +72953,7 @@ var Arrays;
|
|
|
72686
72953
|
Arrays.toString = toString;
|
|
72687
72954
|
})(Arrays = exports.Arrays || (exports.Arrays = {}));
|
|
72688
72955
|
|
|
72689
|
-
},{}],
|
|
72956
|
+
},{}],405:[function(require,module,exports){
|
|
72690
72957
|
"use strict";
|
|
72691
72958
|
/*!
|
|
72692
72959
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73358,7 +73625,7 @@ class BitSetIterator {
|
|
|
73358
73625
|
[Symbol.iterator]() { return this; }
|
|
73359
73626
|
}
|
|
73360
73627
|
|
|
73361
|
-
},{"./MurmurHash":
|
|
73628
|
+
},{"./MurmurHash":413,"util":505}],406:[function(require,module,exports){
|
|
73362
73629
|
"use strict";
|
|
73363
73630
|
/*!
|
|
73364
73631
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73379,7 +73646,7 @@ function isSupplementaryCodePoint(ch) {
|
|
|
73379
73646
|
}
|
|
73380
73647
|
exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
|
|
73381
73648
|
|
|
73382
|
-
},{}],
|
|
73649
|
+
},{}],407:[function(require,module,exports){
|
|
73383
73650
|
"use strict";
|
|
73384
73651
|
/*!
|
|
73385
73652
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73450,7 +73717,7 @@ __decorate([
|
|
|
73450
73717
|
], DefaultEqualityComparator.prototype, "equals", null);
|
|
73451
73718
|
exports.DefaultEqualityComparator = DefaultEqualityComparator;
|
|
73452
73719
|
|
|
73453
|
-
},{"../Decorators":
|
|
73720
|
+
},{"../Decorators":298,"./MurmurHash":413,"./ObjectEqualityComparator":414}],408:[function(require,module,exports){
|
|
73454
73721
|
"use strict";
|
|
73455
73722
|
/*!
|
|
73456
73723
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73744,7 +74011,7 @@ __decorate([
|
|
|
73744
74011
|
], IntegerList.prototype, "toString", null);
|
|
73745
74012
|
exports.IntegerList = IntegerList;
|
|
73746
74013
|
|
|
73747
|
-
},{"../Decorators":
|
|
74014
|
+
},{"../Decorators":298,"./Arrays":404}],409:[function(require,module,exports){
|
|
73748
74015
|
"use strict";
|
|
73749
74016
|
/*!
|
|
73750
74017
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73774,7 +74041,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
|
|
|
73774
74041
|
}
|
|
73775
74042
|
exports.IntegerStack = IntegerStack;
|
|
73776
74043
|
|
|
73777
|
-
},{"./IntegerList":
|
|
74044
|
+
},{"./IntegerList":408}],410:[function(require,module,exports){
|
|
73778
74045
|
"use strict";
|
|
73779
74046
|
/*!
|
|
73780
74047
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73917,7 +74184,7 @@ __decorate([
|
|
|
73917
74184
|
], Interval.prototype, "toString", null);
|
|
73918
74185
|
exports.Interval = Interval;
|
|
73919
74186
|
|
|
73920
|
-
},{"../Decorators":
|
|
74187
|
+
},{"../Decorators":298}],411:[function(require,module,exports){
|
|
73921
74188
|
"use strict";
|
|
73922
74189
|
/*!
|
|
73923
74190
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74563,7 +74830,7 @@ __decorate([
|
|
|
74563
74830
|
], IntervalSet, "subtract", null);
|
|
74564
74831
|
exports.IntervalSet = IntervalSet;
|
|
74565
74832
|
|
|
74566
|
-
},{"../Decorators":
|
|
74833
|
+
},{"../Decorators":298,"../Lexer":306,"../Token":323,"./ArrayEqualityComparator":403,"./IntegerList":408,"./Interval":410,"./MurmurHash":413}],412:[function(require,module,exports){
|
|
74567
74834
|
"use strict";
|
|
74568
74835
|
/*!
|
|
74569
74836
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74596,7 +74863,7 @@ class MultiMap extends Map {
|
|
|
74596
74863
|
}
|
|
74597
74864
|
exports.MultiMap = MultiMap;
|
|
74598
74865
|
|
|
74599
|
-
},{}],
|
|
74866
|
+
},{}],413:[function(require,module,exports){
|
|
74600
74867
|
"use strict";
|
|
74601
74868
|
/*!
|
|
74602
74869
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74711,7 +74978,7 @@ var MurmurHash;
|
|
|
74711
74978
|
}
|
|
74712
74979
|
})(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
|
|
74713
74980
|
|
|
74714
|
-
},{}],
|
|
74981
|
+
},{}],414:[function(require,module,exports){
|
|
74715
74982
|
"use strict";
|
|
74716
74983
|
/*!
|
|
74717
74984
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74770,7 +75037,7 @@ __decorate([
|
|
|
74770
75037
|
], ObjectEqualityComparator.prototype, "equals", null);
|
|
74771
75038
|
exports.ObjectEqualityComparator = ObjectEqualityComparator;
|
|
74772
75039
|
|
|
74773
|
-
},{"../Decorators":
|
|
75040
|
+
},{"../Decorators":298}],415:[function(require,module,exports){
|
|
74774
75041
|
"use strict";
|
|
74775
75042
|
/*!
|
|
74776
75043
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74799,7 +75066,7 @@ class ParseCancellationException extends Error {
|
|
|
74799
75066
|
}
|
|
74800
75067
|
exports.ParseCancellationException = ParseCancellationException;
|
|
74801
75068
|
|
|
74802
|
-
},{}],
|
|
75069
|
+
},{}],416:[function(require,module,exports){
|
|
74803
75070
|
"use strict";
|
|
74804
75071
|
/*!
|
|
74805
75072
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74853,7 +75120,7 @@ class UUID {
|
|
|
74853
75120
|
}
|
|
74854
75121
|
exports.UUID = UUID;
|
|
74855
75122
|
|
|
74856
|
-
},{"./MurmurHash":
|
|
75123
|
+
},{"./MurmurHash":413}],417:[function(require,module,exports){
|
|
74857
75124
|
"use strict";
|
|
74858
75125
|
/*!
|
|
74859
75126
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75028,7 +75295,7 @@ exports.toCharArray = toCharArray;
|
|
|
75028
75295
|
// return s;
|
|
75029
75296
|
// }
|
|
75030
75297
|
|
|
75031
|
-
},{}],
|
|
75298
|
+
},{}],418:[function(require,module,exports){
|
|
75032
75299
|
"use strict";
|
|
75033
75300
|
/*!
|
|
75034
75301
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75173,7 +75440,7 @@ __decorate([
|
|
|
75173
75440
|
], AbstractParseTreeVisitor.prototype, "shouldVisitNextChild", null);
|
|
75174
75441
|
exports.AbstractParseTreeVisitor = AbstractParseTreeVisitor;
|
|
75175
75442
|
|
|
75176
|
-
},{"../Decorators":
|
|
75443
|
+
},{"../Decorators":298}],419:[function(require,module,exports){
|
|
75177
75444
|
"use strict";
|
|
75178
75445
|
/*!
|
|
75179
75446
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75209,7 +75476,7 @@ __decorate([
|
|
|
75209
75476
|
], ErrorNode.prototype, "accept", null);
|
|
75210
75477
|
exports.ErrorNode = ErrorNode;
|
|
75211
75478
|
|
|
75212
|
-
},{"../Decorators":
|
|
75479
|
+
},{"../Decorators":298,"./TerminalNode":421}],420:[function(require,module,exports){
|
|
75213
75480
|
"use strict";
|
|
75214
75481
|
/*!
|
|
75215
75482
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75221,7 +75488,7 @@ class RuleNode {
|
|
|
75221
75488
|
}
|
|
75222
75489
|
exports.RuleNode = RuleNode;
|
|
75223
75490
|
|
|
75224
|
-
},{}],
|
|
75491
|
+
},{}],421:[function(require,module,exports){
|
|
75225
75492
|
"use strict";
|
|
75226
75493
|
/*!
|
|
75227
75494
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75313,7 +75580,7 @@ __decorate([
|
|
|
75313
75580
|
], TerminalNode.prototype, "toString", null);
|
|
75314
75581
|
exports.TerminalNode = TerminalNode;
|
|
75315
75582
|
|
|
75316
|
-
},{"../Decorators":
|
|
75583
|
+
},{"../Decorators":298,"../Token":323,"../misc/Interval":410}],422:[function(require,module,exports){
|
|
75317
75584
|
"use strict";
|
|
75318
75585
|
/*!
|
|
75319
75586
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75557,7 +75824,7 @@ __decorate([
|
|
|
75557
75824
|
], Trees, "getRootOfSubtreeEnclosingRegion", null);
|
|
75558
75825
|
exports.Trees = Trees;
|
|
75559
75826
|
|
|
75560
|
-
},{"../CommonToken":
|
|
75827
|
+
},{"../CommonToken":294,"../Decorators":298,"../Parser":311,"../ParserRuleContext":314,"../Token":323,"../atn/ATN":331,"../misc/Utils":417,"./ErrorNode":419,"./RuleNode":420,"./TerminalNode":421}],423:[function(require,module,exports){
|
|
75561
75828
|
"use strict";
|
|
75562
75829
|
/*!
|
|
75563
75830
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75581,7 +75848,7 @@ class Chunk {
|
|
|
75581
75848
|
}
|
|
75582
75849
|
exports.Chunk = Chunk;
|
|
75583
75850
|
|
|
75584
|
-
},{}],
|
|
75851
|
+
},{}],424:[function(require,module,exports){
|
|
75585
75852
|
"use strict";
|
|
75586
75853
|
/*!
|
|
75587
75854
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75761,7 +76028,7 @@ ParseTreeMatch = __decorate([
|
|
|
75761
76028
|
], ParseTreeMatch);
|
|
75762
76029
|
exports.ParseTreeMatch = ParseTreeMatch;
|
|
75763
76030
|
|
|
75764
|
-
},{"../../Decorators":
|
|
76031
|
+
},{"../../Decorators":298}],425:[function(require,module,exports){
|
|
75765
76032
|
"use strict";
|
|
75766
76033
|
/*!
|
|
75767
76034
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75919,7 +76186,7 @@ ParseTreePattern = __decorate([
|
|
|
75919
76186
|
], ParseTreePattern);
|
|
75920
76187
|
exports.ParseTreePattern = ParseTreePattern;
|
|
75921
76188
|
|
|
75922
|
-
},{"../../Decorators":
|
|
76189
|
+
},{"../../Decorators":298,"../xpath/XPath":431}],426:[function(require,module,exports){
|
|
75923
76190
|
"use strict";
|
|
75924
76191
|
/*!
|
|
75925
76192
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76397,7 +76664,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
|
|
|
76397
76664
|
ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
|
|
76398
76665
|
})(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
|
|
76399
76666
|
|
|
76400
|
-
},{"../../BailErrorStrategy":
|
|
76667
|
+
},{"../../BailErrorStrategy":288,"../../CharStreams":291,"../../CommonTokenStream":296,"../../Decorators":298,"../../ListTokenSource":309,"../../ParserInterpreter":313,"../../ParserRuleContext":314,"../../RecognitionException":317,"../../Token":323,"../../misc/MultiMap":412,"../../misc/ParseCancellationException":415,"../RuleNode":420,"../TerminalNode":421,"./ParseTreeMatch":424,"./ParseTreePattern":425,"./RuleTagToken":427,"./TagChunk":428,"./TextChunk":429,"./TokenTagToken":430}],427:[function(require,module,exports){
|
|
76401
76668
|
"use strict";
|
|
76402
76669
|
/*!
|
|
76403
76670
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76595,7 +76862,7 @@ RuleTagToken = __decorate([
|
|
|
76595
76862
|
], RuleTagToken);
|
|
76596
76863
|
exports.RuleTagToken = RuleTagToken;
|
|
76597
76864
|
|
|
76598
|
-
},{"../../Decorators":
|
|
76865
|
+
},{"../../Decorators":298,"../../Token":323}],428:[function(require,module,exports){
|
|
76599
76866
|
"use strict";
|
|
76600
76867
|
/*!
|
|
76601
76868
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76682,7 +76949,7 @@ __decorate([
|
|
|
76682
76949
|
], TagChunk.prototype, "toString", null);
|
|
76683
76950
|
exports.TagChunk = TagChunk;
|
|
76684
76951
|
|
|
76685
|
-
},{"../../Decorators":
|
|
76952
|
+
},{"../../Decorators":298,"./Chunk":423}],429:[function(require,module,exports){
|
|
76686
76953
|
"use strict";
|
|
76687
76954
|
/*!
|
|
76688
76955
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76752,7 +77019,7 @@ TextChunk = __decorate([
|
|
|
76752
77019
|
], TextChunk);
|
|
76753
77020
|
exports.TextChunk = TextChunk;
|
|
76754
77021
|
|
|
76755
|
-
},{"../../Decorators":
|
|
77022
|
+
},{"../../Decorators":298,"./Chunk":423}],430:[function(require,module,exports){
|
|
76756
77023
|
"use strict";
|
|
76757
77024
|
/*!
|
|
76758
77025
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76847,7 +77114,7 @@ TokenTagToken = __decorate([
|
|
|
76847
77114
|
], TokenTagToken);
|
|
76848
77115
|
exports.TokenTagToken = TokenTagToken;
|
|
76849
77116
|
|
|
76850
|
-
},{"../../CommonToken":
|
|
77117
|
+
},{"../../CommonToken":294,"../../Decorators":298}],431:[function(require,module,exports){
|
|
76851
77118
|
"use strict";
|
|
76852
77119
|
/*!
|
|
76853
77120
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77044,7 +77311,7 @@ exports.XPath = XPath;
|
|
|
77044
77311
|
XPath.WILDCARD = "*"; // word not operator/separator
|
|
77045
77312
|
XPath.NOT = "!"; // word for invert operator
|
|
77046
77313
|
|
|
77047
|
-
},{"../../CharStreams":
|
|
77314
|
+
},{"../../CharStreams":291,"../../CommonTokenStream":296,"../../LexerNoViableAltException":308,"../../ParserRuleContext":314,"../../Token":323,"./XPathLexer":433,"./XPathLexerErrorListener":434,"./XPathRuleAnywhereElement":435,"./XPathRuleElement":436,"./XPathTokenAnywhereElement":437,"./XPathTokenElement":438,"./XPathWildcardAnywhereElement":439,"./XPathWildcardElement":440}],432:[function(require,module,exports){
|
|
77048
77315
|
"use strict";
|
|
77049
77316
|
/*!
|
|
77050
77317
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77079,7 +77346,7 @@ __decorate([
|
|
|
77079
77346
|
], XPathElement.prototype, "toString", null);
|
|
77080
77347
|
exports.XPathElement = XPathElement;
|
|
77081
77348
|
|
|
77082
|
-
},{"../../Decorators":
|
|
77349
|
+
},{"../../Decorators":298}],433:[function(require,module,exports){
|
|
77083
77350
|
"use strict";
|
|
77084
77351
|
// Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
77085
77352
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -77554,7 +77821,7 @@ XPathLexer._serializedATN = Utils.join([
|
|
|
77554
77821
|
XPathLexer._serializedATNSegment1,
|
|
77555
77822
|
], "");
|
|
77556
77823
|
|
|
77557
|
-
},{"../../Lexer":
|
|
77824
|
+
},{"../../Lexer":306,"../../VocabularyImpl":329,"../../atn/ATNDeserializer":335,"../../atn/LexerATNSimulator":356,"../../misc/Utils":417}],434:[function(require,module,exports){
|
|
77558
77825
|
"use strict";
|
|
77559
77826
|
/*!
|
|
77560
77827
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77579,7 +77846,7 @@ __decorate([
|
|
|
77579
77846
|
], XPathLexerErrorListener.prototype, "syntaxError", null);
|
|
77580
77847
|
exports.XPathLexerErrorListener = XPathLexerErrorListener;
|
|
77581
77848
|
|
|
77582
|
-
},{"../../Decorators":
|
|
77849
|
+
},{"../../Decorators":298}],435:[function(require,module,exports){
|
|
77583
77850
|
"use strict";
|
|
77584
77851
|
/*!
|
|
77585
77852
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77613,7 +77880,7 @@ __decorate([
|
|
|
77613
77880
|
], XPathRuleAnywhereElement.prototype, "evaluate", null);
|
|
77614
77881
|
exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
|
|
77615
77882
|
|
|
77616
|
-
},{"../../Decorators":
|
|
77883
|
+
},{"../../Decorators":298,"../Trees":422,"./XPathElement":432}],436:[function(require,module,exports){
|
|
77617
77884
|
"use strict";
|
|
77618
77885
|
/*!
|
|
77619
77886
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77656,7 +77923,7 @@ __decorate([
|
|
|
77656
77923
|
], XPathRuleElement.prototype, "evaluate", null);
|
|
77657
77924
|
exports.XPathRuleElement = XPathRuleElement;
|
|
77658
77925
|
|
|
77659
|
-
},{"../../Decorators":
|
|
77926
|
+
},{"../../Decorators":298,"../../ParserRuleContext":314,"../Trees":422,"./XPathElement":432}],437:[function(require,module,exports){
|
|
77660
77927
|
"use strict";
|
|
77661
77928
|
/*!
|
|
77662
77929
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77688,7 +77955,7 @@ __decorate([
|
|
|
77688
77955
|
], XPathTokenAnywhereElement.prototype, "evaluate", null);
|
|
77689
77956
|
exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
|
|
77690
77957
|
|
|
77691
|
-
},{"../../Decorators":
|
|
77958
|
+
},{"../../Decorators":298,"../Trees":422,"./XPathElement":432}],438:[function(require,module,exports){
|
|
77692
77959
|
"use strict";
|
|
77693
77960
|
/*!
|
|
77694
77961
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77731,7 +77998,7 @@ __decorate([
|
|
|
77731
77998
|
], XPathTokenElement.prototype, "evaluate", null);
|
|
77732
77999
|
exports.XPathTokenElement = XPathTokenElement;
|
|
77733
78000
|
|
|
77734
|
-
},{"../../Decorators":
|
|
78001
|
+
},{"../../Decorators":298,"../TerminalNode":421,"../Trees":422,"./XPathElement":432}],439:[function(require,module,exports){
|
|
77735
78002
|
"use strict";
|
|
77736
78003
|
/*!
|
|
77737
78004
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77767,7 +78034,7 @@ __decorate([
|
|
|
77767
78034
|
], XPathWildcardAnywhereElement.prototype, "evaluate", null);
|
|
77768
78035
|
exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
|
|
77769
78036
|
|
|
77770
|
-
},{"../../Decorators":
|
|
78037
|
+
},{"../../Decorators":298,"../Trees":422,"./XPath":431,"./XPathElement":432}],440:[function(require,module,exports){
|
|
77771
78038
|
"use strict";
|
|
77772
78039
|
/*!
|
|
77773
78040
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77807,7 +78074,7 @@ __decorate([
|
|
|
77807
78074
|
], XPathWildcardElement.prototype, "evaluate", null);
|
|
77808
78075
|
exports.XPathWildcardElement = XPathWildcardElement;
|
|
77809
78076
|
|
|
77810
|
-
},{"../../Decorators":
|
|
78077
|
+
},{"../../Decorators":298,"../Trees":422,"./XPath":431,"./XPathElement":432}],441:[function(require,module,exports){
|
|
77811
78078
|
(function (global){(function (){
|
|
77812
78079
|
'use strict';
|
|
77813
78080
|
|
|
@@ -78317,7 +78584,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
78317
78584
|
};
|
|
78318
78585
|
|
|
78319
78586
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
78320
|
-
},{"object.assign/polyfill":
|
|
78587
|
+
},{"object.assign/polyfill":498,"util/":444}],442:[function(require,module,exports){
|
|
78321
78588
|
if (typeof Object.create === 'function') {
|
|
78322
78589
|
// implementation from standard node.js 'util' module
|
|
78323
78590
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -78342,14 +78609,14 @@ if (typeof Object.create === 'function') {
|
|
|
78342
78609
|
}
|
|
78343
78610
|
}
|
|
78344
78611
|
|
|
78345
|
-
},{}],
|
|
78612
|
+
},{}],443:[function(require,module,exports){
|
|
78346
78613
|
module.exports = function isBuffer(arg) {
|
|
78347
78614
|
return arg && typeof arg === 'object'
|
|
78348
78615
|
&& typeof arg.copy === 'function'
|
|
78349
78616
|
&& typeof arg.fill === 'function'
|
|
78350
78617
|
&& typeof arg.readUInt8 === 'function';
|
|
78351
78618
|
}
|
|
78352
|
-
},{}],
|
|
78619
|
+
},{}],444:[function(require,module,exports){
|
|
78353
78620
|
(function (process,global){(function (){
|
|
78354
78621
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
78355
78622
|
//
|
|
@@ -78939,7 +79206,7 @@ function hasOwnProperty(obj, prop) {
|
|
|
78939
79206
|
}
|
|
78940
79207
|
|
|
78941
79208
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
78942
|
-
},{"./support/isBuffer":
|
|
79209
|
+
},{"./support/isBuffer":443,"_process":500,"inherits":442}],445:[function(require,module,exports){
|
|
78943
79210
|
(function (global){(function (){
|
|
78944
79211
|
'use strict';
|
|
78945
79212
|
|
|
@@ -78960,7 +79227,7 @@ module.exports = function availableTypedArrays() {
|
|
|
78960
79227
|
};
|
|
78961
79228
|
|
|
78962
79229
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
78963
|
-
},{"possible-typed-array-names":
|
|
79230
|
+
},{"possible-typed-array-names":499}],446:[function(require,module,exports){
|
|
78964
79231
|
(function (process,global){(function (){
|
|
78965
79232
|
module.exports = process.hrtime || hrtime
|
|
78966
79233
|
|
|
@@ -78991,7 +79258,7 @@ function hrtime(previousTimestamp){
|
|
|
78991
79258
|
return [seconds,nanoseconds]
|
|
78992
79259
|
}
|
|
78993
79260
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
78994
|
-
},{"_process":
|
|
79261
|
+
},{"_process":500}],447:[function(require,module,exports){
|
|
78995
79262
|
'use strict';
|
|
78996
79263
|
|
|
78997
79264
|
var bind = require('function-bind');
|
|
@@ -79003,7 +79270,7 @@ var $reflectApply = require('./reflectApply');
|
|
|
79003
79270
|
/** @type {import('./actualApply')} */
|
|
79004
79271
|
module.exports = $reflectApply || bind.call($call, $apply);
|
|
79005
79272
|
|
|
79006
|
-
},{"./functionApply":
|
|
79273
|
+
},{"./functionApply":449,"./functionCall":450,"./reflectApply":452,"function-bind":468}],448:[function(require,module,exports){
|
|
79007
79274
|
'use strict';
|
|
79008
79275
|
|
|
79009
79276
|
var bind = require('function-bind');
|
|
@@ -79015,19 +79282,19 @@ module.exports = function applyBind() {
|
|
|
79015
79282
|
return actualApply(bind, $apply, arguments);
|
|
79016
79283
|
};
|
|
79017
79284
|
|
|
79018
|
-
},{"./actualApply":
|
|
79285
|
+
},{"./actualApply":447,"./functionApply":449,"function-bind":468}],449:[function(require,module,exports){
|
|
79019
79286
|
'use strict';
|
|
79020
79287
|
|
|
79021
79288
|
/** @type {import('./functionApply')} */
|
|
79022
79289
|
module.exports = Function.prototype.apply;
|
|
79023
79290
|
|
|
79024
|
-
},{}],
|
|
79291
|
+
},{}],450:[function(require,module,exports){
|
|
79025
79292
|
'use strict';
|
|
79026
79293
|
|
|
79027
79294
|
/** @type {import('./functionCall')} */
|
|
79028
79295
|
module.exports = Function.prototype.call;
|
|
79029
79296
|
|
|
79030
|
-
},{}],
|
|
79297
|
+
},{}],451:[function(require,module,exports){
|
|
79031
79298
|
'use strict';
|
|
79032
79299
|
|
|
79033
79300
|
var bind = require('function-bind');
|
|
@@ -79044,13 +79311,13 @@ module.exports = function callBindBasic(args) {
|
|
|
79044
79311
|
return $actualApply(bind, $call, args);
|
|
79045
79312
|
};
|
|
79046
79313
|
|
|
79047
|
-
},{"./actualApply":
|
|
79314
|
+
},{"./actualApply":447,"./functionCall":450,"es-errors/type":463,"function-bind":468}],452:[function(require,module,exports){
|
|
79048
79315
|
'use strict';
|
|
79049
79316
|
|
|
79050
79317
|
/** @type {import('./reflectApply')} */
|
|
79051
79318
|
module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
|
|
79052
79319
|
|
|
79053
|
-
},{}],
|
|
79320
|
+
},{}],453:[function(require,module,exports){
|
|
79054
79321
|
'use strict';
|
|
79055
79322
|
|
|
79056
79323
|
var setFunctionLength = require('set-function-length');
|
|
@@ -79076,7 +79343,7 @@ if ($defineProperty) {
|
|
|
79076
79343
|
module.exports.apply = applyBind;
|
|
79077
79344
|
}
|
|
79078
79345
|
|
|
79079
|
-
},{"call-bind-apply-helpers":
|
|
79346
|
+
},{"call-bind-apply-helpers":451,"call-bind-apply-helpers/applyBind":448,"es-define-property":457,"set-function-length":502}],454:[function(require,module,exports){
|
|
79080
79347
|
'use strict';
|
|
79081
79348
|
|
|
79082
79349
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -79097,7 +79364,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
79097
79364
|
return intrinsic;
|
|
79098
79365
|
};
|
|
79099
79366
|
|
|
79100
|
-
},{"call-bind-apply-helpers":
|
|
79367
|
+
},{"call-bind-apply-helpers":451,"get-intrinsic":469}],455:[function(require,module,exports){
|
|
79101
79368
|
'use strict';
|
|
79102
79369
|
|
|
79103
79370
|
var $defineProperty = require('es-define-property');
|
|
@@ -79155,7 +79422,7 @@ module.exports = function defineDataProperty(
|
|
|
79155
79422
|
}
|
|
79156
79423
|
};
|
|
79157
79424
|
|
|
79158
|
-
},{"es-define-property":
|
|
79425
|
+
},{"es-define-property":457,"es-errors/syntax":462,"es-errors/type":463,"gopd":474}],456:[function(require,module,exports){
|
|
79159
79426
|
'use strict';
|
|
79160
79427
|
|
|
79161
79428
|
var callBind = require('call-bind-apply-helpers');
|
|
@@ -79187,7 +79454,7 @@ module.exports = desc && typeof desc.get === 'function'
|
|
|
79187
79454
|
}
|
|
79188
79455
|
: false;
|
|
79189
79456
|
|
|
79190
|
-
},{"call-bind-apply-helpers":
|
|
79457
|
+
},{"call-bind-apply-helpers":451,"gopd":474}],457:[function(require,module,exports){
|
|
79191
79458
|
'use strict';
|
|
79192
79459
|
|
|
79193
79460
|
/** @type {import('.')} */
|
|
@@ -79203,55 +79470,55 @@ if ($defineProperty) {
|
|
|
79203
79470
|
|
|
79204
79471
|
module.exports = $defineProperty;
|
|
79205
79472
|
|
|
79206
|
-
},{}],
|
|
79473
|
+
},{}],458:[function(require,module,exports){
|
|
79207
79474
|
'use strict';
|
|
79208
79475
|
|
|
79209
79476
|
/** @type {import('./eval')} */
|
|
79210
79477
|
module.exports = EvalError;
|
|
79211
79478
|
|
|
79212
|
-
},{}],
|
|
79479
|
+
},{}],459:[function(require,module,exports){
|
|
79213
79480
|
'use strict';
|
|
79214
79481
|
|
|
79215
79482
|
/** @type {import('.')} */
|
|
79216
79483
|
module.exports = Error;
|
|
79217
79484
|
|
|
79218
|
-
},{}],
|
|
79485
|
+
},{}],460:[function(require,module,exports){
|
|
79219
79486
|
'use strict';
|
|
79220
79487
|
|
|
79221
79488
|
/** @type {import('./range')} */
|
|
79222
79489
|
module.exports = RangeError;
|
|
79223
79490
|
|
|
79224
|
-
},{}],
|
|
79491
|
+
},{}],461:[function(require,module,exports){
|
|
79225
79492
|
'use strict';
|
|
79226
79493
|
|
|
79227
79494
|
/** @type {import('./ref')} */
|
|
79228
79495
|
module.exports = ReferenceError;
|
|
79229
79496
|
|
|
79230
|
-
},{}],
|
|
79497
|
+
},{}],462:[function(require,module,exports){
|
|
79231
79498
|
'use strict';
|
|
79232
79499
|
|
|
79233
79500
|
/** @type {import('./syntax')} */
|
|
79234
79501
|
module.exports = SyntaxError;
|
|
79235
79502
|
|
|
79236
|
-
},{}],
|
|
79503
|
+
},{}],463:[function(require,module,exports){
|
|
79237
79504
|
'use strict';
|
|
79238
79505
|
|
|
79239
79506
|
/** @type {import('./type')} */
|
|
79240
79507
|
module.exports = TypeError;
|
|
79241
79508
|
|
|
79242
|
-
},{}],
|
|
79509
|
+
},{}],464:[function(require,module,exports){
|
|
79243
79510
|
'use strict';
|
|
79244
79511
|
|
|
79245
79512
|
/** @type {import('./uri')} */
|
|
79246
79513
|
module.exports = URIError;
|
|
79247
79514
|
|
|
79248
|
-
},{}],
|
|
79515
|
+
},{}],465:[function(require,module,exports){
|
|
79249
79516
|
'use strict';
|
|
79250
79517
|
|
|
79251
79518
|
/** @type {import('.')} */
|
|
79252
79519
|
module.exports = Object;
|
|
79253
79520
|
|
|
79254
|
-
},{}],
|
|
79521
|
+
},{}],466:[function(require,module,exports){
|
|
79255
79522
|
'use strict';
|
|
79256
79523
|
|
|
79257
79524
|
var isCallable = require('is-callable');
|
|
@@ -79322,7 +79589,7 @@ module.exports = function forEach(list, iterator, thisArg) {
|
|
|
79322
79589
|
}
|
|
79323
79590
|
};
|
|
79324
79591
|
|
|
79325
|
-
},{"is-callable":
|
|
79592
|
+
},{"is-callable":482}],467:[function(require,module,exports){
|
|
79326
79593
|
'use strict';
|
|
79327
79594
|
|
|
79328
79595
|
/* eslint no-invalid-this: 1 */
|
|
@@ -79408,14 +79675,14 @@ module.exports = function bind(that) {
|
|
|
79408
79675
|
return bound;
|
|
79409
79676
|
};
|
|
79410
79677
|
|
|
79411
|
-
},{}],
|
|
79678
|
+
},{}],468:[function(require,module,exports){
|
|
79412
79679
|
'use strict';
|
|
79413
79680
|
|
|
79414
79681
|
var implementation = require('./implementation');
|
|
79415
79682
|
|
|
79416
79683
|
module.exports = Function.prototype.bind || implementation;
|
|
79417
79684
|
|
|
79418
|
-
},{"./implementation":
|
|
79685
|
+
},{"./implementation":467}],469:[function(require,module,exports){
|
|
79419
79686
|
'use strict';
|
|
79420
79687
|
|
|
79421
79688
|
var undefined;
|
|
@@ -79795,7 +80062,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
79795
80062
|
return value;
|
|
79796
80063
|
};
|
|
79797
80064
|
|
|
79798
|
-
},{"call-bind-apply-helpers/functionApply":
|
|
80065
|
+
},{"call-bind-apply-helpers/functionApply":449,"call-bind-apply-helpers/functionCall":450,"es-define-property":457,"es-errors":459,"es-errors/eval":458,"es-errors/range":460,"es-errors/ref":461,"es-errors/syntax":462,"es-errors/type":463,"es-errors/uri":464,"es-object-atoms":465,"function-bind":468,"get-proto":472,"get-proto/Object.getPrototypeOf":470,"get-proto/Reflect.getPrototypeOf":471,"gopd":474,"has-symbols":476,"hasown":479,"math-intrinsics/abs":486,"math-intrinsics/floor":487,"math-intrinsics/max":489,"math-intrinsics/min":490,"math-intrinsics/pow":491,"math-intrinsics/round":492,"math-intrinsics/sign":493}],470:[function(require,module,exports){
|
|
79799
80066
|
'use strict';
|
|
79800
80067
|
|
|
79801
80068
|
var $Object = require('es-object-atoms');
|
|
@@ -79803,13 +80070,13 @@ var $Object = require('es-object-atoms');
|
|
|
79803
80070
|
/** @type {import('./Object.getPrototypeOf')} */
|
|
79804
80071
|
module.exports = $Object.getPrototypeOf || null;
|
|
79805
80072
|
|
|
79806
|
-
},{"es-object-atoms":
|
|
80073
|
+
},{"es-object-atoms":465}],471:[function(require,module,exports){
|
|
79807
80074
|
'use strict';
|
|
79808
80075
|
|
|
79809
80076
|
/** @type {import('./Reflect.getPrototypeOf')} */
|
|
79810
80077
|
module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
|
|
79811
80078
|
|
|
79812
|
-
},{}],
|
|
80079
|
+
},{}],472:[function(require,module,exports){
|
|
79813
80080
|
'use strict';
|
|
79814
80081
|
|
|
79815
80082
|
var reflectGetProto = require('./Reflect.getPrototypeOf');
|
|
@@ -79838,13 +80105,13 @@ module.exports = reflectGetProto
|
|
|
79838
80105
|
}
|
|
79839
80106
|
: null;
|
|
79840
80107
|
|
|
79841
|
-
},{"./Object.getPrototypeOf":
|
|
80108
|
+
},{"./Object.getPrototypeOf":470,"./Reflect.getPrototypeOf":471,"dunder-proto/get":456}],473:[function(require,module,exports){
|
|
79842
80109
|
'use strict';
|
|
79843
80110
|
|
|
79844
80111
|
/** @type {import('./gOPD')} */
|
|
79845
80112
|
module.exports = Object.getOwnPropertyDescriptor;
|
|
79846
80113
|
|
|
79847
|
-
},{}],
|
|
80114
|
+
},{}],474:[function(require,module,exports){
|
|
79848
80115
|
'use strict';
|
|
79849
80116
|
|
|
79850
80117
|
/** @type {import('.')} */
|
|
@@ -79861,7 +80128,7 @@ if ($gOPD) {
|
|
|
79861
80128
|
|
|
79862
80129
|
module.exports = $gOPD;
|
|
79863
80130
|
|
|
79864
|
-
},{"./gOPD":
|
|
80131
|
+
},{"./gOPD":473}],475:[function(require,module,exports){
|
|
79865
80132
|
'use strict';
|
|
79866
80133
|
|
|
79867
80134
|
var $defineProperty = require('es-define-property');
|
|
@@ -79885,7 +80152,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
|
|
|
79885
80152
|
|
|
79886
80153
|
module.exports = hasPropertyDescriptors;
|
|
79887
80154
|
|
|
79888
|
-
},{"es-define-property":
|
|
80155
|
+
},{"es-define-property":457}],476:[function(require,module,exports){
|
|
79889
80156
|
'use strict';
|
|
79890
80157
|
|
|
79891
80158
|
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
|
@@ -79901,7 +80168,7 @@ module.exports = function hasNativeSymbols() {
|
|
|
79901
80168
|
return hasSymbolSham();
|
|
79902
80169
|
};
|
|
79903
80170
|
|
|
79904
|
-
},{"./shams":
|
|
80171
|
+
},{"./shams":477}],477:[function(require,module,exports){
|
|
79905
80172
|
'use strict';
|
|
79906
80173
|
|
|
79907
80174
|
/** @type {import('./shams')} */
|
|
@@ -79948,7 +80215,7 @@ module.exports = function hasSymbols() {
|
|
|
79948
80215
|
return true;
|
|
79949
80216
|
};
|
|
79950
80217
|
|
|
79951
|
-
},{}],
|
|
80218
|
+
},{}],478:[function(require,module,exports){
|
|
79952
80219
|
'use strict';
|
|
79953
80220
|
|
|
79954
80221
|
var hasSymbols = require('has-symbols/shams');
|
|
@@ -79958,7 +80225,7 @@ module.exports = function hasToStringTagShams() {
|
|
|
79958
80225
|
return hasSymbols() && !!Symbol.toStringTag;
|
|
79959
80226
|
};
|
|
79960
80227
|
|
|
79961
|
-
},{"has-symbols/shams":
|
|
80228
|
+
},{"has-symbols/shams":477}],479:[function(require,module,exports){
|
|
79962
80229
|
'use strict';
|
|
79963
80230
|
|
|
79964
80231
|
var call = Function.prototype.call;
|
|
@@ -79968,7 +80235,7 @@ var bind = require('function-bind');
|
|
|
79968
80235
|
/** @type {import('.')} */
|
|
79969
80236
|
module.exports = bind.call(call, $hasOwn);
|
|
79970
80237
|
|
|
79971
|
-
},{"function-bind":
|
|
80238
|
+
},{"function-bind":468}],480:[function(require,module,exports){
|
|
79972
80239
|
if (typeof Object.create === 'function') {
|
|
79973
80240
|
// implementation from standard node.js 'util' module
|
|
79974
80241
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -79997,7 +80264,7 @@ if (typeof Object.create === 'function') {
|
|
|
79997
80264
|
}
|
|
79998
80265
|
}
|
|
79999
80266
|
|
|
80000
|
-
},{}],
|
|
80267
|
+
},{}],481:[function(require,module,exports){
|
|
80001
80268
|
'use strict';
|
|
80002
80269
|
|
|
80003
80270
|
var hasToStringTag = require('has-tostringtag/shams')();
|
|
@@ -80043,7 +80310,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
|
80043
80310
|
/** @type {import('.')} */
|
|
80044
80311
|
module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
80045
80312
|
|
|
80046
|
-
},{"call-bound":
|
|
80313
|
+
},{"call-bound":454,"has-tostringtag/shams":478}],482:[function(require,module,exports){
|
|
80047
80314
|
'use strict';
|
|
80048
80315
|
|
|
80049
80316
|
var fnToStr = Function.prototype.toString;
|
|
@@ -80146,7 +80413,7 @@ module.exports = reflectApply
|
|
|
80146
80413
|
return tryFunctionObject(value);
|
|
80147
80414
|
};
|
|
80148
80415
|
|
|
80149
|
-
},{}],
|
|
80416
|
+
},{}],483:[function(require,module,exports){
|
|
80150
80417
|
'use strict';
|
|
80151
80418
|
|
|
80152
80419
|
var callBound = require('call-bound');
|
|
@@ -80195,7 +80462,7 @@ module.exports = function isGeneratorFunction(fn) {
|
|
|
80195
80462
|
return getProto(fn) === GeneratorFunction;
|
|
80196
80463
|
};
|
|
80197
80464
|
|
|
80198
|
-
},{"call-bound":
|
|
80465
|
+
},{"call-bound":454,"get-proto":472,"has-tostringtag/shams":478,"safe-regex-test":501}],484:[function(require,module,exports){
|
|
80199
80466
|
'use strict';
|
|
80200
80467
|
|
|
80201
80468
|
var callBound = require('call-bound');
|
|
@@ -80266,7 +80533,7 @@ if (hasToStringTag) {
|
|
|
80266
80533
|
|
|
80267
80534
|
module.exports = fn;
|
|
80268
80535
|
|
|
80269
|
-
},{"call-bound":
|
|
80536
|
+
},{"call-bound":454,"gopd":474,"has-tostringtag/shams":478,"hasown":479}],485:[function(require,module,exports){
|
|
80270
80537
|
'use strict';
|
|
80271
80538
|
|
|
80272
80539
|
var whichTypedArray = require('which-typed-array');
|
|
@@ -80276,19 +80543,19 @@ module.exports = function isTypedArray(value) {
|
|
|
80276
80543
|
return !!whichTypedArray(value);
|
|
80277
80544
|
};
|
|
80278
80545
|
|
|
80279
|
-
},{"which-typed-array":
|
|
80546
|
+
},{"which-typed-array":506}],486:[function(require,module,exports){
|
|
80280
80547
|
'use strict';
|
|
80281
80548
|
|
|
80282
80549
|
/** @type {import('./abs')} */
|
|
80283
80550
|
module.exports = Math.abs;
|
|
80284
80551
|
|
|
80285
|
-
},{}],
|
|
80552
|
+
},{}],487:[function(require,module,exports){
|
|
80286
80553
|
'use strict';
|
|
80287
80554
|
|
|
80288
80555
|
/** @type {import('./floor')} */
|
|
80289
80556
|
module.exports = Math.floor;
|
|
80290
80557
|
|
|
80291
|
-
},{}],
|
|
80558
|
+
},{}],488:[function(require,module,exports){
|
|
80292
80559
|
'use strict';
|
|
80293
80560
|
|
|
80294
80561
|
/** @type {import('./isNaN')} */
|
|
@@ -80296,31 +80563,31 @@ module.exports = Number.isNaN || function isNaN(a) {
|
|
|
80296
80563
|
return a !== a;
|
|
80297
80564
|
};
|
|
80298
80565
|
|
|
80299
|
-
},{}],
|
|
80566
|
+
},{}],489:[function(require,module,exports){
|
|
80300
80567
|
'use strict';
|
|
80301
80568
|
|
|
80302
80569
|
/** @type {import('./max')} */
|
|
80303
80570
|
module.exports = Math.max;
|
|
80304
80571
|
|
|
80305
|
-
},{}],
|
|
80572
|
+
},{}],490:[function(require,module,exports){
|
|
80306
80573
|
'use strict';
|
|
80307
80574
|
|
|
80308
80575
|
/** @type {import('./min')} */
|
|
80309
80576
|
module.exports = Math.min;
|
|
80310
80577
|
|
|
80311
|
-
},{}],
|
|
80578
|
+
},{}],491:[function(require,module,exports){
|
|
80312
80579
|
'use strict';
|
|
80313
80580
|
|
|
80314
80581
|
/** @type {import('./pow')} */
|
|
80315
80582
|
module.exports = Math.pow;
|
|
80316
80583
|
|
|
80317
|
-
},{}],
|
|
80584
|
+
},{}],492:[function(require,module,exports){
|
|
80318
80585
|
'use strict';
|
|
80319
80586
|
|
|
80320
80587
|
/** @type {import('./round')} */
|
|
80321
80588
|
module.exports = Math.round;
|
|
80322
80589
|
|
|
80323
|
-
},{}],
|
|
80590
|
+
},{}],493:[function(require,module,exports){
|
|
80324
80591
|
'use strict';
|
|
80325
80592
|
|
|
80326
80593
|
var $isNaN = require('./isNaN');
|
|
@@ -80333,7 +80600,7 @@ module.exports = function sign(number) {
|
|
|
80333
80600
|
return number < 0 ? -1 : +1;
|
|
80334
80601
|
};
|
|
80335
80602
|
|
|
80336
|
-
},{"./isNaN":
|
|
80603
|
+
},{"./isNaN":488}],494:[function(require,module,exports){
|
|
80337
80604
|
'use strict';
|
|
80338
80605
|
|
|
80339
80606
|
var keysShim;
|
|
@@ -80457,7 +80724,7 @@ if (!Object.keys) {
|
|
|
80457
80724
|
}
|
|
80458
80725
|
module.exports = keysShim;
|
|
80459
80726
|
|
|
80460
|
-
},{"./isArguments":
|
|
80727
|
+
},{"./isArguments":496}],495:[function(require,module,exports){
|
|
80461
80728
|
'use strict';
|
|
80462
80729
|
|
|
80463
80730
|
var slice = Array.prototype.slice;
|
|
@@ -80491,7 +80758,7 @@ keysShim.shim = function shimObjectKeys() {
|
|
|
80491
80758
|
|
|
80492
80759
|
module.exports = keysShim;
|
|
80493
80760
|
|
|
80494
|
-
},{"./implementation":
|
|
80761
|
+
},{"./implementation":494,"./isArguments":496}],496:[function(require,module,exports){
|
|
80495
80762
|
'use strict';
|
|
80496
80763
|
|
|
80497
80764
|
var toStr = Object.prototype.toString;
|
|
@@ -80510,7 +80777,7 @@ module.exports = function isArguments(value) {
|
|
|
80510
80777
|
return isArgs;
|
|
80511
80778
|
};
|
|
80512
80779
|
|
|
80513
|
-
},{}],
|
|
80780
|
+
},{}],497:[function(require,module,exports){
|
|
80514
80781
|
'use strict';
|
|
80515
80782
|
|
|
80516
80783
|
// modified from https://github.com/es-shims/es6-shim
|
|
@@ -80558,7 +80825,7 @@ module.exports = function assign(target, source1) {
|
|
|
80558
80825
|
return to; // step 4
|
|
80559
80826
|
};
|
|
80560
80827
|
|
|
80561
|
-
},{"call-bound":
|
|
80828
|
+
},{"call-bound":454,"es-object-atoms":465,"has-symbols/shams":477,"object-keys":495}],498:[function(require,module,exports){
|
|
80562
80829
|
'use strict';
|
|
80563
80830
|
|
|
80564
80831
|
var implementation = require('./implementation');
|
|
@@ -80615,7 +80882,7 @@ module.exports = function getPolyfill() {
|
|
|
80615
80882
|
return Object.assign;
|
|
80616
80883
|
};
|
|
80617
80884
|
|
|
80618
|
-
},{"./implementation":
|
|
80885
|
+
},{"./implementation":497}],499:[function(require,module,exports){
|
|
80619
80886
|
'use strict';
|
|
80620
80887
|
|
|
80621
80888
|
/** @type {import('.')} */
|
|
@@ -80634,7 +80901,7 @@ module.exports = [
|
|
|
80634
80901
|
'BigUint64Array'
|
|
80635
80902
|
];
|
|
80636
80903
|
|
|
80637
|
-
},{}],
|
|
80904
|
+
},{}],500:[function(require,module,exports){
|
|
80638
80905
|
// shim for using process in browser
|
|
80639
80906
|
var process = module.exports = {};
|
|
80640
80907
|
|
|
@@ -80820,7 +81087,7 @@ process.chdir = function (dir) {
|
|
|
80820
81087
|
};
|
|
80821
81088
|
process.umask = function() { return 0; };
|
|
80822
81089
|
|
|
80823
|
-
},{}],
|
|
81090
|
+
},{}],501:[function(require,module,exports){
|
|
80824
81091
|
'use strict';
|
|
80825
81092
|
|
|
80826
81093
|
var callBound = require('call-bound');
|
|
@@ -80839,7 +81106,7 @@ module.exports = function regexTester(regex) {
|
|
|
80839
81106
|
};
|
|
80840
81107
|
};
|
|
80841
81108
|
|
|
80842
|
-
},{"call-bound":
|
|
81109
|
+
},{"call-bound":454,"es-errors/type":463,"is-regex":484}],502:[function(require,module,exports){
|
|
80843
81110
|
'use strict';
|
|
80844
81111
|
|
|
80845
81112
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -80883,9 +81150,9 @@ module.exports = function setFunctionLength(fn, length) {
|
|
|
80883
81150
|
return fn;
|
|
80884
81151
|
};
|
|
80885
81152
|
|
|
80886
|
-
},{"define-data-property":
|
|
80887
|
-
arguments[4][
|
|
80888
|
-
},{"dup":
|
|
81153
|
+
},{"define-data-property":455,"es-errors/type":463,"get-intrinsic":469,"gopd":474,"has-property-descriptors":475}],503:[function(require,module,exports){
|
|
81154
|
+
arguments[4][443][0].apply(exports,arguments)
|
|
81155
|
+
},{"dup":443}],504:[function(require,module,exports){
|
|
80889
81156
|
// Currently in sync with Node.js lib/internal/util/types.js
|
|
80890
81157
|
// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
|
|
80891
81158
|
|
|
@@ -81221,7 +81488,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
|
|
|
81221
81488
|
});
|
|
81222
81489
|
});
|
|
81223
81490
|
|
|
81224
|
-
},{"is-arguments":
|
|
81491
|
+
},{"is-arguments":481,"is-generator-function":483,"is-typed-array":485,"which-typed-array":506}],505:[function(require,module,exports){
|
|
81225
81492
|
(function (process){(function (){
|
|
81226
81493
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
81227
81494
|
//
|
|
@@ -81940,7 +82207,7 @@ function callbackify(original) {
|
|
|
81940
82207
|
exports.callbackify = callbackify;
|
|
81941
82208
|
|
|
81942
82209
|
}).call(this)}).call(this,require('_process'))
|
|
81943
|
-
},{"./support/isBuffer":
|
|
82210
|
+
},{"./support/isBuffer":503,"./support/types":504,"_process":500,"inherits":480}],506:[function(require,module,exports){
|
|
81944
82211
|
(function (global){(function (){
|
|
81945
82212
|
'use strict';
|
|
81946
82213
|
|
|
@@ -82061,5 +82328,5 @@ module.exports = function whichTypedArray(value) {
|
|
|
82061
82328
|
};
|
|
82062
82329
|
|
|
82063
82330
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
82064
|
-
},{"available-typed-arrays":
|
|
82331
|
+
},{"available-typed-arrays":445,"call-bind":453,"call-bound":454,"for-each":466,"get-proto":472,"gopd":474,"has-tostringtag/shams":478}]},{},[145])(145)
|
|
82065
82332
|
});
|