@designliquido/delegua 1.9.0 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/analisador-semantico/analisador-semantico-base.d.ts.map +1 -1
- package/analisador-semantico/analisador-semantico-base.js +6 -0
- package/analisador-semantico/analisador-semantico-base.js.map +1 -1
- package/analisador-semantico/analisador-semantico.d.ts +11 -3
- package/analisador-semantico/analisador-semantico.d.ts.map +1 -1
- package/analisador-semantico/analisador-semantico.js +96 -4
- package/analisador-semantico/analisador-semantico.js.map +1 -1
- package/avaliador-sintatico/avaliador-sintatico.d.ts +8 -1
- package/avaliador-sintatico/avaliador-sintatico.d.ts.map +1 -1
- package/avaliador-sintatico/avaliador-sintatico.js +205 -109
- package/avaliador-sintatico/avaliador-sintatico.js.map +1 -1
- package/bin/package.json +2 -2
- package/construtos/isto.d.ts +1 -0
- package/construtos/isto.d.ts.map +1 -1
- package/construtos/isto.js +1 -0
- package/construtos/isto.js.map +1 -1
- package/declaracoes/extensao.d.ts +13 -0
- package/declaracoes/extensao.d.ts.map +1 -0
- package/declaracoes/extensao.js +26 -0
- package/declaracoes/extensao.js.map +1 -0
- package/declaracoes/index.d.ts +1 -0
- package/declaracoes/index.d.ts.map +1 -1
- package/declaracoes/index.js +1 -0
- package/declaracoes/index.js.map +1 -1
- package/interfaces/visitante-delegua-interface.d.ts +2 -1
- package/interfaces/visitante-delegua-interface.d.ts.map +1 -1
- package/interpretador/estruturas/delegua-funcao.d.ts +3 -2
- package/interpretador/estruturas/delegua-funcao.d.ts.map +1 -1
- package/interpretador/estruturas/delegua-funcao.js +26 -2
- package/interpretador/estruturas/delegua-funcao.js.map +1 -1
- package/interpretador/interpretador-base.d.ts +13 -1
- package/interpretador/interpretador-base.d.ts.map +1 -1
- package/interpretador/interpretador-base.js +90 -15
- package/interpretador/interpretador-base.js.map +1 -1
- package/interpretador/interpretador.d.ts.map +1 -1
- package/interpretador/interpretador.js +76 -14
- package/interpretador/interpretador.js.map +1 -1
- package/lexador/palavras-reservadas.d.ts +2 -0
- package/lexador/palavras-reservadas.d.ts.map +1 -1
- package/lexador/palavras-reservadas.js +2 -0
- package/lexador/palavras-reservadas.js.map +1 -1
- package/package.json +2 -2
- package/tipos-de-simbolos/delegua.d.ts +1 -0
- package/tipos-de-simbolos/delegua.d.ts.map +1 -1
- package/tipos-de-simbolos/delegua.js +1 -0
- package/tipos-de-simbolos/delegua.js.map +1 -1
- package/umd/delegua.js +910 -523
package/umd/delegua.js
CHANGED
|
@@ -189,6 +189,12 @@ class AnalisadorSemanticoBase {
|
|
|
189
189
|
this.marcarVariaveisUsadasEmExpressao(expressao.indice);
|
|
190
190
|
return;
|
|
191
191
|
}
|
|
192
|
+
if (expressao instanceof construtos_1.AjudaComoConstruto) {
|
|
193
|
+
if (expressao.valor) {
|
|
194
|
+
this.marcarVariaveisUsadasEmExpressao(expressao.valor);
|
|
195
|
+
}
|
|
196
|
+
return;
|
|
197
|
+
}
|
|
192
198
|
// TODO: Adicionar outros tipos de expressões conforme necessário.
|
|
193
199
|
}
|
|
194
200
|
/**
|
|
@@ -444,7 +450,7 @@ class AnalisadorSemanticoBase {
|
|
|
444
450
|
}
|
|
445
451
|
exports.AnalisadorSemanticoBase = AnalisadorSemanticoBase;
|
|
446
452
|
|
|
447
|
-
},{"../construtos":62,"../declaracoes":
|
|
453
|
+
},{"../construtos":62,"../declaracoes":110,"../interfaces":149}],2:[function(require,module,exports){
|
|
448
454
|
"use strict";
|
|
449
455
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
450
456
|
exports.AnalisadorSemantico = void 0;
|
|
@@ -465,6 +471,8 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
465
471
|
this.gerenciadorEscopos = new gerenciador_escopos_1.GerenciadorEscopos();
|
|
466
472
|
this.funcoes = {};
|
|
467
473
|
this.classesDeclararadas = new Set();
|
|
474
|
+
this.classesRegistradas = new Map();
|
|
475
|
+
this.classeAtualEmAnalise = null;
|
|
468
476
|
this.atual = 0;
|
|
469
477
|
this.diagnosticos = [];
|
|
470
478
|
}
|
|
@@ -592,7 +600,7 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
592
600
|
const funcao = funcaoChamada.valor;
|
|
593
601
|
this.comparacaoArgumentosContraParametrosFuncao(entidadeChamadaVariavel.simbolo, funcao.parametros, argumentos);
|
|
594
602
|
}
|
|
595
|
-
visitarExpressaoDeChamada(expressao) {
|
|
603
|
+
async visitarExpressaoDeChamada(expressao) {
|
|
596
604
|
for (const argumento of expressao.argumentos) {
|
|
597
605
|
if (argumento instanceof construtos_1.Variavel) {
|
|
598
606
|
this.gerenciadorEscopos.marcarComoUsada(argumento.simbolo.lexema);
|
|
@@ -606,8 +614,10 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
606
614
|
break;
|
|
607
615
|
case construtos_1.AcessoMetodoOuPropriedade:
|
|
608
616
|
// Marca o objeto como usado quando seus métodos/propriedades são acessados (ex: thor.corre())
|
|
617
|
+
// e verifica acesso a membros privados/protegidos
|
|
609
618
|
const entidadeChamadaAcessoMetodoOuPropriedade = expressao.entidadeChamada;
|
|
610
619
|
this.marcarVariaveisUsadasEmExpressao(entidadeChamadaAcessoMetodoOuPropriedade.objeto);
|
|
620
|
+
await expressao.entidadeChamada.aceitar(this);
|
|
611
621
|
break;
|
|
612
622
|
case construtos_1.ArgumentoReferenciaFuncao:
|
|
613
623
|
const entidadeChamadaArgumentoReferenciaFuncao = expressao.entidadeChamada;
|
|
@@ -716,6 +726,18 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
716
726
|
async visitarDeclaracaoDeExpressao(declaracao) {
|
|
717
727
|
return await declaracao.expressao.aceitar(this);
|
|
718
728
|
}
|
|
729
|
+
visitarDeclaracaoAjuda(declaracao) {
|
|
730
|
+
if (declaracao.elemento) {
|
|
731
|
+
this.marcarVariaveisUsadasEmExpressao(declaracao.elemento);
|
|
732
|
+
}
|
|
733
|
+
return Promise.resolve();
|
|
734
|
+
}
|
|
735
|
+
visitarExpressaoAjuda(expressao) {
|
|
736
|
+
if (expressao.valor) {
|
|
737
|
+
this.marcarVariaveisUsadasEmExpressao(expressao.valor);
|
|
738
|
+
}
|
|
739
|
+
return Promise.resolve();
|
|
740
|
+
}
|
|
719
741
|
visitarDeclaracaoEscolha(declaracao) {
|
|
720
742
|
const identificadorOuLiteral = declaracao.identificadorOuLiteral;
|
|
721
743
|
const tipo = identificadorOuLiteral.tipo;
|
|
@@ -1067,7 +1089,7 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
1067
1089
|
}
|
|
1068
1090
|
}
|
|
1069
1091
|
}
|
|
1070
|
-
visitarDeclaracaoEscreva(declaracao) {
|
|
1092
|
+
async visitarDeclaracaoEscreva(declaracao) {
|
|
1071
1093
|
if (declaracao.argumentos.length === 0) {
|
|
1072
1094
|
const { linha, hashArquivo } = declaracao;
|
|
1073
1095
|
const simbolo = {
|
|
@@ -1096,6 +1118,10 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
1096
1118
|
this.aviso(argumento.simbolo, `Variável '${argumento.simbolo.lexema}' não foi inicializada.`);
|
|
1097
1119
|
}
|
|
1098
1120
|
}
|
|
1121
|
+
else if (!(argumento instanceof construtos_1.Literal)) {
|
|
1122
|
+
// Para expressões complexas (ex: AcessoMetodoOuPropriedade), delega ao visitante
|
|
1123
|
+
await argumento.aceitar(this);
|
|
1124
|
+
}
|
|
1099
1125
|
}
|
|
1100
1126
|
return Promise.resolve();
|
|
1101
1127
|
}
|
|
@@ -1228,7 +1254,68 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
1228
1254
|
}
|
|
1229
1255
|
return Promise.resolve();
|
|
1230
1256
|
}
|
|
1231
|
-
|
|
1257
|
+
obterTipoExpressao(expressao) {
|
|
1258
|
+
const tipoBase = super.obterTipoExpressao(expressao);
|
|
1259
|
+
if (tipoBase)
|
|
1260
|
+
return tipoBase;
|
|
1261
|
+
if (expressao instanceof construtos_1.Chamada && expressao.entidadeChamada instanceof construtos_1.Variavel) {
|
|
1262
|
+
const nomeCallee = expressao.entidadeChamada.simbolo.lexema;
|
|
1263
|
+
if (this.classesRegistradas.has(nomeCallee))
|
|
1264
|
+
return nomeCallee;
|
|
1265
|
+
}
|
|
1266
|
+
return null;
|
|
1267
|
+
}
|
|
1268
|
+
resolverTipoObjeto(objeto) {
|
|
1269
|
+
var _a, _b;
|
|
1270
|
+
if (objeto instanceof construtos_1.Variavel) {
|
|
1271
|
+
if (objeto.simbolo.lexema === 'isto' && this.classeAtualEmAnalise) {
|
|
1272
|
+
return this.classeAtualEmAnalise.simbolo.lexema;
|
|
1273
|
+
}
|
|
1274
|
+
return (_b = (_a = this.gerenciadorEscopos.buscar(objeto.simbolo.lexema)) === null || _a === void 0 ? void 0 : _a.tipo) !== null && _b !== void 0 ? _b : null;
|
|
1275
|
+
}
|
|
1276
|
+
if (objeto instanceof construtos_1.Chamada && objeto.entidadeChamada instanceof construtos_1.Variavel) {
|
|
1277
|
+
const nomeCallee = objeto.entidadeChamada.simbolo.lexema;
|
|
1278
|
+
if (this.classesRegistradas.has(nomeCallee))
|
|
1279
|
+
return nomeCallee;
|
|
1280
|
+
}
|
|
1281
|
+
return null;
|
|
1282
|
+
}
|
|
1283
|
+
estaEmClasseOuSubclasse(nomeClasse) {
|
|
1284
|
+
var _a;
|
|
1285
|
+
let atual = this.classeAtualEmAnalise;
|
|
1286
|
+
while (atual !== null) {
|
|
1287
|
+
if (atual.simbolo.lexema === nomeClasse)
|
|
1288
|
+
return true;
|
|
1289
|
+
if (!atual.superClasse)
|
|
1290
|
+
break;
|
|
1291
|
+
atual = (_a = this.classesRegistradas.get(atual.superClasse.simbolo.lexema)) !== null && _a !== void 0 ? _a : null;
|
|
1292
|
+
}
|
|
1293
|
+
return false;
|
|
1294
|
+
}
|
|
1295
|
+
async visitarExpressaoAcessoMetodoOuPropriedade(expressao) {
|
|
1296
|
+
var _a, _b;
|
|
1297
|
+
const nomeMembro = expressao.simbolo.lexema;
|
|
1298
|
+
const tipoObjeto = this.resolverTipoObjeto(expressao.objeto);
|
|
1299
|
+
if (!tipoObjeto)
|
|
1300
|
+
return;
|
|
1301
|
+
const classeDef = this.classesRegistradas.get(tipoObjeto);
|
|
1302
|
+
if (!classeDef)
|
|
1303
|
+
return;
|
|
1304
|
+
const membro = (_a = classeDef.metodos.find((m) => m.simbolo.lexema === nomeMembro)) !== null && _a !== void 0 ? _a : classeDef.propriedades.find((p) => p.nome.lexema === nomeMembro);
|
|
1305
|
+
if (!membro)
|
|
1306
|
+
return;
|
|
1307
|
+
if (membro.acesso === 'privado') {
|
|
1308
|
+
if (((_b = this.classeAtualEmAnalise) === null || _b === void 0 ? void 0 : _b.simbolo.lexema) !== tipoObjeto) {
|
|
1309
|
+
this.erro(expressao.simbolo, `Membro '${nomeMembro}' é privado e não pode ser acessado fora da classe '${tipoObjeto}'.`);
|
|
1310
|
+
}
|
|
1311
|
+
}
|
|
1312
|
+
else if (membro.acesso === 'protegido') {
|
|
1313
|
+
if (!this.estaEmClasseOuSubclasse(tipoObjeto)) {
|
|
1314
|
+
this.erro(expressao.simbolo, `Membro '${nomeMembro}' é protegido e não pode ser acessado fora da hierarquia da classe '${tipoObjeto}'.`);
|
|
1315
|
+
}
|
|
1316
|
+
}
|
|
1317
|
+
}
|
|
1318
|
+
async visitarDeclaracaoClasse(declaracao) {
|
|
1232
1319
|
if (declaracao.superClasse) {
|
|
1233
1320
|
const nomeSuperclasse = declaracao.superClasse.simbolo.lexema;
|
|
1234
1321
|
if (nomeSuperclasse === declaracao.simbolo.lexema) {
|
|
@@ -1239,7 +1326,16 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
1239
1326
|
}
|
|
1240
1327
|
}
|
|
1241
1328
|
this.classesDeclararadas.add(declaracao.simbolo.lexema);
|
|
1242
|
-
|
|
1329
|
+
this.classesRegistradas.set(declaracao.simbolo.lexema, declaracao);
|
|
1330
|
+
// Visita corpos dos métodos com contexto de classe ativo
|
|
1331
|
+
const classeAnterior = this.classeAtualEmAnalise;
|
|
1332
|
+
this.classeAtualEmAnalise = declaracao;
|
|
1333
|
+
for (const metodo of declaracao.metodos) {
|
|
1334
|
+
for (const stmt of metodo.funcao.corpo) {
|
|
1335
|
+
await stmt.aceitar(this);
|
|
1336
|
+
}
|
|
1337
|
+
}
|
|
1338
|
+
this.classeAtualEmAnalise = classeAnterior;
|
|
1243
1339
|
}
|
|
1244
1340
|
visitarDeclaracaoDefinicaoFuncao(declaracao) {
|
|
1245
1341
|
var _a;
|
|
@@ -1316,6 +1412,8 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
1316
1412
|
async analisar(declaracoes) {
|
|
1317
1413
|
this.gerenciadorEscopos = new gerenciador_escopos_1.GerenciadorEscopos();
|
|
1318
1414
|
this.classesDeclararadas = new Set();
|
|
1415
|
+
this.classesRegistradas = new Map();
|
|
1416
|
+
this.classeAtualEmAnalise = null;
|
|
1319
1417
|
this.atual = 0;
|
|
1320
1418
|
this.diagnosticos = [];
|
|
1321
1419
|
try {
|
|
@@ -1336,7 +1434,7 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
1336
1434
|
}
|
|
1337
1435
|
exports.AnalisadorSemantico = AnalisadorSemantico;
|
|
1338
1436
|
|
|
1339
|
-
},{"../avaliador-sintatico/comum":11,"../construtos":62,"../declaracoes":
|
|
1437
|
+
},{"../avaliador-sintatico/comum":11,"../construtos":62,"../declaracoes":110,"../interfaces/erros":146,"./analisador-semantico-base":1,"./gerenciador-escopos":5,"./pilha-variaveis":7}],3:[function(require,module,exports){
|
|
1340
1438
|
"use strict";
|
|
1341
1439
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1342
1440
|
|
|
@@ -1745,7 +1843,7 @@ class AvaliadorSintaticoBase {
|
|
|
1745
1843
|
}
|
|
1746
1844
|
exports.AvaliadorSintaticoBase = AvaliadorSintaticoBase;
|
|
1747
1845
|
|
|
1748
|
-
},{"../construtos":62,"../declaracoes":
|
|
1846
|
+
},{"../construtos":62,"../declaracoes":110,"../tipos-de-simbolos/comum":221,"./erro-avaliador-sintatico":20}],10:[function(require,module,exports){
|
|
1749
1847
|
"use strict";
|
|
1750
1848
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
1751
1849
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -2184,55 +2282,61 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
2184
2282
|
}
|
|
2185
2283
|
if (construto.constructor === construtos_1.AcessoMetodoOuPropriedade) {
|
|
2186
2284
|
const construtoTipado = construto;
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
case delegua_1.default.NUMERO:
|
|
2198
|
-
case delegua_1.default.NÚMERO:
|
|
2199
|
-
if (!(construtoTipado.simbolo.lexema in primitivas_numero_1.default)) {
|
|
2200
|
-
throw this.erro(construtoTipado.simbolo, `${construtoTipado.simbolo.lexema} não é uma primitiva de número.`);
|
|
2201
|
-
}
|
|
2202
|
-
const primitivaNumeroSelecionada = primitivas_numero_1.default[construtoTipado.simbolo.lexema];
|
|
2203
|
-
construto = new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, primitivaNumeroSelecionada.tipoRetorno);
|
|
2204
|
-
break;
|
|
2205
|
-
case delegua_1.default.TEXTO:
|
|
2206
|
-
if (!(construtoTipado.simbolo.lexema in primitivas_texto_1.default)) {
|
|
2207
|
-
throw this.erro(construtoTipado.simbolo, `${construtoTipado.simbolo.lexema} não é uma primitiva de texto.`);
|
|
2208
|
-
}
|
|
2209
|
-
const primitivaTextoSelecionada = primitivas_texto_1.default[construtoTipado.simbolo.lexema];
|
|
2210
|
-
construto = new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, primitivaTextoSelecionada.tipoRetorno);
|
|
2211
|
-
break;
|
|
2212
|
-
case delegua_1.default.VETOR:
|
|
2213
|
-
case delegua_1.default.VETOR_NUMERO:
|
|
2214
|
-
case delegua_1.default.VETOR_NÚMERO:
|
|
2215
|
-
case delegua_1.default.VETOR_TEXTO:
|
|
2216
|
-
if (!(construtoTipado.simbolo.lexema in primitivas_vetor_1.default)) {
|
|
2217
|
-
throw this.erro(construtoTipado.simbolo, `${construtoTipado.simbolo.lexema} não é uma primitiva de vetor.`);
|
|
2218
|
-
}
|
|
2219
|
-
const primitivaVetorSelecionada = primitivas_vetor_1.default[construtoTipado.simbolo.lexema];
|
|
2220
|
-
construto = new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, primitivaVetorSelecionada.tipoRetorno);
|
|
2221
|
-
break;
|
|
2222
|
-
default:
|
|
2223
|
-
if (construtoTipado.tipo in this.tiposDefinidosEmCodigo) {
|
|
2224
|
-
const tipoCorrespondente = this.tiposDefinidosEmCodigo[construtoTipado.tipo];
|
|
2225
|
-
const possivelMetodo = tipoCorrespondente.metodos.filter((m) => m.simbolo.lexema === construtoTipado.simbolo.lexema);
|
|
2226
|
-
if (possivelMetodo.length > 0) {
|
|
2227
|
-
construto = new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, possivelMetodo[0].tipo);
|
|
2228
|
-
break;
|
|
2285
|
+
const acessoMetodoConhecido = this.resolverAcessoMetodoConhecido(construtoTipado);
|
|
2286
|
+
if (acessoMetodoConhecido) {
|
|
2287
|
+
construto = acessoMetodoConhecido;
|
|
2288
|
+
}
|
|
2289
|
+
else {
|
|
2290
|
+
switch (construtoTipado.tipo) {
|
|
2291
|
+
case delegua_1.default.DICIONARIO:
|
|
2292
|
+
case delegua_1.default.DICIONÁRIO:
|
|
2293
|
+
if (!(construtoTipado.simbolo.lexema in primitivas_dicionario_1.default)) {
|
|
2294
|
+
throw this.erro(construtoTipado.simbolo, `${construtoTipado.simbolo.lexema} não é uma primitiva de dicionário.`);
|
|
2229
2295
|
}
|
|
2230
|
-
const
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2296
|
+
const primitivaDicionarioSelecionada = primitivas_dicionario_1.default[construtoTipado.simbolo.lexema];
|
|
2297
|
+
construto = new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, primitivaDicionarioSelecionada.tipoRetorno);
|
|
2298
|
+
break;
|
|
2299
|
+
case delegua_1.default.INTEIRO:
|
|
2300
|
+
case delegua_1.default.NUMERO:
|
|
2301
|
+
case delegua_1.default.NÚMERO:
|
|
2302
|
+
if (!(construtoTipado.simbolo.lexema in primitivas_numero_1.default)) {
|
|
2303
|
+
throw this.erro(construtoTipado.simbolo, `${construtoTipado.simbolo.lexema} não é uma primitiva de número.`);
|
|
2234
2304
|
}
|
|
2235
|
-
|
|
2305
|
+
const primitivaNumeroSelecionada = primitivas_numero_1.default[construtoTipado.simbolo.lexema];
|
|
2306
|
+
construto = new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, primitivaNumeroSelecionada.tipoRetorno);
|
|
2307
|
+
break;
|
|
2308
|
+
case delegua_1.default.TEXTO:
|
|
2309
|
+
if (!(construtoTipado.simbolo.lexema in primitivas_texto_1.default)) {
|
|
2310
|
+
throw this.erro(construtoTipado.simbolo, `${construtoTipado.simbolo.lexema} não é uma primitiva de texto.`);
|
|
2311
|
+
}
|
|
2312
|
+
const primitivaTextoSelecionada = primitivas_texto_1.default[construtoTipado.simbolo.lexema];
|
|
2313
|
+
construto = new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, primitivaTextoSelecionada.tipoRetorno);
|
|
2314
|
+
break;
|
|
2315
|
+
case delegua_1.default.VETOR:
|
|
2316
|
+
case delegua_1.default.VETOR_NUMERO:
|
|
2317
|
+
case delegua_1.default.VETOR_NÚMERO:
|
|
2318
|
+
case delegua_1.default.VETOR_TEXTO:
|
|
2319
|
+
if (!(construtoTipado.simbolo.lexema in primitivas_vetor_1.default)) {
|
|
2320
|
+
throw this.erro(construtoTipado.simbolo, `${construtoTipado.simbolo.lexema} não é uma primitiva de vetor.`);
|
|
2321
|
+
}
|
|
2322
|
+
const primitivaVetorSelecionada = primitivas_vetor_1.default[construtoTipado.simbolo.lexema];
|
|
2323
|
+
construto = new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, primitivaVetorSelecionada.tipoRetorno);
|
|
2324
|
+
break;
|
|
2325
|
+
default:
|
|
2326
|
+
if (construtoTipado.tipo in this.tiposDefinidosEmCodigo) {
|
|
2327
|
+
const tipoCorrespondente = this.tiposDefinidosEmCodigo[construtoTipado.tipo];
|
|
2328
|
+
const possivelMetodo = tipoCorrespondente.metodos.filter((m) => m.simbolo.lexema === construtoTipado.simbolo.lexema);
|
|
2329
|
+
if (possivelMetodo.length > 0) {
|
|
2330
|
+
construto = new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, possivelMetodo[0].tipo);
|
|
2331
|
+
break;
|
|
2332
|
+
}
|
|
2333
|
+
const possivelPropriedade = tipoCorrespondente.propriedades.filter((p) => p.nome.lexema === construtoTipado.simbolo.lexema);
|
|
2334
|
+
if (possivelPropriedade.length > 0) {
|
|
2335
|
+
construto = new construtos_1.AcessoPropriedade(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, possivelPropriedade[0].tipo);
|
|
2336
|
+
break;
|
|
2337
|
+
}
|
|
2338
|
+
}
|
|
2339
|
+
}
|
|
2236
2340
|
}
|
|
2237
2341
|
}
|
|
2238
2342
|
return new construtos_1.TipoDe(this.hashArquivo, simboloAtual, construto);
|
|
@@ -2368,22 +2472,26 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
2368
2472
|
*/
|
|
2369
2473
|
resolverEntidadeChamadaAcessoMetodoOuPropriedade(entidadeChamadaResolvida) {
|
|
2370
2474
|
const construtoTipado = entidadeChamadaResolvida;
|
|
2475
|
+
const acessoMetodoConhecido = this.resolverAcessoMetodoConhecido(construtoTipado);
|
|
2476
|
+
if (acessoMetodoConhecido) {
|
|
2477
|
+
return acessoMetodoConhecido;
|
|
2478
|
+
}
|
|
2371
2479
|
switch (entidadeChamadaResolvida.tipo) {
|
|
2372
2480
|
case delegua_1.default.DICIONARIO:
|
|
2373
2481
|
case delegua_1.default.DICIONÁRIO:
|
|
2374
|
-
if (
|
|
2375
|
-
|
|
2482
|
+
if (construtoTipado.simbolo.lexema in primitivas_dicionario_1.default) {
|
|
2483
|
+
const primitivaDicionarioSelecionada = primitivas_dicionario_1.default[construtoTipado.simbolo.lexema];
|
|
2484
|
+
return new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, primitivaDicionarioSelecionada.tipoRetorno);
|
|
2376
2485
|
}
|
|
2377
|
-
|
|
2378
|
-
return new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, primitivaDicionarioSelecionada.tipoRetorno);
|
|
2486
|
+
break;
|
|
2379
2487
|
case delegua_1.default.INTEIRO:
|
|
2380
2488
|
case delegua_1.default.NUMERO:
|
|
2381
2489
|
case delegua_1.default.NÚMERO:
|
|
2382
|
-
if (
|
|
2383
|
-
|
|
2490
|
+
if (construtoTipado.simbolo.lexema in primitivas_numero_1.default) {
|
|
2491
|
+
const primitivaNumeroSelecionada = primitivas_numero_1.default[construtoTipado.simbolo.lexema];
|
|
2492
|
+
return new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, primitivaNumeroSelecionada.tipoRetorno);
|
|
2384
2493
|
}
|
|
2385
|
-
|
|
2386
|
-
return new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, primitivaNumeroSelecionada.tipoRetorno);
|
|
2494
|
+
break;
|
|
2387
2495
|
case delegua_1.default.MODULO:
|
|
2388
2496
|
case delegua_1.default.MÓDULO:
|
|
2389
2497
|
// Há dois casos para resolução de módulo:
|
|
@@ -2396,23 +2504,62 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
2396
2504
|
}
|
|
2397
2505
|
return new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema);
|
|
2398
2506
|
case delegua_1.default.TEXTO:
|
|
2399
|
-
if (
|
|
2400
|
-
|
|
2507
|
+
if (construtoTipado.simbolo.lexema in primitivas_texto_1.default) {
|
|
2508
|
+
const primitivaTextoSelecionada = primitivas_texto_1.default[construtoTipado.simbolo.lexema];
|
|
2509
|
+
return new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, primitivaTextoSelecionada.tipoRetorno);
|
|
2401
2510
|
}
|
|
2402
|
-
|
|
2403
|
-
return new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, primitivaTextoSelecionada.tipoRetorno);
|
|
2511
|
+
break;
|
|
2404
2512
|
case delegua_1.default.VETOR:
|
|
2405
2513
|
case delegua_1.default.VETOR_NUMERO:
|
|
2406
2514
|
case delegua_1.default.VETOR_NÚMERO:
|
|
2407
2515
|
case delegua_1.default.VETOR_TEXTO:
|
|
2408
|
-
if (
|
|
2409
|
-
|
|
2516
|
+
if (construtoTipado.simbolo.lexema in primitivas_vetor_1.default) {
|
|
2517
|
+
const primitivaVetorSelecionada = primitivas_vetor_1.default[construtoTipado.simbolo.lexema];
|
|
2518
|
+
return new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, primitivaVetorSelecionada.tipoRetorno);
|
|
2410
2519
|
}
|
|
2411
|
-
|
|
2412
|
-
return new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, primitivaVetorSelecionada.tipoRetorno);
|
|
2520
|
+
break;
|
|
2413
2521
|
}
|
|
2414
2522
|
return entidadeChamadaResolvida;
|
|
2415
2523
|
}
|
|
2524
|
+
obterTiposParaConsultaPrimitiva(tipo) {
|
|
2525
|
+
switch (tipo) {
|
|
2526
|
+
case delegua_1.default.DICIONARIO:
|
|
2527
|
+
case delegua_1.default.DICIONÁRIO:
|
|
2528
|
+
return ['dicionário'];
|
|
2529
|
+
case delegua_1.default.INTEIRO:
|
|
2530
|
+
case delegua_1.default.NUMERO:
|
|
2531
|
+
case delegua_1.default.NÚMERO:
|
|
2532
|
+
case delegua_1.default.REAL:
|
|
2533
|
+
return ['número'];
|
|
2534
|
+
case delegua_1.default.TEXTO:
|
|
2535
|
+
return ['texto'];
|
|
2536
|
+
case delegua_1.default.VETOR:
|
|
2537
|
+
case delegua_1.default.VETOR_INTEIRO:
|
|
2538
|
+
case delegua_1.default.VETOR_LOGICO:
|
|
2539
|
+
case delegua_1.default.VETOR_LÓGICO:
|
|
2540
|
+
case delegua_1.default.VETOR_NUMERO:
|
|
2541
|
+
case delegua_1.default.VETOR_NÚMERO:
|
|
2542
|
+
case delegua_1.default.VETOR_QUALQUER:
|
|
2543
|
+
case delegua_1.default.VETOR_TEXTO:
|
|
2544
|
+
return ['vetor'];
|
|
2545
|
+
default:
|
|
2546
|
+
return [tipo];
|
|
2547
|
+
}
|
|
2548
|
+
}
|
|
2549
|
+
resolverAcessoMetodoConhecido(construtoTipado) {
|
|
2550
|
+
const tiposParaConsulta = this.obterTiposParaConsultaPrimitiva(construtoTipado.tipo);
|
|
2551
|
+
for (const tipoConsulta of tiposParaConsulta) {
|
|
2552
|
+
const primitivasPorTipo = this.primitivasConhecidas[tipoConsulta];
|
|
2553
|
+
if (!primitivasPorTipo) {
|
|
2554
|
+
continue;
|
|
2555
|
+
}
|
|
2556
|
+
const informacoesPrimitiva = primitivasPorTipo[construtoTipado.simbolo.lexema];
|
|
2557
|
+
if (informacoesPrimitiva) {
|
|
2558
|
+
return new construtos_1.AcessoMetodo(construtoTipado.hashArquivo, construtoTipado.objeto, construtoTipado.simbolo.lexema, informacoesPrimitiva.tipo);
|
|
2559
|
+
}
|
|
2560
|
+
}
|
|
2561
|
+
return null;
|
|
2562
|
+
}
|
|
2416
2563
|
validarArgumentosEntidadeChamada(argumentosEntidadeChamada, argumentosUtilizados) {
|
|
2417
2564
|
if (argumentosEntidadeChamada.length === 0) {
|
|
2418
2565
|
return [];
|
|
@@ -3732,10 +3879,10 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
3732
3879
|
const propriedades = [];
|
|
3733
3880
|
/**
|
|
3734
3881
|
* Analisa membros do corpo da classe com um contexto de acesso e estático padrão.
|
|
3735
|
-
* Suporta blocos de contexto aninhados: `estático { }`, `privado { }`, `protegido { }`, `publico { }`.
|
|
3882
|
+
* Suporta blocos de contexto aninhados: `estático { }`, `abstrato { }`, `privado { }`, `protegido { }`, `publico { }`.
|
|
3736
3883
|
*/
|
|
3737
|
-
const compreenderMembros = async (acessoPadrao, ehEstaticoPadrao) => {
|
|
3738
|
-
var _a
|
|
3884
|
+
const compreenderMembros = async (acessoPadrao, ehEstaticoPadrao, ehAbstratoPadrao = false) => {
|
|
3885
|
+
var _a;
|
|
3739
3886
|
while (!this.verificarTipoSimboloAtual(delegua_2.default.CHAVE_DIREITA) && !this.estaNoFinal()) {
|
|
3740
3887
|
// Pular comentários normais dentro do corpo da classe.
|
|
3741
3888
|
if (this.simbolos[this.atual].tipo === delegua_2.default.COMENTARIO ||
|
|
@@ -3757,57 +3904,36 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
3757
3904
|
// Detecção de bloco de contexto: modificador seguido de '{'
|
|
3758
3905
|
const tipoAtual = this.simbolos[this.atual].tipo;
|
|
3759
3906
|
const tipoProximo = (_a = this.simbolos[this.atual + 1]) === null || _a === void 0 ? void 0 : _a.tipo;
|
|
3760
|
-
const ehBlocoAcesso = [delegua_2.default.PRIVADO, delegua_2.default.PROTEGIDO
|
|
3907
|
+
const ehBlocoAcesso = [delegua_2.default.PRIVADO, delegua_2.default.PROTEGIDO].includes(tipoAtual)
|
|
3761
3908
|
&& tipoProximo === delegua_2.default.CHAVE_ESQUERDA;
|
|
3762
3909
|
const ehBlocoEstatico = tipoAtual === delegua_2.default.ESTATICO
|
|
3763
3910
|
&& tipoProximo === delegua_2.default.CHAVE_ESQUERDA;
|
|
3911
|
+
const ehBlocoAbstrato = tipoAtual === delegua_2.default.ABSTRATO
|
|
3912
|
+
&& tipoProximo === delegua_2.default.CHAVE_ESQUERDA;
|
|
3764
3913
|
if (ehBlocoAcesso) {
|
|
3765
|
-
const novoAcesso = tipoAtual === delegua_2.default.PRIVADO ? 'privado' :
|
|
3766
|
-
tipoAtual === delegua_2.default.PROTEGIDO ? 'protegido' : 'publico';
|
|
3914
|
+
const novoAcesso = tipoAtual === delegua_2.default.PRIVADO ? 'privado' : 'protegido';
|
|
3767
3915
|
this.avancarEDevolverAnterior(); // consume modificador de acesso
|
|
3768
3916
|
this.consumir(delegua_2.default.CHAVE_ESQUERDA, "Esperado '{' após modificador de acesso de bloco.");
|
|
3769
|
-
await compreenderMembros(novoAcesso, ehEstaticoPadrao);
|
|
3917
|
+
await compreenderMembros(novoAcesso, ehEstaticoPadrao, ehAbstratoPadrao);
|
|
3770
3918
|
this.consumir(delegua_2.default.CHAVE_DIREITA, "Esperado '}' para fechar bloco de modificador de acesso.");
|
|
3771
3919
|
continue;
|
|
3772
3920
|
}
|
|
3773
3921
|
if (ehBlocoEstatico) {
|
|
3774
3922
|
this.avancarEDevolverAnterior(); // consume 'estático'
|
|
3775
3923
|
this.consumir(delegua_2.default.CHAVE_ESQUERDA, "Esperado '{' após 'estático'.");
|
|
3776
|
-
await compreenderMembros(acessoPadrao, true);
|
|
3924
|
+
await compreenderMembros(acessoPadrao, true, ehAbstratoPadrao);
|
|
3777
3925
|
this.consumir(delegua_2.default.CHAVE_DIREITA, "Esperado '}' para fechar bloco estático.");
|
|
3778
3926
|
continue;
|
|
3779
3927
|
}
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
|
|
3783
|
-
|
|
3784
|
-
|
|
3785
|
-
|
|
3786
|
-
else if (this.simbolos[this.atual].tipo === delegua_2.default.PROTEGIDO) {
|
|
3787
|
-
this.avancarEDevolverAnterior();
|
|
3788
|
-
modificadorAcesso = 'protegido';
|
|
3789
|
-
}
|
|
3790
|
-
else if (this.simbolos[this.atual].tipo === delegua_2.default.PUBLICO) {
|
|
3791
|
-
this.avancarEDevolverAnterior();
|
|
3792
|
-
modificadorAcesso = 'publico';
|
|
3793
|
-
}
|
|
3794
|
-
// Modificador estático por membro (somente quando NÃO seguido de '{')
|
|
3795
|
-
let ehEstatico = ehEstaticoPadrao;
|
|
3796
|
-
if (this.simbolos[this.atual].tipo === delegua_2.default.ESTATICO &&
|
|
3797
|
-
((_b = this.simbolos[this.atual + 1]) === null || _b === void 0 ? void 0 : _b.tipo) !== delegua_2.default.CHAVE_ESQUERDA) {
|
|
3798
|
-
this.avancarEDevolverAnterior();
|
|
3799
|
-
ehEstatico = true;
|
|
3800
|
-
}
|
|
3801
|
-
// Palavras-chave de acessor (obter/definir)
|
|
3802
|
-
let eObtenedor = false;
|
|
3803
|
-
let eDefinidor = false;
|
|
3804
|
-
if (this.simbolos[this.atual].tipo === delegua_2.default.IDENTIFICADOR &&
|
|
3805
|
-
['obter', 'definir', 'obtenedor', 'definidor', 'get', 'set'].includes(String(this.simbolos[this.atual].lexema || '').toLowerCase())) {
|
|
3806
|
-
const palavraAcessor = String(this.simbolos[this.atual].lexema || '').toLowerCase();
|
|
3807
|
-
this.avancarEDevolverAnterior();
|
|
3808
|
-
eObtenedor = palavraAcessor === 'obter' || palavraAcessor === 'obtenedor' || palavraAcessor === 'get';
|
|
3809
|
-
eDefinidor = palavraAcessor === 'definir' || palavraAcessor === 'definidor' || palavraAcessor === 'set';
|
|
3928
|
+
if (ehBlocoAbstrato) {
|
|
3929
|
+
this.avancarEDevolverAnterior(); // consume 'abstrato'
|
|
3930
|
+
this.consumir(delegua_2.default.CHAVE_ESQUERDA, "Esperado '{' após 'abstrato'.");
|
|
3931
|
+
await compreenderMembros(acessoPadrao, ehEstaticoPadrao, true);
|
|
3932
|
+
this.consumir(delegua_2.default.CHAVE_DIREITA, "Esperado '}' para fechar bloco abstrato.");
|
|
3933
|
+
continue;
|
|
3810
3934
|
}
|
|
3935
|
+
const modificadorAcesso = acessoPadrao;
|
|
3936
|
+
const ehEstatico = ehEstaticoPadrao;
|
|
3811
3937
|
// Método operador sobrecarregado: `operador+ (outro) { ... }`
|
|
3812
3938
|
if (this.simbolos[this.atual].tipo === delegua_2.default.OPERADOR) {
|
|
3813
3939
|
const simboloOperadorKeyword = this.avancarEDevolverAnterior();
|
|
@@ -3851,12 +3977,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
3851
3977
|
params = await this.logicaComumParametros();
|
|
3852
3978
|
}
|
|
3853
3979
|
this.consumir(delegua_2.default.PARENTESE_DIREITO, "Esperado ')' após parâmetros do método.");
|
|
3854
|
-
|
|
3855
|
-
// Sintaxe: `area() abstrato: numero`
|
|
3856
|
-
let ehAbstrato = false;
|
|
3857
|
-
if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.ABSTRATO)) {
|
|
3858
|
-
ehAbstrato = true;
|
|
3859
|
-
}
|
|
3980
|
+
const ehAbstrato = ehAbstratoPadrao;
|
|
3860
3981
|
// Tipo de retorno opcional (igual a corpoDaFuncao())
|
|
3861
3982
|
let tipoRetorno = 'qualquer';
|
|
3862
3983
|
let definicaoExplicitaDeTipo = false;
|
|
@@ -3900,8 +4021,6 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
3900
4021
|
const tipoDaFuncao = `função<${tipoRetorno}>`;
|
|
3901
4022
|
const metodo = new declaracoes_1.FuncaoDeclaracao(nomeMetodo, corpoFuncao, tipoDaFuncao);
|
|
3902
4023
|
metodo.estatico = ehEstatico;
|
|
3903
|
-
metodo.eObtenedor = eObtenedor;
|
|
3904
|
-
metodo.eDefinidor = eDefinidor;
|
|
3905
4024
|
metodo.acesso = modificadorAcesso;
|
|
3906
4025
|
metodo.decoradores = Array.from(this.pilhaDecoradores);
|
|
3907
4026
|
metodo.documentacao = docAtual;
|
|
@@ -4028,6 +4147,78 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
4028
4147
|
this.superclasseAtual = undefined;
|
|
4029
4148
|
return definicaoClasse;
|
|
4030
4149
|
}
|
|
4150
|
+
/**
|
|
4151
|
+
* Analisa uma declaração de extensão:
|
|
4152
|
+
* `extensão [global] de <tipo> { <métodos> }`
|
|
4153
|
+
*/
|
|
4154
|
+
async declaracaoDeExtensao() {
|
|
4155
|
+
let ehGlobal = false;
|
|
4156
|
+
if (this.simbolos[this.atual].tipo === delegua_2.default.IDENTIFICADOR &&
|
|
4157
|
+
this.simbolos[this.atual].lexema === 'global') {
|
|
4158
|
+
this.avancarEDevolverAnterior();
|
|
4159
|
+
ehGlobal = true;
|
|
4160
|
+
}
|
|
4161
|
+
this.consumir(delegua_2.default.DE, "Esperado 'de' após 'extensão'.");
|
|
4162
|
+
const simboloTipo = this.consumir(delegua_2.default.IDENTIFICADOR, "Esperado nome do tipo após 'de'.");
|
|
4163
|
+
this.consumir(delegua_2.default.CHAVE_ESQUERDA, "Esperado '{' após o nome do tipo.");
|
|
4164
|
+
const metodos = [];
|
|
4165
|
+
const nomeTipo = simboloTipo.lexema;
|
|
4166
|
+
if (!this.primitivasConhecidas[nomeTipo]) {
|
|
4167
|
+
this.primitivasConhecidas[nomeTipo] = {};
|
|
4168
|
+
}
|
|
4169
|
+
while (!this.verificarTipoSimboloAtual(delegua_2.default.CHAVE_DIREITA) && !this.estaNoFinal()) {
|
|
4170
|
+
// Pular comentários dentro do corpo da extensão.
|
|
4171
|
+
if (this.simbolos[this.atual].tipo === delegua_2.default.COMENTARIO ||
|
|
4172
|
+
this.simbolos[this.atual].tipo === delegua_2.default.LINHA_COMENTARIO) {
|
|
4173
|
+
this.avancarEDevolverAnterior();
|
|
4174
|
+
continue;
|
|
4175
|
+
}
|
|
4176
|
+
// Apenas métodos são suportados em extensões.
|
|
4177
|
+
const proximoSimbolo = this.simbolos[this.atual + 1];
|
|
4178
|
+
if ((proximoSimbolo === null || proximoSimbolo === void 0 ? void 0 : proximoSimbolo.tipo) !== delegua_2.default.PARENTESE_ESQUERDO) {
|
|
4179
|
+
throw this.erro(this.simbolos[this.atual], 'Esperado declaração de método na extensão.');
|
|
4180
|
+
}
|
|
4181
|
+
const nomeMetodo = this.avancarEDevolverAnterior();
|
|
4182
|
+
this.consumir(delegua_2.default.PARENTESE_ESQUERDO, "Esperado '(' após nome do método.");
|
|
4183
|
+
let params = [];
|
|
4184
|
+
if (!this.verificarTipoSimboloAtual(delegua_2.default.PARENTESE_DIREITO)) {
|
|
4185
|
+
params = await this.logicaComumParametros();
|
|
4186
|
+
}
|
|
4187
|
+
this.consumir(delegua_2.default.PARENTESE_DIREITO, "Esperado ')' após parâmetros do método.");
|
|
4188
|
+
let tipoRetorno = 'qualquer';
|
|
4189
|
+
let definicaoExplicitaDeTipo = false;
|
|
4190
|
+
if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.DOIS_PONTOS)) {
|
|
4191
|
+
tipoRetorno = this.verificarDefinicaoTipoAtual();
|
|
4192
|
+
this.avancarEDevolverAnterior();
|
|
4193
|
+
definicaoExplicitaDeTipo = true;
|
|
4194
|
+
}
|
|
4195
|
+
this.consumir(delegua_2.default.CHAVE_ESQUERDA, "Esperado '{' antes do corpo do método.");
|
|
4196
|
+
const corpo = await this.blocoEscopo();
|
|
4197
|
+
let expressoesRetorna = [];
|
|
4198
|
+
for (const declaracao of corpo) {
|
|
4199
|
+
expressoesRetorna = expressoesRetorna.concat((0, comum_1.buscarRetornos)(declaracao));
|
|
4200
|
+
}
|
|
4201
|
+
const tiposRetornos = new Set(expressoesRetorna.filter((e) => e.tipo !== 'qualquer').map((e) => e.tipo));
|
|
4202
|
+
const retornaChamadoExplicitamente = tiposRetornos.size > 0;
|
|
4203
|
+
tiposRetornos.delete('qualquer');
|
|
4204
|
+
if (tipoRetorno === 'qualquer') {
|
|
4205
|
+
if (tiposRetornos.size > 0) {
|
|
4206
|
+
tipoRetorno = tiposRetornos.values().next().value;
|
|
4207
|
+
}
|
|
4208
|
+
else if (!retornaChamadoExplicitamente && !definicaoExplicitaDeTipo) {
|
|
4209
|
+
tipoRetorno = 'vazio';
|
|
4210
|
+
}
|
|
4211
|
+
}
|
|
4212
|
+
const corpoFuncao = new construtos_1.FuncaoConstruto(this.hashArquivo, nomeMetodo.linha, params, corpo, tipoRetorno);
|
|
4213
|
+
const tipoDaFuncao = `função<${tipoRetorno}>`;
|
|
4214
|
+
const metodo = new declaracoes_1.FuncaoDeclaracao(nomeMetodo, corpoFuncao, tipoDaFuncao);
|
|
4215
|
+
metodos.push(metodo);
|
|
4216
|
+
const argumentos = params.map((parametro) => new informacao_elemento_sintatico_1.InformacaoElementoSintatico(parametro.nome.lexema, parametro.tipoDado || 'qualquer', parametro.valorPadrao === undefined));
|
|
4217
|
+
this.primitivasConhecidas[nomeTipo][nomeMetodo.lexema] = new informacao_elemento_sintatico_1.InformacaoElementoSintatico(nomeMetodo.lexema, tipoRetorno, true, argumentos);
|
|
4218
|
+
}
|
|
4219
|
+
this.consumir(delegua_2.default.CHAVE_DIREITA, "Esperado '}' ao final da extensão.");
|
|
4220
|
+
return new declaracoes_1.Extensao(simboloTipo, metodos, ehGlobal, this.hashArquivo);
|
|
4221
|
+
}
|
|
4031
4222
|
/**
|
|
4032
4223
|
* Declarações fora de bloco precisam ser verificadas primeiro por
|
|
4033
4224
|
* uma série de motivos, como, por exemplo:
|
|
@@ -4065,6 +4256,9 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
4065
4256
|
if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.INTERFACE)) {
|
|
4066
4257
|
return await this.declaracaoDeInterface();
|
|
4067
4258
|
}
|
|
4259
|
+
if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.EXTENSAO)) {
|
|
4260
|
+
return await this.declaracaoDeExtensao();
|
|
4261
|
+
}
|
|
4068
4262
|
return await this.resolverDeclaracao();
|
|
4069
4263
|
}
|
|
4070
4264
|
catch (erro) {
|
|
@@ -4355,7 +4549,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
4355
4549
|
}
|
|
4356
4550
|
exports.AvaliadorSintatico = AvaliadorSintatico;
|
|
4357
4551
|
|
|
4358
|
-
},{"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-numero":30,"../bibliotecas/primitivas-texto":31,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../construtos/tuplas":80,"../declaracoes":
|
|
4552
|
+
},{"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-numero":30,"../bibliotecas/primitivas-texto":31,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../construtos/tuplas":80,"../declaracoes":110,"../inferenciador":137,"../informacao-elemento-sintatico":138,"../tipos-de-dados/delegua":217,"../tipos-de-simbolos/delegua":222,"./avaliador-sintatico-base":9,"./comum":11,"./elemento-montao-tipos":19,"./erro-avaliador-sintatico":20,"./informacao-escopo":22,"./montao-tipos":25,"./pilha-escopos":26,"browser-process-hrtime":413}],11:[function(require,module,exports){
|
|
4359
4553
|
"use strict";
|
|
4360
4554
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4361
4555
|
exports.buscarRetornos = buscarRetornos;
|
|
@@ -4460,7 +4654,7 @@ function registrarPrimitiva(primitivasConhecidas, tipo, catalogoPrimitivas) {
|
|
|
4460
4654
|
}
|
|
4461
4655
|
}
|
|
4462
4656
|
|
|
4463
|
-
},{"../declaracoes":
|
|
4657
|
+
},{"../declaracoes":110,"../informacao-elemento-sintatico":138}],12:[function(require,module,exports){
|
|
4464
4658
|
"use strict";
|
|
4465
4659
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4466
4660
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -5120,7 +5314,7 @@ class AvaliadorSintaticoEguaClassico {
|
|
|
5120
5314
|
}
|
|
5121
5315
|
exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
|
|
5122
5316
|
|
|
5123
|
-
},{"../../construtos":62,"../../declaracoes":
|
|
5317
|
+
},{"../../construtos":62,"../../declaracoes":110,"../../tipos-de-simbolos/egua-classico":223,"../erro-avaliador-sintatico":20}],13:[function(require,module,exports){
|
|
5124
5318
|
"use strict";
|
|
5125
5319
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
5126
5320
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -6780,7 +6974,7 @@ class AvaliadorSintaticoPitugues {
|
|
|
6780
6974
|
}
|
|
6781
6975
|
exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
|
|
6782
6976
|
|
|
6783
|
-
},{"../../bibliotecas/dialetos/pitugues/primitivas-tupla":28,"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../declaracoes":
|
|
6977
|
+
},{"../../bibliotecas/dialetos/pitugues/primitivas-tupla":28,"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../declaracoes":110,"../../inferenciador":137,"../../informacao-elemento-sintatico":138,"../../lexador":207,"../../lexador/micro-lexador-pitugues":212,"../../tipos-de-dados/dialetos/pitugues":218,"../../tipos-de-simbolos/pitugues":226,"../comum":11,"../erro-avaliador-sintatico":20,"../informacao-escopo":22,"../pilha-escopos":26,"./micro-avaliador-sintatico-pitugues":18,"browser-process-hrtime":413}],14:[function(require,module,exports){
|
|
6784
6978
|
"use strict";
|
|
6785
6979
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
6786
6980
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -6954,7 +7148,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
|
|
|
6954
7148
|
}
|
|
6955
7149
|
exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
|
|
6956
7150
|
|
|
6957
|
-
},{"../../construtos":62,"../../declaracoes":
|
|
7151
|
+
},{"../../construtos":62,"../../declaracoes":110,"../../tipos-de-simbolos/portugol-ipt":227,"../avaliador-sintatico-base":9}],15:[function(require,module,exports){
|
|
6958
7152
|
"use strict";
|
|
6959
7153
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
6960
7154
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -7703,7 +7897,7 @@ class AvaliadorSintaticoPrisma extends avaliador_sintatico_base_1.AvaliadorSinta
|
|
|
7703
7897
|
}
|
|
7704
7898
|
exports.AvaliadorSintaticoPrisma = AvaliadorSintaticoPrisma;
|
|
7705
7899
|
|
|
7706
|
-
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../declaracoes":
|
|
7900
|
+
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../declaracoes":110,"../../inferenciador":137,"../../informacao-elemento-sintatico":138,"../../lexador":207,"../../tipos-de-simbolos/prisma":228,"../avaliador-sintatico-base":9,"../comum":11,"../informacao-escopo":22,"../pilha-escopos":26,"browser-process-hrtime":413}],16:[function(require,module,exports){
|
|
7707
7901
|
"use strict";
|
|
7708
7902
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
7709
7903
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -8685,7 +8879,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
|
|
|
8685
8879
|
}
|
|
8686
8880
|
exports.AvaliadorSintaticoTenda = AvaliadorSintaticoTenda;
|
|
8687
8881
|
|
|
8688
|
-
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../construtos/tuplas":80,"../../declaracoes":
|
|
8882
|
+
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../construtos/tuplas":80,"../../declaracoes":110,"../../inferenciador":137,"../../informacao-elemento-sintatico":138,"../../lexador/simbolo":215,"../../tipos-de-dados/delegua":217,"../../tipos-de-simbolos/tenda":229,"../avaliador-sintatico-base":9,"./../erro-avaliador-sintatico":20,"./../informacao-escopo":22,"./../pilha-escopos":26,"browser-process-hrtime":413}],17:[function(require,module,exports){
|
|
8689
8883
|
"use strict";
|
|
8690
8884
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
8691
8885
|
if (k2 === undefined) k2 = k;
|
|
@@ -8948,7 +9142,7 @@ class MicroAvaliadorSintaticoPitugues extends micro_avaliador_sintatico_base_1.M
|
|
|
8948
9142
|
}
|
|
8949
9143
|
exports.MicroAvaliadorSintaticoPitugues = MicroAvaliadorSintaticoPitugues;
|
|
8950
9144
|
|
|
8951
|
-
},{"../../construtos":62,"../../declaracoes":
|
|
9145
|
+
},{"../../construtos":62,"../../declaracoes":110,"../../inferenciador":137,"../../tipos-de-simbolos/pitugues":226,"../micro-avaliador-sintatico-base":23}],19:[function(require,module,exports){
|
|
8952
9146
|
"use strict";
|
|
8953
9147
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8954
9148
|
exports.ElementoMontaoTipos = void 0;
|
|
@@ -9130,7 +9324,7 @@ class MicroAvaliadorSintaticoBase {
|
|
|
9130
9324
|
}
|
|
9131
9325
|
exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
|
|
9132
9326
|
|
|
9133
|
-
},{"../construtos":62,"../tipos-de-simbolos/comum":
|
|
9327
|
+
},{"../construtos":62,"../tipos-de-simbolos/comum":221,"./erro-avaliador-sintatico":20}],24:[function(require,module,exports){
|
|
9134
9328
|
"use strict";
|
|
9135
9329
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
9136
9330
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -9345,7 +9539,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
|
|
|
9345
9539
|
}
|
|
9346
9540
|
exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
|
|
9347
9541
|
|
|
9348
|
-
},{"../construtos":62,"../tipos-de-simbolos/microgramaticas/delegua":
|
|
9542
|
+
},{"../construtos":62,"../tipos-de-simbolos/microgramaticas/delegua":225,"./micro-avaliador-sintatico-base":23}],25:[function(require,module,exports){
|
|
9349
9543
|
"use strict";
|
|
9350
9544
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9351
9545
|
exports.MontaoTipos = void 0;
|
|
@@ -9396,7 +9590,7 @@ class MontaoTipos {
|
|
|
9396
9590
|
}
|
|
9397
9591
|
exports.MontaoTipos = MontaoTipos;
|
|
9398
9592
|
|
|
9399
|
-
},{"../geracao-identificadores":
|
|
9593
|
+
},{"../geracao-identificadores":135,"./erro-avaliador-sintatico":20}],26:[function(require,module,exports){
|
|
9400
9594
|
"use strict";
|
|
9401
9595
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9402
9596
|
exports.PilhaEscopos = void 0;
|
|
@@ -10582,7 +10776,7 @@ async function vetor(interpretador, tupla) {
|
|
|
10582
10776
|
return resultadoFinal;
|
|
10583
10777
|
}
|
|
10584
10778
|
|
|
10585
|
-
},{"../construtos":62,"../excecoes":
|
|
10779
|
+
},{"../construtos":62,"../excecoes":131,"../interpretador/estruturas":179,"../interpretador/estruturas/descritor-tipo-classe":177,"../interpretador/estruturas/funcao-padrao":178,"../interpretador/estruturas/objeto-delegua-classe":184,"../quebras":216}],28:[function(require,module,exports){
|
|
10586
10780
|
"use strict";
|
|
10587
10781
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10588
10782
|
const excecoes_1 = require("../../../excecoes");
|
|
@@ -10606,7 +10800,7 @@ exports.default = {
|
|
|
10606
10800
|
}
|
|
10607
10801
|
};
|
|
10608
10802
|
|
|
10609
|
-
},{"../../../construtos":62,"../../../excecoes":
|
|
10803
|
+
},{"../../../construtos":62,"../../../excecoes":131}],29:[function(require,module,exports){
|
|
10610
10804
|
"use strict";
|
|
10611
10805
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10612
10806
|
const construtos_1 = require("../construtos");
|
|
@@ -10688,7 +10882,7 @@ exports.default = {
|
|
|
10688
10882
|
}
|
|
10689
10883
|
};
|
|
10690
10884
|
|
|
10691
|
-
},{"../construtos":62,"../informacao-elemento-sintatico":
|
|
10885
|
+
},{"../construtos":62,"../informacao-elemento-sintatico":138}],30:[function(require,module,exports){
|
|
10692
10886
|
"use strict";
|
|
10693
10887
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10694
10888
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -10773,7 +10967,7 @@ exports.default = {
|
|
|
10773
10967
|
},
|
|
10774
10968
|
};
|
|
10775
10969
|
|
|
10776
|
-
},{"../informacao-elemento-sintatico":
|
|
10970
|
+
},{"../informacao-elemento-sintatico":138}],31:[function(require,module,exports){
|
|
10777
10971
|
"use strict";
|
|
10778
10972
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10779
10973
|
exports.implementacaoParticao = void 0;
|
|
@@ -11103,7 +11297,7 @@ exports.default = {
|
|
|
11103
11297
|
},
|
|
11104
11298
|
};
|
|
11105
11299
|
|
|
11106
|
-
},{"../construtos":62,"../excecoes":
|
|
11300
|
+
},{"../construtos":62,"../excecoes":131,"../informacao-elemento-sintatico":138}],32:[function(require,module,exports){
|
|
11107
11301
|
"use strict";
|
|
11108
11302
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11109
11303
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -11496,7 +11690,7 @@ exports.default = {
|
|
|
11496
11690
|
},
|
|
11497
11691
|
};
|
|
11498
11692
|
|
|
11499
|
-
},{"../construtos":62,"../excecoes":
|
|
11693
|
+
},{"../construtos":62,"../excecoes":131,"../inferenciador":137,"../informacao-elemento-sintatico":138}],33:[function(require,module,exports){
|
|
11500
11694
|
"use strict";
|
|
11501
11695
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11502
11696
|
exports.AcessoElementoMatriz = void 0;
|
|
@@ -11969,7 +12163,7 @@ class Chamada {
|
|
|
11969
12163
|
}
|
|
11970
12164
|
exports.Chamada = Chamada;
|
|
11971
12165
|
|
|
11972
|
-
},{"../geracao-identificadores":
|
|
12166
|
+
},{"../geracao-identificadores":135}],47:[function(require,module,exports){
|
|
11973
12167
|
"use strict";
|
|
11974
12168
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11975
12169
|
exports.ComentarioComoConstruto = void 0;
|
|
@@ -12431,6 +12625,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
12431
12625
|
exports.Isto = void 0;
|
|
12432
12626
|
class Isto {
|
|
12433
12627
|
constructor(hashArquivo, linha, simboloChave) {
|
|
12628
|
+
this.tipo = 'qualquer';
|
|
12434
12629
|
this.linha = linha;
|
|
12435
12630
|
this.hashArquivo = hashArquivo;
|
|
12436
12631
|
this.simboloChave = simboloChave;
|
|
@@ -12477,7 +12672,7 @@ class Leia {
|
|
|
12477
12672
|
}
|
|
12478
12673
|
exports.Leia = Leia;
|
|
12479
12674
|
|
|
12480
|
-
},{"../geracao-identificadores":
|
|
12675
|
+
},{"../geracao-identificadores":135}],65:[function(require,module,exports){
|
|
12481
12676
|
"use strict";
|
|
12482
12677
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12483
12678
|
exports.ListaCompreensao = void 0;
|
|
@@ -13586,6 +13781,33 @@ exports.Expressao = Expressao;
|
|
|
13586
13781
|
},{"./declaracao":99}],105:[function(require,module,exports){
|
|
13587
13782
|
"use strict";
|
|
13588
13783
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13784
|
+
exports.Extensao = void 0;
|
|
13785
|
+
const declaracao_1 = require("./declaracao");
|
|
13786
|
+
class Extensao extends declaracao_1.Declaracao {
|
|
13787
|
+
constructor(simboloTipo, metodos, ehGlobal, hashArquivo) {
|
|
13788
|
+
super(Number(simboloTipo.linha), hashArquivo);
|
|
13789
|
+
this.simboloTipo = simboloTipo;
|
|
13790
|
+
this.metodos = metodos;
|
|
13791
|
+
this.ehGlobal = ehGlobal;
|
|
13792
|
+
}
|
|
13793
|
+
async aceitar(visitante) {
|
|
13794
|
+
return await visitante.visitarDeclaracaoExtensao(this);
|
|
13795
|
+
}
|
|
13796
|
+
paraTexto() {
|
|
13797
|
+
const escopo = this.ehGlobal ? 'global ' : '';
|
|
13798
|
+
let resultado = `<extensao ${escopo}tipo=${this.simboloTipo.lexema}>`;
|
|
13799
|
+
for (const metodo of this.metodos) {
|
|
13800
|
+
resultado += metodo.paraTexto();
|
|
13801
|
+
}
|
|
13802
|
+
resultado += '</extensao>';
|
|
13803
|
+
return resultado;
|
|
13804
|
+
}
|
|
13805
|
+
}
|
|
13806
|
+
exports.Extensao = Extensao;
|
|
13807
|
+
|
|
13808
|
+
},{"./declaracao":99}],106:[function(require,module,exports){
|
|
13809
|
+
"use strict";
|
|
13810
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13589
13811
|
exports.Falhar = void 0;
|
|
13590
13812
|
const declaracao_1 = require("./declaracao");
|
|
13591
13813
|
class Falhar extends declaracao_1.Declaracao {
|
|
@@ -13603,7 +13825,7 @@ class Falhar extends declaracao_1.Declaracao {
|
|
|
13603
13825
|
}
|
|
13604
13826
|
exports.Falhar = Falhar;
|
|
13605
13827
|
|
|
13606
|
-
},{"./declaracao":99}],
|
|
13828
|
+
},{"./declaracao":99}],107:[function(require,module,exports){
|
|
13607
13829
|
"use strict";
|
|
13608
13830
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13609
13831
|
exports.Fazer = void 0;
|
|
@@ -13624,7 +13846,7 @@ class Fazer extends declaracao_1.Declaracao {
|
|
|
13624
13846
|
}
|
|
13625
13847
|
exports.Fazer = Fazer;
|
|
13626
13848
|
|
|
13627
|
-
},{"./declaracao":99}],
|
|
13849
|
+
},{"./declaracao":99}],108:[function(require,module,exports){
|
|
13628
13850
|
"use strict";
|
|
13629
13851
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13630
13852
|
exports.FuncaoDeclaracao = void 0;
|
|
@@ -13657,7 +13879,7 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
|
|
|
13657
13879
|
}
|
|
13658
13880
|
exports.FuncaoDeclaracao = FuncaoDeclaracao;
|
|
13659
13881
|
|
|
13660
|
-
},{"../geracao-identificadores":
|
|
13882
|
+
},{"../geracao-identificadores":135,"./declaracao":99}],109:[function(require,module,exports){
|
|
13661
13883
|
"use strict";
|
|
13662
13884
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13663
13885
|
exports.Importar = void 0;
|
|
@@ -13683,7 +13905,7 @@ class Importar extends declaracao_1.Declaracao {
|
|
|
13683
13905
|
}
|
|
13684
13906
|
exports.Importar = Importar;
|
|
13685
13907
|
|
|
13686
|
-
},{"./declaracao":99}],
|
|
13908
|
+
},{"./declaracao":99}],110:[function(require,module,exports){
|
|
13687
13909
|
"use strict";
|
|
13688
13910
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13689
13911
|
if (k2 === undefined) k2 = k;
|
|
@@ -13710,6 +13932,7 @@ __exportStar(require("./const-multiplo"), exports);
|
|
|
13710
13932
|
__exportStar(require("./continua"), exports);
|
|
13711
13933
|
__exportStar(require("./declaracao"), exports);
|
|
13712
13934
|
__exportStar(require("./enquanto"), exports);
|
|
13935
|
+
__exportStar(require("./extensao"), exports);
|
|
13713
13936
|
__exportStar(require("./escolha"), exports);
|
|
13714
13937
|
__exportStar(require("./escreva"), exports);
|
|
13715
13938
|
__exportStar(require("./escreva-mesma-linha"), exports);
|
|
@@ -13733,7 +13956,7 @@ __exportStar(require("./texto-documentacao"), exports);
|
|
|
13733
13956
|
__exportStar(require("./var"), exports);
|
|
13734
13957
|
__exportStar(require("./var-multiplo"), exports);
|
|
13735
13958
|
|
|
13736
|
-
},{"./ajuda":91,"./bloco":92,"./cabecalho-programa":93,"./classe":94,"./comentario":95,"./const":97,"./const-multiplo":96,"./continua":98,"./declaracao":99,"./enquanto":100,"./escolha":101,"./escreva":103,"./escreva-mesma-linha":102,"./expressao":104,"./
|
|
13959
|
+
},{"./ajuda":91,"./bloco":92,"./cabecalho-programa":93,"./classe":94,"./comentario":95,"./const":97,"./const-multiplo":96,"./continua":98,"./declaracao":99,"./enquanto":100,"./escolha":101,"./escreva":103,"./escreva-mesma-linha":102,"./expressao":104,"./extensao":105,"./falhar":106,"./fazer":107,"./funcao":108,"./importar":109,"./inicio-algoritmo":111,"./interface":112,"./para":114,"./para-cada":113,"./propriedade-classe":115,"./retorna":116,"./se":117,"./sustar":118,"./tendo-como":119,"./tente":120,"./texto-documentacao":121,"./var":123,"./var-multiplo":122}],111:[function(require,module,exports){
|
|
13737
13960
|
"use strict";
|
|
13738
13961
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13739
13962
|
exports.InicioAlgoritmo = void 0;
|
|
@@ -13753,7 +13976,7 @@ class InicioAlgoritmo extends declaracao_1.Declaracao {
|
|
|
13753
13976
|
}
|
|
13754
13977
|
exports.InicioAlgoritmo = InicioAlgoritmo;
|
|
13755
13978
|
|
|
13756
|
-
},{"./declaracao":99}],
|
|
13979
|
+
},{"./declaracao":99}],112:[function(require,module,exports){
|
|
13757
13980
|
"use strict";
|
|
13758
13981
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13759
13982
|
exports.InterfaceDeclaracao = exports.AssinaturaMetodo = void 0;
|
|
@@ -13799,7 +14022,7 @@ class InterfaceDeclaracao extends declaracao_1.Declaracao {
|
|
|
13799
14022
|
}
|
|
13800
14023
|
exports.InterfaceDeclaracao = InterfaceDeclaracao;
|
|
13801
14024
|
|
|
13802
|
-
},{"./declaracao":99}],
|
|
14025
|
+
},{"./declaracao":99}],113:[function(require,module,exports){
|
|
13803
14026
|
"use strict";
|
|
13804
14027
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13805
14028
|
exports.ParaCada = void 0;
|
|
@@ -13822,7 +14045,7 @@ class ParaCada extends declaracao_1.Declaracao {
|
|
|
13822
14045
|
}
|
|
13823
14046
|
exports.ParaCada = ParaCada;
|
|
13824
14047
|
|
|
13825
|
-
},{"./declaracao":99}],
|
|
14048
|
+
},{"./declaracao":99}],114:[function(require,module,exports){
|
|
13826
14049
|
"use strict";
|
|
13827
14050
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13828
14051
|
exports.Para = void 0;
|
|
@@ -13859,7 +14082,7 @@ class Para extends declaracao_1.Declaracao {
|
|
|
13859
14082
|
}
|
|
13860
14083
|
exports.Para = Para;
|
|
13861
14084
|
|
|
13862
|
-
},{"./declaracao":99}],
|
|
14085
|
+
},{"./declaracao":99}],115:[function(require,module,exports){
|
|
13863
14086
|
"use strict";
|
|
13864
14087
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13865
14088
|
exports.PropriedadeClasse = void 0;
|
|
@@ -13884,7 +14107,7 @@ class PropriedadeClasse extends declaracao_1.Declaracao {
|
|
|
13884
14107
|
}
|
|
13885
14108
|
exports.PropriedadeClasse = PropriedadeClasse;
|
|
13886
14109
|
|
|
13887
|
-
},{"./declaracao":99}],
|
|
14110
|
+
},{"./declaracao":99}],116:[function(require,module,exports){
|
|
13888
14111
|
"use strict";
|
|
13889
14112
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13890
14113
|
exports.Retorna = void 0;
|
|
@@ -13910,7 +14133,7 @@ class Retorna extends declaracao_1.Declaracao {
|
|
|
13910
14133
|
}
|
|
13911
14134
|
exports.Retorna = Retorna;
|
|
13912
14135
|
|
|
13913
|
-
},{"./declaracao":99}],
|
|
14136
|
+
},{"./declaracao":99}],117:[function(require,module,exports){
|
|
13914
14137
|
"use strict";
|
|
13915
14138
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13916
14139
|
exports.Se = void 0;
|
|
@@ -13933,7 +14156,7 @@ class Se extends declaracao_1.Declaracao {
|
|
|
13933
14156
|
}
|
|
13934
14157
|
exports.Se = Se;
|
|
13935
14158
|
|
|
13936
|
-
},{"./declaracao":99}],
|
|
14159
|
+
},{"./declaracao":99}],118:[function(require,module,exports){
|
|
13937
14160
|
"use strict";
|
|
13938
14161
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13939
14162
|
exports.Sustar = void 0;
|
|
@@ -13951,7 +14174,7 @@ class Sustar extends declaracao_1.Declaracao {
|
|
|
13951
14174
|
}
|
|
13952
14175
|
exports.Sustar = Sustar;
|
|
13953
14176
|
|
|
13954
|
-
},{"./declaracao":99}],
|
|
14177
|
+
},{"./declaracao":99}],119:[function(require,module,exports){
|
|
13955
14178
|
"use strict";
|
|
13956
14179
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13957
14180
|
exports.TendoComo = void 0;
|
|
@@ -13978,7 +14201,7 @@ class TendoComo extends declaracao_1.Declaracao {
|
|
|
13978
14201
|
}
|
|
13979
14202
|
exports.TendoComo = TendoComo;
|
|
13980
14203
|
|
|
13981
|
-
},{"./declaracao":99}],
|
|
14204
|
+
},{"./declaracao":99}],120:[function(require,module,exports){
|
|
13982
14205
|
"use strict";
|
|
13983
14206
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13984
14207
|
exports.Tente = void 0;
|
|
@@ -14004,7 +14227,7 @@ class Tente extends declaracao_1.Declaracao {
|
|
|
14004
14227
|
}
|
|
14005
14228
|
exports.Tente = Tente;
|
|
14006
14229
|
|
|
14007
|
-
},{"./declaracao":99}],
|
|
14230
|
+
},{"./declaracao":99}],121:[function(require,module,exports){
|
|
14008
14231
|
"use strict";
|
|
14009
14232
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14010
14233
|
exports.TextoDocumentacao = void 0;
|
|
@@ -14026,7 +14249,7 @@ class TextoDocumentacao extends declaracao_1.Declaracao {
|
|
|
14026
14249
|
}
|
|
14027
14250
|
exports.TextoDocumentacao = TextoDocumentacao;
|
|
14028
14251
|
|
|
14029
|
-
},{"./declaracao":99}],
|
|
14252
|
+
},{"./declaracao":99}],122:[function(require,module,exports){
|
|
14030
14253
|
"use strict";
|
|
14031
14254
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14032
14255
|
exports.VarMultiplo = void 0;
|
|
@@ -14052,7 +14275,7 @@ class VarMultiplo extends declaracao_1.Declaracao {
|
|
|
14052
14275
|
}
|
|
14053
14276
|
exports.VarMultiplo = VarMultiplo;
|
|
14054
14277
|
|
|
14055
|
-
},{"./declaracao":99}],
|
|
14278
|
+
},{"./declaracao":99}],123:[function(require,module,exports){
|
|
14056
14279
|
"use strict";
|
|
14057
14280
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14058
14281
|
exports.Var = void 0;
|
|
@@ -14087,7 +14310,7 @@ class Var extends declaracao_1.Declaracao {
|
|
|
14087
14310
|
}
|
|
14088
14311
|
exports.Var = Var;
|
|
14089
14312
|
|
|
14090
|
-
},{"./declaracao":99}],
|
|
14313
|
+
},{"./declaracao":99}],124:[function(require,module,exports){
|
|
14091
14314
|
"use strict";
|
|
14092
14315
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14093
14316
|
exports.EstilizadorDelegua = void 0;
|
|
@@ -14316,7 +14539,7 @@ class EstilizadorDelegua {
|
|
|
14316
14539
|
}
|
|
14317
14540
|
exports.EstilizadorDelegua = EstilizadorDelegua;
|
|
14318
14541
|
|
|
14319
|
-
},{}],
|
|
14542
|
+
},{}],125:[function(require,module,exports){
|
|
14320
14543
|
"use strict";
|
|
14321
14544
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14322
14545
|
if (k2 === undefined) k2 = k;
|
|
@@ -14336,7 +14559,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
14336
14559
|
__exportStar(require("./estilizador-delegua"), exports);
|
|
14337
14560
|
__exportStar(require("./regras"), exports);
|
|
14338
14561
|
|
|
14339
|
-
},{"./estilizador-delegua":
|
|
14562
|
+
},{"./estilizador-delegua":124,"./regras":128}],126:[function(require,module,exports){
|
|
14340
14563
|
"use strict";
|
|
14341
14564
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14342
14565
|
exports.RegraConvencaoNomenclatura = void 0;
|
|
@@ -14485,7 +14708,7 @@ class RegraConvencaoNomenclatura {
|
|
|
14485
14708
|
}
|
|
14486
14709
|
exports.RegraConvencaoNomenclatura = RegraConvencaoNomenclatura;
|
|
14487
14710
|
|
|
14488
|
-
},{"../../declaracoes":
|
|
14711
|
+
},{"../../declaracoes":110}],127:[function(require,module,exports){
|
|
14489
14712
|
"use strict";
|
|
14490
14713
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14491
14714
|
exports.RegraFortalecerTipos = void 0;
|
|
@@ -14570,7 +14793,7 @@ class RegraFortalecerTipos {
|
|
|
14570
14793
|
}
|
|
14571
14794
|
exports.RegraFortalecerTipos = RegraFortalecerTipos;
|
|
14572
14795
|
|
|
14573
|
-
},{"../../construtos":62,"../../declaracoes":
|
|
14796
|
+
},{"../../construtos":62,"../../declaracoes":110,"../../inferenciador":137}],128:[function(require,module,exports){
|
|
14574
14797
|
"use strict";
|
|
14575
14798
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14576
14799
|
if (k2 === undefined) k2 = k;
|
|
@@ -14591,7 +14814,7 @@ __exportStar(require("./fortalecer-tipos"), exports);
|
|
|
14591
14814
|
__exportStar(require("./convencao-nomenclatura"), exports);
|
|
14592
14815
|
__exportStar(require("./paradigma-consistente"), exports);
|
|
14593
14816
|
|
|
14594
|
-
},{"./convencao-nomenclatura":
|
|
14817
|
+
},{"./convencao-nomenclatura":126,"./fortalecer-tipos":127,"./paradigma-consistente":129}],129:[function(require,module,exports){
|
|
14595
14818
|
"use strict";
|
|
14596
14819
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14597
14820
|
exports.RegraParadigmaConsistente = void 0;
|
|
@@ -14681,7 +14904,7 @@ class RegraParadigmaConsistente {
|
|
|
14681
14904
|
}
|
|
14682
14905
|
exports.RegraParadigmaConsistente = RegraParadigmaConsistente;
|
|
14683
14906
|
|
|
14684
|
-
},{"../../construtos/leia":64,"../../declaracoes":
|
|
14907
|
+
},{"../../construtos/leia":64,"../../declaracoes":110,"../../lexador/mapeamento-paradigmas":211}],130:[function(require,module,exports){
|
|
14685
14908
|
"use strict";
|
|
14686
14909
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14687
14910
|
exports.ErroEmTempoDeExecucao = void 0;
|
|
@@ -14696,7 +14919,7 @@ class ErroEmTempoDeExecucao extends Error {
|
|
|
14696
14919
|
}
|
|
14697
14920
|
exports.ErroEmTempoDeExecucao = ErroEmTempoDeExecucao;
|
|
14698
14921
|
|
|
14699
|
-
},{}],
|
|
14922
|
+
},{}],131:[function(require,module,exports){
|
|
14700
14923
|
"use strict";
|
|
14701
14924
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14702
14925
|
if (k2 === undefined) k2 = k;
|
|
@@ -14715,7 +14938,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14715
14938
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14716
14939
|
__exportStar(require("./erro-em-tempo-de-execucao"), exports);
|
|
14717
14940
|
|
|
14718
|
-
},{"./erro-em-tempo-de-execucao":
|
|
14941
|
+
},{"./erro-em-tempo-de-execucao":130}],132:[function(require,module,exports){
|
|
14719
14942
|
"use strict";
|
|
14720
14943
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14721
14944
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -15479,7 +15702,7 @@ class FormatadorDelegua {
|
|
|
15479
15702
|
}
|
|
15480
15703
|
exports.FormatadorDelegua = FormatadorDelegua;
|
|
15481
15704
|
|
|
15482
|
-
},{"../construtos":62,"../declaracoes":
|
|
15705
|
+
},{"../construtos":62,"../declaracoes":110,"../tipos-de-simbolos/delegua":222}],133:[function(require,module,exports){
|
|
15483
15706
|
"use strict";
|
|
15484
15707
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
15485
15708
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -15897,7 +16120,7 @@ class FormatadorPitugues {
|
|
|
15897
16120
|
}
|
|
15898
16121
|
exports.FormatadorPitugues = FormatadorPitugues;
|
|
15899
16122
|
|
|
15900
|
-
},{"../construtos":62,"../declaracoes":
|
|
16123
|
+
},{"../construtos":62,"../declaracoes":110,"../tipos-de-simbolos/pitugues":226}],134:[function(require,module,exports){
|
|
15901
16124
|
"use strict";
|
|
15902
16125
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15903
16126
|
if (k2 === undefined) k2 = k;
|
|
@@ -15917,7 +16140,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
15917
16140
|
__exportStar(require("./formatador-delegua"), exports);
|
|
15918
16141
|
__exportStar(require("./formatador-pitugues"), exports);
|
|
15919
16142
|
|
|
15920
|
-
},{"./formatador-delegua":
|
|
16143
|
+
},{"./formatador-delegua":132,"./formatador-pitugues":133}],135:[function(require,module,exports){
|
|
15921
16144
|
"use strict";
|
|
15922
16145
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15923
16146
|
exports.cyrb53 = cyrb53;
|
|
@@ -15961,7 +16184,7 @@ function uuidv4() {
|
|
|
15961
16184
|
});
|
|
15962
16185
|
}
|
|
15963
16186
|
|
|
15964
|
-
},{}],
|
|
16187
|
+
},{}],136:[function(require,module,exports){
|
|
15965
16188
|
"use strict";
|
|
15966
16189
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15967
16190
|
if (k2 === undefined) k2 = k;
|
|
@@ -15990,7 +16213,7 @@ __exportStar(require("./interpretador"), exports);
|
|
|
15990
16213
|
__exportStar(require("./lexador"), exports);
|
|
15991
16214
|
__exportStar(require("./tradutores"), exports);
|
|
15992
16215
|
|
|
15993
|
-
},{"./analisador-semantico":6,"./avaliador-sintatico":21,"./construtos":62,"./declaracoes":
|
|
16216
|
+
},{"./analisador-semantico":6,"./avaliador-sintatico":21,"./construtos":62,"./declaracoes":110,"./estilizador":125,"./formatadores":134,"./geracao-identificadores":135,"./interfaces":149,"./interpretador":187,"./lexador":207,"./tradutores":230}],137:[function(require,module,exports){
|
|
15994
16217
|
"use strict";
|
|
15995
16218
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
15996
16219
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -16112,7 +16335,7 @@ function inferirTipoVariavel(variavel) {
|
|
|
16112
16335
|
}
|
|
16113
16336
|
}
|
|
16114
16337
|
|
|
16115
|
-
},{"./tipos-de-dados/delegua":
|
|
16338
|
+
},{"./tipos-de-dados/delegua":217,"./tipos-de-dados/primitivos":219,"./tipos-de-simbolos/delegua":222}],138:[function(require,module,exports){
|
|
16116
16339
|
"use strict";
|
|
16117
16340
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16118
16341
|
exports.InformacaoElementoSintatico = void 0;
|
|
@@ -16131,10 +16354,6 @@ class InformacaoElementoSintatico {
|
|
|
16131
16354
|
}
|
|
16132
16355
|
exports.InformacaoElementoSintatico = InformacaoElementoSintatico;
|
|
16133
16356
|
|
|
16134
|
-
},{}],138:[function(require,module,exports){
|
|
16135
|
-
"use strict";
|
|
16136
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16137
|
-
|
|
16138
16357
|
},{}],139:[function(require,module,exports){
|
|
16139
16358
|
"use strict";
|
|
16140
16359
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -16154,6 +16373,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
16154
16373
|
},{}],143:[function(require,module,exports){
|
|
16155
16374
|
"use strict";
|
|
16156
16375
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16376
|
+
|
|
16377
|
+
},{}],144:[function(require,module,exports){
|
|
16378
|
+
"use strict";
|
|
16379
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16157
16380
|
exports.DiagnosticoSeveridade = void 0;
|
|
16158
16381
|
var DiagnosticoSeveridade;
|
|
16159
16382
|
(function (DiagnosticoSeveridade) {
|
|
@@ -16163,11 +16386,11 @@ var DiagnosticoSeveridade;
|
|
|
16163
16386
|
DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
|
|
16164
16387
|
})(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
|
|
16165
16388
|
|
|
16166
|
-
},{}],
|
|
16389
|
+
},{}],145:[function(require,module,exports){
|
|
16167
16390
|
"use strict";
|
|
16168
16391
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16169
16392
|
|
|
16170
|
-
},{}],
|
|
16393
|
+
},{}],146:[function(require,module,exports){
|
|
16171
16394
|
"use strict";
|
|
16172
16395
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16173
16396
|
if (k2 === undefined) k2 = k;
|
|
@@ -16188,15 +16411,15 @@ __exportStar(require("./correcao-sugerida-interface"), exports);
|
|
|
16188
16411
|
__exportStar(require("./diagnostico-analisador-semantico"), exports);
|
|
16189
16412
|
__exportStar(require("./erro-interpretador-interface"), exports);
|
|
16190
16413
|
|
|
16191
|
-
},{"./correcao-sugerida-interface":
|
|
16414
|
+
},{"./correcao-sugerida-interface":143,"./diagnostico-analisador-semantico":144,"./erro-interpretador-interface":145}],147:[function(require,module,exports){
|
|
16192
16415
|
"use strict";
|
|
16193
16416
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16194
16417
|
|
|
16195
|
-
},{}],
|
|
16418
|
+
},{}],148:[function(require,module,exports){
|
|
16196
16419
|
"use strict";
|
|
16197
16420
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16198
16421
|
|
|
16199
|
-
},{}],
|
|
16422
|
+
},{}],149:[function(require,module,exports){
|
|
16200
16423
|
"use strict";
|
|
16201
16424
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16202
16425
|
if (k2 === undefined) k2 = k;
|
|
@@ -16237,11 +16460,7 @@ __exportStar(require("./construtos"), exports);
|
|
|
16237
16460
|
__exportStar(require("./erros"), exports);
|
|
16238
16461
|
__exportStar(require("./retornos"), exports);
|
|
16239
16462
|
|
|
16240
|
-
},{"./avaliador-sintatico-interface":
|
|
16241
|
-
"use strict";
|
|
16242
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16243
|
-
|
|
16244
|
-
},{}],150:[function(require,module,exports){
|
|
16463
|
+
},{"./avaliador-sintatico-interface":139,"./componente-modulo-classe-interface":140,"./componente-modulo-funcao-interface":141,"./construtos":142,"./erros":146,"./estilizador-comum-interface":147,"./formatador-comum-interface":148,"./interpretador-com-depuracao-interface":150,"./interpretador-interface":151,"./lexador-interface":152,"./modulo-interface":153,"./parametro-interface":154,"./pilha-interface":155,"./primitiva-interface":156,"./resolvedor-interface":157,"./resultado-parcial-interpretador-interface":158,"./retornos":159,"./retornos/retorno-execucao-interface":162,"./simbolo-interface":165,"./tradutor-interface":166,"./variavel-interface":167,"./visitante-comum-interface":168,"./visitante-delegua-interface":169}],150:[function(require,module,exports){
|
|
16245
16464
|
"use strict";
|
|
16246
16465
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16247
16466
|
|
|
@@ -16275,6 +16494,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
16275
16494
|
|
|
16276
16495
|
},{}],158:[function(require,module,exports){
|
|
16277
16496
|
"use strict";
|
|
16497
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16498
|
+
|
|
16499
|
+
},{}],159:[function(require,module,exports){
|
|
16500
|
+
"use strict";
|
|
16278
16501
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16279
16502
|
if (k2 === undefined) k2 = k;
|
|
16280
16503
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -16296,11 +16519,7 @@ __exportStar(require("./retorno-execucao-interface"), exports);
|
|
|
16296
16519
|
__exportStar(require("./retorno-interpretador-interface"), exports);
|
|
16297
16520
|
__exportStar(require("./retorno-lexador"), exports);
|
|
16298
16521
|
|
|
16299
|
-
},{"./retorno-analisador-semantico":
|
|
16300
|
-
"use strict";
|
|
16301
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16302
|
-
|
|
16303
|
-
},{}],160:[function(require,module,exports){
|
|
16522
|
+
},{"./retorno-analisador-semantico":160,"./retorno-avaliador-sintatico":161,"./retorno-execucao-interface":162,"./retorno-interpretador-interface":163,"./retorno-lexador":164}],160:[function(require,module,exports){
|
|
16304
16523
|
"use strict";
|
|
16305
16524
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16306
16525
|
|
|
@@ -16338,6 +16557,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
16338
16557
|
|
|
16339
16558
|
},{}],169:[function(require,module,exports){
|
|
16340
16559
|
"use strict";
|
|
16560
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16561
|
+
|
|
16562
|
+
},{}],170:[function(require,module,exports){
|
|
16563
|
+
"use strict";
|
|
16341
16564
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16342
16565
|
if (k2 === undefined) k2 = k;
|
|
16343
16566
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -16772,7 +16995,7 @@ function obterAjudaFuncaoPadrao(funcaoPadrao) {
|
|
|
16772
16995
|
}
|
|
16773
16996
|
}
|
|
16774
16997
|
|
|
16775
|
-
},{"../bibliotecas/biblioteca-global":27,"../construtos":62,"./estruturas/delegua-funcao":
|
|
16998
|
+
},{"../bibliotecas/biblioteca-global":27,"../construtos":62,"./estruturas/delegua-funcao":176,"./estruturas/descritor-tipo-classe":177,"./estruturas/funcao-padrao":178,"./estruturas/objeto-delegua-classe":184}],171:[function(require,module,exports){
|
|
16776
16999
|
"use strict";
|
|
16777
17000
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16778
17001
|
exports.EspacoMemoria = void 0;
|
|
@@ -16797,7 +17020,7 @@ class EspacoMemoria {
|
|
|
16797
17020
|
}
|
|
16798
17021
|
exports.EspacoMemoria = EspacoMemoria;
|
|
16799
17022
|
|
|
16800
|
-
},{}],
|
|
17023
|
+
},{}],172:[function(require,module,exports){
|
|
16801
17024
|
"use strict";
|
|
16802
17025
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16803
17026
|
exports.Chamavel = void 0;
|
|
@@ -16811,7 +17034,7 @@ class Chamavel {
|
|
|
16811
17034
|
}
|
|
16812
17035
|
exports.Chamavel = Chamavel;
|
|
16813
17036
|
|
|
16814
|
-
},{}],
|
|
17037
|
+
},{}],173:[function(require,module,exports){
|
|
16815
17038
|
"use strict";
|
|
16816
17039
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16817
17040
|
exports.ClasseDeModulo = void 0;
|
|
@@ -16832,7 +17055,7 @@ class ClasseDeModulo extends chamavel_1.Chamavel {
|
|
|
16832
17055
|
}
|
|
16833
17056
|
exports.ClasseDeModulo = ClasseDeModulo;
|
|
16834
17057
|
|
|
16835
|
-
},{"./chamavel":
|
|
17058
|
+
},{"./chamavel":172}],174:[function(require,module,exports){
|
|
16836
17059
|
"use strict";
|
|
16837
17060
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16838
17061
|
exports.ClassePadrao = void 0;
|
|
@@ -16873,7 +17096,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
|
|
|
16873
17096
|
}
|
|
16874
17097
|
exports.ClassePadrao = ClassePadrao;
|
|
16875
17098
|
|
|
16876
|
-
},{"./chamavel":
|
|
17099
|
+
},{"./chamavel":172}],175:[function(require,module,exports){
|
|
16877
17100
|
"use strict";
|
|
16878
17101
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16879
17102
|
exports.DeleguaFuncaoNativa = void 0;
|
|
@@ -16917,13 +17140,14 @@ class DeleguaFuncaoNativa extends delegua_funcao_1.DeleguaFuncao {
|
|
|
16917
17140
|
}
|
|
16918
17141
|
exports.DeleguaFuncaoNativa = DeleguaFuncaoNativa;
|
|
16919
17142
|
|
|
16920
|
-
},{"./delegua-funcao":
|
|
17143
|
+
},{"./delegua-funcao":176}],176:[function(require,module,exports){
|
|
16921
17144
|
"use strict";
|
|
16922
17145
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16923
17146
|
exports.DeleguaFuncao = void 0;
|
|
16924
17147
|
const chamavel_1 = require("./chamavel");
|
|
16925
17148
|
const espaco_memoria_1 = require("../espaco-memoria");
|
|
16926
17149
|
const quebras_1 = require("../../quebras");
|
|
17150
|
+
const objeto_delegua_classe_1 = require("./objeto-delegua-classe");
|
|
16927
17151
|
const declaracoes_1 = require("../../declaracoes");
|
|
16928
17152
|
/**
|
|
16929
17153
|
* Qualquer função declarada em código é uma DeleguaFuncao.
|
|
@@ -17024,7 +17248,7 @@ class DeleguaFuncao extends chamavel_1.Chamavel {
|
|
|
17024
17248
|
if (this.instancia !== undefined) {
|
|
17025
17249
|
ambiente.valores['isto'] = {
|
|
17026
17250
|
valor: this.instancia,
|
|
17027
|
-
tipo: 'objeto',
|
|
17251
|
+
tipo: this.instancia instanceof objeto_delegua_classe_1.ObjetoDeleguaClasse ? 'objeto' : tipoDeDados(this.instancia),
|
|
17028
17252
|
imutavel: false,
|
|
17029
17253
|
};
|
|
17030
17254
|
}
|
|
@@ -17034,7 +17258,7 @@ class DeleguaFuncao extends chamavel_1.Chamavel {
|
|
|
17034
17258
|
interpretador.proximoEscopo = 'funcao';
|
|
17035
17259
|
// Rastrear a classe atual em execução para verificação de acesso.
|
|
17036
17260
|
const classeAnteriorEmExecucao = interpretador.classeAtualEmExecucao;
|
|
17037
|
-
if (this.instancia
|
|
17261
|
+
if (this.instancia instanceof objeto_delegua_classe_1.ObjetoDeleguaClasse) {
|
|
17038
17262
|
interpretador.classeAtualEmExecucao = this.instancia.classe;
|
|
17039
17263
|
}
|
|
17040
17264
|
let retornoBloco;
|
|
@@ -17072,10 +17296,33 @@ class DeleguaFuncao extends chamavel_1.Chamavel {
|
|
|
17072
17296
|
funcao.documentacao = this.documentacao;
|
|
17073
17297
|
return funcao;
|
|
17074
17298
|
}
|
|
17299
|
+
funcaoPorExtensao(valor) {
|
|
17300
|
+
const funcao = new DeleguaFuncao(this.nome, this.declaracao, valor, false);
|
|
17301
|
+
funcao.documentacao = this.documentacao;
|
|
17302
|
+
return funcao;
|
|
17303
|
+
}
|
|
17075
17304
|
}
|
|
17076
17305
|
exports.DeleguaFuncao = DeleguaFuncao;
|
|
17306
|
+
/**
|
|
17307
|
+
* Mapeia o tipo JS de um valor primitivo para o nome de tipo de Delégua.
|
|
17308
|
+
*/
|
|
17309
|
+
function tipoDeDados(valor) {
|
|
17310
|
+
if (Array.isArray(valor))
|
|
17311
|
+
return 'vetor';
|
|
17312
|
+
switch (typeof valor) {
|
|
17313
|
+
case 'number':
|
|
17314
|
+
case 'bigint':
|
|
17315
|
+
return 'número';
|
|
17316
|
+
case 'string':
|
|
17317
|
+
return 'texto';
|
|
17318
|
+
case 'boolean':
|
|
17319
|
+
return 'lógico';
|
|
17320
|
+
default:
|
|
17321
|
+
return 'objeto';
|
|
17322
|
+
}
|
|
17323
|
+
}
|
|
17077
17324
|
|
|
17078
|
-
},{"../../declaracoes":
|
|
17325
|
+
},{"../../declaracoes":110,"../../quebras":216,"../espaco-memoria":171,"./chamavel":172,"./objeto-delegua-classe":184}],177:[function(require,module,exports){
|
|
17079
17326
|
"use strict";
|
|
17080
17327
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17081
17328
|
exports.DescritorTipoClasse = void 0;
|
|
@@ -17330,7 +17577,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
|
|
|
17330
17577
|
}
|
|
17331
17578
|
exports.DescritorTipoClasse = DescritorTipoClasse;
|
|
17332
17579
|
|
|
17333
|
-
},{"../../excecoes":
|
|
17580
|
+
},{"../../excecoes":131,"./chamavel":172,"./metodo-polimorfico":180,"./objeto-delegua-classe":184}],178:[function(require,module,exports){
|
|
17334
17581
|
"use strict";
|
|
17335
17582
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17336
17583
|
exports.FuncaoPadrao = void 0;
|
|
@@ -17367,7 +17614,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
|
|
|
17367
17614
|
}
|
|
17368
17615
|
exports.FuncaoPadrao = FuncaoPadrao;
|
|
17369
17616
|
|
|
17370
|
-
},{"./chamavel":
|
|
17617
|
+
},{"./chamavel":172}],179:[function(require,module,exports){
|
|
17371
17618
|
"use strict";
|
|
17372
17619
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
17373
17620
|
if (k2 === undefined) k2 = k;
|
|
@@ -17399,7 +17646,7 @@ __exportStar(require("./objeto-delegua-classe"), exports);
|
|
|
17399
17646
|
__exportStar(require("./objeto-padrao"), exports);
|
|
17400
17647
|
__exportStar(require("./referencia-montao"), exports);
|
|
17401
17648
|
|
|
17402
|
-
},{"./chamavel":
|
|
17649
|
+
},{"./chamavel":172,"./classe-de-modulo":173,"./classe-padrao":174,"./delegua-funcao":176,"./delegua-funcao-nativa":175,"./descritor-tipo-classe":177,"./funcao-padrao":178,"./metodo-polimorfico":180,"./metodo-primitiva":181,"./modulo":182,"./objeto-base":183,"./objeto-delegua-classe":184,"./objeto-padrao":185,"./referencia-montao":186}],180:[function(require,module,exports){
|
|
17403
17650
|
"use strict";
|
|
17404
17651
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17405
17652
|
exports.MetodoPolimorfico = void 0;
|
|
@@ -17578,7 +17825,7 @@ class MetodoPolimorfico extends chamavel_1.Chamavel {
|
|
|
17578
17825
|
}
|
|
17579
17826
|
exports.MetodoPolimorfico = MetodoPolimorfico;
|
|
17580
17827
|
|
|
17581
|
-
},{"../../excecoes":
|
|
17828
|
+
},{"../../excecoes":131,"../../inferenciador":137,"./chamavel":172}],181:[function(require,module,exports){
|
|
17582
17829
|
"use strict";
|
|
17583
17830
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17584
17831
|
exports.MetodoPrimitiva = void 0;
|
|
@@ -17624,7 +17871,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
|
|
|
17624
17871
|
}
|
|
17625
17872
|
exports.MetodoPrimitiva = MetodoPrimitiva;
|
|
17626
17873
|
|
|
17627
|
-
},{"./chamavel":
|
|
17874
|
+
},{"./chamavel":172}],182:[function(require,module,exports){
|
|
17628
17875
|
"use strict";
|
|
17629
17876
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17630
17877
|
exports.DeleguaModulo = void 0;
|
|
@@ -17650,7 +17897,7 @@ class DeleguaModulo {
|
|
|
17650
17897
|
}
|
|
17651
17898
|
exports.DeleguaModulo = DeleguaModulo;
|
|
17652
17899
|
|
|
17653
|
-
},{}],
|
|
17900
|
+
},{}],183:[function(require,module,exports){
|
|
17654
17901
|
"use strict";
|
|
17655
17902
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17656
17903
|
exports.OBJETO_BASE = void 0;
|
|
@@ -17722,7 +17969,7 @@ function criarDescritorObjeto() {
|
|
|
17722
17969
|
}
|
|
17723
17970
|
exports.OBJETO_BASE = criarDescritorObjeto();
|
|
17724
17971
|
|
|
17725
|
-
},{"./delegua-funcao-nativa":
|
|
17972
|
+
},{"./delegua-funcao-nativa":175,"./descritor-tipo-classe":177}],184:[function(require,module,exports){
|
|
17726
17973
|
"use strict";
|
|
17727
17974
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17728
17975
|
exports.ObjetoDeleguaClasse = void 0;
|
|
@@ -17882,7 +18129,7 @@ class ObjetoDeleguaClasse {
|
|
|
17882
18129
|
}
|
|
17883
18130
|
exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
|
|
17884
18131
|
|
|
17885
|
-
},{"../../excecoes":
|
|
18132
|
+
},{"../../excecoes":131}],185:[function(require,module,exports){
|
|
17886
18133
|
"use strict";
|
|
17887
18134
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17888
18135
|
exports.ObjetoPadrao = void 0;
|
|
@@ -17916,7 +18163,7 @@ class ObjetoPadrao {
|
|
|
17916
18163
|
}
|
|
17917
18164
|
exports.ObjetoPadrao = ObjetoPadrao;
|
|
17918
18165
|
|
|
17919
|
-
},{}],
|
|
18166
|
+
},{}],186:[function(require,module,exports){
|
|
17920
18167
|
"use strict";
|
|
17921
18168
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17922
18169
|
exports.ReferenciaMontao = void 0;
|
|
@@ -17941,7 +18188,7 @@ class ReferenciaMontao {
|
|
|
17941
18188
|
}
|
|
17942
18189
|
exports.ReferenciaMontao = ReferenciaMontao;
|
|
17943
18190
|
|
|
17944
|
-
},{}],
|
|
18191
|
+
},{}],187:[function(require,module,exports){
|
|
17945
18192
|
"use strict";
|
|
17946
18193
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
17947
18194
|
if (k2 === undefined) k2 = k;
|
|
@@ -17961,7 +18208,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17961
18208
|
__exportStar(require("./interpretador"), exports);
|
|
17962
18209
|
__exportStar(require("./interpretador-base"), exports);
|
|
17963
18210
|
|
|
17964
|
-
},{"./interpretador":
|
|
18211
|
+
},{"./interpretador":189,"./interpretador-base":188}],188:[function(require,module,exports){
|
|
17965
18212
|
(function (process,setImmediate){(function (){
|
|
17966
18213
|
"use strict";
|
|
17967
18214
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
@@ -18003,6 +18250,10 @@ class InterpretadorBase {
|
|
|
18003
18250
|
this.interfaceDeEntrada = null; // Originalmente é `readline.Interface`
|
|
18004
18251
|
this.interfaceEntradaSaida = null;
|
|
18005
18252
|
this.emDeclaracaoTente = false;
|
|
18253
|
+
// typeName → methodName → DeleguaFuncao
|
|
18254
|
+
this.extensoesGlobais = new Map();
|
|
18255
|
+
// hashArquivo → typeName → methodName → DeleguaFuncao
|
|
18256
|
+
this.extensoesModulo = new Map();
|
|
18006
18257
|
this.microLexador = new lexador_1.MicroLexador();
|
|
18007
18258
|
this.microAvaliadorSintatico = new avaliador_sintatico_1.MicroAvaliadorSintatico();
|
|
18008
18259
|
this.regexInterpolacao = /\${(.*?)}/g;
|
|
@@ -18292,22 +18543,43 @@ class InterpretadorBase {
|
|
|
18292
18543
|
*/
|
|
18293
18544
|
async resolverInterpolacoes(textoOriginal, linha) {
|
|
18294
18545
|
const variaveis = textoOriginal.match(this.regexInterpolacao);
|
|
18295
|
-
|
|
18546
|
+
return await Promise.all(variaveis.map(async (s) => {
|
|
18547
|
+
var _a, _b, _c, _d;
|
|
18296
18548
|
const expressaoInterpolacao = s.replace(/[\$\{\}]*/gm, '');
|
|
18297
|
-
|
|
18298
|
-
|
|
18299
|
-
|
|
18300
|
-
|
|
18301
|
-
resultadoMicroAvaliadorSintatico
|
|
18302
|
-
|
|
18303
|
-
|
|
18304
|
-
|
|
18305
|
-
|
|
18306
|
-
|
|
18307
|
-
|
|
18308
|
-
|
|
18309
|
-
|
|
18310
|
-
|
|
18549
|
+
const microLexador = this.microLexador.mapear(expressaoInterpolacao);
|
|
18550
|
+
let declaracoes = [];
|
|
18551
|
+
try {
|
|
18552
|
+
const resultadoMicroAvaliadorSintatico = this.microAvaliadorSintatico.analisar(microLexador, linha);
|
|
18553
|
+
for (const erro of resultadoMicroAvaliadorSintatico.erros) {
|
|
18554
|
+
this.erros.push({
|
|
18555
|
+
erroInterno: erro,
|
|
18556
|
+
linha: (_a = erro.linha) !== null && _a !== void 0 ? _a : linha,
|
|
18557
|
+
hashArquivo: (_b = erro.hashArquivo) !== null && _b !== void 0 ? _b : -1,
|
|
18558
|
+
});
|
|
18559
|
+
}
|
|
18560
|
+
declaracoes = resultadoMicroAvaliadorSintatico.declaracoes;
|
|
18561
|
+
}
|
|
18562
|
+
catch (erroAvaliador) {
|
|
18563
|
+
this.erros.push({
|
|
18564
|
+
erroInterno: erroAvaliador,
|
|
18565
|
+
linha: (_c = erroAvaliador.linha) !== null && _c !== void 0 ? _c : linha,
|
|
18566
|
+
hashArquivo: (_d = erroAvaliador.hashArquivo) !== null && _d !== void 0 ? _d : -1,
|
|
18567
|
+
});
|
|
18568
|
+
}
|
|
18569
|
+
let valor = declaracoes.length > 0 ? await this.avaliar(declaracoes[0]) : '';
|
|
18570
|
+
const instancia = valor instanceof estruturas_1.ObjetoDeleguaClasse
|
|
18571
|
+
? valor
|
|
18572
|
+
: (valor === null || valor === void 0 ? void 0 : valor.valor) instanceof estruturas_1.ObjetoDeleguaClasse
|
|
18573
|
+
? valor.valor
|
|
18574
|
+
: null;
|
|
18575
|
+
if (instancia) {
|
|
18576
|
+
const metodoParaTexto = instancia.classe.encontrarMetodo('paraTexto');
|
|
18577
|
+
if (metodoParaTexto) {
|
|
18578
|
+
const funcaoBound = metodoParaTexto.funcaoPorMetodoDeClasse(instancia);
|
|
18579
|
+
valor = await funcaoBound.chamar(this, []);
|
|
18580
|
+
}
|
|
18581
|
+
}
|
|
18582
|
+
return { expressaoInterpolacao, valor };
|
|
18311
18583
|
}));
|
|
18312
18584
|
}
|
|
18313
18585
|
async visitarExpressaoLiteral(expressao) {
|
|
@@ -19584,6 +19856,56 @@ class InterpretadorBase {
|
|
|
19584
19856
|
// São contratos verificados em tempo de análise sintática.
|
|
19585
19857
|
return Promise.resolve();
|
|
19586
19858
|
}
|
|
19859
|
+
/**
|
|
19860
|
+
* Procura um método de extensão nos registros de módulo e global,
|
|
19861
|
+
* percorrendo os tipos na ordem indicada (específico antes de base).
|
|
19862
|
+
*/
|
|
19863
|
+
encontrarMetodoExtensao(tiposParaVerificar, nomeMetodo, hashArquivo) {
|
|
19864
|
+
var _a, _b;
|
|
19865
|
+
// Extensões module-scoped têm prioridade sobre as globais.
|
|
19866
|
+
const extensoesDoModulo = this.extensoesModulo.get(hashArquivo);
|
|
19867
|
+
if (extensoesDoModulo) {
|
|
19868
|
+
for (const tipo of tiposParaVerificar) {
|
|
19869
|
+
const metodo = (_a = extensoesDoModulo.get(tipo)) === null || _a === void 0 ? void 0 : _a.get(nomeMetodo);
|
|
19870
|
+
if (metodo)
|
|
19871
|
+
return metodo;
|
|
19872
|
+
}
|
|
19873
|
+
}
|
|
19874
|
+
for (const tipo of tiposParaVerificar) {
|
|
19875
|
+
const metodo = (_b = this.extensoesGlobais.get(tipo)) === null || _b === void 0 ? void 0 : _b.get(nomeMetodo);
|
|
19876
|
+
if (metodo)
|
|
19877
|
+
return metodo;
|
|
19878
|
+
}
|
|
19879
|
+
return undefined;
|
|
19880
|
+
}
|
|
19881
|
+
/**
|
|
19882
|
+
* Registra os métodos de uma declaração de extensão nos registros
|
|
19883
|
+
* de extensão do interpretador.
|
|
19884
|
+
*/
|
|
19885
|
+
async visitarDeclaracaoExtensao(declaracao) {
|
|
19886
|
+
const tipoNome = declaracao.simboloTipo.lexema;
|
|
19887
|
+
for (const metodoDeclarado of declaracao.metodos) {
|
|
19888
|
+
const nomeMetodo = metodoDeclarado.simbolo.lexema;
|
|
19889
|
+
const funcao = new estruturas_1.DeleguaFuncao(nomeMetodo, metodoDeclarado.funcao);
|
|
19890
|
+
if (declaracao.ehGlobal) {
|
|
19891
|
+
if (!this.extensoesGlobais.has(tipoNome)) {
|
|
19892
|
+
this.extensoesGlobais.set(tipoNome, new Map());
|
|
19893
|
+
}
|
|
19894
|
+
this.extensoesGlobais.get(tipoNome).set(nomeMetodo, funcao);
|
|
19895
|
+
}
|
|
19896
|
+
else {
|
|
19897
|
+
const hash = declaracao.hashArquivo;
|
|
19898
|
+
if (!this.extensoesModulo.has(hash)) {
|
|
19899
|
+
this.extensoesModulo.set(hash, new Map());
|
|
19900
|
+
}
|
|
19901
|
+
const mapa = this.extensoesModulo.get(hash);
|
|
19902
|
+
if (!mapa.has(tipoNome)) {
|
|
19903
|
+
mapa.set(tipoNome, new Map());
|
|
19904
|
+
}
|
|
19905
|
+
mapa.get(tipoNome).set(nomeMetodo, funcao);
|
|
19906
|
+
}
|
|
19907
|
+
}
|
|
19908
|
+
}
|
|
19587
19909
|
/**
|
|
19588
19910
|
* Executa um acesso a método, normalmente de um objeto de classe.
|
|
19589
19911
|
* @param {AcessoMetodoOuPropriedade} expressao A expressão de acesso.
|
|
@@ -20069,7 +20391,7 @@ class InterpretadorBase {
|
|
|
20069
20391
|
exports.InterpretadorBase = InterpretadorBase;
|
|
20070
20392
|
|
|
20071
20393
|
}).call(this)}).call(this,require('_process'),require("timers").setImmediate)
|
|
20072
|
-
},{"../avaliador-sintatico":21,"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../excecoes":
|
|
20394
|
+
},{"../avaliador-sintatico":21,"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../excecoes":131,"../inferenciador":137,"../lexador":207,"../quebras":216,"../tipos-de-dados/delegua":217,"../tipos-de-dados/primitivos":219,"../tipos-de-simbolos/delegua":222,"./espaco-memoria":171,"./estruturas":179,"./estruturas/metodo-primitiva":181,"./pilha-escopos-execucao":191,"_process":467,"browser-process-hrtime":413,"timers":470}],189:[function(require,module,exports){
|
|
20073
20395
|
"use strict";
|
|
20074
20396
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
20075
20397
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -20578,7 +20900,16 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
20578
20900
|
}
|
|
20579
20901
|
const objeto = this.resolverValor(variavelObjeto);
|
|
20580
20902
|
if (objeto.constructor && objeto.constructor === estruturas_1.ObjetoDeleguaClasse) {
|
|
20581
|
-
|
|
20903
|
+
try {
|
|
20904
|
+
return objeto.obterMetodo(expressao.nomeMetodo);
|
|
20905
|
+
}
|
|
20906
|
+
catch (e) {
|
|
20907
|
+
const nomeClasse = objeto.classe.simboloOriginal.lexema;
|
|
20908
|
+
const funcaoExt = this.encontrarMetodoExtensao([nomeClasse, 'objeto'], expressao.nomeMetodo, this.hashArquivoDeclaracaoAtual);
|
|
20909
|
+
if (funcaoExt)
|
|
20910
|
+
return funcaoExt.funcaoPorExtensao(objeto);
|
|
20911
|
+
throw e;
|
|
20912
|
+
}
|
|
20582
20913
|
}
|
|
20583
20914
|
if (objeto instanceof construtos_1.TuplaN || objeto.constructor.name === 'TuplaN') {
|
|
20584
20915
|
const metodoDePrimitivaTupla = primitivas_tupla_1.default[expressao.nomeMetodo];
|
|
@@ -20621,24 +20952,49 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
20621
20952
|
case delegua_1.default.INTEIRO:
|
|
20622
20953
|
case delegua_1.default.NUMERO:
|
|
20623
20954
|
case delegua_1.default.NÚMERO:
|
|
20624
|
-
|
|
20625
|
-
|
|
20626
|
-
|
|
20955
|
+
if (expressao.nomeMetodo in primitivas_numero_1.default) {
|
|
20956
|
+
const metodoDePrimitivaNumero = primitivas_numero_1.default[expressao.nomeMetodo].implementacao;
|
|
20957
|
+
if (metodoDePrimitivaNumero) {
|
|
20958
|
+
return new estruturas_1.MetodoPrimitiva(nomeObjeto, objeto, metodoDePrimitivaNumero, expressao.nomeMetodo, tipoObjeto);
|
|
20959
|
+
}
|
|
20960
|
+
}
|
|
20961
|
+
else {
|
|
20962
|
+
const funcaoExt = this.encontrarMetodoExtensao(['número', 'objeto'], expressao.nomeMetodo, this.hashArquivoDeclaracaoAtual);
|
|
20963
|
+
if (funcaoExt)
|
|
20964
|
+
return funcaoExt.funcaoPorExtensao(objeto);
|
|
20627
20965
|
}
|
|
20628
20966
|
break;
|
|
20629
20967
|
case delegua_1.default.TEXTO:
|
|
20630
|
-
|
|
20631
|
-
|
|
20632
|
-
|
|
20968
|
+
if (expressao.nomeMetodo in primitivas_texto_1.default) {
|
|
20969
|
+
const metodoDePrimitivaTexto = primitivas_texto_1.default[expressao.nomeMetodo].implementacao;
|
|
20970
|
+
if (metodoDePrimitivaTexto) {
|
|
20971
|
+
return new estruturas_1.MetodoPrimitiva(nomeObjeto, objeto, metodoDePrimitivaTexto, expressao.nomeMetodo, 'texto');
|
|
20972
|
+
}
|
|
20973
|
+
}
|
|
20974
|
+
else {
|
|
20975
|
+
const funcaoExt = this.encontrarMetodoExtensao(['texto', 'objeto'], expressao.nomeMetodo, this.hashArquivoDeclaracaoAtual);
|
|
20976
|
+
if (funcaoExt)
|
|
20977
|
+
return funcaoExt.funcaoPorExtensao(objeto);
|
|
20633
20978
|
}
|
|
20634
20979
|
break;
|
|
20635
20980
|
case delegua_1.default.VETOR:
|
|
20981
|
+
case delegua_1.default.VETOR_INTEIRO:
|
|
20982
|
+
case delegua_1.default.VETOR_LOGICO:
|
|
20983
|
+
case delegua_1.default.VETOR_LÓGICO:
|
|
20636
20984
|
case delegua_1.default.VETOR_NUMERO:
|
|
20637
20985
|
case delegua_1.default.VETOR_NÚMERO:
|
|
20986
|
+
case delegua_1.default.VETOR_QUALQUER:
|
|
20638
20987
|
case delegua_1.default.VETOR_TEXTO:
|
|
20639
|
-
|
|
20640
|
-
|
|
20641
|
-
|
|
20988
|
+
if (expressao.nomeMetodo in primitivas_vetor_1.default) {
|
|
20989
|
+
const metodoDePrimitivaVetor = primitivas_vetor_1.default[expressao.nomeMetodo].implementacao;
|
|
20990
|
+
if (metodoDePrimitivaVetor) {
|
|
20991
|
+
return new estruturas_1.MetodoPrimitiva(nomeObjeto, objeto, metodoDePrimitivaVetor, expressao.nomeMetodo, tipoObjeto);
|
|
20992
|
+
}
|
|
20993
|
+
}
|
|
20994
|
+
else {
|
|
20995
|
+
const funcaoExt = this.encontrarMetodoExtensao(['vetor', 'objeto'], expressao.nomeMetodo, this.hashArquivoDeclaracaoAtual);
|
|
20996
|
+
if (funcaoExt)
|
|
20997
|
+
return funcaoExt.funcaoPorExtensao(objeto);
|
|
20642
20998
|
}
|
|
20643
20999
|
break;
|
|
20644
21000
|
}
|
|
@@ -20688,7 +21044,16 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
20688
21044
|
return await descritorTipoClasse.obterEstatico(expressao.simbolo.lexema, this);
|
|
20689
21045
|
}
|
|
20690
21046
|
if (objeto.constructor === estruturas_1.ObjetoDeleguaClasse) {
|
|
20691
|
-
|
|
21047
|
+
try {
|
|
21048
|
+
return await objeto.obter(expressao.simbolo, this);
|
|
21049
|
+
}
|
|
21050
|
+
catch (_b) {
|
|
21051
|
+
const nomeClasse = objeto.classe.simboloOriginal.lexema;
|
|
21052
|
+
const funcaoExt = this.encontrarMetodoExtensao([nomeClasse, 'objeto'], expressao.simbolo.lexema, this.hashArquivoDeclaracaoAtual);
|
|
21053
|
+
if (funcaoExt)
|
|
21054
|
+
return funcaoExt.funcaoPorExtensao(objeto);
|
|
21055
|
+
throw new excecoes_1.ErroEmTempoDeExecucao(expressao.simbolo, `Método ou propriedade '${expressao.simbolo.lexema}' não encontrado em '${nomeClasse}'.`, expressao.linha);
|
|
21056
|
+
}
|
|
20692
21057
|
}
|
|
20693
21058
|
if (objeto instanceof construtos_1.TuplaN || objeto.constructor.name === 'TuplaN') {
|
|
20694
21059
|
const metodoDePrimitivaTupla = primitivas_tupla_1.default[expressao.simbolo.lexema];
|
|
@@ -20707,6 +21072,9 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
20707
21072
|
// String do JavaScript, ou seja, primitiva de texto.
|
|
20708
21073
|
if (objeto.constructor === String) {
|
|
20709
21074
|
if (!(expressao.simbolo.lexema in primitivas_texto_1.default)) {
|
|
21075
|
+
const funcaoExt = this.encontrarMetodoExtensao(['texto', 'objeto'], expressao.simbolo.lexema, this.hashArquivoDeclaracaoAtual);
|
|
21076
|
+
if (funcaoExt)
|
|
21077
|
+
return funcaoExt.funcaoPorExtensao(objeto);
|
|
20710
21078
|
throw new excecoes_1.ErroEmTempoDeExecucao(expressao.simbolo, `Método de primitiva '${expressao.simbolo.lexema}' não existe para o tipo texto.`);
|
|
20711
21079
|
}
|
|
20712
21080
|
const metodoDePrimitivaTexto = primitivas_texto_1.default[expressao.simbolo.lexema].implementacao;
|
|
@@ -20727,8 +21095,11 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
20727
21095
|
switch (tipoObjeto) {
|
|
20728
21096
|
case delegua_1.default.INTEIRO:
|
|
20729
21097
|
case delegua_1.default.NUMERO:
|
|
20730
|
-
case delegua_1.default.NÚMERO:
|
|
21098
|
+
case delegua_1.default.NÚMERO: {
|
|
20731
21099
|
if (!(expressao.simbolo.lexema in primitivas_numero_1.default)) {
|
|
21100
|
+
const funcaoExt = this.encontrarMetodoExtensao(['número', 'objeto'], expressao.simbolo.lexema, this.hashArquivoDeclaracaoAtual);
|
|
21101
|
+
if (funcaoExt)
|
|
21102
|
+
return funcaoExt.funcaoPorExtensao(objeto);
|
|
20732
21103
|
throw new excecoes_1.ErroEmTempoDeExecucao(expressao.simbolo, `Método de primitiva '${expressao.simbolo.lexema}' não existe para o tipo ${tipoObjeto}.`);
|
|
20733
21104
|
}
|
|
20734
21105
|
const metodoDePrimitivaNumero = primitivas_numero_1.default[expressao.simbolo.lexema].implementacao;
|
|
@@ -20736,8 +21107,12 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
20736
21107
|
return new estruturas_1.MetodoPrimitiva(nomeObjeto, objeto, metodoDePrimitivaNumero, expressao.simbolo.lexema, 'número');
|
|
20737
21108
|
}
|
|
20738
21109
|
break;
|
|
20739
|
-
|
|
21110
|
+
}
|
|
21111
|
+
case delegua_1.default.TEXTO: {
|
|
20740
21112
|
if (!(expressao.simbolo.lexema in primitivas_texto_1.default)) {
|
|
21113
|
+
const funcaoExt = this.encontrarMetodoExtensao(['texto', 'objeto'], expressao.simbolo.lexema, this.hashArquivoDeclaracaoAtual);
|
|
21114
|
+
if (funcaoExt)
|
|
21115
|
+
return funcaoExt.funcaoPorExtensao(objeto);
|
|
20741
21116
|
throw new excecoes_1.ErroEmTempoDeExecucao(expressao.simbolo, `Método de primitiva '${expressao.simbolo.lexema}' não existe para o tipo ${tipoObjeto}.`);
|
|
20742
21117
|
}
|
|
20743
21118
|
const metodoDePrimitivaTexto = primitivas_texto_1.default[expressao.simbolo.lexema].implementacao;
|
|
@@ -20745,6 +21120,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
20745
21120
|
return new estruturas_1.MetodoPrimitiva(nomeObjeto, objeto, metodoDePrimitivaTexto, expressao.simbolo.lexema, 'texto');
|
|
20746
21121
|
}
|
|
20747
21122
|
break;
|
|
21123
|
+
}
|
|
20748
21124
|
case delegua_1.default.VETOR:
|
|
20749
21125
|
case delegua_1.default.VETOR_INTEIRO:
|
|
20750
21126
|
case delegua_1.default.VETOR_LOGICO:
|
|
@@ -20752,8 +21128,11 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
20752
21128
|
case delegua_1.default.VETOR_NUMERO:
|
|
20753
21129
|
case delegua_1.default.VETOR_NÚMERO:
|
|
20754
21130
|
case delegua_1.default.VETOR_QUALQUER:
|
|
20755
|
-
case delegua_1.default.VETOR_TEXTO:
|
|
21131
|
+
case delegua_1.default.VETOR_TEXTO: {
|
|
20756
21132
|
if (!(expressao.simbolo.lexema in primitivas_vetor_1.default)) {
|
|
21133
|
+
const funcaoExt = this.encontrarMetodoExtensao(['vetor', 'objeto'], expressao.simbolo.lexema, this.hashArquivoDeclaracaoAtual);
|
|
21134
|
+
if (funcaoExt)
|
|
21135
|
+
return funcaoExt.funcaoPorExtensao(objeto);
|
|
20757
21136
|
throw new excecoes_1.ErroEmTempoDeExecucao(expressao.simbolo, `Método de primitiva '${expressao.simbolo.lexema}' não existe para o tipo ${tipoObjeto}.`);
|
|
20758
21137
|
}
|
|
20759
21138
|
const metodoDePrimitivaVetor = primitivas_vetor_1.default[expressao.simbolo.lexema].implementacao;
|
|
@@ -20761,6 +21140,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
20761
21140
|
return new estruturas_1.MetodoPrimitiva(nomeObjeto, objeto, metodoDePrimitivaVetor, expressao.simbolo.lexema, tipoObjeto);
|
|
20762
21141
|
}
|
|
20763
21142
|
break;
|
|
21143
|
+
}
|
|
20764
21144
|
}
|
|
20765
21145
|
// Objeto de uma classe JavaScript regular (ou seja, com construtor e propriedades)
|
|
20766
21146
|
// que possua a propriedade.
|
|
@@ -20772,6 +21152,10 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
20772
21152
|
if (typeof objeto[expressao.simbolo.lexema] !== 'undefined') {
|
|
20773
21153
|
return objeto[expressao.simbolo.lexema];
|
|
20774
21154
|
}
|
|
21155
|
+
// Último recurso: extensões em 'objeto' (base universal).
|
|
21156
|
+
const funcaoExtObjeto = this.encontrarMetodoExtensao(['objeto'], expressao.simbolo.lexema, this.hashArquivoDeclaracaoAtual);
|
|
21157
|
+
if (funcaoExtObjeto)
|
|
21158
|
+
return funcaoExtObjeto.funcaoPorExtensao(objeto);
|
|
20775
21159
|
return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(null, `Método ou propriedade para objeto ou primitiva não encontrado: ${expressao.simbolo.lexema}.`, expressao.linha));
|
|
20776
21160
|
}
|
|
20777
21161
|
async visitarExpressaoAcessoPropriedade(expressao) {
|
|
@@ -21243,7 +21627,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
21243
21627
|
}
|
|
21244
21628
|
exports.Interpretador = Interpretador;
|
|
21245
21629
|
|
|
21246
|
-
},{"../bibliotecas/dialetos/pitugues/primitivas-tupla":28,"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-numero":30,"../bibliotecas/primitivas-texto":31,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../declaracoes":
|
|
21630
|
+
},{"../bibliotecas/dialetos/pitugues/primitivas-tupla":28,"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-numero":30,"../bibliotecas/primitivas-texto":31,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../declaracoes":110,"../excecoes":131,"../inferenciador":137,"../quebras":216,"../tipos-de-dados/delegua":217,"../tipos-de-dados/primitivos":219,"../tipos-de-simbolos/delegua":222,"./comum":170,"./estruturas":179,"./interpretador-base":188,"./montao":190}],190:[function(require,module,exports){
|
|
21247
21631
|
"use strict";
|
|
21248
21632
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21249
21633
|
exports.Montao = void 0;
|
|
@@ -21300,7 +21684,7 @@ class Montao {
|
|
|
21300
21684
|
}
|
|
21301
21685
|
exports.Montao = Montao;
|
|
21302
21686
|
|
|
21303
|
-
},{"../excecoes":
|
|
21687
|
+
},{"../excecoes":131,"../geracao-identificadores":135}],191:[function(require,module,exports){
|
|
21304
21688
|
"use strict";
|
|
21305
21689
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21306
21690
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21626,7 +22010,7 @@ class PilhaEscoposExecucao {
|
|
|
21626
22010
|
}
|
|
21627
22011
|
exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
|
|
21628
22012
|
|
|
21629
|
-
},{"../excecoes":
|
|
22013
|
+
},{"../excecoes":131,"../inferenciador":137,"../lexador":207,"../tipos-de-dados/delegua":217,"./estruturas":179}],192:[function(require,module,exports){
|
|
21630
22014
|
"use strict";
|
|
21631
22015
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
21632
22016
|
if (k2 === undefined) k2 = k;
|
|
@@ -21651,7 +22035,7 @@ __exportStar(require("./lexador-portugol-ipt"), exports);
|
|
|
21651
22035
|
__exportStar(require("./lexador-prisma"), exports);
|
|
21652
22036
|
__exportStar(require("./lexador-tenda"), exports);
|
|
21653
22037
|
|
|
21654
|
-
},{"./lexador-calango":
|
|
22038
|
+
},{"./lexador-calango":193,"./lexador-egua-classico":194,"./lexador-guarani":195,"./lexador-pitugues":196,"./lexador-portugol-ipt":197,"./lexador-prisma":198,"./lexador-tenda":199}],193:[function(require,module,exports){
|
|
21655
22039
|
"use strict";
|
|
21656
22040
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21657
22041
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21887,7 +22271,7 @@ class LexadorCalango {
|
|
|
21887
22271
|
}
|
|
21888
22272
|
exports.LexadorCalango = LexadorCalango;
|
|
21889
22273
|
|
|
21890
|
-
},{"../../tipos-de-simbolos/calango":
|
|
22274
|
+
},{"../../tipos-de-simbolos/calango":220,"../simbolo":215,"./palavras-reservadas/calango":200}],194:[function(require,module,exports){
|
|
21891
22275
|
"use strict";
|
|
21892
22276
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21893
22277
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -22180,7 +22564,7 @@ class LexadorEguaClassico {
|
|
|
22180
22564
|
}
|
|
22181
22565
|
exports.LexadorEguaClassico = LexadorEguaClassico;
|
|
22182
22566
|
|
|
22183
|
-
},{"../../tipos-de-simbolos/egua-classico":
|
|
22567
|
+
},{"../../tipos-de-simbolos/egua-classico":223,"../simbolo":215,"./palavras-reservadas/egua-classico":201}],195:[function(require,module,exports){
|
|
22184
22568
|
"use strict";
|
|
22185
22569
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
22186
22570
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -22299,7 +22683,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
|
|
|
22299
22683
|
}
|
|
22300
22684
|
exports.LexadorGuarani = LexadorGuarani;
|
|
22301
22685
|
|
|
22302
|
-
},{"../../tipos-de-simbolos/guarani":
|
|
22686
|
+
},{"../../tipos-de-simbolos/guarani":224,"../lexador-base":209,"./palavras-reservadas/guarani":202}],196:[function(require,module,exports){
|
|
22303
22687
|
"use strict";
|
|
22304
22688
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
22305
22689
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -22814,7 +23198,7 @@ class LexadorPitugues {
|
|
|
22814
23198
|
}
|
|
22815
23199
|
exports.LexadorPitugues = LexadorPitugues;
|
|
22816
23200
|
|
|
22817
|
-
},{"../../tipos-de-simbolos/pitugues":
|
|
23201
|
+
},{"../../tipos-de-simbolos/pitugues":226,"../simbolo":215,"./palavras-reservadas/pitugues":203,"browser-process-hrtime":413}],197:[function(require,module,exports){
|
|
22818
23202
|
"use strict";
|
|
22819
23203
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
22820
23204
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -23071,7 +23455,7 @@ class LexadorPortugolIpt {
|
|
|
23071
23455
|
}
|
|
23072
23456
|
exports.LexadorPortugolIpt = LexadorPortugolIpt;
|
|
23073
23457
|
|
|
23074
|
-
},{"../../tipos-de-simbolos/portugol-ipt":
|
|
23458
|
+
},{"../../tipos-de-simbolos/portugol-ipt":227,"../simbolo":215,"./palavras-reservadas/portugol-ipt":204}],198:[function(require,module,exports){
|
|
23075
23459
|
"use strict";
|
|
23076
23460
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
23077
23461
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -23432,7 +23816,7 @@ class LexadorPrisma {
|
|
|
23432
23816
|
}
|
|
23433
23817
|
exports.LexadorPrisma = LexadorPrisma;
|
|
23434
23818
|
|
|
23435
|
-
},{"../../tipos-de-simbolos/prisma":
|
|
23819
|
+
},{"../../tipos-de-simbolos/prisma":228,"../simbolo":215,"./palavras-reservadas/prisma":205,"browser-process-hrtime":413}],199:[function(require,module,exports){
|
|
23436
23820
|
"use strict";
|
|
23437
23821
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
23438
23822
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -23826,7 +24210,7 @@ class LexadorTenda {
|
|
|
23826
24210
|
}
|
|
23827
24211
|
exports.LexadorTenda = LexadorTenda;
|
|
23828
24212
|
|
|
23829
|
-
},{"../../tipos-de-simbolos/tenda":
|
|
24213
|
+
},{"../../tipos-de-simbolos/tenda":229,"../simbolo":215,"./palavras-reservadas/tenda":206,"browser-process-hrtime":413}],200:[function(require,module,exports){
|
|
23830
24214
|
"use strict";
|
|
23831
24215
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
23832
24216
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -23847,7 +24231,7 @@ exports.default = {
|
|
|
23847
24231
|
fimSe: calango_1.default.FIM_SE,
|
|
23848
24232
|
};
|
|
23849
24233
|
|
|
23850
|
-
},{"../../../tipos-de-simbolos/calango":
|
|
24234
|
+
},{"../../../tipos-de-simbolos/calango":220}],201:[function(require,module,exports){
|
|
23851
24235
|
"use strict";
|
|
23852
24236
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
23853
24237
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -23888,7 +24272,7 @@ exports.palavrasReservadas = {
|
|
|
23888
24272
|
verdadeiro: egua_classico_1.default.VERDADEIRO,
|
|
23889
24273
|
};
|
|
23890
24274
|
|
|
23891
|
-
},{"../../../tipos-de-simbolos/egua-classico":
|
|
24275
|
+
},{"../../../tipos-de-simbolos/egua-classico":223}],202:[function(require,module,exports){
|
|
23892
24276
|
"use strict";
|
|
23893
24277
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
23894
24278
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -23900,7 +24284,7 @@ exports.palavrasReservadas = {
|
|
|
23900
24284
|
hai: guarani_1.default.HAI,
|
|
23901
24285
|
};
|
|
23902
24286
|
|
|
23903
|
-
},{"../../../tipos-de-simbolos/guarani":
|
|
24287
|
+
},{"../../../tipos-de-simbolos/guarani":224}],203:[function(require,module,exports){
|
|
23904
24288
|
"use strict";
|
|
23905
24289
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
23906
24290
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -23964,7 +24348,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
23964
24348
|
verdadeiro: pitugues_1.default.VERDADEIRO,
|
|
23965
24349
|
};
|
|
23966
24350
|
|
|
23967
|
-
},{"../../../tipos-de-simbolos/pitugues":
|
|
24351
|
+
},{"../../../tipos-de-simbolos/pitugues":226}],204:[function(require,module,exports){
|
|
23968
24352
|
"use strict";
|
|
23969
24353
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
23970
24354
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -23986,7 +24370,7 @@ exports.palavrasReservadas = {
|
|
|
23986
24370
|
senão: portugol_ipt_1.default.SENAO,
|
|
23987
24371
|
};
|
|
23988
24372
|
|
|
23989
|
-
},{"../../../tipos-de-simbolos/portugol-ipt":
|
|
24373
|
+
},{"../../../tipos-de-simbolos/portugol-ipt":227}],205:[function(require,module,exports){
|
|
23990
24374
|
"use strict";
|
|
23991
24375
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
23992
24376
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -24034,7 +24418,7 @@ exports.palavrasReservadas = {
|
|
|
24034
24418
|
verdadeiro: prisma_1.default.VERDADEIRO,
|
|
24035
24419
|
};
|
|
24036
24420
|
|
|
24037
|
-
},{"../../../tipos-de-simbolos/prisma":
|
|
24421
|
+
},{"../../../tipos-de-simbolos/prisma":228}],206:[function(require,module,exports){
|
|
24038
24422
|
"use strict";
|
|
24039
24423
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
24040
24424
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -24092,7 +24476,7 @@ exports.palavrasReservadas = {
|
|
|
24092
24476
|
Texto: tenda_1.default.BIBLIOTECA_GLOBAL,
|
|
24093
24477
|
};
|
|
24094
24478
|
|
|
24095
|
-
},{"../../../tipos-de-simbolos/tenda":
|
|
24479
|
+
},{"../../../tipos-de-simbolos/tenda":229}],207:[function(require,module,exports){
|
|
24096
24480
|
"use strict";
|
|
24097
24481
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
24098
24482
|
if (k2 === undefined) k2 = k;
|
|
@@ -24115,7 +24499,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
|
|
|
24115
24499
|
__exportStar(require("./micro-lexador"), exports);
|
|
24116
24500
|
__exportStar(require("./simbolo"), exports);
|
|
24117
24501
|
|
|
24118
|
-
},{"./dialetos":
|
|
24502
|
+
},{"./dialetos":192,"./lexador":210,"./lexador-base-linha-unica":208,"./micro-lexador":213,"./simbolo":215}],208:[function(require,module,exports){
|
|
24119
24503
|
"use strict";
|
|
24120
24504
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24121
24505
|
exports.LexadorBaseLinhaUnica = void 0;
|
|
@@ -24204,7 +24588,7 @@ class LexadorBaseLinhaUnica {
|
|
|
24204
24588
|
}
|
|
24205
24589
|
exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
|
|
24206
24590
|
|
|
24207
|
-
},{"./simbolo":
|
|
24591
|
+
},{"./simbolo":215}],209:[function(require,module,exports){
|
|
24208
24592
|
"use strict";
|
|
24209
24593
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24210
24594
|
exports.LexadorBase = void 0;
|
|
@@ -24343,7 +24727,7 @@ class LexadorBase {
|
|
|
24343
24727
|
}
|
|
24344
24728
|
exports.LexadorBase = LexadorBase;
|
|
24345
24729
|
|
|
24346
|
-
},{"./simbolo":
|
|
24730
|
+
},{"./simbolo":215}],210:[function(require,module,exports){
|
|
24347
24731
|
"use strict";
|
|
24348
24732
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
24349
24733
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -24943,7 +25327,7 @@ class Lexador {
|
|
|
24943
25327
|
}
|
|
24944
25328
|
exports.Lexador = Lexador;
|
|
24945
25329
|
|
|
24946
|
-
},{"../tipos-de-simbolos/delegua":
|
|
25330
|
+
},{"../tipos-de-simbolos/delegua":222,"./palavras-reservadas":214,"./simbolo":215,"browser-process-hrtime":413}],211:[function(require,module,exports){
|
|
24947
25331
|
"use strict";
|
|
24948
25332
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
24949
25333
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -25127,7 +25511,7 @@ function pertenceAoParadigma(lexema, paradigma) {
|
|
|
25127
25511
|
return paradigmaLexema === paradigma;
|
|
25128
25512
|
}
|
|
25129
25513
|
|
|
25130
|
-
},{"../tipos-de-simbolos/delegua":
|
|
25514
|
+
},{"../tipos-de-simbolos/delegua":222}],212:[function(require,module,exports){
|
|
25131
25515
|
"use strict";
|
|
25132
25516
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25133
25517
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -25347,7 +25731,7 @@ class MicroLexadorPitugues {
|
|
|
25347
25731
|
}
|
|
25348
25732
|
exports.MicroLexadorPitugues = MicroLexadorPitugues;
|
|
25349
25733
|
|
|
25350
|
-
},{"../tipos-de-simbolos/pitugues":
|
|
25734
|
+
},{"../tipos-de-simbolos/pitugues":226,"./palavras-reservadas":214,"./simbolo":215}],213:[function(require,module,exports){
|
|
25351
25735
|
"use strict";
|
|
25352
25736
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25353
25737
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -25585,7 +25969,7 @@ class MicroLexador {
|
|
|
25585
25969
|
}
|
|
25586
25970
|
exports.MicroLexador = MicroLexador;
|
|
25587
25971
|
|
|
25588
|
-
},{"../tipos-de-simbolos/microgramaticas/delegua":
|
|
25972
|
+
},{"../tipos-de-simbolos/microgramaticas/delegua":225,"./palavras-reservadas":214,"./simbolo":215}],214:[function(require,module,exports){
|
|
25589
25973
|
"use strict";
|
|
25590
25974
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25591
25975
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -25612,6 +25996,8 @@ exports.palavrasReservadasDelegua = {
|
|
|
25612
25996
|
e: delegua_1.default.E,
|
|
25613
25997
|
em: delegua_1.default.EM,
|
|
25614
25998
|
enquanto: delegua_1.default.ENQUANTO,
|
|
25999
|
+
extensao: delegua_1.default.EXTENSAO,
|
|
26000
|
+
extensão: delegua_1.default.EXTENSAO,
|
|
25615
26001
|
estatica: delegua_1.default.ESTATICO,
|
|
25616
26002
|
estática: delegua_1.default.ESTATICO,
|
|
25617
26003
|
estatico: delegua_1.default.ESTATICO,
|
|
@@ -25680,7 +26066,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
25680
26066
|
verdadeiro: delegua_1.default.VERDADEIRO,
|
|
25681
26067
|
};
|
|
25682
26068
|
|
|
25683
|
-
},{"../tipos-de-simbolos/delegua":
|
|
26069
|
+
},{"../tipos-de-simbolos/delegua":222}],215:[function(require,module,exports){
|
|
25684
26070
|
"use strict";
|
|
25685
26071
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25686
26072
|
exports.Simbolo = void 0;
|
|
@@ -25700,7 +26086,7 @@ class Simbolo {
|
|
|
25700
26086
|
}
|
|
25701
26087
|
exports.Simbolo = Simbolo;
|
|
25702
26088
|
|
|
25703
|
-
},{}],
|
|
26089
|
+
},{}],216:[function(require,module,exports){
|
|
25704
26090
|
"use strict";
|
|
25705
26091
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25706
26092
|
exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
|
|
@@ -25725,7 +26111,7 @@ class ContinuarQuebra extends Quebra {
|
|
|
25725
26111
|
}
|
|
25726
26112
|
exports.ContinuarQuebra = ContinuarQuebra;
|
|
25727
26113
|
|
|
25728
|
-
},{}],
|
|
26114
|
+
},{}],217:[function(require,module,exports){
|
|
25729
26115
|
"use strict";
|
|
25730
26116
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25731
26117
|
exports.default = {
|
|
@@ -25759,7 +26145,7 @@ exports.default = {
|
|
|
25759
26145
|
VETOR_TEXTO: 'texto[]',
|
|
25760
26146
|
};
|
|
25761
26147
|
|
|
25762
|
-
},{}],
|
|
26148
|
+
},{}],218:[function(require,module,exports){
|
|
25763
26149
|
"use strict";
|
|
25764
26150
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25765
26151
|
exports.default = {
|
|
@@ -25789,7 +26175,7 @@ exports.default = {
|
|
|
25789
26175
|
VETOR_TEXTO: 'texto[]',
|
|
25790
26176
|
};
|
|
25791
26177
|
|
|
25792
|
-
},{}],
|
|
26178
|
+
},{}],219:[function(require,module,exports){
|
|
25793
26179
|
"use strict";
|
|
25794
26180
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25795
26181
|
exports.default = {
|
|
@@ -25808,7 +26194,7 @@ exports.default = {
|
|
|
25808
26194
|
TEXTO: 'string',
|
|
25809
26195
|
};
|
|
25810
26196
|
|
|
25811
|
-
},{}],
|
|
26197
|
+
},{}],220:[function(require,module,exports){
|
|
25812
26198
|
"use strict";
|
|
25813
26199
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25814
26200
|
exports.default = {
|
|
@@ -25852,7 +26238,7 @@ exports.default = {
|
|
|
25852
26238
|
VIRGULA: 'VIRGULA',
|
|
25853
26239
|
};
|
|
25854
26240
|
|
|
25855
|
-
},{}],
|
|
26241
|
+
},{}],221:[function(require,module,exports){
|
|
25856
26242
|
"use strict";
|
|
25857
26243
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25858
26244
|
exports.default = {
|
|
@@ -25879,7 +26265,7 @@ exports.default = {
|
|
|
25879
26265
|
VIRGULA: 'VIRGULA',
|
|
25880
26266
|
};
|
|
25881
26267
|
|
|
25882
|
-
},{}],
|
|
26268
|
+
},{}],222:[function(require,module,exports){
|
|
25883
26269
|
"use strict";
|
|
25884
26270
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25885
26271
|
exports.default = {
|
|
@@ -25915,6 +26301,7 @@ exports.default = {
|
|
|
25915
26301
|
DOIS_PONTOS: 'DOIS_PONTOS',
|
|
25916
26302
|
E: 'E',
|
|
25917
26303
|
ELVIS: 'ELVIS',
|
|
26304
|
+
EXTENSAO: 'EXTENSAO',
|
|
25918
26305
|
EM: 'EM',
|
|
25919
26306
|
ENQUANTO: 'ENQUANTO',
|
|
25920
26307
|
EOF: 'EOF',
|
|
@@ -25990,7 +26377,7 @@ exports.default = {
|
|
|
25990
26377
|
VIRGULA: 'VIRGULA',
|
|
25991
26378
|
};
|
|
25992
26379
|
|
|
25993
|
-
},{}],
|
|
26380
|
+
},{}],223:[function(require,module,exports){
|
|
25994
26381
|
"use strict";
|
|
25995
26382
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25996
26383
|
exports.default = {
|
|
@@ -26068,7 +26455,7 @@ exports.default = {
|
|
|
26068
26455
|
VIRGULA: 'VIRGULA',
|
|
26069
26456
|
};
|
|
26070
26457
|
|
|
26071
|
-
},{}],
|
|
26458
|
+
},{}],224:[function(require,module,exports){
|
|
26072
26459
|
"use strict";
|
|
26073
26460
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26074
26461
|
exports.default = {
|
|
@@ -26085,7 +26472,7 @@ exports.default = {
|
|
|
26085
26472
|
VIRGULA: 'VIRGULA',
|
|
26086
26473
|
};
|
|
26087
26474
|
|
|
26088
|
-
},{}],
|
|
26475
|
+
},{}],225:[function(require,module,exports){
|
|
26089
26476
|
"use strict";
|
|
26090
26477
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26091
26478
|
exports.default = {
|
|
@@ -26138,7 +26525,7 @@ exports.default = {
|
|
|
26138
26525
|
VIRGULA: 'VIRGULA',
|
|
26139
26526
|
};
|
|
26140
26527
|
|
|
26141
|
-
},{}],
|
|
26528
|
+
},{}],226:[function(require,module,exports){
|
|
26142
26529
|
"use strict";
|
|
26143
26530
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26144
26531
|
exports.default = {
|
|
@@ -26229,7 +26616,7 @@ exports.default = {
|
|
|
26229
26616
|
VIRGULA: 'VIRGULA',
|
|
26230
26617
|
};
|
|
26231
26618
|
|
|
26232
|
-
},{}],
|
|
26619
|
+
},{}],227:[function(require,module,exports){
|
|
26233
26620
|
"use strict";
|
|
26234
26621
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26235
26622
|
exports.default = {
|
|
@@ -26268,7 +26655,7 @@ exports.default = {
|
|
|
26268
26655
|
VIRGULA: 'VIRGULA',
|
|
26269
26656
|
};
|
|
26270
26657
|
|
|
26271
|
-
},{}],
|
|
26658
|
+
},{}],228:[function(require,module,exports){
|
|
26272
26659
|
"use strict";
|
|
26273
26660
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26274
26661
|
exports.default = {
|
|
@@ -26348,7 +26735,7 @@ exports.default = {
|
|
|
26348
26735
|
VIRGULA: 'VIRGULA',
|
|
26349
26736
|
};
|
|
26350
26737
|
|
|
26351
|
-
},{}],
|
|
26738
|
+
},{}],229:[function(require,module,exports){
|
|
26352
26739
|
"use strict";
|
|
26353
26740
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26354
26741
|
// Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
|
|
@@ -26443,7 +26830,7 @@ exports.default = {
|
|
|
26443
26830
|
VIRGULA: 'VIRGULA',
|
|
26444
26831
|
};
|
|
26445
26832
|
|
|
26446
|
-
},{}],
|
|
26833
|
+
},{}],230:[function(require,module,exports){
|
|
26447
26834
|
"use strict";
|
|
26448
26835
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
26449
26836
|
if (k2 === undefined) k2 = k;
|
|
@@ -26474,7 +26861,7 @@ __exportStar(require("./tradutor-reverso-python"), exports);
|
|
|
26474
26861
|
__exportStar(require("./tradutor-reverso-tenda"), exports);
|
|
26475
26862
|
__exportStar(require("./tradutor-ruby"), exports);
|
|
26476
26863
|
|
|
26477
|
-
},{"./tradutor-assembly-arm":
|
|
26864
|
+
},{"./tradutor-assembly-arm":239,"./tradutor-assembly-x64":240,"./tradutor-assemblyscript":241,"./tradutor-calango":242,"./tradutor-elixir":243,"./tradutor-javascript":244,"./tradutor-mermaidjs":245,"./tradutor-portugol-ipt":246,"./tradutor-python":247,"./tradutor-reverso-javascript":248,"./tradutor-reverso-python":249,"./tradutor-reverso-tenda":250,"./tradutor-ruby":251}],231:[function(require,module,exports){
|
|
26478
26865
|
"use strict";
|
|
26479
26866
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26480
26867
|
exports.ArestaFluxograma = void 0;
|
|
@@ -26486,7 +26873,7 @@ class ArestaFluxograma {
|
|
|
26486
26873
|
}
|
|
26487
26874
|
exports.ArestaFluxograma = ArestaFluxograma;
|
|
26488
26875
|
|
|
26489
|
-
},{}],
|
|
26876
|
+
},{}],232:[function(require,module,exports){
|
|
26490
26877
|
"use strict";
|
|
26491
26878
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
26492
26879
|
if (k2 === undefined) k2 = k;
|
|
@@ -26509,7 +26896,7 @@ __exportStar(require("./subgrafo-funcao"), exports);
|
|
|
26509
26896
|
__exportStar(require("./subgrafo-metodo"), exports);
|
|
26510
26897
|
__exportStar(require("./vertice-fluxograma"), exports);
|
|
26511
26898
|
|
|
26512
|
-
},{"./aresta-fluxograma":
|
|
26899
|
+
},{"./aresta-fluxograma":231,"./subgrafo-classe":233,"./subgrafo-funcao":234,"./subgrafo-metodo":235,"./vertice-fluxograma":236}],233:[function(require,module,exports){
|
|
26513
26900
|
"use strict";
|
|
26514
26901
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26515
26902
|
exports.SubgrafoClasse = void 0;
|
|
@@ -26555,7 +26942,7 @@ class SubgrafoClasse {
|
|
|
26555
26942
|
}
|
|
26556
26943
|
exports.SubgrafoClasse = SubgrafoClasse;
|
|
26557
26944
|
|
|
26558
|
-
},{}],
|
|
26945
|
+
},{}],234:[function(require,module,exports){
|
|
26559
26946
|
"use strict";
|
|
26560
26947
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26561
26948
|
exports.SubgrafoFuncao = void 0;
|
|
@@ -26570,7 +26957,7 @@ class SubgrafoFuncao {
|
|
|
26570
26957
|
}
|
|
26571
26958
|
exports.SubgrafoFuncao = SubgrafoFuncao;
|
|
26572
26959
|
|
|
26573
|
-
},{}],
|
|
26960
|
+
},{}],235:[function(require,module,exports){
|
|
26574
26961
|
"use strict";
|
|
26575
26962
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26576
26963
|
exports.SubgrafoMetodo = void 0;
|
|
@@ -26587,7 +26974,7 @@ class SubgrafoMetodo {
|
|
|
26587
26974
|
}
|
|
26588
26975
|
exports.SubgrafoMetodo = SubgrafoMetodo;
|
|
26589
26976
|
|
|
26590
|
-
},{}],
|
|
26977
|
+
},{}],236:[function(require,module,exports){
|
|
26591
26978
|
"use strict";
|
|
26592
26979
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26593
26980
|
exports.VerticeFluxograma = void 0;
|
|
@@ -26604,7 +26991,7 @@ class VerticeFluxograma {
|
|
|
26604
26991
|
}
|
|
26605
26992
|
exports.VerticeFluxograma = VerticeFluxograma;
|
|
26606
26993
|
|
|
26607
|
-
},{}],
|
|
26994
|
+
},{}],237:[function(require,module,exports){
|
|
26608
26995
|
"use strict";
|
|
26609
26996
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
26610
26997
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -27844,7 +28231,7 @@ __decorate([
|
|
|
27844
28231
|
Decorators_1.Override
|
|
27845
28232
|
], Python3Lexer.prototype, "nextToken", null);
|
|
27846
28233
|
|
|
27847
|
-
},{"./python3-parser":
|
|
28234
|
+
},{"./python3-parser":238,"antlr4ts/CommonToken":261,"antlr4ts/Decorators":265,"antlr4ts/Lexer":273,"antlr4ts/Token":290,"antlr4ts/VocabularyImpl":296,"antlr4ts/atn/ATNDeserializer":302,"antlr4ts/atn/LexerATNSimulator":323,"antlr4ts/misc/Utils":384}],238:[function(require,module,exports){
|
|
27848
28235
|
"use strict";
|
|
27849
28236
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
27850
28237
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -39091,7 +39478,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
39091
39478
|
}
|
|
39092
39479
|
exports.Yield_argContext = Yield_argContext;
|
|
39093
39480
|
|
|
39094
|
-
},{"antlr4ts/FailedPredicateException":
|
|
39481
|
+
},{"antlr4ts/FailedPredicateException":269,"antlr4ts/NoViableAltException":277,"antlr4ts/Parser":278,"antlr4ts/ParserRuleContext":281,"antlr4ts/RecognitionException":284,"antlr4ts/Token":290,"antlr4ts/VocabularyImpl":296,"antlr4ts/atn/ATN":298,"antlr4ts/atn/ATNDeserializer":302,"antlr4ts/atn/ParserATNSimulator":339,"antlr4ts/misc/Utils":384}],239:[function(require,module,exports){
|
|
39095
39482
|
"use strict";
|
|
39096
39483
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39097
39484
|
exports.TradutorAssemblyARM = void 0;
|
|
@@ -39807,7 +40194,7 @@ ${labelFim}:`;
|
|
|
39807
40194
|
}
|
|
39808
40195
|
exports.TradutorAssemblyARM = TradutorAssemblyARM;
|
|
39809
40196
|
|
|
39810
|
-
},{"../construtos":62,"../declaracoes":
|
|
40197
|
+
},{"../construtos":62,"../declaracoes":110}],240:[function(require,module,exports){
|
|
39811
40198
|
"use strict";
|
|
39812
40199
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39813
40200
|
exports.TradutorAssemblyX64 = void 0;
|
|
@@ -40475,7 +40862,7 @@ ${labelFim}:`;
|
|
|
40475
40862
|
}
|
|
40476
40863
|
exports.TradutorAssemblyX64 = TradutorAssemblyX64;
|
|
40477
40864
|
|
|
40478
|
-
},{"../construtos":62,"../declaracoes":
|
|
40865
|
+
},{"../construtos":62,"../declaracoes":110}],241:[function(require,module,exports){
|
|
40479
40866
|
"use strict";
|
|
40480
40867
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
40481
40868
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -41615,7 +42002,7 @@ class TradutorAssemblyScript {
|
|
|
41615
42002
|
}
|
|
41616
42003
|
exports.TradutorAssemblyScript = TradutorAssemblyScript;
|
|
41617
42004
|
|
|
41618
|
-
},{"../construtos":62,"../declaracoes":
|
|
42005
|
+
},{"../construtos":62,"../declaracoes":110,"../tipos-de-simbolos/delegua":222}],242:[function(require,module,exports){
|
|
41619
42006
|
"use strict";
|
|
41620
42007
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
41621
42008
|
exports.TradutorCalango = void 0;
|
|
@@ -41670,7 +42057,7 @@ class TradutorCalango {
|
|
|
41670
42057
|
}
|
|
41671
42058
|
exports.TradutorCalango = TradutorCalango;
|
|
41672
42059
|
|
|
41673
|
-
},{}],
|
|
42060
|
+
},{}],243:[function(require,module,exports){
|
|
41674
42061
|
"use strict";
|
|
41675
42062
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
41676
42063
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -42597,7 +42984,7 @@ class TradutorElixir {
|
|
|
42597
42984
|
}
|
|
42598
42985
|
exports.TradutorElixir = TradutorElixir;
|
|
42599
42986
|
|
|
42600
|
-
},{"../tipos-de-simbolos/delegua":
|
|
42987
|
+
},{"../tipos-de-simbolos/delegua":222}],244:[function(require,module,exports){
|
|
42601
42988
|
"use strict";
|
|
42602
42989
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
42603
42990
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -43391,7 +43778,7 @@ class TradutorJavaScript {
|
|
|
43391
43778
|
}
|
|
43392
43779
|
exports.TradutorJavaScript = TradutorJavaScript;
|
|
43393
43780
|
|
|
43394
|
-
},{"../construtos":62,"../declaracoes":
|
|
43781
|
+
},{"../construtos":62,"../declaracoes":110,"../tipos-de-simbolos/delegua":222}],245:[function(require,module,exports){
|
|
43395
43782
|
"use strict";
|
|
43396
43783
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
43397
43784
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -44219,7 +44606,7 @@ class TradutorMermaidJs {
|
|
|
44219
44606
|
}
|
|
44220
44607
|
exports.TradutorMermaidJs = TradutorMermaidJs;
|
|
44221
44608
|
|
|
44222
|
-
},{"../construtos":62,"../declaracoes":
|
|
44609
|
+
},{"../construtos":62,"../declaracoes":110,"../tipos-de-simbolos/delegua":222,"./mermaid":232}],246:[function(require,module,exports){
|
|
44223
44610
|
"use strict";
|
|
44224
44611
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44225
44612
|
exports.TradutorPortugolIpt = void 0;
|
|
@@ -44281,7 +44668,7 @@ class TradutorPortugolIpt {
|
|
|
44281
44668
|
}
|
|
44282
44669
|
exports.TradutorPortugolIpt = TradutorPortugolIpt;
|
|
44283
44670
|
|
|
44284
|
-
},{"../avaliador-sintatico/dialetos":17,"../lexador/dialetos":
|
|
44671
|
+
},{"../avaliador-sintatico/dialetos":17,"../lexador/dialetos":192}],247:[function(require,module,exports){
|
|
44285
44672
|
"use strict";
|
|
44286
44673
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
44287
44674
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -44967,7 +45354,7 @@ class TradutorPython {
|
|
|
44967
45354
|
}
|
|
44968
45355
|
exports.TradutorPython = TradutorPython;
|
|
44969
45356
|
|
|
44970
|
-
},{"../construtos":62,"../declaracoes":
|
|
45357
|
+
},{"../construtos":62,"../declaracoes":110,"../tipos-de-simbolos/delegua":222}],248:[function(require,module,exports){
|
|
44971
45358
|
"use strict";
|
|
44972
45359
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44973
45360
|
exports.TradutorReversoJavaScript = void 0;
|
|
@@ -45362,7 +45749,7 @@ class TradutorReversoJavaScript {
|
|
|
45362
45749
|
}
|
|
45363
45750
|
exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
|
|
45364
45751
|
|
|
45365
|
-
},{}],
|
|
45752
|
+
},{}],249:[function(require,module,exports){
|
|
45366
45753
|
"use strict";
|
|
45367
45754
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
45368
45755
|
exports.TradutorReversoPython = void 0;
|
|
@@ -45435,7 +45822,7 @@ class TradutorReversoPython {
|
|
|
45435
45822
|
}
|
|
45436
45823
|
exports.TradutorReversoPython = TradutorReversoPython;
|
|
45437
45824
|
|
|
45438
|
-
},{"./python/python3-lexer":
|
|
45825
|
+
},{"./python/python3-lexer":237,"./python/python3-parser":238,"antlr4ts":367,"antlr4ts/tree/ParseTreeWalker":386}],250:[function(require,module,exports){
|
|
45439
45826
|
"use strict";
|
|
45440
45827
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
45441
45828
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -46029,7 +46416,7 @@ class TradutorReversoTenda {
|
|
|
46029
46416
|
}
|
|
46030
46417
|
exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
46031
46418
|
|
|
46032
|
-
},{"../construtos":62,"../tipos-de-simbolos/tenda":
|
|
46419
|
+
},{"../construtos":62,"../tipos-de-simbolos/tenda":229}],251:[function(require,module,exports){
|
|
46033
46420
|
"use strict";
|
|
46034
46421
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
46035
46422
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -46717,7 +47104,7 @@ class TradutorRuby {
|
|
|
46717
47104
|
}
|
|
46718
47105
|
exports.TradutorRuby = TradutorRuby;
|
|
46719
47106
|
|
|
46720
|
-
},{"../construtos":62,"../declaracoes":
|
|
47107
|
+
},{"../construtos":62,"../declaracoes":110,"../tipos-de-simbolos/delegua":222}],252:[function(require,module,exports){
|
|
46721
47108
|
"use strict";
|
|
46722
47109
|
/*!
|
|
46723
47110
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46725,7 +47112,7 @@ exports.TradutorRuby = TradutorRuby;
|
|
|
46725
47112
|
*/
|
|
46726
47113
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
46727
47114
|
|
|
46728
|
-
},{}],
|
|
47115
|
+
},{}],253:[function(require,module,exports){
|
|
46729
47116
|
"use strict";
|
|
46730
47117
|
/*!
|
|
46731
47118
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46733,7 +47120,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
46733
47120
|
*/
|
|
46734
47121
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
46735
47122
|
|
|
46736
|
-
},{}],
|
|
47123
|
+
},{}],254:[function(require,module,exports){
|
|
46737
47124
|
"use strict";
|
|
46738
47125
|
/*!
|
|
46739
47126
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46895,7 +47282,7 @@ __decorate([
|
|
|
46895
47282
|
], ANTLRInputStream.prototype, "toString", null);
|
|
46896
47283
|
exports.ANTLRInputStream = ANTLRInputStream;
|
|
46897
47284
|
|
|
46898
|
-
},{"./Decorators":
|
|
47285
|
+
},{"./Decorators":265,"./IntStream":271,"assert":408}],255:[function(require,module,exports){
|
|
46899
47286
|
"use strict";
|
|
46900
47287
|
/*!
|
|
46901
47288
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46978,7 +47365,7 @@ __decorate([
|
|
|
46978
47365
|
], BailErrorStrategy.prototype, "sync", null);
|
|
46979
47366
|
exports.BailErrorStrategy = BailErrorStrategy;
|
|
46980
47367
|
|
|
46981
|
-
},{"./Decorators":
|
|
47368
|
+
},{"./Decorators":265,"./DefaultErrorStrategy":266,"./InputMismatchException":270,"./misc/ParseCancellationException":382}],256:[function(require,module,exports){
|
|
46982
47369
|
"use strict";
|
|
46983
47370
|
/*!
|
|
46984
47371
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47468,7 +47855,7 @@ BufferedTokenStream = __decorate([
|
|
|
47468
47855
|
], BufferedTokenStream);
|
|
47469
47856
|
exports.BufferedTokenStream = BufferedTokenStream;
|
|
47470
47857
|
|
|
47471
|
-
},{"./CommonToken":
|
|
47858
|
+
},{"./CommonToken":261,"./Decorators":265,"./Lexer":273,"./Token":290,"./misc/Interval":377,"assert":408}],257:[function(require,module,exports){
|
|
47472
47859
|
"use strict";
|
|
47473
47860
|
/*!
|
|
47474
47861
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47476,7 +47863,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
|
|
|
47476
47863
|
*/
|
|
47477
47864
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47478
47865
|
|
|
47479
|
-
},{}],
|
|
47866
|
+
},{}],258:[function(require,module,exports){
|
|
47480
47867
|
"use strict";
|
|
47481
47868
|
/*!
|
|
47482
47869
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47610,7 +47997,7 @@ var CharStreams;
|
|
|
47610
47997
|
// }
|
|
47611
47998
|
})(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
|
|
47612
47999
|
|
|
47613
|
-
},{"./CodePointBuffer":
|
|
48000
|
+
},{"./CodePointBuffer":259,"./CodePointCharStream":260,"./IntStream":271}],259:[function(require,module,exports){
|
|
47614
48001
|
"use strict";
|
|
47615
48002
|
/*!
|
|
47616
48003
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47845,7 +48232,7 @@ exports.CodePointBuffer = CodePointBuffer;
|
|
|
47845
48232
|
CodePointBuffer.Builder = Builder;
|
|
47846
48233
|
})(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
|
|
47847
48234
|
|
|
47848
|
-
},{"./misc/Character":
|
|
48235
|
+
},{"./misc/Character":373,"assert":408}],260:[function(require,module,exports){
|
|
47849
48236
|
"use strict";
|
|
47850
48237
|
/*!
|
|
47851
48238
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47995,7 +48382,7 @@ __decorate([
|
|
|
47995
48382
|
], CodePointCharStream.prototype, "getText", null);
|
|
47996
48383
|
exports.CodePointCharStream = CodePointCharStream;
|
|
47997
48384
|
|
|
47998
|
-
},{"./Decorators":
|
|
48385
|
+
},{"./Decorators":265,"./IntStream":271,"./misc/Interval":377,"assert":408}],261:[function(require,module,exports){
|
|
47999
48386
|
"use strict";
|
|
48000
48387
|
/*!
|
|
48001
48388
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48225,7 +48612,7 @@ CommonToken = __decorate([
|
|
|
48225
48612
|
], CommonToken);
|
|
48226
48613
|
exports.CommonToken = CommonToken;
|
|
48227
48614
|
|
|
48228
|
-
},{"./Decorators":
|
|
48615
|
+
},{"./Decorators":265,"./Token":290,"./misc/Interval":377}],262:[function(require,module,exports){
|
|
48229
48616
|
"use strict";
|
|
48230
48617
|
/*!
|
|
48231
48618
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48289,7 +48676,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
|
|
|
48289
48676
|
CommonTokenFactory.DEFAULT = new CommonTokenFactory();
|
|
48290
48677
|
})(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
|
|
48291
48678
|
|
|
48292
|
-
},{"./CommonToken":
|
|
48679
|
+
},{"./CommonToken":261,"./Decorators":265,"./misc/Interval":377}],263:[function(require,module,exports){
|
|
48293
48680
|
"use strict";
|
|
48294
48681
|
/*!
|
|
48295
48682
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48416,7 +48803,7 @@ CommonTokenStream = __decorate([
|
|
|
48416
48803
|
], CommonTokenStream);
|
|
48417
48804
|
exports.CommonTokenStream = CommonTokenStream;
|
|
48418
48805
|
|
|
48419
|
-
},{"./BufferedTokenStream":
|
|
48806
|
+
},{"./BufferedTokenStream":256,"./Decorators":265,"./Token":290}],264:[function(require,module,exports){
|
|
48420
48807
|
"use strict";
|
|
48421
48808
|
/*!
|
|
48422
48809
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48450,7 +48837,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
|
|
|
48450
48837
|
*/
|
|
48451
48838
|
ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
|
|
48452
48839
|
|
|
48453
|
-
},{}],
|
|
48840
|
+
},{}],265:[function(require,module,exports){
|
|
48454
48841
|
"use strict";
|
|
48455
48842
|
/*!
|
|
48456
48843
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48477,7 +48864,7 @@ function SuppressWarnings(options) {
|
|
|
48477
48864
|
}
|
|
48478
48865
|
exports.SuppressWarnings = SuppressWarnings;
|
|
48479
48866
|
|
|
48480
|
-
},{}],
|
|
48867
|
+
},{}],266:[function(require,module,exports){
|
|
48481
48868
|
"use strict";
|
|
48482
48869
|
/*!
|
|
48483
48870
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49291,7 +49678,7 @@ __decorate([
|
|
|
49291
49678
|
], DefaultErrorStrategy.prototype, "consumeUntil", null);
|
|
49292
49679
|
exports.DefaultErrorStrategy = DefaultErrorStrategy;
|
|
49293
49680
|
|
|
49294
|
-
},{"./Decorators":
|
|
49681
|
+
},{"./Decorators":265,"./FailedPredicateException":269,"./InputMismatchException":270,"./NoViableAltException":277,"./Token":290,"./atn/ATNState":304,"./atn/ATNStateType":305,"./atn/PredictionContext":345,"./misc/IntervalSet":378}],267:[function(require,module,exports){
|
|
49295
49682
|
"use strict";
|
|
49296
49683
|
/*!
|
|
49297
49684
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49367,7 +49754,7 @@ var Dependents;
|
|
|
49367
49754
|
Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
|
|
49368
49755
|
})(Dependents = exports.Dependents || (exports.Dependents = {}));
|
|
49369
49756
|
|
|
49370
|
-
},{}],
|
|
49757
|
+
},{}],268:[function(require,module,exports){
|
|
49371
49758
|
"use strict";
|
|
49372
49759
|
/*!
|
|
49373
49760
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49515,7 +49902,7 @@ __decorate([
|
|
|
49515
49902
|
], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
|
|
49516
49903
|
exports.DiagnosticErrorListener = DiagnosticErrorListener;
|
|
49517
49904
|
|
|
49518
|
-
},{"./Decorators":
|
|
49905
|
+
},{"./Decorators":265,"./misc/BitSet":372,"./misc/Interval":377}],269:[function(require,module,exports){
|
|
49519
49906
|
"use strict";
|
|
49520
49907
|
/*!
|
|
49521
49908
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49580,7 +49967,7 @@ FailedPredicateException = __decorate([
|
|
|
49580
49967
|
], FailedPredicateException);
|
|
49581
49968
|
exports.FailedPredicateException = FailedPredicateException;
|
|
49582
49969
|
|
|
49583
|
-
},{"./Decorators":
|
|
49970
|
+
},{"./Decorators":265,"./RecognitionException":284,"./atn/PredicateTransition":344}],270:[function(require,module,exports){
|
|
49584
49971
|
"use strict";
|
|
49585
49972
|
/*!
|
|
49586
49973
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49620,7 +50007,7 @@ InputMismatchException = __decorate([
|
|
|
49620
50007
|
], InputMismatchException);
|
|
49621
50008
|
exports.InputMismatchException = InputMismatchException;
|
|
49622
50009
|
|
|
49623
|
-
},{"./Decorators":
|
|
50010
|
+
},{"./Decorators":265,"./RecognitionException":284}],271:[function(require,module,exports){
|
|
49624
50011
|
"use strict";
|
|
49625
50012
|
/*!
|
|
49626
50013
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49643,7 +50030,7 @@ var IntStream;
|
|
|
49643
50030
|
IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
|
|
49644
50031
|
})(IntStream = exports.IntStream || (exports.IntStream = {}));
|
|
49645
50032
|
|
|
49646
|
-
},{}],
|
|
50033
|
+
},{}],272:[function(require,module,exports){
|
|
49647
50034
|
"use strict";
|
|
49648
50035
|
/*!
|
|
49649
50036
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49690,7 +50077,7 @@ __decorate([
|
|
|
49690
50077
|
], InterpreterRuleContext.prototype, "ruleIndex", null);
|
|
49691
50078
|
exports.InterpreterRuleContext = InterpreterRuleContext;
|
|
49692
50079
|
|
|
49693
|
-
},{"./Decorators":
|
|
50080
|
+
},{"./Decorators":265,"./ParserRuleContext":281}],273:[function(require,module,exports){
|
|
49694
50081
|
"use strict";
|
|
49695
50082
|
/*!
|
|
49696
50083
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50026,7 +50413,7 @@ __decorate([
|
|
|
50026
50413
|
], Lexer.prototype, "charPositionInLine", null);
|
|
50027
50414
|
exports.Lexer = Lexer;
|
|
50028
50415
|
|
|
50029
|
-
},{"./CommonTokenFactory":
|
|
50416
|
+
},{"./CommonTokenFactory":262,"./Decorators":265,"./IntStream":271,"./LexerNoViableAltException":275,"./Recognizer":285,"./Token":290,"./atn/LexerATNSimulator":323,"./misc/IntegerStack":376,"./misc/Interval":377}],274:[function(require,module,exports){
|
|
50030
50417
|
"use strict";
|
|
50031
50418
|
/*!
|
|
50032
50419
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50106,7 +50493,7 @@ LexerInterpreter = __decorate([
|
|
|
50106
50493
|
], LexerInterpreter);
|
|
50107
50494
|
exports.LexerInterpreter = LexerInterpreter;
|
|
50108
50495
|
|
|
50109
|
-
},{"./Decorators":
|
|
50496
|
+
},{"./Decorators":265,"./Lexer":273,"./atn/LexerATNSimulator":323}],275:[function(require,module,exports){
|
|
50110
50497
|
"use strict";
|
|
50111
50498
|
/*!
|
|
50112
50499
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50163,7 +50550,7 @@ LexerNoViableAltException = __decorate([
|
|
|
50163
50550
|
], LexerNoViableAltException);
|
|
50164
50551
|
exports.LexerNoViableAltException = LexerNoViableAltException;
|
|
50165
50552
|
|
|
50166
|
-
},{"./Decorators":
|
|
50553
|
+
},{"./Decorators":265,"./RecognitionException":284,"./misc/Interval":377,"./misc/Utils":384}],276:[function(require,module,exports){
|
|
50167
50554
|
"use strict";
|
|
50168
50555
|
/*!
|
|
50169
50556
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50373,7 +50760,7 @@ ListTokenSource = __decorate([
|
|
|
50373
50760
|
], ListTokenSource);
|
|
50374
50761
|
exports.ListTokenSource = ListTokenSource;
|
|
50375
50762
|
|
|
50376
|
-
},{"./CommonTokenFactory":
|
|
50763
|
+
},{"./CommonTokenFactory":262,"./Decorators":265,"./Token":290}],277:[function(require,module,exports){
|
|
50377
50764
|
"use strict";
|
|
50378
50765
|
/*!
|
|
50379
50766
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50428,7 +50815,7 @@ __decorate([
|
|
|
50428
50815
|
], NoViableAltException.prototype, "_startToken", void 0);
|
|
50429
50816
|
exports.NoViableAltException = NoViableAltException;
|
|
50430
50817
|
|
|
50431
|
-
},{"./Decorators":
|
|
50818
|
+
},{"./Decorators":265,"./Parser":278,"./RecognitionException":284}],278:[function(require,module,exports){
|
|
50432
50819
|
(function (process){(function (){
|
|
50433
50820
|
"use strict";
|
|
50434
50821
|
/*!
|
|
@@ -51274,7 +51661,7 @@ __decorate([
|
|
|
51274
51661
|
exports.Parser = Parser;
|
|
51275
51662
|
|
|
51276
51663
|
}).call(this)}).call(this,require('_process'))
|
|
51277
|
-
},{"./Decorators":
|
|
51664
|
+
},{"./Decorators":265,"./DefaultErrorStrategy":266,"./Lexer":273,"./ProxyParserErrorListener":283,"./Recognizer":285,"./Token":290,"./atn/ATNDeserializationOptions":301,"./atn/ATNDeserializer":302,"./atn/ParseInfo":338,"./atn/ParserATNSimulator":339,"./atn/ProfilingATNSimulator":348,"./misc/IntegerStack":376,"./misc/Utils":384,"./tree/ErrorNode":385,"./tree/TerminalNode":388,"./tree/pattern/ParseTreePatternMatcher":393,"_process":467}],279:[function(require,module,exports){
|
|
51278
51665
|
"use strict";
|
|
51279
51666
|
/*!
|
|
51280
51667
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51282,7 +51669,7 @@ exports.Parser = Parser;
|
|
|
51282
51669
|
*/
|
|
51283
51670
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51284
51671
|
|
|
51285
|
-
},{}],
|
|
51672
|
+
},{}],280:[function(require,module,exports){
|
|
51286
51673
|
"use strict";
|
|
51287
51674
|
/*!
|
|
51288
51675
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51690,7 +52077,7 @@ ParserInterpreter = __decorate([
|
|
|
51690
52077
|
], ParserInterpreter);
|
|
51691
52078
|
exports.ParserInterpreter = ParserInterpreter;
|
|
51692
52079
|
|
|
51693
|
-
},{"./Decorators":
|
|
52080
|
+
},{"./Decorators":265,"./FailedPredicateException":269,"./InputMismatchException":270,"./InterpreterRuleContext":272,"./Parser":278,"./RecognitionException":284,"./Token":290,"./atn/ATNState":304,"./atn/ATNStateType":305,"./atn/LoopEndState":335,"./atn/ParserATNSimulator":339,"./atn/StarLoopEntryState":357,"./misc/BitSet":372}],281:[function(require,module,exports){
|
|
51694
52081
|
"use strict";
|
|
51695
52082
|
/*!
|
|
51696
52083
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51991,7 +52378,7 @@ __decorate([
|
|
|
51991
52378
|
], ParserRuleContext.prototype, "sourceInterval", null);
|
|
51992
52379
|
exports.ParserRuleContext = ParserRuleContext;
|
|
51993
52380
|
|
|
51994
|
-
},{"./Decorators":
|
|
52381
|
+
},{"./Decorators":265,"./RuleContext":286,"./misc/Interval":377,"./tree/ErrorNode":385,"./tree/TerminalNode":388}],282:[function(require,module,exports){
|
|
51995
52382
|
"use strict";
|
|
51996
52383
|
/*!
|
|
51997
52384
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52041,7 +52428,7 @@ __decorate([
|
|
|
52041
52428
|
], ProxyErrorListener.prototype, "syntaxError", null);
|
|
52042
52429
|
exports.ProxyErrorListener = ProxyErrorListener;
|
|
52043
52430
|
|
|
52044
|
-
},{"./Decorators":
|
|
52431
|
+
},{"./Decorators":265}],283:[function(require,module,exports){
|
|
52045
52432
|
"use strict";
|
|
52046
52433
|
/*!
|
|
52047
52434
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52100,7 +52487,7 @@ __decorate([
|
|
|
52100
52487
|
], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
|
|
52101
52488
|
exports.ProxyParserErrorListener = ProxyParserErrorListener;
|
|
52102
52489
|
|
|
52103
|
-
},{"./Decorators":
|
|
52490
|
+
},{"./Decorators":265,"./ProxyErrorListener":282}],284:[function(require,module,exports){
|
|
52104
52491
|
"use strict";
|
|
52105
52492
|
/*!
|
|
52106
52493
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52205,7 +52592,7 @@ class RecognitionException extends Error {
|
|
|
52205
52592
|
}
|
|
52206
52593
|
exports.RecognitionException = RecognitionException;
|
|
52207
52594
|
|
|
52208
|
-
},{}],
|
|
52595
|
+
},{}],285:[function(require,module,exports){
|
|
52209
52596
|
"use strict";
|
|
52210
52597
|
/*!
|
|
52211
52598
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52424,7 +52811,7 @@ __decorate([
|
|
|
52424
52811
|
], Recognizer.prototype, "getErrorListeners", null);
|
|
52425
52812
|
exports.Recognizer = Recognizer;
|
|
52426
52813
|
|
|
52427
|
-
},{"./ConsoleErrorListener":
|
|
52814
|
+
},{"./ConsoleErrorListener":264,"./Decorators":265,"./ProxyErrorListener":282,"./Token":290,"./misc/Utils":384}],286:[function(require,module,exports){
|
|
52428
52815
|
"use strict";
|
|
52429
52816
|
/*!
|
|
52430
52817
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52641,7 +53028,7 @@ __decorate([
|
|
|
52641
53028
|
], RuleContext.prototype, "toStringTree", null);
|
|
52642
53029
|
exports.RuleContext = RuleContext;
|
|
52643
53030
|
|
|
52644
|
-
},{"./Decorators":
|
|
53031
|
+
},{"./Decorators":265,"./ParserRuleContext":281,"./Recognizer":285,"./atn/ATN":298,"./misc/Interval":377,"./tree/RuleNode":387,"./tree/Trees":389}],287:[function(require,module,exports){
|
|
52645
53032
|
"use strict";
|
|
52646
53033
|
/*!
|
|
52647
53034
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52692,7 +53079,7 @@ __decorate([
|
|
|
52692
53079
|
], RuleContextWithAltNum.prototype, "altNumber", null);
|
|
52693
53080
|
exports.RuleContextWithAltNum = RuleContextWithAltNum;
|
|
52694
53081
|
|
|
52695
|
-
},{"./Decorators":
|
|
53082
|
+
},{"./Decorators":265,"./ParserRuleContext":281,"./atn/ATN":298}],288:[function(require,module,exports){
|
|
52696
53083
|
"use strict";
|
|
52697
53084
|
/*!
|
|
52698
53085
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52715,7 +53102,7 @@ function RuleDependency(dependency) {
|
|
|
52715
53102
|
}
|
|
52716
53103
|
exports.RuleDependency = RuleDependency;
|
|
52717
53104
|
|
|
52718
|
-
},{}],
|
|
53105
|
+
},{}],289:[function(require,module,exports){
|
|
52719
53106
|
"use strict";
|
|
52720
53107
|
/*!
|
|
52721
53108
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52734,7 +53121,7 @@ function RuleVersion(version) {
|
|
|
52734
53121
|
}
|
|
52735
53122
|
exports.RuleVersion = RuleVersion;
|
|
52736
53123
|
|
|
52737
|
-
},{}],
|
|
53124
|
+
},{}],290:[function(require,module,exports){
|
|
52738
53125
|
"use strict";
|
|
52739
53126
|
/*!
|
|
52740
53127
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52774,7 +53161,7 @@ var Token;
|
|
|
52774
53161
|
Token.MIN_USER_CHANNEL_VALUE = 2;
|
|
52775
53162
|
})(Token = exports.Token || (exports.Token = {}));
|
|
52776
53163
|
|
|
52777
|
-
},{"./IntStream":
|
|
53164
|
+
},{"./IntStream":271}],291:[function(require,module,exports){
|
|
52778
53165
|
"use strict";
|
|
52779
53166
|
/*!
|
|
52780
53167
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52782,7 +53169,7 @@ var Token;
|
|
|
52782
53169
|
*/
|
|
52783
53170
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
52784
53171
|
|
|
52785
|
-
},{}],
|
|
53172
|
+
},{}],292:[function(require,module,exports){
|
|
52786
53173
|
"use strict";
|
|
52787
53174
|
/*!
|
|
52788
53175
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52790,7 +53177,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
52790
53177
|
*/
|
|
52791
53178
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
52792
53179
|
|
|
52793
|
-
},{}],
|
|
53180
|
+
},{}],293:[function(require,module,exports){
|
|
52794
53181
|
"use strict";
|
|
52795
53182
|
/*!
|
|
52796
53183
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52798,7 +53185,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
52798
53185
|
*/
|
|
52799
53186
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
52800
53187
|
|
|
52801
|
-
},{}],
|
|
53188
|
+
},{}],294:[function(require,module,exports){
|
|
52802
53189
|
"use strict";
|
|
52803
53190
|
/*!
|
|
52804
53191
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53306,7 +53693,7 @@ __decorate([
|
|
|
53306
53693
|
Decorators_1.Override
|
|
53307
53694
|
], ReplaceOp.prototype, "toString", null);
|
|
53308
53695
|
|
|
53309
|
-
},{"./Decorators":
|
|
53696
|
+
},{"./Decorators":265,"./Token":290,"./misc/Interval":377}],295:[function(require,module,exports){
|
|
53310
53697
|
"use strict";
|
|
53311
53698
|
/*!
|
|
53312
53699
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53314,7 +53701,7 @@ __decorate([
|
|
|
53314
53701
|
*/
|
|
53315
53702
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53316
53703
|
|
|
53317
|
-
},{}],
|
|
53704
|
+
},{}],296:[function(require,module,exports){
|
|
53318
53705
|
"use strict";
|
|
53319
53706
|
/*!
|
|
53320
53707
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53434,7 +53821,7 @@ __decorate([
|
|
|
53434
53821
|
], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
|
|
53435
53822
|
exports.VocabularyImpl = VocabularyImpl;
|
|
53436
53823
|
|
|
53437
|
-
},{"./Decorators":
|
|
53824
|
+
},{"./Decorators":265,"./Token":290}],297:[function(require,module,exports){
|
|
53438
53825
|
"use strict";
|
|
53439
53826
|
/*!
|
|
53440
53827
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53442,7 +53829,7 @@ exports.VocabularyImpl = VocabularyImpl;
|
|
|
53442
53829
|
*/
|
|
53443
53830
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53444
53831
|
|
|
53445
|
-
},{}],
|
|
53832
|
+
},{}],298:[function(require,module,exports){
|
|
53446
53833
|
"use strict";
|
|
53447
53834
|
/*!
|
|
53448
53835
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53664,7 +54051,7 @@ exports.ATN = ATN;
|
|
|
53664
54051
|
})(ATN = exports.ATN || (exports.ATN = {}));
|
|
53665
54052
|
exports.ATN = ATN;
|
|
53666
54053
|
|
|
53667
|
-
},{"../Decorators":
|
|
54054
|
+
},{"../Decorators":265,"../Token":290,"../dfa/DFA":363,"../misc/Array2DHashMap":368,"../misc/IntervalSet":378,"../misc/ObjectEqualityComparator":381,"./InvalidState":321,"./LL1Analyzer":322,"./PredictionContext":345,"assert":408}],299:[function(require,module,exports){
|
|
53668
54055
|
"use strict";
|
|
53669
54056
|
/*!
|
|
53670
54057
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54189,7 +54576,7 @@ ActionSemanticContextATNConfig = __decorate([
|
|
|
54189
54576
|
__param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
|
|
54190
54577
|
], ActionSemanticContextATNConfig);
|
|
54191
54578
|
|
|
54192
|
-
},{"../Decorators":
|
|
54579
|
+
},{"../Decorators":265,"../misc/Array2DHashMap":368,"../misc/MurmurHash":380,"../misc/ObjectEqualityComparator":381,"./DecisionState":318,"./PredictionContext":345,"./SemanticContext":353,"assert":408}],300:[function(require,module,exports){
|
|
54193
54580
|
"use strict";
|
|
54194
54581
|
/*!
|
|
54195
54582
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54636,7 +55023,7 @@ __decorate([
|
|
|
54636
55023
|
], ATNConfigSet.prototype, "hashCode", null);
|
|
54637
55024
|
exports.ATNConfigSet = ATNConfigSet;
|
|
54638
55025
|
|
|
54639
|
-
},{"../Decorators":
|
|
55026
|
+
},{"../Decorators":265,"../misc/Array2DHashMap":368,"../misc/Array2DHashSet":369,"../misc/ArrayEqualityComparator":370,"../misc/BitSet":372,"../misc/ObjectEqualityComparator":381,"../misc/Utils":384,"./ATN":298,"./ATNConfig":299,"./PredictionContext":345,"./PredictionContextCache":346,"./SemanticContext":353,"assert":408}],301:[function(require,module,exports){
|
|
54640
55027
|
"use strict";
|
|
54641
55028
|
/*!
|
|
54642
55029
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54715,7 +55102,7 @@ __decorate([
|
|
|
54715
55102
|
], ATNDeserializationOptions, "defaultOptions", null);
|
|
54716
55103
|
exports.ATNDeserializationOptions = ATNDeserializationOptions;
|
|
54717
55104
|
|
|
54718
|
-
},{"../Decorators":
|
|
55105
|
+
},{"../Decorators":265}],302:[function(require,module,exports){
|
|
54719
55106
|
"use strict";
|
|
54720
55107
|
/*!
|
|
54721
55108
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55802,7 +56189,7 @@ __decorate([
|
|
|
55802
56189
|
], ATNDeserializer.prototype, "edgeFactory", null);
|
|
55803
56190
|
exports.ATNDeserializer = ATNDeserializer;
|
|
55804
56191
|
|
|
55805
|
-
},{"../Decorators":
|
|
56192
|
+
},{"../Decorators":265,"../Token":290,"../dfa/DFA":363,"../misc/Array2DHashSet":369,"../misc/BitSet":372,"../misc/IntervalSet":378,"../misc/UUID":383,"./ATN":298,"./ATNDeserializationOptions":301,"./ATNStateType":305,"./ActionTransition":307,"./AtomTransition":309,"./BasicBlockStartState":310,"./BasicState":311,"./BlockEndState":312,"./BlockStartState":313,"./DecisionState":318,"./EpsilonTransition":319,"./InvalidState":321,"./LexerChannelAction":325,"./LexerCustomAction":326,"./LexerModeAction":328,"./LexerMoreAction":329,"./LexerPopModeAction":330,"./LexerPushModeAction":331,"./LexerSkipAction":332,"./LexerTypeAction":333,"./LoopEndState":335,"./NotSetTransition":336,"./ParserATNSimulator":339,"./PlusBlockStartState":340,"./PlusLoopbackState":341,"./PrecedencePredicateTransition":342,"./PredicateTransition":344,"./RangeTransition":349,"./RuleStartState":350,"./RuleStopState":351,"./RuleTransition":352,"./SetTransition":354,"./StarBlockStartState":356,"./StarLoopEntryState":357,"./StarLoopbackState":358,"./TokensStartState":359,"./WildcardTransition":361}],303:[function(require,module,exports){
|
|
55806
56193
|
"use strict";
|
|
55807
56194
|
/*!
|
|
55808
56195
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55866,7 +56253,7 @@ exports.ATNSimulator = ATNSimulator;
|
|
|
55866
56253
|
})(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
|
|
55867
56254
|
exports.ATNSimulator = ATNSimulator;
|
|
55868
56255
|
|
|
55869
|
-
},{"../Decorators":
|
|
56256
|
+
},{"../Decorators":265,"../dfa/DFAState":365,"./ATNConfigSet":300,"./PredictionContext":345}],304:[function(require,module,exports){
|
|
55870
56257
|
"use strict";
|
|
55871
56258
|
/*!
|
|
55872
56259
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56053,7 +56440,7 @@ exports.ATNState = ATNState;
|
|
|
56053
56440
|
ATNState.INVALID_STATE_NUMBER = -1;
|
|
56054
56441
|
})(ATNState = exports.ATNState || (exports.ATNState = {}));
|
|
56055
56442
|
|
|
56056
|
-
},{"../Decorators":
|
|
56443
|
+
},{"../Decorators":265}],305:[function(require,module,exports){
|
|
56057
56444
|
"use strict";
|
|
56058
56445
|
/*!
|
|
56059
56446
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56079,7 +56466,7 @@ var ATNStateType;
|
|
|
56079
56466
|
ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
|
|
56080
56467
|
})(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
|
|
56081
56468
|
|
|
56082
|
-
},{}],
|
|
56469
|
+
},{}],306:[function(require,module,exports){
|
|
56083
56470
|
"use strict";
|
|
56084
56471
|
/*!
|
|
56085
56472
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56099,7 +56486,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
|
|
|
56099
56486
|
}
|
|
56100
56487
|
exports.AbstractPredicateTransition = AbstractPredicateTransition;
|
|
56101
56488
|
|
|
56102
|
-
},{"./Transition":
|
|
56489
|
+
},{"./Transition":360}],307:[function(require,module,exports){
|
|
56103
56490
|
"use strict";
|
|
56104
56491
|
/*!
|
|
56105
56492
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56155,7 +56542,7 @@ ActionTransition = __decorate([
|
|
|
56155
56542
|
], ActionTransition);
|
|
56156
56543
|
exports.ActionTransition = ActionTransition;
|
|
56157
56544
|
|
|
56158
|
-
},{"../Decorators":
|
|
56545
|
+
},{"../Decorators":265,"./Transition":360}],308:[function(require,module,exports){
|
|
56159
56546
|
"use strict";
|
|
56160
56547
|
/*!
|
|
56161
56548
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56242,7 +56629,7 @@ AmbiguityInfo = __decorate([
|
|
|
56242
56629
|
], AmbiguityInfo);
|
|
56243
56630
|
exports.AmbiguityInfo = AmbiguityInfo;
|
|
56244
56631
|
|
|
56245
|
-
},{"../Decorators":
|
|
56632
|
+
},{"../Decorators":265,"./DecisionEventInfo":316}],309:[function(require,module,exports){
|
|
56246
56633
|
"use strict";
|
|
56247
56634
|
/*!
|
|
56248
56635
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56300,7 +56687,7 @@ AtomTransition = __decorate([
|
|
|
56300
56687
|
], AtomTransition);
|
|
56301
56688
|
exports.AtomTransition = AtomTransition;
|
|
56302
56689
|
|
|
56303
|
-
},{"../Decorators":
|
|
56690
|
+
},{"../Decorators":265,"../misc/IntervalSet":378,"./Transition":360}],310:[function(require,module,exports){
|
|
56304
56691
|
"use strict";
|
|
56305
56692
|
/*!
|
|
56306
56693
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56332,7 +56719,7 @@ __decorate([
|
|
|
56332
56719
|
], BasicBlockStartState.prototype, "stateType", null);
|
|
56333
56720
|
exports.BasicBlockStartState = BasicBlockStartState;
|
|
56334
56721
|
|
|
56335
|
-
},{"../Decorators":
|
|
56722
|
+
},{"../Decorators":265,"./ATNStateType":305,"./BlockStartState":313}],311:[function(require,module,exports){
|
|
56336
56723
|
"use strict";
|
|
56337
56724
|
/*!
|
|
56338
56725
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56364,7 +56751,7 @@ __decorate([
|
|
|
56364
56751
|
], BasicState.prototype, "stateType", null);
|
|
56365
56752
|
exports.BasicState = BasicState;
|
|
56366
56753
|
|
|
56367
|
-
},{"../Decorators":
|
|
56754
|
+
},{"../Decorators":265,"./ATNState":304,"./ATNStateType":305}],312:[function(require,module,exports){
|
|
56368
56755
|
"use strict";
|
|
56369
56756
|
/*!
|
|
56370
56757
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56393,7 +56780,7 @@ __decorate([
|
|
|
56393
56780
|
], BlockEndState.prototype, "stateType", null);
|
|
56394
56781
|
exports.BlockEndState = BlockEndState;
|
|
56395
56782
|
|
|
56396
|
-
},{"../Decorators":
|
|
56783
|
+
},{"../Decorators":265,"./ATNState":304,"./ATNStateType":305}],313:[function(require,module,exports){
|
|
56397
56784
|
"use strict";
|
|
56398
56785
|
/*!
|
|
56399
56786
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56407,7 +56794,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
|
|
|
56407
56794
|
}
|
|
56408
56795
|
exports.BlockStartState = BlockStartState;
|
|
56409
56796
|
|
|
56410
|
-
},{"./DecisionState":
|
|
56797
|
+
},{"./DecisionState":318}],314:[function(require,module,exports){
|
|
56411
56798
|
"use strict";
|
|
56412
56799
|
/*!
|
|
56413
56800
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56477,7 +56864,7 @@ __decorate([
|
|
|
56477
56864
|
], ConflictInfo.prototype, "hashCode", null);
|
|
56478
56865
|
exports.ConflictInfo = ConflictInfo;
|
|
56479
56866
|
|
|
56480
|
-
},{"../Decorators":
|
|
56867
|
+
},{"../Decorators":265,"../misc/Utils":384}],315:[function(require,module,exports){
|
|
56481
56868
|
"use strict";
|
|
56482
56869
|
/*!
|
|
56483
56870
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56537,7 +56924,7 @@ ContextSensitivityInfo = __decorate([
|
|
|
56537
56924
|
], ContextSensitivityInfo);
|
|
56538
56925
|
exports.ContextSensitivityInfo = ContextSensitivityInfo;
|
|
56539
56926
|
|
|
56540
|
-
},{"../Decorators":
|
|
56927
|
+
},{"../Decorators":265,"./DecisionEventInfo":316}],316:[function(require,module,exports){
|
|
56541
56928
|
"use strict";
|
|
56542
56929
|
/*!
|
|
56543
56930
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56589,7 +56976,7 @@ DecisionEventInfo = __decorate([
|
|
|
56589
56976
|
], DecisionEventInfo);
|
|
56590
56977
|
exports.DecisionEventInfo = DecisionEventInfo;
|
|
56591
56978
|
|
|
56592
|
-
},{"../Decorators":
|
|
56979
|
+
},{"../Decorators":265}],317:[function(require,module,exports){
|
|
56593
56980
|
"use strict";
|
|
56594
56981
|
/*!
|
|
56595
56982
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56802,7 +57189,7 @@ __decorate([
|
|
|
56802
57189
|
], DecisionInfo.prototype, "toString", null);
|
|
56803
57190
|
exports.DecisionInfo = DecisionInfo;
|
|
56804
57191
|
|
|
56805
|
-
},{"../Decorators":
|
|
57192
|
+
},{"../Decorators":265}],318:[function(require,module,exports){
|
|
56806
57193
|
"use strict";
|
|
56807
57194
|
/*!
|
|
56808
57195
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56822,7 +57209,7 @@ class DecisionState extends ATNState_1.ATNState {
|
|
|
56822
57209
|
}
|
|
56823
57210
|
exports.DecisionState = DecisionState;
|
|
56824
57211
|
|
|
56825
|
-
},{"./ATNState":
|
|
57212
|
+
},{"./ATNState":304}],319:[function(require,module,exports){
|
|
56826
57213
|
"use strict";
|
|
56827
57214
|
/*!
|
|
56828
57215
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56888,7 +57275,7 @@ EpsilonTransition = __decorate([
|
|
|
56888
57275
|
], EpsilonTransition);
|
|
56889
57276
|
exports.EpsilonTransition = EpsilonTransition;
|
|
56890
57277
|
|
|
56891
|
-
},{"../Decorators":
|
|
57278
|
+
},{"../Decorators":265,"./Transition":360}],320:[function(require,module,exports){
|
|
56892
57279
|
"use strict";
|
|
56893
57280
|
/*!
|
|
56894
57281
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56941,7 +57328,7 @@ ErrorInfo = __decorate([
|
|
|
56941
57328
|
], ErrorInfo);
|
|
56942
57329
|
exports.ErrorInfo = ErrorInfo;
|
|
56943
57330
|
|
|
56944
|
-
},{"../Decorators":
|
|
57331
|
+
},{"../Decorators":265,"./DecisionEventInfo":316}],321:[function(require,module,exports){
|
|
56945
57332
|
"use strict";
|
|
56946
57333
|
/*!
|
|
56947
57334
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56972,7 +57359,7 @@ __decorate([
|
|
|
56972
57359
|
], InvalidState.prototype, "stateType", null);
|
|
56973
57360
|
exports.InvalidState = InvalidState;
|
|
56974
57361
|
|
|
56975
|
-
},{"../Decorators":
|
|
57362
|
+
},{"../Decorators":265,"./ATNStateType":305,"./BasicState":311}],322:[function(require,module,exports){
|
|
56976
57363
|
"use strict";
|
|
56977
57364
|
/*!
|
|
56978
57365
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57194,7 +57581,7 @@ LL1Analyzer = __decorate([
|
|
|
57194
57581
|
], LL1Analyzer);
|
|
57195
57582
|
exports.LL1Analyzer = LL1Analyzer;
|
|
57196
57583
|
|
|
57197
|
-
},{"../Decorators":
|
|
57584
|
+
},{"../Decorators":265,"../Token":290,"../misc/Array2DHashSet":369,"../misc/BitSet":372,"../misc/IntervalSet":378,"../misc/ObjectEqualityComparator":381,"./ATNConfig":299,"./AbstractPredicateTransition":306,"./NotSetTransition":336,"./PredictionContext":345,"./RuleStopState":351,"./RuleTransition":352,"./WildcardTransition":361}],323:[function(require,module,exports){
|
|
57198
57585
|
"use strict";
|
|
57199
57586
|
/*!
|
|
57200
57587
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57911,7 +58298,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
|
|
|
57911
58298
|
})(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
|
|
57912
58299
|
exports.LexerATNSimulator = LexerATNSimulator;
|
|
57913
58300
|
|
|
57914
|
-
},{"../Decorators":
|
|
58301
|
+
},{"../Decorators":265,"../IntStream":271,"../Lexer":273,"../LexerNoViableAltException":275,"../Token":290,"../dfa/AcceptStateInfo":362,"../dfa/DFAState":365,"../misc/Interval":377,"./ATN":298,"./ATNConfig":299,"./ATNConfigSet":300,"./ATNSimulator":303,"./LexerActionExecutor":324,"./OrderedATNConfigSet":337,"./PredictionContext":345,"./RuleStopState":351,"assert":408}],324:[function(require,module,exports){
|
|
57915
58302
|
"use strict";
|
|
57916
58303
|
/*!
|
|
57917
58304
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58112,7 +58499,7 @@ LexerActionExecutor = __decorate([
|
|
|
58112
58499
|
], LexerActionExecutor);
|
|
58113
58500
|
exports.LexerActionExecutor = LexerActionExecutor;
|
|
58114
58501
|
|
|
58115
|
-
},{"../Decorators":
|
|
58502
|
+
},{"../Decorators":265,"../misc/ArrayEqualityComparator":370,"../misc/MurmurHash":380,"./LexerIndexedCustomAction":327}],325:[function(require,module,exports){
|
|
58116
58503
|
"use strict";
|
|
58117
58504
|
/*!
|
|
58118
58505
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58217,7 +58604,7 @@ __decorate([
|
|
|
58217
58604
|
], LexerChannelAction.prototype, "toString", null);
|
|
58218
58605
|
exports.LexerChannelAction = LexerChannelAction;
|
|
58219
58606
|
|
|
58220
|
-
},{"../Decorators":
|
|
58607
|
+
},{"../Decorators":265,"../misc/MurmurHash":380}],326:[function(require,module,exports){
|
|
58221
58608
|
"use strict";
|
|
58222
58609
|
/*!
|
|
58223
58610
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58346,7 +58733,7 @@ __decorate([
|
|
|
58346
58733
|
], LexerCustomAction.prototype, "equals", null);
|
|
58347
58734
|
exports.LexerCustomAction = LexerCustomAction;
|
|
58348
58735
|
|
|
58349
|
-
},{"../Decorators":
|
|
58736
|
+
},{"../Decorators":265,"../misc/MurmurHash":380}],327:[function(require,module,exports){
|
|
58350
58737
|
"use strict";
|
|
58351
58738
|
/*!
|
|
58352
58739
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58481,7 +58868,7 @@ LexerIndexedCustomAction = __decorate([
|
|
|
58481
58868
|
], LexerIndexedCustomAction);
|
|
58482
58869
|
exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
|
|
58483
58870
|
|
|
58484
|
-
},{"../Decorators":
|
|
58871
|
+
},{"../Decorators":265,"../misc/MurmurHash":380}],328:[function(require,module,exports){
|
|
58485
58872
|
"use strict";
|
|
58486
58873
|
/*!
|
|
58487
58874
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58586,7 +58973,7 @@ __decorate([
|
|
|
58586
58973
|
], LexerModeAction.prototype, "toString", null);
|
|
58587
58974
|
exports.LexerModeAction = LexerModeAction;
|
|
58588
58975
|
|
|
58589
|
-
},{"../Decorators":
|
|
58976
|
+
},{"../Decorators":265,"../misc/MurmurHash":380}],329:[function(require,module,exports){
|
|
58590
58977
|
"use strict";
|
|
58591
58978
|
/*!
|
|
58592
58979
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58682,7 +59069,7 @@ exports.LexerMoreAction = LexerMoreAction;
|
|
|
58682
59069
|
LexerMoreAction.INSTANCE = new LexerMoreAction();
|
|
58683
59070
|
})(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
|
|
58684
59071
|
|
|
58685
|
-
},{"../Decorators":
|
|
59072
|
+
},{"../Decorators":265,"../misc/MurmurHash":380}],330:[function(require,module,exports){
|
|
58686
59073
|
"use strict";
|
|
58687
59074
|
/*!
|
|
58688
59075
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58778,7 +59165,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
|
|
|
58778
59165
|
LexerPopModeAction.INSTANCE = new LexerPopModeAction();
|
|
58779
59166
|
})(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
|
|
58780
59167
|
|
|
58781
|
-
},{"../Decorators":
|
|
59168
|
+
},{"../Decorators":265,"../misc/MurmurHash":380}],331:[function(require,module,exports){
|
|
58782
59169
|
"use strict";
|
|
58783
59170
|
/*!
|
|
58784
59171
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58883,7 +59270,7 @@ __decorate([
|
|
|
58883
59270
|
], LexerPushModeAction.prototype, "toString", null);
|
|
58884
59271
|
exports.LexerPushModeAction = LexerPushModeAction;
|
|
58885
59272
|
|
|
58886
|
-
},{"../Decorators":
|
|
59273
|
+
},{"../Decorators":265,"../misc/MurmurHash":380}],332:[function(require,module,exports){
|
|
58887
59274
|
"use strict";
|
|
58888
59275
|
/*!
|
|
58889
59276
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58979,7 +59366,7 @@ exports.LexerSkipAction = LexerSkipAction;
|
|
|
58979
59366
|
LexerSkipAction.INSTANCE = new LexerSkipAction();
|
|
58980
59367
|
})(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
|
|
58981
59368
|
|
|
58982
|
-
},{"../Decorators":
|
|
59369
|
+
},{"../Decorators":265,"../misc/MurmurHash":380}],333:[function(require,module,exports){
|
|
58983
59370
|
"use strict";
|
|
58984
59371
|
/*!
|
|
58985
59372
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59083,7 +59470,7 @@ __decorate([
|
|
|
59083
59470
|
], LexerTypeAction.prototype, "toString", null);
|
|
59084
59471
|
exports.LexerTypeAction = LexerTypeAction;
|
|
59085
59472
|
|
|
59086
|
-
},{"../Decorators":
|
|
59473
|
+
},{"../Decorators":265,"../misc/MurmurHash":380}],334:[function(require,module,exports){
|
|
59087
59474
|
"use strict";
|
|
59088
59475
|
/*!
|
|
59089
59476
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59135,7 +59522,7 @@ LookaheadEventInfo = __decorate([
|
|
|
59135
59522
|
], LookaheadEventInfo);
|
|
59136
59523
|
exports.LookaheadEventInfo = LookaheadEventInfo;
|
|
59137
59524
|
|
|
59138
|
-
},{"../Decorators":
|
|
59525
|
+
},{"../Decorators":265,"./DecisionEventInfo":316}],335:[function(require,module,exports){
|
|
59139
59526
|
"use strict";
|
|
59140
59527
|
/*!
|
|
59141
59528
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59164,7 +59551,7 @@ __decorate([
|
|
|
59164
59551
|
], LoopEndState.prototype, "stateType", null);
|
|
59165
59552
|
exports.LoopEndState = LoopEndState;
|
|
59166
59553
|
|
|
59167
|
-
},{"../Decorators":
|
|
59554
|
+
},{"../Decorators":265,"./ATNState":304,"./ATNStateType":305}],336:[function(require,module,exports){
|
|
59168
59555
|
"use strict";
|
|
59169
59556
|
/*!
|
|
59170
59557
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59213,7 +59600,7 @@ NotSetTransition = __decorate([
|
|
|
59213
59600
|
], NotSetTransition);
|
|
59214
59601
|
exports.NotSetTransition = NotSetTransition;
|
|
59215
59602
|
|
|
59216
|
-
},{"../Decorators":
|
|
59603
|
+
},{"../Decorators":265,"./SetTransition":354}],337:[function(require,module,exports){
|
|
59217
59604
|
"use strict";
|
|
59218
59605
|
/*!
|
|
59219
59606
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59268,7 +59655,7 @@ __decorate([
|
|
|
59268
59655
|
], OrderedATNConfigSet.prototype, "canMerge", null);
|
|
59269
59656
|
exports.OrderedATNConfigSet = OrderedATNConfigSet;
|
|
59270
59657
|
|
|
59271
|
-
},{"../Decorators":
|
|
59658
|
+
},{"../Decorators":265,"./ATNConfigSet":300}],338:[function(require,module,exports){
|
|
59272
59659
|
"use strict";
|
|
59273
59660
|
/*!
|
|
59274
59661
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59430,7 +59817,7 @@ ParseInfo = __decorate([
|
|
|
59430
59817
|
], ParseInfo);
|
|
59431
59818
|
exports.ParseInfo = ParseInfo;
|
|
59432
59819
|
|
|
59433
|
-
},{"../Decorators":
|
|
59820
|
+
},{"../Decorators":265}],339:[function(require,module,exports){
|
|
59434
59821
|
"use strict";
|
|
59435
59822
|
/*!
|
|
59436
59823
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61703,7 +62090,7 @@ ParserATNSimulator = __decorate([
|
|
|
61703
62090
|
], ParserATNSimulator);
|
|
61704
62091
|
exports.ParserATNSimulator = ParserATNSimulator;
|
|
61705
62092
|
|
|
61706
|
-
},{"../Decorators":
|
|
62093
|
+
},{"../Decorators":265,"../IntStream":271,"../NoViableAltException":277,"../ParserRuleContext":281,"../Token":290,"../VocabularyImpl":296,"../dfa/AcceptStateInfo":362,"../dfa/DFAState":365,"../misc/Array2DHashSet":369,"../misc/Arrays":371,"../misc/BitSet":372,"../misc/IntegerList":375,"../misc/Interval":377,"../misc/ObjectEqualityComparator":381,"./ATN":298,"./ATNConfig":299,"./ATNConfigSet":300,"./ATNSimulator":303,"./ATNStateType":305,"./ActionTransition":307,"./AtomTransition":309,"./ConflictInfo":314,"./DecisionState":318,"./NotSetTransition":336,"./PredictionContext":345,"./PredictionContextCache":346,"./PredictionMode":347,"./RuleStopState":351,"./RuleTransition":352,"./SemanticContext":353,"./SetTransition":354,"./SimulatorState":355,"assert":408}],340:[function(require,module,exports){
|
|
61707
62094
|
"use strict";
|
|
61708
62095
|
/*!
|
|
61709
62096
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61736,7 +62123,7 @@ __decorate([
|
|
|
61736
62123
|
], PlusBlockStartState.prototype, "stateType", null);
|
|
61737
62124
|
exports.PlusBlockStartState = PlusBlockStartState;
|
|
61738
62125
|
|
|
61739
|
-
},{"../Decorators":
|
|
62126
|
+
},{"../Decorators":265,"./ATNStateType":305,"./BlockStartState":313}],341:[function(require,module,exports){
|
|
61740
62127
|
"use strict";
|
|
61741
62128
|
/*!
|
|
61742
62129
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61767,7 +62154,7 @@ __decorate([
|
|
|
61767
62154
|
], PlusLoopbackState.prototype, "stateType", null);
|
|
61768
62155
|
exports.PlusLoopbackState = PlusLoopbackState;
|
|
61769
62156
|
|
|
61770
|
-
},{"../Decorators":
|
|
62157
|
+
},{"../Decorators":265,"./ATNStateType":305,"./DecisionState":318}],342:[function(require,module,exports){
|
|
61771
62158
|
"use strict";
|
|
61772
62159
|
/*!
|
|
61773
62160
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61830,7 +62217,7 @@ PrecedencePredicateTransition = __decorate([
|
|
|
61830
62217
|
], PrecedencePredicateTransition);
|
|
61831
62218
|
exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
|
|
61832
62219
|
|
|
61833
|
-
},{"../Decorators":
|
|
62220
|
+
},{"../Decorators":265,"./AbstractPredicateTransition":306,"./SemanticContext":353}],343:[function(require,module,exports){
|
|
61834
62221
|
"use strict";
|
|
61835
62222
|
/*!
|
|
61836
62223
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61893,7 +62280,7 @@ PredicateEvalInfo = __decorate([
|
|
|
61893
62280
|
], PredicateEvalInfo);
|
|
61894
62281
|
exports.PredicateEvalInfo = PredicateEvalInfo;
|
|
61895
62282
|
|
|
61896
|
-
},{"../Decorators":
|
|
62283
|
+
},{"../Decorators":265,"./DecisionEventInfo":316}],344:[function(require,module,exports){
|
|
61897
62284
|
"use strict";
|
|
61898
62285
|
/*!
|
|
61899
62286
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61959,7 +62346,7 @@ PredicateTransition = __decorate([
|
|
|
61959
62346
|
], PredicateTransition);
|
|
61960
62347
|
exports.PredicateTransition = PredicateTransition;
|
|
61961
62348
|
|
|
61962
|
-
},{"../Decorators":
|
|
62349
|
+
},{"../Decorators":265,"./AbstractPredicateTransition":306,"./SemanticContext":353}],345:[function(require,module,exports){
|
|
61963
62350
|
"use strict";
|
|
61964
62351
|
/*!
|
|
61965
62352
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62650,7 +63037,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
|
|
|
62650
63037
|
PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
|
|
62651
63038
|
})(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
|
|
62652
63039
|
|
|
62653
|
-
},{"../Decorators":
|
|
63040
|
+
},{"../Decorators":265,"../misc/Array2DHashMap":368,"../misc/Array2DHashSet":369,"../misc/Arrays":371,"../misc/MurmurHash":380,"./PredictionContextCache":346,"assert":408}],346:[function(require,module,exports){
|
|
62654
63041
|
"use strict";
|
|
62655
63042
|
/*!
|
|
62656
63043
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62791,7 +63178,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
|
|
|
62791
63178
|
PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
|
|
62792
63179
|
})(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
|
|
62793
63180
|
|
|
62794
|
-
},{"../Decorators":
|
|
63181
|
+
},{"../Decorators":265,"../misc/Array2DHashMap":368,"../misc/ObjectEqualityComparator":381,"./PredictionContext":345,"assert":408}],347:[function(require,module,exports){
|
|
62795
63182
|
"use strict";
|
|
62796
63183
|
/*!
|
|
62797
63184
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62952,7 +63339,7 @@ var PredictionMode;
|
|
|
62952
63339
|
PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
|
|
62953
63340
|
})(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
|
|
62954
63341
|
|
|
62955
|
-
},{"../Decorators":
|
|
63342
|
+
},{"../Decorators":265,"../misc/Array2DHashMap":368,"../misc/MurmurHash":380,"./RuleStopState":351}],348:[function(require,module,exports){
|
|
62956
63343
|
(function (process){(function (){
|
|
62957
63344
|
"use strict";
|
|
62958
63345
|
/*!
|
|
@@ -63221,7 +63608,7 @@ __decorate([
|
|
|
63221
63608
|
exports.ProfilingATNSimulator = ProfilingATNSimulator;
|
|
63222
63609
|
|
|
63223
63610
|
}).call(this)}).call(this,require('_process'))
|
|
63224
|
-
},{"../Decorators":
|
|
63611
|
+
},{"../Decorators":265,"./ATN":298,"./ATNSimulator":303,"./AmbiguityInfo":308,"./ContextSensitivityInfo":315,"./DecisionInfo":317,"./ErrorInfo":320,"./LookaheadEventInfo":334,"./ParserATNSimulator":339,"./PredicateEvalInfo":343,"./SemanticContext":353,"./SimulatorState":355,"_process":467}],349:[function(require,module,exports){
|
|
63225
63612
|
"use strict";
|
|
63226
63613
|
/*!
|
|
63227
63614
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63279,7 +63666,7 @@ RangeTransition = __decorate([
|
|
|
63279
63666
|
], RangeTransition);
|
|
63280
63667
|
exports.RangeTransition = RangeTransition;
|
|
63281
63668
|
|
|
63282
|
-
},{"../Decorators":
|
|
63669
|
+
},{"../Decorators":265,"../misc/IntervalSet":378,"./Transition":360}],350:[function(require,module,exports){
|
|
63283
63670
|
"use strict";
|
|
63284
63671
|
/*!
|
|
63285
63672
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63312,7 +63699,7 @@ __decorate([
|
|
|
63312
63699
|
], RuleStartState.prototype, "stateType", null);
|
|
63313
63700
|
exports.RuleStartState = RuleStartState;
|
|
63314
63701
|
|
|
63315
|
-
},{"../Decorators":
|
|
63702
|
+
},{"../Decorators":265,"./ATNState":304,"./ATNStateType":305}],351:[function(require,module,exports){
|
|
63316
63703
|
"use strict";
|
|
63317
63704
|
/*!
|
|
63318
63705
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63351,7 +63738,7 @@ __decorate([
|
|
|
63351
63738
|
], RuleStopState.prototype, "stateType", null);
|
|
63352
63739
|
exports.RuleStopState = RuleStopState;
|
|
63353
63740
|
|
|
63354
|
-
},{"../Decorators":
|
|
63741
|
+
},{"../Decorators":265,"./ATNState":304,"./ATNStateType":305}],352:[function(require,module,exports){
|
|
63355
63742
|
"use strict";
|
|
63356
63743
|
/*!
|
|
63357
63744
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63407,7 +63794,7 @@ RuleTransition = __decorate([
|
|
|
63407
63794
|
], RuleTransition);
|
|
63408
63795
|
exports.RuleTransition = RuleTransition;
|
|
63409
63796
|
|
|
63410
|
-
},{"../Decorators":
|
|
63797
|
+
},{"../Decorators":265,"./Transition":360}],353:[function(require,module,exports){
|
|
63411
63798
|
"use strict";
|
|
63412
63799
|
/*!
|
|
63413
63800
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63887,7 +64274,7 @@ exports.SemanticContext = SemanticContext;
|
|
|
63887
64274
|
SemanticContext.OR = OR;
|
|
63888
64275
|
})(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
|
|
63889
64276
|
|
|
63890
|
-
},{"../Decorators":
|
|
64277
|
+
},{"../Decorators":265,"../misc/Array2DHashSet":369,"../misc/ArrayEqualityComparator":370,"../misc/MurmurHash":380,"../misc/ObjectEqualityComparator":381,"../misc/Utils":384}],354:[function(require,module,exports){
|
|
63891
64278
|
"use strict";
|
|
63892
64279
|
/*!
|
|
63893
64280
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63953,7 +64340,7 @@ SetTransition = __decorate([
|
|
|
63953
64340
|
], SetTransition);
|
|
63954
64341
|
exports.SetTransition = SetTransition;
|
|
63955
64342
|
|
|
63956
|
-
},{"../Decorators":
|
|
64343
|
+
},{"../Decorators":265,"../Token":290,"../misc/IntervalSet":378,"./Transition":360}],355:[function(require,module,exports){
|
|
63957
64344
|
"use strict";
|
|
63958
64345
|
/*!
|
|
63959
64346
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63989,7 +64376,7 @@ SimulatorState = __decorate([
|
|
|
63989
64376
|
], SimulatorState);
|
|
63990
64377
|
exports.SimulatorState = SimulatorState;
|
|
63991
64378
|
|
|
63992
|
-
},{"../Decorators":
|
|
64379
|
+
},{"../Decorators":265,"../ParserRuleContext":281}],356:[function(require,module,exports){
|
|
63993
64380
|
"use strict";
|
|
63994
64381
|
/*!
|
|
63995
64382
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64017,7 +64404,7 @@ __decorate([
|
|
|
64017
64404
|
], StarBlockStartState.prototype, "stateType", null);
|
|
64018
64405
|
exports.StarBlockStartState = StarBlockStartState;
|
|
64019
64406
|
|
|
64020
|
-
},{"../Decorators":
|
|
64407
|
+
},{"../Decorators":265,"./ATNStateType":305,"./BlockStartState":313}],357:[function(require,module,exports){
|
|
64021
64408
|
"use strict";
|
|
64022
64409
|
/*!
|
|
64023
64410
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64074,7 +64461,7 @@ __decorate([
|
|
|
64074
64461
|
], StarLoopEntryState.prototype, "stateType", null);
|
|
64075
64462
|
exports.StarLoopEntryState = StarLoopEntryState;
|
|
64076
64463
|
|
|
64077
|
-
},{"../Decorators":
|
|
64464
|
+
},{"../Decorators":265,"../misc/BitSet":372,"./ATNStateType":305,"./DecisionState":318}],358:[function(require,module,exports){
|
|
64078
64465
|
"use strict";
|
|
64079
64466
|
/*!
|
|
64080
64467
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64105,7 +64492,7 @@ __decorate([
|
|
|
64105
64492
|
], StarLoopbackState.prototype, "stateType", null);
|
|
64106
64493
|
exports.StarLoopbackState = StarLoopbackState;
|
|
64107
64494
|
|
|
64108
|
-
},{"../Decorators":
|
|
64495
|
+
},{"../Decorators":265,"./ATNState":304,"./ATNStateType":305}],359:[function(require,module,exports){
|
|
64109
64496
|
"use strict";
|
|
64110
64497
|
/*!
|
|
64111
64498
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64134,7 +64521,7 @@ __decorate([
|
|
|
64134
64521
|
], TokensStartState.prototype, "stateType", null);
|
|
64135
64522
|
exports.TokensStartState = TokensStartState;
|
|
64136
64523
|
|
|
64137
|
-
},{"../Decorators":
|
|
64524
|
+
},{"../Decorators":265,"./ATNStateType":305,"./DecisionState":318}],360:[function(require,module,exports){
|
|
64138
64525
|
"use strict";
|
|
64139
64526
|
/*!
|
|
64140
64527
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64208,7 +64595,7 @@ Transition = __decorate([
|
|
|
64208
64595
|
], Transition);
|
|
64209
64596
|
exports.Transition = Transition;
|
|
64210
64597
|
|
|
64211
|
-
},{"../Decorators":
|
|
64598
|
+
},{"../Decorators":265}],361:[function(require,module,exports){
|
|
64212
64599
|
"use strict";
|
|
64213
64600
|
/*!
|
|
64214
64601
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64256,7 +64643,7 @@ WildcardTransition = __decorate([
|
|
|
64256
64643
|
], WildcardTransition);
|
|
64257
64644
|
exports.WildcardTransition = WildcardTransition;
|
|
64258
64645
|
|
|
64259
|
-
},{"../Decorators":
|
|
64646
|
+
},{"../Decorators":265,"./Transition":360}],362:[function(require,module,exports){
|
|
64260
64647
|
"use strict";
|
|
64261
64648
|
/*!
|
|
64262
64649
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64298,7 +64685,7 @@ class AcceptStateInfo {
|
|
|
64298
64685
|
}
|
|
64299
64686
|
exports.AcceptStateInfo = AcceptStateInfo;
|
|
64300
64687
|
|
|
64301
|
-
},{}],
|
|
64688
|
+
},{}],363:[function(require,module,exports){
|
|
64302
64689
|
"use strict";
|
|
64303
64690
|
/*!
|
|
64304
64691
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64473,7 +64860,7 @@ DFA = __decorate([
|
|
|
64473
64860
|
], DFA);
|
|
64474
64861
|
exports.DFA = DFA;
|
|
64475
64862
|
|
|
64476
|
-
},{"../Decorators":
|
|
64863
|
+
},{"../Decorators":265,"../VocabularyImpl":296,"../atn/ATNConfigSet":300,"../atn/StarLoopEntryState":357,"../misc/Array2DHashSet":369,"../misc/ObjectEqualityComparator":381,"./DFASerializer":364,"./DFAState":365,"./LexerDFASerializer":366}],364:[function(require,module,exports){
|
|
64477
64864
|
"use strict";
|
|
64478
64865
|
/*!
|
|
64479
64866
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64615,7 +65002,7 @@ __decorate([
|
|
|
64615
65002
|
], DFASerializer.prototype, "toString", null);
|
|
64616
65003
|
exports.DFASerializer = DFASerializer;
|
|
64617
65004
|
|
|
64618
|
-
},{"../Decorators":
|
|
65005
|
+
},{"../Decorators":265,"../Recognizer":285,"../VocabularyImpl":296,"../atn/ATNSimulator":303,"../atn/PredictionContext":345}],365:[function(require,module,exports){
|
|
64619
65006
|
"use strict";
|
|
64620
65007
|
/*!
|
|
64621
65008
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64846,7 +65233,7 @@ exports.DFAState = DFAState;
|
|
|
64846
65233
|
DFAState.PredPrediction = PredPrediction;
|
|
64847
65234
|
})(DFAState = exports.DFAState || (exports.DFAState = {}));
|
|
64848
65235
|
|
|
64849
|
-
},{"../Decorators":
|
|
65236
|
+
},{"../Decorators":265,"../atn/ATN":298,"../atn/PredictionContext":345,"../misc/BitSet":372,"../misc/MurmurHash":380,"assert":408}],366:[function(require,module,exports){
|
|
64850
65237
|
"use strict";
|
|
64851
65238
|
/*!
|
|
64852
65239
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64883,7 +65270,7 @@ LexerDFASerializer = __decorate([
|
|
|
64883
65270
|
], LexerDFASerializer);
|
|
64884
65271
|
exports.LexerDFASerializer = LexerDFASerializer;
|
|
64885
65272
|
|
|
64886
|
-
},{"../Decorators":
|
|
65273
|
+
},{"../Decorators":265,"../VocabularyImpl":296,"./DFASerializer":364}],367:[function(require,module,exports){
|
|
64887
65274
|
"use strict";
|
|
64888
65275
|
/*!
|
|
64889
65276
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64949,7 +65336,7 @@ __exportStar(require("./Vocabulary"), exports);
|
|
|
64949
65336
|
__exportStar(require("./VocabularyImpl"), exports);
|
|
64950
65337
|
__exportStar(require("./WritableToken"), exports);
|
|
64951
65338
|
|
|
64952
|
-
},{"./ANTLRErrorListener":
|
|
65339
|
+
},{"./ANTLRErrorListener":252,"./ANTLRErrorStrategy":253,"./ANTLRInputStream":254,"./BailErrorStrategy":255,"./BufferedTokenStream":256,"./CharStream":257,"./CharStreams":258,"./CodePointBuffer":259,"./CodePointCharStream":260,"./CommonToken":261,"./CommonTokenFactory":262,"./CommonTokenStream":263,"./ConsoleErrorListener":264,"./DefaultErrorStrategy":266,"./Dependents":267,"./DiagnosticErrorListener":268,"./FailedPredicateException":269,"./InputMismatchException":270,"./IntStream":271,"./InterpreterRuleContext":272,"./Lexer":273,"./LexerInterpreter":274,"./LexerNoViableAltException":275,"./ListTokenSource":276,"./NoViableAltException":277,"./Parser":278,"./ParserErrorListener":279,"./ParserInterpreter":280,"./ParserRuleContext":281,"./ProxyErrorListener":282,"./ProxyParserErrorListener":283,"./RecognitionException":284,"./Recognizer":285,"./RuleContext":286,"./RuleContextWithAltNum":287,"./RuleDependency":288,"./RuleVersion":289,"./Token":290,"./TokenFactory":291,"./TokenSource":292,"./TokenStream":293,"./TokenStreamRewriter":294,"./Vocabulary":295,"./VocabularyImpl":296,"./WritableToken":297}],368:[function(require,module,exports){
|
|
64953
65340
|
"use strict";
|
|
64954
65341
|
/*!
|
|
64955
65342
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65032,7 +65419,7 @@ class Array2DHashMap {
|
|
|
65032
65419
|
}
|
|
65033
65420
|
exports.Array2DHashMap = Array2DHashMap;
|
|
65034
65421
|
|
|
65035
|
-
},{"./Array2DHashSet":
|
|
65422
|
+
},{"./Array2DHashSet":369}],369:[function(require,module,exports){
|
|
65036
65423
|
"use strict";
|
|
65037
65424
|
/*!
|
|
65038
65425
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65399,7 +65786,7 @@ __decorate([
|
|
|
65399
65786
|
], Array2DHashSet.prototype, "createBuckets", null);
|
|
65400
65787
|
exports.Array2DHashSet = Array2DHashSet;
|
|
65401
65788
|
|
|
65402
|
-
},{"../Decorators":
|
|
65789
|
+
},{"../Decorators":265,"./DefaultEqualityComparator":374,"./MurmurHash":380,"assert":408}],370:[function(require,module,exports){
|
|
65403
65790
|
"use strict";
|
|
65404
65791
|
/*!
|
|
65405
65792
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65471,7 +65858,7 @@ __decorate([
|
|
|
65471
65858
|
], ArrayEqualityComparator.prototype, "equals", null);
|
|
65472
65859
|
exports.ArrayEqualityComparator = ArrayEqualityComparator;
|
|
65473
65860
|
|
|
65474
|
-
},{"../Decorators":
|
|
65861
|
+
},{"../Decorators":265,"./MurmurHash":380,"./ObjectEqualityComparator":381}],371:[function(require,module,exports){
|
|
65475
65862
|
"use strict";
|
|
65476
65863
|
/*!
|
|
65477
65864
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65541,7 +65928,7 @@ var Arrays;
|
|
|
65541
65928
|
Arrays.toString = toString;
|
|
65542
65929
|
})(Arrays = exports.Arrays || (exports.Arrays = {}));
|
|
65543
65930
|
|
|
65544
|
-
},{}],
|
|
65931
|
+
},{}],372:[function(require,module,exports){
|
|
65545
65932
|
"use strict";
|
|
65546
65933
|
/*!
|
|
65547
65934
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66213,7 +66600,7 @@ class BitSetIterator {
|
|
|
66213
66600
|
[Symbol.iterator]() { return this; }
|
|
66214
66601
|
}
|
|
66215
66602
|
|
|
66216
|
-
},{"./MurmurHash":
|
|
66603
|
+
},{"./MurmurHash":380,"util":473}],373:[function(require,module,exports){
|
|
66217
66604
|
"use strict";
|
|
66218
66605
|
/*!
|
|
66219
66606
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66234,7 +66621,7 @@ function isSupplementaryCodePoint(ch) {
|
|
|
66234
66621
|
}
|
|
66235
66622
|
exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
|
|
66236
66623
|
|
|
66237
|
-
},{}],
|
|
66624
|
+
},{}],374:[function(require,module,exports){
|
|
66238
66625
|
"use strict";
|
|
66239
66626
|
/*!
|
|
66240
66627
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66305,7 +66692,7 @@ __decorate([
|
|
|
66305
66692
|
], DefaultEqualityComparator.prototype, "equals", null);
|
|
66306
66693
|
exports.DefaultEqualityComparator = DefaultEqualityComparator;
|
|
66307
66694
|
|
|
66308
|
-
},{"../Decorators":
|
|
66695
|
+
},{"../Decorators":265,"./MurmurHash":380,"./ObjectEqualityComparator":381}],375:[function(require,module,exports){
|
|
66309
66696
|
"use strict";
|
|
66310
66697
|
/*!
|
|
66311
66698
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66599,7 +66986,7 @@ __decorate([
|
|
|
66599
66986
|
], IntegerList.prototype, "toString", null);
|
|
66600
66987
|
exports.IntegerList = IntegerList;
|
|
66601
66988
|
|
|
66602
|
-
},{"../Decorators":
|
|
66989
|
+
},{"../Decorators":265,"./Arrays":371}],376:[function(require,module,exports){
|
|
66603
66990
|
"use strict";
|
|
66604
66991
|
/*!
|
|
66605
66992
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66629,7 +67016,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
|
|
|
66629
67016
|
}
|
|
66630
67017
|
exports.IntegerStack = IntegerStack;
|
|
66631
67018
|
|
|
66632
|
-
},{"./IntegerList":
|
|
67019
|
+
},{"./IntegerList":375}],377:[function(require,module,exports){
|
|
66633
67020
|
"use strict";
|
|
66634
67021
|
/*!
|
|
66635
67022
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66772,7 +67159,7 @@ __decorate([
|
|
|
66772
67159
|
], Interval.prototype, "toString", null);
|
|
66773
67160
|
exports.Interval = Interval;
|
|
66774
67161
|
|
|
66775
|
-
},{"../Decorators":
|
|
67162
|
+
},{"../Decorators":265}],378:[function(require,module,exports){
|
|
66776
67163
|
"use strict";
|
|
66777
67164
|
/*!
|
|
66778
67165
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67418,7 +67805,7 @@ __decorate([
|
|
|
67418
67805
|
], IntervalSet, "subtract", null);
|
|
67419
67806
|
exports.IntervalSet = IntervalSet;
|
|
67420
67807
|
|
|
67421
|
-
},{"../Decorators":
|
|
67808
|
+
},{"../Decorators":265,"../Lexer":273,"../Token":290,"./ArrayEqualityComparator":370,"./IntegerList":375,"./Interval":377,"./MurmurHash":380}],379:[function(require,module,exports){
|
|
67422
67809
|
"use strict";
|
|
67423
67810
|
/*!
|
|
67424
67811
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67451,7 +67838,7 @@ class MultiMap extends Map {
|
|
|
67451
67838
|
}
|
|
67452
67839
|
exports.MultiMap = MultiMap;
|
|
67453
67840
|
|
|
67454
|
-
},{}],
|
|
67841
|
+
},{}],380:[function(require,module,exports){
|
|
67455
67842
|
"use strict";
|
|
67456
67843
|
/*!
|
|
67457
67844
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67566,7 +67953,7 @@ var MurmurHash;
|
|
|
67566
67953
|
}
|
|
67567
67954
|
})(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
|
|
67568
67955
|
|
|
67569
|
-
},{}],
|
|
67956
|
+
},{}],381:[function(require,module,exports){
|
|
67570
67957
|
"use strict";
|
|
67571
67958
|
/*!
|
|
67572
67959
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67625,7 +68012,7 @@ __decorate([
|
|
|
67625
68012
|
], ObjectEqualityComparator.prototype, "equals", null);
|
|
67626
68013
|
exports.ObjectEqualityComparator = ObjectEqualityComparator;
|
|
67627
68014
|
|
|
67628
|
-
},{"../Decorators":
|
|
68015
|
+
},{"../Decorators":265}],382:[function(require,module,exports){
|
|
67629
68016
|
"use strict";
|
|
67630
68017
|
/*!
|
|
67631
68018
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67654,7 +68041,7 @@ class ParseCancellationException extends Error {
|
|
|
67654
68041
|
}
|
|
67655
68042
|
exports.ParseCancellationException = ParseCancellationException;
|
|
67656
68043
|
|
|
67657
|
-
},{}],
|
|
68044
|
+
},{}],383:[function(require,module,exports){
|
|
67658
68045
|
"use strict";
|
|
67659
68046
|
/*!
|
|
67660
68047
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67708,7 +68095,7 @@ class UUID {
|
|
|
67708
68095
|
}
|
|
67709
68096
|
exports.UUID = UUID;
|
|
67710
68097
|
|
|
67711
|
-
},{"./MurmurHash":
|
|
68098
|
+
},{"./MurmurHash":380}],384:[function(require,module,exports){
|
|
67712
68099
|
"use strict";
|
|
67713
68100
|
/*!
|
|
67714
68101
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67883,7 +68270,7 @@ exports.toCharArray = toCharArray;
|
|
|
67883
68270
|
// return s;
|
|
67884
68271
|
// }
|
|
67885
68272
|
|
|
67886
|
-
},{}],
|
|
68273
|
+
},{}],385:[function(require,module,exports){
|
|
67887
68274
|
"use strict";
|
|
67888
68275
|
/*!
|
|
67889
68276
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67919,7 +68306,7 @@ __decorate([
|
|
|
67919
68306
|
], ErrorNode.prototype, "accept", null);
|
|
67920
68307
|
exports.ErrorNode = ErrorNode;
|
|
67921
68308
|
|
|
67922
|
-
},{"../Decorators":
|
|
68309
|
+
},{"../Decorators":265,"./TerminalNode":388}],386:[function(require,module,exports){
|
|
67923
68310
|
"use strict";
|
|
67924
68311
|
/*!
|
|
67925
68312
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68024,7 +68411,7 @@ exports.ParseTreeWalker = ParseTreeWalker;
|
|
|
68024
68411
|
ParseTreeWalker.DEFAULT = new ParseTreeWalker();
|
|
68025
68412
|
})(ParseTreeWalker = exports.ParseTreeWalker || (exports.ParseTreeWalker = {}));
|
|
68026
68413
|
|
|
68027
|
-
},{"./ErrorNode":
|
|
68414
|
+
},{"./ErrorNode":385,"./RuleNode":387,"./TerminalNode":388}],387:[function(require,module,exports){
|
|
68028
68415
|
"use strict";
|
|
68029
68416
|
/*!
|
|
68030
68417
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68036,7 +68423,7 @@ class RuleNode {
|
|
|
68036
68423
|
}
|
|
68037
68424
|
exports.RuleNode = RuleNode;
|
|
68038
68425
|
|
|
68039
|
-
},{}],
|
|
68426
|
+
},{}],388:[function(require,module,exports){
|
|
68040
68427
|
"use strict";
|
|
68041
68428
|
/*!
|
|
68042
68429
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68128,7 +68515,7 @@ __decorate([
|
|
|
68128
68515
|
], TerminalNode.prototype, "toString", null);
|
|
68129
68516
|
exports.TerminalNode = TerminalNode;
|
|
68130
68517
|
|
|
68131
|
-
},{"../Decorators":
|
|
68518
|
+
},{"../Decorators":265,"../Token":290,"../misc/Interval":377}],389:[function(require,module,exports){
|
|
68132
68519
|
"use strict";
|
|
68133
68520
|
/*!
|
|
68134
68521
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68372,7 +68759,7 @@ __decorate([
|
|
|
68372
68759
|
], Trees, "getRootOfSubtreeEnclosingRegion", null);
|
|
68373
68760
|
exports.Trees = Trees;
|
|
68374
68761
|
|
|
68375
|
-
},{"../CommonToken":
|
|
68762
|
+
},{"../CommonToken":261,"../Decorators":265,"../Parser":278,"../ParserRuleContext":281,"../Token":290,"../atn/ATN":298,"../misc/Utils":384,"./ErrorNode":385,"./RuleNode":387,"./TerminalNode":388}],390:[function(require,module,exports){
|
|
68376
68763
|
"use strict";
|
|
68377
68764
|
/*!
|
|
68378
68765
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68396,7 +68783,7 @@ class Chunk {
|
|
|
68396
68783
|
}
|
|
68397
68784
|
exports.Chunk = Chunk;
|
|
68398
68785
|
|
|
68399
|
-
},{}],
|
|
68786
|
+
},{}],391:[function(require,module,exports){
|
|
68400
68787
|
"use strict";
|
|
68401
68788
|
/*!
|
|
68402
68789
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68576,7 +68963,7 @@ ParseTreeMatch = __decorate([
|
|
|
68576
68963
|
], ParseTreeMatch);
|
|
68577
68964
|
exports.ParseTreeMatch = ParseTreeMatch;
|
|
68578
68965
|
|
|
68579
|
-
},{"../../Decorators":
|
|
68966
|
+
},{"../../Decorators":265}],392:[function(require,module,exports){
|
|
68580
68967
|
"use strict";
|
|
68581
68968
|
/*!
|
|
68582
68969
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68734,7 +69121,7 @@ ParseTreePattern = __decorate([
|
|
|
68734
69121
|
], ParseTreePattern);
|
|
68735
69122
|
exports.ParseTreePattern = ParseTreePattern;
|
|
68736
69123
|
|
|
68737
|
-
},{"../../Decorators":
|
|
69124
|
+
},{"../../Decorators":265,"../xpath/XPath":398}],393:[function(require,module,exports){
|
|
68738
69125
|
"use strict";
|
|
68739
69126
|
/*!
|
|
68740
69127
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69212,7 +69599,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
|
|
|
69212
69599
|
ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
|
|
69213
69600
|
})(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
|
|
69214
69601
|
|
|
69215
|
-
},{"../../BailErrorStrategy":
|
|
69602
|
+
},{"../../BailErrorStrategy":255,"../../CharStreams":258,"../../CommonTokenStream":263,"../../Decorators":265,"../../ListTokenSource":276,"../../ParserInterpreter":280,"../../ParserRuleContext":281,"../../RecognitionException":284,"../../Token":290,"../../misc/MultiMap":379,"../../misc/ParseCancellationException":382,"../RuleNode":387,"../TerminalNode":388,"./ParseTreeMatch":391,"./ParseTreePattern":392,"./RuleTagToken":394,"./TagChunk":395,"./TextChunk":396,"./TokenTagToken":397}],394:[function(require,module,exports){
|
|
69216
69603
|
"use strict";
|
|
69217
69604
|
/*!
|
|
69218
69605
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69410,7 +69797,7 @@ RuleTagToken = __decorate([
|
|
|
69410
69797
|
], RuleTagToken);
|
|
69411
69798
|
exports.RuleTagToken = RuleTagToken;
|
|
69412
69799
|
|
|
69413
|
-
},{"../../Decorators":
|
|
69800
|
+
},{"../../Decorators":265,"../../Token":290}],395:[function(require,module,exports){
|
|
69414
69801
|
"use strict";
|
|
69415
69802
|
/*!
|
|
69416
69803
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69497,7 +69884,7 @@ __decorate([
|
|
|
69497
69884
|
], TagChunk.prototype, "toString", null);
|
|
69498
69885
|
exports.TagChunk = TagChunk;
|
|
69499
69886
|
|
|
69500
|
-
},{"../../Decorators":
|
|
69887
|
+
},{"../../Decorators":265,"./Chunk":390}],396:[function(require,module,exports){
|
|
69501
69888
|
"use strict";
|
|
69502
69889
|
/*!
|
|
69503
69890
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69567,7 +69954,7 @@ TextChunk = __decorate([
|
|
|
69567
69954
|
], TextChunk);
|
|
69568
69955
|
exports.TextChunk = TextChunk;
|
|
69569
69956
|
|
|
69570
|
-
},{"../../Decorators":
|
|
69957
|
+
},{"../../Decorators":265,"./Chunk":390}],397:[function(require,module,exports){
|
|
69571
69958
|
"use strict";
|
|
69572
69959
|
/*!
|
|
69573
69960
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69662,7 +70049,7 @@ TokenTagToken = __decorate([
|
|
|
69662
70049
|
], TokenTagToken);
|
|
69663
70050
|
exports.TokenTagToken = TokenTagToken;
|
|
69664
70051
|
|
|
69665
|
-
},{"../../CommonToken":
|
|
70052
|
+
},{"../../CommonToken":261,"../../Decorators":265}],398:[function(require,module,exports){
|
|
69666
70053
|
"use strict";
|
|
69667
70054
|
/*!
|
|
69668
70055
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69859,7 +70246,7 @@ exports.XPath = XPath;
|
|
|
69859
70246
|
XPath.WILDCARD = "*"; // word not operator/separator
|
|
69860
70247
|
XPath.NOT = "!"; // word for invert operator
|
|
69861
70248
|
|
|
69862
|
-
},{"../../CharStreams":
|
|
70249
|
+
},{"../../CharStreams":258,"../../CommonTokenStream":263,"../../LexerNoViableAltException":275,"../../ParserRuleContext":281,"../../Token":290,"./XPathLexer":400,"./XPathLexerErrorListener":401,"./XPathRuleAnywhereElement":402,"./XPathRuleElement":403,"./XPathTokenAnywhereElement":404,"./XPathTokenElement":405,"./XPathWildcardAnywhereElement":406,"./XPathWildcardElement":407}],399:[function(require,module,exports){
|
|
69863
70250
|
"use strict";
|
|
69864
70251
|
/*!
|
|
69865
70252
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69894,7 +70281,7 @@ __decorate([
|
|
|
69894
70281
|
], XPathElement.prototype, "toString", null);
|
|
69895
70282
|
exports.XPathElement = XPathElement;
|
|
69896
70283
|
|
|
69897
|
-
},{"../../Decorators":
|
|
70284
|
+
},{"../../Decorators":265}],400:[function(require,module,exports){
|
|
69898
70285
|
"use strict";
|
|
69899
70286
|
// Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
69900
70287
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -70369,7 +70756,7 @@ XPathLexer._serializedATN = Utils.join([
|
|
|
70369
70756
|
XPathLexer._serializedATNSegment1,
|
|
70370
70757
|
], "");
|
|
70371
70758
|
|
|
70372
|
-
},{"../../Lexer":
|
|
70759
|
+
},{"../../Lexer":273,"../../VocabularyImpl":296,"../../atn/ATNDeserializer":302,"../../atn/LexerATNSimulator":323,"../../misc/Utils":384}],401:[function(require,module,exports){
|
|
70373
70760
|
"use strict";
|
|
70374
70761
|
/*!
|
|
70375
70762
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70394,7 +70781,7 @@ __decorate([
|
|
|
70394
70781
|
], XPathLexerErrorListener.prototype, "syntaxError", null);
|
|
70395
70782
|
exports.XPathLexerErrorListener = XPathLexerErrorListener;
|
|
70396
70783
|
|
|
70397
|
-
},{"../../Decorators":
|
|
70784
|
+
},{"../../Decorators":265}],402:[function(require,module,exports){
|
|
70398
70785
|
"use strict";
|
|
70399
70786
|
/*!
|
|
70400
70787
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70428,7 +70815,7 @@ __decorate([
|
|
|
70428
70815
|
], XPathRuleAnywhereElement.prototype, "evaluate", null);
|
|
70429
70816
|
exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
|
|
70430
70817
|
|
|
70431
|
-
},{"../../Decorators":
|
|
70818
|
+
},{"../../Decorators":265,"../Trees":389,"./XPathElement":399}],403:[function(require,module,exports){
|
|
70432
70819
|
"use strict";
|
|
70433
70820
|
/*!
|
|
70434
70821
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70471,7 +70858,7 @@ __decorate([
|
|
|
70471
70858
|
], XPathRuleElement.prototype, "evaluate", null);
|
|
70472
70859
|
exports.XPathRuleElement = XPathRuleElement;
|
|
70473
70860
|
|
|
70474
|
-
},{"../../Decorators":
|
|
70861
|
+
},{"../../Decorators":265,"../../ParserRuleContext":281,"../Trees":389,"./XPathElement":399}],404:[function(require,module,exports){
|
|
70475
70862
|
"use strict";
|
|
70476
70863
|
/*!
|
|
70477
70864
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70503,7 +70890,7 @@ __decorate([
|
|
|
70503
70890
|
], XPathTokenAnywhereElement.prototype, "evaluate", null);
|
|
70504
70891
|
exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
|
|
70505
70892
|
|
|
70506
|
-
},{"../../Decorators":
|
|
70893
|
+
},{"../../Decorators":265,"../Trees":389,"./XPathElement":399}],405:[function(require,module,exports){
|
|
70507
70894
|
"use strict";
|
|
70508
70895
|
/*!
|
|
70509
70896
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70546,7 +70933,7 @@ __decorate([
|
|
|
70546
70933
|
], XPathTokenElement.prototype, "evaluate", null);
|
|
70547
70934
|
exports.XPathTokenElement = XPathTokenElement;
|
|
70548
70935
|
|
|
70549
|
-
},{"../../Decorators":
|
|
70936
|
+
},{"../../Decorators":265,"../TerminalNode":388,"../Trees":389,"./XPathElement":399}],406:[function(require,module,exports){
|
|
70550
70937
|
"use strict";
|
|
70551
70938
|
/*!
|
|
70552
70939
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70582,7 +70969,7 @@ __decorate([
|
|
|
70582
70969
|
], XPathWildcardAnywhereElement.prototype, "evaluate", null);
|
|
70583
70970
|
exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
|
|
70584
70971
|
|
|
70585
|
-
},{"../../Decorators":
|
|
70972
|
+
},{"../../Decorators":265,"../Trees":389,"./XPath":398,"./XPathElement":399}],407:[function(require,module,exports){
|
|
70586
70973
|
"use strict";
|
|
70587
70974
|
/*!
|
|
70588
70975
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70622,7 +71009,7 @@ __decorate([
|
|
|
70622
71009
|
], XPathWildcardElement.prototype, "evaluate", null);
|
|
70623
71010
|
exports.XPathWildcardElement = XPathWildcardElement;
|
|
70624
71011
|
|
|
70625
|
-
},{"../../Decorators":
|
|
71012
|
+
},{"../../Decorators":265,"../Trees":389,"./XPath":398,"./XPathElement":399}],408:[function(require,module,exports){
|
|
70626
71013
|
(function (global){(function (){
|
|
70627
71014
|
'use strict';
|
|
70628
71015
|
|
|
@@ -71132,7 +71519,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
71132
71519
|
};
|
|
71133
71520
|
|
|
71134
71521
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
71135
|
-
},{"object.assign/polyfill":
|
|
71522
|
+
},{"object.assign/polyfill":465,"util/":411}],409:[function(require,module,exports){
|
|
71136
71523
|
if (typeof Object.create === 'function') {
|
|
71137
71524
|
// implementation from standard node.js 'util' module
|
|
71138
71525
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -71157,14 +71544,14 @@ if (typeof Object.create === 'function') {
|
|
|
71157
71544
|
}
|
|
71158
71545
|
}
|
|
71159
71546
|
|
|
71160
|
-
},{}],
|
|
71547
|
+
},{}],410:[function(require,module,exports){
|
|
71161
71548
|
module.exports = function isBuffer(arg) {
|
|
71162
71549
|
return arg && typeof arg === 'object'
|
|
71163
71550
|
&& typeof arg.copy === 'function'
|
|
71164
71551
|
&& typeof arg.fill === 'function'
|
|
71165
71552
|
&& typeof arg.readUInt8 === 'function';
|
|
71166
71553
|
}
|
|
71167
|
-
},{}],
|
|
71554
|
+
},{}],411:[function(require,module,exports){
|
|
71168
71555
|
(function (process,global){(function (){
|
|
71169
71556
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
71170
71557
|
//
|
|
@@ -71754,7 +72141,7 @@ function hasOwnProperty(obj, prop) {
|
|
|
71754
72141
|
}
|
|
71755
72142
|
|
|
71756
72143
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
71757
|
-
},{"./support/isBuffer":
|
|
72144
|
+
},{"./support/isBuffer":410,"_process":467,"inherits":409}],412:[function(require,module,exports){
|
|
71758
72145
|
(function (global){(function (){
|
|
71759
72146
|
'use strict';
|
|
71760
72147
|
|
|
@@ -71775,7 +72162,7 @@ module.exports = function availableTypedArrays() {
|
|
|
71775
72162
|
};
|
|
71776
72163
|
|
|
71777
72164
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
71778
|
-
},{"possible-typed-array-names":
|
|
72165
|
+
},{"possible-typed-array-names":466}],413:[function(require,module,exports){
|
|
71779
72166
|
(function (process,global){(function (){
|
|
71780
72167
|
module.exports = process.hrtime || hrtime
|
|
71781
72168
|
|
|
@@ -71806,7 +72193,7 @@ function hrtime(previousTimestamp){
|
|
|
71806
72193
|
return [seconds,nanoseconds]
|
|
71807
72194
|
}
|
|
71808
72195
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
71809
|
-
},{"_process":
|
|
72196
|
+
},{"_process":467}],414:[function(require,module,exports){
|
|
71810
72197
|
'use strict';
|
|
71811
72198
|
|
|
71812
72199
|
var bind = require('function-bind');
|
|
@@ -71818,7 +72205,7 @@ var $reflectApply = require('./reflectApply');
|
|
|
71818
72205
|
/** @type {import('./actualApply')} */
|
|
71819
72206
|
module.exports = $reflectApply || bind.call($call, $apply);
|
|
71820
72207
|
|
|
71821
|
-
},{"./functionApply":
|
|
72208
|
+
},{"./functionApply":416,"./functionCall":417,"./reflectApply":419,"function-bind":435}],415:[function(require,module,exports){
|
|
71822
72209
|
'use strict';
|
|
71823
72210
|
|
|
71824
72211
|
var bind = require('function-bind');
|
|
@@ -71830,19 +72217,19 @@ module.exports = function applyBind() {
|
|
|
71830
72217
|
return actualApply(bind, $apply, arguments);
|
|
71831
72218
|
};
|
|
71832
72219
|
|
|
71833
|
-
},{"./actualApply":
|
|
72220
|
+
},{"./actualApply":414,"./functionApply":416,"function-bind":435}],416:[function(require,module,exports){
|
|
71834
72221
|
'use strict';
|
|
71835
72222
|
|
|
71836
72223
|
/** @type {import('./functionApply')} */
|
|
71837
72224
|
module.exports = Function.prototype.apply;
|
|
71838
72225
|
|
|
71839
|
-
},{}],
|
|
72226
|
+
},{}],417:[function(require,module,exports){
|
|
71840
72227
|
'use strict';
|
|
71841
72228
|
|
|
71842
72229
|
/** @type {import('./functionCall')} */
|
|
71843
72230
|
module.exports = Function.prototype.call;
|
|
71844
72231
|
|
|
71845
|
-
},{}],
|
|
72232
|
+
},{}],418:[function(require,module,exports){
|
|
71846
72233
|
'use strict';
|
|
71847
72234
|
|
|
71848
72235
|
var bind = require('function-bind');
|
|
@@ -71859,13 +72246,13 @@ module.exports = function callBindBasic(args) {
|
|
|
71859
72246
|
return $actualApply(bind, $call, args);
|
|
71860
72247
|
};
|
|
71861
72248
|
|
|
71862
|
-
},{"./actualApply":
|
|
72249
|
+
},{"./actualApply":414,"./functionCall":417,"es-errors/type":430,"function-bind":435}],419:[function(require,module,exports){
|
|
71863
72250
|
'use strict';
|
|
71864
72251
|
|
|
71865
72252
|
/** @type {import('./reflectApply')} */
|
|
71866
72253
|
module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
|
|
71867
72254
|
|
|
71868
|
-
},{}],
|
|
72255
|
+
},{}],420:[function(require,module,exports){
|
|
71869
72256
|
'use strict';
|
|
71870
72257
|
|
|
71871
72258
|
var setFunctionLength = require('set-function-length');
|
|
@@ -71891,7 +72278,7 @@ if ($defineProperty) {
|
|
|
71891
72278
|
module.exports.apply = applyBind;
|
|
71892
72279
|
}
|
|
71893
72280
|
|
|
71894
|
-
},{"call-bind-apply-helpers":
|
|
72281
|
+
},{"call-bind-apply-helpers":418,"call-bind-apply-helpers/applyBind":415,"es-define-property":424,"set-function-length":469}],421:[function(require,module,exports){
|
|
71895
72282
|
'use strict';
|
|
71896
72283
|
|
|
71897
72284
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -71912,7 +72299,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
71912
72299
|
return intrinsic;
|
|
71913
72300
|
};
|
|
71914
72301
|
|
|
71915
|
-
},{"call-bind-apply-helpers":
|
|
72302
|
+
},{"call-bind-apply-helpers":418,"get-intrinsic":436}],422:[function(require,module,exports){
|
|
71916
72303
|
'use strict';
|
|
71917
72304
|
|
|
71918
72305
|
var $defineProperty = require('es-define-property');
|
|
@@ -71970,7 +72357,7 @@ module.exports = function defineDataProperty(
|
|
|
71970
72357
|
}
|
|
71971
72358
|
};
|
|
71972
72359
|
|
|
71973
|
-
},{"es-define-property":
|
|
72360
|
+
},{"es-define-property":424,"es-errors/syntax":429,"es-errors/type":430,"gopd":441}],423:[function(require,module,exports){
|
|
71974
72361
|
'use strict';
|
|
71975
72362
|
|
|
71976
72363
|
var callBind = require('call-bind-apply-helpers');
|
|
@@ -72002,7 +72389,7 @@ module.exports = desc && typeof desc.get === 'function'
|
|
|
72002
72389
|
}
|
|
72003
72390
|
: false;
|
|
72004
72391
|
|
|
72005
|
-
},{"call-bind-apply-helpers":
|
|
72392
|
+
},{"call-bind-apply-helpers":418,"gopd":441}],424:[function(require,module,exports){
|
|
72006
72393
|
'use strict';
|
|
72007
72394
|
|
|
72008
72395
|
/** @type {import('.')} */
|
|
@@ -72018,55 +72405,55 @@ if ($defineProperty) {
|
|
|
72018
72405
|
|
|
72019
72406
|
module.exports = $defineProperty;
|
|
72020
72407
|
|
|
72021
|
-
},{}],
|
|
72408
|
+
},{}],425:[function(require,module,exports){
|
|
72022
72409
|
'use strict';
|
|
72023
72410
|
|
|
72024
72411
|
/** @type {import('./eval')} */
|
|
72025
72412
|
module.exports = EvalError;
|
|
72026
72413
|
|
|
72027
|
-
},{}],
|
|
72414
|
+
},{}],426:[function(require,module,exports){
|
|
72028
72415
|
'use strict';
|
|
72029
72416
|
|
|
72030
72417
|
/** @type {import('.')} */
|
|
72031
72418
|
module.exports = Error;
|
|
72032
72419
|
|
|
72033
|
-
},{}],
|
|
72420
|
+
},{}],427:[function(require,module,exports){
|
|
72034
72421
|
'use strict';
|
|
72035
72422
|
|
|
72036
72423
|
/** @type {import('./range')} */
|
|
72037
72424
|
module.exports = RangeError;
|
|
72038
72425
|
|
|
72039
|
-
},{}],
|
|
72426
|
+
},{}],428:[function(require,module,exports){
|
|
72040
72427
|
'use strict';
|
|
72041
72428
|
|
|
72042
72429
|
/** @type {import('./ref')} */
|
|
72043
72430
|
module.exports = ReferenceError;
|
|
72044
72431
|
|
|
72045
|
-
},{}],
|
|
72432
|
+
},{}],429:[function(require,module,exports){
|
|
72046
72433
|
'use strict';
|
|
72047
72434
|
|
|
72048
72435
|
/** @type {import('./syntax')} */
|
|
72049
72436
|
module.exports = SyntaxError;
|
|
72050
72437
|
|
|
72051
|
-
},{}],
|
|
72438
|
+
},{}],430:[function(require,module,exports){
|
|
72052
72439
|
'use strict';
|
|
72053
72440
|
|
|
72054
72441
|
/** @type {import('./type')} */
|
|
72055
72442
|
module.exports = TypeError;
|
|
72056
72443
|
|
|
72057
|
-
},{}],
|
|
72444
|
+
},{}],431:[function(require,module,exports){
|
|
72058
72445
|
'use strict';
|
|
72059
72446
|
|
|
72060
72447
|
/** @type {import('./uri')} */
|
|
72061
72448
|
module.exports = URIError;
|
|
72062
72449
|
|
|
72063
|
-
},{}],
|
|
72450
|
+
},{}],432:[function(require,module,exports){
|
|
72064
72451
|
'use strict';
|
|
72065
72452
|
|
|
72066
72453
|
/** @type {import('.')} */
|
|
72067
72454
|
module.exports = Object;
|
|
72068
72455
|
|
|
72069
|
-
},{}],
|
|
72456
|
+
},{}],433:[function(require,module,exports){
|
|
72070
72457
|
'use strict';
|
|
72071
72458
|
|
|
72072
72459
|
var isCallable = require('is-callable');
|
|
@@ -72137,7 +72524,7 @@ module.exports = function forEach(list, iterator, thisArg) {
|
|
|
72137
72524
|
}
|
|
72138
72525
|
};
|
|
72139
72526
|
|
|
72140
|
-
},{"is-callable":
|
|
72527
|
+
},{"is-callable":449}],434:[function(require,module,exports){
|
|
72141
72528
|
'use strict';
|
|
72142
72529
|
|
|
72143
72530
|
/* eslint no-invalid-this: 1 */
|
|
@@ -72223,14 +72610,14 @@ module.exports = function bind(that) {
|
|
|
72223
72610
|
return bound;
|
|
72224
72611
|
};
|
|
72225
72612
|
|
|
72226
|
-
},{}],
|
|
72613
|
+
},{}],435:[function(require,module,exports){
|
|
72227
72614
|
'use strict';
|
|
72228
72615
|
|
|
72229
72616
|
var implementation = require('./implementation');
|
|
72230
72617
|
|
|
72231
72618
|
module.exports = Function.prototype.bind || implementation;
|
|
72232
72619
|
|
|
72233
|
-
},{"./implementation":
|
|
72620
|
+
},{"./implementation":434}],436:[function(require,module,exports){
|
|
72234
72621
|
'use strict';
|
|
72235
72622
|
|
|
72236
72623
|
var undefined;
|
|
@@ -72610,7 +72997,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
72610
72997
|
return value;
|
|
72611
72998
|
};
|
|
72612
72999
|
|
|
72613
|
-
},{"call-bind-apply-helpers/functionApply":
|
|
73000
|
+
},{"call-bind-apply-helpers/functionApply":416,"call-bind-apply-helpers/functionCall":417,"es-define-property":424,"es-errors":426,"es-errors/eval":425,"es-errors/range":427,"es-errors/ref":428,"es-errors/syntax":429,"es-errors/type":430,"es-errors/uri":431,"es-object-atoms":432,"function-bind":435,"get-proto":439,"get-proto/Object.getPrototypeOf":437,"get-proto/Reflect.getPrototypeOf":438,"gopd":441,"has-symbols":443,"hasown":446,"math-intrinsics/abs":453,"math-intrinsics/floor":454,"math-intrinsics/max":456,"math-intrinsics/min":457,"math-intrinsics/pow":458,"math-intrinsics/round":459,"math-intrinsics/sign":460}],437:[function(require,module,exports){
|
|
72614
73001
|
'use strict';
|
|
72615
73002
|
|
|
72616
73003
|
var $Object = require('es-object-atoms');
|
|
@@ -72618,13 +73005,13 @@ var $Object = require('es-object-atoms');
|
|
|
72618
73005
|
/** @type {import('./Object.getPrototypeOf')} */
|
|
72619
73006
|
module.exports = $Object.getPrototypeOf || null;
|
|
72620
73007
|
|
|
72621
|
-
},{"es-object-atoms":
|
|
73008
|
+
},{"es-object-atoms":432}],438:[function(require,module,exports){
|
|
72622
73009
|
'use strict';
|
|
72623
73010
|
|
|
72624
73011
|
/** @type {import('./Reflect.getPrototypeOf')} */
|
|
72625
73012
|
module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
|
|
72626
73013
|
|
|
72627
|
-
},{}],
|
|
73014
|
+
},{}],439:[function(require,module,exports){
|
|
72628
73015
|
'use strict';
|
|
72629
73016
|
|
|
72630
73017
|
var reflectGetProto = require('./Reflect.getPrototypeOf');
|
|
@@ -72653,13 +73040,13 @@ module.exports = reflectGetProto
|
|
|
72653
73040
|
}
|
|
72654
73041
|
: null;
|
|
72655
73042
|
|
|
72656
|
-
},{"./Object.getPrototypeOf":
|
|
73043
|
+
},{"./Object.getPrototypeOf":437,"./Reflect.getPrototypeOf":438,"dunder-proto/get":423}],440:[function(require,module,exports){
|
|
72657
73044
|
'use strict';
|
|
72658
73045
|
|
|
72659
73046
|
/** @type {import('./gOPD')} */
|
|
72660
73047
|
module.exports = Object.getOwnPropertyDescriptor;
|
|
72661
73048
|
|
|
72662
|
-
},{}],
|
|
73049
|
+
},{}],441:[function(require,module,exports){
|
|
72663
73050
|
'use strict';
|
|
72664
73051
|
|
|
72665
73052
|
/** @type {import('.')} */
|
|
@@ -72676,7 +73063,7 @@ if ($gOPD) {
|
|
|
72676
73063
|
|
|
72677
73064
|
module.exports = $gOPD;
|
|
72678
73065
|
|
|
72679
|
-
},{"./gOPD":
|
|
73066
|
+
},{"./gOPD":440}],442:[function(require,module,exports){
|
|
72680
73067
|
'use strict';
|
|
72681
73068
|
|
|
72682
73069
|
var $defineProperty = require('es-define-property');
|
|
@@ -72700,7 +73087,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
|
|
|
72700
73087
|
|
|
72701
73088
|
module.exports = hasPropertyDescriptors;
|
|
72702
73089
|
|
|
72703
|
-
},{"es-define-property":
|
|
73090
|
+
},{"es-define-property":424}],443:[function(require,module,exports){
|
|
72704
73091
|
'use strict';
|
|
72705
73092
|
|
|
72706
73093
|
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
|
@@ -72716,7 +73103,7 @@ module.exports = function hasNativeSymbols() {
|
|
|
72716
73103
|
return hasSymbolSham();
|
|
72717
73104
|
};
|
|
72718
73105
|
|
|
72719
|
-
},{"./shams":
|
|
73106
|
+
},{"./shams":444}],444:[function(require,module,exports){
|
|
72720
73107
|
'use strict';
|
|
72721
73108
|
|
|
72722
73109
|
/** @type {import('./shams')} */
|
|
@@ -72763,7 +73150,7 @@ module.exports = function hasSymbols() {
|
|
|
72763
73150
|
return true;
|
|
72764
73151
|
};
|
|
72765
73152
|
|
|
72766
|
-
},{}],
|
|
73153
|
+
},{}],445:[function(require,module,exports){
|
|
72767
73154
|
'use strict';
|
|
72768
73155
|
|
|
72769
73156
|
var hasSymbols = require('has-symbols/shams');
|
|
@@ -72773,7 +73160,7 @@ module.exports = function hasToStringTagShams() {
|
|
|
72773
73160
|
return hasSymbols() && !!Symbol.toStringTag;
|
|
72774
73161
|
};
|
|
72775
73162
|
|
|
72776
|
-
},{"has-symbols/shams":
|
|
73163
|
+
},{"has-symbols/shams":444}],446:[function(require,module,exports){
|
|
72777
73164
|
'use strict';
|
|
72778
73165
|
|
|
72779
73166
|
var call = Function.prototype.call;
|
|
@@ -72783,7 +73170,7 @@ var bind = require('function-bind');
|
|
|
72783
73170
|
/** @type {import('.')} */
|
|
72784
73171
|
module.exports = bind.call(call, $hasOwn);
|
|
72785
73172
|
|
|
72786
|
-
},{"function-bind":
|
|
73173
|
+
},{"function-bind":435}],447:[function(require,module,exports){
|
|
72787
73174
|
if (typeof Object.create === 'function') {
|
|
72788
73175
|
// implementation from standard node.js 'util' module
|
|
72789
73176
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -72812,7 +73199,7 @@ if (typeof Object.create === 'function') {
|
|
|
72812
73199
|
}
|
|
72813
73200
|
}
|
|
72814
73201
|
|
|
72815
|
-
},{}],
|
|
73202
|
+
},{}],448:[function(require,module,exports){
|
|
72816
73203
|
'use strict';
|
|
72817
73204
|
|
|
72818
73205
|
var hasToStringTag = require('has-tostringtag/shams')();
|
|
@@ -72858,7 +73245,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
|
72858
73245
|
/** @type {import('.')} */
|
|
72859
73246
|
module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
72860
73247
|
|
|
72861
|
-
},{"call-bound":
|
|
73248
|
+
},{"call-bound":421,"has-tostringtag/shams":445}],449:[function(require,module,exports){
|
|
72862
73249
|
'use strict';
|
|
72863
73250
|
|
|
72864
73251
|
var fnToStr = Function.prototype.toString;
|
|
@@ -72961,7 +73348,7 @@ module.exports = reflectApply
|
|
|
72961
73348
|
return tryFunctionObject(value);
|
|
72962
73349
|
};
|
|
72963
73350
|
|
|
72964
|
-
},{}],
|
|
73351
|
+
},{}],450:[function(require,module,exports){
|
|
72965
73352
|
'use strict';
|
|
72966
73353
|
|
|
72967
73354
|
var callBound = require('call-bound');
|
|
@@ -73010,7 +73397,7 @@ module.exports = function isGeneratorFunction(fn) {
|
|
|
73010
73397
|
return getProto(fn) === GeneratorFunction;
|
|
73011
73398
|
};
|
|
73012
73399
|
|
|
73013
|
-
},{"call-bound":
|
|
73400
|
+
},{"call-bound":421,"get-proto":439,"has-tostringtag/shams":445,"safe-regex-test":468}],451:[function(require,module,exports){
|
|
73014
73401
|
'use strict';
|
|
73015
73402
|
|
|
73016
73403
|
var callBound = require('call-bound');
|
|
@@ -73081,7 +73468,7 @@ if (hasToStringTag) {
|
|
|
73081
73468
|
|
|
73082
73469
|
module.exports = fn;
|
|
73083
73470
|
|
|
73084
|
-
},{"call-bound":
|
|
73471
|
+
},{"call-bound":421,"gopd":441,"has-tostringtag/shams":445,"hasown":446}],452:[function(require,module,exports){
|
|
73085
73472
|
'use strict';
|
|
73086
73473
|
|
|
73087
73474
|
var whichTypedArray = require('which-typed-array');
|
|
@@ -73091,19 +73478,19 @@ module.exports = function isTypedArray(value) {
|
|
|
73091
73478
|
return !!whichTypedArray(value);
|
|
73092
73479
|
};
|
|
73093
73480
|
|
|
73094
|
-
},{"which-typed-array":
|
|
73481
|
+
},{"which-typed-array":474}],453:[function(require,module,exports){
|
|
73095
73482
|
'use strict';
|
|
73096
73483
|
|
|
73097
73484
|
/** @type {import('./abs')} */
|
|
73098
73485
|
module.exports = Math.abs;
|
|
73099
73486
|
|
|
73100
|
-
},{}],
|
|
73487
|
+
},{}],454:[function(require,module,exports){
|
|
73101
73488
|
'use strict';
|
|
73102
73489
|
|
|
73103
73490
|
/** @type {import('./floor')} */
|
|
73104
73491
|
module.exports = Math.floor;
|
|
73105
73492
|
|
|
73106
|
-
},{}],
|
|
73493
|
+
},{}],455:[function(require,module,exports){
|
|
73107
73494
|
'use strict';
|
|
73108
73495
|
|
|
73109
73496
|
/** @type {import('./isNaN')} */
|
|
@@ -73111,31 +73498,31 @@ module.exports = Number.isNaN || function isNaN(a) {
|
|
|
73111
73498
|
return a !== a;
|
|
73112
73499
|
};
|
|
73113
73500
|
|
|
73114
|
-
},{}],
|
|
73501
|
+
},{}],456:[function(require,module,exports){
|
|
73115
73502
|
'use strict';
|
|
73116
73503
|
|
|
73117
73504
|
/** @type {import('./max')} */
|
|
73118
73505
|
module.exports = Math.max;
|
|
73119
73506
|
|
|
73120
|
-
},{}],
|
|
73507
|
+
},{}],457:[function(require,module,exports){
|
|
73121
73508
|
'use strict';
|
|
73122
73509
|
|
|
73123
73510
|
/** @type {import('./min')} */
|
|
73124
73511
|
module.exports = Math.min;
|
|
73125
73512
|
|
|
73126
|
-
},{}],
|
|
73513
|
+
},{}],458:[function(require,module,exports){
|
|
73127
73514
|
'use strict';
|
|
73128
73515
|
|
|
73129
73516
|
/** @type {import('./pow')} */
|
|
73130
73517
|
module.exports = Math.pow;
|
|
73131
73518
|
|
|
73132
|
-
},{}],
|
|
73519
|
+
},{}],459:[function(require,module,exports){
|
|
73133
73520
|
'use strict';
|
|
73134
73521
|
|
|
73135
73522
|
/** @type {import('./round')} */
|
|
73136
73523
|
module.exports = Math.round;
|
|
73137
73524
|
|
|
73138
|
-
},{}],
|
|
73525
|
+
},{}],460:[function(require,module,exports){
|
|
73139
73526
|
'use strict';
|
|
73140
73527
|
|
|
73141
73528
|
var $isNaN = require('./isNaN');
|
|
@@ -73148,7 +73535,7 @@ module.exports = function sign(number) {
|
|
|
73148
73535
|
return number < 0 ? -1 : +1;
|
|
73149
73536
|
};
|
|
73150
73537
|
|
|
73151
|
-
},{"./isNaN":
|
|
73538
|
+
},{"./isNaN":455}],461:[function(require,module,exports){
|
|
73152
73539
|
'use strict';
|
|
73153
73540
|
|
|
73154
73541
|
var keysShim;
|
|
@@ -73272,7 +73659,7 @@ if (!Object.keys) {
|
|
|
73272
73659
|
}
|
|
73273
73660
|
module.exports = keysShim;
|
|
73274
73661
|
|
|
73275
|
-
},{"./isArguments":
|
|
73662
|
+
},{"./isArguments":463}],462:[function(require,module,exports){
|
|
73276
73663
|
'use strict';
|
|
73277
73664
|
|
|
73278
73665
|
var slice = Array.prototype.slice;
|
|
@@ -73306,7 +73693,7 @@ keysShim.shim = function shimObjectKeys() {
|
|
|
73306
73693
|
|
|
73307
73694
|
module.exports = keysShim;
|
|
73308
73695
|
|
|
73309
|
-
},{"./implementation":
|
|
73696
|
+
},{"./implementation":461,"./isArguments":463}],463:[function(require,module,exports){
|
|
73310
73697
|
'use strict';
|
|
73311
73698
|
|
|
73312
73699
|
var toStr = Object.prototype.toString;
|
|
@@ -73325,7 +73712,7 @@ module.exports = function isArguments(value) {
|
|
|
73325
73712
|
return isArgs;
|
|
73326
73713
|
};
|
|
73327
73714
|
|
|
73328
|
-
},{}],
|
|
73715
|
+
},{}],464:[function(require,module,exports){
|
|
73329
73716
|
'use strict';
|
|
73330
73717
|
|
|
73331
73718
|
// modified from https://github.com/es-shims/es6-shim
|
|
@@ -73373,7 +73760,7 @@ module.exports = function assign(target, source1) {
|
|
|
73373
73760
|
return to; // step 4
|
|
73374
73761
|
};
|
|
73375
73762
|
|
|
73376
|
-
},{"call-bound":
|
|
73763
|
+
},{"call-bound":421,"es-object-atoms":432,"has-symbols/shams":444,"object-keys":462}],465:[function(require,module,exports){
|
|
73377
73764
|
'use strict';
|
|
73378
73765
|
|
|
73379
73766
|
var implementation = require('./implementation');
|
|
@@ -73430,7 +73817,7 @@ module.exports = function getPolyfill() {
|
|
|
73430
73817
|
return Object.assign;
|
|
73431
73818
|
};
|
|
73432
73819
|
|
|
73433
|
-
},{"./implementation":
|
|
73820
|
+
},{"./implementation":464}],466:[function(require,module,exports){
|
|
73434
73821
|
'use strict';
|
|
73435
73822
|
|
|
73436
73823
|
/** @type {import('.')} */
|
|
@@ -73449,7 +73836,7 @@ module.exports = [
|
|
|
73449
73836
|
'BigUint64Array'
|
|
73450
73837
|
];
|
|
73451
73838
|
|
|
73452
|
-
},{}],
|
|
73839
|
+
},{}],467:[function(require,module,exports){
|
|
73453
73840
|
// shim for using process in browser
|
|
73454
73841
|
var process = module.exports = {};
|
|
73455
73842
|
|
|
@@ -73635,7 +74022,7 @@ process.chdir = function (dir) {
|
|
|
73635
74022
|
};
|
|
73636
74023
|
process.umask = function() { return 0; };
|
|
73637
74024
|
|
|
73638
|
-
},{}],
|
|
74025
|
+
},{}],468:[function(require,module,exports){
|
|
73639
74026
|
'use strict';
|
|
73640
74027
|
|
|
73641
74028
|
var callBound = require('call-bound');
|
|
@@ -73654,7 +74041,7 @@ module.exports = function regexTester(regex) {
|
|
|
73654
74041
|
};
|
|
73655
74042
|
};
|
|
73656
74043
|
|
|
73657
|
-
},{"call-bound":
|
|
74044
|
+
},{"call-bound":421,"es-errors/type":430,"is-regex":451}],469:[function(require,module,exports){
|
|
73658
74045
|
'use strict';
|
|
73659
74046
|
|
|
73660
74047
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -73698,7 +74085,7 @@ module.exports = function setFunctionLength(fn, length) {
|
|
|
73698
74085
|
return fn;
|
|
73699
74086
|
};
|
|
73700
74087
|
|
|
73701
|
-
},{"define-data-property":
|
|
74088
|
+
},{"define-data-property":422,"es-errors/type":430,"get-intrinsic":436,"gopd":441,"has-property-descriptors":442}],470:[function(require,module,exports){
|
|
73702
74089
|
(function (setImmediate,clearImmediate){(function (){
|
|
73703
74090
|
var nextTick = require('process/browser.js').nextTick;
|
|
73704
74091
|
var apply = Function.prototype.apply;
|
|
@@ -73777,9 +74164,9 @@ exports.clearImmediate = typeof clearImmediate === "function" ? clearImmediate :
|
|
|
73777
74164
|
delete immediateIds[id];
|
|
73778
74165
|
};
|
|
73779
74166
|
}).call(this)}).call(this,require("timers").setImmediate,require("timers").clearImmediate)
|
|
73780
|
-
},{"process/browser.js":
|
|
73781
|
-
arguments[4][
|
|
73782
|
-
},{"dup":
|
|
74167
|
+
},{"process/browser.js":467,"timers":470}],471:[function(require,module,exports){
|
|
74168
|
+
arguments[4][410][0].apply(exports,arguments)
|
|
74169
|
+
},{"dup":410}],472:[function(require,module,exports){
|
|
73783
74170
|
// Currently in sync with Node.js lib/internal/util/types.js
|
|
73784
74171
|
// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
|
|
73785
74172
|
|
|
@@ -74115,7 +74502,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
|
|
|
74115
74502
|
});
|
|
74116
74503
|
});
|
|
74117
74504
|
|
|
74118
|
-
},{"is-arguments":
|
|
74505
|
+
},{"is-arguments":448,"is-generator-function":450,"is-typed-array":452,"which-typed-array":474}],473:[function(require,module,exports){
|
|
74119
74506
|
(function (process){(function (){
|
|
74120
74507
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
74121
74508
|
//
|
|
@@ -74834,7 +75221,7 @@ function callbackify(original) {
|
|
|
74834
75221
|
exports.callbackify = callbackify;
|
|
74835
75222
|
|
|
74836
75223
|
}).call(this)}).call(this,require('_process'))
|
|
74837
|
-
},{"./support/isBuffer":
|
|
75224
|
+
},{"./support/isBuffer":471,"./support/types":472,"_process":467,"inherits":447}],474:[function(require,module,exports){
|
|
74838
75225
|
(function (global){(function (){
|
|
74839
75226
|
'use strict';
|
|
74840
75227
|
|
|
@@ -74955,5 +75342,5 @@ module.exports = function whichTypedArray(value) {
|
|
|
74955
75342
|
};
|
|
74956
75343
|
|
|
74957
75344
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
74958
|
-
},{"available-typed-arrays":
|
|
75345
|
+
},{"available-typed-arrays":412,"call-bind":420,"call-bound":421,"for-each":433,"get-proto":439,"gopd":441,"has-tostringtag/shams":445}]},{},[136])(136)
|
|
74959
75346
|
});
|