@designliquido/delegua 1.21.0 → 1.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/avaliador-sintatico/avaliador-sintatico.d.ts.map +1 -1
- package/avaliador-sintatico/avaliador-sintatico.js +4 -0
- 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/interpretador/interpretador-base.d.ts.map +1 -1
- package/interpretador/interpretador-base.js +5 -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 +707 -503
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":175,"../quebras":246,"./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;
|
|
@@ -1856,7 +1856,7 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
1856
1856
|
}
|
|
1857
1857
|
exports.AnalisadorSemantico = AnalisadorSemantico;
|
|
1858
1858
|
|
|
1859
|
-
},{"../avaliador-sintatico/comum":12,"../avaliador-sintatico/micro-avaliador-sintatico":25,"../construtos":
|
|
1859
|
+
},{"../avaliador-sintatico/comum":12,"../avaliador-sintatico/micro-avaliador-sintatico":25,"../construtos":67,"../declaracoes":116,"../interfaces/erros":172,"../lexador/micro-lexador":243,"./analisador-semantico-base":1,"./gerenciador-escopos":5,"./pilha-variaveis":7}],3:[function(require,module,exports){
|
|
1860
1860
|
"use strict";
|
|
1861
1861
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1862
1862
|
|
|
@@ -2063,7 +2063,7 @@ function inferirCodigoDiagnosticoSemantico(mensagem, severidade) {
|
|
|
2063
2063
|
return 'SEMANTICO_DIAGNOSTICO_GENERICO';
|
|
2064
2064
|
}
|
|
2065
2065
|
|
|
2066
|
-
},{"../interfaces":
|
|
2066
|
+
},{"../interfaces":175}],9:[function(require,module,exports){
|
|
2067
2067
|
"use strict";
|
|
2068
2068
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2069
2069
|
|
|
@@ -2343,7 +2343,7 @@ class AvaliadorSintaticoBase {
|
|
|
2343
2343
|
}
|
|
2344
2344
|
exports.AvaliadorSintaticoBase = AvaliadorSintaticoBase;
|
|
2345
2345
|
|
|
2346
|
-
},{"../construtos":
|
|
2346
|
+
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/comum":251,"./erro-avaliador-sintatico":21}],11:[function(require,module,exports){
|
|
2347
2347
|
"use strict";
|
|
2348
2348
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
2349
2349
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -3824,9 +3824,13 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
3824
3824
|
const importar = new declaracoes_1.Importar(construtoCaminhoModulo);
|
|
3825
3825
|
if (identificadorDeTudo !== null) {
|
|
3826
3826
|
importar.simboloTudo = identificadorDeTudo;
|
|
3827
|
+
this.pilhaEscopos.definirInformacoesVariavel(identificadorDeTudo.lexema, new informacao_elemento_sintatico_1.InformacaoElementoSintatico(identificadorDeTudo.lexema, 'módulo'));
|
|
3827
3828
|
}
|
|
3828
3829
|
else {
|
|
3829
3830
|
importar.elementosImportacao = elementosImportacao;
|
|
3831
|
+
for (const elemento of elementosImportacao) {
|
|
3832
|
+
this.pilhaEscopos.definirInformacoesVariavel(elemento.lexema, new informacao_elemento_sintatico_1.InformacaoElementoSintatico(elemento.lexema, 'qualquer'));
|
|
3833
|
+
}
|
|
3830
3834
|
}
|
|
3831
3835
|
return Promise.resolve(importar);
|
|
3832
3836
|
}
|
|
@@ -5456,7 +5460,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
5456
5460
|
}
|
|
5457
5461
|
exports.AvaliadorSintatico = AvaliadorSintatico;
|
|
5458
5462
|
|
|
5459
|
-
},{"../bibliotecas/primitivas-dicionario":31,"../bibliotecas/primitivas-numero":32,"../bibliotecas/primitivas-texto":33,"../bibliotecas/primitivas-vetor":34,"../construtos":
|
|
5463
|
+
},{"../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":245,"../tipos-de-dados/delegua":247,"../tipos-de-simbolos/delegua":252,"./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":445}],12:[function(require,module,exports){
|
|
5460
5464
|
"use strict";
|
|
5461
5465
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5462
5466
|
exports.buscarRetornos = buscarRetornos;
|
|
@@ -5571,7 +5575,7 @@ function registrarPrimitiva(primitivasConhecidas, tipo, catalogoPrimitivas) {
|
|
|
5571
5575
|
}
|
|
5572
5576
|
}
|
|
5573
5577
|
|
|
5574
|
-
},{"../declaracoes":
|
|
5578
|
+
},{"../declaracoes":116,"../informacao-elemento-sintatico":147}],13:[function(require,module,exports){
|
|
5575
5579
|
"use strict";
|
|
5576
5580
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
5577
5581
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -6231,7 +6235,7 @@ class AvaliadorSintaticoEguaClassico {
|
|
|
6231
6235
|
}
|
|
6232
6236
|
exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
|
|
6233
6237
|
|
|
6234
|
-
},{"../../construtos":
|
|
6238
|
+
},{"../../construtos":67,"../../declaracoes":116,"../../tipos-de-simbolos/egua-classico":253,"../erro-avaliador-sintatico":21}],14:[function(require,module,exports){
|
|
6235
6239
|
"use strict";
|
|
6236
6240
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
6237
6241
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -8040,7 +8044,7 @@ class AvaliadorSintaticoPitugues {
|
|
|
8040
8044
|
}
|
|
8041
8045
|
exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
|
|
8042
8046
|
|
|
8043
|
-
},{"../../bibliotecas/dialetos/pitugues/primitivas-tupla":30,"../../bibliotecas/primitivas-dicionario":31,"../../bibliotecas/primitivas-numero":32,"../../bibliotecas/primitivas-texto":33,"../../bibliotecas/primitivas-vetor":34,"../../construtos":
|
|
8047
|
+
},{"../../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":237,"../../lexador/micro-lexador-pitugues":242,"../../tipos-de-dados/dialetos/pitugues":248,"../../tipos-de-simbolos/pitugues":256,"../comum":12,"../erro-avaliador-sintatico":21,"../informacao-escopo":23,"../pilha-escopos":27,"./micro-avaliador-sintatico-pitugues":19,"browser-process-hrtime":445}],15:[function(require,module,exports){
|
|
8044
8048
|
"use strict";
|
|
8045
8049
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8046
8050
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -8588,7 +8592,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
|
|
|
8588
8592
|
}
|
|
8589
8593
|
exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
|
|
8590
8594
|
|
|
8591
|
-
},{"../../construtos":
|
|
8595
|
+
},{"../../construtos":67,"../../declaracoes":116,"../../lexador/simbolo":245,"../../tipos-de-simbolos/portugol-ipt":257,"../avaliador-sintatico-base":10}],16:[function(require,module,exports){
|
|
8592
8596
|
"use strict";
|
|
8593
8597
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8594
8598
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -9555,7 +9559,7 @@ class AvaliadorSintaticoPrisma extends avaliador_sintatico_base_1.AvaliadorSinta
|
|
|
9555
9559
|
}
|
|
9556
9560
|
exports.AvaliadorSintaticoPrisma = AvaliadorSintaticoPrisma;
|
|
9557
9561
|
|
|
9558
|
-
},{"../../bibliotecas/primitivas-dicionario":31,"../../bibliotecas/primitivas-numero":32,"../../bibliotecas/primitivas-texto":33,"../../bibliotecas/primitivas-vetor":34,"../../construtos":
|
|
9562
|
+
},{"../../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":237,"../../tipos-de-simbolos/prisma":258,"../avaliador-sintatico-base":10,"../comum":12,"../erro-avaliador-sintatico":21,"../informacao-escopo":23,"../pilha-escopos":27,"browser-process-hrtime":445}],17:[function(require,module,exports){
|
|
9559
9563
|
"use strict";
|
|
9560
9564
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
9561
9565
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -10567,7 +10571,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
|
|
|
10567
10571
|
}
|
|
10568
10572
|
exports.AvaliadorSintaticoTenda = AvaliadorSintaticoTenda;
|
|
10569
10573
|
|
|
10570
|
-
},{"../../bibliotecas/primitivas-dicionario":31,"../../bibliotecas/primitivas-numero":32,"../../bibliotecas/primitivas-texto":33,"../../bibliotecas/primitivas-vetor":34,"../../construtos":
|
|
10574
|
+
},{"../../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":245,"../../tipos-de-dados/delegua":247,"../../tipos-de-simbolos/tenda":259,"../avaliador-sintatico-base":10,"./../erro-avaliador-sintatico":21,"./../informacao-escopo":23,"./../pilha-escopos":27,"browser-process-hrtime":445}],18:[function(require,module,exports){
|
|
10571
10575
|
"use strict";
|
|
10572
10576
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10573
10577
|
if (k2 === undefined) k2 = k;
|
|
@@ -10836,7 +10840,7 @@ class MicroAvaliadorSintaticoPitugues extends micro_avaliador_sintatico_base_1.M
|
|
|
10836
10840
|
}
|
|
10837
10841
|
exports.MicroAvaliadorSintaticoPitugues = MicroAvaliadorSintaticoPitugues;
|
|
10838
10842
|
|
|
10839
|
-
},{"../../construtos":
|
|
10843
|
+
},{"../../construtos":67,"../../declaracoes":116,"../../inferenciador":146,"../../tipos-de-simbolos/pitugues":256,"../micro-avaliador-sintatico-base":24}],20:[function(require,module,exports){
|
|
10840
10844
|
"use strict";
|
|
10841
10845
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10842
10846
|
exports.ElementoMontaoTipos = void 0;
|
|
@@ -11022,7 +11026,7 @@ class MicroAvaliadorSintaticoBase {
|
|
|
11022
11026
|
}
|
|
11023
11027
|
exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
|
|
11024
11028
|
|
|
11025
|
-
},{"../construtos":
|
|
11029
|
+
},{"../construtos":67,"../tipos-de-simbolos/comum":251,"./erro-avaliador-sintatico":21}],25:[function(require,module,exports){
|
|
11026
11030
|
"use strict";
|
|
11027
11031
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11028
11032
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -11255,7 +11259,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
|
|
|
11255
11259
|
}
|
|
11256
11260
|
exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
|
|
11257
11261
|
|
|
11258
|
-
},{"../construtos":
|
|
11262
|
+
},{"../construtos":67,"../tipos-de-simbolos/microgramaticas/delegua":255,"./micro-avaliador-sintatico-base":24}],26:[function(require,module,exports){
|
|
11259
11263
|
"use strict";
|
|
11260
11264
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11261
11265
|
exports.MontaoTipos = void 0;
|
|
@@ -11306,7 +11310,7 @@ class MontaoTipos {
|
|
|
11306
11310
|
}
|
|
11307
11311
|
exports.MontaoTipos = MontaoTipos;
|
|
11308
11312
|
|
|
11309
|
-
},{"../geracao-identificadores":
|
|
11313
|
+
},{"../geracao-identificadores":144,"./erro-avaliador-sintatico":21}],27:[function(require,module,exports){
|
|
11310
11314
|
"use strict";
|
|
11311
11315
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11312
11316
|
exports.PilhaEscopos = void 0;
|
|
@@ -12597,30 +12601,44 @@ async function vetor(interpretador, tupla) {
|
|
|
12597
12601
|
return resultadoFinal;
|
|
12598
12602
|
}
|
|
12599
12603
|
|
|
12600
|
-
},{"../construtos":
|
|
12604
|
+
},{"../construtos":67,"../excecoes":140,"../interpretador/estruturas":208,"../interpretador/estruturas/descritor-tipo-classe":206,"../interpretador/estruturas/funcao-padrao":207,"../interpretador/estruturas/objeto-delegua-classe":213,"../quebras":246}],30:[function(require,module,exports){
|
|
12601
12605
|
"use strict";
|
|
12602
12606
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12603
12607
|
const excecoes_1 = require("../../../excecoes");
|
|
12604
12608
|
const construtos_1 = require("../../../construtos");
|
|
12609
|
+
const informacao_elemento_sintatico_1 = require("../../../informacao-elemento-sintatico");
|
|
12610
|
+
const obterValoresPuros = (interpretador, tupla, nomeMetodo) => {
|
|
12611
|
+
const objetoTupla = interpretador.resolverValor(tupla);
|
|
12612
|
+
if (!(objetoTupla instanceof construtos_1.TuplaN)) {
|
|
12613
|
+
throw new excecoes_1.ErroEmTempoDeExecucao(null, `A função "${nomeMetodo}" só pode ser chamada em tuplas.`, interpretador.linhaDeclaracaoAtual);
|
|
12614
|
+
}
|
|
12615
|
+
return objetoTupla.elementos.map((elemento) => interpretador.resolverValor(elemento));
|
|
12616
|
+
};
|
|
12605
12617
|
exports.default = {
|
|
12606
|
-
|
|
12607
|
-
tipoRetorno: '
|
|
12608
|
-
argumentos: [
|
|
12609
|
-
|
|
12610
|
-
|
|
12611
|
-
|
|
12612
|
-
|
|
12613
|
-
|
|
12614
|
-
|
|
12615
|
-
|
|
12618
|
+
juntar: {
|
|
12619
|
+
tipoRetorno: 'texto',
|
|
12620
|
+
argumentos: [
|
|
12621
|
+
new informacao_elemento_sintatico_1.InformacaoElementoSintatico('separador', 'texto', false, [], 'O texto usado para separar os elementos. O padrão é uma vírgula.'),
|
|
12622
|
+
],
|
|
12623
|
+
implementacao: (interpretador, tupla, separador) => {
|
|
12624
|
+
const valores = obterValoresPuros(interpretador, tupla, 'juntar');
|
|
12625
|
+
const sep = separador !== undefined
|
|
12626
|
+
? interpretador.resolverValor(separador)
|
|
12627
|
+
: ',';
|
|
12628
|
+
return Promise.resolve(valores.join(sep));
|
|
12616
12629
|
},
|
|
12617
|
-
assinaturaFormato: 'tupla.
|
|
12618
|
-
documentacao: '# `tupla.
|
|
12619
|
-
|
|
12630
|
+
assinaturaFormato: 'tupla.juntar(separador?)',
|
|
12631
|
+
documentacao: '# `tupla.juntar(separador)` \n \n' +
|
|
12632
|
+
'Junta todos os elementos da tupla em um único texto, separados pelo separador fornecido.' +
|
|
12633
|
+
'\n\n ## Exemplo de Código\n' +
|
|
12634
|
+
'\n\n```pitugues\nt = ("A", "B", "C")\n' +
|
|
12635
|
+
'escreva(t.juntar("-")) // "A-B-C"\n```' +
|
|
12636
|
+
'\n\n ### Formas de uso \n',
|
|
12637
|
+
exemploCodigo: 'tupla.juntar("-")',
|
|
12620
12638
|
},
|
|
12621
12639
|
};
|
|
12622
12640
|
|
|
12623
|
-
},{"../../../construtos":
|
|
12641
|
+
},{"../../../construtos":67,"../../../excecoes":140,"../../../informacao-elemento-sintatico":147}],31:[function(require,module,exports){
|
|
12624
12642
|
"use strict";
|
|
12625
12643
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12626
12644
|
const construtos_1 = require("../construtos");
|
|
@@ -12733,7 +12751,7 @@ exports.default = {
|
|
|
12733
12751
|
},
|
|
12734
12752
|
};
|
|
12735
12753
|
|
|
12736
|
-
},{"../construtos":
|
|
12754
|
+
},{"../construtos":67,"../informacao-elemento-sintatico":147}],32:[function(require,module,exports){
|
|
12737
12755
|
"use strict";
|
|
12738
12756
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12739
12757
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -12818,7 +12836,7 @@ exports.default = {
|
|
|
12818
12836
|
},
|
|
12819
12837
|
};
|
|
12820
12838
|
|
|
12821
|
-
},{"../informacao-elemento-sintatico":
|
|
12839
|
+
},{"../informacao-elemento-sintatico":147}],33:[function(require,module,exports){
|
|
12822
12840
|
"use strict";
|
|
12823
12841
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12824
12842
|
exports.implementacaoParticao = void 0;
|
|
@@ -13217,7 +13235,7 @@ exports.default = {
|
|
|
13217
13235
|
},
|
|
13218
13236
|
};
|
|
13219
13237
|
|
|
13220
|
-
},{"../construtos":
|
|
13238
|
+
},{"../construtos":67,"../excecoes":140,"../informacao-elemento-sintatico":147}],34:[function(require,module,exports){
|
|
13221
13239
|
"use strict";
|
|
13222
13240
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13223
13241
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -13628,7 +13646,149 @@ exports.default = {
|
|
|
13628
13646
|
},
|
|
13629
13647
|
};
|
|
13630
13648
|
|
|
13631
|
-
},{"../construtos":
|
|
13649
|
+
},{"../construtos":67,"../excecoes":140,"../inferenciador":146,"../informacao-elemento-sintatico":147}],35:[function(require,module,exports){
|
|
13650
|
+
"use strict";
|
|
13651
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13652
|
+
exports.construirModuloAfirmar = construirModuloAfirmar;
|
|
13653
|
+
const erro_de_assertiva_1 = require("../../excecoes/erro-de-assertiva");
|
|
13654
|
+
const funcao_padrao_1 = require("../../interpretador/estruturas/funcao-padrao");
|
|
13655
|
+
const modulo_1 = require("../../interpretador/estruturas/modulo");
|
|
13656
|
+
function simboloAtual(interpretador) {
|
|
13657
|
+
return {
|
|
13658
|
+
hashArquivo: interpretador.hashArquivoDeclaracaoAtual,
|
|
13659
|
+
linha: interpretador.linhaDeclaracaoAtual,
|
|
13660
|
+
};
|
|
13661
|
+
}
|
|
13662
|
+
function construirModuloAfirmar() {
|
|
13663
|
+
const modulo = new modulo_1.DeleguaModulo('afirmar');
|
|
13664
|
+
modulo.componentes['igual'] = new funcao_padrao_1.FuncaoPadrao(2, function (interpretador, valorTestado, obtidoTestado) {
|
|
13665
|
+
const esperado = interpretador.resolverValor(valorTestado);
|
|
13666
|
+
const obtido = interpretador.resolverValor(obtidoTestado);
|
|
13667
|
+
if (esperado !== obtido) {
|
|
13668
|
+
return Promise.reject(new erro_de_assertiva_1.ErroDeAssertiva(simboloAtual(interpretador), `Esperava ${String(esperado)}, mas obteve ${String(obtido)}.`, esperado, obtido));
|
|
13669
|
+
}
|
|
13670
|
+
});
|
|
13671
|
+
modulo.componentes['diferente'] = new funcao_padrao_1.FuncaoPadrao(2, function (interpretador, valorATestado, valorBTestado) {
|
|
13672
|
+
const valorA = interpretador.resolverValor(valorATestado);
|
|
13673
|
+
const valorB = interpretador.resolverValor(valorBTestado);
|
|
13674
|
+
if (valorA === valorB) {
|
|
13675
|
+
return Promise.reject(new erro_de_assertiva_1.ErroDeAssertiva(simboloAtual(interpretador), `Esperava valores diferentes, mas ambos são ${String(valorA)}.`, undefined, valorA));
|
|
13676
|
+
}
|
|
13677
|
+
});
|
|
13678
|
+
modulo.componentes['verdadeiro'] = new funcao_padrao_1.FuncaoPadrao(1, function (interpretador, valorTestado) {
|
|
13679
|
+
const valor = interpretador.resolverValor(valorTestado);
|
|
13680
|
+
if (!valor) {
|
|
13681
|
+
return Promise.reject(new erro_de_assertiva_1.ErroDeAssertiva(simboloAtual(interpretador), `Esperava verdadeiro, mas obteve ${String(valor)}.`, true, valor));
|
|
13682
|
+
}
|
|
13683
|
+
});
|
|
13684
|
+
modulo.componentes['falso'] = new funcao_padrao_1.FuncaoPadrao(1, function (interpretador, valorTestado) {
|
|
13685
|
+
const valor = interpretador.resolverValor(valorTestado);
|
|
13686
|
+
if (valor) {
|
|
13687
|
+
return Promise.reject(new erro_de_assertiva_1.ErroDeAssertiva(simboloAtual(interpretador), `Esperava falso, mas obteve ${String(valor)}.`, false, valor));
|
|
13688
|
+
}
|
|
13689
|
+
});
|
|
13690
|
+
modulo.componentes['nulo'] = new funcao_padrao_1.FuncaoPadrao(1, function (interpretador, valorTestado) {
|
|
13691
|
+
const valor = interpretador.resolverValor(valorTestado);
|
|
13692
|
+
if (valor !== null && valor !== undefined) {
|
|
13693
|
+
return Promise.reject(new erro_de_assertiva_1.ErroDeAssertiva(simboloAtual(interpretador), `Esperava nulo, mas obteve ${String(valor)}.`, null, valor));
|
|
13694
|
+
}
|
|
13695
|
+
});
|
|
13696
|
+
modulo.componentes['erro'] = new funcao_padrao_1.FuncaoPadrao(1, async function (interpretador, funcaoTestada) {
|
|
13697
|
+
const funcao = interpretador.resolverValor(funcaoTestada);
|
|
13698
|
+
let erroLancado = false;
|
|
13699
|
+
try {
|
|
13700
|
+
await funcao.chamar(interpretador, [], null);
|
|
13701
|
+
}
|
|
13702
|
+
catch (_) {
|
|
13703
|
+
erroLancado = true;
|
|
13704
|
+
}
|
|
13705
|
+
if (!erroLancado) {
|
|
13706
|
+
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.'));
|
|
13707
|
+
}
|
|
13708
|
+
});
|
|
13709
|
+
return modulo;
|
|
13710
|
+
}
|
|
13711
|
+
|
|
13712
|
+
},{"../../excecoes/erro-de-assertiva":138,"../../interpretador/estruturas/funcao-padrao":207,"../../interpretador/estruturas/modulo":211}],36:[function(require,module,exports){
|
|
13713
|
+
"use strict";
|
|
13714
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13715
|
+
exports.construirModuloDeTestes = construirModuloDeTestes;
|
|
13716
|
+
const erro_de_assertiva_1 = require("../../excecoes/erro-de-assertiva");
|
|
13717
|
+
const funcao_padrao_1 = require("../../interpretador/estruturas/funcao-padrao");
|
|
13718
|
+
const modulo_1 = require("../../interpretador/estruturas/modulo");
|
|
13719
|
+
const modulo_afirmar_1 = require("./modulo-afirmar");
|
|
13720
|
+
function simboloAtual(interpretador) {
|
|
13721
|
+
return {
|
|
13722
|
+
hashArquivo: interpretador.hashArquivoDeclaracaoAtual,
|
|
13723
|
+
linha: interpretador.linhaDeclaracaoAtual,
|
|
13724
|
+
};
|
|
13725
|
+
}
|
|
13726
|
+
function construirModuloDeTestes(interpretador, registro) {
|
|
13727
|
+
const modulo = new modulo_1.DeleguaModulo('testes');
|
|
13728
|
+
modulo.componentes['afirmar'] = (0, modulo_afirmar_1.construirModuloAfirmar)();
|
|
13729
|
+
modulo.componentes['grupo'] = new funcao_padrao_1.FuncaoPadrao(2, async function (_visitante, nomeRaw, funcaoRaw) {
|
|
13730
|
+
const nome = interpretador.resolverValor(nomeRaw);
|
|
13731
|
+
const funcao = interpretador.resolverValor(funcaoRaw);
|
|
13732
|
+
const suiteAnterior = registro.suiteAtual;
|
|
13733
|
+
registro.suiteAtual = suiteAnterior ? `${suiteAnterior} > ${nome}` : nome;
|
|
13734
|
+
const emDeclaracaoTenteAnterior = interpretador.emDeclaracaoTente;
|
|
13735
|
+
interpretador.emDeclaracaoTente = true;
|
|
13736
|
+
try {
|
|
13737
|
+
await funcao.chamar(interpretador, [], null);
|
|
13738
|
+
}
|
|
13739
|
+
finally {
|
|
13740
|
+
registro.suiteAtual = suiteAnterior;
|
|
13741
|
+
interpretador.emDeclaracaoTente = emDeclaracaoTenteAnterior;
|
|
13742
|
+
}
|
|
13743
|
+
});
|
|
13744
|
+
modulo.componentes['teste'] = new funcao_padrao_1.FuncaoPadrao(2, async function (_visitante, nomeRaw, funcaoRaw) {
|
|
13745
|
+
const nome = interpretador.resolverValor(nomeRaw);
|
|
13746
|
+
const funcao = interpretador.resolverValor(funcaoRaw);
|
|
13747
|
+
const inicio = Date.now();
|
|
13748
|
+
const emDeclaracaoTenteAnterior = interpretador.emDeclaracaoTente;
|
|
13749
|
+
interpretador.emDeclaracaoTente = true;
|
|
13750
|
+
try {
|
|
13751
|
+
await funcao.chamar(interpretador, [], null);
|
|
13752
|
+
registro.resultados.push({
|
|
13753
|
+
nomeSuite: registro.suiteAtual,
|
|
13754
|
+
nomeTeste: nome,
|
|
13755
|
+
status: 'passou',
|
|
13756
|
+
tempoMs: Date.now() - inicio,
|
|
13757
|
+
});
|
|
13758
|
+
}
|
|
13759
|
+
catch (e) {
|
|
13760
|
+
registro.resultados.push({
|
|
13761
|
+
nomeSuite: registro.suiteAtual,
|
|
13762
|
+
nomeTeste: nome,
|
|
13763
|
+
status: 'falhou',
|
|
13764
|
+
mensagemErro: e.mensagem || e.message || String(e),
|
|
13765
|
+
tempoMs: Date.now() - inicio,
|
|
13766
|
+
});
|
|
13767
|
+
}
|
|
13768
|
+
finally {
|
|
13769
|
+
interpretador.emDeclaracaoTente = emDeclaracaoTenteAnterior;
|
|
13770
|
+
}
|
|
13771
|
+
});
|
|
13772
|
+
modulo.componentes['lancarErro'] = new funcao_padrao_1.FuncaoPadrao(1, function (_visitante, mensagemRaw) {
|
|
13773
|
+
const mensagem = interpretador.resolverValor(mensagemRaw);
|
|
13774
|
+
return Promise.reject(new erro_de_assertiva_1.ErroDeAssertiva(simboloAtual(interpretador), String(mensagem)));
|
|
13775
|
+
});
|
|
13776
|
+
return modulo;
|
|
13777
|
+
}
|
|
13778
|
+
|
|
13779
|
+
},{"../../excecoes/erro-de-assertiva":138,"../../interpretador/estruturas/funcao-padrao":207,"../../interpretador/estruturas/modulo":211,"./modulo-afirmar":35}],37:[function(require,module,exports){
|
|
13780
|
+
"use strict";
|
|
13781
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13782
|
+
exports.RegistroTestes = void 0;
|
|
13783
|
+
class RegistroTestes {
|
|
13784
|
+
constructor() {
|
|
13785
|
+
this.resultados = [];
|
|
13786
|
+
this.suiteAtual = '';
|
|
13787
|
+
}
|
|
13788
|
+
}
|
|
13789
|
+
exports.RegistroTestes = RegistroTestes;
|
|
13790
|
+
|
|
13791
|
+
},{}],38:[function(require,module,exports){
|
|
13632
13792
|
"use strict";
|
|
13633
13793
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13634
13794
|
exports.AcessoElementoMatriz = void 0;
|
|
@@ -13656,7 +13816,7 @@ class AcessoElementoMatriz {
|
|
|
13656
13816
|
}
|
|
13657
13817
|
exports.AcessoElementoMatriz = AcessoElementoMatriz;
|
|
13658
13818
|
|
|
13659
|
-
},{}],
|
|
13819
|
+
},{}],39:[function(require,module,exports){
|
|
13660
13820
|
"use strict";
|
|
13661
13821
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13662
13822
|
exports.AcessoIndiceVariavel = void 0;
|
|
@@ -13688,7 +13848,7 @@ class AcessoIndiceVariavel {
|
|
|
13688
13848
|
}
|
|
13689
13849
|
exports.AcessoIndiceVariavel = AcessoIndiceVariavel;
|
|
13690
13850
|
|
|
13691
|
-
},{}],
|
|
13851
|
+
},{}],40:[function(require,module,exports){
|
|
13692
13852
|
"use strict";
|
|
13693
13853
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13694
13854
|
exports.AcessoIntervaloVariavel = void 0;
|
|
@@ -13727,7 +13887,7 @@ class AcessoIntervaloVariavel {
|
|
|
13727
13887
|
}
|
|
13728
13888
|
exports.AcessoIntervaloVariavel = AcessoIntervaloVariavel;
|
|
13729
13889
|
|
|
13730
|
-
},{}],
|
|
13890
|
+
},{}],41:[function(require,module,exports){
|
|
13731
13891
|
"use strict";
|
|
13732
13892
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13733
13893
|
exports.AcessoMetodoOuPropriedade = void 0;
|
|
@@ -13759,7 +13919,7 @@ class AcessoMetodoOuPropriedade {
|
|
|
13759
13919
|
}
|
|
13760
13920
|
exports.AcessoMetodoOuPropriedade = AcessoMetodoOuPropriedade;
|
|
13761
13921
|
|
|
13762
|
-
},{}],
|
|
13922
|
+
},{}],42:[function(require,module,exports){
|
|
13763
13923
|
"use strict";
|
|
13764
13924
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13765
13925
|
exports.AcessoMetodo = void 0;
|
|
@@ -13784,7 +13944,7 @@ class AcessoMetodo {
|
|
|
13784
13944
|
}
|
|
13785
13945
|
exports.AcessoMetodo = AcessoMetodo;
|
|
13786
13946
|
|
|
13787
|
-
},{}],
|
|
13947
|
+
},{}],43:[function(require,module,exports){
|
|
13788
13948
|
"use strict";
|
|
13789
13949
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13790
13950
|
exports.AcessoPropriedade = void 0;
|
|
@@ -13808,7 +13968,7 @@ class AcessoPropriedade {
|
|
|
13808
13968
|
}
|
|
13809
13969
|
exports.AcessoPropriedade = AcessoPropriedade;
|
|
13810
13970
|
|
|
13811
|
-
},{}],
|
|
13971
|
+
},{}],44:[function(require,module,exports){
|
|
13812
13972
|
"use strict";
|
|
13813
13973
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13814
13974
|
exports.Agrupamento = void 0;
|
|
@@ -13836,7 +13996,7 @@ class Agrupamento {
|
|
|
13836
13996
|
}
|
|
13837
13997
|
exports.Agrupamento = Agrupamento;
|
|
13838
13998
|
|
|
13839
|
-
},{}],
|
|
13999
|
+
},{}],45:[function(require,module,exports){
|
|
13840
14000
|
"use strict";
|
|
13841
14001
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13842
14002
|
exports.AjudaComoConstruto = void 0;
|
|
@@ -13869,7 +14029,7 @@ class AjudaComoConstruto {
|
|
|
13869
14029
|
}
|
|
13870
14030
|
exports.AjudaComoConstruto = AjudaComoConstruto;
|
|
13871
14031
|
|
|
13872
|
-
},{}],
|
|
14032
|
+
},{}],46:[function(require,module,exports){
|
|
13873
14033
|
"use strict";
|
|
13874
14034
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13875
14035
|
exports.ArgumentoReferenciaFuncao = void 0;
|
|
@@ -13896,7 +14056,7 @@ class ArgumentoReferenciaFuncao {
|
|
|
13896
14056
|
}
|
|
13897
14057
|
exports.ArgumentoReferenciaFuncao = ArgumentoReferenciaFuncao;
|
|
13898
14058
|
|
|
13899
|
-
},{}],
|
|
14059
|
+
},{}],47:[function(require,module,exports){
|
|
13900
14060
|
"use strict";
|
|
13901
14061
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13902
14062
|
exports.AtribuicaoPorIndice = void 0;
|
|
@@ -13923,7 +14083,7 @@ class AtribuicaoPorIndice {
|
|
|
13923
14083
|
}
|
|
13924
14084
|
exports.AtribuicaoPorIndice = AtribuicaoPorIndice;
|
|
13925
14085
|
|
|
13926
|
-
},{}],
|
|
14086
|
+
},{}],48:[function(require,module,exports){
|
|
13927
14087
|
"use strict";
|
|
13928
14088
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13929
14089
|
exports.AtribuicaoPorIndicesMatriz = void 0;
|
|
@@ -13952,7 +14112,7 @@ class AtribuicaoPorIndicesMatriz {
|
|
|
13952
14112
|
}
|
|
13953
14113
|
exports.AtribuicaoPorIndicesMatriz = AtribuicaoPorIndicesMatriz;
|
|
13954
14114
|
|
|
13955
|
-
},{}],
|
|
14115
|
+
},{}],49:[function(require,module,exports){
|
|
13956
14116
|
"use strict";
|
|
13957
14117
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13958
14118
|
exports.Atribuir = void 0;
|
|
@@ -13999,7 +14159,7 @@ class Atribuir {
|
|
|
13999
14159
|
}
|
|
14000
14160
|
exports.Atribuir = Atribuir;
|
|
14001
14161
|
|
|
14002
|
-
},{"./variavel":
|
|
14162
|
+
},{"./variavel":95}],50:[function(require,module,exports){
|
|
14003
14163
|
"use strict";
|
|
14004
14164
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14005
14165
|
exports.Binario = void 0;
|
|
@@ -14071,7 +14231,7 @@ class Binario {
|
|
|
14071
14231
|
}
|
|
14072
14232
|
exports.Binario = Binario;
|
|
14073
14233
|
|
|
14074
|
-
},{}],
|
|
14234
|
+
},{}],51:[function(require,module,exports){
|
|
14075
14235
|
"use strict";
|
|
14076
14236
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14077
14237
|
exports.Bote = void 0;
|
|
@@ -14094,7 +14254,7 @@ class Bote {
|
|
|
14094
14254
|
}
|
|
14095
14255
|
exports.Bote = Bote;
|
|
14096
14256
|
|
|
14097
|
-
},{}],
|
|
14257
|
+
},{}],52:[function(require,module,exports){
|
|
14098
14258
|
"use strict";
|
|
14099
14259
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14100
14260
|
exports.Chamada = void 0;
|
|
@@ -14126,7 +14286,7 @@ class Chamada {
|
|
|
14126
14286
|
}
|
|
14127
14287
|
exports.Chamada = Chamada;
|
|
14128
14288
|
|
|
14129
|
-
},{"../geracao-identificadores":
|
|
14289
|
+
},{"../geracao-identificadores":144}],53:[function(require,module,exports){
|
|
14130
14290
|
"use strict";
|
|
14131
14291
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14132
14292
|
exports.ComentarioComoConstruto = void 0;
|
|
@@ -14153,7 +14313,7 @@ class ComentarioComoConstruto {
|
|
|
14153
14313
|
}
|
|
14154
14314
|
exports.ComentarioComoConstruto = ComentarioComoConstruto;
|
|
14155
14315
|
|
|
14156
|
-
},{}],
|
|
14316
|
+
},{}],54:[function(require,module,exports){
|
|
14157
14317
|
"use strict";
|
|
14158
14318
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14159
14319
|
exports.ComponenteLinguagem = void 0;
|
|
@@ -14179,7 +14339,7 @@ class ComponenteLinguagem {
|
|
|
14179
14339
|
}
|
|
14180
14340
|
exports.ComponenteLinguagem = ComponenteLinguagem;
|
|
14181
14341
|
|
|
14182
|
-
},{}],
|
|
14342
|
+
},{}],55:[function(require,module,exports){
|
|
14183
14343
|
"use strict";
|
|
14184
14344
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14185
14345
|
exports.Constante = void 0;
|
|
@@ -14204,7 +14364,7 @@ class Constante {
|
|
|
14204
14364
|
}
|
|
14205
14365
|
exports.Constante = Constante;
|
|
14206
14366
|
|
|
14207
|
-
},{}],
|
|
14367
|
+
},{}],56:[function(require,module,exports){
|
|
14208
14368
|
"use strict";
|
|
14209
14369
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14210
14370
|
exports.Decorador = void 0;
|
|
@@ -14245,7 +14405,7 @@ class Decorador {
|
|
|
14245
14405
|
}
|
|
14246
14406
|
exports.Decorador = Decorador;
|
|
14247
14407
|
|
|
14248
|
-
},{}],
|
|
14408
|
+
},{}],57:[function(require,module,exports){
|
|
14249
14409
|
"use strict";
|
|
14250
14410
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14251
14411
|
exports.DefinirValor = void 0;
|
|
@@ -14269,7 +14429,7 @@ class DefinirValor {
|
|
|
14269
14429
|
}
|
|
14270
14430
|
exports.DefinirValor = DefinirValor;
|
|
14271
14431
|
|
|
14272
|
-
},{}],
|
|
14432
|
+
},{}],58:[function(require,module,exports){
|
|
14273
14433
|
"use strict";
|
|
14274
14434
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14275
14435
|
exports.Dicionario = void 0;
|
|
@@ -14294,7 +14454,7 @@ class Dicionario {
|
|
|
14294
14454
|
}
|
|
14295
14455
|
exports.Dicionario = Dicionario;
|
|
14296
14456
|
|
|
14297
|
-
},{}],
|
|
14457
|
+
},{}],59:[function(require,module,exports){
|
|
14298
14458
|
"use strict";
|
|
14299
14459
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14300
14460
|
exports.Elvis = void 0;
|
|
@@ -14319,7 +14479,7 @@ class Elvis {
|
|
|
14319
14479
|
}
|
|
14320
14480
|
exports.Elvis = Elvis;
|
|
14321
14481
|
|
|
14322
|
-
},{}],
|
|
14482
|
+
},{}],60:[function(require,module,exports){
|
|
14323
14483
|
"use strict";
|
|
14324
14484
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14325
14485
|
exports.EnquantoComoConstruto = void 0;
|
|
@@ -14342,7 +14502,7 @@ class EnquantoComoConstruto {
|
|
|
14342
14502
|
}
|
|
14343
14503
|
exports.EnquantoComoConstruto = EnquantoComoConstruto;
|
|
14344
14504
|
|
|
14345
|
-
},{}],
|
|
14505
|
+
},{}],61:[function(require,module,exports){
|
|
14346
14506
|
"use strict";
|
|
14347
14507
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14348
14508
|
exports.ExpressaoRegular = void 0;
|
|
@@ -14365,7 +14525,7 @@ class ExpressaoRegular {
|
|
|
14365
14525
|
}
|
|
14366
14526
|
exports.ExpressaoRegular = ExpressaoRegular;
|
|
14367
14527
|
|
|
14368
|
-
},{}],
|
|
14528
|
+
},{}],62:[function(require,module,exports){
|
|
14369
14529
|
"use strict";
|
|
14370
14530
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14371
14531
|
exports.FazerComoConstruto = void 0;
|
|
@@ -14388,7 +14548,7 @@ class FazerComoConstruto {
|
|
|
14388
14548
|
}
|
|
14389
14549
|
exports.FazerComoConstruto = FazerComoConstruto;
|
|
14390
14550
|
|
|
14391
|
-
},{}],
|
|
14551
|
+
},{}],63:[function(require,module,exports){
|
|
14392
14552
|
"use strict";
|
|
14393
14553
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14394
14554
|
exports.FimPara = void 0;
|
|
@@ -14421,7 +14581,7 @@ class FimPara {
|
|
|
14421
14581
|
}
|
|
14422
14582
|
exports.FimPara = FimPara;
|
|
14423
14583
|
|
|
14424
|
-
},{}],
|
|
14584
|
+
},{}],64:[function(require,module,exports){
|
|
14425
14585
|
"use strict";
|
|
14426
14586
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14427
14587
|
exports.FormatacaoEscrita = void 0;
|
|
@@ -14450,7 +14610,7 @@ class FormatacaoEscrita {
|
|
|
14450
14610
|
}
|
|
14451
14611
|
exports.FormatacaoEscrita = FormatacaoEscrita;
|
|
14452
14612
|
|
|
14453
|
-
},{}],
|
|
14613
|
+
},{}],65:[function(require,module,exports){
|
|
14454
14614
|
"use strict";
|
|
14455
14615
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14456
14616
|
exports.FuncaoConstruto = void 0;
|
|
@@ -14488,7 +14648,7 @@ class FuncaoConstruto {
|
|
|
14488
14648
|
}
|
|
14489
14649
|
exports.FuncaoConstruto = FuncaoConstruto;
|
|
14490
14650
|
|
|
14491
|
-
},{}],
|
|
14651
|
+
},{}],66:[function(require,module,exports){
|
|
14492
14652
|
"use strict";
|
|
14493
14653
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14494
14654
|
exports.ImportarComoConstruto = void 0;
|
|
@@ -14514,7 +14674,7 @@ class ImportarComoConstruto {
|
|
|
14514
14674
|
}
|
|
14515
14675
|
exports.ImportarComoConstruto = ImportarComoConstruto;
|
|
14516
14676
|
|
|
14517
|
-
},{}],
|
|
14677
|
+
},{}],67:[function(require,module,exports){
|
|
14518
14678
|
"use strict";
|
|
14519
14679
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14520
14680
|
if (k2 === undefined) k2 = k;
|
|
@@ -14581,7 +14741,7 @@ __exportStar(require("./unario"), exports);
|
|
|
14581
14741
|
__exportStar(require("./variavel"), exports);
|
|
14582
14742
|
__exportStar(require("./vetor"), exports);
|
|
14583
14743
|
|
|
14584
|
-
},{"./acesso-elemento-matriz":
|
|
14744
|
+
},{"./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
14745
|
"use strict";
|
|
14586
14746
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14587
14747
|
exports.Isto = void 0;
|
|
@@ -14604,7 +14764,7 @@ class Isto {
|
|
|
14604
14764
|
}
|
|
14605
14765
|
exports.Isto = Isto;
|
|
14606
14766
|
|
|
14607
|
-
},{}],
|
|
14767
|
+
},{}],69:[function(require,module,exports){
|
|
14608
14768
|
"use strict";
|
|
14609
14769
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14610
14770
|
exports.Leia = void 0;
|
|
@@ -14634,7 +14794,7 @@ class Leia {
|
|
|
14634
14794
|
}
|
|
14635
14795
|
exports.Leia = Leia;
|
|
14636
14796
|
|
|
14637
|
-
},{"../geracao-identificadores":
|
|
14797
|
+
},{"../geracao-identificadores":144}],70:[function(require,module,exports){
|
|
14638
14798
|
"use strict";
|
|
14639
14799
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14640
14800
|
exports.ListaCompreensao = void 0;
|
|
@@ -14659,7 +14819,7 @@ class ListaCompreensao {
|
|
|
14659
14819
|
}
|
|
14660
14820
|
exports.ListaCompreensao = ListaCompreensao;
|
|
14661
14821
|
|
|
14662
|
-
},{}],
|
|
14822
|
+
},{}],71:[function(require,module,exports){
|
|
14663
14823
|
"use strict";
|
|
14664
14824
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14665
14825
|
exports.Literal = void 0;
|
|
@@ -14690,7 +14850,7 @@ class Literal {
|
|
|
14690
14850
|
}
|
|
14691
14851
|
exports.Literal = Literal;
|
|
14692
14852
|
|
|
14693
|
-
},{}],
|
|
14853
|
+
},{}],72:[function(require,module,exports){
|
|
14694
14854
|
"use strict";
|
|
14695
14855
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14696
14856
|
exports.Logico = void 0;
|
|
@@ -14717,7 +14877,7 @@ class Logico {
|
|
|
14717
14877
|
}
|
|
14718
14878
|
exports.Logico = Logico;
|
|
14719
14879
|
|
|
14720
|
-
},{}],
|
|
14880
|
+
},{}],73:[function(require,module,exports){
|
|
14721
14881
|
"use strict";
|
|
14722
14882
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14723
14883
|
exports.Morsa = void 0;
|
|
@@ -14740,7 +14900,7 @@ class Morsa {
|
|
|
14740
14900
|
}
|
|
14741
14901
|
exports.Morsa = Morsa;
|
|
14742
14902
|
|
|
14743
|
-
},{}],
|
|
14903
|
+
},{}],74:[function(require,module,exports){
|
|
14744
14904
|
"use strict";
|
|
14745
14905
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14746
14906
|
exports.ParaCadaComoConstruto = void 0;
|
|
@@ -14765,7 +14925,7 @@ class ParaCadaComoConstruto {
|
|
|
14765
14925
|
}
|
|
14766
14926
|
exports.ParaCadaComoConstruto = ParaCadaComoConstruto;
|
|
14767
14927
|
|
|
14768
|
-
},{}],
|
|
14928
|
+
},{}],75:[function(require,module,exports){
|
|
14769
14929
|
"use strict";
|
|
14770
14930
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14771
14931
|
exports.ParaComoConstruto = void 0;
|
|
@@ -14793,7 +14953,7 @@ class ParaComoConstruto {
|
|
|
14793
14953
|
}
|
|
14794
14954
|
exports.ParaComoConstruto = ParaComoConstruto;
|
|
14795
14955
|
|
|
14796
|
-
},{}],
|
|
14956
|
+
},{}],76:[function(require,module,exports){
|
|
14797
14957
|
"use strict";
|
|
14798
14958
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14799
14959
|
exports.ReferenciaBibliotecaGlobal = void 0;
|
|
@@ -14819,7 +14979,7 @@ class ReferenciaBibliotecaGlobal {
|
|
|
14819
14979
|
}
|
|
14820
14980
|
exports.ReferenciaBibliotecaGlobal = ReferenciaBibliotecaGlobal;
|
|
14821
14981
|
|
|
14822
|
-
},{}],
|
|
14982
|
+
},{}],77:[function(require,module,exports){
|
|
14823
14983
|
"use strict";
|
|
14824
14984
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14825
14985
|
exports.ReferenciaFuncao = void 0;
|
|
@@ -14843,7 +15003,7 @@ class ReferenciaFuncao {
|
|
|
14843
15003
|
}
|
|
14844
15004
|
exports.ReferenciaFuncao = ReferenciaFuncao;
|
|
14845
15005
|
|
|
14846
|
-
},{}],
|
|
15006
|
+
},{}],78:[function(require,module,exports){
|
|
14847
15007
|
"use strict";
|
|
14848
15008
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14849
15009
|
exports.SeTernario = void 0;
|
|
@@ -14868,7 +15028,7 @@ class SeTernario {
|
|
|
14868
15028
|
}
|
|
14869
15029
|
exports.SeTernario = SeTernario;
|
|
14870
15030
|
|
|
14871
|
-
},{}],
|
|
15031
|
+
},{}],79:[function(require,module,exports){
|
|
14872
15032
|
"use strict";
|
|
14873
15033
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14874
15034
|
exports.Separador = void 0;
|
|
@@ -14890,7 +15050,7 @@ class Separador {
|
|
|
14890
15050
|
}
|
|
14891
15051
|
exports.Separador = Separador;
|
|
14892
15052
|
|
|
14893
|
-
},{}],
|
|
15053
|
+
},{}],80:[function(require,module,exports){
|
|
14894
15054
|
"use strict";
|
|
14895
15055
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14896
15056
|
exports.Super = void 0;
|
|
@@ -14913,7 +15073,7 @@ class Super {
|
|
|
14913
15073
|
}
|
|
14914
15074
|
exports.Super = Super;
|
|
14915
15075
|
|
|
14916
|
-
},{}],
|
|
15076
|
+
},{}],81:[function(require,module,exports){
|
|
14917
15077
|
"use strict";
|
|
14918
15078
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14919
15079
|
exports.TipoDe = void 0;
|
|
@@ -14940,7 +15100,7 @@ class TipoDe {
|
|
|
14940
15100
|
}
|
|
14941
15101
|
exports.TipoDe = TipoDe;
|
|
14942
15102
|
|
|
14943
|
-
},{}],
|
|
15103
|
+
},{}],82:[function(require,module,exports){
|
|
14944
15104
|
"use strict";
|
|
14945
15105
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14946
15106
|
exports.TuplaN = void 0;
|
|
@@ -14969,7 +15129,7 @@ class TuplaN extends tupla_1.Tupla {
|
|
|
14969
15129
|
}
|
|
14970
15130
|
exports.TuplaN = TuplaN;
|
|
14971
15131
|
|
|
14972
|
-
},{"./tupla":
|
|
15132
|
+
},{"./tupla":83}],83:[function(require,module,exports){
|
|
14973
15133
|
"use strict";
|
|
14974
15134
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14975
15135
|
exports.Tupla = void 0;
|
|
@@ -14980,7 +15140,7 @@ class Tupla {
|
|
|
14980
15140
|
}
|
|
14981
15141
|
exports.Tupla = Tupla;
|
|
14982
15142
|
|
|
14983
|
-
},{}],
|
|
15143
|
+
},{}],84:[function(require,module,exports){
|
|
14984
15144
|
"use strict";
|
|
14985
15145
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14986
15146
|
exports.Deceto = void 0;
|
|
@@ -15031,7 +15191,7 @@ class Deceto extends tupla_1.Tupla {
|
|
|
15031
15191
|
}
|
|
15032
15192
|
exports.Deceto = Deceto;
|
|
15033
15193
|
|
|
15034
|
-
},{"../tupla":
|
|
15194
|
+
},{"../tupla":83}],85:[function(require,module,exports){
|
|
15035
15195
|
"use strict";
|
|
15036
15196
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15037
15197
|
exports.Dupla = void 0;
|
|
@@ -15053,7 +15213,7 @@ class Dupla extends tupla_1.Tupla {
|
|
|
15053
15213
|
}
|
|
15054
15214
|
exports.Dupla = Dupla;
|
|
15055
15215
|
|
|
15056
|
-
},{"../tupla":
|
|
15216
|
+
},{"../tupla":83}],86:[function(require,module,exports){
|
|
15057
15217
|
"use strict";
|
|
15058
15218
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15059
15219
|
if (k2 === undefined) k2 = k;
|
|
@@ -15121,7 +15281,7 @@ class SeletorTuplas {
|
|
|
15121
15281
|
}
|
|
15122
15282
|
exports.SeletorTuplas = SeletorTuplas;
|
|
15123
15283
|
|
|
15124
|
-
},{"./deceto":
|
|
15284
|
+
},{"./deceto":84,"./dupla":85,"./noneto":87,"./octeto":88,"./quarteto":89,"./quinteto":90,"./septeto":91,"./sexteto":92,"./trio":93}],87:[function(require,module,exports){
|
|
15125
15285
|
"use strict";
|
|
15126
15286
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15127
15287
|
exports.Noneto = void 0;
|
|
@@ -15163,7 +15323,7 @@ class Noneto extends tupla_1.Tupla {
|
|
|
15163
15323
|
}
|
|
15164
15324
|
exports.Noneto = Noneto;
|
|
15165
15325
|
|
|
15166
|
-
},{"../tupla":
|
|
15326
|
+
},{"../tupla":83}],88:[function(require,module,exports){
|
|
15167
15327
|
"use strict";
|
|
15168
15328
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15169
15329
|
exports.Octeto = void 0;
|
|
@@ -15203,7 +15363,7 @@ class Octeto extends tupla_1.Tupla {
|
|
|
15203
15363
|
}
|
|
15204
15364
|
exports.Octeto = Octeto;
|
|
15205
15365
|
|
|
15206
|
-
},{"../tupla":
|
|
15366
|
+
},{"../tupla":83}],89:[function(require,module,exports){
|
|
15207
15367
|
"use strict";
|
|
15208
15368
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15209
15369
|
exports.Quarteto = void 0;
|
|
@@ -15229,7 +15389,7 @@ class Quarteto extends tupla_1.Tupla {
|
|
|
15229
15389
|
}
|
|
15230
15390
|
exports.Quarteto = Quarteto;
|
|
15231
15391
|
|
|
15232
|
-
},{"../tupla":
|
|
15392
|
+
},{"../tupla":83}],90:[function(require,module,exports){
|
|
15233
15393
|
"use strict";
|
|
15234
15394
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15235
15395
|
exports.Quinteto = void 0;
|
|
@@ -15257,7 +15417,7 @@ class Quinteto extends tupla_1.Tupla {
|
|
|
15257
15417
|
}
|
|
15258
15418
|
exports.Quinteto = Quinteto;
|
|
15259
15419
|
|
|
15260
|
-
},{"../tupla":
|
|
15420
|
+
},{"../tupla":83}],91:[function(require,module,exports){
|
|
15261
15421
|
"use strict";
|
|
15262
15422
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15263
15423
|
exports.Septeto = void 0;
|
|
@@ -15295,7 +15455,7 @@ class Septeto extends tupla_1.Tupla {
|
|
|
15295
15455
|
}
|
|
15296
15456
|
exports.Septeto = Septeto;
|
|
15297
15457
|
|
|
15298
|
-
},{"../tupla":
|
|
15458
|
+
},{"../tupla":83}],92:[function(require,module,exports){
|
|
15299
15459
|
"use strict";
|
|
15300
15460
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15301
15461
|
exports.Sexteto = void 0;
|
|
@@ -15325,7 +15485,7 @@ class Sexteto extends tupla_1.Tupla {
|
|
|
15325
15485
|
}
|
|
15326
15486
|
exports.Sexteto = Sexteto;
|
|
15327
15487
|
|
|
15328
|
-
},{"../tupla":
|
|
15488
|
+
},{"../tupla":83}],93:[function(require,module,exports){
|
|
15329
15489
|
"use strict";
|
|
15330
15490
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15331
15491
|
exports.Trio = void 0;
|
|
@@ -15349,7 +15509,7 @@ class Trio extends tupla_1.Tupla {
|
|
|
15349
15509
|
}
|
|
15350
15510
|
exports.Trio = Trio;
|
|
15351
15511
|
|
|
15352
|
-
},{"../tupla":
|
|
15512
|
+
},{"../tupla":83}],94:[function(require,module,exports){
|
|
15353
15513
|
"use strict";
|
|
15354
15514
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15355
15515
|
exports.Unario = void 0;
|
|
@@ -15375,7 +15535,7 @@ class Unario {
|
|
|
15375
15535
|
}
|
|
15376
15536
|
exports.Unario = Unario;
|
|
15377
15537
|
|
|
15378
|
-
},{}],
|
|
15538
|
+
},{}],95:[function(require,module,exports){
|
|
15379
15539
|
"use strict";
|
|
15380
15540
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15381
15541
|
exports.Variavel = void 0;
|
|
@@ -15398,7 +15558,7 @@ class Variavel {
|
|
|
15398
15558
|
}
|
|
15399
15559
|
exports.Variavel = Variavel;
|
|
15400
15560
|
|
|
15401
|
-
},{}],
|
|
15561
|
+
},{}],96:[function(require,module,exports){
|
|
15402
15562
|
"use strict";
|
|
15403
15563
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15404
15564
|
exports.Vetor = void 0;
|
|
@@ -15433,7 +15593,7 @@ class Vetor {
|
|
|
15433
15593
|
}
|
|
15434
15594
|
exports.Vetor = Vetor;
|
|
15435
15595
|
|
|
15436
|
-
},{"./comentario-como-construto":
|
|
15596
|
+
},{"./comentario-como-construto":53,"./separador":79}],97:[function(require,module,exports){
|
|
15437
15597
|
"use strict";
|
|
15438
15598
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15439
15599
|
exports.Ajuda = void 0;
|
|
@@ -15462,7 +15622,7 @@ class Ajuda extends declaracao_1.Declaracao {
|
|
|
15462
15622
|
}
|
|
15463
15623
|
exports.Ajuda = Ajuda;
|
|
15464
15624
|
|
|
15465
|
-
},{"./declaracao":
|
|
15625
|
+
},{"./declaracao":105}],98:[function(require,module,exports){
|
|
15466
15626
|
"use strict";
|
|
15467
15627
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15468
15628
|
exports.Bloco = void 0;
|
|
@@ -15488,7 +15648,7 @@ class Bloco extends declaracao_1.Declaracao {
|
|
|
15488
15648
|
}
|
|
15489
15649
|
exports.Bloco = Bloco;
|
|
15490
15650
|
|
|
15491
|
-
},{"./declaracao":
|
|
15651
|
+
},{"./declaracao":105}],99:[function(require,module,exports){
|
|
15492
15652
|
"use strict";
|
|
15493
15653
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15494
15654
|
exports.CabecalhoPrograma = void 0;
|
|
@@ -15510,7 +15670,7 @@ class CabecalhoPrograma extends declaracao_1.Declaracao {
|
|
|
15510
15670
|
}
|
|
15511
15671
|
exports.CabecalhoPrograma = CabecalhoPrograma;
|
|
15512
15672
|
|
|
15513
|
-
},{"./declaracao":
|
|
15673
|
+
},{"./declaracao":105}],100:[function(require,module,exports){
|
|
15514
15674
|
"use strict";
|
|
15515
15675
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15516
15676
|
exports.Classe = void 0;
|
|
@@ -15557,7 +15717,7 @@ class Classe extends declaracao_1.Declaracao {
|
|
|
15557
15717
|
}
|
|
15558
15718
|
exports.Classe = Classe;
|
|
15559
15719
|
|
|
15560
|
-
},{"./declaracao":
|
|
15720
|
+
},{"./declaracao":105}],101:[function(require,module,exports){
|
|
15561
15721
|
"use strict";
|
|
15562
15722
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15563
15723
|
exports.Comentario = void 0;
|
|
@@ -15582,7 +15742,7 @@ class Comentario extends declaracao_1.Declaracao {
|
|
|
15582
15742
|
}
|
|
15583
15743
|
exports.Comentario = Comentario;
|
|
15584
15744
|
|
|
15585
|
-
},{"./declaracao":
|
|
15745
|
+
},{"./declaracao":105}],102:[function(require,module,exports){
|
|
15586
15746
|
"use strict";
|
|
15587
15747
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15588
15748
|
exports.ConstMultiplo = void 0;
|
|
@@ -15607,7 +15767,7 @@ class ConstMultiplo extends declaracao_1.Declaracao {
|
|
|
15607
15767
|
}
|
|
15608
15768
|
exports.ConstMultiplo = ConstMultiplo;
|
|
15609
15769
|
|
|
15610
|
-
},{"./declaracao":
|
|
15770
|
+
},{"./declaracao":105}],103:[function(require,module,exports){
|
|
15611
15771
|
"use strict";
|
|
15612
15772
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15613
15773
|
exports.Const = void 0;
|
|
@@ -15637,7 +15797,7 @@ class Const extends declaracao_1.Declaracao {
|
|
|
15637
15797
|
}
|
|
15638
15798
|
exports.Const = Const;
|
|
15639
15799
|
|
|
15640
|
-
},{"./declaracao":
|
|
15800
|
+
},{"./declaracao":105}],104:[function(require,module,exports){
|
|
15641
15801
|
"use strict";
|
|
15642
15802
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15643
15803
|
exports.Continua = void 0;
|
|
@@ -15655,7 +15815,7 @@ class Continua extends declaracao_1.Declaracao {
|
|
|
15655
15815
|
}
|
|
15656
15816
|
exports.Continua = Continua;
|
|
15657
15817
|
|
|
15658
|
-
},{"./declaracao":
|
|
15818
|
+
},{"./declaracao":105}],105:[function(require,module,exports){
|
|
15659
15819
|
"use strict";
|
|
15660
15820
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15661
15821
|
exports.Declaracao = void 0;
|
|
@@ -15678,7 +15838,7 @@ class Declaracao {
|
|
|
15678
15838
|
}
|
|
15679
15839
|
exports.Declaracao = Declaracao;
|
|
15680
15840
|
|
|
15681
|
-
},{}],
|
|
15841
|
+
},{}],106:[function(require,module,exports){
|
|
15682
15842
|
"use strict";
|
|
15683
15843
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15684
15844
|
exports.Enquanto = void 0;
|
|
@@ -15699,7 +15859,7 @@ class Enquanto extends declaracao_1.Declaracao {
|
|
|
15699
15859
|
}
|
|
15700
15860
|
exports.Enquanto = Enquanto;
|
|
15701
15861
|
|
|
15702
|
-
},{"./declaracao":
|
|
15862
|
+
},{"./declaracao":105}],107:[function(require,module,exports){
|
|
15703
15863
|
"use strict";
|
|
15704
15864
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15705
15865
|
exports.Escolha = void 0;
|
|
@@ -15724,7 +15884,7 @@ class Escolha extends declaracao_1.Declaracao {
|
|
|
15724
15884
|
}
|
|
15725
15885
|
exports.Escolha = Escolha;
|
|
15726
15886
|
|
|
15727
|
-
},{"./declaracao":
|
|
15887
|
+
},{"./declaracao":105}],108:[function(require,module,exports){
|
|
15728
15888
|
"use strict";
|
|
15729
15889
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15730
15890
|
exports.EscrevaMesmaLinha = void 0;
|
|
@@ -15743,7 +15903,7 @@ class EscrevaMesmaLinha extends declaracao_1.Declaracao {
|
|
|
15743
15903
|
}
|
|
15744
15904
|
exports.EscrevaMesmaLinha = EscrevaMesmaLinha;
|
|
15745
15905
|
|
|
15746
|
-
},{"./declaracao":
|
|
15906
|
+
},{"./declaracao":105}],109:[function(require,module,exports){
|
|
15747
15907
|
"use strict";
|
|
15748
15908
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15749
15909
|
exports.Escreva = void 0;
|
|
@@ -15762,7 +15922,7 @@ class Escreva extends declaracao_1.Declaracao {
|
|
|
15762
15922
|
}
|
|
15763
15923
|
exports.Escreva = Escreva;
|
|
15764
15924
|
|
|
15765
|
-
},{"./declaracao":
|
|
15925
|
+
},{"./declaracao":105}],110:[function(require,module,exports){
|
|
15766
15926
|
"use strict";
|
|
15767
15927
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15768
15928
|
exports.Expressao = void 0;
|
|
@@ -15781,7 +15941,7 @@ class Expressao extends declaracao_1.Declaracao {
|
|
|
15781
15941
|
}
|
|
15782
15942
|
exports.Expressao = Expressao;
|
|
15783
15943
|
|
|
15784
|
-
},{"./declaracao":
|
|
15944
|
+
},{"./declaracao":105}],111:[function(require,module,exports){
|
|
15785
15945
|
"use strict";
|
|
15786
15946
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15787
15947
|
exports.Extensao = void 0;
|
|
@@ -15811,7 +15971,7 @@ class Extensao extends declaracao_1.Declaracao {
|
|
|
15811
15971
|
}
|
|
15812
15972
|
exports.Extensao = Extensao;
|
|
15813
15973
|
|
|
15814
|
-
},{"./declaracao":
|
|
15974
|
+
},{"./declaracao":105}],112:[function(require,module,exports){
|
|
15815
15975
|
"use strict";
|
|
15816
15976
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15817
15977
|
exports.Falhar = void 0;
|
|
@@ -15831,7 +15991,7 @@ class Falhar extends declaracao_1.Declaracao {
|
|
|
15831
15991
|
}
|
|
15832
15992
|
exports.Falhar = Falhar;
|
|
15833
15993
|
|
|
15834
|
-
},{"./declaracao":
|
|
15994
|
+
},{"./declaracao":105}],113:[function(require,module,exports){
|
|
15835
15995
|
"use strict";
|
|
15836
15996
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15837
15997
|
exports.Fazer = void 0;
|
|
@@ -15852,7 +16012,7 @@ class Fazer extends declaracao_1.Declaracao {
|
|
|
15852
16012
|
}
|
|
15853
16013
|
exports.Fazer = Fazer;
|
|
15854
16014
|
|
|
15855
|
-
},{"./declaracao":
|
|
16015
|
+
},{"./declaracao":105}],114:[function(require,module,exports){
|
|
15856
16016
|
"use strict";
|
|
15857
16017
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15858
16018
|
exports.FuncaoDeclaracao = void 0;
|
|
@@ -15886,7 +16046,7 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
|
|
|
15886
16046
|
}
|
|
15887
16047
|
exports.FuncaoDeclaracao = FuncaoDeclaracao;
|
|
15888
16048
|
|
|
15889
|
-
},{"../geracao-identificadores":
|
|
16049
|
+
},{"../geracao-identificadores":144,"./declaracao":105}],115:[function(require,module,exports){
|
|
15890
16050
|
"use strict";
|
|
15891
16051
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15892
16052
|
exports.Importar = void 0;
|
|
@@ -15912,7 +16072,7 @@ class Importar extends declaracao_1.Declaracao {
|
|
|
15912
16072
|
}
|
|
15913
16073
|
exports.Importar = Importar;
|
|
15914
16074
|
|
|
15915
|
-
},{"./declaracao":
|
|
16075
|
+
},{"./declaracao":105}],116:[function(require,module,exports){
|
|
15916
16076
|
"use strict";
|
|
15917
16077
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15918
16078
|
if (k2 === undefined) k2 = k;
|
|
@@ -15963,7 +16123,7 @@ __exportStar(require("./texto-documentacao"), exports);
|
|
|
15963
16123
|
__exportStar(require("./var"), exports);
|
|
15964
16124
|
__exportStar(require("./var-multiplo"), exports);
|
|
15965
16125
|
|
|
15966
|
-
},{"./ajuda":
|
|
16126
|
+
},{"./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
16127
|
"use strict";
|
|
15968
16128
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15969
16129
|
exports.InicioAlgoritmo = void 0;
|
|
@@ -15983,7 +16143,7 @@ class InicioAlgoritmo extends declaracao_1.Declaracao {
|
|
|
15983
16143
|
}
|
|
15984
16144
|
exports.InicioAlgoritmo = InicioAlgoritmo;
|
|
15985
16145
|
|
|
15986
|
-
},{"./declaracao":
|
|
16146
|
+
},{"./declaracao":105}],118:[function(require,module,exports){
|
|
15987
16147
|
"use strict";
|
|
15988
16148
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15989
16149
|
exports.InterfaceDeclaracao = exports.AssinaturaMetodo = void 0;
|
|
@@ -16029,7 +16189,7 @@ class InterfaceDeclaracao extends declaracao_1.Declaracao {
|
|
|
16029
16189
|
}
|
|
16030
16190
|
exports.InterfaceDeclaracao = InterfaceDeclaracao;
|
|
16031
16191
|
|
|
16032
|
-
},{"./declaracao":
|
|
16192
|
+
},{"./declaracao":105}],119:[function(require,module,exports){
|
|
16033
16193
|
"use strict";
|
|
16034
16194
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16035
16195
|
exports.ParaCada = void 0;
|
|
@@ -16052,7 +16212,7 @@ class ParaCada extends declaracao_1.Declaracao {
|
|
|
16052
16212
|
}
|
|
16053
16213
|
exports.ParaCada = ParaCada;
|
|
16054
16214
|
|
|
16055
|
-
},{"./declaracao":
|
|
16215
|
+
},{"./declaracao":105}],120:[function(require,module,exports){
|
|
16056
16216
|
"use strict";
|
|
16057
16217
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16058
16218
|
exports.Para = void 0;
|
|
@@ -16089,7 +16249,7 @@ class Para extends declaracao_1.Declaracao {
|
|
|
16089
16249
|
}
|
|
16090
16250
|
exports.Para = Para;
|
|
16091
16251
|
|
|
16092
|
-
},{"./declaracao":
|
|
16252
|
+
},{"./declaracao":105}],121:[function(require,module,exports){
|
|
16093
16253
|
"use strict";
|
|
16094
16254
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16095
16255
|
exports.PropriedadeClasse = void 0;
|
|
@@ -16115,7 +16275,7 @@ class PropriedadeClasse extends declaracao_1.Declaracao {
|
|
|
16115
16275
|
}
|
|
16116
16276
|
exports.PropriedadeClasse = PropriedadeClasse;
|
|
16117
16277
|
|
|
16118
|
-
},{"./declaracao":
|
|
16278
|
+
},{"./declaracao":105}],122:[function(require,module,exports){
|
|
16119
16279
|
"use strict";
|
|
16120
16280
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16121
16281
|
exports.Retorna = void 0;
|
|
@@ -16141,7 +16301,7 @@ class Retorna extends declaracao_1.Declaracao {
|
|
|
16141
16301
|
}
|
|
16142
16302
|
exports.Retorna = Retorna;
|
|
16143
16303
|
|
|
16144
|
-
},{"./declaracao":
|
|
16304
|
+
},{"./declaracao":105}],123:[function(require,module,exports){
|
|
16145
16305
|
"use strict";
|
|
16146
16306
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16147
16307
|
exports.Se = void 0;
|
|
@@ -16164,7 +16324,7 @@ class Se extends declaracao_1.Declaracao {
|
|
|
16164
16324
|
}
|
|
16165
16325
|
exports.Se = Se;
|
|
16166
16326
|
|
|
16167
|
-
},{"./declaracao":
|
|
16327
|
+
},{"./declaracao":105}],124:[function(require,module,exports){
|
|
16168
16328
|
"use strict";
|
|
16169
16329
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16170
16330
|
exports.Sustar = void 0;
|
|
@@ -16182,7 +16342,7 @@ class Sustar extends declaracao_1.Declaracao {
|
|
|
16182
16342
|
}
|
|
16183
16343
|
exports.Sustar = Sustar;
|
|
16184
16344
|
|
|
16185
|
-
},{"./declaracao":
|
|
16345
|
+
},{"./declaracao":105}],125:[function(require,module,exports){
|
|
16186
16346
|
"use strict";
|
|
16187
16347
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16188
16348
|
exports.TendoComo = void 0;
|
|
@@ -16209,7 +16369,7 @@ class TendoComo extends declaracao_1.Declaracao {
|
|
|
16209
16369
|
}
|
|
16210
16370
|
exports.TendoComo = TendoComo;
|
|
16211
16371
|
|
|
16212
|
-
},{"./declaracao":
|
|
16372
|
+
},{"./declaracao":105}],126:[function(require,module,exports){
|
|
16213
16373
|
"use strict";
|
|
16214
16374
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16215
16375
|
exports.Tente = void 0;
|
|
@@ -16235,7 +16395,7 @@ class Tente extends declaracao_1.Declaracao {
|
|
|
16235
16395
|
}
|
|
16236
16396
|
exports.Tente = Tente;
|
|
16237
16397
|
|
|
16238
|
-
},{"./declaracao":
|
|
16398
|
+
},{"./declaracao":105}],127:[function(require,module,exports){
|
|
16239
16399
|
"use strict";
|
|
16240
16400
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16241
16401
|
exports.TextoDocumentacao = void 0;
|
|
@@ -16257,7 +16417,7 @@ class TextoDocumentacao extends declaracao_1.Declaracao {
|
|
|
16257
16417
|
}
|
|
16258
16418
|
exports.TextoDocumentacao = TextoDocumentacao;
|
|
16259
16419
|
|
|
16260
|
-
},{"./declaracao":
|
|
16420
|
+
},{"./declaracao":105}],128:[function(require,module,exports){
|
|
16261
16421
|
"use strict";
|
|
16262
16422
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16263
16423
|
exports.VarMultiplo = void 0;
|
|
@@ -16283,7 +16443,7 @@ class VarMultiplo extends declaracao_1.Declaracao {
|
|
|
16283
16443
|
}
|
|
16284
16444
|
exports.VarMultiplo = VarMultiplo;
|
|
16285
16445
|
|
|
16286
|
-
},{"./declaracao":
|
|
16446
|
+
},{"./declaracao":105}],129:[function(require,module,exports){
|
|
16287
16447
|
"use strict";
|
|
16288
16448
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16289
16449
|
exports.Var = void 0;
|
|
@@ -16318,7 +16478,7 @@ class Var extends declaracao_1.Declaracao {
|
|
|
16318
16478
|
}
|
|
16319
16479
|
exports.Var = Var;
|
|
16320
16480
|
|
|
16321
|
-
},{"./declaracao":
|
|
16481
|
+
},{"./declaracao":105}],130:[function(require,module,exports){
|
|
16322
16482
|
"use strict";
|
|
16323
16483
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16324
16484
|
exports.EstilizadorDelegua = void 0;
|
|
@@ -16567,7 +16727,7 @@ class EstilizadorDelegua {
|
|
|
16567
16727
|
}
|
|
16568
16728
|
exports.EstilizadorDelegua = EstilizadorDelegua;
|
|
16569
16729
|
|
|
16570
|
-
},{"../formatadores":
|
|
16730
|
+
},{"../formatadores":143,"./quebrador-linha":132}],131:[function(require,module,exports){
|
|
16571
16731
|
"use strict";
|
|
16572
16732
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16573
16733
|
if (k2 === undefined) k2 = k;
|
|
@@ -16588,7 +16748,7 @@ __exportStar(require("./estilizador-delegua"), exports);
|
|
|
16588
16748
|
__exportStar(require("./quebrador-linha"), exports);
|
|
16589
16749
|
__exportStar(require("./regras"), exports);
|
|
16590
16750
|
|
|
16591
|
-
},{"./estilizador-delegua":
|
|
16751
|
+
},{"./estilizador-delegua":130,"./quebrador-linha":132,"./regras":133}],132:[function(require,module,exports){
|
|
16592
16752
|
"use strict";
|
|
16593
16753
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16594
16754
|
exports.QuebradorDeLinha = void 0;
|
|
@@ -16786,7 +16946,7 @@ class QuebradorDeLinha {
|
|
|
16786
16946
|
}
|
|
16787
16947
|
exports.QuebradorDeLinha = QuebradorDeLinha;
|
|
16788
16948
|
|
|
16789
|
-
},{}],
|
|
16949
|
+
},{}],133:[function(require,module,exports){
|
|
16790
16950
|
"use strict";
|
|
16791
16951
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16792
16952
|
if (k2 === undefined) k2 = k;
|
|
@@ -16808,7 +16968,7 @@ __exportStar(require("./regra-convencao-nomenclatura"), exports);
|
|
|
16808
16968
|
__exportStar(require("./regra-explicitar-tipos-parametros"), exports);
|
|
16809
16969
|
__exportStar(require("./regra-paradigma-consistente"), exports);
|
|
16810
16970
|
|
|
16811
|
-
},{"./regra-convencao-nomenclatura":
|
|
16971
|
+
},{"./regra-convencao-nomenclatura":134,"./regra-explicitar-tipos-parametros":135,"./regra-fortalecer-tipos":136,"./regra-paradigma-consistente":137}],134:[function(require,module,exports){
|
|
16812
16972
|
"use strict";
|
|
16813
16973
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16814
16974
|
exports.RegraConvencaoNomenclatura = void 0;
|
|
@@ -16977,7 +17137,7 @@ class RegraConvencaoNomenclatura {
|
|
|
16977
17137
|
}
|
|
16978
17138
|
exports.RegraConvencaoNomenclatura = RegraConvencaoNomenclatura;
|
|
16979
17139
|
|
|
16980
|
-
},{"../../declaracoes":
|
|
17140
|
+
},{"../../declaracoes":116}],135:[function(require,module,exports){
|
|
16981
17141
|
"use strict";
|
|
16982
17142
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16983
17143
|
exports.RegraExplicitarTiposParametros = void 0;
|
|
@@ -17028,7 +17188,7 @@ class RegraExplicitarTiposParametros {
|
|
|
17028
17188
|
}
|
|
17029
17189
|
exports.RegraExplicitarTiposParametros = RegraExplicitarTiposParametros;
|
|
17030
17190
|
|
|
17031
|
-
},{}],
|
|
17191
|
+
},{}],136:[function(require,module,exports){
|
|
17032
17192
|
"use strict";
|
|
17033
17193
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17034
17194
|
exports.RegraFortalecerTipos = void 0;
|
|
@@ -17113,7 +17273,7 @@ class RegraFortalecerTipos {
|
|
|
17113
17273
|
}
|
|
17114
17274
|
exports.RegraFortalecerTipos = RegraFortalecerTipos;
|
|
17115
17275
|
|
|
17116
|
-
},{"../../construtos":
|
|
17276
|
+
},{"../../construtos":67,"../../declaracoes":116,"../../inferenciador":146}],137:[function(require,module,exports){
|
|
17117
17277
|
"use strict";
|
|
17118
17278
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17119
17279
|
exports.RegraParadigmaConsistente = void 0;
|
|
@@ -17203,7 +17363,22 @@ class RegraParadigmaConsistente {
|
|
|
17203
17363
|
}
|
|
17204
17364
|
exports.RegraParadigmaConsistente = RegraParadigmaConsistente;
|
|
17205
17365
|
|
|
17206
|
-
},{"../../construtos/leia":
|
|
17366
|
+
},{"../../construtos/leia":69,"../../declaracoes":116,"../../lexador/mapeamento-paradigmas":241}],138:[function(require,module,exports){
|
|
17367
|
+
"use strict";
|
|
17368
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17369
|
+
exports.ErroDeAssertiva = void 0;
|
|
17370
|
+
const erro_em_tempo_de_execucao_1 = require("./erro-em-tempo-de-execucao");
|
|
17371
|
+
class ErroDeAssertiva extends erro_em_tempo_de_execucao_1.ErroEmTempoDeExecucao {
|
|
17372
|
+
constructor(simbolo, mensagem, esperado, obtido) {
|
|
17373
|
+
super(simbolo, mensagem);
|
|
17374
|
+
this.esperado = esperado;
|
|
17375
|
+
this.obtido = obtido;
|
|
17376
|
+
Object.setPrototypeOf(this, ErroDeAssertiva.prototype);
|
|
17377
|
+
}
|
|
17378
|
+
}
|
|
17379
|
+
exports.ErroDeAssertiva = ErroDeAssertiva;
|
|
17380
|
+
|
|
17381
|
+
},{"./erro-em-tempo-de-execucao":139}],139:[function(require,module,exports){
|
|
17207
17382
|
"use strict";
|
|
17208
17383
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17209
17384
|
exports.ErroEmTempoDeExecucao = void 0;
|
|
@@ -17218,7 +17393,7 @@ class ErroEmTempoDeExecucao extends Error {
|
|
|
17218
17393
|
}
|
|
17219
17394
|
exports.ErroEmTempoDeExecucao = ErroEmTempoDeExecucao;
|
|
17220
17395
|
|
|
17221
|
-
},{}],
|
|
17396
|
+
},{}],140:[function(require,module,exports){
|
|
17222
17397
|
"use strict";
|
|
17223
17398
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
17224
17399
|
if (k2 === undefined) k2 = k;
|
|
@@ -17235,9 +17410,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
17235
17410
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17236
17411
|
};
|
|
17237
17412
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17413
|
+
__exportStar(require("./erro-de-assertiva"), exports);
|
|
17238
17414
|
__exportStar(require("./erro-em-tempo-de-execucao"), exports);
|
|
17239
17415
|
|
|
17240
|
-
},{"./erro-em-tempo-de-execucao":
|
|
17416
|
+
},{"./erro-de-assertiva":138,"./erro-em-tempo-de-execucao":139}],141:[function(require,module,exports){
|
|
17241
17417
|
"use strict";
|
|
17242
17418
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
17243
17419
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -18198,7 +18374,7 @@ class FormatadorDelegua {
|
|
|
18198
18374
|
}
|
|
18199
18375
|
exports.FormatadorDelegua = FormatadorDelegua;
|
|
18200
18376
|
|
|
18201
|
-
},{"../construtos":
|
|
18377
|
+
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/delegua":252}],142:[function(require,module,exports){
|
|
18202
18378
|
"use strict";
|
|
18203
18379
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
18204
18380
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -18670,7 +18846,7 @@ class FormatadorPitugues {
|
|
|
18670
18846
|
}
|
|
18671
18847
|
exports.FormatadorPitugues = FormatadorPitugues;
|
|
18672
18848
|
|
|
18673
|
-
},{"../construtos":
|
|
18849
|
+
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/pitugues":256}],143:[function(require,module,exports){
|
|
18674
18850
|
"use strict";
|
|
18675
18851
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18676
18852
|
if (k2 === undefined) k2 = k;
|
|
@@ -18690,7 +18866,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
18690
18866
|
__exportStar(require("./formatador-delegua"), exports);
|
|
18691
18867
|
__exportStar(require("./formatador-pitugues"), exports);
|
|
18692
18868
|
|
|
18693
|
-
},{"./formatador-delegua":
|
|
18869
|
+
},{"./formatador-delegua":141,"./formatador-pitugues":142}],144:[function(require,module,exports){
|
|
18694
18870
|
"use strict";
|
|
18695
18871
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18696
18872
|
exports.cyrb53 = cyrb53;
|
|
@@ -18734,7 +18910,7 @@ function uuidv4() {
|
|
|
18734
18910
|
});
|
|
18735
18911
|
}
|
|
18736
18912
|
|
|
18737
|
-
},{}],
|
|
18913
|
+
},{}],145:[function(require,module,exports){
|
|
18738
18914
|
"use strict";
|
|
18739
18915
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18740
18916
|
if (k2 === undefined) k2 = k;
|
|
@@ -18763,7 +18939,7 @@ __exportStar(require("./interpretador"), exports);
|
|
|
18763
18939
|
__exportStar(require("./lexador"), exports);
|
|
18764
18940
|
__exportStar(require("./tradutores"), exports);
|
|
18765
18941
|
|
|
18766
|
-
},{"./analisador-semantico":6,"./avaliador-sintatico":22,"./construtos":
|
|
18942
|
+
},{"./analisador-semantico":6,"./avaliador-sintatico":22,"./construtos":67,"./declaracoes":116,"./estilizador":131,"./formatadores":143,"./geracao-identificadores":144,"./interfaces":175,"./interpretador":217,"./lexador":237,"./tradutores":260}],146:[function(require,module,exports){
|
|
18767
18943
|
"use strict";
|
|
18768
18944
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
18769
18945
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -18889,7 +19065,7 @@ function inferirTipoVariavel(variavel) {
|
|
|
18889
19065
|
}
|
|
18890
19066
|
}
|
|
18891
19067
|
|
|
18892
|
-
},{"./tipos-de-dados/delegua":
|
|
19068
|
+
},{"./tipos-de-dados/delegua":247,"./tipos-de-dados/primitivos":249,"./tipos-de-simbolos/delegua":252}],147:[function(require,module,exports){
|
|
18893
19069
|
"use strict";
|
|
18894
19070
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18895
19071
|
exports.InformacaoElementoSintatico = void 0;
|
|
@@ -18908,15 +19084,15 @@ class InformacaoElementoSintatico {
|
|
|
18908
19084
|
}
|
|
18909
19085
|
exports.InformacaoElementoSintatico = InformacaoElementoSintatico;
|
|
18910
19086
|
|
|
18911
|
-
},{}],
|
|
19087
|
+
},{}],148:[function(require,module,exports){
|
|
18912
19088
|
"use strict";
|
|
18913
19089
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18914
19090
|
|
|
18915
|
-
},{}],
|
|
19091
|
+
},{}],149:[function(require,module,exports){
|
|
18916
19092
|
"use strict";
|
|
18917
19093
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18918
19094
|
|
|
18919
|
-
},{}],
|
|
19095
|
+
},{}],150:[function(require,module,exports){
|
|
18920
19096
|
"use strict";
|
|
18921
19097
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18922
19098
|
if (k2 === undefined) k2 = k;
|
|
@@ -18937,27 +19113,27 @@ __exportStar(require("./avaliador-sintatico-interface"), exports);
|
|
|
18937
19113
|
__exportStar(require("./correcao-implementacao-interface"), exports);
|
|
18938
19114
|
__exportStar(require("./membro-interface-faltando-interface"), exports);
|
|
18939
19115
|
|
|
18940
|
-
},{"./avaliador-sintatico-interface":
|
|
19116
|
+
},{"./avaliador-sintatico-interface":148,"./correcao-implementacao-interface":149,"./membro-interface-faltando-interface":151}],151:[function(require,module,exports){
|
|
18941
19117
|
"use strict";
|
|
18942
19118
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18943
19119
|
|
|
18944
|
-
},{}],
|
|
19120
|
+
},{}],152:[function(require,module,exports){
|
|
18945
19121
|
"use strict";
|
|
18946
19122
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18947
19123
|
|
|
18948
|
-
},{}],
|
|
19124
|
+
},{}],153:[function(require,module,exports){
|
|
18949
19125
|
"use strict";
|
|
18950
19126
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18951
19127
|
|
|
18952
|
-
},{}],
|
|
19128
|
+
},{}],154:[function(require,module,exports){
|
|
18953
19129
|
"use strict";
|
|
18954
19130
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18955
19131
|
|
|
18956
|
-
},{}],
|
|
19132
|
+
},{}],155:[function(require,module,exports){
|
|
18957
19133
|
"use strict";
|
|
18958
19134
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18959
19135
|
|
|
18960
|
-
},{}],
|
|
19136
|
+
},{}],156:[function(require,module,exports){
|
|
18961
19137
|
"use strict";
|
|
18962
19138
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18963
19139
|
if (k2 === undefined) k2 = k;
|
|
@@ -18977,11 +19153,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
18977
19153
|
__exportStar(require("./caminho-escolha-interface"), exports);
|
|
18978
19154
|
__exportStar(require("./construto-interface"), exports);
|
|
18979
19155
|
|
|
18980
|
-
},{"./caminho-escolha-interface":
|
|
19156
|
+
},{"./caminho-escolha-interface":154,"./construto-interface":155}],157:[function(require,module,exports){
|
|
18981
19157
|
"use strict";
|
|
18982
19158
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18983
19159
|
|
|
18984
|
-
},{}],
|
|
19160
|
+
},{}],158:[function(require,module,exports){
|
|
18985
19161
|
"use strict";
|
|
18986
19162
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18987
19163
|
if (k2 === undefined) k2 = k;
|
|
@@ -19000,15 +19176,15 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
19000
19176
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19001
19177
|
__exportStar(require("./caminho-se-senao-interface"), exports);
|
|
19002
19178
|
|
|
19003
|
-
},{"./caminho-se-senao-interface":
|
|
19179
|
+
},{"./caminho-se-senao-interface":157}],159:[function(require,module,exports){
|
|
19004
19180
|
"use strict";
|
|
19005
19181
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19006
19182
|
|
|
19007
|
-
},{}],
|
|
19183
|
+
},{}],160:[function(require,module,exports){
|
|
19008
19184
|
"use strict";
|
|
19009
19185
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19010
19186
|
|
|
19011
|
-
},{}],
|
|
19187
|
+
},{}],161:[function(require,module,exports){
|
|
19012
19188
|
"use strict";
|
|
19013
19189
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19014
19190
|
if (k2 === undefined) k2 = k;
|
|
@@ -19030,19 +19206,19 @@ __exportStar(require("./fazer-interface"), exports);
|
|
|
19030
19206
|
__exportStar(require("./para-cada-interface"), exports);
|
|
19031
19207
|
__exportStar(require("./para-interface"), exports);
|
|
19032
19208
|
|
|
19033
|
-
},{"./enquanto-interface":
|
|
19209
|
+
},{"./enquanto-interface":159,"./fazer-interface":160,"./para-cada-interface":162,"./para-interface":163}],162:[function(require,module,exports){
|
|
19034
19210
|
"use strict";
|
|
19035
19211
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19036
19212
|
|
|
19037
|
-
},{}],
|
|
19213
|
+
},{}],163:[function(require,module,exports){
|
|
19038
19214
|
"use strict";
|
|
19039
19215
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19040
19216
|
|
|
19041
|
-
},{}],
|
|
19217
|
+
},{}],164:[function(require,module,exports){
|
|
19042
19218
|
"use strict";
|
|
19043
19219
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19044
19220
|
|
|
19045
|
-
},{}],
|
|
19221
|
+
},{}],165:[function(require,module,exports){
|
|
19046
19222
|
"use strict";
|
|
19047
19223
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19048
19224
|
if (k2 === undefined) k2 = k;
|
|
@@ -19061,23 +19237,23 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
19061
19237
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19062
19238
|
__exportStar(require("./retorno-resolvedor-interface"), exports);
|
|
19063
19239
|
|
|
19064
|
-
},{"./retorno-resolvedor-interface":
|
|
19240
|
+
},{"./retorno-resolvedor-interface":166}],166:[function(require,module,exports){
|
|
19065
19241
|
"use strict";
|
|
19066
19242
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19067
19243
|
|
|
19068
|
-
},{}],
|
|
19244
|
+
},{}],167:[function(require,module,exports){
|
|
19069
19245
|
"use strict";
|
|
19070
19246
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19071
19247
|
|
|
19072
|
-
},{}],
|
|
19248
|
+
},{}],168:[function(require,module,exports){
|
|
19073
19249
|
"use strict";
|
|
19074
19250
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19075
19251
|
|
|
19076
|
-
},{}],
|
|
19252
|
+
},{}],169:[function(require,module,exports){
|
|
19077
19253
|
"use strict";
|
|
19078
19254
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19079
19255
|
|
|
19080
|
-
},{}],
|
|
19256
|
+
},{}],170:[function(require,module,exports){
|
|
19081
19257
|
"use strict";
|
|
19082
19258
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19083
19259
|
exports.DiagnosticoSeveridade = void 0;
|
|
@@ -19089,11 +19265,11 @@ var DiagnosticoSeveridade;
|
|
|
19089
19265
|
DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
|
|
19090
19266
|
})(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
|
|
19091
19267
|
|
|
19092
|
-
},{}],
|
|
19268
|
+
},{}],171:[function(require,module,exports){
|
|
19093
19269
|
"use strict";
|
|
19094
19270
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19095
19271
|
|
|
19096
|
-
},{}],
|
|
19272
|
+
},{}],172:[function(require,module,exports){
|
|
19097
19273
|
"use strict";
|
|
19098
19274
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19099
19275
|
if (k2 === undefined) k2 = k;
|
|
@@ -19114,15 +19290,15 @@ __exportStar(require("./correcao-sugerida-interface"), exports);
|
|
|
19114
19290
|
__exportStar(require("./diagnostico-analisador-semantico-interface"), exports);
|
|
19115
19291
|
__exportStar(require("./erro-interpretador-interface"), exports);
|
|
19116
19292
|
|
|
19117
|
-
},{"./correcao-sugerida-interface":
|
|
19293
|
+
},{"./correcao-sugerida-interface":169,"./diagnostico-analisador-semantico-interface":170,"./erro-interpretador-interface":171}],173:[function(require,module,exports){
|
|
19118
19294
|
"use strict";
|
|
19119
19295
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19120
19296
|
|
|
19121
|
-
},{}],
|
|
19297
|
+
},{}],174:[function(require,module,exports){
|
|
19122
19298
|
"use strict";
|
|
19123
19299
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19124
19300
|
|
|
19125
|
-
},{}],
|
|
19301
|
+
},{}],175:[function(require,module,exports){
|
|
19126
19302
|
"use strict";
|
|
19127
19303
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19128
19304
|
if (k2 === undefined) k2 = k;
|
|
@@ -19171,47 +19347,47 @@ __exportStar(require("./erros"), exports);
|
|
|
19171
19347
|
__exportStar(require("./retornos"), exports);
|
|
19172
19348
|
__exportStar(require("./tradutores"), exports);
|
|
19173
19349
|
|
|
19174
|
-
},{"./avaliador-sintatico":
|
|
19350
|
+
},{"./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":172,"./estilizador/estilizador-interface":173,"./formatador-comum-interface":174,"./interpretador-com-depuracao-interface":176,"./interpretador-interface":177,"./iteravel-interface":178,"./lexador-interface":179,"./modulo-interface":180,"./parametro-interface":181,"./pilha-interface":182,"./primitiva-interface":183,"./resolvedor-interface":184,"./resultado-parcial-interpretador-interface":185,"./retornos":186,"./retornos/retorno-execucao-interface":189,"./simbolo-interface":192,"./tradutores":194,"./tradutores/tradutor-interface":195,"./variavel-interface":196,"./visitante-comum-interface":197,"./visitante-delegua-interface":198}],176:[function(require,module,exports){
|
|
19175
19351
|
"use strict";
|
|
19176
19352
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19177
19353
|
|
|
19178
|
-
},{}],
|
|
19354
|
+
},{}],177:[function(require,module,exports){
|
|
19179
19355
|
"use strict";
|
|
19180
19356
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19181
19357
|
|
|
19182
|
-
},{}],
|
|
19358
|
+
},{}],178:[function(require,module,exports){
|
|
19183
19359
|
"use strict";
|
|
19184
19360
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19185
19361
|
|
|
19186
|
-
},{}],
|
|
19362
|
+
},{}],179:[function(require,module,exports){
|
|
19187
19363
|
"use strict";
|
|
19188
19364
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19189
19365
|
|
|
19190
|
-
},{}],
|
|
19366
|
+
},{}],180:[function(require,module,exports){
|
|
19191
19367
|
"use strict";
|
|
19192
19368
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19193
19369
|
|
|
19194
|
-
},{}],
|
|
19370
|
+
},{}],181:[function(require,module,exports){
|
|
19195
19371
|
"use strict";
|
|
19196
19372
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19197
19373
|
|
|
19198
|
-
},{}],
|
|
19374
|
+
},{}],182:[function(require,module,exports){
|
|
19199
19375
|
"use strict";
|
|
19200
19376
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19201
19377
|
|
|
19202
|
-
},{}],
|
|
19378
|
+
},{}],183:[function(require,module,exports){
|
|
19203
19379
|
"use strict";
|
|
19204
19380
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19205
19381
|
|
|
19206
|
-
},{}],
|
|
19382
|
+
},{}],184:[function(require,module,exports){
|
|
19207
19383
|
"use strict";
|
|
19208
19384
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19209
19385
|
|
|
19210
|
-
},{}],
|
|
19386
|
+
},{}],185:[function(require,module,exports){
|
|
19211
19387
|
"use strict";
|
|
19212
19388
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19213
19389
|
|
|
19214
|
-
},{}],
|
|
19390
|
+
},{}],186:[function(require,module,exports){
|
|
19215
19391
|
"use strict";
|
|
19216
19392
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19217
19393
|
if (k2 === undefined) k2 = k;
|
|
@@ -19234,35 +19410,35 @@ __exportStar(require("./retorno-execucao-interface"), exports);
|
|
|
19234
19410
|
__exportStar(require("./retorno-interpretador-interface"), exports);
|
|
19235
19411
|
__exportStar(require("./retorno-lexador-interface"), exports);
|
|
19236
19412
|
|
|
19237
|
-
},{"./retorno-analisador-semantico-interface":
|
|
19413
|
+
},{"./retorno-analisador-semantico-interface":187,"./retorno-avaliador-sintatico-interface":188,"./retorno-execucao-interface":189,"./retorno-interpretador-interface":190,"./retorno-lexador-interface":191}],187:[function(require,module,exports){
|
|
19238
19414
|
"use strict";
|
|
19239
19415
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19240
19416
|
|
|
19241
|
-
},{}],
|
|
19417
|
+
},{}],188:[function(require,module,exports){
|
|
19242
19418
|
"use strict";
|
|
19243
19419
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19244
19420
|
|
|
19245
|
-
},{}],
|
|
19421
|
+
},{}],189:[function(require,module,exports){
|
|
19246
19422
|
"use strict";
|
|
19247
19423
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19248
19424
|
|
|
19249
|
-
},{}],
|
|
19425
|
+
},{}],190:[function(require,module,exports){
|
|
19250
19426
|
"use strict";
|
|
19251
19427
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19252
19428
|
|
|
19253
|
-
},{}],
|
|
19429
|
+
},{}],191:[function(require,module,exports){
|
|
19254
19430
|
"use strict";
|
|
19255
19431
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19256
19432
|
|
|
19257
|
-
},{}],
|
|
19433
|
+
},{}],192:[function(require,module,exports){
|
|
19258
19434
|
"use strict";
|
|
19259
19435
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19260
19436
|
|
|
19261
|
-
},{}],
|
|
19437
|
+
},{}],193:[function(require,module,exports){
|
|
19262
19438
|
"use strict";
|
|
19263
19439
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19264
19440
|
|
|
19265
|
-
},{}],
|
|
19441
|
+
},{}],194:[function(require,module,exports){
|
|
19266
19442
|
"use strict";
|
|
19267
19443
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19268
19444
|
if (k2 === undefined) k2 = k;
|
|
@@ -19282,23 +19458,23 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
19282
19458
|
__exportStar(require("./contexto-funcao-interface"), exports);
|
|
19283
19459
|
__exportStar(require("./tradutor-interface"), exports);
|
|
19284
19460
|
|
|
19285
|
-
},{"./contexto-funcao-interface":
|
|
19461
|
+
},{"./contexto-funcao-interface":193,"./tradutor-interface":195}],195:[function(require,module,exports){
|
|
19286
19462
|
"use strict";
|
|
19287
19463
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19288
19464
|
|
|
19289
|
-
},{}],
|
|
19465
|
+
},{}],196:[function(require,module,exports){
|
|
19290
19466
|
"use strict";
|
|
19291
19467
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19292
19468
|
|
|
19293
|
-
},{}],
|
|
19469
|
+
},{}],197:[function(require,module,exports){
|
|
19294
19470
|
"use strict";
|
|
19295
19471
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19296
19472
|
|
|
19297
|
-
},{}],
|
|
19473
|
+
},{}],198:[function(require,module,exports){
|
|
19298
19474
|
"use strict";
|
|
19299
19475
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19300
19476
|
|
|
19301
|
-
},{}],
|
|
19477
|
+
},{}],199:[function(require,module,exports){
|
|
19302
19478
|
"use strict";
|
|
19303
19479
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19304
19480
|
if (k2 === undefined) k2 = k;
|
|
@@ -19913,7 +20089,7 @@ function obterAjudaFuncaoPadrao(funcaoPadrao) {
|
|
|
19913
20089
|
}
|
|
19914
20090
|
}
|
|
19915
20091
|
|
|
19916
|
-
},{"../bibliotecas/biblioteca-global":29,"../construtos":
|
|
20092
|
+
},{"../bibliotecas/biblioteca-global":29,"../construtos":67,"./estruturas/delegua-funcao":205,"./estruturas/descritor-tipo-classe":206,"./estruturas/funcao-padrao":207,"./estruturas/objeto-delegua-classe":213}],200:[function(require,module,exports){
|
|
19917
20093
|
"use strict";
|
|
19918
20094
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19919
20095
|
exports.EspacoMemoria = void 0;
|
|
@@ -19938,7 +20114,7 @@ class EspacoMemoria {
|
|
|
19938
20114
|
}
|
|
19939
20115
|
exports.EspacoMemoria = EspacoMemoria;
|
|
19940
20116
|
|
|
19941
|
-
},{}],
|
|
20117
|
+
},{}],201:[function(require,module,exports){
|
|
19942
20118
|
"use strict";
|
|
19943
20119
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19944
20120
|
exports.Chamavel = void 0;
|
|
@@ -19955,7 +20131,7 @@ class Chamavel {
|
|
|
19955
20131
|
}
|
|
19956
20132
|
exports.Chamavel = Chamavel;
|
|
19957
20133
|
|
|
19958
|
-
},{}],
|
|
20134
|
+
},{}],202:[function(require,module,exports){
|
|
19959
20135
|
"use strict";
|
|
19960
20136
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19961
20137
|
exports.ClasseDeModulo = void 0;
|
|
@@ -19976,7 +20152,7 @@ class ClasseDeModulo extends chamavel_1.Chamavel {
|
|
|
19976
20152
|
}
|
|
19977
20153
|
exports.ClasseDeModulo = ClasseDeModulo;
|
|
19978
20154
|
|
|
19979
|
-
},{"./chamavel":
|
|
20155
|
+
},{"./chamavel":201}],203:[function(require,module,exports){
|
|
19980
20156
|
"use strict";
|
|
19981
20157
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19982
20158
|
exports.ClassePadrao = void 0;
|
|
@@ -20017,7 +20193,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
|
|
|
20017
20193
|
}
|
|
20018
20194
|
exports.ClassePadrao = ClassePadrao;
|
|
20019
20195
|
|
|
20020
|
-
},{"./chamavel":
|
|
20196
|
+
},{"./chamavel":201}],204:[function(require,module,exports){
|
|
20021
20197
|
"use strict";
|
|
20022
20198
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20023
20199
|
exports.DeleguaFuncaoNativa = void 0;
|
|
@@ -20060,7 +20236,7 @@ class DeleguaFuncaoNativa extends delegua_funcao_1.DeleguaFuncao {
|
|
|
20060
20236
|
}
|
|
20061
20237
|
exports.DeleguaFuncaoNativa = DeleguaFuncaoNativa;
|
|
20062
20238
|
|
|
20063
|
-
},{"./delegua-funcao":
|
|
20239
|
+
},{"./delegua-funcao":205}],205:[function(require,module,exports){
|
|
20064
20240
|
"use strict";
|
|
20065
20241
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20066
20242
|
exports.DeleguaFuncao = void 0;
|
|
@@ -20252,7 +20428,7 @@ function tipoDeDados(valor) {
|
|
|
20252
20428
|
}
|
|
20253
20429
|
}
|
|
20254
20430
|
|
|
20255
|
-
},{"../../declaracoes":
|
|
20431
|
+
},{"../../declaracoes":116,"../../quebras":246,"../espaco-memoria":200,"./chamavel":201,"./objeto-delegua-classe":213}],206:[function(require,module,exports){
|
|
20256
20432
|
"use strict";
|
|
20257
20433
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20258
20434
|
exports.DescritorTipoClasse = void 0;
|
|
@@ -20567,7 +20743,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
|
|
|
20567
20743
|
}
|
|
20568
20744
|
exports.DescritorTipoClasse = DescritorTipoClasse;
|
|
20569
20745
|
|
|
20570
|
-
},{"../../excecoes":
|
|
20746
|
+
},{"../../excecoes":140,"./chamavel":201,"./metodo-polimorfico":209,"./objeto-delegua-classe":213}],207:[function(require,module,exports){
|
|
20571
20747
|
"use strict";
|
|
20572
20748
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20573
20749
|
exports.FuncaoPadrao = void 0;
|
|
@@ -20606,7 +20782,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
|
|
|
20606
20782
|
}
|
|
20607
20783
|
exports.FuncaoPadrao = FuncaoPadrao;
|
|
20608
20784
|
|
|
20609
|
-
},{"./chamavel":
|
|
20785
|
+
},{"./chamavel":201}],208:[function(require,module,exports){
|
|
20610
20786
|
"use strict";
|
|
20611
20787
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
20612
20788
|
if (k2 === undefined) k2 = k;
|
|
@@ -20639,7 +20815,7 @@ __exportStar(require("./objeto-padrao"), exports);
|
|
|
20639
20815
|
__exportStar(require("./referencia-montao"), exports);
|
|
20640
20816
|
__exportStar(require("./super-proxy"), exports);
|
|
20641
20817
|
|
|
20642
|
-
},{"./chamavel":
|
|
20818
|
+
},{"./chamavel":201,"./classe-de-modulo":202,"./classe-padrao":203,"./delegua-funcao":205,"./delegua-funcao-nativa":204,"./descritor-tipo-classe":206,"./funcao-padrao":207,"./metodo-polimorfico":209,"./metodo-primitiva":210,"./modulo":211,"./objeto-base":212,"./objeto-delegua-classe":213,"./objeto-padrao":214,"./referencia-montao":215,"./super-proxy":216}],209:[function(require,module,exports){
|
|
20643
20819
|
"use strict";
|
|
20644
20820
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20645
20821
|
exports.MetodoPolimorfico = void 0;
|
|
@@ -20817,7 +20993,7 @@ class MetodoPolimorfico extends chamavel_1.Chamavel {
|
|
|
20817
20993
|
}
|
|
20818
20994
|
exports.MetodoPolimorfico = MetodoPolimorfico;
|
|
20819
20995
|
|
|
20820
|
-
},{"../../excecoes":
|
|
20996
|
+
},{"../../excecoes":140,"../../inferenciador":146,"./chamavel":201}],210:[function(require,module,exports){
|
|
20821
20997
|
"use strict";
|
|
20822
20998
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20823
20999
|
exports.MetodoPrimitiva = void 0;
|
|
@@ -20863,7 +21039,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
|
|
|
20863
21039
|
}
|
|
20864
21040
|
exports.MetodoPrimitiva = MetodoPrimitiva;
|
|
20865
21041
|
|
|
20866
|
-
},{"./chamavel":
|
|
21042
|
+
},{"./chamavel":201}],211:[function(require,module,exports){
|
|
20867
21043
|
"use strict";
|
|
20868
21044
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20869
21045
|
exports.DeleguaModulo = void 0;
|
|
@@ -20889,7 +21065,7 @@ class DeleguaModulo {
|
|
|
20889
21065
|
}
|
|
20890
21066
|
exports.DeleguaModulo = DeleguaModulo;
|
|
20891
21067
|
|
|
20892
|
-
},{}],
|
|
21068
|
+
},{}],212:[function(require,module,exports){
|
|
20893
21069
|
"use strict";
|
|
20894
21070
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20895
21071
|
exports.OBJETO_BASE = void 0;
|
|
@@ -20963,7 +21139,7 @@ function criarDescritorObjeto() {
|
|
|
20963
21139
|
}
|
|
20964
21140
|
exports.OBJETO_BASE = criarDescritorObjeto();
|
|
20965
21141
|
|
|
20966
|
-
},{"./delegua-funcao-nativa":
|
|
21142
|
+
},{"./delegua-funcao-nativa":204,"./descritor-tipo-classe":206}],213:[function(require,module,exports){
|
|
20967
21143
|
"use strict";
|
|
20968
21144
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20969
21145
|
exports.ObjetoDeleguaClasse = void 0;
|
|
@@ -21145,7 +21321,7 @@ class ObjetoDeleguaClasse {
|
|
|
21145
21321
|
}
|
|
21146
21322
|
exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
|
|
21147
21323
|
|
|
21148
|
-
},{"../../excecoes":
|
|
21324
|
+
},{"../../excecoes":140}],214:[function(require,module,exports){
|
|
21149
21325
|
"use strict";
|
|
21150
21326
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21151
21327
|
exports.ObjetoPadrao = void 0;
|
|
@@ -21179,7 +21355,7 @@ class ObjetoPadrao {
|
|
|
21179
21355
|
}
|
|
21180
21356
|
exports.ObjetoPadrao = ObjetoPadrao;
|
|
21181
21357
|
|
|
21182
|
-
},{}],
|
|
21358
|
+
},{}],215:[function(require,module,exports){
|
|
21183
21359
|
"use strict";
|
|
21184
21360
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21185
21361
|
exports.ReferenciaMontao = void 0;
|
|
@@ -21204,7 +21380,7 @@ class ReferenciaMontao {
|
|
|
21204
21380
|
}
|
|
21205
21381
|
exports.ReferenciaMontao = ReferenciaMontao;
|
|
21206
21382
|
|
|
21207
|
-
},{}],
|
|
21383
|
+
},{}],216:[function(require,module,exports){
|
|
21208
21384
|
"use strict";
|
|
21209
21385
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21210
21386
|
exports.SuperProxy = void 0;
|
|
@@ -21243,7 +21419,7 @@ class SuperProxy extends chamavel_1.Chamavel {
|
|
|
21243
21419
|
}
|
|
21244
21420
|
exports.SuperProxy = SuperProxy;
|
|
21245
21421
|
|
|
21246
|
-
},{"./chamavel":
|
|
21422
|
+
},{"./chamavel":201}],217:[function(require,module,exports){
|
|
21247
21423
|
"use strict";
|
|
21248
21424
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
21249
21425
|
if (k2 === undefined) k2 = k;
|
|
@@ -21264,7 +21440,7 @@ __exportStar(require("./estruturas"), exports);
|
|
|
21264
21440
|
__exportStar(require("./interpretador"), exports);
|
|
21265
21441
|
__exportStar(require("./interpretador-base"), exports);
|
|
21266
21442
|
|
|
21267
|
-
},{"./estruturas":
|
|
21443
|
+
},{"./estruturas":208,"./interpretador":219,"./interpretador-base":218}],218:[function(require,module,exports){
|
|
21268
21444
|
"use strict";
|
|
21269
21445
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21270
21446
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -22162,15 +22338,19 @@ class InterpretadorBase {
|
|
|
22162
22338
|
}
|
|
22163
22339
|
if (entidadeChamada instanceof estruturas_1.FuncaoPadrao) {
|
|
22164
22340
|
try {
|
|
22165
|
-
return entidadeChamada.chamar(this, argumentos.map((a) => a && this.resolverValor(a.valor)), expressao.entidadeChamada.simbolo // TODO: O que exatamente pode ser aqui?
|
|
22341
|
+
return await entidadeChamada.chamar(this, argumentos.map((a) => a && this.resolverValor(a.valor)), expressao.entidadeChamada.simbolo // TODO: O que exatamente pode ser aqui?
|
|
22166
22342
|
);
|
|
22167
22343
|
}
|
|
22168
22344
|
catch (erro) {
|
|
22345
|
+
if (this.emDeclaracaoTente) {
|
|
22346
|
+
return Promise.reject(erro);
|
|
22347
|
+
}
|
|
22169
22348
|
this.erros.push({
|
|
22170
22349
|
erroInterno: erro,
|
|
22171
22350
|
linha: expressao.linha,
|
|
22172
22351
|
hashArquivo: expressao.hashArquivo,
|
|
22173
22352
|
});
|
|
22353
|
+
return;
|
|
22174
22354
|
}
|
|
22175
22355
|
}
|
|
22176
22356
|
// Por algum motivo misterioso, `entidadeChamada instanceof Chamavel` dá `false` em Liquido,
|
|
@@ -23475,7 +23655,7 @@ class InterpretadorBase {
|
|
|
23475
23655
|
}
|
|
23476
23656
|
exports.InterpretadorBase = InterpretadorBase;
|
|
23477
23657
|
|
|
23478
|
-
},{"../avaliador-sintatico":22,"../bibliotecas/primitivas-dicionario":31,"../bibliotecas/primitivas-vetor":34,"../construtos":
|
|
23658
|
+
},{"../avaliador-sintatico":22,"../bibliotecas/primitivas-dicionario":31,"../bibliotecas/primitivas-vetor":34,"../construtos":67,"../excecoes":140,"../inferenciador":146,"../lexador":237,"../quebras":246,"../tipos-de-dados/delegua":247,"../tipos-de-dados/primitivos":249,"../tipos-de-simbolos/delegua":252,"./espaco-memoria":200,"./estruturas":208,"./estruturas/metodo-primitiva":210,"./pilha-escopos-execucao":221,"browser-process-hrtime":445}],219:[function(require,module,exports){
|
|
23479
23659
|
"use strict";
|
|
23480
23660
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
23481
23661
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -23491,6 +23671,8 @@ const declaracoes_1 = require("../declaracoes");
|
|
|
23491
23671
|
const quebras_1 = require("../quebras");
|
|
23492
23672
|
const montao_1 = require("./montao");
|
|
23493
23673
|
const comum_1 = require("./comum");
|
|
23674
|
+
const modulo_testes_1 = require("../bibliotecas/testes/modulo-testes");
|
|
23675
|
+
const registro_testes_1 = require("../bibliotecas/testes/registro-testes");
|
|
23494
23676
|
const primitivas_dicionario_1 = __importDefault(require("../bibliotecas/primitivas-dicionario"));
|
|
23495
23677
|
const primitivas_numero_1 = __importDefault(require("../bibliotecas/primitivas-numero"));
|
|
23496
23678
|
const primitivas_texto_1 = __importDefault(require("../bibliotecas/primitivas-texto"));
|
|
@@ -23507,6 +23689,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
23507
23689
|
constructor(diretorioBase, performance = false, funcaoDeRetorno = undefined, funcaoDeRetornoMesmaLinha = undefined) {
|
|
23508
23690
|
super(diretorioBase, performance, funcaoDeRetorno, funcaoDeRetornoMesmaLinha);
|
|
23509
23691
|
this.acumularRetornos = false;
|
|
23692
|
+
this.registroTestes = new registro_testes_1.RegistroTestes();
|
|
23510
23693
|
this.montao = new montao_1.Montao();
|
|
23511
23694
|
this.pontoInicializacaoBibliotecasGlobais();
|
|
23512
23695
|
}
|
|
@@ -23692,6 +23875,27 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
23692
23875
|
// Interfaces não possuem comportamento em tempo de execução.
|
|
23693
23876
|
return Promise.resolve();
|
|
23694
23877
|
}
|
|
23878
|
+
async visitarDeclaracaoImportar(declaracao) {
|
|
23879
|
+
const resultadoCaminho = await this.avaliar(declaracao.caminho);
|
|
23880
|
+
const caminho = this.resolverValor(resultadoCaminho);
|
|
23881
|
+
if (caminho === 'testes') {
|
|
23882
|
+
this.registroTestes = new registro_testes_1.RegistroTestes();
|
|
23883
|
+
const modulo = (0, modulo_testes_1.construirModuloDeTestes)(this, this.registroTestes);
|
|
23884
|
+
if (declaracao.simboloTudo !== null) {
|
|
23885
|
+
this.pilhaEscoposExecucao.definirVariavel(declaracao.simboloTudo.lexema, modulo);
|
|
23886
|
+
}
|
|
23887
|
+
else {
|
|
23888
|
+
for (const elemento of declaracao.elementosImportacao) {
|
|
23889
|
+
const componente = modulo.componentes[elemento.lexema];
|
|
23890
|
+
if (componente !== undefined) {
|
|
23891
|
+
this.pilhaEscoposExecucao.definirVariavel(elemento.lexema, componente);
|
|
23892
|
+
}
|
|
23893
|
+
}
|
|
23894
|
+
}
|
|
23895
|
+
return modulo;
|
|
23896
|
+
}
|
|
23897
|
+
return Promise.reject('Importação de arquivos não suportada neste interpretador. Use delegua-node para importações de arquivos.');
|
|
23898
|
+
}
|
|
23695
23899
|
async visitarDeclaracaoAjuda(declaracao) {
|
|
23696
23900
|
if (declaracao.funcao && declaracao.elemento) {
|
|
23697
23901
|
try {
|
|
@@ -24974,7 +25178,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
24974
25178
|
}
|
|
24975
25179
|
exports.Interpretador = Interpretador;
|
|
24976
25180
|
|
|
24977
|
-
},{"../bibliotecas/dialetos/pitugues/primitivas-tupla":30,"../bibliotecas/primitivas-dicionario":31,"../bibliotecas/primitivas-numero":32,"../bibliotecas/primitivas-texto":33,"../bibliotecas/primitivas-vetor":34,"../construtos":
|
|
25181
|
+
},{"../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":246,"../tipos-de-dados/delegua":247,"../tipos-de-dados/primitivos":249,"../tipos-de-simbolos/delegua":252,"./comum":199,"./estruturas":208,"./interpretador-base":218,"./montao":220}],220:[function(require,module,exports){
|
|
24978
25182
|
"use strict";
|
|
24979
25183
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24980
25184
|
exports.Montao = void 0;
|
|
@@ -25031,7 +25235,7 @@ class Montao {
|
|
|
25031
25235
|
}
|
|
25032
25236
|
exports.Montao = Montao;
|
|
25033
25237
|
|
|
25034
|
-
},{"../excecoes":
|
|
25238
|
+
},{"../excecoes":140,"../geracao-identificadores":144}],221:[function(require,module,exports){
|
|
25035
25239
|
"use strict";
|
|
25036
25240
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25037
25241
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -25362,7 +25566,7 @@ class PilhaEscoposExecucao {
|
|
|
25362
25566
|
}
|
|
25363
25567
|
exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
|
|
25364
25568
|
|
|
25365
|
-
},{"../excecoes":
|
|
25569
|
+
},{"../excecoes":140,"../inferenciador":146,"../lexador":237,"../tipos-de-dados/delegua":247,"./estruturas":208}],222:[function(require,module,exports){
|
|
25366
25570
|
"use strict";
|
|
25367
25571
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
25368
25572
|
if (k2 === undefined) k2 = k;
|
|
@@ -25387,7 +25591,7 @@ __exportStar(require("./lexador-portugol-ipt"), exports);
|
|
|
25387
25591
|
__exportStar(require("./lexador-prisma"), exports);
|
|
25388
25592
|
__exportStar(require("./lexador-tenda"), exports);
|
|
25389
25593
|
|
|
25390
|
-
},{"./lexador-calango":
|
|
25594
|
+
},{"./lexador-calango":223,"./lexador-egua-classico":224,"./lexador-guarani":225,"./lexador-pitugues":226,"./lexador-portugol-ipt":227,"./lexador-prisma":228,"./lexador-tenda":229}],223:[function(require,module,exports){
|
|
25391
25595
|
"use strict";
|
|
25392
25596
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25393
25597
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -25702,7 +25906,7 @@ class LexadorCalango {
|
|
|
25702
25906
|
}
|
|
25703
25907
|
exports.LexadorCalango = LexadorCalango;
|
|
25704
25908
|
|
|
25705
|
-
},{"../../tipos-de-simbolos/calango":
|
|
25909
|
+
},{"../../tipos-de-simbolos/calango":250,"../simbolo":245,"./palavras-reservadas/calango":230}],224:[function(require,module,exports){
|
|
25706
25910
|
"use strict";
|
|
25707
25911
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25708
25912
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -25995,7 +26199,7 @@ class LexadorEguaClassico {
|
|
|
25995
26199
|
}
|
|
25996
26200
|
exports.LexadorEguaClassico = LexadorEguaClassico;
|
|
25997
26201
|
|
|
25998
|
-
},{"../../tipos-de-simbolos/egua-classico":
|
|
26202
|
+
},{"../../tipos-de-simbolos/egua-classico":253,"../simbolo":245,"./palavras-reservadas/egua-classico":231}],225:[function(require,module,exports){
|
|
25999
26203
|
"use strict";
|
|
26000
26204
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26001
26205
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26114,7 +26318,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
|
|
|
26114
26318
|
}
|
|
26115
26319
|
exports.LexadorGuarani = LexadorGuarani;
|
|
26116
26320
|
|
|
26117
|
-
},{"../../tipos-de-simbolos/guarani":
|
|
26321
|
+
},{"../../tipos-de-simbolos/guarani":254,"../lexador-base":239,"./palavras-reservadas/guarani":232}],226:[function(require,module,exports){
|
|
26118
26322
|
"use strict";
|
|
26119
26323
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26120
26324
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26657,7 +26861,7 @@ class LexadorPitugues {
|
|
|
26657
26861
|
}
|
|
26658
26862
|
exports.LexadorPitugues = LexadorPitugues;
|
|
26659
26863
|
|
|
26660
|
-
},{"../../tipos-de-simbolos/pitugues":
|
|
26864
|
+
},{"../../tipos-de-simbolos/pitugues":256,"../simbolo":245,"./palavras-reservadas/pitugues":233,"browser-process-hrtime":445}],227:[function(require,module,exports){
|
|
26661
26865
|
"use strict";
|
|
26662
26866
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26663
26867
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26966,7 +27170,7 @@ class LexadorPortugolIpt {
|
|
|
26966
27170
|
}
|
|
26967
27171
|
exports.LexadorPortugolIpt = LexadorPortugolIpt;
|
|
26968
27172
|
|
|
26969
|
-
},{"../../tipos-de-simbolos/portugol-ipt":
|
|
27173
|
+
},{"../../tipos-de-simbolos/portugol-ipt":257,"../simbolo":245,"./palavras-reservadas/portugol-ipt":234}],228:[function(require,module,exports){
|
|
26970
27174
|
"use strict";
|
|
26971
27175
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26972
27176
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27367,7 +27571,7 @@ class LexadorPrisma {
|
|
|
27367
27571
|
}
|
|
27368
27572
|
exports.LexadorPrisma = LexadorPrisma;
|
|
27369
27573
|
|
|
27370
|
-
},{"../../tipos-de-simbolos/prisma":
|
|
27574
|
+
},{"../../tipos-de-simbolos/prisma":258,"../simbolo":245,"./palavras-reservadas/prisma":235,"browser-process-hrtime":445}],229:[function(require,module,exports){
|
|
27371
27575
|
"use strict";
|
|
27372
27576
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27373
27577
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27761,7 +27965,7 @@ class LexadorTenda {
|
|
|
27761
27965
|
}
|
|
27762
27966
|
exports.LexadorTenda = LexadorTenda;
|
|
27763
27967
|
|
|
27764
|
-
},{"../../tipos-de-simbolos/tenda":
|
|
27968
|
+
},{"../../tipos-de-simbolos/tenda":259,"../simbolo":245,"./palavras-reservadas/tenda":236,"browser-process-hrtime":445}],230:[function(require,module,exports){
|
|
27765
27969
|
"use strict";
|
|
27766
27970
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27767
27971
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27809,7 +28013,7 @@ exports.default = {
|
|
|
27809
28013
|
verdadeiro: calango_1.default.VERDADEIRO,
|
|
27810
28014
|
};
|
|
27811
28015
|
|
|
27812
|
-
},{"../../../tipos-de-simbolos/calango":
|
|
28016
|
+
},{"../../../tipos-de-simbolos/calango":250}],231:[function(require,module,exports){
|
|
27813
28017
|
"use strict";
|
|
27814
28018
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27815
28019
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27850,7 +28054,7 @@ exports.palavrasReservadas = {
|
|
|
27850
28054
|
verdadeiro: egua_classico_1.default.VERDADEIRO,
|
|
27851
28055
|
};
|
|
27852
28056
|
|
|
27853
|
-
},{"../../../tipos-de-simbolos/egua-classico":
|
|
28057
|
+
},{"../../../tipos-de-simbolos/egua-classico":253}],232:[function(require,module,exports){
|
|
27854
28058
|
"use strict";
|
|
27855
28059
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27856
28060
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27862,7 +28066,7 @@ exports.palavrasReservadas = {
|
|
|
27862
28066
|
hai: guarani_1.default.HAI,
|
|
27863
28067
|
};
|
|
27864
28068
|
|
|
27865
|
-
},{"../../../tipos-de-simbolos/guarani":
|
|
28069
|
+
},{"../../../tipos-de-simbolos/guarani":254}],233:[function(require,module,exports){
|
|
27866
28070
|
"use strict";
|
|
27867
28071
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27868
28072
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27924,7 +28128,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
27924
28128
|
verdadeiro: pitugues_1.default.VERDADEIRO,
|
|
27925
28129
|
};
|
|
27926
28130
|
|
|
27927
|
-
},{"../../../tipos-de-simbolos/pitugues":
|
|
28131
|
+
},{"../../../tipos-de-simbolos/pitugues":256}],234:[function(require,module,exports){
|
|
27928
28132
|
"use strict";
|
|
27929
28133
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27930
28134
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27984,7 +28188,7 @@ exports.palavrasReservadas = {
|
|
|
27984
28188
|
não: portugol_ipt_1.default.NAO,
|
|
27985
28189
|
};
|
|
27986
28190
|
|
|
27987
|
-
},{"../../../tipos-de-simbolos/portugol-ipt":
|
|
28191
|
+
},{"../../../tipos-de-simbolos/portugol-ipt":257}],235:[function(require,module,exports){
|
|
27988
28192
|
"use strict";
|
|
27989
28193
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27990
28194
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28035,7 +28239,7 @@ exports.palavrasReservadas = {
|
|
|
28035
28239
|
verdadeiro: prisma_1.default.VERDADEIRO,
|
|
28036
28240
|
};
|
|
28037
28241
|
|
|
28038
|
-
},{"../../../tipos-de-simbolos/prisma":
|
|
28242
|
+
},{"../../../tipos-de-simbolos/prisma":258}],236:[function(require,module,exports){
|
|
28039
28243
|
"use strict";
|
|
28040
28244
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28041
28245
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28093,7 +28297,7 @@ exports.palavrasReservadas = {
|
|
|
28093
28297
|
Texto: tenda_1.default.BIBLIOTECA_GLOBAL,
|
|
28094
28298
|
};
|
|
28095
28299
|
|
|
28096
|
-
},{"../../../tipos-de-simbolos/tenda":
|
|
28300
|
+
},{"../../../tipos-de-simbolos/tenda":259}],237:[function(require,module,exports){
|
|
28097
28301
|
"use strict";
|
|
28098
28302
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
28099
28303
|
if (k2 === undefined) k2 = k;
|
|
@@ -28116,7 +28320,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
|
|
|
28116
28320
|
__exportStar(require("./micro-lexador"), exports);
|
|
28117
28321
|
__exportStar(require("./simbolo"), exports);
|
|
28118
28322
|
|
|
28119
|
-
},{"./dialetos":
|
|
28323
|
+
},{"./dialetos":222,"./lexador":240,"./lexador-base-linha-unica":238,"./micro-lexador":243,"./simbolo":245}],238:[function(require,module,exports){
|
|
28120
28324
|
"use strict";
|
|
28121
28325
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28122
28326
|
exports.LexadorBaseLinhaUnica = void 0;
|
|
@@ -28205,7 +28409,7 @@ class LexadorBaseLinhaUnica {
|
|
|
28205
28409
|
}
|
|
28206
28410
|
exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
|
|
28207
28411
|
|
|
28208
|
-
},{"./simbolo":
|
|
28412
|
+
},{"./simbolo":245}],239:[function(require,module,exports){
|
|
28209
28413
|
"use strict";
|
|
28210
28414
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28211
28415
|
exports.LexadorBase = void 0;
|
|
@@ -28344,7 +28548,7 @@ class LexadorBase {
|
|
|
28344
28548
|
}
|
|
28345
28549
|
exports.LexadorBase = LexadorBase;
|
|
28346
28550
|
|
|
28347
|
-
},{"./simbolo":
|
|
28551
|
+
},{"./simbolo":245}],240:[function(require,module,exports){
|
|
28348
28552
|
"use strict";
|
|
28349
28553
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28350
28554
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29018,7 +29222,7 @@ class Lexador {
|
|
|
29018
29222
|
}
|
|
29019
29223
|
exports.Lexador = Lexador;
|
|
29020
29224
|
|
|
29021
|
-
},{"../tipos-de-simbolos/delegua":
|
|
29225
|
+
},{"../tipos-de-simbolos/delegua":252,"./palavras-reservadas":244,"./simbolo":245,"browser-process-hrtime":445}],241:[function(require,module,exports){
|
|
29022
29226
|
"use strict";
|
|
29023
29227
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29024
29228
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29201,7 +29405,7 @@ function pertenceAoParadigma(lexema, paradigma) {
|
|
|
29201
29405
|
return paradigmaLexema === paradigma;
|
|
29202
29406
|
}
|
|
29203
29407
|
|
|
29204
|
-
},{"../tipos-de-simbolos/delegua":
|
|
29408
|
+
},{"../tipos-de-simbolos/delegua":252}],242:[function(require,module,exports){
|
|
29205
29409
|
"use strict";
|
|
29206
29410
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29207
29411
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29421,7 +29625,7 @@ class MicroLexadorPitugues {
|
|
|
29421
29625
|
}
|
|
29422
29626
|
exports.MicroLexadorPitugues = MicroLexadorPitugues;
|
|
29423
29627
|
|
|
29424
|
-
},{"../tipos-de-simbolos/pitugues":
|
|
29628
|
+
},{"../tipos-de-simbolos/pitugues":256,"./palavras-reservadas":244,"./simbolo":245}],243:[function(require,module,exports){
|
|
29425
29629
|
"use strict";
|
|
29426
29630
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29427
29631
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29659,7 +29863,7 @@ class MicroLexador {
|
|
|
29659
29863
|
}
|
|
29660
29864
|
exports.MicroLexador = MicroLexador;
|
|
29661
29865
|
|
|
29662
|
-
},{"../tipos-de-simbolos/microgramaticas/delegua":
|
|
29866
|
+
},{"../tipos-de-simbolos/microgramaticas/delegua":255,"./palavras-reservadas":244,"./simbolo":245}],244:[function(require,module,exports){
|
|
29663
29867
|
"use strict";
|
|
29664
29868
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29665
29869
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29760,7 +29964,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
29760
29964
|
verdadeiro: delegua_1.default.VERDADEIRO,
|
|
29761
29965
|
};
|
|
29762
29966
|
|
|
29763
|
-
},{"../tipos-de-simbolos/delegua":
|
|
29967
|
+
},{"../tipos-de-simbolos/delegua":252}],245:[function(require,module,exports){
|
|
29764
29968
|
"use strict";
|
|
29765
29969
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29766
29970
|
exports.Simbolo = void 0;
|
|
@@ -29781,7 +29985,7 @@ class Simbolo {
|
|
|
29781
29985
|
}
|
|
29782
29986
|
exports.Simbolo = Simbolo;
|
|
29783
29987
|
|
|
29784
|
-
},{}],
|
|
29988
|
+
},{}],246:[function(require,module,exports){
|
|
29785
29989
|
"use strict";
|
|
29786
29990
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29787
29991
|
exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
|
|
@@ -29806,7 +30010,7 @@ class ContinuarQuebra extends Quebra {
|
|
|
29806
30010
|
}
|
|
29807
30011
|
exports.ContinuarQuebra = ContinuarQuebra;
|
|
29808
30012
|
|
|
29809
|
-
},{}],
|
|
30013
|
+
},{}],247:[function(require,module,exports){
|
|
29810
30014
|
"use strict";
|
|
29811
30015
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29812
30016
|
exports.default = {
|
|
@@ -29840,7 +30044,7 @@ exports.default = {
|
|
|
29840
30044
|
VETOR_TEXTO: 'texto[]',
|
|
29841
30045
|
};
|
|
29842
30046
|
|
|
29843
|
-
},{}],
|
|
30047
|
+
},{}],248:[function(require,module,exports){
|
|
29844
30048
|
"use strict";
|
|
29845
30049
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29846
30050
|
exports.default = {
|
|
@@ -29870,7 +30074,7 @@ exports.default = {
|
|
|
29870
30074
|
VETOR_TEXTO: 'texto[]',
|
|
29871
30075
|
};
|
|
29872
30076
|
|
|
29873
|
-
},{}],
|
|
30077
|
+
},{}],249:[function(require,module,exports){
|
|
29874
30078
|
"use strict";
|
|
29875
30079
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29876
30080
|
exports.default = {
|
|
@@ -29889,7 +30093,7 @@ exports.default = {
|
|
|
29889
30093
|
TEXTO: 'string',
|
|
29890
30094
|
};
|
|
29891
30095
|
|
|
29892
|
-
},{}],
|
|
30096
|
+
},{}],250:[function(require,module,exports){
|
|
29893
30097
|
"use strict";
|
|
29894
30098
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29895
30099
|
exports.default = {
|
|
@@ -29961,7 +30165,7 @@ exports.default = {
|
|
|
29961
30165
|
VIRGULA: 'VIRGULA',
|
|
29962
30166
|
};
|
|
29963
30167
|
|
|
29964
|
-
},{}],
|
|
30168
|
+
},{}],251:[function(require,module,exports){
|
|
29965
30169
|
"use strict";
|
|
29966
30170
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29967
30171
|
exports.default = {
|
|
@@ -29988,7 +30192,7 @@ exports.default = {
|
|
|
29988
30192
|
VIRGULA: 'VIRGULA',
|
|
29989
30193
|
};
|
|
29990
30194
|
|
|
29991
|
-
},{}],
|
|
30195
|
+
},{}],252:[function(require,module,exports){
|
|
29992
30196
|
"use strict";
|
|
29993
30197
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29994
30198
|
exports.default = {
|
|
@@ -30104,7 +30308,7 @@ exports.default = {
|
|
|
30104
30308
|
VIRGULA: 'VIRGULA',
|
|
30105
30309
|
};
|
|
30106
30310
|
|
|
30107
|
-
},{}],
|
|
30311
|
+
},{}],253:[function(require,module,exports){
|
|
30108
30312
|
"use strict";
|
|
30109
30313
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30110
30314
|
exports.default = {
|
|
@@ -30182,7 +30386,7 @@ exports.default = {
|
|
|
30182
30386
|
VIRGULA: 'VIRGULA',
|
|
30183
30387
|
};
|
|
30184
30388
|
|
|
30185
|
-
},{}],
|
|
30389
|
+
},{}],254:[function(require,module,exports){
|
|
30186
30390
|
"use strict";
|
|
30187
30391
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30188
30392
|
exports.default = {
|
|
@@ -30199,7 +30403,7 @@ exports.default = {
|
|
|
30199
30403
|
VIRGULA: 'VIRGULA',
|
|
30200
30404
|
};
|
|
30201
30405
|
|
|
30202
|
-
},{}],
|
|
30406
|
+
},{}],255:[function(require,module,exports){
|
|
30203
30407
|
"use strict";
|
|
30204
30408
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30205
30409
|
exports.default = {
|
|
@@ -30252,7 +30456,7 @@ exports.default = {
|
|
|
30252
30456
|
VIRGULA: 'VIRGULA',
|
|
30253
30457
|
};
|
|
30254
30458
|
|
|
30255
|
-
},{}],
|
|
30459
|
+
},{}],256:[function(require,module,exports){
|
|
30256
30460
|
"use strict";
|
|
30257
30461
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30258
30462
|
exports.default = {
|
|
@@ -30347,7 +30551,7 @@ exports.default = {
|
|
|
30347
30551
|
VIRGULA: 'VIRGULA',
|
|
30348
30552
|
};
|
|
30349
30553
|
|
|
30350
|
-
},{}],
|
|
30554
|
+
},{}],257:[function(require,module,exports){
|
|
30351
30555
|
"use strict";
|
|
30352
30556
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30353
30557
|
exports.default = {
|
|
@@ -30426,7 +30630,7 @@ exports.default = {
|
|
|
30426
30630
|
VARIAVEL: 'VARIAVEL',
|
|
30427
30631
|
};
|
|
30428
30632
|
|
|
30429
|
-
},{}],
|
|
30633
|
+
},{}],258:[function(require,module,exports){
|
|
30430
30634
|
"use strict";
|
|
30431
30635
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30432
30636
|
exports.default = {
|
|
@@ -30510,7 +30714,7 @@ exports.default = {
|
|
|
30510
30714
|
VIRGULA: 'VIRGULA',
|
|
30511
30715
|
};
|
|
30512
30716
|
|
|
30513
|
-
},{}],
|
|
30717
|
+
},{}],259:[function(require,module,exports){
|
|
30514
30718
|
"use strict";
|
|
30515
30719
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30516
30720
|
// Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
|
|
@@ -30605,7 +30809,7 @@ exports.default = {
|
|
|
30605
30809
|
VIRGULA: 'VIRGULA',
|
|
30606
30810
|
};
|
|
30607
30811
|
|
|
30608
|
-
},{}],
|
|
30812
|
+
},{}],260:[function(require,module,exports){
|
|
30609
30813
|
"use strict";
|
|
30610
30814
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
30611
30815
|
if (k2 === undefined) k2 = k;
|
|
@@ -30638,7 +30842,7 @@ __exportStar(require("./tradutor-reverso-python"), exports);
|
|
|
30638
30842
|
__exportStar(require("./tradutor-reverso-tenda"), exports);
|
|
30639
30843
|
__exportStar(require("./tradutor-ruby"), exports);
|
|
30640
30844
|
|
|
30641
|
-
},{"./tradutor-assembly-arm":
|
|
30845
|
+
},{"./tradutor-assembly-arm":269,"./tradutor-assembly-risc-v":270,"./tradutor-assembly-x64":271,"./tradutor-assemblyscript":272,"./tradutor-elixir":273,"./tradutor-javascript":274,"./tradutor-mermaidjs":275,"./tradutor-portugol-ipt":276,"./tradutor-python":277,"./tradutor-reverso-calango":278,"./tradutor-reverso-javascript":279,"./tradutor-reverso-python":280,"./tradutor-reverso-tenda":281,"./tradutor-ruby":282,"./tradutor-webassembly":283}],261:[function(require,module,exports){
|
|
30642
30846
|
"use strict";
|
|
30643
30847
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30644
30848
|
exports.ArestaFluxograma = void 0;
|
|
@@ -30650,7 +30854,7 @@ class ArestaFluxograma {
|
|
|
30650
30854
|
}
|
|
30651
30855
|
exports.ArestaFluxograma = ArestaFluxograma;
|
|
30652
30856
|
|
|
30653
|
-
},{}],
|
|
30857
|
+
},{}],262:[function(require,module,exports){
|
|
30654
30858
|
"use strict";
|
|
30655
30859
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
30656
30860
|
if (k2 === undefined) k2 = k;
|
|
@@ -30673,7 +30877,7 @@ __exportStar(require("./subgrafo-funcao"), exports);
|
|
|
30673
30877
|
__exportStar(require("./subgrafo-metodo"), exports);
|
|
30674
30878
|
__exportStar(require("./vertice-fluxograma"), exports);
|
|
30675
30879
|
|
|
30676
|
-
},{"./aresta-fluxograma":
|
|
30880
|
+
},{"./aresta-fluxograma":261,"./subgrafo-classe":263,"./subgrafo-funcao":264,"./subgrafo-metodo":265,"./vertice-fluxograma":266}],263:[function(require,module,exports){
|
|
30677
30881
|
"use strict";
|
|
30678
30882
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30679
30883
|
exports.SubgrafoClasse = void 0;
|
|
@@ -30719,7 +30923,7 @@ class SubgrafoClasse {
|
|
|
30719
30923
|
}
|
|
30720
30924
|
exports.SubgrafoClasse = SubgrafoClasse;
|
|
30721
30925
|
|
|
30722
|
-
},{}],
|
|
30926
|
+
},{}],264:[function(require,module,exports){
|
|
30723
30927
|
"use strict";
|
|
30724
30928
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30725
30929
|
exports.SubgrafoFuncao = void 0;
|
|
@@ -30734,7 +30938,7 @@ class SubgrafoFuncao {
|
|
|
30734
30938
|
}
|
|
30735
30939
|
exports.SubgrafoFuncao = SubgrafoFuncao;
|
|
30736
30940
|
|
|
30737
|
-
},{}],
|
|
30941
|
+
},{}],265:[function(require,module,exports){
|
|
30738
30942
|
"use strict";
|
|
30739
30943
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30740
30944
|
exports.SubgrafoMetodo = void 0;
|
|
@@ -30751,7 +30955,7 @@ class SubgrafoMetodo {
|
|
|
30751
30955
|
}
|
|
30752
30956
|
exports.SubgrafoMetodo = SubgrafoMetodo;
|
|
30753
30957
|
|
|
30754
|
-
},{}],
|
|
30958
|
+
},{}],266:[function(require,module,exports){
|
|
30755
30959
|
"use strict";
|
|
30756
30960
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30757
30961
|
exports.VerticeFluxograma = void 0;
|
|
@@ -30768,7 +30972,7 @@ class VerticeFluxograma {
|
|
|
30768
30972
|
}
|
|
30769
30973
|
exports.VerticeFluxograma = VerticeFluxograma;
|
|
30770
30974
|
|
|
30771
|
-
},{}],
|
|
30975
|
+
},{}],267:[function(require,module,exports){
|
|
30772
30976
|
"use strict";
|
|
30773
30977
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
30774
30978
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -32008,7 +32212,7 @@ __decorate([
|
|
|
32008
32212
|
Decorators_1.Override
|
|
32009
32213
|
], Python3Lexer.prototype, "nextToken", null);
|
|
32010
32214
|
|
|
32011
|
-
},{"./python3-parser":
|
|
32215
|
+
},{"./python3-parser":268,"antlr4ts/CommonToken":293,"antlr4ts/Decorators":297,"antlr4ts/Lexer":305,"antlr4ts/Token":322,"antlr4ts/VocabularyImpl":328,"antlr4ts/atn/ATNDeserializer":334,"antlr4ts/atn/LexerATNSimulator":355,"antlr4ts/misc/Utils":416}],268:[function(require,module,exports){
|
|
32012
32216
|
"use strict";
|
|
32013
32217
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
32014
32218
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -43255,7 +43459,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
43255
43459
|
}
|
|
43256
43460
|
exports.Yield_argContext = Yield_argContext;
|
|
43257
43461
|
|
|
43258
|
-
},{"antlr4ts/FailedPredicateException":
|
|
43462
|
+
},{"antlr4ts/FailedPredicateException":301,"antlr4ts/NoViableAltException":309,"antlr4ts/Parser":310,"antlr4ts/ParserRuleContext":313,"antlr4ts/RecognitionException":316,"antlr4ts/Token":322,"antlr4ts/VocabularyImpl":328,"antlr4ts/atn/ATN":330,"antlr4ts/atn/ATNDeserializer":334,"antlr4ts/atn/ParserATNSimulator":371,"antlr4ts/misc/Utils":416}],269:[function(require,module,exports){
|
|
43259
43463
|
"use strict";
|
|
43260
43464
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
43261
43465
|
exports.TradutorAssemblyARM = void 0;
|
|
@@ -43967,7 +44171,7 @@ ${labelFim}:`;
|
|
|
43967
44171
|
}
|
|
43968
44172
|
exports.TradutorAssemblyARM = TradutorAssemblyARM;
|
|
43969
44173
|
|
|
43970
|
-
},{"../construtos":
|
|
44174
|
+
},{"../construtos":67,"../declaracoes":116}],270:[function(require,module,exports){
|
|
43971
44175
|
"use strict";
|
|
43972
44176
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
43973
44177
|
exports.TradutorAssemblyRISCV = void 0;
|
|
@@ -44656,7 +44860,7 @@ ${labelSenao}:`;
|
|
|
44656
44860
|
}
|
|
44657
44861
|
exports.TradutorAssemblyRISCV = TradutorAssemblyRISCV;
|
|
44658
44862
|
|
|
44659
|
-
},{"../construtos":
|
|
44863
|
+
},{"../construtos":67,"../declaracoes":116}],271:[function(require,module,exports){
|
|
44660
44864
|
"use strict";
|
|
44661
44865
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44662
44866
|
exports.TradutorAssemblyX64 = void 0;
|
|
@@ -45431,7 +45635,7 @@ __delegua_print_int:
|
|
|
45431
45635
|
}
|
|
45432
45636
|
exports.TradutorAssemblyX64 = TradutorAssemblyX64;
|
|
45433
45637
|
|
|
45434
|
-
},{"../construtos":
|
|
45638
|
+
},{"../construtos":67,"../declaracoes":116}],272:[function(require,module,exports){
|
|
45435
45639
|
"use strict";
|
|
45436
45640
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
45437
45641
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -46646,7 +46850,7 @@ class TradutorAssemblyScript {
|
|
|
46646
46850
|
}
|
|
46647
46851
|
exports.TradutorAssemblyScript = TradutorAssemblyScript;
|
|
46648
46852
|
|
|
46649
|
-
},{"../construtos":
|
|
46853
|
+
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/delegua":252}],273:[function(require,module,exports){
|
|
46650
46854
|
"use strict";
|
|
46651
46855
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
46652
46856
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -47607,7 +47811,7 @@ class TradutorElixir {
|
|
|
47607
47811
|
}
|
|
47608
47812
|
exports.TradutorElixir = TradutorElixir;
|
|
47609
47813
|
|
|
47610
|
-
},{"../tipos-de-simbolos/delegua":
|
|
47814
|
+
},{"../tipos-de-simbolos/delegua":252}],274:[function(require,module,exports){
|
|
47611
47815
|
"use strict";
|
|
47612
47816
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
47613
47817
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -48399,7 +48603,7 @@ class TradutorJavaScript {
|
|
|
48399
48603
|
}
|
|
48400
48604
|
exports.TradutorJavaScript = TradutorJavaScript;
|
|
48401
48605
|
|
|
48402
|
-
},{"../construtos":
|
|
48606
|
+
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/delegua":252}],275:[function(require,module,exports){
|
|
48403
48607
|
"use strict";
|
|
48404
48608
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
48405
48609
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -49228,7 +49432,7 @@ class TradutorMermaidJs {
|
|
|
49228
49432
|
}
|
|
49229
49433
|
exports.TradutorMermaidJs = TradutorMermaidJs;
|
|
49230
49434
|
|
|
49231
|
-
},{"../construtos":
|
|
49435
|
+
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/delegua":252,"./mermaid":262}],276:[function(require,module,exports){
|
|
49232
49436
|
"use strict";
|
|
49233
49437
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
49234
49438
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -49610,7 +49814,7 @@ class TradutorPortugolIpt {
|
|
|
49610
49814
|
}
|
|
49611
49815
|
exports.TradutorPortugolIpt = TradutorPortugolIpt;
|
|
49612
49816
|
|
|
49613
|
-
},{"../avaliador-sintatico/dialetos":18,"../construtos":
|
|
49817
|
+
},{"../avaliador-sintatico/dialetos":18,"../construtos":67,"../declaracoes":116,"../lexador/dialetos":222,"../tipos-de-simbolos/portugol-ipt":257}],277:[function(require,module,exports){
|
|
49614
49818
|
"use strict";
|
|
49615
49819
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
49616
49820
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -50295,7 +50499,7 @@ class TradutorPython {
|
|
|
50295
50499
|
}
|
|
50296
50500
|
exports.TradutorPython = TradutorPython;
|
|
50297
50501
|
|
|
50298
|
-
},{"../construtos":
|
|
50502
|
+
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/delegua":252}],278:[function(require,module,exports){
|
|
50299
50503
|
"use strict";
|
|
50300
50504
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
50301
50505
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -50649,7 +50853,7 @@ class TradutorReversoCalango {
|
|
|
50649
50853
|
}
|
|
50650
50854
|
exports.TradutorReversoCalango = TradutorReversoCalango;
|
|
50651
50855
|
|
|
50652
|
-
},{"../tipos-de-simbolos/calango":
|
|
50856
|
+
},{"../tipos-de-simbolos/calango":250}],279:[function(require,module,exports){
|
|
50653
50857
|
"use strict";
|
|
50654
50858
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50655
50859
|
exports.TradutorReversoJavaScript = void 0;
|
|
@@ -51044,7 +51248,7 @@ class TradutorReversoJavaScript {
|
|
|
51044
51248
|
}
|
|
51045
51249
|
exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
|
|
51046
51250
|
|
|
51047
|
-
},{}],
|
|
51251
|
+
},{}],280:[function(require,module,exports){
|
|
51048
51252
|
"use strict";
|
|
51049
51253
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51050
51254
|
exports.TradutorReversoPython = void 0;
|
|
@@ -51697,7 +51901,7 @@ class TradutorReversoPython extends AbstractParseTreeVisitor_1.AbstractParseTree
|
|
|
51697
51901
|
}
|
|
51698
51902
|
exports.TradutorReversoPython = TradutorReversoPython;
|
|
51699
51903
|
|
|
51700
|
-
},{"./python/python3-lexer":
|
|
51904
|
+
},{"./python/python3-lexer":267,"./python/python3-parser":268,"antlr4ts":399,"antlr4ts/tree/AbstractParseTreeVisitor":417}],281:[function(require,module,exports){
|
|
51701
51905
|
"use strict";
|
|
51702
51906
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
51703
51907
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -52288,7 +52492,7 @@ class TradutorReversoTenda {
|
|
|
52288
52492
|
}
|
|
52289
52493
|
exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
52290
52494
|
|
|
52291
|
-
},{"../construtos":
|
|
52495
|
+
},{"../construtos":67,"../tipos-de-simbolos/tenda":259}],282:[function(require,module,exports){
|
|
52292
52496
|
"use strict";
|
|
52293
52497
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
52294
52498
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -52975,7 +53179,7 @@ class TradutorRuby {
|
|
|
52975
53179
|
}
|
|
52976
53180
|
exports.TradutorRuby = TradutorRuby;
|
|
52977
53181
|
|
|
52978
|
-
},{"../construtos":
|
|
53182
|
+
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/delegua":252}],283:[function(require,module,exports){
|
|
52979
53183
|
"use strict";
|
|
52980
53184
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
52981
53185
|
exports.TradutorWebAssembly = void 0;
|
|
@@ -53862,7 +54066,7 @@ process.exit(codigoSaida);
|
|
|
53862
54066
|
}
|
|
53863
54067
|
exports.TradutorWebAssembly = TradutorWebAssembly;
|
|
53864
54068
|
|
|
53865
|
-
},{"../construtos":
|
|
54069
|
+
},{"../construtos":67,"../declaracoes":116}],284:[function(require,module,exports){
|
|
53866
54070
|
"use strict";
|
|
53867
54071
|
/*!
|
|
53868
54072
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53870,7 +54074,7 @@ exports.TradutorWebAssembly = TradutorWebAssembly;
|
|
|
53870
54074
|
*/
|
|
53871
54075
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53872
54076
|
|
|
53873
|
-
},{}],
|
|
54077
|
+
},{}],285:[function(require,module,exports){
|
|
53874
54078
|
"use strict";
|
|
53875
54079
|
/*!
|
|
53876
54080
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53878,7 +54082,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
53878
54082
|
*/
|
|
53879
54083
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53880
54084
|
|
|
53881
|
-
},{}],
|
|
54085
|
+
},{}],286:[function(require,module,exports){
|
|
53882
54086
|
"use strict";
|
|
53883
54087
|
/*!
|
|
53884
54088
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54040,7 +54244,7 @@ __decorate([
|
|
|
54040
54244
|
], ANTLRInputStream.prototype, "toString", null);
|
|
54041
54245
|
exports.ANTLRInputStream = ANTLRInputStream;
|
|
54042
54246
|
|
|
54043
|
-
},{"./Decorators":
|
|
54247
|
+
},{"./Decorators":297,"./IntStream":303,"assert":440}],287:[function(require,module,exports){
|
|
54044
54248
|
"use strict";
|
|
54045
54249
|
/*!
|
|
54046
54250
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54123,7 +54327,7 @@ __decorate([
|
|
|
54123
54327
|
], BailErrorStrategy.prototype, "sync", null);
|
|
54124
54328
|
exports.BailErrorStrategy = BailErrorStrategy;
|
|
54125
54329
|
|
|
54126
|
-
},{"./Decorators":
|
|
54330
|
+
},{"./Decorators":297,"./DefaultErrorStrategy":298,"./InputMismatchException":302,"./misc/ParseCancellationException":414}],288:[function(require,module,exports){
|
|
54127
54331
|
"use strict";
|
|
54128
54332
|
/*!
|
|
54129
54333
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54613,7 +54817,7 @@ BufferedTokenStream = __decorate([
|
|
|
54613
54817
|
], BufferedTokenStream);
|
|
54614
54818
|
exports.BufferedTokenStream = BufferedTokenStream;
|
|
54615
54819
|
|
|
54616
|
-
},{"./CommonToken":
|
|
54820
|
+
},{"./CommonToken":293,"./Decorators":297,"./Lexer":305,"./Token":322,"./misc/Interval":409,"assert":440}],289:[function(require,module,exports){
|
|
54617
54821
|
"use strict";
|
|
54618
54822
|
/*!
|
|
54619
54823
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54621,7 +54825,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
|
|
|
54621
54825
|
*/
|
|
54622
54826
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54623
54827
|
|
|
54624
|
-
},{}],
|
|
54828
|
+
},{}],290:[function(require,module,exports){
|
|
54625
54829
|
"use strict";
|
|
54626
54830
|
/*!
|
|
54627
54831
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54755,7 +54959,7 @@ var CharStreams;
|
|
|
54755
54959
|
// }
|
|
54756
54960
|
})(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
|
|
54757
54961
|
|
|
54758
|
-
},{"./CodePointBuffer":
|
|
54962
|
+
},{"./CodePointBuffer":291,"./CodePointCharStream":292,"./IntStream":303}],291:[function(require,module,exports){
|
|
54759
54963
|
"use strict";
|
|
54760
54964
|
/*!
|
|
54761
54965
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54990,7 +55194,7 @@ exports.CodePointBuffer = CodePointBuffer;
|
|
|
54990
55194
|
CodePointBuffer.Builder = Builder;
|
|
54991
55195
|
})(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
|
|
54992
55196
|
|
|
54993
|
-
},{"./misc/Character":
|
|
55197
|
+
},{"./misc/Character":405,"assert":440}],292:[function(require,module,exports){
|
|
54994
55198
|
"use strict";
|
|
54995
55199
|
/*!
|
|
54996
55200
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55140,7 +55344,7 @@ __decorate([
|
|
|
55140
55344
|
], CodePointCharStream.prototype, "getText", null);
|
|
55141
55345
|
exports.CodePointCharStream = CodePointCharStream;
|
|
55142
55346
|
|
|
55143
|
-
},{"./Decorators":
|
|
55347
|
+
},{"./Decorators":297,"./IntStream":303,"./misc/Interval":409,"assert":440}],293:[function(require,module,exports){
|
|
55144
55348
|
"use strict";
|
|
55145
55349
|
/*!
|
|
55146
55350
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55370,7 +55574,7 @@ CommonToken = __decorate([
|
|
|
55370
55574
|
], CommonToken);
|
|
55371
55575
|
exports.CommonToken = CommonToken;
|
|
55372
55576
|
|
|
55373
|
-
},{"./Decorators":
|
|
55577
|
+
},{"./Decorators":297,"./Token":322,"./misc/Interval":409}],294:[function(require,module,exports){
|
|
55374
55578
|
"use strict";
|
|
55375
55579
|
/*!
|
|
55376
55580
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55434,7 +55638,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
|
|
|
55434
55638
|
CommonTokenFactory.DEFAULT = new CommonTokenFactory();
|
|
55435
55639
|
})(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
|
|
55436
55640
|
|
|
55437
|
-
},{"./CommonToken":
|
|
55641
|
+
},{"./CommonToken":293,"./Decorators":297,"./misc/Interval":409}],295:[function(require,module,exports){
|
|
55438
55642
|
"use strict";
|
|
55439
55643
|
/*!
|
|
55440
55644
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55561,7 +55765,7 @@ CommonTokenStream = __decorate([
|
|
|
55561
55765
|
], CommonTokenStream);
|
|
55562
55766
|
exports.CommonTokenStream = CommonTokenStream;
|
|
55563
55767
|
|
|
55564
|
-
},{"./BufferedTokenStream":
|
|
55768
|
+
},{"./BufferedTokenStream":288,"./Decorators":297,"./Token":322}],296:[function(require,module,exports){
|
|
55565
55769
|
"use strict";
|
|
55566
55770
|
/*!
|
|
55567
55771
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55595,7 +55799,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
|
|
|
55595
55799
|
*/
|
|
55596
55800
|
ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
|
|
55597
55801
|
|
|
55598
|
-
},{}],
|
|
55802
|
+
},{}],297:[function(require,module,exports){
|
|
55599
55803
|
"use strict";
|
|
55600
55804
|
/*!
|
|
55601
55805
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55622,7 +55826,7 @@ function SuppressWarnings(options) {
|
|
|
55622
55826
|
}
|
|
55623
55827
|
exports.SuppressWarnings = SuppressWarnings;
|
|
55624
55828
|
|
|
55625
|
-
},{}],
|
|
55829
|
+
},{}],298:[function(require,module,exports){
|
|
55626
55830
|
"use strict";
|
|
55627
55831
|
/*!
|
|
55628
55832
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56436,7 +56640,7 @@ __decorate([
|
|
|
56436
56640
|
], DefaultErrorStrategy.prototype, "consumeUntil", null);
|
|
56437
56641
|
exports.DefaultErrorStrategy = DefaultErrorStrategy;
|
|
56438
56642
|
|
|
56439
|
-
},{"./Decorators":
|
|
56643
|
+
},{"./Decorators":297,"./FailedPredicateException":301,"./InputMismatchException":302,"./NoViableAltException":309,"./Token":322,"./atn/ATNState":336,"./atn/ATNStateType":337,"./atn/PredictionContext":377,"./misc/IntervalSet":410}],299:[function(require,module,exports){
|
|
56440
56644
|
"use strict";
|
|
56441
56645
|
/*!
|
|
56442
56646
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56512,7 +56716,7 @@ var Dependents;
|
|
|
56512
56716
|
Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
|
|
56513
56717
|
})(Dependents = exports.Dependents || (exports.Dependents = {}));
|
|
56514
56718
|
|
|
56515
|
-
},{}],
|
|
56719
|
+
},{}],300:[function(require,module,exports){
|
|
56516
56720
|
"use strict";
|
|
56517
56721
|
/*!
|
|
56518
56722
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56660,7 +56864,7 @@ __decorate([
|
|
|
56660
56864
|
], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
|
|
56661
56865
|
exports.DiagnosticErrorListener = DiagnosticErrorListener;
|
|
56662
56866
|
|
|
56663
|
-
},{"./Decorators":
|
|
56867
|
+
},{"./Decorators":297,"./misc/BitSet":404,"./misc/Interval":409}],301:[function(require,module,exports){
|
|
56664
56868
|
"use strict";
|
|
56665
56869
|
/*!
|
|
56666
56870
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56725,7 +56929,7 @@ FailedPredicateException = __decorate([
|
|
|
56725
56929
|
], FailedPredicateException);
|
|
56726
56930
|
exports.FailedPredicateException = FailedPredicateException;
|
|
56727
56931
|
|
|
56728
|
-
},{"./Decorators":
|
|
56932
|
+
},{"./Decorators":297,"./RecognitionException":316,"./atn/PredicateTransition":376}],302:[function(require,module,exports){
|
|
56729
56933
|
"use strict";
|
|
56730
56934
|
/*!
|
|
56731
56935
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56765,7 +56969,7 @@ InputMismatchException = __decorate([
|
|
|
56765
56969
|
], InputMismatchException);
|
|
56766
56970
|
exports.InputMismatchException = InputMismatchException;
|
|
56767
56971
|
|
|
56768
|
-
},{"./Decorators":
|
|
56972
|
+
},{"./Decorators":297,"./RecognitionException":316}],303:[function(require,module,exports){
|
|
56769
56973
|
"use strict";
|
|
56770
56974
|
/*!
|
|
56771
56975
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56788,7 +56992,7 @@ var IntStream;
|
|
|
56788
56992
|
IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
|
|
56789
56993
|
})(IntStream = exports.IntStream || (exports.IntStream = {}));
|
|
56790
56994
|
|
|
56791
|
-
},{}],
|
|
56995
|
+
},{}],304:[function(require,module,exports){
|
|
56792
56996
|
"use strict";
|
|
56793
56997
|
/*!
|
|
56794
56998
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56835,7 +57039,7 @@ __decorate([
|
|
|
56835
57039
|
], InterpreterRuleContext.prototype, "ruleIndex", null);
|
|
56836
57040
|
exports.InterpreterRuleContext = InterpreterRuleContext;
|
|
56837
57041
|
|
|
56838
|
-
},{"./Decorators":
|
|
57042
|
+
},{"./Decorators":297,"./ParserRuleContext":313}],305:[function(require,module,exports){
|
|
56839
57043
|
"use strict";
|
|
56840
57044
|
/*!
|
|
56841
57045
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57171,7 +57375,7 @@ __decorate([
|
|
|
57171
57375
|
], Lexer.prototype, "charPositionInLine", null);
|
|
57172
57376
|
exports.Lexer = Lexer;
|
|
57173
57377
|
|
|
57174
|
-
},{"./CommonTokenFactory":
|
|
57378
|
+
},{"./CommonTokenFactory":294,"./Decorators":297,"./IntStream":303,"./LexerNoViableAltException":307,"./Recognizer":317,"./Token":322,"./atn/LexerATNSimulator":355,"./misc/IntegerStack":408,"./misc/Interval":409}],306:[function(require,module,exports){
|
|
57175
57379
|
"use strict";
|
|
57176
57380
|
/*!
|
|
57177
57381
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57251,7 +57455,7 @@ LexerInterpreter = __decorate([
|
|
|
57251
57455
|
], LexerInterpreter);
|
|
57252
57456
|
exports.LexerInterpreter = LexerInterpreter;
|
|
57253
57457
|
|
|
57254
|
-
},{"./Decorators":
|
|
57458
|
+
},{"./Decorators":297,"./Lexer":305,"./atn/LexerATNSimulator":355}],307:[function(require,module,exports){
|
|
57255
57459
|
"use strict";
|
|
57256
57460
|
/*!
|
|
57257
57461
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57308,7 +57512,7 @@ LexerNoViableAltException = __decorate([
|
|
|
57308
57512
|
], LexerNoViableAltException);
|
|
57309
57513
|
exports.LexerNoViableAltException = LexerNoViableAltException;
|
|
57310
57514
|
|
|
57311
|
-
},{"./Decorators":
|
|
57515
|
+
},{"./Decorators":297,"./RecognitionException":316,"./misc/Interval":409,"./misc/Utils":416}],308:[function(require,module,exports){
|
|
57312
57516
|
"use strict";
|
|
57313
57517
|
/*!
|
|
57314
57518
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57518,7 +57722,7 @@ ListTokenSource = __decorate([
|
|
|
57518
57722
|
], ListTokenSource);
|
|
57519
57723
|
exports.ListTokenSource = ListTokenSource;
|
|
57520
57724
|
|
|
57521
|
-
},{"./CommonTokenFactory":
|
|
57725
|
+
},{"./CommonTokenFactory":294,"./Decorators":297,"./Token":322}],309:[function(require,module,exports){
|
|
57522
57726
|
"use strict";
|
|
57523
57727
|
/*!
|
|
57524
57728
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57573,7 +57777,7 @@ __decorate([
|
|
|
57573
57777
|
], NoViableAltException.prototype, "_startToken", void 0);
|
|
57574
57778
|
exports.NoViableAltException = NoViableAltException;
|
|
57575
57779
|
|
|
57576
|
-
},{"./Decorators":
|
|
57780
|
+
},{"./Decorators":297,"./Parser":310,"./RecognitionException":316}],310:[function(require,module,exports){
|
|
57577
57781
|
(function (process){(function (){
|
|
57578
57782
|
"use strict";
|
|
57579
57783
|
/*!
|
|
@@ -58419,7 +58623,7 @@ __decorate([
|
|
|
58419
58623
|
exports.Parser = Parser;
|
|
58420
58624
|
|
|
58421
58625
|
}).call(this)}).call(this,require('_process'))
|
|
58422
|
-
},{"./Decorators":
|
|
58626
|
+
},{"./Decorators":297,"./DefaultErrorStrategy":298,"./Lexer":305,"./ProxyParserErrorListener":315,"./Recognizer":317,"./Token":322,"./atn/ATNDeserializationOptions":333,"./atn/ATNDeserializer":334,"./atn/ParseInfo":370,"./atn/ParserATNSimulator":371,"./atn/ProfilingATNSimulator":380,"./misc/IntegerStack":408,"./misc/Utils":416,"./tree/ErrorNode":418,"./tree/TerminalNode":420,"./tree/pattern/ParseTreePatternMatcher":425,"_process":499}],311:[function(require,module,exports){
|
|
58423
58627
|
"use strict";
|
|
58424
58628
|
/*!
|
|
58425
58629
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58427,7 +58631,7 @@ exports.Parser = Parser;
|
|
|
58427
58631
|
*/
|
|
58428
58632
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58429
58633
|
|
|
58430
|
-
},{}],
|
|
58634
|
+
},{}],312:[function(require,module,exports){
|
|
58431
58635
|
"use strict";
|
|
58432
58636
|
/*!
|
|
58433
58637
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58835,7 +59039,7 @@ ParserInterpreter = __decorate([
|
|
|
58835
59039
|
], ParserInterpreter);
|
|
58836
59040
|
exports.ParserInterpreter = ParserInterpreter;
|
|
58837
59041
|
|
|
58838
|
-
},{"./Decorators":
|
|
59042
|
+
},{"./Decorators":297,"./FailedPredicateException":301,"./InputMismatchException":302,"./InterpreterRuleContext":304,"./Parser":310,"./RecognitionException":316,"./Token":322,"./atn/ATNState":336,"./atn/ATNStateType":337,"./atn/LoopEndState":367,"./atn/ParserATNSimulator":371,"./atn/StarLoopEntryState":389,"./misc/BitSet":404}],313:[function(require,module,exports){
|
|
58839
59043
|
"use strict";
|
|
58840
59044
|
/*!
|
|
58841
59045
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59136,7 +59340,7 @@ __decorate([
|
|
|
59136
59340
|
], ParserRuleContext.prototype, "sourceInterval", null);
|
|
59137
59341
|
exports.ParserRuleContext = ParserRuleContext;
|
|
59138
59342
|
|
|
59139
|
-
},{"./Decorators":
|
|
59343
|
+
},{"./Decorators":297,"./RuleContext":318,"./misc/Interval":409,"./tree/ErrorNode":418,"./tree/TerminalNode":420}],314:[function(require,module,exports){
|
|
59140
59344
|
"use strict";
|
|
59141
59345
|
/*!
|
|
59142
59346
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59186,7 +59390,7 @@ __decorate([
|
|
|
59186
59390
|
], ProxyErrorListener.prototype, "syntaxError", null);
|
|
59187
59391
|
exports.ProxyErrorListener = ProxyErrorListener;
|
|
59188
59392
|
|
|
59189
|
-
},{"./Decorators":
|
|
59393
|
+
},{"./Decorators":297}],315:[function(require,module,exports){
|
|
59190
59394
|
"use strict";
|
|
59191
59395
|
/*!
|
|
59192
59396
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59245,7 +59449,7 @@ __decorate([
|
|
|
59245
59449
|
], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
|
|
59246
59450
|
exports.ProxyParserErrorListener = ProxyParserErrorListener;
|
|
59247
59451
|
|
|
59248
|
-
},{"./Decorators":
|
|
59452
|
+
},{"./Decorators":297,"./ProxyErrorListener":314}],316:[function(require,module,exports){
|
|
59249
59453
|
"use strict";
|
|
59250
59454
|
/*!
|
|
59251
59455
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59350,7 +59554,7 @@ class RecognitionException extends Error {
|
|
|
59350
59554
|
}
|
|
59351
59555
|
exports.RecognitionException = RecognitionException;
|
|
59352
59556
|
|
|
59353
|
-
},{}],
|
|
59557
|
+
},{}],317:[function(require,module,exports){
|
|
59354
59558
|
"use strict";
|
|
59355
59559
|
/*!
|
|
59356
59560
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59569,7 +59773,7 @@ __decorate([
|
|
|
59569
59773
|
], Recognizer.prototype, "getErrorListeners", null);
|
|
59570
59774
|
exports.Recognizer = Recognizer;
|
|
59571
59775
|
|
|
59572
|
-
},{"./ConsoleErrorListener":
|
|
59776
|
+
},{"./ConsoleErrorListener":296,"./Decorators":297,"./ProxyErrorListener":314,"./Token":322,"./misc/Utils":416}],318:[function(require,module,exports){
|
|
59573
59777
|
"use strict";
|
|
59574
59778
|
/*!
|
|
59575
59779
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59786,7 +59990,7 @@ __decorate([
|
|
|
59786
59990
|
], RuleContext.prototype, "toStringTree", null);
|
|
59787
59991
|
exports.RuleContext = RuleContext;
|
|
59788
59992
|
|
|
59789
|
-
},{"./Decorators":
|
|
59993
|
+
},{"./Decorators":297,"./ParserRuleContext":313,"./Recognizer":317,"./atn/ATN":330,"./misc/Interval":409,"./tree/RuleNode":419,"./tree/Trees":421}],319:[function(require,module,exports){
|
|
59790
59994
|
"use strict";
|
|
59791
59995
|
/*!
|
|
59792
59996
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59837,7 +60041,7 @@ __decorate([
|
|
|
59837
60041
|
], RuleContextWithAltNum.prototype, "altNumber", null);
|
|
59838
60042
|
exports.RuleContextWithAltNum = RuleContextWithAltNum;
|
|
59839
60043
|
|
|
59840
|
-
},{"./Decorators":
|
|
60044
|
+
},{"./Decorators":297,"./ParserRuleContext":313,"./atn/ATN":330}],320:[function(require,module,exports){
|
|
59841
60045
|
"use strict";
|
|
59842
60046
|
/*!
|
|
59843
60047
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59860,7 +60064,7 @@ function RuleDependency(dependency) {
|
|
|
59860
60064
|
}
|
|
59861
60065
|
exports.RuleDependency = RuleDependency;
|
|
59862
60066
|
|
|
59863
|
-
},{}],
|
|
60067
|
+
},{}],321:[function(require,module,exports){
|
|
59864
60068
|
"use strict";
|
|
59865
60069
|
/*!
|
|
59866
60070
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59879,7 +60083,7 @@ function RuleVersion(version) {
|
|
|
59879
60083
|
}
|
|
59880
60084
|
exports.RuleVersion = RuleVersion;
|
|
59881
60085
|
|
|
59882
|
-
},{}],
|
|
60086
|
+
},{}],322:[function(require,module,exports){
|
|
59883
60087
|
"use strict";
|
|
59884
60088
|
/*!
|
|
59885
60089
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59919,7 +60123,7 @@ var Token;
|
|
|
59919
60123
|
Token.MIN_USER_CHANNEL_VALUE = 2;
|
|
59920
60124
|
})(Token = exports.Token || (exports.Token = {}));
|
|
59921
60125
|
|
|
59922
|
-
},{"./IntStream":
|
|
60126
|
+
},{"./IntStream":303}],323:[function(require,module,exports){
|
|
59923
60127
|
"use strict";
|
|
59924
60128
|
/*!
|
|
59925
60129
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59927,7 +60131,7 @@ var Token;
|
|
|
59927
60131
|
*/
|
|
59928
60132
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
59929
60133
|
|
|
59930
|
-
},{}],
|
|
60134
|
+
},{}],324:[function(require,module,exports){
|
|
59931
60135
|
"use strict";
|
|
59932
60136
|
/*!
|
|
59933
60137
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59935,7 +60139,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
59935
60139
|
*/
|
|
59936
60140
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
59937
60141
|
|
|
59938
|
-
},{}],
|
|
60142
|
+
},{}],325:[function(require,module,exports){
|
|
59939
60143
|
"use strict";
|
|
59940
60144
|
/*!
|
|
59941
60145
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59943,7 +60147,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
59943
60147
|
*/
|
|
59944
60148
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
59945
60149
|
|
|
59946
|
-
},{}],
|
|
60150
|
+
},{}],326:[function(require,module,exports){
|
|
59947
60151
|
"use strict";
|
|
59948
60152
|
/*!
|
|
59949
60153
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60451,7 +60655,7 @@ __decorate([
|
|
|
60451
60655
|
Decorators_1.Override
|
|
60452
60656
|
], ReplaceOp.prototype, "toString", null);
|
|
60453
60657
|
|
|
60454
|
-
},{"./Decorators":
|
|
60658
|
+
},{"./Decorators":297,"./Token":322,"./misc/Interval":409}],327:[function(require,module,exports){
|
|
60455
60659
|
"use strict";
|
|
60456
60660
|
/*!
|
|
60457
60661
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60459,7 +60663,7 @@ __decorate([
|
|
|
60459
60663
|
*/
|
|
60460
60664
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
60461
60665
|
|
|
60462
|
-
},{}],
|
|
60666
|
+
},{}],328:[function(require,module,exports){
|
|
60463
60667
|
"use strict";
|
|
60464
60668
|
/*!
|
|
60465
60669
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60579,7 +60783,7 @@ __decorate([
|
|
|
60579
60783
|
], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
|
|
60580
60784
|
exports.VocabularyImpl = VocabularyImpl;
|
|
60581
60785
|
|
|
60582
|
-
},{"./Decorators":
|
|
60786
|
+
},{"./Decorators":297,"./Token":322}],329:[function(require,module,exports){
|
|
60583
60787
|
"use strict";
|
|
60584
60788
|
/*!
|
|
60585
60789
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60587,7 +60791,7 @@ exports.VocabularyImpl = VocabularyImpl;
|
|
|
60587
60791
|
*/
|
|
60588
60792
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
60589
60793
|
|
|
60590
|
-
},{}],
|
|
60794
|
+
},{}],330:[function(require,module,exports){
|
|
60591
60795
|
"use strict";
|
|
60592
60796
|
/*!
|
|
60593
60797
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60809,7 +61013,7 @@ exports.ATN = ATN;
|
|
|
60809
61013
|
})(ATN = exports.ATN || (exports.ATN = {}));
|
|
60810
61014
|
exports.ATN = ATN;
|
|
60811
61015
|
|
|
60812
|
-
},{"../Decorators":
|
|
61016
|
+
},{"../Decorators":297,"../Token":322,"../dfa/DFA":395,"../misc/Array2DHashMap":400,"../misc/IntervalSet":410,"../misc/ObjectEqualityComparator":413,"./InvalidState":353,"./LL1Analyzer":354,"./PredictionContext":377,"assert":440}],331:[function(require,module,exports){
|
|
60813
61017
|
"use strict";
|
|
60814
61018
|
/*!
|
|
60815
61019
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61334,7 +61538,7 @@ ActionSemanticContextATNConfig = __decorate([
|
|
|
61334
61538
|
__param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
|
|
61335
61539
|
], ActionSemanticContextATNConfig);
|
|
61336
61540
|
|
|
61337
|
-
},{"../Decorators":
|
|
61541
|
+
},{"../Decorators":297,"../misc/Array2DHashMap":400,"../misc/MurmurHash":412,"../misc/ObjectEqualityComparator":413,"./DecisionState":350,"./PredictionContext":377,"./SemanticContext":385,"assert":440}],332:[function(require,module,exports){
|
|
61338
61542
|
"use strict";
|
|
61339
61543
|
/*!
|
|
61340
61544
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61781,7 +61985,7 @@ __decorate([
|
|
|
61781
61985
|
], ATNConfigSet.prototype, "hashCode", null);
|
|
61782
61986
|
exports.ATNConfigSet = ATNConfigSet;
|
|
61783
61987
|
|
|
61784
|
-
},{"../Decorators":
|
|
61988
|
+
},{"../Decorators":297,"../misc/Array2DHashMap":400,"../misc/Array2DHashSet":401,"../misc/ArrayEqualityComparator":402,"../misc/BitSet":404,"../misc/ObjectEqualityComparator":413,"../misc/Utils":416,"./ATN":330,"./ATNConfig":331,"./PredictionContext":377,"./PredictionContextCache":378,"./SemanticContext":385,"assert":440}],333:[function(require,module,exports){
|
|
61785
61989
|
"use strict";
|
|
61786
61990
|
/*!
|
|
61787
61991
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61860,7 +62064,7 @@ __decorate([
|
|
|
61860
62064
|
], ATNDeserializationOptions, "defaultOptions", null);
|
|
61861
62065
|
exports.ATNDeserializationOptions = ATNDeserializationOptions;
|
|
61862
62066
|
|
|
61863
|
-
},{"../Decorators":
|
|
62067
|
+
},{"../Decorators":297}],334:[function(require,module,exports){
|
|
61864
62068
|
"use strict";
|
|
61865
62069
|
/*!
|
|
61866
62070
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62947,7 +63151,7 @@ __decorate([
|
|
|
62947
63151
|
], ATNDeserializer.prototype, "edgeFactory", null);
|
|
62948
63152
|
exports.ATNDeserializer = ATNDeserializer;
|
|
62949
63153
|
|
|
62950
|
-
},{"../Decorators":
|
|
63154
|
+
},{"../Decorators":297,"../Token":322,"../dfa/DFA":395,"../misc/Array2DHashSet":401,"../misc/BitSet":404,"../misc/IntervalSet":410,"../misc/UUID":415,"./ATN":330,"./ATNDeserializationOptions":333,"./ATNStateType":337,"./ActionTransition":339,"./AtomTransition":341,"./BasicBlockStartState":342,"./BasicState":343,"./BlockEndState":344,"./BlockStartState":345,"./DecisionState":350,"./EpsilonTransition":351,"./InvalidState":353,"./LexerChannelAction":357,"./LexerCustomAction":358,"./LexerModeAction":360,"./LexerMoreAction":361,"./LexerPopModeAction":362,"./LexerPushModeAction":363,"./LexerSkipAction":364,"./LexerTypeAction":365,"./LoopEndState":367,"./NotSetTransition":368,"./ParserATNSimulator":371,"./PlusBlockStartState":372,"./PlusLoopbackState":373,"./PrecedencePredicateTransition":374,"./PredicateTransition":376,"./RangeTransition":381,"./RuleStartState":382,"./RuleStopState":383,"./RuleTransition":384,"./SetTransition":386,"./StarBlockStartState":388,"./StarLoopEntryState":389,"./StarLoopbackState":390,"./TokensStartState":391,"./WildcardTransition":393}],335:[function(require,module,exports){
|
|
62951
63155
|
"use strict";
|
|
62952
63156
|
/*!
|
|
62953
63157
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63011,7 +63215,7 @@ exports.ATNSimulator = ATNSimulator;
|
|
|
63011
63215
|
})(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
|
|
63012
63216
|
exports.ATNSimulator = ATNSimulator;
|
|
63013
63217
|
|
|
63014
|
-
},{"../Decorators":
|
|
63218
|
+
},{"../Decorators":297,"../dfa/DFAState":397,"./ATNConfigSet":332,"./PredictionContext":377}],336:[function(require,module,exports){
|
|
63015
63219
|
"use strict";
|
|
63016
63220
|
/*!
|
|
63017
63221
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63198,7 +63402,7 @@ exports.ATNState = ATNState;
|
|
|
63198
63402
|
ATNState.INVALID_STATE_NUMBER = -1;
|
|
63199
63403
|
})(ATNState = exports.ATNState || (exports.ATNState = {}));
|
|
63200
63404
|
|
|
63201
|
-
},{"../Decorators":
|
|
63405
|
+
},{"../Decorators":297}],337:[function(require,module,exports){
|
|
63202
63406
|
"use strict";
|
|
63203
63407
|
/*!
|
|
63204
63408
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63224,7 +63428,7 @@ var ATNStateType;
|
|
|
63224
63428
|
ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
|
|
63225
63429
|
})(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
|
|
63226
63430
|
|
|
63227
|
-
},{}],
|
|
63431
|
+
},{}],338:[function(require,module,exports){
|
|
63228
63432
|
"use strict";
|
|
63229
63433
|
/*!
|
|
63230
63434
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63244,7 +63448,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
|
|
|
63244
63448
|
}
|
|
63245
63449
|
exports.AbstractPredicateTransition = AbstractPredicateTransition;
|
|
63246
63450
|
|
|
63247
|
-
},{"./Transition":
|
|
63451
|
+
},{"./Transition":392}],339:[function(require,module,exports){
|
|
63248
63452
|
"use strict";
|
|
63249
63453
|
/*!
|
|
63250
63454
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63300,7 +63504,7 @@ ActionTransition = __decorate([
|
|
|
63300
63504
|
], ActionTransition);
|
|
63301
63505
|
exports.ActionTransition = ActionTransition;
|
|
63302
63506
|
|
|
63303
|
-
},{"../Decorators":
|
|
63507
|
+
},{"../Decorators":297,"./Transition":392}],340:[function(require,module,exports){
|
|
63304
63508
|
"use strict";
|
|
63305
63509
|
/*!
|
|
63306
63510
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63387,7 +63591,7 @@ AmbiguityInfo = __decorate([
|
|
|
63387
63591
|
], AmbiguityInfo);
|
|
63388
63592
|
exports.AmbiguityInfo = AmbiguityInfo;
|
|
63389
63593
|
|
|
63390
|
-
},{"../Decorators":
|
|
63594
|
+
},{"../Decorators":297,"./DecisionEventInfo":348}],341:[function(require,module,exports){
|
|
63391
63595
|
"use strict";
|
|
63392
63596
|
/*!
|
|
63393
63597
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63445,7 +63649,7 @@ AtomTransition = __decorate([
|
|
|
63445
63649
|
], AtomTransition);
|
|
63446
63650
|
exports.AtomTransition = AtomTransition;
|
|
63447
63651
|
|
|
63448
|
-
},{"../Decorators":
|
|
63652
|
+
},{"../Decorators":297,"../misc/IntervalSet":410,"./Transition":392}],342:[function(require,module,exports){
|
|
63449
63653
|
"use strict";
|
|
63450
63654
|
/*!
|
|
63451
63655
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63477,7 +63681,7 @@ __decorate([
|
|
|
63477
63681
|
], BasicBlockStartState.prototype, "stateType", null);
|
|
63478
63682
|
exports.BasicBlockStartState = BasicBlockStartState;
|
|
63479
63683
|
|
|
63480
|
-
},{"../Decorators":
|
|
63684
|
+
},{"../Decorators":297,"./ATNStateType":337,"./BlockStartState":345}],343:[function(require,module,exports){
|
|
63481
63685
|
"use strict";
|
|
63482
63686
|
/*!
|
|
63483
63687
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63509,7 +63713,7 @@ __decorate([
|
|
|
63509
63713
|
], BasicState.prototype, "stateType", null);
|
|
63510
63714
|
exports.BasicState = BasicState;
|
|
63511
63715
|
|
|
63512
|
-
},{"../Decorators":
|
|
63716
|
+
},{"../Decorators":297,"./ATNState":336,"./ATNStateType":337}],344:[function(require,module,exports){
|
|
63513
63717
|
"use strict";
|
|
63514
63718
|
/*!
|
|
63515
63719
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63538,7 +63742,7 @@ __decorate([
|
|
|
63538
63742
|
], BlockEndState.prototype, "stateType", null);
|
|
63539
63743
|
exports.BlockEndState = BlockEndState;
|
|
63540
63744
|
|
|
63541
|
-
},{"../Decorators":
|
|
63745
|
+
},{"../Decorators":297,"./ATNState":336,"./ATNStateType":337}],345:[function(require,module,exports){
|
|
63542
63746
|
"use strict";
|
|
63543
63747
|
/*!
|
|
63544
63748
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63552,7 +63756,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
|
|
|
63552
63756
|
}
|
|
63553
63757
|
exports.BlockStartState = BlockStartState;
|
|
63554
63758
|
|
|
63555
|
-
},{"./DecisionState":
|
|
63759
|
+
},{"./DecisionState":350}],346:[function(require,module,exports){
|
|
63556
63760
|
"use strict";
|
|
63557
63761
|
/*!
|
|
63558
63762
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63622,7 +63826,7 @@ __decorate([
|
|
|
63622
63826
|
], ConflictInfo.prototype, "hashCode", null);
|
|
63623
63827
|
exports.ConflictInfo = ConflictInfo;
|
|
63624
63828
|
|
|
63625
|
-
},{"../Decorators":
|
|
63829
|
+
},{"../Decorators":297,"../misc/Utils":416}],347:[function(require,module,exports){
|
|
63626
63830
|
"use strict";
|
|
63627
63831
|
/*!
|
|
63628
63832
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63682,7 +63886,7 @@ ContextSensitivityInfo = __decorate([
|
|
|
63682
63886
|
], ContextSensitivityInfo);
|
|
63683
63887
|
exports.ContextSensitivityInfo = ContextSensitivityInfo;
|
|
63684
63888
|
|
|
63685
|
-
},{"../Decorators":
|
|
63889
|
+
},{"../Decorators":297,"./DecisionEventInfo":348}],348:[function(require,module,exports){
|
|
63686
63890
|
"use strict";
|
|
63687
63891
|
/*!
|
|
63688
63892
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63734,7 +63938,7 @@ DecisionEventInfo = __decorate([
|
|
|
63734
63938
|
], DecisionEventInfo);
|
|
63735
63939
|
exports.DecisionEventInfo = DecisionEventInfo;
|
|
63736
63940
|
|
|
63737
|
-
},{"../Decorators":
|
|
63941
|
+
},{"../Decorators":297}],349:[function(require,module,exports){
|
|
63738
63942
|
"use strict";
|
|
63739
63943
|
/*!
|
|
63740
63944
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63947,7 +64151,7 @@ __decorate([
|
|
|
63947
64151
|
], DecisionInfo.prototype, "toString", null);
|
|
63948
64152
|
exports.DecisionInfo = DecisionInfo;
|
|
63949
64153
|
|
|
63950
|
-
},{"../Decorators":
|
|
64154
|
+
},{"../Decorators":297}],350:[function(require,module,exports){
|
|
63951
64155
|
"use strict";
|
|
63952
64156
|
/*!
|
|
63953
64157
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63967,7 +64171,7 @@ class DecisionState extends ATNState_1.ATNState {
|
|
|
63967
64171
|
}
|
|
63968
64172
|
exports.DecisionState = DecisionState;
|
|
63969
64173
|
|
|
63970
|
-
},{"./ATNState":
|
|
64174
|
+
},{"./ATNState":336}],351:[function(require,module,exports){
|
|
63971
64175
|
"use strict";
|
|
63972
64176
|
/*!
|
|
63973
64177
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64033,7 +64237,7 @@ EpsilonTransition = __decorate([
|
|
|
64033
64237
|
], EpsilonTransition);
|
|
64034
64238
|
exports.EpsilonTransition = EpsilonTransition;
|
|
64035
64239
|
|
|
64036
|
-
},{"../Decorators":
|
|
64240
|
+
},{"../Decorators":297,"./Transition":392}],352:[function(require,module,exports){
|
|
64037
64241
|
"use strict";
|
|
64038
64242
|
/*!
|
|
64039
64243
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64086,7 +64290,7 @@ ErrorInfo = __decorate([
|
|
|
64086
64290
|
], ErrorInfo);
|
|
64087
64291
|
exports.ErrorInfo = ErrorInfo;
|
|
64088
64292
|
|
|
64089
|
-
},{"../Decorators":
|
|
64293
|
+
},{"../Decorators":297,"./DecisionEventInfo":348}],353:[function(require,module,exports){
|
|
64090
64294
|
"use strict";
|
|
64091
64295
|
/*!
|
|
64092
64296
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64117,7 +64321,7 @@ __decorate([
|
|
|
64117
64321
|
], InvalidState.prototype, "stateType", null);
|
|
64118
64322
|
exports.InvalidState = InvalidState;
|
|
64119
64323
|
|
|
64120
|
-
},{"../Decorators":
|
|
64324
|
+
},{"../Decorators":297,"./ATNStateType":337,"./BasicState":343}],354:[function(require,module,exports){
|
|
64121
64325
|
"use strict";
|
|
64122
64326
|
/*!
|
|
64123
64327
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64339,7 +64543,7 @@ LL1Analyzer = __decorate([
|
|
|
64339
64543
|
], LL1Analyzer);
|
|
64340
64544
|
exports.LL1Analyzer = LL1Analyzer;
|
|
64341
64545
|
|
|
64342
|
-
},{"../Decorators":
|
|
64546
|
+
},{"../Decorators":297,"../Token":322,"../misc/Array2DHashSet":401,"../misc/BitSet":404,"../misc/IntervalSet":410,"../misc/ObjectEqualityComparator":413,"./ATNConfig":331,"./AbstractPredicateTransition":338,"./NotSetTransition":368,"./PredictionContext":377,"./RuleStopState":383,"./RuleTransition":384,"./WildcardTransition":393}],355:[function(require,module,exports){
|
|
64343
64547
|
"use strict";
|
|
64344
64548
|
/*!
|
|
64345
64549
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65056,7 +65260,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
|
|
|
65056
65260
|
})(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
|
|
65057
65261
|
exports.LexerATNSimulator = LexerATNSimulator;
|
|
65058
65262
|
|
|
65059
|
-
},{"../Decorators":
|
|
65263
|
+
},{"../Decorators":297,"../IntStream":303,"../Lexer":305,"../LexerNoViableAltException":307,"../Token":322,"../dfa/AcceptStateInfo":394,"../dfa/DFAState":397,"../misc/Interval":409,"./ATN":330,"./ATNConfig":331,"./ATNConfigSet":332,"./ATNSimulator":335,"./LexerActionExecutor":356,"./OrderedATNConfigSet":369,"./PredictionContext":377,"./RuleStopState":383,"assert":440}],356:[function(require,module,exports){
|
|
65060
65264
|
"use strict";
|
|
65061
65265
|
/*!
|
|
65062
65266
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65257,7 +65461,7 @@ LexerActionExecutor = __decorate([
|
|
|
65257
65461
|
], LexerActionExecutor);
|
|
65258
65462
|
exports.LexerActionExecutor = LexerActionExecutor;
|
|
65259
65463
|
|
|
65260
|
-
},{"../Decorators":
|
|
65464
|
+
},{"../Decorators":297,"../misc/ArrayEqualityComparator":402,"../misc/MurmurHash":412,"./LexerIndexedCustomAction":359}],357:[function(require,module,exports){
|
|
65261
65465
|
"use strict";
|
|
65262
65466
|
/*!
|
|
65263
65467
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65362,7 +65566,7 @@ __decorate([
|
|
|
65362
65566
|
], LexerChannelAction.prototype, "toString", null);
|
|
65363
65567
|
exports.LexerChannelAction = LexerChannelAction;
|
|
65364
65568
|
|
|
65365
|
-
},{"../Decorators":
|
|
65569
|
+
},{"../Decorators":297,"../misc/MurmurHash":412}],358:[function(require,module,exports){
|
|
65366
65570
|
"use strict";
|
|
65367
65571
|
/*!
|
|
65368
65572
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65491,7 +65695,7 @@ __decorate([
|
|
|
65491
65695
|
], LexerCustomAction.prototype, "equals", null);
|
|
65492
65696
|
exports.LexerCustomAction = LexerCustomAction;
|
|
65493
65697
|
|
|
65494
|
-
},{"../Decorators":
|
|
65698
|
+
},{"../Decorators":297,"../misc/MurmurHash":412}],359:[function(require,module,exports){
|
|
65495
65699
|
"use strict";
|
|
65496
65700
|
/*!
|
|
65497
65701
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65626,7 +65830,7 @@ LexerIndexedCustomAction = __decorate([
|
|
|
65626
65830
|
], LexerIndexedCustomAction);
|
|
65627
65831
|
exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
|
|
65628
65832
|
|
|
65629
|
-
},{"../Decorators":
|
|
65833
|
+
},{"../Decorators":297,"../misc/MurmurHash":412}],360:[function(require,module,exports){
|
|
65630
65834
|
"use strict";
|
|
65631
65835
|
/*!
|
|
65632
65836
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65731,7 +65935,7 @@ __decorate([
|
|
|
65731
65935
|
], LexerModeAction.prototype, "toString", null);
|
|
65732
65936
|
exports.LexerModeAction = LexerModeAction;
|
|
65733
65937
|
|
|
65734
|
-
},{"../Decorators":
|
|
65938
|
+
},{"../Decorators":297,"../misc/MurmurHash":412}],361:[function(require,module,exports){
|
|
65735
65939
|
"use strict";
|
|
65736
65940
|
/*!
|
|
65737
65941
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65827,7 +66031,7 @@ exports.LexerMoreAction = LexerMoreAction;
|
|
|
65827
66031
|
LexerMoreAction.INSTANCE = new LexerMoreAction();
|
|
65828
66032
|
})(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
|
|
65829
66033
|
|
|
65830
|
-
},{"../Decorators":
|
|
66034
|
+
},{"../Decorators":297,"../misc/MurmurHash":412}],362:[function(require,module,exports){
|
|
65831
66035
|
"use strict";
|
|
65832
66036
|
/*!
|
|
65833
66037
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65923,7 +66127,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
|
|
|
65923
66127
|
LexerPopModeAction.INSTANCE = new LexerPopModeAction();
|
|
65924
66128
|
})(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
|
|
65925
66129
|
|
|
65926
|
-
},{"../Decorators":
|
|
66130
|
+
},{"../Decorators":297,"../misc/MurmurHash":412}],363:[function(require,module,exports){
|
|
65927
66131
|
"use strict";
|
|
65928
66132
|
/*!
|
|
65929
66133
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66028,7 +66232,7 @@ __decorate([
|
|
|
66028
66232
|
], LexerPushModeAction.prototype, "toString", null);
|
|
66029
66233
|
exports.LexerPushModeAction = LexerPushModeAction;
|
|
66030
66234
|
|
|
66031
|
-
},{"../Decorators":
|
|
66235
|
+
},{"../Decorators":297,"../misc/MurmurHash":412}],364:[function(require,module,exports){
|
|
66032
66236
|
"use strict";
|
|
66033
66237
|
/*!
|
|
66034
66238
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66124,7 +66328,7 @@ exports.LexerSkipAction = LexerSkipAction;
|
|
|
66124
66328
|
LexerSkipAction.INSTANCE = new LexerSkipAction();
|
|
66125
66329
|
})(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
|
|
66126
66330
|
|
|
66127
|
-
},{"../Decorators":
|
|
66331
|
+
},{"../Decorators":297,"../misc/MurmurHash":412}],365:[function(require,module,exports){
|
|
66128
66332
|
"use strict";
|
|
66129
66333
|
/*!
|
|
66130
66334
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66228,7 +66432,7 @@ __decorate([
|
|
|
66228
66432
|
], LexerTypeAction.prototype, "toString", null);
|
|
66229
66433
|
exports.LexerTypeAction = LexerTypeAction;
|
|
66230
66434
|
|
|
66231
|
-
},{"../Decorators":
|
|
66435
|
+
},{"../Decorators":297,"../misc/MurmurHash":412}],366:[function(require,module,exports){
|
|
66232
66436
|
"use strict";
|
|
66233
66437
|
/*!
|
|
66234
66438
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66280,7 +66484,7 @@ LookaheadEventInfo = __decorate([
|
|
|
66280
66484
|
], LookaheadEventInfo);
|
|
66281
66485
|
exports.LookaheadEventInfo = LookaheadEventInfo;
|
|
66282
66486
|
|
|
66283
|
-
},{"../Decorators":
|
|
66487
|
+
},{"../Decorators":297,"./DecisionEventInfo":348}],367:[function(require,module,exports){
|
|
66284
66488
|
"use strict";
|
|
66285
66489
|
/*!
|
|
66286
66490
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66309,7 +66513,7 @@ __decorate([
|
|
|
66309
66513
|
], LoopEndState.prototype, "stateType", null);
|
|
66310
66514
|
exports.LoopEndState = LoopEndState;
|
|
66311
66515
|
|
|
66312
|
-
},{"../Decorators":
|
|
66516
|
+
},{"../Decorators":297,"./ATNState":336,"./ATNStateType":337}],368:[function(require,module,exports){
|
|
66313
66517
|
"use strict";
|
|
66314
66518
|
/*!
|
|
66315
66519
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66358,7 +66562,7 @@ NotSetTransition = __decorate([
|
|
|
66358
66562
|
], NotSetTransition);
|
|
66359
66563
|
exports.NotSetTransition = NotSetTransition;
|
|
66360
66564
|
|
|
66361
|
-
},{"../Decorators":
|
|
66565
|
+
},{"../Decorators":297,"./SetTransition":386}],369:[function(require,module,exports){
|
|
66362
66566
|
"use strict";
|
|
66363
66567
|
/*!
|
|
66364
66568
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66413,7 +66617,7 @@ __decorate([
|
|
|
66413
66617
|
], OrderedATNConfigSet.prototype, "canMerge", null);
|
|
66414
66618
|
exports.OrderedATNConfigSet = OrderedATNConfigSet;
|
|
66415
66619
|
|
|
66416
|
-
},{"../Decorators":
|
|
66620
|
+
},{"../Decorators":297,"./ATNConfigSet":332}],370:[function(require,module,exports){
|
|
66417
66621
|
"use strict";
|
|
66418
66622
|
/*!
|
|
66419
66623
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66575,7 +66779,7 @@ ParseInfo = __decorate([
|
|
|
66575
66779
|
], ParseInfo);
|
|
66576
66780
|
exports.ParseInfo = ParseInfo;
|
|
66577
66781
|
|
|
66578
|
-
},{"../Decorators":
|
|
66782
|
+
},{"../Decorators":297}],371:[function(require,module,exports){
|
|
66579
66783
|
"use strict";
|
|
66580
66784
|
/*!
|
|
66581
66785
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68848,7 +69052,7 @@ ParserATNSimulator = __decorate([
|
|
|
68848
69052
|
], ParserATNSimulator);
|
|
68849
69053
|
exports.ParserATNSimulator = ParserATNSimulator;
|
|
68850
69054
|
|
|
68851
|
-
},{"../Decorators":
|
|
69055
|
+
},{"../Decorators":297,"../IntStream":303,"../NoViableAltException":309,"../ParserRuleContext":313,"../Token":322,"../VocabularyImpl":328,"../dfa/AcceptStateInfo":394,"../dfa/DFAState":397,"../misc/Array2DHashSet":401,"../misc/Arrays":403,"../misc/BitSet":404,"../misc/IntegerList":407,"../misc/Interval":409,"../misc/ObjectEqualityComparator":413,"./ATN":330,"./ATNConfig":331,"./ATNConfigSet":332,"./ATNSimulator":335,"./ATNStateType":337,"./ActionTransition":339,"./AtomTransition":341,"./ConflictInfo":346,"./DecisionState":350,"./NotSetTransition":368,"./PredictionContext":377,"./PredictionContextCache":378,"./PredictionMode":379,"./RuleStopState":383,"./RuleTransition":384,"./SemanticContext":385,"./SetTransition":386,"./SimulatorState":387,"assert":440}],372:[function(require,module,exports){
|
|
68852
69056
|
"use strict";
|
|
68853
69057
|
/*!
|
|
68854
69058
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68881,7 +69085,7 @@ __decorate([
|
|
|
68881
69085
|
], PlusBlockStartState.prototype, "stateType", null);
|
|
68882
69086
|
exports.PlusBlockStartState = PlusBlockStartState;
|
|
68883
69087
|
|
|
68884
|
-
},{"../Decorators":
|
|
69088
|
+
},{"../Decorators":297,"./ATNStateType":337,"./BlockStartState":345}],373:[function(require,module,exports){
|
|
68885
69089
|
"use strict";
|
|
68886
69090
|
/*!
|
|
68887
69091
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68912,7 +69116,7 @@ __decorate([
|
|
|
68912
69116
|
], PlusLoopbackState.prototype, "stateType", null);
|
|
68913
69117
|
exports.PlusLoopbackState = PlusLoopbackState;
|
|
68914
69118
|
|
|
68915
|
-
},{"../Decorators":
|
|
69119
|
+
},{"../Decorators":297,"./ATNStateType":337,"./DecisionState":350}],374:[function(require,module,exports){
|
|
68916
69120
|
"use strict";
|
|
68917
69121
|
/*!
|
|
68918
69122
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68975,7 +69179,7 @@ PrecedencePredicateTransition = __decorate([
|
|
|
68975
69179
|
], PrecedencePredicateTransition);
|
|
68976
69180
|
exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
|
|
68977
69181
|
|
|
68978
|
-
},{"../Decorators":
|
|
69182
|
+
},{"../Decorators":297,"./AbstractPredicateTransition":338,"./SemanticContext":385}],375:[function(require,module,exports){
|
|
68979
69183
|
"use strict";
|
|
68980
69184
|
/*!
|
|
68981
69185
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69038,7 +69242,7 @@ PredicateEvalInfo = __decorate([
|
|
|
69038
69242
|
], PredicateEvalInfo);
|
|
69039
69243
|
exports.PredicateEvalInfo = PredicateEvalInfo;
|
|
69040
69244
|
|
|
69041
|
-
},{"../Decorators":
|
|
69245
|
+
},{"../Decorators":297,"./DecisionEventInfo":348}],376:[function(require,module,exports){
|
|
69042
69246
|
"use strict";
|
|
69043
69247
|
/*!
|
|
69044
69248
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69104,7 +69308,7 @@ PredicateTransition = __decorate([
|
|
|
69104
69308
|
], PredicateTransition);
|
|
69105
69309
|
exports.PredicateTransition = PredicateTransition;
|
|
69106
69310
|
|
|
69107
|
-
},{"../Decorators":
|
|
69311
|
+
},{"../Decorators":297,"./AbstractPredicateTransition":338,"./SemanticContext":385}],377:[function(require,module,exports){
|
|
69108
69312
|
"use strict";
|
|
69109
69313
|
/*!
|
|
69110
69314
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69795,7 +69999,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
|
|
|
69795
69999
|
PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
|
|
69796
70000
|
})(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
|
|
69797
70001
|
|
|
69798
|
-
},{"../Decorators":
|
|
70002
|
+
},{"../Decorators":297,"../misc/Array2DHashMap":400,"../misc/Array2DHashSet":401,"../misc/Arrays":403,"../misc/MurmurHash":412,"./PredictionContextCache":378,"assert":440}],378:[function(require,module,exports){
|
|
69799
70003
|
"use strict";
|
|
69800
70004
|
/*!
|
|
69801
70005
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69936,7 +70140,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
|
|
|
69936
70140
|
PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
|
|
69937
70141
|
})(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
|
|
69938
70142
|
|
|
69939
|
-
},{"../Decorators":
|
|
70143
|
+
},{"../Decorators":297,"../misc/Array2DHashMap":400,"../misc/ObjectEqualityComparator":413,"./PredictionContext":377,"assert":440}],379:[function(require,module,exports){
|
|
69940
70144
|
"use strict";
|
|
69941
70145
|
/*!
|
|
69942
70146
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70097,7 +70301,7 @@ var PredictionMode;
|
|
|
70097
70301
|
PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
|
|
70098
70302
|
})(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
|
|
70099
70303
|
|
|
70100
|
-
},{"../Decorators":
|
|
70304
|
+
},{"../Decorators":297,"../misc/Array2DHashMap":400,"../misc/MurmurHash":412,"./RuleStopState":383}],380:[function(require,module,exports){
|
|
70101
70305
|
(function (process){(function (){
|
|
70102
70306
|
"use strict";
|
|
70103
70307
|
/*!
|
|
@@ -70366,7 +70570,7 @@ __decorate([
|
|
|
70366
70570
|
exports.ProfilingATNSimulator = ProfilingATNSimulator;
|
|
70367
70571
|
|
|
70368
70572
|
}).call(this)}).call(this,require('_process'))
|
|
70369
|
-
},{"../Decorators":
|
|
70573
|
+
},{"../Decorators":297,"./ATN":330,"./ATNSimulator":335,"./AmbiguityInfo":340,"./ContextSensitivityInfo":347,"./DecisionInfo":349,"./ErrorInfo":352,"./LookaheadEventInfo":366,"./ParserATNSimulator":371,"./PredicateEvalInfo":375,"./SemanticContext":385,"./SimulatorState":387,"_process":499}],381:[function(require,module,exports){
|
|
70370
70574
|
"use strict";
|
|
70371
70575
|
/*!
|
|
70372
70576
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70424,7 +70628,7 @@ RangeTransition = __decorate([
|
|
|
70424
70628
|
], RangeTransition);
|
|
70425
70629
|
exports.RangeTransition = RangeTransition;
|
|
70426
70630
|
|
|
70427
|
-
},{"../Decorators":
|
|
70631
|
+
},{"../Decorators":297,"../misc/IntervalSet":410,"./Transition":392}],382:[function(require,module,exports){
|
|
70428
70632
|
"use strict";
|
|
70429
70633
|
/*!
|
|
70430
70634
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70457,7 +70661,7 @@ __decorate([
|
|
|
70457
70661
|
], RuleStartState.prototype, "stateType", null);
|
|
70458
70662
|
exports.RuleStartState = RuleStartState;
|
|
70459
70663
|
|
|
70460
|
-
},{"../Decorators":
|
|
70664
|
+
},{"../Decorators":297,"./ATNState":336,"./ATNStateType":337}],383:[function(require,module,exports){
|
|
70461
70665
|
"use strict";
|
|
70462
70666
|
/*!
|
|
70463
70667
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70496,7 +70700,7 @@ __decorate([
|
|
|
70496
70700
|
], RuleStopState.prototype, "stateType", null);
|
|
70497
70701
|
exports.RuleStopState = RuleStopState;
|
|
70498
70702
|
|
|
70499
|
-
},{"../Decorators":
|
|
70703
|
+
},{"../Decorators":297,"./ATNState":336,"./ATNStateType":337}],384:[function(require,module,exports){
|
|
70500
70704
|
"use strict";
|
|
70501
70705
|
/*!
|
|
70502
70706
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70552,7 +70756,7 @@ RuleTransition = __decorate([
|
|
|
70552
70756
|
], RuleTransition);
|
|
70553
70757
|
exports.RuleTransition = RuleTransition;
|
|
70554
70758
|
|
|
70555
|
-
},{"../Decorators":
|
|
70759
|
+
},{"../Decorators":297,"./Transition":392}],385:[function(require,module,exports){
|
|
70556
70760
|
"use strict";
|
|
70557
70761
|
/*!
|
|
70558
70762
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71032,7 +71236,7 @@ exports.SemanticContext = SemanticContext;
|
|
|
71032
71236
|
SemanticContext.OR = OR;
|
|
71033
71237
|
})(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
|
|
71034
71238
|
|
|
71035
|
-
},{"../Decorators":
|
|
71239
|
+
},{"../Decorators":297,"../misc/Array2DHashSet":401,"../misc/ArrayEqualityComparator":402,"../misc/MurmurHash":412,"../misc/ObjectEqualityComparator":413,"../misc/Utils":416}],386:[function(require,module,exports){
|
|
71036
71240
|
"use strict";
|
|
71037
71241
|
/*!
|
|
71038
71242
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71098,7 +71302,7 @@ SetTransition = __decorate([
|
|
|
71098
71302
|
], SetTransition);
|
|
71099
71303
|
exports.SetTransition = SetTransition;
|
|
71100
71304
|
|
|
71101
|
-
},{"../Decorators":
|
|
71305
|
+
},{"../Decorators":297,"../Token":322,"../misc/IntervalSet":410,"./Transition":392}],387:[function(require,module,exports){
|
|
71102
71306
|
"use strict";
|
|
71103
71307
|
/*!
|
|
71104
71308
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71134,7 +71338,7 @@ SimulatorState = __decorate([
|
|
|
71134
71338
|
], SimulatorState);
|
|
71135
71339
|
exports.SimulatorState = SimulatorState;
|
|
71136
71340
|
|
|
71137
|
-
},{"../Decorators":
|
|
71341
|
+
},{"../Decorators":297,"../ParserRuleContext":313}],388:[function(require,module,exports){
|
|
71138
71342
|
"use strict";
|
|
71139
71343
|
/*!
|
|
71140
71344
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71162,7 +71366,7 @@ __decorate([
|
|
|
71162
71366
|
], StarBlockStartState.prototype, "stateType", null);
|
|
71163
71367
|
exports.StarBlockStartState = StarBlockStartState;
|
|
71164
71368
|
|
|
71165
|
-
},{"../Decorators":
|
|
71369
|
+
},{"../Decorators":297,"./ATNStateType":337,"./BlockStartState":345}],389:[function(require,module,exports){
|
|
71166
71370
|
"use strict";
|
|
71167
71371
|
/*!
|
|
71168
71372
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71219,7 +71423,7 @@ __decorate([
|
|
|
71219
71423
|
], StarLoopEntryState.prototype, "stateType", null);
|
|
71220
71424
|
exports.StarLoopEntryState = StarLoopEntryState;
|
|
71221
71425
|
|
|
71222
|
-
},{"../Decorators":
|
|
71426
|
+
},{"../Decorators":297,"../misc/BitSet":404,"./ATNStateType":337,"./DecisionState":350}],390:[function(require,module,exports){
|
|
71223
71427
|
"use strict";
|
|
71224
71428
|
/*!
|
|
71225
71429
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71250,7 +71454,7 @@ __decorate([
|
|
|
71250
71454
|
], StarLoopbackState.prototype, "stateType", null);
|
|
71251
71455
|
exports.StarLoopbackState = StarLoopbackState;
|
|
71252
71456
|
|
|
71253
|
-
},{"../Decorators":
|
|
71457
|
+
},{"../Decorators":297,"./ATNState":336,"./ATNStateType":337}],391:[function(require,module,exports){
|
|
71254
71458
|
"use strict";
|
|
71255
71459
|
/*!
|
|
71256
71460
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71279,7 +71483,7 @@ __decorate([
|
|
|
71279
71483
|
], TokensStartState.prototype, "stateType", null);
|
|
71280
71484
|
exports.TokensStartState = TokensStartState;
|
|
71281
71485
|
|
|
71282
|
-
},{"../Decorators":
|
|
71486
|
+
},{"../Decorators":297,"./ATNStateType":337,"./DecisionState":350}],392:[function(require,module,exports){
|
|
71283
71487
|
"use strict";
|
|
71284
71488
|
/*!
|
|
71285
71489
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71353,7 +71557,7 @@ Transition = __decorate([
|
|
|
71353
71557
|
], Transition);
|
|
71354
71558
|
exports.Transition = Transition;
|
|
71355
71559
|
|
|
71356
|
-
},{"../Decorators":
|
|
71560
|
+
},{"../Decorators":297}],393:[function(require,module,exports){
|
|
71357
71561
|
"use strict";
|
|
71358
71562
|
/*!
|
|
71359
71563
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71401,7 +71605,7 @@ WildcardTransition = __decorate([
|
|
|
71401
71605
|
], WildcardTransition);
|
|
71402
71606
|
exports.WildcardTransition = WildcardTransition;
|
|
71403
71607
|
|
|
71404
|
-
},{"../Decorators":
|
|
71608
|
+
},{"../Decorators":297,"./Transition":392}],394:[function(require,module,exports){
|
|
71405
71609
|
"use strict";
|
|
71406
71610
|
/*!
|
|
71407
71611
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71443,7 +71647,7 @@ class AcceptStateInfo {
|
|
|
71443
71647
|
}
|
|
71444
71648
|
exports.AcceptStateInfo = AcceptStateInfo;
|
|
71445
71649
|
|
|
71446
|
-
},{}],
|
|
71650
|
+
},{}],395:[function(require,module,exports){
|
|
71447
71651
|
"use strict";
|
|
71448
71652
|
/*!
|
|
71449
71653
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71618,7 +71822,7 @@ DFA = __decorate([
|
|
|
71618
71822
|
], DFA);
|
|
71619
71823
|
exports.DFA = DFA;
|
|
71620
71824
|
|
|
71621
|
-
},{"../Decorators":
|
|
71825
|
+
},{"../Decorators":297,"../VocabularyImpl":328,"../atn/ATNConfigSet":332,"../atn/StarLoopEntryState":389,"../misc/Array2DHashSet":401,"../misc/ObjectEqualityComparator":413,"./DFASerializer":396,"./DFAState":397,"./LexerDFASerializer":398}],396:[function(require,module,exports){
|
|
71622
71826
|
"use strict";
|
|
71623
71827
|
/*!
|
|
71624
71828
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71760,7 +71964,7 @@ __decorate([
|
|
|
71760
71964
|
], DFASerializer.prototype, "toString", null);
|
|
71761
71965
|
exports.DFASerializer = DFASerializer;
|
|
71762
71966
|
|
|
71763
|
-
},{"../Decorators":
|
|
71967
|
+
},{"../Decorators":297,"../Recognizer":317,"../VocabularyImpl":328,"../atn/ATNSimulator":335,"../atn/PredictionContext":377}],397:[function(require,module,exports){
|
|
71764
71968
|
"use strict";
|
|
71765
71969
|
/*!
|
|
71766
71970
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71991,7 +72195,7 @@ exports.DFAState = DFAState;
|
|
|
71991
72195
|
DFAState.PredPrediction = PredPrediction;
|
|
71992
72196
|
})(DFAState = exports.DFAState || (exports.DFAState = {}));
|
|
71993
72197
|
|
|
71994
|
-
},{"../Decorators":
|
|
72198
|
+
},{"../Decorators":297,"../atn/ATN":330,"../atn/PredictionContext":377,"../misc/BitSet":404,"../misc/MurmurHash":412,"assert":440}],398:[function(require,module,exports){
|
|
71995
72199
|
"use strict";
|
|
71996
72200
|
/*!
|
|
71997
72201
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72028,7 +72232,7 @@ LexerDFASerializer = __decorate([
|
|
|
72028
72232
|
], LexerDFASerializer);
|
|
72029
72233
|
exports.LexerDFASerializer = LexerDFASerializer;
|
|
72030
72234
|
|
|
72031
|
-
},{"../Decorators":
|
|
72235
|
+
},{"../Decorators":297,"../VocabularyImpl":328,"./DFASerializer":396}],399:[function(require,module,exports){
|
|
72032
72236
|
"use strict";
|
|
72033
72237
|
/*!
|
|
72034
72238
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72094,7 +72298,7 @@ __exportStar(require("./Vocabulary"), exports);
|
|
|
72094
72298
|
__exportStar(require("./VocabularyImpl"), exports);
|
|
72095
72299
|
__exportStar(require("./WritableToken"), exports);
|
|
72096
72300
|
|
|
72097
|
-
},{"./ANTLRErrorListener":
|
|
72301
|
+
},{"./ANTLRErrorListener":284,"./ANTLRErrorStrategy":285,"./ANTLRInputStream":286,"./BailErrorStrategy":287,"./BufferedTokenStream":288,"./CharStream":289,"./CharStreams":290,"./CodePointBuffer":291,"./CodePointCharStream":292,"./CommonToken":293,"./CommonTokenFactory":294,"./CommonTokenStream":295,"./ConsoleErrorListener":296,"./DefaultErrorStrategy":298,"./Dependents":299,"./DiagnosticErrorListener":300,"./FailedPredicateException":301,"./InputMismatchException":302,"./IntStream":303,"./InterpreterRuleContext":304,"./Lexer":305,"./LexerInterpreter":306,"./LexerNoViableAltException":307,"./ListTokenSource":308,"./NoViableAltException":309,"./Parser":310,"./ParserErrorListener":311,"./ParserInterpreter":312,"./ParserRuleContext":313,"./ProxyErrorListener":314,"./ProxyParserErrorListener":315,"./RecognitionException":316,"./Recognizer":317,"./RuleContext":318,"./RuleContextWithAltNum":319,"./RuleDependency":320,"./RuleVersion":321,"./Token":322,"./TokenFactory":323,"./TokenSource":324,"./TokenStream":325,"./TokenStreamRewriter":326,"./Vocabulary":327,"./VocabularyImpl":328,"./WritableToken":329}],400:[function(require,module,exports){
|
|
72098
72302
|
"use strict";
|
|
72099
72303
|
/*!
|
|
72100
72304
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72177,7 +72381,7 @@ class Array2DHashMap {
|
|
|
72177
72381
|
}
|
|
72178
72382
|
exports.Array2DHashMap = Array2DHashMap;
|
|
72179
72383
|
|
|
72180
|
-
},{"./Array2DHashSet":
|
|
72384
|
+
},{"./Array2DHashSet":401}],401:[function(require,module,exports){
|
|
72181
72385
|
"use strict";
|
|
72182
72386
|
/*!
|
|
72183
72387
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72544,7 +72748,7 @@ __decorate([
|
|
|
72544
72748
|
], Array2DHashSet.prototype, "createBuckets", null);
|
|
72545
72749
|
exports.Array2DHashSet = Array2DHashSet;
|
|
72546
72750
|
|
|
72547
|
-
},{"../Decorators":
|
|
72751
|
+
},{"../Decorators":297,"./DefaultEqualityComparator":406,"./MurmurHash":412,"assert":440}],402:[function(require,module,exports){
|
|
72548
72752
|
"use strict";
|
|
72549
72753
|
/*!
|
|
72550
72754
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72616,7 +72820,7 @@ __decorate([
|
|
|
72616
72820
|
], ArrayEqualityComparator.prototype, "equals", null);
|
|
72617
72821
|
exports.ArrayEqualityComparator = ArrayEqualityComparator;
|
|
72618
72822
|
|
|
72619
|
-
},{"../Decorators":
|
|
72823
|
+
},{"../Decorators":297,"./MurmurHash":412,"./ObjectEqualityComparator":413}],403:[function(require,module,exports){
|
|
72620
72824
|
"use strict";
|
|
72621
72825
|
/*!
|
|
72622
72826
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72686,7 +72890,7 @@ var Arrays;
|
|
|
72686
72890
|
Arrays.toString = toString;
|
|
72687
72891
|
})(Arrays = exports.Arrays || (exports.Arrays = {}));
|
|
72688
72892
|
|
|
72689
|
-
},{}],
|
|
72893
|
+
},{}],404:[function(require,module,exports){
|
|
72690
72894
|
"use strict";
|
|
72691
72895
|
/*!
|
|
72692
72896
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73358,7 +73562,7 @@ class BitSetIterator {
|
|
|
73358
73562
|
[Symbol.iterator]() { return this; }
|
|
73359
73563
|
}
|
|
73360
73564
|
|
|
73361
|
-
},{"./MurmurHash":
|
|
73565
|
+
},{"./MurmurHash":412,"util":504}],405:[function(require,module,exports){
|
|
73362
73566
|
"use strict";
|
|
73363
73567
|
/*!
|
|
73364
73568
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73379,7 +73583,7 @@ function isSupplementaryCodePoint(ch) {
|
|
|
73379
73583
|
}
|
|
73380
73584
|
exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
|
|
73381
73585
|
|
|
73382
|
-
},{}],
|
|
73586
|
+
},{}],406:[function(require,module,exports){
|
|
73383
73587
|
"use strict";
|
|
73384
73588
|
/*!
|
|
73385
73589
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73450,7 +73654,7 @@ __decorate([
|
|
|
73450
73654
|
], DefaultEqualityComparator.prototype, "equals", null);
|
|
73451
73655
|
exports.DefaultEqualityComparator = DefaultEqualityComparator;
|
|
73452
73656
|
|
|
73453
|
-
},{"../Decorators":
|
|
73657
|
+
},{"../Decorators":297,"./MurmurHash":412,"./ObjectEqualityComparator":413}],407:[function(require,module,exports){
|
|
73454
73658
|
"use strict";
|
|
73455
73659
|
/*!
|
|
73456
73660
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73744,7 +73948,7 @@ __decorate([
|
|
|
73744
73948
|
], IntegerList.prototype, "toString", null);
|
|
73745
73949
|
exports.IntegerList = IntegerList;
|
|
73746
73950
|
|
|
73747
|
-
},{"../Decorators":
|
|
73951
|
+
},{"../Decorators":297,"./Arrays":403}],408:[function(require,module,exports){
|
|
73748
73952
|
"use strict";
|
|
73749
73953
|
/*!
|
|
73750
73954
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73774,7 +73978,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
|
|
|
73774
73978
|
}
|
|
73775
73979
|
exports.IntegerStack = IntegerStack;
|
|
73776
73980
|
|
|
73777
|
-
},{"./IntegerList":
|
|
73981
|
+
},{"./IntegerList":407}],409:[function(require,module,exports){
|
|
73778
73982
|
"use strict";
|
|
73779
73983
|
/*!
|
|
73780
73984
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73917,7 +74121,7 @@ __decorate([
|
|
|
73917
74121
|
], Interval.prototype, "toString", null);
|
|
73918
74122
|
exports.Interval = Interval;
|
|
73919
74123
|
|
|
73920
|
-
},{"../Decorators":
|
|
74124
|
+
},{"../Decorators":297}],410:[function(require,module,exports){
|
|
73921
74125
|
"use strict";
|
|
73922
74126
|
/*!
|
|
73923
74127
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74563,7 +74767,7 @@ __decorate([
|
|
|
74563
74767
|
], IntervalSet, "subtract", null);
|
|
74564
74768
|
exports.IntervalSet = IntervalSet;
|
|
74565
74769
|
|
|
74566
|
-
},{"../Decorators":
|
|
74770
|
+
},{"../Decorators":297,"../Lexer":305,"../Token":322,"./ArrayEqualityComparator":402,"./IntegerList":407,"./Interval":409,"./MurmurHash":412}],411:[function(require,module,exports){
|
|
74567
74771
|
"use strict";
|
|
74568
74772
|
/*!
|
|
74569
74773
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74596,7 +74800,7 @@ class MultiMap extends Map {
|
|
|
74596
74800
|
}
|
|
74597
74801
|
exports.MultiMap = MultiMap;
|
|
74598
74802
|
|
|
74599
|
-
},{}],
|
|
74803
|
+
},{}],412:[function(require,module,exports){
|
|
74600
74804
|
"use strict";
|
|
74601
74805
|
/*!
|
|
74602
74806
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74711,7 +74915,7 @@ var MurmurHash;
|
|
|
74711
74915
|
}
|
|
74712
74916
|
})(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
|
|
74713
74917
|
|
|
74714
|
-
},{}],
|
|
74918
|
+
},{}],413:[function(require,module,exports){
|
|
74715
74919
|
"use strict";
|
|
74716
74920
|
/*!
|
|
74717
74921
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74770,7 +74974,7 @@ __decorate([
|
|
|
74770
74974
|
], ObjectEqualityComparator.prototype, "equals", null);
|
|
74771
74975
|
exports.ObjectEqualityComparator = ObjectEqualityComparator;
|
|
74772
74976
|
|
|
74773
|
-
},{"../Decorators":
|
|
74977
|
+
},{"../Decorators":297}],414:[function(require,module,exports){
|
|
74774
74978
|
"use strict";
|
|
74775
74979
|
/*!
|
|
74776
74980
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74799,7 +75003,7 @@ class ParseCancellationException extends Error {
|
|
|
74799
75003
|
}
|
|
74800
75004
|
exports.ParseCancellationException = ParseCancellationException;
|
|
74801
75005
|
|
|
74802
|
-
},{}],
|
|
75006
|
+
},{}],415:[function(require,module,exports){
|
|
74803
75007
|
"use strict";
|
|
74804
75008
|
/*!
|
|
74805
75009
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74853,7 +75057,7 @@ class UUID {
|
|
|
74853
75057
|
}
|
|
74854
75058
|
exports.UUID = UUID;
|
|
74855
75059
|
|
|
74856
|
-
},{"./MurmurHash":
|
|
75060
|
+
},{"./MurmurHash":412}],416:[function(require,module,exports){
|
|
74857
75061
|
"use strict";
|
|
74858
75062
|
/*!
|
|
74859
75063
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75028,7 +75232,7 @@ exports.toCharArray = toCharArray;
|
|
|
75028
75232
|
// return s;
|
|
75029
75233
|
// }
|
|
75030
75234
|
|
|
75031
|
-
},{}],
|
|
75235
|
+
},{}],417:[function(require,module,exports){
|
|
75032
75236
|
"use strict";
|
|
75033
75237
|
/*!
|
|
75034
75238
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75173,7 +75377,7 @@ __decorate([
|
|
|
75173
75377
|
], AbstractParseTreeVisitor.prototype, "shouldVisitNextChild", null);
|
|
75174
75378
|
exports.AbstractParseTreeVisitor = AbstractParseTreeVisitor;
|
|
75175
75379
|
|
|
75176
|
-
},{"../Decorators":
|
|
75380
|
+
},{"../Decorators":297}],418:[function(require,module,exports){
|
|
75177
75381
|
"use strict";
|
|
75178
75382
|
/*!
|
|
75179
75383
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75209,7 +75413,7 @@ __decorate([
|
|
|
75209
75413
|
], ErrorNode.prototype, "accept", null);
|
|
75210
75414
|
exports.ErrorNode = ErrorNode;
|
|
75211
75415
|
|
|
75212
|
-
},{"../Decorators":
|
|
75416
|
+
},{"../Decorators":297,"./TerminalNode":420}],419:[function(require,module,exports){
|
|
75213
75417
|
"use strict";
|
|
75214
75418
|
/*!
|
|
75215
75419
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75221,7 +75425,7 @@ class RuleNode {
|
|
|
75221
75425
|
}
|
|
75222
75426
|
exports.RuleNode = RuleNode;
|
|
75223
75427
|
|
|
75224
|
-
},{}],
|
|
75428
|
+
},{}],420:[function(require,module,exports){
|
|
75225
75429
|
"use strict";
|
|
75226
75430
|
/*!
|
|
75227
75431
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75313,7 +75517,7 @@ __decorate([
|
|
|
75313
75517
|
], TerminalNode.prototype, "toString", null);
|
|
75314
75518
|
exports.TerminalNode = TerminalNode;
|
|
75315
75519
|
|
|
75316
|
-
},{"../Decorators":
|
|
75520
|
+
},{"../Decorators":297,"../Token":322,"../misc/Interval":409}],421:[function(require,module,exports){
|
|
75317
75521
|
"use strict";
|
|
75318
75522
|
/*!
|
|
75319
75523
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75557,7 +75761,7 @@ __decorate([
|
|
|
75557
75761
|
], Trees, "getRootOfSubtreeEnclosingRegion", null);
|
|
75558
75762
|
exports.Trees = Trees;
|
|
75559
75763
|
|
|
75560
|
-
},{"../CommonToken":
|
|
75764
|
+
},{"../CommonToken":293,"../Decorators":297,"../Parser":310,"../ParserRuleContext":313,"../Token":322,"../atn/ATN":330,"../misc/Utils":416,"./ErrorNode":418,"./RuleNode":419,"./TerminalNode":420}],422:[function(require,module,exports){
|
|
75561
75765
|
"use strict";
|
|
75562
75766
|
/*!
|
|
75563
75767
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75581,7 +75785,7 @@ class Chunk {
|
|
|
75581
75785
|
}
|
|
75582
75786
|
exports.Chunk = Chunk;
|
|
75583
75787
|
|
|
75584
|
-
},{}],
|
|
75788
|
+
},{}],423:[function(require,module,exports){
|
|
75585
75789
|
"use strict";
|
|
75586
75790
|
/*!
|
|
75587
75791
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75761,7 +75965,7 @@ ParseTreeMatch = __decorate([
|
|
|
75761
75965
|
], ParseTreeMatch);
|
|
75762
75966
|
exports.ParseTreeMatch = ParseTreeMatch;
|
|
75763
75967
|
|
|
75764
|
-
},{"../../Decorators":
|
|
75968
|
+
},{"../../Decorators":297}],424:[function(require,module,exports){
|
|
75765
75969
|
"use strict";
|
|
75766
75970
|
/*!
|
|
75767
75971
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75919,7 +76123,7 @@ ParseTreePattern = __decorate([
|
|
|
75919
76123
|
], ParseTreePattern);
|
|
75920
76124
|
exports.ParseTreePattern = ParseTreePattern;
|
|
75921
76125
|
|
|
75922
|
-
},{"../../Decorators":
|
|
76126
|
+
},{"../../Decorators":297,"../xpath/XPath":430}],425:[function(require,module,exports){
|
|
75923
76127
|
"use strict";
|
|
75924
76128
|
/*!
|
|
75925
76129
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76397,7 +76601,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
|
|
|
76397
76601
|
ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
|
|
76398
76602
|
})(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
|
|
76399
76603
|
|
|
76400
|
-
},{"../../BailErrorStrategy":
|
|
76604
|
+
},{"../../BailErrorStrategy":287,"../../CharStreams":290,"../../CommonTokenStream":295,"../../Decorators":297,"../../ListTokenSource":308,"../../ParserInterpreter":312,"../../ParserRuleContext":313,"../../RecognitionException":316,"../../Token":322,"../../misc/MultiMap":411,"../../misc/ParseCancellationException":414,"../RuleNode":419,"../TerminalNode":420,"./ParseTreeMatch":423,"./ParseTreePattern":424,"./RuleTagToken":426,"./TagChunk":427,"./TextChunk":428,"./TokenTagToken":429}],426:[function(require,module,exports){
|
|
76401
76605
|
"use strict";
|
|
76402
76606
|
/*!
|
|
76403
76607
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76595,7 +76799,7 @@ RuleTagToken = __decorate([
|
|
|
76595
76799
|
], RuleTagToken);
|
|
76596
76800
|
exports.RuleTagToken = RuleTagToken;
|
|
76597
76801
|
|
|
76598
|
-
},{"../../Decorators":
|
|
76802
|
+
},{"../../Decorators":297,"../../Token":322}],427:[function(require,module,exports){
|
|
76599
76803
|
"use strict";
|
|
76600
76804
|
/*!
|
|
76601
76805
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76682,7 +76886,7 @@ __decorate([
|
|
|
76682
76886
|
], TagChunk.prototype, "toString", null);
|
|
76683
76887
|
exports.TagChunk = TagChunk;
|
|
76684
76888
|
|
|
76685
|
-
},{"../../Decorators":
|
|
76889
|
+
},{"../../Decorators":297,"./Chunk":422}],428:[function(require,module,exports){
|
|
76686
76890
|
"use strict";
|
|
76687
76891
|
/*!
|
|
76688
76892
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76752,7 +76956,7 @@ TextChunk = __decorate([
|
|
|
76752
76956
|
], TextChunk);
|
|
76753
76957
|
exports.TextChunk = TextChunk;
|
|
76754
76958
|
|
|
76755
|
-
},{"../../Decorators":
|
|
76959
|
+
},{"../../Decorators":297,"./Chunk":422}],429:[function(require,module,exports){
|
|
76756
76960
|
"use strict";
|
|
76757
76961
|
/*!
|
|
76758
76962
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76847,7 +77051,7 @@ TokenTagToken = __decorate([
|
|
|
76847
77051
|
], TokenTagToken);
|
|
76848
77052
|
exports.TokenTagToken = TokenTagToken;
|
|
76849
77053
|
|
|
76850
|
-
},{"../../CommonToken":
|
|
77054
|
+
},{"../../CommonToken":293,"../../Decorators":297}],430:[function(require,module,exports){
|
|
76851
77055
|
"use strict";
|
|
76852
77056
|
/*!
|
|
76853
77057
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77044,7 +77248,7 @@ exports.XPath = XPath;
|
|
|
77044
77248
|
XPath.WILDCARD = "*"; // word not operator/separator
|
|
77045
77249
|
XPath.NOT = "!"; // word for invert operator
|
|
77046
77250
|
|
|
77047
|
-
},{"../../CharStreams":
|
|
77251
|
+
},{"../../CharStreams":290,"../../CommonTokenStream":295,"../../LexerNoViableAltException":307,"../../ParserRuleContext":313,"../../Token":322,"./XPathLexer":432,"./XPathLexerErrorListener":433,"./XPathRuleAnywhereElement":434,"./XPathRuleElement":435,"./XPathTokenAnywhereElement":436,"./XPathTokenElement":437,"./XPathWildcardAnywhereElement":438,"./XPathWildcardElement":439}],431:[function(require,module,exports){
|
|
77048
77252
|
"use strict";
|
|
77049
77253
|
/*!
|
|
77050
77254
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77079,7 +77283,7 @@ __decorate([
|
|
|
77079
77283
|
], XPathElement.prototype, "toString", null);
|
|
77080
77284
|
exports.XPathElement = XPathElement;
|
|
77081
77285
|
|
|
77082
|
-
},{"../../Decorators":
|
|
77286
|
+
},{"../../Decorators":297}],432:[function(require,module,exports){
|
|
77083
77287
|
"use strict";
|
|
77084
77288
|
// Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
77085
77289
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -77554,7 +77758,7 @@ XPathLexer._serializedATN = Utils.join([
|
|
|
77554
77758
|
XPathLexer._serializedATNSegment1,
|
|
77555
77759
|
], "");
|
|
77556
77760
|
|
|
77557
|
-
},{"../../Lexer":
|
|
77761
|
+
},{"../../Lexer":305,"../../VocabularyImpl":328,"../../atn/ATNDeserializer":334,"../../atn/LexerATNSimulator":355,"../../misc/Utils":416}],433:[function(require,module,exports){
|
|
77558
77762
|
"use strict";
|
|
77559
77763
|
/*!
|
|
77560
77764
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77579,7 +77783,7 @@ __decorate([
|
|
|
77579
77783
|
], XPathLexerErrorListener.prototype, "syntaxError", null);
|
|
77580
77784
|
exports.XPathLexerErrorListener = XPathLexerErrorListener;
|
|
77581
77785
|
|
|
77582
|
-
},{"../../Decorators":
|
|
77786
|
+
},{"../../Decorators":297}],434:[function(require,module,exports){
|
|
77583
77787
|
"use strict";
|
|
77584
77788
|
/*!
|
|
77585
77789
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77613,7 +77817,7 @@ __decorate([
|
|
|
77613
77817
|
], XPathRuleAnywhereElement.prototype, "evaluate", null);
|
|
77614
77818
|
exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
|
|
77615
77819
|
|
|
77616
|
-
},{"../../Decorators":
|
|
77820
|
+
},{"../../Decorators":297,"../Trees":421,"./XPathElement":431}],435:[function(require,module,exports){
|
|
77617
77821
|
"use strict";
|
|
77618
77822
|
/*!
|
|
77619
77823
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77656,7 +77860,7 @@ __decorate([
|
|
|
77656
77860
|
], XPathRuleElement.prototype, "evaluate", null);
|
|
77657
77861
|
exports.XPathRuleElement = XPathRuleElement;
|
|
77658
77862
|
|
|
77659
|
-
},{"../../Decorators":
|
|
77863
|
+
},{"../../Decorators":297,"../../ParserRuleContext":313,"../Trees":421,"./XPathElement":431}],436:[function(require,module,exports){
|
|
77660
77864
|
"use strict";
|
|
77661
77865
|
/*!
|
|
77662
77866
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77688,7 +77892,7 @@ __decorate([
|
|
|
77688
77892
|
], XPathTokenAnywhereElement.prototype, "evaluate", null);
|
|
77689
77893
|
exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
|
|
77690
77894
|
|
|
77691
|
-
},{"../../Decorators":
|
|
77895
|
+
},{"../../Decorators":297,"../Trees":421,"./XPathElement":431}],437:[function(require,module,exports){
|
|
77692
77896
|
"use strict";
|
|
77693
77897
|
/*!
|
|
77694
77898
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77731,7 +77935,7 @@ __decorate([
|
|
|
77731
77935
|
], XPathTokenElement.prototype, "evaluate", null);
|
|
77732
77936
|
exports.XPathTokenElement = XPathTokenElement;
|
|
77733
77937
|
|
|
77734
|
-
},{"../../Decorators":
|
|
77938
|
+
},{"../../Decorators":297,"../TerminalNode":420,"../Trees":421,"./XPathElement":431}],438:[function(require,module,exports){
|
|
77735
77939
|
"use strict";
|
|
77736
77940
|
/*!
|
|
77737
77941
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77767,7 +77971,7 @@ __decorate([
|
|
|
77767
77971
|
], XPathWildcardAnywhereElement.prototype, "evaluate", null);
|
|
77768
77972
|
exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
|
|
77769
77973
|
|
|
77770
|
-
},{"../../Decorators":
|
|
77974
|
+
},{"../../Decorators":297,"../Trees":421,"./XPath":430,"./XPathElement":431}],439:[function(require,module,exports){
|
|
77771
77975
|
"use strict";
|
|
77772
77976
|
/*!
|
|
77773
77977
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77807,7 +78011,7 @@ __decorate([
|
|
|
77807
78011
|
], XPathWildcardElement.prototype, "evaluate", null);
|
|
77808
78012
|
exports.XPathWildcardElement = XPathWildcardElement;
|
|
77809
78013
|
|
|
77810
|
-
},{"../../Decorators":
|
|
78014
|
+
},{"../../Decorators":297,"../Trees":421,"./XPath":430,"./XPathElement":431}],440:[function(require,module,exports){
|
|
77811
78015
|
(function (global){(function (){
|
|
77812
78016
|
'use strict';
|
|
77813
78017
|
|
|
@@ -78317,7 +78521,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
78317
78521
|
};
|
|
78318
78522
|
|
|
78319
78523
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
78320
|
-
},{"object.assign/polyfill":
|
|
78524
|
+
},{"object.assign/polyfill":497,"util/":443}],441:[function(require,module,exports){
|
|
78321
78525
|
if (typeof Object.create === 'function') {
|
|
78322
78526
|
// implementation from standard node.js 'util' module
|
|
78323
78527
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -78342,14 +78546,14 @@ if (typeof Object.create === 'function') {
|
|
|
78342
78546
|
}
|
|
78343
78547
|
}
|
|
78344
78548
|
|
|
78345
|
-
},{}],
|
|
78549
|
+
},{}],442:[function(require,module,exports){
|
|
78346
78550
|
module.exports = function isBuffer(arg) {
|
|
78347
78551
|
return arg && typeof arg === 'object'
|
|
78348
78552
|
&& typeof arg.copy === 'function'
|
|
78349
78553
|
&& typeof arg.fill === 'function'
|
|
78350
78554
|
&& typeof arg.readUInt8 === 'function';
|
|
78351
78555
|
}
|
|
78352
|
-
},{}],
|
|
78556
|
+
},{}],443:[function(require,module,exports){
|
|
78353
78557
|
(function (process,global){(function (){
|
|
78354
78558
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
78355
78559
|
//
|
|
@@ -78939,7 +79143,7 @@ function hasOwnProperty(obj, prop) {
|
|
|
78939
79143
|
}
|
|
78940
79144
|
|
|
78941
79145
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
78942
|
-
},{"./support/isBuffer":
|
|
79146
|
+
},{"./support/isBuffer":442,"_process":499,"inherits":441}],444:[function(require,module,exports){
|
|
78943
79147
|
(function (global){(function (){
|
|
78944
79148
|
'use strict';
|
|
78945
79149
|
|
|
@@ -78960,7 +79164,7 @@ module.exports = function availableTypedArrays() {
|
|
|
78960
79164
|
};
|
|
78961
79165
|
|
|
78962
79166
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
78963
|
-
},{"possible-typed-array-names":
|
|
79167
|
+
},{"possible-typed-array-names":498}],445:[function(require,module,exports){
|
|
78964
79168
|
(function (process,global){(function (){
|
|
78965
79169
|
module.exports = process.hrtime || hrtime
|
|
78966
79170
|
|
|
@@ -78991,7 +79195,7 @@ function hrtime(previousTimestamp){
|
|
|
78991
79195
|
return [seconds,nanoseconds]
|
|
78992
79196
|
}
|
|
78993
79197
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
78994
|
-
},{"_process":
|
|
79198
|
+
},{"_process":499}],446:[function(require,module,exports){
|
|
78995
79199
|
'use strict';
|
|
78996
79200
|
|
|
78997
79201
|
var bind = require('function-bind');
|
|
@@ -79003,7 +79207,7 @@ var $reflectApply = require('./reflectApply');
|
|
|
79003
79207
|
/** @type {import('./actualApply')} */
|
|
79004
79208
|
module.exports = $reflectApply || bind.call($call, $apply);
|
|
79005
79209
|
|
|
79006
|
-
},{"./functionApply":
|
|
79210
|
+
},{"./functionApply":448,"./functionCall":449,"./reflectApply":451,"function-bind":467}],447:[function(require,module,exports){
|
|
79007
79211
|
'use strict';
|
|
79008
79212
|
|
|
79009
79213
|
var bind = require('function-bind');
|
|
@@ -79015,19 +79219,19 @@ module.exports = function applyBind() {
|
|
|
79015
79219
|
return actualApply(bind, $apply, arguments);
|
|
79016
79220
|
};
|
|
79017
79221
|
|
|
79018
|
-
},{"./actualApply":
|
|
79222
|
+
},{"./actualApply":446,"./functionApply":448,"function-bind":467}],448:[function(require,module,exports){
|
|
79019
79223
|
'use strict';
|
|
79020
79224
|
|
|
79021
79225
|
/** @type {import('./functionApply')} */
|
|
79022
79226
|
module.exports = Function.prototype.apply;
|
|
79023
79227
|
|
|
79024
|
-
},{}],
|
|
79228
|
+
},{}],449:[function(require,module,exports){
|
|
79025
79229
|
'use strict';
|
|
79026
79230
|
|
|
79027
79231
|
/** @type {import('./functionCall')} */
|
|
79028
79232
|
module.exports = Function.prototype.call;
|
|
79029
79233
|
|
|
79030
|
-
},{}],
|
|
79234
|
+
},{}],450:[function(require,module,exports){
|
|
79031
79235
|
'use strict';
|
|
79032
79236
|
|
|
79033
79237
|
var bind = require('function-bind');
|
|
@@ -79044,13 +79248,13 @@ module.exports = function callBindBasic(args) {
|
|
|
79044
79248
|
return $actualApply(bind, $call, args);
|
|
79045
79249
|
};
|
|
79046
79250
|
|
|
79047
|
-
},{"./actualApply":
|
|
79251
|
+
},{"./actualApply":446,"./functionCall":449,"es-errors/type":462,"function-bind":467}],451:[function(require,module,exports){
|
|
79048
79252
|
'use strict';
|
|
79049
79253
|
|
|
79050
79254
|
/** @type {import('./reflectApply')} */
|
|
79051
79255
|
module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
|
|
79052
79256
|
|
|
79053
|
-
},{}],
|
|
79257
|
+
},{}],452:[function(require,module,exports){
|
|
79054
79258
|
'use strict';
|
|
79055
79259
|
|
|
79056
79260
|
var setFunctionLength = require('set-function-length');
|
|
@@ -79076,7 +79280,7 @@ if ($defineProperty) {
|
|
|
79076
79280
|
module.exports.apply = applyBind;
|
|
79077
79281
|
}
|
|
79078
79282
|
|
|
79079
|
-
},{"call-bind-apply-helpers":
|
|
79283
|
+
},{"call-bind-apply-helpers":450,"call-bind-apply-helpers/applyBind":447,"es-define-property":456,"set-function-length":501}],453:[function(require,module,exports){
|
|
79080
79284
|
'use strict';
|
|
79081
79285
|
|
|
79082
79286
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -79097,7 +79301,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
79097
79301
|
return intrinsic;
|
|
79098
79302
|
};
|
|
79099
79303
|
|
|
79100
|
-
},{"call-bind-apply-helpers":
|
|
79304
|
+
},{"call-bind-apply-helpers":450,"get-intrinsic":468}],454:[function(require,module,exports){
|
|
79101
79305
|
'use strict';
|
|
79102
79306
|
|
|
79103
79307
|
var $defineProperty = require('es-define-property');
|
|
@@ -79155,7 +79359,7 @@ module.exports = function defineDataProperty(
|
|
|
79155
79359
|
}
|
|
79156
79360
|
};
|
|
79157
79361
|
|
|
79158
|
-
},{"es-define-property":
|
|
79362
|
+
},{"es-define-property":456,"es-errors/syntax":461,"es-errors/type":462,"gopd":473}],455:[function(require,module,exports){
|
|
79159
79363
|
'use strict';
|
|
79160
79364
|
|
|
79161
79365
|
var callBind = require('call-bind-apply-helpers');
|
|
@@ -79187,7 +79391,7 @@ module.exports = desc && typeof desc.get === 'function'
|
|
|
79187
79391
|
}
|
|
79188
79392
|
: false;
|
|
79189
79393
|
|
|
79190
|
-
},{"call-bind-apply-helpers":
|
|
79394
|
+
},{"call-bind-apply-helpers":450,"gopd":473}],456:[function(require,module,exports){
|
|
79191
79395
|
'use strict';
|
|
79192
79396
|
|
|
79193
79397
|
/** @type {import('.')} */
|
|
@@ -79203,55 +79407,55 @@ if ($defineProperty) {
|
|
|
79203
79407
|
|
|
79204
79408
|
module.exports = $defineProperty;
|
|
79205
79409
|
|
|
79206
|
-
},{}],
|
|
79410
|
+
},{}],457:[function(require,module,exports){
|
|
79207
79411
|
'use strict';
|
|
79208
79412
|
|
|
79209
79413
|
/** @type {import('./eval')} */
|
|
79210
79414
|
module.exports = EvalError;
|
|
79211
79415
|
|
|
79212
|
-
},{}],
|
|
79416
|
+
},{}],458:[function(require,module,exports){
|
|
79213
79417
|
'use strict';
|
|
79214
79418
|
|
|
79215
79419
|
/** @type {import('.')} */
|
|
79216
79420
|
module.exports = Error;
|
|
79217
79421
|
|
|
79218
|
-
},{}],
|
|
79422
|
+
},{}],459:[function(require,module,exports){
|
|
79219
79423
|
'use strict';
|
|
79220
79424
|
|
|
79221
79425
|
/** @type {import('./range')} */
|
|
79222
79426
|
module.exports = RangeError;
|
|
79223
79427
|
|
|
79224
|
-
},{}],
|
|
79428
|
+
},{}],460:[function(require,module,exports){
|
|
79225
79429
|
'use strict';
|
|
79226
79430
|
|
|
79227
79431
|
/** @type {import('./ref')} */
|
|
79228
79432
|
module.exports = ReferenceError;
|
|
79229
79433
|
|
|
79230
|
-
},{}],
|
|
79434
|
+
},{}],461:[function(require,module,exports){
|
|
79231
79435
|
'use strict';
|
|
79232
79436
|
|
|
79233
79437
|
/** @type {import('./syntax')} */
|
|
79234
79438
|
module.exports = SyntaxError;
|
|
79235
79439
|
|
|
79236
|
-
},{}],
|
|
79440
|
+
},{}],462:[function(require,module,exports){
|
|
79237
79441
|
'use strict';
|
|
79238
79442
|
|
|
79239
79443
|
/** @type {import('./type')} */
|
|
79240
79444
|
module.exports = TypeError;
|
|
79241
79445
|
|
|
79242
|
-
},{}],
|
|
79446
|
+
},{}],463:[function(require,module,exports){
|
|
79243
79447
|
'use strict';
|
|
79244
79448
|
|
|
79245
79449
|
/** @type {import('./uri')} */
|
|
79246
79450
|
module.exports = URIError;
|
|
79247
79451
|
|
|
79248
|
-
},{}],
|
|
79452
|
+
},{}],464:[function(require,module,exports){
|
|
79249
79453
|
'use strict';
|
|
79250
79454
|
|
|
79251
79455
|
/** @type {import('.')} */
|
|
79252
79456
|
module.exports = Object;
|
|
79253
79457
|
|
|
79254
|
-
},{}],
|
|
79458
|
+
},{}],465:[function(require,module,exports){
|
|
79255
79459
|
'use strict';
|
|
79256
79460
|
|
|
79257
79461
|
var isCallable = require('is-callable');
|
|
@@ -79322,7 +79526,7 @@ module.exports = function forEach(list, iterator, thisArg) {
|
|
|
79322
79526
|
}
|
|
79323
79527
|
};
|
|
79324
79528
|
|
|
79325
|
-
},{"is-callable":
|
|
79529
|
+
},{"is-callable":481}],466:[function(require,module,exports){
|
|
79326
79530
|
'use strict';
|
|
79327
79531
|
|
|
79328
79532
|
/* eslint no-invalid-this: 1 */
|
|
@@ -79408,14 +79612,14 @@ module.exports = function bind(that) {
|
|
|
79408
79612
|
return bound;
|
|
79409
79613
|
};
|
|
79410
79614
|
|
|
79411
|
-
},{}],
|
|
79615
|
+
},{}],467:[function(require,module,exports){
|
|
79412
79616
|
'use strict';
|
|
79413
79617
|
|
|
79414
79618
|
var implementation = require('./implementation');
|
|
79415
79619
|
|
|
79416
79620
|
module.exports = Function.prototype.bind || implementation;
|
|
79417
79621
|
|
|
79418
|
-
},{"./implementation":
|
|
79622
|
+
},{"./implementation":466}],468:[function(require,module,exports){
|
|
79419
79623
|
'use strict';
|
|
79420
79624
|
|
|
79421
79625
|
var undefined;
|
|
@@ -79795,7 +79999,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
79795
79999
|
return value;
|
|
79796
80000
|
};
|
|
79797
80001
|
|
|
79798
|
-
},{"call-bind-apply-helpers/functionApply":
|
|
80002
|
+
},{"call-bind-apply-helpers/functionApply":448,"call-bind-apply-helpers/functionCall":449,"es-define-property":456,"es-errors":458,"es-errors/eval":457,"es-errors/range":459,"es-errors/ref":460,"es-errors/syntax":461,"es-errors/type":462,"es-errors/uri":463,"es-object-atoms":464,"function-bind":467,"get-proto":471,"get-proto/Object.getPrototypeOf":469,"get-proto/Reflect.getPrototypeOf":470,"gopd":473,"has-symbols":475,"hasown":478,"math-intrinsics/abs":485,"math-intrinsics/floor":486,"math-intrinsics/max":488,"math-intrinsics/min":489,"math-intrinsics/pow":490,"math-intrinsics/round":491,"math-intrinsics/sign":492}],469:[function(require,module,exports){
|
|
79799
80003
|
'use strict';
|
|
79800
80004
|
|
|
79801
80005
|
var $Object = require('es-object-atoms');
|
|
@@ -79803,13 +80007,13 @@ var $Object = require('es-object-atoms');
|
|
|
79803
80007
|
/** @type {import('./Object.getPrototypeOf')} */
|
|
79804
80008
|
module.exports = $Object.getPrototypeOf || null;
|
|
79805
80009
|
|
|
79806
|
-
},{"es-object-atoms":
|
|
80010
|
+
},{"es-object-atoms":464}],470:[function(require,module,exports){
|
|
79807
80011
|
'use strict';
|
|
79808
80012
|
|
|
79809
80013
|
/** @type {import('./Reflect.getPrototypeOf')} */
|
|
79810
80014
|
module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
|
|
79811
80015
|
|
|
79812
|
-
},{}],
|
|
80016
|
+
},{}],471:[function(require,module,exports){
|
|
79813
80017
|
'use strict';
|
|
79814
80018
|
|
|
79815
80019
|
var reflectGetProto = require('./Reflect.getPrototypeOf');
|
|
@@ -79838,13 +80042,13 @@ module.exports = reflectGetProto
|
|
|
79838
80042
|
}
|
|
79839
80043
|
: null;
|
|
79840
80044
|
|
|
79841
|
-
},{"./Object.getPrototypeOf":
|
|
80045
|
+
},{"./Object.getPrototypeOf":469,"./Reflect.getPrototypeOf":470,"dunder-proto/get":455}],472:[function(require,module,exports){
|
|
79842
80046
|
'use strict';
|
|
79843
80047
|
|
|
79844
80048
|
/** @type {import('./gOPD')} */
|
|
79845
80049
|
module.exports = Object.getOwnPropertyDescriptor;
|
|
79846
80050
|
|
|
79847
|
-
},{}],
|
|
80051
|
+
},{}],473:[function(require,module,exports){
|
|
79848
80052
|
'use strict';
|
|
79849
80053
|
|
|
79850
80054
|
/** @type {import('.')} */
|
|
@@ -79861,7 +80065,7 @@ if ($gOPD) {
|
|
|
79861
80065
|
|
|
79862
80066
|
module.exports = $gOPD;
|
|
79863
80067
|
|
|
79864
|
-
},{"./gOPD":
|
|
80068
|
+
},{"./gOPD":472}],474:[function(require,module,exports){
|
|
79865
80069
|
'use strict';
|
|
79866
80070
|
|
|
79867
80071
|
var $defineProperty = require('es-define-property');
|
|
@@ -79885,7 +80089,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
|
|
|
79885
80089
|
|
|
79886
80090
|
module.exports = hasPropertyDescriptors;
|
|
79887
80091
|
|
|
79888
|
-
},{"es-define-property":
|
|
80092
|
+
},{"es-define-property":456}],475:[function(require,module,exports){
|
|
79889
80093
|
'use strict';
|
|
79890
80094
|
|
|
79891
80095
|
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
|
@@ -79901,7 +80105,7 @@ module.exports = function hasNativeSymbols() {
|
|
|
79901
80105
|
return hasSymbolSham();
|
|
79902
80106
|
};
|
|
79903
80107
|
|
|
79904
|
-
},{"./shams":
|
|
80108
|
+
},{"./shams":476}],476:[function(require,module,exports){
|
|
79905
80109
|
'use strict';
|
|
79906
80110
|
|
|
79907
80111
|
/** @type {import('./shams')} */
|
|
@@ -79948,7 +80152,7 @@ module.exports = function hasSymbols() {
|
|
|
79948
80152
|
return true;
|
|
79949
80153
|
};
|
|
79950
80154
|
|
|
79951
|
-
},{}],
|
|
80155
|
+
},{}],477:[function(require,module,exports){
|
|
79952
80156
|
'use strict';
|
|
79953
80157
|
|
|
79954
80158
|
var hasSymbols = require('has-symbols/shams');
|
|
@@ -79958,7 +80162,7 @@ module.exports = function hasToStringTagShams() {
|
|
|
79958
80162
|
return hasSymbols() && !!Symbol.toStringTag;
|
|
79959
80163
|
};
|
|
79960
80164
|
|
|
79961
|
-
},{"has-symbols/shams":
|
|
80165
|
+
},{"has-symbols/shams":476}],478:[function(require,module,exports){
|
|
79962
80166
|
'use strict';
|
|
79963
80167
|
|
|
79964
80168
|
var call = Function.prototype.call;
|
|
@@ -79968,7 +80172,7 @@ var bind = require('function-bind');
|
|
|
79968
80172
|
/** @type {import('.')} */
|
|
79969
80173
|
module.exports = bind.call(call, $hasOwn);
|
|
79970
80174
|
|
|
79971
|
-
},{"function-bind":
|
|
80175
|
+
},{"function-bind":467}],479:[function(require,module,exports){
|
|
79972
80176
|
if (typeof Object.create === 'function') {
|
|
79973
80177
|
// implementation from standard node.js 'util' module
|
|
79974
80178
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -79997,7 +80201,7 @@ if (typeof Object.create === 'function') {
|
|
|
79997
80201
|
}
|
|
79998
80202
|
}
|
|
79999
80203
|
|
|
80000
|
-
},{}],
|
|
80204
|
+
},{}],480:[function(require,module,exports){
|
|
80001
80205
|
'use strict';
|
|
80002
80206
|
|
|
80003
80207
|
var hasToStringTag = require('has-tostringtag/shams')();
|
|
@@ -80043,7 +80247,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
|
80043
80247
|
/** @type {import('.')} */
|
|
80044
80248
|
module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
80045
80249
|
|
|
80046
|
-
},{"call-bound":
|
|
80250
|
+
},{"call-bound":453,"has-tostringtag/shams":477}],481:[function(require,module,exports){
|
|
80047
80251
|
'use strict';
|
|
80048
80252
|
|
|
80049
80253
|
var fnToStr = Function.prototype.toString;
|
|
@@ -80146,7 +80350,7 @@ module.exports = reflectApply
|
|
|
80146
80350
|
return tryFunctionObject(value);
|
|
80147
80351
|
};
|
|
80148
80352
|
|
|
80149
|
-
},{}],
|
|
80353
|
+
},{}],482:[function(require,module,exports){
|
|
80150
80354
|
'use strict';
|
|
80151
80355
|
|
|
80152
80356
|
var callBound = require('call-bound');
|
|
@@ -80195,7 +80399,7 @@ module.exports = function isGeneratorFunction(fn) {
|
|
|
80195
80399
|
return getProto(fn) === GeneratorFunction;
|
|
80196
80400
|
};
|
|
80197
80401
|
|
|
80198
|
-
},{"call-bound":
|
|
80402
|
+
},{"call-bound":453,"get-proto":471,"has-tostringtag/shams":477,"safe-regex-test":500}],483:[function(require,module,exports){
|
|
80199
80403
|
'use strict';
|
|
80200
80404
|
|
|
80201
80405
|
var callBound = require('call-bound');
|
|
@@ -80266,7 +80470,7 @@ if (hasToStringTag) {
|
|
|
80266
80470
|
|
|
80267
80471
|
module.exports = fn;
|
|
80268
80472
|
|
|
80269
|
-
},{"call-bound":
|
|
80473
|
+
},{"call-bound":453,"gopd":473,"has-tostringtag/shams":477,"hasown":478}],484:[function(require,module,exports){
|
|
80270
80474
|
'use strict';
|
|
80271
80475
|
|
|
80272
80476
|
var whichTypedArray = require('which-typed-array');
|
|
@@ -80276,19 +80480,19 @@ module.exports = function isTypedArray(value) {
|
|
|
80276
80480
|
return !!whichTypedArray(value);
|
|
80277
80481
|
};
|
|
80278
80482
|
|
|
80279
|
-
},{"which-typed-array":
|
|
80483
|
+
},{"which-typed-array":505}],485:[function(require,module,exports){
|
|
80280
80484
|
'use strict';
|
|
80281
80485
|
|
|
80282
80486
|
/** @type {import('./abs')} */
|
|
80283
80487
|
module.exports = Math.abs;
|
|
80284
80488
|
|
|
80285
|
-
},{}],
|
|
80489
|
+
},{}],486:[function(require,module,exports){
|
|
80286
80490
|
'use strict';
|
|
80287
80491
|
|
|
80288
80492
|
/** @type {import('./floor')} */
|
|
80289
80493
|
module.exports = Math.floor;
|
|
80290
80494
|
|
|
80291
|
-
},{}],
|
|
80495
|
+
},{}],487:[function(require,module,exports){
|
|
80292
80496
|
'use strict';
|
|
80293
80497
|
|
|
80294
80498
|
/** @type {import('./isNaN')} */
|
|
@@ -80296,31 +80500,31 @@ module.exports = Number.isNaN || function isNaN(a) {
|
|
|
80296
80500
|
return a !== a;
|
|
80297
80501
|
};
|
|
80298
80502
|
|
|
80299
|
-
},{}],
|
|
80503
|
+
},{}],488:[function(require,module,exports){
|
|
80300
80504
|
'use strict';
|
|
80301
80505
|
|
|
80302
80506
|
/** @type {import('./max')} */
|
|
80303
80507
|
module.exports = Math.max;
|
|
80304
80508
|
|
|
80305
|
-
},{}],
|
|
80509
|
+
},{}],489:[function(require,module,exports){
|
|
80306
80510
|
'use strict';
|
|
80307
80511
|
|
|
80308
80512
|
/** @type {import('./min')} */
|
|
80309
80513
|
module.exports = Math.min;
|
|
80310
80514
|
|
|
80311
|
-
},{}],
|
|
80515
|
+
},{}],490:[function(require,module,exports){
|
|
80312
80516
|
'use strict';
|
|
80313
80517
|
|
|
80314
80518
|
/** @type {import('./pow')} */
|
|
80315
80519
|
module.exports = Math.pow;
|
|
80316
80520
|
|
|
80317
|
-
},{}],
|
|
80521
|
+
},{}],491:[function(require,module,exports){
|
|
80318
80522
|
'use strict';
|
|
80319
80523
|
|
|
80320
80524
|
/** @type {import('./round')} */
|
|
80321
80525
|
module.exports = Math.round;
|
|
80322
80526
|
|
|
80323
|
-
},{}],
|
|
80527
|
+
},{}],492:[function(require,module,exports){
|
|
80324
80528
|
'use strict';
|
|
80325
80529
|
|
|
80326
80530
|
var $isNaN = require('./isNaN');
|
|
@@ -80333,7 +80537,7 @@ module.exports = function sign(number) {
|
|
|
80333
80537
|
return number < 0 ? -1 : +1;
|
|
80334
80538
|
};
|
|
80335
80539
|
|
|
80336
|
-
},{"./isNaN":
|
|
80540
|
+
},{"./isNaN":487}],493:[function(require,module,exports){
|
|
80337
80541
|
'use strict';
|
|
80338
80542
|
|
|
80339
80543
|
var keysShim;
|
|
@@ -80457,7 +80661,7 @@ if (!Object.keys) {
|
|
|
80457
80661
|
}
|
|
80458
80662
|
module.exports = keysShim;
|
|
80459
80663
|
|
|
80460
|
-
},{"./isArguments":
|
|
80664
|
+
},{"./isArguments":495}],494:[function(require,module,exports){
|
|
80461
80665
|
'use strict';
|
|
80462
80666
|
|
|
80463
80667
|
var slice = Array.prototype.slice;
|
|
@@ -80491,7 +80695,7 @@ keysShim.shim = function shimObjectKeys() {
|
|
|
80491
80695
|
|
|
80492
80696
|
module.exports = keysShim;
|
|
80493
80697
|
|
|
80494
|
-
},{"./implementation":
|
|
80698
|
+
},{"./implementation":493,"./isArguments":495}],495:[function(require,module,exports){
|
|
80495
80699
|
'use strict';
|
|
80496
80700
|
|
|
80497
80701
|
var toStr = Object.prototype.toString;
|
|
@@ -80510,7 +80714,7 @@ module.exports = function isArguments(value) {
|
|
|
80510
80714
|
return isArgs;
|
|
80511
80715
|
};
|
|
80512
80716
|
|
|
80513
|
-
},{}],
|
|
80717
|
+
},{}],496:[function(require,module,exports){
|
|
80514
80718
|
'use strict';
|
|
80515
80719
|
|
|
80516
80720
|
// modified from https://github.com/es-shims/es6-shim
|
|
@@ -80558,7 +80762,7 @@ module.exports = function assign(target, source1) {
|
|
|
80558
80762
|
return to; // step 4
|
|
80559
80763
|
};
|
|
80560
80764
|
|
|
80561
|
-
},{"call-bound":
|
|
80765
|
+
},{"call-bound":453,"es-object-atoms":464,"has-symbols/shams":476,"object-keys":494}],497:[function(require,module,exports){
|
|
80562
80766
|
'use strict';
|
|
80563
80767
|
|
|
80564
80768
|
var implementation = require('./implementation');
|
|
@@ -80615,7 +80819,7 @@ module.exports = function getPolyfill() {
|
|
|
80615
80819
|
return Object.assign;
|
|
80616
80820
|
};
|
|
80617
80821
|
|
|
80618
|
-
},{"./implementation":
|
|
80822
|
+
},{"./implementation":496}],498:[function(require,module,exports){
|
|
80619
80823
|
'use strict';
|
|
80620
80824
|
|
|
80621
80825
|
/** @type {import('.')} */
|
|
@@ -80634,7 +80838,7 @@ module.exports = [
|
|
|
80634
80838
|
'BigUint64Array'
|
|
80635
80839
|
];
|
|
80636
80840
|
|
|
80637
|
-
},{}],
|
|
80841
|
+
},{}],499:[function(require,module,exports){
|
|
80638
80842
|
// shim for using process in browser
|
|
80639
80843
|
var process = module.exports = {};
|
|
80640
80844
|
|
|
@@ -80820,7 +81024,7 @@ process.chdir = function (dir) {
|
|
|
80820
81024
|
};
|
|
80821
81025
|
process.umask = function() { return 0; };
|
|
80822
81026
|
|
|
80823
|
-
},{}],
|
|
81027
|
+
},{}],500:[function(require,module,exports){
|
|
80824
81028
|
'use strict';
|
|
80825
81029
|
|
|
80826
81030
|
var callBound = require('call-bound');
|
|
@@ -80839,7 +81043,7 @@ module.exports = function regexTester(regex) {
|
|
|
80839
81043
|
};
|
|
80840
81044
|
};
|
|
80841
81045
|
|
|
80842
|
-
},{"call-bound":
|
|
81046
|
+
},{"call-bound":453,"es-errors/type":462,"is-regex":483}],501:[function(require,module,exports){
|
|
80843
81047
|
'use strict';
|
|
80844
81048
|
|
|
80845
81049
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -80883,9 +81087,9 @@ module.exports = function setFunctionLength(fn, length) {
|
|
|
80883
81087
|
return fn;
|
|
80884
81088
|
};
|
|
80885
81089
|
|
|
80886
|
-
},{"define-data-property":
|
|
80887
|
-
arguments[4][
|
|
80888
|
-
},{"dup":
|
|
81090
|
+
},{"define-data-property":454,"es-errors/type":462,"get-intrinsic":468,"gopd":473,"has-property-descriptors":474}],502:[function(require,module,exports){
|
|
81091
|
+
arguments[4][442][0].apply(exports,arguments)
|
|
81092
|
+
},{"dup":442}],503:[function(require,module,exports){
|
|
80889
81093
|
// Currently in sync with Node.js lib/internal/util/types.js
|
|
80890
81094
|
// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
|
|
80891
81095
|
|
|
@@ -81221,7 +81425,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
|
|
|
81221
81425
|
});
|
|
81222
81426
|
});
|
|
81223
81427
|
|
|
81224
|
-
},{"is-arguments":
|
|
81428
|
+
},{"is-arguments":480,"is-generator-function":482,"is-typed-array":484,"which-typed-array":505}],504:[function(require,module,exports){
|
|
81225
81429
|
(function (process){(function (){
|
|
81226
81430
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
81227
81431
|
//
|
|
@@ -81940,7 +82144,7 @@ function callbackify(original) {
|
|
|
81940
82144
|
exports.callbackify = callbackify;
|
|
81941
82145
|
|
|
81942
82146
|
}).call(this)}).call(this,require('_process'))
|
|
81943
|
-
},{"./support/isBuffer":
|
|
82147
|
+
},{"./support/isBuffer":502,"./support/types":503,"_process":499,"inherits":479}],505:[function(require,module,exports){
|
|
81944
82148
|
(function (global){(function (){
|
|
81945
82149
|
'use strict';
|
|
81946
82150
|
|
|
@@ -82061,5 +82265,5 @@ module.exports = function whichTypedArray(value) {
|
|
|
82061
82265
|
};
|
|
82062
82266
|
|
|
82063
82267
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
82064
|
-
},{"available-typed-arrays":
|
|
82268
|
+
},{"available-typed-arrays":444,"call-bind":452,"call-bound":453,"for-each":465,"get-proto":471,"gopd":473,"has-tostringtag/shams":477}]},{},[145])(145)
|
|
82065
82269
|
});
|