@designliquido/delegua 0.38.0 → 0.38.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/analisador-semantico/analisador-semantico.d.ts.map +1 -1
  2. package/analisador-semantico/analisador-semantico.js +11 -21
  3. package/analisador-semantico/analisador-semantico.js.map +1 -1
  4. package/avaliador-sintatico/avaliador-sintatico-base.js +1 -1
  5. package/avaliador-sintatico/avaliador-sintatico-base.js.map +1 -1
  6. package/avaliador-sintatico/avaliador-sintatico.d.ts +8 -0
  7. package/avaliador-sintatico/avaliador-sintatico.d.ts.map +1 -1
  8. package/avaliador-sintatico/avaliador-sintatico.js +108 -13
  9. package/avaliador-sintatico/avaliador-sintatico.js.map +1 -1
  10. package/avaliador-sintatico/dialetos/avaliador-sintatico-egua-classico.js +1 -1
  11. package/avaliador-sintatico/dialetos/avaliador-sintatico-egua-classico.js.map +1 -1
  12. package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.js +1 -1
  13. package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.js.map +1 -1
  14. package/avaliador-sintatico/informacao-escopo.d.ts +7 -0
  15. package/avaliador-sintatico/informacao-escopo.d.ts.map +1 -0
  16. package/avaliador-sintatico/informacao-escopo.js +10 -0
  17. package/avaliador-sintatico/informacao-escopo.js.map +1 -0
  18. package/avaliador-sintatico/pilha-escopos.d.ts +13 -0
  19. package/avaliador-sintatico/pilha-escopos.d.ts.map +1 -0
  20. package/avaliador-sintatico/pilha-escopos.js +39 -0
  21. package/avaliador-sintatico/pilha-escopos.js.map +1 -0
  22. package/avaliador-sintatico/retornos/retorno-primario.d.ts +2 -2
  23. package/avaliador-sintatico/retornos/retorno-primario.d.ts.map +1 -1
  24. package/bin/package.json +1 -1
  25. package/construtos/variavel.d.ts +2 -1
  26. package/construtos/variavel.d.ts.map +1 -1
  27. package/construtos/variavel.js +2 -1
  28. package/construtos/variavel.js.map +1 -1
  29. package/inferenciador.d.ts.map +1 -1
  30. package/inferenciador.js +26 -17
  31. package/inferenciador.js.map +1 -1
  32. package/interpretador/interpretador-base.d.ts.map +1 -1
  33. package/interpretador/interpretador-base.js +8 -7
  34. package/interpretador/interpretador-base.js.map +1 -1
  35. package/package.json +1 -1
  36. package/tipos-de-dados/delegua.d.ts +3 -0
  37. package/tipos-de-dados/delegua.d.ts.map +1 -1
  38. package/tipos-de-dados/delegua.js +3 -0
  39. package/tipos-de-dados/delegua.js.map +1 -1
  40. package/umd/delegua.js +591 -431
package/umd/delegua.js CHANGED
@@ -165,7 +165,7 @@ class AvaliadorSintaticoBase {
165
165
  const parametros = [];
166
166
  do {
167
167
  if (parametros.length >= 255) {
168
- this.erro(this.simbolos[this.atual], 'Não pode haver mais de 255 parâmetros');
168
+ this.erro(this.simbolos[this.atual], 'Função não pode ter mais de 255 parâmetros.');
169
169
  }
170
170
  const parametro = {};
171
171
  if (this.simbolos[this.atual].tipo === comum_1.default.MULTIPLICACAO) {
@@ -232,7 +232,7 @@ class AvaliadorSintaticoBase {
232
232
  }
233
233
  exports.AvaliadorSintaticoBase = AvaliadorSintaticoBase;
234
234
 
235
- },{"../construtos":39,"../declaracoes":77,"../tipos-de-simbolos/comum":156,"./erro-avaliador-sintatico":7}],2:[function(require,module,exports){
235
+ },{"../construtos":41,"../declaracoes":79,"../tipos-de-simbolos/comum":158,"./erro-avaliador-sintatico":7}],2:[function(require,module,exports){
236
236
  "use strict";
237
237
  var __importDefault = (this && this.__importDefault) || function (mod) {
238
238
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -249,6 +249,8 @@ const declaracoes_1 = require("../declaracoes");
249
249
  const lexador_1 = require("../lexador");
250
250
  const avaliador_sintatico_base_1 = require("./avaliador-sintatico-base");
251
251
  const inferenciador_1 = require("../inferenciador");
252
+ const pilha_escopos_1 = require("./pilha-escopos");
253
+ const informacao_escopo_1 = require("./informacao-escopo");
252
254
  /**
253
255
  * O avaliador sintático (_Parser_) é responsável por transformar os símbolos do Lexador em estruturas de alto nível.
254
256
  * Essas estruturas de alto nível são as partes que executam lógica de programação de fato.
@@ -263,6 +265,8 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
263
265
  this.erros = [];
264
266
  this.performance = performance;
265
267
  this.tiposDefinidosEmCodigo = {};
268
+ this.tiposDeFerramentasExternas = {};
269
+ this.pilhaEscopos = new pilha_escopos_1.PilhaEscopos();
266
270
  }
267
271
  verificarDefinicaoTipoAtual() {
268
272
  const tipos = [...Object.values(delegua_1.default)];
@@ -312,7 +316,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
312
316
  this.avancarEDevolverAnterior();
313
317
  valores = [];
314
318
  if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.COLCHETE_DIREITO)) {
315
- return new construtos_1.Vetor(this.hashArquivo, Number(simboloAtual.linha), []);
319
+ return new construtos_1.Vetor(this.hashArquivo, Number(simboloAtual.linha), [], 0, 'qualquer');
316
320
  }
317
321
  while (!this.verificarSeSimboloAtualEIgualA(delegua_2.default.COLCHETE_DIREITO)) {
318
322
  let valor = null;
@@ -333,7 +337,8 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
333
337
  this.consumir(delegua_2.default.VIRGULA, 'Esperado vírgula antes da próxima expressão.');
334
338
  }
335
339
  }
336
- return new construtos_1.Vetor(this.hashArquivo, Number(simboloAtual.linha), valores);
340
+ const tipoVetor = (0, inferenciador_1.inferirTipoVariavel)(valores);
341
+ return new construtos_1.Vetor(this.hashArquivo, Number(simboloAtual.linha), valores, valores.length, tipoVetor);
337
342
  case delegua_2.default.FALSO:
338
343
  this.avancarEDevolverAnterior();
339
344
  return new construtos_1.Literal(this.hashArquivo, Number(simboloAtual.linha), false, 'lógico');
@@ -343,15 +348,22 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
343
348
  return this.corpoDaFuncao(simboloFuncao.lexema);
344
349
  case delegua_2.default.IDENTIFICADOR:
345
350
  const simboloIdentificador = this.avancarEDevolverAnterior();
351
+ let tipoOperando;
352
+ if (simboloIdentificador.lexema in this.tiposDefinidosEmCodigo) {
353
+ tipoOperando = simboloIdentificador.lexema;
354
+ }
355
+ else {
356
+ tipoOperando = this.pilhaEscopos.obterTipoVariavelPorNome(simboloIdentificador.lexema);
357
+ }
346
358
  // Se o próximo símbolo é um incremento ou um decremento,
347
359
  // aqui deve retornar um unário correspondente.
348
360
  // Caso contrário, apenas retornar um construto de variável.
349
361
  if (this.simbolos[this.atual] &&
350
362
  [delegua_2.default.INCREMENTAR, delegua_2.default.DECREMENTAR].includes(this.simbolos[this.atual].tipo)) {
351
363
  const simboloIncrementoDecremento = this.avancarEDevolverAnterior();
352
- return new construtos_1.Unario(this.hashArquivo, simboloIncrementoDecremento, new construtos_1.Variavel(this.hashArquivo, simboloIdentificador), 'DEPOIS');
364
+ return new construtos_1.Unario(this.hashArquivo, simboloIncrementoDecremento, new construtos_1.Variavel(this.hashArquivo, simboloIdentificador, tipoOperando), 'DEPOIS');
353
365
  }
354
- return new construtos_1.Variavel(this.hashArquivo, simboloIdentificador);
366
+ return new construtos_1.Variavel(this.hashArquivo, simboloIdentificador, tipoOperando);
355
367
  case delegua_2.default.IMPORTAR:
356
368
  this.avancarEDevolverAnterior();
357
369
  return this.declaracaoImportar();
@@ -581,6 +593,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
581
593
  return this.atribuir();
582
594
  }
583
595
  blocoEscopo() {
596
+ this.pilhaEscopos.empilhar(new informacao_escopo_1.InformacaoEscopo());
584
597
  let declaracoes = [];
585
598
  while (!this.verificarTipoSimboloAtual(delegua_2.default.CHAVE_DIREITA) && !this.estaNoFinal()) {
586
599
  const retornoDeclaracao = this.resolverDeclaracaoForaDeBloco();
@@ -592,6 +605,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
592
605
  }
593
606
  }
594
607
  this.consumir(delegua_2.default.CHAVE_DIREITA, "Esperado '}' após o bloco.");
608
+ this.pilhaEscopos.removerUltimo();
595
609
  this.verificarSeSimboloAtualEIgualA(delegua_2.default.PONTO_E_VIRGULA);
596
610
  return declaracoes;
597
611
  }
@@ -766,6 +780,14 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
766
780
  throw this.erro(this.simbolos[this.atual], "Esperado palavras reservadas 'em' ou 'de' após variável de iteração em instrução 'para cada'.");
767
781
  }
768
782
  const vetor = this.expressao();
783
+ if (!vetor.hasOwnProperty('tipo')) {
784
+ throw this.erro(simboloPara, `Variável ou constante em 'para cada' não parece possuir um tipo iterável.`);
785
+ }
786
+ const tipoVetor = vetor.tipo;
787
+ if (!(tipoVetor).endsWith('[]')) {
788
+ throw this.erro(simboloPara, `Variável ou constante em 'para cada' não é iterável. Tipo resolvido: ${tipoVetor}.`);
789
+ }
790
+ this.pilhaEscopos.definirTipoVariavel(nomeVariavelIteracao.lexema, tipoVetor.slice(0, -2));
769
791
  const corpo = this.resolverDeclaracao();
770
792
  return new declaracoes_1.ParaCada(this.hashArquivo, Number(simboloPara.linha), nomeVariavelIteracao.lexema, vetor, corpo);
771
793
  }
@@ -982,6 +1004,25 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
982
1004
  this.consumir(delegua_2.default.COMO, "Esperado palavra reservada 'como' após expressão de inicialização de variável, em declaração 'tendo'.");
983
1005
  const simboloNomeVariavel = this.consumir(delegua_2.default.IDENTIFICADOR, "Esperado nome do identificador em declaração 'tendo'.");
984
1006
  this.consumir(delegua_2.default.CHAVE_ESQUERDA, "Esperado chave esquerda para abertura de bloco em declaração 'tendo'.");
1007
+ let tipoInicializacao = 'qualquer';
1008
+ switch (expressaoInicializacao.constructor.name) {
1009
+ case 'Chamada':
1010
+ const construtoChamada = expressaoInicializacao;
1011
+ switch (construtoChamada.entidadeChamada.constructor.name) {
1012
+ case 'Variavel':
1013
+ const entidadeChamadaVariavel = construtoChamada.entidadeChamada;
1014
+ tipoInicializacao = entidadeChamadaVariavel.tipo;
1015
+ break;
1016
+ // TODO: Demais casos
1017
+ default:
1018
+ break;
1019
+ }
1020
+ break;
1021
+ // TODO: Demais casos
1022
+ default:
1023
+ break;
1024
+ }
1025
+ this.pilhaEscopos.definirTipoVariavel(simboloNomeVariavel.lexema, tipoInicializacao);
985
1026
  const blocoCorpo = this.blocoEscopo();
986
1027
  return new declaracoes_1.TendoComo(simboloTendo.linha, simboloTendo.hashArquivo, simboloNomeVariavel, expressaoInicializacao, new declaracoes_1.Bloco(simboloTendo.linha, simboloTendo.hashArquivo, blocoCorpo));
987
1028
  }
@@ -993,10 +1034,10 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
993
1034
  this.consumir(delegua_2.default.CHAVE_DIREITA, 'Esperado chave direita para concluir relação de variáveis a serem desestruturadas.');
994
1035
  this.consumir(delegua_2.default.IGUAL, 'Esperado igual após relação de propriedades da desestruturação.');
995
1036
  const inicializador = this.expressao();
996
- // TODO: Para cada variável dos identificadores, emitir um `AcessoMetodoOuPropriedade` usando
997
- // como prefixo o nome do inicializador, e o sufixo o nome de cada propriedade.
998
1037
  const retornos = [];
999
1038
  for (let identificador of identificadores) {
1039
+ // TODO: Melhorar dicionário para intuir o tipo de cada propriedade.
1040
+ this.pilhaEscopos.definirTipoVariavel(identificador.lexema, 'qualquer');
1000
1041
  const declaracaoVar = new declaracoes_1.Var(identificador, new construtos_1.AcessoMetodoOuPropriedade(this.hashArquivo, inicializador, identificador));
1001
1042
  declaracaoVar.decoradores = Array.from(this.pilhaDecoradores);
1002
1043
  retornos.push(declaracaoVar);
@@ -1025,6 +1066,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
1025
1066
  if (!this.verificarSeSimboloAtualEIgualA(delegua_2.default.IGUAL)) {
1026
1067
  // Inicialização de variáveis sem valor.
1027
1068
  for (let identificador of identificadores.values()) {
1069
+ this.pilhaEscopos.definirTipoVariavel(identificador.lexema, tipo);
1028
1070
  retorno.push(new declaracoes_1.Var(identificador, null, tipo, Array.from(this.pilhaDecoradores)));
1029
1071
  }
1030
1072
  this.verificarSeSimboloAtualEIgualA(delegua_2.default.PONTO_E_VIRGULA);
@@ -1039,7 +1081,27 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
1039
1081
  throw this.erro(this.simbolos[this.atual], 'Quantidade de identificadores à esquerda do igual é diferente da quantidade de valores à direita.');
1040
1082
  }
1041
1083
  for (let [indice, identificador] of identificadores.entries()) {
1042
- tipo = inicializadores[indice] instanceof tuplas_1.Tupla ? delegua_1.default.TUPLA : tipo;
1084
+ // Se tipo ainda não foi definido, infere.
1085
+ if (!tipo) {
1086
+ switch (inicializadores[indice].constructor.name) {
1087
+ case 'Dupla':
1088
+ case 'Trio':
1089
+ case 'Quarteto':
1090
+ case 'Quinteto':
1091
+ case 'Sexteto':
1092
+ case 'Septeto':
1093
+ case 'Octeto':
1094
+ case 'Noneto':
1095
+ case 'Deceto':
1096
+ tipo = delegua_1.default.TUPLA;
1097
+ break;
1098
+ case 'Literal':
1099
+ case 'Vetor':
1100
+ tipo = inicializadores[indice].tipo;
1101
+ break;
1102
+ }
1103
+ }
1104
+ this.pilhaEscopos.definirTipoVariavel(identificador.lexema, tipo);
1043
1105
  retorno.push(new declaracoes_1.Var(identificador, inicializadores[indice], tipo, Array.from(this.pilhaDecoradores)));
1044
1106
  }
1045
1107
  this.verificarSeSimboloAtualEIgualA(delegua_2.default.PONTO_E_VIRGULA);
@@ -1054,10 +1116,10 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
1054
1116
  this.consumir(delegua_2.default.CHAVE_DIREITA, 'Esperado chave direita para concluir relação de variáveis a serem desestruturadas.');
1055
1117
  this.consumir(delegua_2.default.IGUAL, 'Esperado igual após relação de propriedades da desestruturação.');
1056
1118
  const inicializador = this.expressao();
1057
- // TODO: Para cada variável dos identificadores, emitir um `AcessoMetodoOuPropriedade` usando
1058
- // como prefixo o nome do inicializador, e o sufixo o nome de cada propriedade.
1059
1119
  const retornos = [];
1060
1120
  for (let identificador of identificadores) {
1121
+ // TODO: Melhorar dicionário para intuir o tipo de cada propriedade.
1122
+ this.pilhaEscopos.definirTipoVariavel(identificador.lexema, 'qualquer');
1061
1123
  const declaracaoConst = new declaracoes_1.Const(identificador, new construtos_1.AcessoMetodoOuPropriedade(this.hashArquivo, inicializador, identificador));
1062
1124
  declaracaoConst.decoradores = Array.from(this.pilhaDecoradores);
1063
1125
  retornos.push(declaracaoConst);
@@ -1091,6 +1153,10 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
1091
1153
  }
1092
1154
  let retorno = [];
1093
1155
  for (let [indice, identificador] of identificadores.entries()) {
1156
+ if (!tipo) {
1157
+ tipo = (0, inferenciador_1.inferirTipoVariavel)(inicializadores[indice]);
1158
+ }
1159
+ this.pilhaEscopos.definirTipoVariavel(identificador.lexema, tipo);
1094
1160
  retorno.push(new declaracoes_1.Const(identificador, inicializadores[indice], tipo, Array.from(this.pilhaDecoradores)));
1095
1161
  }
1096
1162
  this.pilhaDecoradores = [];
@@ -1109,7 +1175,12 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
1109
1175
  }
1110
1176
  const decoradores = Array.from(this.pilhaDecoradores);
1111
1177
  this.pilhaDecoradores = [];
1112
- return new declaracoes_1.FuncaoDeclaracao(simbolo, this.corpoDaFuncao(tipo), null, decoradores);
1178
+ // Se houver chamadas recursivas à função, precisamos definir um tipo
1179
+ // para ela. Vai ser atualizado após avaliação do corpo da função.
1180
+ this.pilhaEscopos.definirTipoVariavel(simbolo.lexema, 'qualquer');
1181
+ const corpoDaFuncao = this.corpoDaFuncao(tipo);
1182
+ this.pilhaEscopos.definirTipoVariavel(simbolo.lexema, corpoDaFuncao.tipoRetorno || 'qualquer');
1183
+ return new declaracoes_1.FuncaoDeclaracao(simbolo, corpoDaFuncao, null, decoradores);
1113
1184
  }
1114
1185
  logicaComumParametros() {
1115
1186
  const parametros = [];
@@ -1132,6 +1203,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
1132
1203
  parametro.tipoDado = tipoDadoParametro;
1133
1204
  this.avancarEDevolverAnterior();
1134
1205
  }
1206
+ this.pilhaEscopos.definirTipoVariavel(parametro.nome.lexema, parametro.tipoDado || 'qualquer');
1135
1207
  parametros.push(parametro);
1136
1208
  if (parametro.abrangencia === 'multiplo')
1137
1209
  break;
@@ -1147,7 +1219,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
1147
1219
  parametros = this.logicaComumParametros();
1148
1220
  }
1149
1221
  this.consumir(delegua_2.default.PARENTESE_DIREITO, "Esperado ')' após parâmetros.");
1150
- let tipoRetorno = null;
1222
+ let tipoRetorno = 'qualquer';
1151
1223
  if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.DOIS_PONTOS)) {
1152
1224
  tipoRetorno = this.verificarDefinicaoTipoAtual();
1153
1225
  this.avancarEDevolverAnterior();
@@ -1161,8 +1233,8 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
1161
1233
  const pilhaDecoradoresClasse = Array.from(this.pilhaDecoradores);
1162
1234
  let superClasse = null;
1163
1235
  if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.HERDA)) {
1164
- this.consumir(delegua_2.default.IDENTIFICADOR, 'Esperado nome da Superclasse.');
1165
- superClasse = new construtos_1.Variavel(this.hashArquivo, this.simbolos[this.atual - 1]);
1236
+ const simboloSuperclasse = this.consumir(delegua_2.default.IDENTIFICADOR, 'Esperado nome da Superclasse.');
1237
+ superClasse = new construtos_1.Variavel(this.hashArquivo, this.simbolos[this.atual - 1], simboloSuperclasse.lexema);
1166
1238
  }
1167
1239
  this.consumir(delegua_2.default.CHAVE_ESQUERDA, "Esperado '{' antes do escopo da classe.");
1168
1240
  this.pilhaDecoradores = [];
@@ -1257,6 +1329,27 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
1257
1329
  this.avancarEDevolverAnterior();
1258
1330
  }
1259
1331
  }
1332
+ inicializarPilhaEscopos() {
1333
+ this.pilhaEscopos = new pilha_escopos_1.PilhaEscopos();
1334
+ this.pilhaEscopos.empilhar(new informacao_escopo_1.InformacaoEscopo());
1335
+ // Funções nativas de Delégua
1336
+ this.pilhaEscopos.definirTipoVariavel('filtrarPor', 'qualquer[]');
1337
+ this.pilhaEscopos.definirTipoVariavel('inteiro', 'inteiro');
1338
+ this.pilhaEscopos.definirTipoVariavel('mapear', 'qualquer[]');
1339
+ this.pilhaEscopos.definirTipoVariavel('paraCada', 'qualquer[]');
1340
+ this.pilhaEscopos.definirTipoVariavel('primeiroEmCondicao', 'qualquer');
1341
+ this.pilhaEscopos.definirTipoVariavel('real', 'número');
1342
+ this.pilhaEscopos.definirTipoVariavel('tamanho', 'inteiro');
1343
+ this.pilhaEscopos.definirTipoVariavel('texto', 'texto');
1344
+ this.pilhaEscopos.definirTipoVariavel('todosEmCondicao', 'lógico');
1345
+ this.pilhaEscopos.definirTipoVariavel('tupla', 'tupla');
1346
+ // TODO: Escrever algum tipo de validação aqui.
1347
+ for (const tipos of Object.values(this.tiposDeFerramentasExternas)) {
1348
+ for (const [nomeTipo, tipo] of Object.entries(tipos)) {
1349
+ this.pilhaEscopos.definirTipoVariavel(nomeTipo, tipo);
1350
+ }
1351
+ }
1352
+ }
1260
1353
  analisar(retornoLexador, hashArquivo) {
1261
1354
  const inicioAnalise = (0, browser_process_hrtime_1.default)();
1262
1355
  this.erros = [];
@@ -1265,6 +1358,8 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
1265
1358
  this.hashArquivo = hashArquivo || 0;
1266
1359
  this.simbolos = (retornoLexador === null || retornoLexador === void 0 ? void 0 : retornoLexador.simbolos) || [];
1267
1360
  this.pilhaDecoradores = [];
1361
+ this.tiposDefinidosEmCodigo = {};
1362
+ this.inicializarPilhaEscopos();
1268
1363
  let declaracoes = [];
1269
1364
  while (!this.estaNoFinal()) {
1270
1365
  this.resolverDecorador();
@@ -1288,7 +1383,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
1288
1383
  }
1289
1384
  exports.AvaliadorSintatico = AvaliadorSintatico;
1290
1385
 
1291
- },{"../construtos":39,"../construtos/tuplas":48,"../declaracoes":77,"../inferenciador":111,"../lexador":146,"../tipos-de-dados/delegua":154,"../tipos-de-simbolos/delegua":157,"./avaliador-sintatico-base":1,"./erro-avaliador-sintatico":7,"browser-process-hrtime":333}],3:[function(require,module,exports){
1386
+ },{"../construtos":41,"../construtos/tuplas":50,"../declaracoes":79,"../inferenciador":113,"../lexador":148,"../tipos-de-dados/delegua":156,"../tipos-de-simbolos/delegua":159,"./avaliador-sintatico-base":1,"./erro-avaliador-sintatico":7,"./informacao-escopo":9,"./pilha-escopos":12,"browser-process-hrtime":335}],3:[function(require,module,exports){
1292
1387
  "use strict";
1293
1388
  var __importDefault = (this && this.__importDefault) || function (mod) {
1294
1389
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -1863,7 +1958,7 @@ class AvaliadorSintaticoEguaClassico {
1863
1958
  if (!this.verificarTipoSimboloAtual(egua_classico_1.default.PARENTESE_DIREITO)) {
1864
1959
  do {
1865
1960
  if (parametros.length >= 255) {
1866
- this.erro(this.simboloAtual(), 'Não pode haver mais de 255 parâmetros');
1961
+ this.erro(this.simboloAtual(), 'Função não pode ter mais de 255 parâmetros.');
1867
1962
  }
1868
1963
  const parametro = {};
1869
1964
  if (this.simboloAtual().tipo === egua_classico_1.default.MULTIPLICACAO) {
@@ -1938,7 +2033,7 @@ class AvaliadorSintaticoEguaClassico {
1938
2033
  }
1939
2034
  exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
1940
2035
 
1941
- },{"../../construtos":39,"../../declaracoes":77,"../../tipos-de-simbolos/egua-classico":158,"../erro-avaliador-sintatico":7}],4:[function(require,module,exports){
2036
+ },{"../../construtos":41,"../../declaracoes":79,"../../tipos-de-simbolos/egua-classico":160,"../erro-avaliador-sintatico":7}],4:[function(require,module,exports){
1942
2037
  "use strict";
1943
2038
  var __importDefault = (this && this.__importDefault) || function (mod) {
1944
2039
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -2606,7 +2701,7 @@ class AvaliadorSintaticoPitugues {
2606
2701
  const parametros = [];
2607
2702
  do {
2608
2703
  if (parametros.length >= 255) {
2609
- this.erro(this.simboloAtual(), 'Não pode haver mais de 255 parâmetros');
2704
+ this.erro(this.simboloAtual(), 'Função não pode ter mais de 255 parâmetros.');
2610
2705
  }
2611
2706
  const parametro = {};
2612
2707
  if (this.simboloAtual().tipo === pitugues_1.default.MULTIPLICACAO) {
@@ -2710,7 +2805,7 @@ class AvaliadorSintaticoPitugues {
2710
2805
  }
2711
2806
  exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
2712
2807
 
2713
- },{"../../construtos":39,"../../declaracoes":77,"../../lexador":146,"../../tipos-de-simbolos/pitugues":161,"../erro-avaliador-sintatico":7,"browser-process-hrtime":333}],5:[function(require,module,exports){
2808
+ },{"../../construtos":41,"../../declaracoes":79,"../../lexador":148,"../../tipos-de-simbolos/pitugues":163,"../erro-avaliador-sintatico":7,"browser-process-hrtime":335}],5:[function(require,module,exports){
2714
2809
  "use strict";
2715
2810
  var __importDefault = (this && this.__importDefault) || function (mod) {
2716
2811
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -2880,7 +2975,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
2880
2975
  }
2881
2976
  exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
2882
2977
 
2883
- },{"../../construtos":39,"../../declaracoes":77,"../../tipos-de-simbolos/portugol-ipt":162,"../avaliador-sintatico-base":1}],6:[function(require,module,exports){
2978
+ },{"../../construtos":41,"../../declaracoes":79,"../../tipos-de-simbolos/portugol-ipt":164,"../avaliador-sintatico-base":1}],6:[function(require,module,exports){
2884
2979
  "use strict";
2885
2980
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
2886
2981
  if (k2 === undefined) k2 = k;
@@ -2938,7 +3033,18 @@ __exportStar(require("./erro-avaliador-sintatico"), exports);
2938
3033
  __exportStar(require("./micro-avaliador-sintatico"), exports);
2939
3034
  __exportStar(require("./retornos"), exports);
2940
3035
 
2941
- },{"./avaliador-sintatico":2,"./avaliador-sintatico-base":1,"./dialetos":6,"./erro-avaliador-sintatico":7,"./micro-avaliador-sintatico":10,"./retornos":11}],9:[function(require,module,exports){
3036
+ },{"./avaliador-sintatico":2,"./avaliador-sintatico-base":1,"./dialetos":6,"./erro-avaliador-sintatico":7,"./micro-avaliador-sintatico":11,"./retornos":13}],9:[function(require,module,exports){
3037
+ "use strict";
3038
+ Object.defineProperty(exports, "__esModule", { value: true });
3039
+ exports.InformacaoEscopo = void 0;
3040
+ class InformacaoEscopo {
3041
+ constructor() {
3042
+ this.variaveisEConstantes = {};
3043
+ }
3044
+ }
3045
+ exports.InformacaoEscopo = InformacaoEscopo;
3046
+
3047
+ },{}],10:[function(require,module,exports){
2942
3048
  "use strict";
2943
3049
  var __importDefault = (this && this.__importDefault) || function (mod) {
2944
3050
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -3056,7 +3162,7 @@ class MicroAvaliadorSintaticoBase {
3056
3162
  }
3057
3163
  exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
3058
3164
 
3059
- },{"../construtos":39,"../tipos-de-simbolos/comum":156,"./erro-avaliador-sintatico":7}],10:[function(require,module,exports){
3165
+ },{"../construtos":41,"../tipos-de-simbolos/comum":158,"./erro-avaliador-sintatico":7}],11:[function(require,module,exports){
3060
3166
  "use strict";
3061
3167
  var __importDefault = (this && this.__importDefault) || function (mod) {
3062
3168
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -3262,7 +3368,47 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
3262
3368
  }
3263
3369
  exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
3264
3370
 
3265
- },{"../construtos":39,"../tipos-de-simbolos/microgramaticas/delegua":160,"./micro-avaliador-sintatico-base":9}],11:[function(require,module,exports){
3371
+ },{"../construtos":41,"../tipos-de-simbolos/microgramaticas/delegua":162,"./micro-avaliador-sintatico-base":10}],12:[function(require,module,exports){
3372
+ "use strict";
3373
+ Object.defineProperty(exports, "__esModule", { value: true });
3374
+ exports.PilhaEscopos = void 0;
3375
+ class PilhaEscopos {
3376
+ constructor() {
3377
+ this.pilha = [];
3378
+ }
3379
+ empilhar(item) {
3380
+ this.pilha.push(item);
3381
+ }
3382
+ eVazio() {
3383
+ return this.pilha.length === 0;
3384
+ }
3385
+ topoDaPilha() {
3386
+ if (this.eVazio())
3387
+ throw new Error('Pilha vazia.');
3388
+ return this.pilha[this.pilha.length - 1];
3389
+ }
3390
+ removerUltimo() {
3391
+ if (this.eVazio())
3392
+ throw new Error('Pilha vazia.');
3393
+ return this.pilha.pop();
3394
+ }
3395
+ obterTipoVariavelPorNome(nome) {
3396
+ for (let i = 1; i <= this.pilha.length; i++) {
3397
+ const informacaoEscopo = this.pilha[this.pilha.length - i];
3398
+ if (informacaoEscopo.variaveisEConstantes[nome] !== undefined) {
3399
+ return informacaoEscopo.variaveisEConstantes[nome];
3400
+ }
3401
+ }
3402
+ throw new Error("Variável não definida: '" + nome + "'.");
3403
+ }
3404
+ definirTipoVariavel(nomeVariavel, tipo) {
3405
+ const topoDaPilha = this.topoDaPilha();
3406
+ topoDaPilha.variaveisEConstantes[nomeVariavel] = tipo;
3407
+ }
3408
+ }
3409
+ exports.PilhaEscopos = PilhaEscopos;
3410
+
3411
+ },{}],13:[function(require,module,exports){
3266
3412
  "use strict";
3267
3413
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3268
3414
  if (k2 === undefined) k2 = k;
@@ -3283,19 +3429,19 @@ __exportStar(require("./retorno-declaracao"), exports);
3283
3429
  __exportStar(require("./retorno-primario"), exports);
3284
3430
  __exportStar(require("./retorno-resolver-declaracao"), exports);
3285
3431
 
3286
- },{"./retorno-declaracao":12,"./retorno-primario":13,"./retorno-resolver-declaracao":14}],12:[function(require,module,exports){
3432
+ },{"./retorno-declaracao":14,"./retorno-primario":15,"./retorno-resolver-declaracao":16}],14:[function(require,module,exports){
3287
3433
  "use strict";
3288
3434
  Object.defineProperty(exports, "__esModule", { value: true });
3289
3435
 
3290
- },{}],13:[function(require,module,exports){
3436
+ },{}],15:[function(require,module,exports){
3291
3437
  "use strict";
3292
3438
  Object.defineProperty(exports, "__esModule", { value: true });
3293
3439
 
3294
- },{}],14:[function(require,module,exports){
3440
+ },{}],16:[function(require,module,exports){
3295
3441
  "use strict";
3296
3442
  Object.defineProperty(exports, "__esModule", { value: true });
3297
3443
 
3298
- },{}],15:[function(require,module,exports){
3444
+ },{}],17:[function(require,module,exports){
3299
3445
  "use strict";
3300
3446
  Object.defineProperty(exports, "__esModule", { value: true });
3301
3447
  exports.aleatorio = aleatorio;
@@ -3784,7 +3930,7 @@ async function tupla(interpretador, vetor) {
3784
3930
  }
3785
3931
  }
3786
3932
 
3787
- },{"../construtos":39,"../estruturas":100,"../estruturas/descritor-tipo-classe":98,"../estruturas/funcao-padrao":99,"../estruturas/objeto-delegua-classe":103,"../excecoes":106}],16:[function(require,module,exports){
3933
+ },{"../construtos":41,"../estruturas":102,"../estruturas/descritor-tipo-classe":100,"../estruturas/funcao-padrao":101,"../estruturas/objeto-delegua-classe":105,"../excecoes":108}],18:[function(require,module,exports){
3788
3934
  "use strict";
3789
3935
  Object.defineProperty(exports, "__esModule", { value: true });
3790
3936
  exports.default = {
@@ -3796,7 +3942,7 @@ exports.default = {
3796
3942
  },
3797
3943
  };
3798
3944
 
3799
- },{}],17:[function(require,module,exports){
3945
+ },{}],19:[function(require,module,exports){
3800
3946
  "use strict";
3801
3947
  Object.defineProperty(exports, "__esModule", { value: true });
3802
3948
  exports.default = {
@@ -3808,7 +3954,7 @@ exports.default = {
3808
3954
  },
3809
3955
  };
3810
3956
 
3811
- },{}],18:[function(require,module,exports){
3957
+ },{}],20:[function(require,module,exports){
3812
3958
  "use strict";
3813
3959
  Object.defineProperty(exports, "__esModule", { value: true });
3814
3960
  exports.default = {
@@ -3832,7 +3978,7 @@ exports.default = {
3832
3978
  tamanho: (interpretador, texto) => Promise.resolve(texto.length),
3833
3979
  };
3834
3980
 
3835
- },{}],19:[function(require,module,exports){
3981
+ },{}],21:[function(require,module,exports){
3836
3982
  "use strict";
3837
3983
  Object.defineProperty(exports, "__esModule", { value: true });
3838
3984
  exports.default = {
@@ -3922,7 +4068,7 @@ exports.default = {
3922
4068
  tamanho: (interpretador, vetor) => Promise.resolve(vetor.length),
3923
4069
  };
3924
4070
 
3925
- },{}],20:[function(require,module,exports){
4071
+ },{}],22:[function(require,module,exports){
3926
4072
  "use strict";
3927
4073
  Object.defineProperty(exports, "__esModule", { value: true });
3928
4074
  exports.AcessoElementoMatriz = void 0;
@@ -3941,7 +4087,7 @@ class AcessoElementoMatriz {
3941
4087
  }
3942
4088
  exports.AcessoElementoMatriz = AcessoElementoMatriz;
3943
4089
 
3944
- },{}],21:[function(require,module,exports){
4090
+ },{}],23:[function(require,module,exports){
3945
4091
  "use strict";
3946
4092
  Object.defineProperty(exports, "__esModule", { value: true });
3947
4093
  exports.AcessoIndiceVariavel = void 0;
@@ -3963,7 +4109,7 @@ class AcessoIndiceVariavel {
3963
4109
  }
3964
4110
  exports.AcessoIndiceVariavel = AcessoIndiceVariavel;
3965
4111
 
3966
- },{}],22:[function(require,module,exports){
4112
+ },{}],24:[function(require,module,exports){
3967
4113
  "use strict";
3968
4114
  Object.defineProperty(exports, "__esModule", { value: true });
3969
4115
  exports.AcessoMetodoOuPropriedade = void 0;
@@ -3984,7 +4130,7 @@ class AcessoMetodoOuPropriedade {
3984
4130
  }
3985
4131
  exports.AcessoMetodoOuPropriedade = AcessoMetodoOuPropriedade;
3986
4132
 
3987
- },{}],23:[function(require,module,exports){
4133
+ },{}],25:[function(require,module,exports){
3988
4134
  "use strict";
3989
4135
  Object.defineProperty(exports, "__esModule", { value: true });
3990
4136
  exports.Agrupamento = void 0;
@@ -4005,7 +4151,7 @@ class Agrupamento {
4005
4151
  }
4006
4152
  exports.Agrupamento = Agrupamento;
4007
4153
 
4008
- },{}],24:[function(require,module,exports){
4154
+ },{}],26:[function(require,module,exports){
4009
4155
  "use strict";
4010
4156
  Object.defineProperty(exports, "__esModule", { value: true });
4011
4157
  exports.AtribuicaoPorIndice = void 0;
@@ -4023,7 +4169,7 @@ class AtribuicaoPorIndice {
4023
4169
  }
4024
4170
  exports.AtribuicaoPorIndice = AtribuicaoPorIndice;
4025
4171
 
4026
- },{}],25:[function(require,module,exports){
4172
+ },{}],27:[function(require,module,exports){
4027
4173
  "use strict";
4028
4174
  Object.defineProperty(exports, "__esModule", { value: true });
4029
4175
  exports.AtribuicaoPorIndicesMatriz = void 0;
@@ -4042,7 +4188,7 @@ class AtribuicaoPorIndicesMatriz {
4042
4188
  }
4043
4189
  exports.AtribuicaoPorIndicesMatriz = AtribuicaoPorIndicesMatriz;
4044
4190
 
4045
- },{}],26:[function(require,module,exports){
4191
+ },{}],28:[function(require,module,exports){
4046
4192
  "use strict";
4047
4193
  Object.defineProperty(exports, "__esModule", { value: true });
4048
4194
  exports.Atribuir = void 0;
@@ -4068,7 +4214,7 @@ class Atribuir {
4068
4214
  }
4069
4215
  exports.Atribuir = Atribuir;
4070
4216
 
4071
- },{}],27:[function(require,module,exports){
4217
+ },{}],29:[function(require,module,exports){
4072
4218
  "use strict";
4073
4219
  Object.defineProperty(exports, "__esModule", { value: true });
4074
4220
  exports.Binario = void 0;
@@ -4108,7 +4254,7 @@ class Binario {
4108
4254
  }
4109
4255
  exports.Binario = Binario;
4110
4256
 
4111
- },{}],28:[function(require,module,exports){
4257
+ },{}],30:[function(require,module,exports){
4112
4258
  "use strict";
4113
4259
  Object.defineProperty(exports, "__esModule", { value: true });
4114
4260
  exports.Chamada = void 0;
@@ -4131,7 +4277,7 @@ class Chamada {
4131
4277
  }
4132
4278
  exports.Chamada = Chamada;
4133
4279
 
4134
- },{"../geracao-identificadores":109}],29:[function(require,module,exports){
4280
+ },{"../geracao-identificadores":111}],31:[function(require,module,exports){
4135
4281
  "use strict";
4136
4282
  Object.defineProperty(exports, "__esModule", { value: true });
4137
4283
  exports.Comentario = void 0;
@@ -4153,7 +4299,7 @@ class Comentario {
4153
4299
  }
4154
4300
  exports.Comentario = Comentario;
4155
4301
 
4156
- },{}],30:[function(require,module,exports){
4302
+ },{}],32:[function(require,module,exports){
4157
4303
  "use strict";
4158
4304
  Object.defineProperty(exports, "__esModule", { value: true });
4159
4305
  exports.Constante = void 0;
@@ -4172,11 +4318,11 @@ class Constante {
4172
4318
  }
4173
4319
  exports.Constante = Constante;
4174
4320
 
4175
- },{}],31:[function(require,module,exports){
4321
+ },{}],33:[function(require,module,exports){
4176
4322
  "use strict";
4177
4323
  Object.defineProperty(exports, "__esModule", { value: true });
4178
4324
 
4179
- },{}],32:[function(require,module,exports){
4325
+ },{}],34:[function(require,module,exports){
4180
4326
  "use strict";
4181
4327
  Object.defineProperty(exports, "__esModule", { value: true });
4182
4328
  exports.Decorador = void 0;
@@ -4197,7 +4343,7 @@ class Decorador {
4197
4343
  }
4198
4344
  exports.Decorador = Decorador;
4199
4345
 
4200
- },{}],33:[function(require,module,exports){
4346
+ },{}],35:[function(require,module,exports){
4201
4347
  "use strict";
4202
4348
  Object.defineProperty(exports, "__esModule", { value: true });
4203
4349
  exports.DefinirValor = void 0;
@@ -4215,7 +4361,7 @@ class DefinirValor {
4215
4361
  }
4216
4362
  exports.DefinirValor = DefinirValor;
4217
4363
 
4218
- },{}],34:[function(require,module,exports){
4364
+ },{}],36:[function(require,module,exports){
4219
4365
  "use strict";
4220
4366
  Object.defineProperty(exports, "__esModule", { value: true });
4221
4367
  exports.Dicionario = void 0;
@@ -4232,7 +4378,7 @@ class Dicionario {
4232
4378
  }
4233
4379
  exports.Dicionario = Dicionario;
4234
4380
 
4235
- },{}],35:[function(require,module,exports){
4381
+ },{}],37:[function(require,module,exports){
4236
4382
  "use strict";
4237
4383
  Object.defineProperty(exports, "__esModule", { value: true });
4238
4384
  exports.ExpressaoRegular = void 0;
@@ -4249,7 +4395,7 @@ class ExpressaoRegular {
4249
4395
  }
4250
4396
  exports.ExpressaoRegular = ExpressaoRegular;
4251
4397
 
4252
- },{}],36:[function(require,module,exports){
4398
+ },{}],38:[function(require,module,exports){
4253
4399
  "use strict";
4254
4400
  Object.defineProperty(exports, "__esModule", { value: true });
4255
4401
  exports.FimPara = void 0;
@@ -4276,7 +4422,7 @@ class FimPara {
4276
4422
  }
4277
4423
  exports.FimPara = FimPara;
4278
4424
 
4279
- },{}],37:[function(require,module,exports){
4425
+ },{}],39:[function(require,module,exports){
4280
4426
  "use strict";
4281
4427
  Object.defineProperty(exports, "__esModule", { value: true });
4282
4428
  exports.FormatacaoEscrita = void 0;
@@ -4299,7 +4445,7 @@ class FormatacaoEscrita {
4299
4445
  }
4300
4446
  exports.FormatacaoEscrita = FormatacaoEscrita;
4301
4447
 
4302
- },{}],38:[function(require,module,exports){
4448
+ },{}],40:[function(require,module,exports){
4303
4449
  "use strict";
4304
4450
  Object.defineProperty(exports, "__esModule", { value: true });
4305
4451
  exports.FuncaoConstruto = void 0;
@@ -4317,7 +4463,7 @@ class FuncaoConstruto {
4317
4463
  }
4318
4464
  exports.FuncaoConstruto = FuncaoConstruto;
4319
4465
 
4320
- },{}],39:[function(require,module,exports){
4466
+ },{}],41:[function(require,module,exports){
4321
4467
  "use strict";
4322
4468
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4323
4469
  if (k2 === undefined) k2 = k;
@@ -4364,7 +4510,7 @@ __exportStar(require("./variavel"), exports);
4364
4510
  __exportStar(require("./vetor"), exports);
4365
4511
  __exportStar(require("./qual-tipo"), exports);
4366
4512
 
4367
- },{"./acesso-elemento-matriz":20,"./acesso-indice-variavel":21,"./acesso-metodo-ou-propriedade":22,"./agrupamento":23,"./atribuicao-por-indice":24,"./atribuicao-por-indices-matriz":25,"./atribuir":26,"./binario":27,"./chamada":28,"./comentario":29,"./constante":30,"./construto":31,"./decorador":32,"./definir-valor":33,"./dicionario":34,"./expressao-regular":35,"./fim-para":36,"./formatacao-escrita":37,"./funcao":38,"./isto":40,"./literal":41,"./logico":42,"./qual-tipo":43,"./super":44,"./tipo-de":45,"./tuplas":48,"./unario":57,"./variavel":58,"./vetor":59}],40:[function(require,module,exports){
4513
+ },{"./acesso-elemento-matriz":22,"./acesso-indice-variavel":23,"./acesso-metodo-ou-propriedade":24,"./agrupamento":25,"./atribuicao-por-indice":26,"./atribuicao-por-indices-matriz":27,"./atribuir":28,"./binario":29,"./chamada":30,"./comentario":31,"./constante":32,"./construto":33,"./decorador":34,"./definir-valor":35,"./dicionario":36,"./expressao-regular":37,"./fim-para":38,"./formatacao-escrita":39,"./funcao":40,"./isto":42,"./literal":43,"./logico":44,"./qual-tipo":45,"./super":46,"./tipo-de":47,"./tuplas":50,"./unario":59,"./variavel":60,"./vetor":61}],42:[function(require,module,exports){
4368
4514
  "use strict";
4369
4515
  Object.defineProperty(exports, "__esModule", { value: true });
4370
4516
  exports.Isto = void 0;
@@ -4380,7 +4526,7 @@ class Isto {
4380
4526
  }
4381
4527
  exports.Isto = Isto;
4382
4528
 
4383
- },{}],41:[function(require,module,exports){
4529
+ },{}],43:[function(require,module,exports){
4384
4530
  "use strict";
4385
4531
  Object.defineProperty(exports, "__esModule", { value: true });
4386
4532
  exports.Literal = void 0;
@@ -4397,7 +4543,7 @@ class Literal {
4397
4543
  }
4398
4544
  exports.Literal = Literal;
4399
4545
 
4400
- },{}],42:[function(require,module,exports){
4546
+ },{}],44:[function(require,module,exports){
4401
4547
  "use strict";
4402
4548
  Object.defineProperty(exports, "__esModule", { value: true });
4403
4549
  exports.Logico = void 0;
@@ -4415,7 +4561,7 @@ class Logico {
4415
4561
  }
4416
4562
  exports.Logico = Logico;
4417
4563
 
4418
- },{}],43:[function(require,module,exports){
4564
+ },{}],45:[function(require,module,exports){
4419
4565
  "use strict";
4420
4566
  Object.defineProperty(exports, "__esModule", { value: true });
4421
4567
  exports.QualTipo = void 0;
@@ -4433,7 +4579,7 @@ class QualTipo {
4433
4579
  }
4434
4580
  exports.QualTipo = QualTipo;
4435
4581
 
4436
- },{}],44:[function(require,module,exports){
4582
+ },{}],46:[function(require,module,exports){
4437
4583
  "use strict";
4438
4584
  Object.defineProperty(exports, "__esModule", { value: true });
4439
4585
  exports.Super = void 0;
@@ -4450,7 +4596,7 @@ class Super {
4450
4596
  }
4451
4597
  exports.Super = Super;
4452
4598
 
4453
- },{}],45:[function(require,module,exports){
4599
+ },{}],47:[function(require,module,exports){
4454
4600
  "use strict";
4455
4601
  Object.defineProperty(exports, "__esModule", { value: true });
4456
4602
  exports.TipoDe = void 0;
@@ -4467,7 +4613,7 @@ class TipoDe {
4467
4613
  }
4468
4614
  exports.TipoDe = TipoDe;
4469
4615
 
4470
- },{}],46:[function(require,module,exports){
4616
+ },{}],48:[function(require,module,exports){
4471
4617
  "use strict";
4472
4618
  Object.defineProperty(exports, "__esModule", { value: true });
4473
4619
  exports.Deceto = void 0;
@@ -4501,7 +4647,7 @@ class Deceto extends tupla_1.Tupla {
4501
4647
  }
4502
4648
  exports.Deceto = Deceto;
4503
4649
 
4504
- },{"./tupla":56}],47:[function(require,module,exports){
4650
+ },{"./tupla":58}],49:[function(require,module,exports){
4505
4651
  "use strict";
4506
4652
  Object.defineProperty(exports, "__esModule", { value: true });
4507
4653
  exports.Dupla = void 0;
@@ -4515,7 +4661,7 @@ class Dupla extends tupla_1.Tupla {
4515
4661
  }
4516
4662
  exports.Dupla = Dupla;
4517
4663
 
4518
- },{"./tupla":56}],48:[function(require,module,exports){
4664
+ },{"./tupla":58}],50:[function(require,module,exports){
4519
4665
  "use strict";
4520
4666
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4521
4667
  if (k2 === undefined) k2 = k;
@@ -4584,7 +4730,7 @@ class SeletorTuplas {
4584
4730
  }
4585
4731
  exports.SeletorTuplas = SeletorTuplas;
4586
4732
 
4587
- },{"./deceto":46,"./dupla":47,"./noneto":49,"./octeto":50,"./quarteto":51,"./quinteto":52,"./septeto":53,"./sexteto":54,"./trio":55,"./tupla":56}],49:[function(require,module,exports){
4733
+ },{"./deceto":48,"./dupla":49,"./noneto":51,"./octeto":52,"./quarteto":53,"./quinteto":54,"./septeto":55,"./sexteto":56,"./trio":57,"./tupla":58}],51:[function(require,module,exports){
4588
4734
  "use strict";
4589
4735
  Object.defineProperty(exports, "__esModule", { value: true });
4590
4736
  exports.Noneto = void 0;
@@ -4611,7 +4757,7 @@ class Noneto extends tupla_1.Tupla {
4611
4757
  }
4612
4758
  exports.Noneto = Noneto;
4613
4759
 
4614
- },{"./tupla":56}],50:[function(require,module,exports){
4760
+ },{"./tupla":58}],52:[function(require,module,exports){
4615
4761
  "use strict";
4616
4762
  Object.defineProperty(exports, "__esModule", { value: true });
4617
4763
  exports.Octeto = void 0;
@@ -4637,7 +4783,7 @@ class Octeto extends tupla_1.Tupla {
4637
4783
  }
4638
4784
  exports.Octeto = Octeto;
4639
4785
 
4640
- },{"./tupla":56}],51:[function(require,module,exports){
4786
+ },{"./tupla":58}],53:[function(require,module,exports){
4641
4787
  "use strict";
4642
4788
  Object.defineProperty(exports, "__esModule", { value: true });
4643
4789
  exports.Quarteto = void 0;
@@ -4653,7 +4799,7 @@ class Quarteto extends tupla_1.Tupla {
4653
4799
  }
4654
4800
  exports.Quarteto = Quarteto;
4655
4801
 
4656
- },{"./tupla":56}],52:[function(require,module,exports){
4802
+ },{"./tupla":58}],54:[function(require,module,exports){
4657
4803
  "use strict";
4658
4804
  Object.defineProperty(exports, "__esModule", { value: true });
4659
4805
  exports.Quinteto = void 0;
@@ -4670,7 +4816,7 @@ class Quinteto extends tupla_1.Tupla {
4670
4816
  }
4671
4817
  exports.Quinteto = Quinteto;
4672
4818
 
4673
- },{"./tupla":56}],53:[function(require,module,exports){
4819
+ },{"./tupla":58}],55:[function(require,module,exports){
4674
4820
  "use strict";
4675
4821
  Object.defineProperty(exports, "__esModule", { value: true });
4676
4822
  exports.Septeto = void 0;
@@ -4695,7 +4841,7 @@ class Septeto extends tupla_1.Tupla {
4695
4841
  }
4696
4842
  exports.Septeto = Septeto;
4697
4843
 
4698
- },{"./tupla":56}],54:[function(require,module,exports){
4844
+ },{"./tupla":58}],56:[function(require,module,exports){
4699
4845
  "use strict";
4700
4846
  Object.defineProperty(exports, "__esModule", { value: true });
4701
4847
  exports.Sexteto = void 0;
@@ -4713,7 +4859,7 @@ class Sexteto extends tupla_1.Tupla {
4713
4859
  }
4714
4860
  exports.Sexteto = Sexteto;
4715
4861
 
4716
- },{"./tupla":56}],55:[function(require,module,exports){
4862
+ },{"./tupla":58}],57:[function(require,module,exports){
4717
4863
  "use strict";
4718
4864
  Object.defineProperty(exports, "__esModule", { value: true });
4719
4865
  exports.Trio = void 0;
@@ -4728,7 +4874,7 @@ class Trio extends tupla_1.Tupla {
4728
4874
  }
4729
4875
  exports.Trio = Trio;
4730
4876
 
4731
- },{"./tupla":56}],56:[function(require,module,exports){
4877
+ },{"./tupla":58}],58:[function(require,module,exports){
4732
4878
  "use strict";
4733
4879
  Object.defineProperty(exports, "__esModule", { value: true });
4734
4880
  exports.Tupla = void 0;
@@ -4739,7 +4885,7 @@ class Tupla {
4739
4885
  }
4740
4886
  exports.Tupla = Tupla;
4741
4887
 
4742
- },{}],57:[function(require,module,exports){
4888
+ },{}],59:[function(require,module,exports){
4743
4889
  "use strict";
4744
4890
  Object.defineProperty(exports, "__esModule", { value: true });
4745
4891
  exports.Unario = void 0;
@@ -4757,15 +4903,16 @@ class Unario {
4757
4903
  }
4758
4904
  exports.Unario = Unario;
4759
4905
 
4760
- },{}],58:[function(require,module,exports){
4906
+ },{}],60:[function(require,module,exports){
4761
4907
  "use strict";
4762
4908
  Object.defineProperty(exports, "__esModule", { value: true });
4763
4909
  exports.Variavel = void 0;
4764
4910
  class Variavel {
4765
- constructor(hashArquivo, simbolo) {
4911
+ constructor(hashArquivo, simbolo, tipo = 'qualquer') {
4766
4912
  this.linha = Number(simbolo.linha);
4767
4913
  this.hashArquivo = hashArquivo;
4768
4914
  this.simbolo = simbolo;
4915
+ this.tipo = tipo;
4769
4916
  }
4770
4917
  async aceitar(visitante) {
4771
4918
  return Promise.resolve(visitante.visitarExpressaoDeVariavel(this));
@@ -4773,7 +4920,7 @@ class Variavel {
4773
4920
  }
4774
4921
  exports.Variavel = Variavel;
4775
4922
 
4776
- },{}],59:[function(require,module,exports){
4923
+ },{}],61:[function(require,module,exports){
4777
4924
  "use strict";
4778
4925
  Object.defineProperty(exports, "__esModule", { value: true });
4779
4926
  exports.Vetor = void 0;
@@ -4796,7 +4943,7 @@ class Vetor {
4796
4943
  }
4797
4944
  exports.Vetor = Vetor;
4798
4945
 
4799
- },{}],60:[function(require,module,exports){
4946
+ },{}],62:[function(require,module,exports){
4800
4947
  "use strict";
4801
4948
  Object.defineProperty(exports, "__esModule", { value: true });
4802
4949
  exports.Aleatorio = void 0;
@@ -4813,7 +4960,7 @@ class Aleatorio extends declaracao_1.Declaracao {
4813
4960
  }
4814
4961
  exports.Aleatorio = Aleatorio;
4815
4962
 
4816
- },{"./declaracao":67}],61:[function(require,module,exports){
4963
+ },{"./declaracao":69}],63:[function(require,module,exports){
4817
4964
  "use strict";
4818
4965
  Object.defineProperty(exports, "__esModule", { value: true });
4819
4966
  exports.Bloco = void 0;
@@ -4829,7 +4976,7 @@ class Bloco extends declaracao_1.Declaracao {
4829
4976
  }
4830
4977
  exports.Bloco = Bloco;
4831
4978
 
4832
- },{"./declaracao":67}],62:[function(require,module,exports){
4979
+ },{"./declaracao":69}],64:[function(require,module,exports){
4833
4980
  "use strict";
4834
4981
  Object.defineProperty(exports, "__esModule", { value: true });
4835
4982
  exports.CabecalhoPrograma = void 0;
@@ -4845,7 +4992,7 @@ class CabecalhoPrograma extends declaracao_1.Declaracao {
4845
4992
  }
4846
4993
  exports.CabecalhoPrograma = CabecalhoPrograma;
4847
4994
 
4848
- },{"./declaracao":67}],63:[function(require,module,exports){
4995
+ },{"./declaracao":69}],65:[function(require,module,exports){
4849
4996
  "use strict";
4850
4997
  Object.defineProperty(exports, "__esModule", { value: true });
4851
4998
  exports.Classe = void 0;
@@ -4865,7 +5012,7 @@ class Classe extends declaracao_1.Declaracao {
4865
5012
  }
4866
5013
  exports.Classe = Classe;
4867
5014
 
4868
- },{"./declaracao":67}],64:[function(require,module,exports){
5015
+ },{"./declaracao":69}],66:[function(require,module,exports){
4869
5016
  "use strict";
4870
5017
  Object.defineProperty(exports, "__esModule", { value: true });
4871
5018
  exports.ConstMultiplo = void 0;
@@ -4886,7 +5033,7 @@ class ConstMultiplo extends declaracao_1.Declaracao {
4886
5033
  }
4887
5034
  exports.ConstMultiplo = ConstMultiplo;
4888
5035
 
4889
- },{"./declaracao":67}],65:[function(require,module,exports){
5036
+ },{"./declaracao":69}],67:[function(require,module,exports){
4890
5037
  "use strict";
4891
5038
  Object.defineProperty(exports, "__esModule", { value: true });
4892
5039
  exports.Const = void 0;
@@ -4907,7 +5054,7 @@ class Const extends declaracao_1.Declaracao {
4907
5054
  }
4908
5055
  exports.Const = Const;
4909
5056
 
4910
- },{"./declaracao":67}],66:[function(require,module,exports){
5057
+ },{"./declaracao":69}],68:[function(require,module,exports){
4911
5058
  "use strict";
4912
5059
  Object.defineProperty(exports, "__esModule", { value: true });
4913
5060
  exports.Continua = void 0;
@@ -4922,7 +5069,7 @@ class Continua extends declaracao_1.Declaracao {
4922
5069
  }
4923
5070
  exports.Continua = Continua;
4924
5071
 
4925
- },{"./declaracao":67}],67:[function(require,module,exports){
5072
+ },{"./declaracao":69}],69:[function(require,module,exports){
4926
5073
  "use strict";
4927
5074
  Object.defineProperty(exports, "__esModule", { value: true });
4928
5075
  exports.Declaracao = void 0;
@@ -4942,7 +5089,7 @@ class Declaracao {
4942
5089
  }
4943
5090
  exports.Declaracao = Declaracao;
4944
5091
 
4945
- },{}],68:[function(require,module,exports){
5092
+ },{}],70:[function(require,module,exports){
4946
5093
  "use strict";
4947
5094
  Object.defineProperty(exports, "__esModule", { value: true });
4948
5095
  exports.Enquanto = void 0;
@@ -4959,7 +5106,7 @@ class Enquanto extends declaracao_1.Declaracao {
4959
5106
  }
4960
5107
  exports.Enquanto = Enquanto;
4961
5108
 
4962
- },{"./declaracao":67}],69:[function(require,module,exports){
5109
+ },{"./declaracao":69}],71:[function(require,module,exports){
4963
5110
  "use strict";
4964
5111
  Object.defineProperty(exports, "__esModule", { value: true });
4965
5112
  exports.Escolha = void 0;
@@ -4980,7 +5127,7 @@ class Escolha extends declaracao_1.Declaracao {
4980
5127
  }
4981
5128
  exports.Escolha = Escolha;
4982
5129
 
4983
- },{"./declaracao":67}],70:[function(require,module,exports){
5130
+ },{"./declaracao":69}],72:[function(require,module,exports){
4984
5131
  "use strict";
4985
5132
  Object.defineProperty(exports, "__esModule", { value: true });
4986
5133
  exports.EscrevaMesmaLinha = void 0;
@@ -4996,7 +5143,7 @@ class EscrevaMesmaLinha extends declaracao_1.Declaracao {
4996
5143
  }
4997
5144
  exports.EscrevaMesmaLinha = EscrevaMesmaLinha;
4998
5145
 
4999
- },{"./declaracao":67}],71:[function(require,module,exports){
5146
+ },{"./declaracao":69}],73:[function(require,module,exports){
5000
5147
  "use strict";
5001
5148
  Object.defineProperty(exports, "__esModule", { value: true });
5002
5149
  exports.Escreva = void 0;
@@ -5012,7 +5159,7 @@ class Escreva extends declaracao_1.Declaracao {
5012
5159
  }
5013
5160
  exports.Escreva = Escreva;
5014
5161
 
5015
- },{"./declaracao":67}],72:[function(require,module,exports){
5162
+ },{"./declaracao":69}],74:[function(require,module,exports){
5016
5163
  "use strict";
5017
5164
  Object.defineProperty(exports, "__esModule", { value: true });
5018
5165
  exports.Expressao = void 0;
@@ -5028,7 +5175,7 @@ class Expressao extends declaracao_1.Declaracao {
5028
5175
  }
5029
5176
  exports.Expressao = Expressao;
5030
5177
 
5031
- },{"./declaracao":67}],73:[function(require,module,exports){
5178
+ },{"./declaracao":69}],75:[function(require,module,exports){
5032
5179
  "use strict";
5033
5180
  Object.defineProperty(exports, "__esModule", { value: true });
5034
5181
  exports.Falhar = void 0;
@@ -5045,7 +5192,7 @@ class Falhar extends declaracao_1.Declaracao {
5045
5192
  }
5046
5193
  exports.Falhar = Falhar;
5047
5194
 
5048
- },{"./declaracao":67}],74:[function(require,module,exports){
5195
+ },{"./declaracao":69}],76:[function(require,module,exports){
5049
5196
  "use strict";
5050
5197
  Object.defineProperty(exports, "__esModule", { value: true });
5051
5198
  exports.Fazer = void 0;
@@ -5062,7 +5209,7 @@ class Fazer extends declaracao_1.Declaracao {
5062
5209
  }
5063
5210
  exports.Fazer = Fazer;
5064
5211
 
5065
- },{"./declaracao":67}],75:[function(require,module,exports){
5212
+ },{"./declaracao":69}],77:[function(require,module,exports){
5066
5213
  "use strict";
5067
5214
  Object.defineProperty(exports, "__esModule", { value: true });
5068
5215
  exports.FuncaoDeclaracao = void 0;
@@ -5081,7 +5228,7 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
5081
5228
  }
5082
5229
  exports.FuncaoDeclaracao = FuncaoDeclaracao;
5083
5230
 
5084
- },{"./declaracao":67}],76:[function(require,module,exports){
5231
+ },{"./declaracao":69}],78:[function(require,module,exports){
5085
5232
  "use strict";
5086
5233
  Object.defineProperty(exports, "__esModule", { value: true });
5087
5234
  exports.Importar = void 0;
@@ -5098,7 +5245,7 @@ class Importar extends declaracao_1.Declaracao {
5098
5245
  }
5099
5246
  exports.Importar = Importar;
5100
5247
 
5101
- },{"./declaracao":67}],77:[function(require,module,exports){
5248
+ },{"./declaracao":69}],79:[function(require,module,exports){
5102
5249
  "use strict";
5103
5250
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5104
5251
  if (k2 === undefined) k2 = k;
@@ -5147,7 +5294,7 @@ __exportStar(require("./var"), exports);
5147
5294
  __exportStar(require("./var-multiplo"), exports);
5148
5295
  __exportStar(require("./aleatorio"), exports);
5149
5296
 
5150
- },{"./aleatorio":60,"./bloco":61,"./cabecalho-programa":62,"./classe":63,"./const":65,"./const-multiplo":64,"./continua":66,"./declaracao":67,"./enquanto":68,"./escolha":69,"./escreva":71,"./escreva-mesma-linha":70,"./expressao":72,"./falhar":73,"./fazer":74,"./funcao":75,"./importar":76,"./inicio-algoritmo":78,"./leia":80,"./leia-multiplo":79,"./para":82,"./para-cada":81,"./propriedade-classe":83,"./retorna":84,"./se":85,"./sustar":86,"./tendo-como":87,"./tente":88,"./var":90,"./var-multiplo":89}],78:[function(require,module,exports){
5297
+ },{"./aleatorio":62,"./bloco":63,"./cabecalho-programa":64,"./classe":65,"./const":67,"./const-multiplo":66,"./continua":68,"./declaracao":69,"./enquanto":70,"./escolha":71,"./escreva":73,"./escreva-mesma-linha":72,"./expressao":74,"./falhar":75,"./fazer":76,"./funcao":77,"./importar":78,"./inicio-algoritmo":80,"./leia":82,"./leia-multiplo":81,"./para":84,"./para-cada":83,"./propriedade-classe":85,"./retorna":86,"./se":87,"./sustar":88,"./tendo-como":89,"./tente":90,"./var":92,"./var-multiplo":91}],80:[function(require,module,exports){
5151
5298
  "use strict";
5152
5299
  Object.defineProperty(exports, "__esModule", { value: true });
5153
5300
  exports.InicioAlgoritmo = void 0;
@@ -5162,7 +5309,7 @@ class InicioAlgoritmo extends declaracao_1.Declaracao {
5162
5309
  }
5163
5310
  exports.InicioAlgoritmo = InicioAlgoritmo;
5164
5311
 
5165
- },{"./declaracao":67}],79:[function(require,module,exports){
5312
+ },{"./declaracao":69}],81:[function(require,module,exports){
5166
5313
  "use strict";
5167
5314
  Object.defineProperty(exports, "__esModule", { value: true });
5168
5315
  exports.LeiaMultiplo = void 0;
@@ -5185,7 +5332,7 @@ class LeiaMultiplo extends declaracao_1.Declaracao {
5185
5332
  }
5186
5333
  exports.LeiaMultiplo = LeiaMultiplo;
5187
5334
 
5188
- },{"../geracao-identificadores":109,"./declaracao":67}],80:[function(require,module,exports){
5335
+ },{"../geracao-identificadores":111,"./declaracao":69}],82:[function(require,module,exports){
5189
5336
  "use strict";
5190
5337
  Object.defineProperty(exports, "__esModule", { value: true });
5191
5338
  exports.Leia = void 0;
@@ -5208,7 +5355,7 @@ class Leia extends declaracao_1.Declaracao {
5208
5355
  }
5209
5356
  exports.Leia = Leia;
5210
5357
 
5211
- },{"../geracao-identificadores":109,"./declaracao":67}],81:[function(require,module,exports){
5358
+ },{"../geracao-identificadores":111,"./declaracao":69}],83:[function(require,module,exports){
5212
5359
  "use strict";
5213
5360
  Object.defineProperty(exports, "__esModule", { value: true });
5214
5361
  exports.ParaCada = void 0;
@@ -5227,7 +5374,7 @@ class ParaCada extends declaracao_1.Declaracao {
5227
5374
  }
5228
5375
  exports.ParaCada = ParaCada;
5229
5376
 
5230
- },{"./declaracao":67}],82:[function(require,module,exports){
5377
+ },{"./declaracao":69}],84:[function(require,module,exports){
5231
5378
  "use strict";
5232
5379
  Object.defineProperty(exports, "__esModule", { value: true });
5233
5380
  exports.Para = void 0;
@@ -5253,7 +5400,7 @@ class Para extends declaracao_1.Declaracao {
5253
5400
  }
5254
5401
  exports.Para = Para;
5255
5402
 
5256
- },{"./declaracao":67}],83:[function(require,module,exports){
5403
+ },{"./declaracao":69}],85:[function(require,module,exports){
5257
5404
  "use strict";
5258
5405
  Object.defineProperty(exports, "__esModule", { value: true });
5259
5406
  exports.PropriedadeClasse = void 0;
@@ -5271,7 +5418,7 @@ class PropriedadeClasse extends declaracao_1.Declaracao {
5271
5418
  }
5272
5419
  exports.PropriedadeClasse = PropriedadeClasse;
5273
5420
 
5274
- },{"./declaracao":67}],84:[function(require,module,exports){
5421
+ },{"./declaracao":69}],86:[function(require,module,exports){
5275
5422
  "use strict";
5276
5423
  Object.defineProperty(exports, "__esModule", { value: true });
5277
5424
  exports.Retorna = void 0;
@@ -5288,7 +5435,7 @@ class Retorna extends declaracao_1.Declaracao {
5288
5435
  }
5289
5436
  exports.Retorna = Retorna;
5290
5437
 
5291
- },{"./declaracao":67}],85:[function(require,module,exports){
5438
+ },{"./declaracao":69}],87:[function(require,module,exports){
5292
5439
  "use strict";
5293
5440
  Object.defineProperty(exports, "__esModule", { value: true });
5294
5441
  exports.Se = void 0;
@@ -5307,7 +5454,7 @@ class Se extends declaracao_1.Declaracao {
5307
5454
  }
5308
5455
  exports.Se = Se;
5309
5456
 
5310
- },{"./declaracao":67}],86:[function(require,module,exports){
5457
+ },{"./declaracao":69}],88:[function(require,module,exports){
5311
5458
  "use strict";
5312
5459
  Object.defineProperty(exports, "__esModule", { value: true });
5313
5460
  exports.Sustar = void 0;
@@ -5322,7 +5469,7 @@ class Sustar extends declaracao_1.Declaracao {
5322
5469
  }
5323
5470
  exports.Sustar = Sustar;
5324
5471
 
5325
- },{"./declaracao":67}],87:[function(require,module,exports){
5472
+ },{"./declaracao":69}],89:[function(require,module,exports){
5326
5473
  "use strict";
5327
5474
  Object.defineProperty(exports, "__esModule", { value: true });
5328
5475
  exports.TendoComo = void 0;
@@ -5345,7 +5492,7 @@ class TendoComo extends declaracao_1.Declaracao {
5345
5492
  }
5346
5493
  exports.TendoComo = TendoComo;
5347
5494
 
5348
- },{"./declaracao":67}],88:[function(require,module,exports){
5495
+ },{"./declaracao":69}],90:[function(require,module,exports){
5349
5496
  "use strict";
5350
5497
  Object.defineProperty(exports, "__esModule", { value: true });
5351
5498
  exports.Tente = void 0;
@@ -5367,7 +5514,7 @@ class Tente extends declaracao_1.Declaracao {
5367
5514
  }
5368
5515
  exports.Tente = Tente;
5369
5516
 
5370
- },{"./declaracao":67}],89:[function(require,module,exports){
5517
+ },{"./declaracao":69}],91:[function(require,module,exports){
5371
5518
  "use strict";
5372
5519
  Object.defineProperty(exports, "__esModule", { value: true });
5373
5520
  exports.VarMultiplo = void 0;
@@ -5389,7 +5536,7 @@ class VarMultiplo extends declaracao_1.Declaracao {
5389
5536
  }
5390
5537
  exports.VarMultiplo = VarMultiplo;
5391
5538
 
5392
- },{"./declaracao":67}],90:[function(require,module,exports){
5539
+ },{"./declaracao":69}],92:[function(require,module,exports){
5393
5540
  "use strict";
5394
5541
  Object.defineProperty(exports, "__esModule", { value: true });
5395
5542
  exports.Var = void 0;
@@ -5412,7 +5559,7 @@ class Var extends declaracao_1.Declaracao {
5412
5559
  }
5413
5560
  exports.Var = Var;
5414
5561
 
5415
- },{"./declaracao":67}],91:[function(require,module,exports){
5562
+ },{"./declaracao":69}],93:[function(require,module,exports){
5416
5563
  "use strict";
5417
5564
  Object.defineProperty(exports, "__esModule", { value: true });
5418
5565
  exports.default = cyrb53;
@@ -5436,7 +5583,7 @@ function cyrb53(nomeArquivo, semente = 0) {
5436
5583
  return 4294967296 * (2097151 & h2) + (h1 >>> 0);
5437
5584
  }
5438
5585
 
5439
- },{}],92:[function(require,module,exports){
5586
+ },{}],94:[function(require,module,exports){
5440
5587
  "use strict";
5441
5588
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5442
5589
  if (k2 === undefined) k2 = k;
@@ -5461,11 +5608,11 @@ var cyrb53_1 = require("./cyrb53");
5461
5608
  Object.defineProperty(exports, "cyrb53", { enumerable: true, get: function () { return __importDefault(cyrb53_1).default; } });
5462
5609
  __exportStar(require("./ponto-parada"), exports);
5463
5610
 
5464
- },{"./cyrb53":91,"./ponto-parada":93}],93:[function(require,module,exports){
5611
+ },{"./cyrb53":93,"./ponto-parada":95}],95:[function(require,module,exports){
5465
5612
  "use strict";
5466
5613
  Object.defineProperty(exports, "__esModule", { value: true });
5467
5614
 
5468
- },{}],94:[function(require,module,exports){
5615
+ },{}],96:[function(require,module,exports){
5469
5616
  "use strict";
5470
5617
  Object.defineProperty(exports, "__esModule", { value: true });
5471
5618
  exports.EspacoVariaveis = void 0;
@@ -5486,7 +5633,7 @@ class EspacoVariaveis {
5486
5633
  }
5487
5634
  exports.EspacoVariaveis = EspacoVariaveis;
5488
5635
 
5489
- },{}],95:[function(require,module,exports){
5636
+ },{}],97:[function(require,module,exports){
5490
5637
  "use strict";
5491
5638
  Object.defineProperty(exports, "__esModule", { value: true });
5492
5639
  exports.Chamavel = void 0;
@@ -5500,7 +5647,7 @@ class Chamavel {
5500
5647
  }
5501
5648
  exports.Chamavel = Chamavel;
5502
5649
 
5503
- },{}],96:[function(require,module,exports){
5650
+ },{}],98:[function(require,module,exports){
5504
5651
  "use strict";
5505
5652
  Object.defineProperty(exports, "__esModule", { value: true });
5506
5653
  exports.ClassePadrao = void 0;
@@ -5541,7 +5688,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
5541
5688
  }
5542
5689
  exports.ClassePadrao = ClassePadrao;
5543
5690
 
5544
- },{"./chamavel":95}],97:[function(require,module,exports){
5691
+ },{"./chamavel":97}],99:[function(require,module,exports){
5545
5692
  "use strict";
5546
5693
  Object.defineProperty(exports, "__esModule", { value: true });
5547
5694
  exports.DeleguaFuncao = void 0;
@@ -5683,7 +5830,7 @@ class DeleguaFuncao extends chamavel_1.Chamavel {
5683
5830
  }
5684
5831
  exports.DeleguaFuncao = DeleguaFuncao;
5685
5832
 
5686
- },{"../declaracoes":77,"../espaco-variaveis":94,"../inferenciador":111,"../quebras":153,"./chamavel":95}],98:[function(require,module,exports){
5833
+ },{"../declaracoes":79,"../espaco-variaveis":96,"../inferenciador":113,"../quebras":155,"./chamavel":97}],100:[function(require,module,exports){
5687
5834
  "use strict";
5688
5835
  Object.defineProperty(exports, "__esModule", { value: true });
5689
5836
  exports.DescritorTipoClasse = void 0;
@@ -5764,7 +5911,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
5764
5911
  }
5765
5912
  exports.DescritorTipoClasse = DescritorTipoClasse;
5766
5913
 
5767
- },{"../excecoes":106,"./chamavel":95,"./objeto-delegua-classe":103}],99:[function(require,module,exports){
5914
+ },{"../excecoes":108,"./chamavel":97,"./objeto-delegua-classe":105}],101:[function(require,module,exports){
5768
5915
  "use strict";
5769
5916
  Object.defineProperty(exports, "__esModule", { value: true });
5770
5917
  exports.FuncaoPadrao = void 0;
@@ -5800,7 +5947,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
5800
5947
  }
5801
5948
  exports.FuncaoPadrao = FuncaoPadrao;
5802
5949
 
5803
- },{"./chamavel":95}],100:[function(require,module,exports){
5950
+ },{"./chamavel":97}],102:[function(require,module,exports){
5804
5951
  "use strict";
5805
5952
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5806
5953
  if (k2 === undefined) k2 = k;
@@ -5827,7 +5974,7 @@ __exportStar(require("./modulo"), exports);
5827
5974
  __exportStar(require("./objeto-delegua-classe"), exports);
5828
5975
  __exportStar(require("./objeto-padrao"), exports);
5829
5976
 
5830
- },{"./chamavel":95,"./classe-padrao":96,"./delegua-funcao":97,"./descritor-tipo-classe":98,"./funcao-padrao":99,"./metodo-primitiva":101,"./modulo":102,"./objeto-delegua-classe":103,"./objeto-padrao":104}],101:[function(require,module,exports){
5977
+ },{"./chamavel":97,"./classe-padrao":98,"./delegua-funcao":99,"./descritor-tipo-classe":100,"./funcao-padrao":101,"./metodo-primitiva":103,"./modulo":104,"./objeto-delegua-classe":105,"./objeto-padrao":106}],103:[function(require,module,exports){
5831
5978
  "use strict";
5832
5979
  Object.defineProperty(exports, "__esModule", { value: true });
5833
5980
  exports.MetodoPrimitiva = void 0;
@@ -5869,7 +6016,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
5869
6016
  }
5870
6017
  exports.MetodoPrimitiva = MetodoPrimitiva;
5871
6018
 
5872
- },{"./chamavel":95}],102:[function(require,module,exports){
6019
+ },{"./chamavel":97}],104:[function(require,module,exports){
5873
6020
  "use strict";
5874
6021
  Object.defineProperty(exports, "__esModule", { value: true });
5875
6022
  exports.DeleguaModulo = void 0;
@@ -5895,7 +6042,7 @@ class DeleguaModulo {
5895
6042
  }
5896
6043
  exports.DeleguaModulo = DeleguaModulo;
5897
6044
 
5898
- },{}],103:[function(require,module,exports){
6045
+ },{}],105:[function(require,module,exports){
5899
6046
  "use strict";
5900
6047
  Object.defineProperty(exports, "__esModule", { value: true });
5901
6048
  exports.ObjetoDeleguaClasse = void 0;
@@ -5950,7 +6097,7 @@ class ObjetoDeleguaClasse {
5950
6097
  }
5951
6098
  exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
5952
6099
 
5953
- },{"../excecoes":106}],104:[function(require,module,exports){
6100
+ },{"../excecoes":108}],106:[function(require,module,exports){
5954
6101
  "use strict";
5955
6102
  Object.defineProperty(exports, "__esModule", { value: true });
5956
6103
  exports.ObjetoPadrao = void 0;
@@ -5984,7 +6131,7 @@ class ObjetoPadrao {
5984
6131
  }
5985
6132
  exports.ObjetoPadrao = ObjetoPadrao;
5986
6133
 
5987
- },{}],105:[function(require,module,exports){
6134
+ },{}],107:[function(require,module,exports){
5988
6135
  "use strict";
5989
6136
  Object.defineProperty(exports, "__esModule", { value: true });
5990
6137
  exports.ErroEmTempoDeExecucao = void 0;
@@ -5999,7 +6146,7 @@ class ErroEmTempoDeExecucao extends Error {
5999
6146
  }
6000
6147
  exports.ErroEmTempoDeExecucao = ErroEmTempoDeExecucao;
6001
6148
 
6002
- },{}],106:[function(require,module,exports){
6149
+ },{}],108:[function(require,module,exports){
6003
6150
  "use strict";
6004
6151
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6005
6152
  if (k2 === undefined) k2 = k;
@@ -6018,7 +6165,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
6018
6165
  Object.defineProperty(exports, "__esModule", { value: true });
6019
6166
  __exportStar(require("./erro-em-tempo-de-execucao"), exports);
6020
6167
 
6021
- },{"./erro-em-tempo-de-execucao":105}],107:[function(require,module,exports){
6168
+ },{"./erro-em-tempo-de-execucao":107}],109:[function(require,module,exports){
6022
6169
  "use strict";
6023
6170
  var __importDefault = (this && this.__importDefault) || function (mod) {
6024
6171
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -6696,7 +6843,7 @@ class FormatadorDelegua {
6696
6843
  }
6697
6844
  exports.FormatadorDelegua = FormatadorDelegua;
6698
6845
 
6699
- },{"../construtos":39,"../tipos-de-simbolos/delegua":157}],108:[function(require,module,exports){
6846
+ },{"../construtos":41,"../tipos-de-simbolos/delegua":159}],110:[function(require,module,exports){
6700
6847
  "use strict";
6701
6848
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6702
6849
  if (k2 === undefined) k2 = k;
@@ -6715,7 +6862,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
6715
6862
  Object.defineProperty(exports, "__esModule", { value: true });
6716
6863
  __exportStar(require("./formatador-delegua"), exports);
6717
6864
 
6718
- },{"./formatador-delegua":107}],109:[function(require,module,exports){
6865
+ },{"./formatador-delegua":109}],111:[function(require,module,exports){
6719
6866
  "use strict";
6720
6867
  Object.defineProperty(exports, "__esModule", { value: true });
6721
6868
  exports.uuidv4 = uuidv4;
@@ -6739,7 +6886,7 @@ function uuidv4() {
6739
6886
  });
6740
6887
  }
6741
6888
 
6742
- },{}],110:[function(require,module,exports){
6889
+ },{}],112:[function(require,module,exports){
6743
6890
  "use strict";
6744
6891
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6745
6892
  if (k2 === undefined) k2 = k;
@@ -6768,7 +6915,7 @@ __exportStar(require("./interpretador"), exports);
6768
6915
  __exportStar(require("./lexador"), exports);
6769
6916
  __exportStar(require("./tradutores"), exports);
6770
6917
 
6771
- },{"./avaliador-sintatico":8,"./construtos":39,"./declaracoes":77,"./depuracao":92,"./formatadores":108,"./interfaces":117,"./interpretador":134,"./lexador":146,"./tradutores":163}],111:[function(require,module,exports){
6918
+ },{"./avaliador-sintatico":8,"./construtos":41,"./declaracoes":79,"./depuracao":94,"./formatadores":110,"./interfaces":119,"./interpretador":136,"./lexador":148,"./tradutores":165}],113:[function(require,module,exports){
6772
6919
  "use strict";
6773
6920
  var __importDefault = (this && this.__importDefault) || function (mod) {
6774
6921
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -6794,6 +6941,31 @@ var TipoNativoSimbolo;
6794
6941
  TipoNativoSimbolo["BOOLEANO"] = "<palavra reservada booleano ajuda=\"palavra reservada usada para definir vari\u00E1veis do tipo booleano\">";
6795
6942
  TipoNativoSimbolo["VAZIO"] = "<palavra reservada vazio ajuda=\"palavra reservada usada para definir fun\u00E7\u00F5es que n\u00E3o retornam valores\">";
6796
6943
  })(TipoNativoSimbolo || (exports.TipoNativoSimbolo = TipoNativoSimbolo = {}));
6944
+ function inferirVetor(vetor) {
6945
+ const tiposEmVetor = new Set(vetor.map((elemento) => typeof elemento));
6946
+ if (tiposEmVetor.size > 1) {
6947
+ return 'vetor';
6948
+ }
6949
+ const tipoVetor = tiposEmVetor.values().next().value;
6950
+ switch (tipoVetor) {
6951
+ case 'bigint':
6952
+ return 'longo[]';
6953
+ case 'boolean':
6954
+ return 'lógico[]';
6955
+ case 'number':
6956
+ return 'número[]';
6957
+ case 'string':
6958
+ return 'texto[]';
6959
+ case 'object':
6960
+ const tiposObjetosEmVetor = new Set(vetor.map((elemento) => elemento.tipo));
6961
+ if (tiposObjetosEmVetor.size > 1) {
6962
+ return 'vetor';
6963
+ }
6964
+ return `${tiposObjetosEmVetor.values().next().value}[]`;
6965
+ default:
6966
+ return 'vetor';
6967
+ }
6968
+ }
6797
6969
  function inferirTipoVariavel(variavel) {
6798
6970
  const tipo = typeof variavel;
6799
6971
  switch (tipo) {
@@ -6809,23 +6981,7 @@ function inferirTipoVariavel(variavel) {
6809
6981
  return 'nulo';
6810
6982
  case 'object':
6811
6983
  if (Array.isArray(variavel)) {
6812
- const tiposEmVetor = new Set(variavel.map((elemento) => typeof elemento));
6813
- if (tiposEmVetor.size > 1) {
6814
- return 'vetor';
6815
- }
6816
- const tipoVetor = tiposEmVetor[0];
6817
- switch (tipoVetor) {
6818
- case 'bigint':
6819
- return 'longo[]';
6820
- case 'boolean':
6821
- return 'lógico[]';
6822
- case 'number':
6823
- return 'número[]';
6824
- case 'string':
6825
- return 'texto[]';
6826
- default:
6827
- return 'vetor';
6828
- }
6984
+ return inferirVetor(variavel);
6829
6985
  }
6830
6986
  if (variavel === null)
6831
6987
  return 'nulo';
@@ -6875,15 +7031,15 @@ function tipoInferenciaParaTipoDadosElementar(tipoInferencia) {
6875
7031
  }
6876
7032
  }
6877
7033
 
6878
- },{"./tipos-de-dados/delegua":154,"./tipos-de-dados/primitivos":155,"./tipos-de-simbolos/delegua":157}],112:[function(require,module,exports){
7034
+ },{"./tipos-de-dados/delegua":156,"./tipos-de-dados/primitivos":157,"./tipos-de-simbolos/delegua":159}],114:[function(require,module,exports){
6879
7035
  "use strict";
6880
7036
  Object.defineProperty(exports, "__esModule", { value: true });
6881
7037
 
6882
- },{}],113:[function(require,module,exports){
7038
+ },{}],115:[function(require,module,exports){
6883
7039
  "use strict";
6884
7040
  Object.defineProperty(exports, "__esModule", { value: true });
6885
7041
 
6886
- },{}],114:[function(require,module,exports){
7042
+ },{}],116:[function(require,module,exports){
6887
7043
  "use strict";
6888
7044
  Object.defineProperty(exports, "__esModule", { value: true });
6889
7045
  exports.DiagnosticoSeveridade = void 0;
@@ -6895,7 +7051,7 @@ var DiagnosticoSeveridade;
6895
7051
  DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
6896
7052
  })(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
6897
7053
 
6898
- },{}],115:[function(require,module,exports){
7054
+ },{}],117:[function(require,module,exports){
6899
7055
  "use strict";
6900
7056
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6901
7057
  if (k2 === undefined) k2 = k;
@@ -6914,11 +7070,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
6914
7070
  Object.defineProperty(exports, "__esModule", { value: true });
6915
7071
  __exportStar(require("./diagnostico-analisador-semantico"), exports);
6916
7072
 
6917
- },{"./diagnostico-analisador-semantico":114}],116:[function(require,module,exports){
7073
+ },{"./diagnostico-analisador-semantico":116}],118:[function(require,module,exports){
6918
7074
  "use strict";
6919
7075
  Object.defineProperty(exports, "__esModule", { value: true });
6920
7076
 
6921
- },{}],117:[function(require,module,exports){
7077
+ },{}],119:[function(require,module,exports){
6922
7078
  "use strict";
6923
7079
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6924
7080
  if (k2 === undefined) k2 = k;
@@ -6952,31 +7108,31 @@ __exportStar(require("./construtos"), exports);
6952
7108
  __exportStar(require("./erros"), exports);
6953
7109
  __exportStar(require("./retornos"), exports);
6954
7110
 
6955
- },{"./avaliador-sintatico-interface":112,"./construtos":113,"./erros":115,"./formatador-comum-interface":116,"./interpretador-com-depuracao-interface":118,"./interpretador-interface":119,"./lexador-interface":120,"./parametro-interface":121,"./pilha-interface":122,"./resolvedor-interface":123,"./retornos":124,"./retornos/retorno-execucao-interface":126,"./simbolo-interface":129,"./tradutor-interface":130,"./variavel-interface":131,"./visitante-comum-interface":132}],118:[function(require,module,exports){
7111
+ },{"./avaliador-sintatico-interface":114,"./construtos":115,"./erros":117,"./formatador-comum-interface":118,"./interpretador-com-depuracao-interface":120,"./interpretador-interface":121,"./lexador-interface":122,"./parametro-interface":123,"./pilha-interface":124,"./resolvedor-interface":125,"./retornos":126,"./retornos/retorno-execucao-interface":128,"./simbolo-interface":131,"./tradutor-interface":132,"./variavel-interface":133,"./visitante-comum-interface":134}],120:[function(require,module,exports){
6956
7112
  "use strict";
6957
7113
  Object.defineProperty(exports, "__esModule", { value: true });
6958
7114
 
6959
- },{}],119:[function(require,module,exports){
7115
+ },{}],121:[function(require,module,exports){
6960
7116
  "use strict";
6961
7117
  Object.defineProperty(exports, "__esModule", { value: true });
6962
7118
 
6963
- },{}],120:[function(require,module,exports){
7119
+ },{}],122:[function(require,module,exports){
6964
7120
  "use strict";
6965
7121
  Object.defineProperty(exports, "__esModule", { value: true });
6966
7122
 
6967
- },{}],121:[function(require,module,exports){
7123
+ },{}],123:[function(require,module,exports){
6968
7124
  "use strict";
6969
7125
  Object.defineProperty(exports, "__esModule", { value: true });
6970
7126
 
6971
- },{}],122:[function(require,module,exports){
7127
+ },{}],124:[function(require,module,exports){
6972
7128
  "use strict";
6973
7129
  Object.defineProperty(exports, "__esModule", { value: true });
6974
7130
 
6975
- },{}],123:[function(require,module,exports){
7131
+ },{}],125:[function(require,module,exports){
6976
7132
  "use strict";
6977
7133
  Object.defineProperty(exports, "__esModule", { value: true });
6978
7134
 
6979
- },{}],124:[function(require,module,exports){
7135
+ },{}],126:[function(require,module,exports){
6980
7136
  "use strict";
6981
7137
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6982
7138
  if (k2 === undefined) k2 = k;
@@ -6998,15 +7154,7 @@ __exportStar(require("./retorno-execucao-interface"), exports);
6998
7154
  __exportStar(require("./retorno-interpretador"), exports);
6999
7155
  __exportStar(require("./retorno-lexador"), exports);
7000
7156
 
7001
- },{"./retorno-avaliador-sintatico":125,"./retorno-execucao-interface":126,"./retorno-interpretador":127,"./retorno-lexador":128}],125:[function(require,module,exports){
7002
- "use strict";
7003
- Object.defineProperty(exports, "__esModule", { value: true });
7004
-
7005
- },{}],126:[function(require,module,exports){
7006
- "use strict";
7007
- Object.defineProperty(exports, "__esModule", { value: true });
7008
-
7009
- },{}],127:[function(require,module,exports){
7157
+ },{"./retorno-avaliador-sintatico":127,"./retorno-execucao-interface":128,"./retorno-interpretador":129,"./retorno-lexador":130}],127:[function(require,module,exports){
7010
7158
  "use strict";
7011
7159
  Object.defineProperty(exports, "__esModule", { value: true });
7012
7160
 
@@ -7032,6 +7180,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
7032
7180
 
7033
7181
  },{}],133:[function(require,module,exports){
7034
7182
  "use strict";
7183
+ Object.defineProperty(exports, "__esModule", { value: true });
7184
+
7185
+ },{}],134:[function(require,module,exports){
7186
+ "use strict";
7187
+ Object.defineProperty(exports, "__esModule", { value: true });
7188
+
7189
+ },{}],135:[function(require,module,exports){
7190
+ "use strict";
7035
7191
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7036
7192
  if (k2 === undefined) k2 = k;
7037
7193
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -7083,7 +7239,7 @@ function carregarBibliotecasGlobais(pilhaEscoposExecucao) {
7083
7239
  pilhaEscoposExecucao.definirVariavel('tupla', new funcao_padrao_1.FuncaoPadrao(1, bibliotecaGlobal.tupla));
7084
7240
  }
7085
7241
 
7086
- },{"../bibliotecas/biblioteca-global":15,"../estruturas/funcao-padrao":99}],134:[function(require,module,exports){
7242
+ },{"../bibliotecas/biblioteca-global":17,"../estruturas/funcao-padrao":101}],136:[function(require,module,exports){
7087
7243
  "use strict";
7088
7244
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7089
7245
  if (k2 === undefined) k2 = k;
@@ -7103,7 +7259,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
7103
7259
  __exportStar(require("./interpretador-base"), exports);
7104
7260
  __exportStar(require("./interpretador-com-depuracao"), exports);
7105
7261
 
7106
- },{"./interpretador-base":135,"./interpretador-com-depuracao":136}],135:[function(require,module,exports){
7262
+ },{"./interpretador-base":137,"./interpretador-com-depuracao":138}],137:[function(require,module,exports){
7107
7263
  (function (process){(function (){
7108
7264
  "use strict";
7109
7265
  var __importDefault = (this && this.__importDefault) || function (mod) {
@@ -8281,6 +8437,9 @@ class InterpretadorBase {
8281
8437
  }
8282
8438
  break;
8283
8439
  case delegua_2.default.VETOR:
8440
+ case delegua_2.default.VETOR_NUMERO:
8441
+ case delegua_2.default.VETOR_NÚMERO:
8442
+ case delegua_2.default.VETOR_TEXTO:
8284
8443
  const metodoDePrimitivaVetor = primitivas_vetor_1.default[expressao.simbolo.lexema];
8285
8444
  if (metodoDePrimitivaVetor) {
8286
8445
  return new metodo_primitiva_1.MetodoPrimitiva(objeto, metodoDePrimitivaVetor);
@@ -8442,7 +8601,9 @@ class InterpretadorBase {
8442
8601
  hashArquivo: declaracaoAtual.hashArquivo,
8443
8602
  });
8444
8603
  }
8445
- return Promise.reject(erro);
8604
+ else {
8605
+ return Promise.reject(erro);
8606
+ }
8446
8607
  }
8447
8608
  finally {
8448
8609
  this.pilhaEscoposExecucao.removerUltimo();
@@ -8479,12 +8640,8 @@ class InterpretadorBase {
8479
8640
  this.erros.push(retornoOuErro);
8480
8641
  }
8481
8642
  }
8482
- catch (erro) {
8483
- this.erros.push({
8484
- erroInterno: erro,
8485
- linha: -1,
8486
- hashArquivo: -1,
8487
- });
8643
+ catch (erro) { // TODO: Estudar remoção do `catch`.
8644
+ throw new Error(`Não deveria estar caindo aqui.erros no interpretador que não estão tratados corretamente. Erro atual: ${JSON.stringify(erro)}.`);
8488
8645
  }
8489
8646
  finally {
8490
8647
  if (this.performance) {
@@ -8503,7 +8660,7 @@ class InterpretadorBase {
8503
8660
  exports.InterpretadorBase = InterpretadorBase;
8504
8661
 
8505
8662
  }).call(this)}).call(this,require('_process'))
8506
- },{"../avaliador-sintatico":8,"../bibliotecas/primitivas-dicionario":16,"../bibliotecas/primitivas-numero":17,"../bibliotecas/primitivas-texto":18,"../bibliotecas/primitivas-vetor":19,"../construtos":39,"../espaco-variaveis":94,"../estruturas":100,"../estruturas/metodo-primitiva":101,"../excecoes":106,"../inferenciador":111,"../lexador":146,"../quebras":153,"../tipos-de-dados/delegua":154,"../tipos-de-dados/primitivos":155,"../tipos-de-simbolos/delegua":157,"./comum":133,"./pilha-escopos-execucao":137,"_process":376,"browser-process-hrtime":333}],136:[function(require,module,exports){
8663
+ },{"../avaliador-sintatico":8,"../bibliotecas/primitivas-dicionario":18,"../bibliotecas/primitivas-numero":19,"../bibliotecas/primitivas-texto":20,"../bibliotecas/primitivas-vetor":21,"../construtos":41,"../espaco-variaveis":96,"../estruturas":102,"../estruturas/metodo-primitiva":103,"../excecoes":108,"../inferenciador":113,"../lexador":148,"../quebras":155,"../tipos-de-dados/delegua":156,"../tipos-de-dados/primitivos":157,"../tipos-de-simbolos/delegua":159,"./comum":135,"./pilha-escopos-execucao":139,"_process":378,"browser-process-hrtime":335}],138:[function(require,module,exports){
8507
8664
  "use strict";
8508
8665
  var __importDefault = (this && this.__importDefault) || function (mod) {
8509
8666
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -9075,7 +9232,7 @@ class InterpretadorComDepuracao extends interpretador_base_1.InterpretadorBase {
9075
9232
  }
9076
9233
  exports.InterpretadorComDepuracao = InterpretadorComDepuracao;
9077
9234
 
9078
- },{"../declaracoes":77,"../espaco-variaveis":94,"../inferenciador":111,"../quebras":153,"./interpretador-base":135,"lodash":369}],137:[function(require,module,exports){
9235
+ },{"../declaracoes":79,"../espaco-variaveis":96,"../inferenciador":113,"../quebras":155,"./interpretador-base":137,"lodash":371}],139:[function(require,module,exports){
9079
9236
  "use strict";
9080
9237
  var __importDefault = (this && this.__importDefault) || function (mod) {
9081
9238
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -9320,7 +9477,7 @@ class PilhaEscoposExecucao {
9320
9477
  }
9321
9478
  exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
9322
9479
 
9323
- },{"../estruturas":100,"../excecoes":106,"../inferenciador":111,"../lexador":146,"../tipos-de-dados/delegua":154}],138:[function(require,module,exports){
9480
+ },{"../estruturas":102,"../excecoes":108,"../inferenciador":113,"../lexador":148,"../tipos-de-dados/delegua":156}],140:[function(require,module,exports){
9324
9481
  "use strict";
9325
9482
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
9326
9483
  if (k2 === undefined) k2 = k;
@@ -9342,7 +9499,7 @@ __exportStar(require("./lexador-pitugues"), exports);
9342
9499
  __exportStar(require("./lexador-guarani"), exports);
9343
9500
  __exportStar(require("./lexador-portugol-ipt"), exports);
9344
9501
 
9345
- },{"./lexador-egua-classico":139,"./lexador-guarani":140,"./lexador-pitugues":141,"./lexador-portugol-ipt":142}],139:[function(require,module,exports){
9502
+ },{"./lexador-egua-classico":141,"./lexador-guarani":142,"./lexador-pitugues":143,"./lexador-portugol-ipt":144}],141:[function(require,module,exports){
9346
9503
  "use strict";
9347
9504
  var __importDefault = (this && this.__importDefault) || function (mod) {
9348
9505
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -9630,7 +9787,7 @@ class LexadorEguaClassico {
9630
9787
  }
9631
9788
  exports.LexadorEguaClassico = LexadorEguaClassico;
9632
9789
 
9633
- },{"../../tipos-de-simbolos/egua-classico":158,"../simbolo":152,"./palavras-reservadas/egua-classico":143}],140:[function(require,module,exports){
9790
+ },{"../../tipos-de-simbolos/egua-classico":160,"../simbolo":154,"./palavras-reservadas/egua-classico":145}],142:[function(require,module,exports){
9634
9791
  "use strict";
9635
9792
  var __importDefault = (this && this.__importDefault) || function (mod) {
9636
9793
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -9745,7 +9902,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
9745
9902
  }
9746
9903
  exports.LexadorGuarani = LexadorGuarani;
9747
9904
 
9748
- },{"../../tipos-de-simbolos/guarani":159,"../lexador-base":148,"./palavras-reservadas/guarani":144}],141:[function(require,module,exports){
9905
+ },{"../../tipos-de-simbolos/guarani":161,"../lexador-base":150,"./palavras-reservadas/guarani":146}],143:[function(require,module,exports){
9749
9906
  "use strict";
9750
9907
  var __importDefault = (this && this.__importDefault) || function (mod) {
9751
9908
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -10145,7 +10302,7 @@ class LexadorPitugues {
10145
10302
  }
10146
10303
  exports.LexadorPitugues = LexadorPitugues;
10147
10304
 
10148
- },{"../../tipos-de-simbolos/pitugues":161,"../palavras-reservadas":151,"../simbolo":152,"browser-process-hrtime":333}],142:[function(require,module,exports){
10305
+ },{"../../tipos-de-simbolos/pitugues":163,"../palavras-reservadas":153,"../simbolo":154,"browser-process-hrtime":335}],144:[function(require,module,exports){
10149
10306
  "use strict";
10150
10307
  var __importDefault = (this && this.__importDefault) || function (mod) {
10151
10308
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -10384,7 +10541,7 @@ class LexadorPortugolIpt {
10384
10541
  }
10385
10542
  exports.LexadorPortugolIpt = LexadorPortugolIpt;
10386
10543
 
10387
- },{"../../tipos-de-simbolos/portugol-ipt":162,"../simbolo":152,"./palavras-reservadas/portugol-ipt":145}],143:[function(require,module,exports){
10544
+ },{"../../tipos-de-simbolos/portugol-ipt":164,"../simbolo":154,"./palavras-reservadas/portugol-ipt":147}],145:[function(require,module,exports){
10388
10545
  "use strict";
10389
10546
  var __importDefault = (this && this.__importDefault) || function (mod) {
10390
10547
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -10425,7 +10582,7 @@ exports.palavrasReservadas = {
10425
10582
  verdadeiro: egua_classico_1.default.VERDADEIRO,
10426
10583
  };
10427
10584
 
10428
- },{"../../../tipos-de-simbolos/egua-classico":158}],144:[function(require,module,exports){
10585
+ },{"../../../tipos-de-simbolos/egua-classico":160}],146:[function(require,module,exports){
10429
10586
  "use strict";
10430
10587
  var __importDefault = (this && this.__importDefault) || function (mod) {
10431
10588
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -10437,7 +10594,7 @@ exports.palavrasReservadas = {
10437
10594
  hai: guarani_1.default.HAI,
10438
10595
  };
10439
10596
 
10440
- },{"../../../tipos-de-simbolos/guarani":159}],145:[function(require,module,exports){
10597
+ },{"../../../tipos-de-simbolos/guarani":161}],147:[function(require,module,exports){
10441
10598
  "use strict";
10442
10599
  var __importDefault = (this && this.__importDefault) || function (mod) {
10443
10600
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -10459,7 +10616,7 @@ exports.palavrasReservadas = {
10459
10616
  senão: portugol_ipt_1.default.SENAO,
10460
10617
  };
10461
10618
 
10462
- },{"../../../tipos-de-simbolos/portugol-ipt":162}],146:[function(require,module,exports){
10619
+ },{"../../../tipos-de-simbolos/portugol-ipt":164}],148:[function(require,module,exports){
10463
10620
  "use strict";
10464
10621
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10465
10622
  if (k2 === undefined) k2 = k;
@@ -10481,7 +10638,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
10481
10638
  __exportStar(require("./micro-lexador"), exports);
10482
10639
  __exportStar(require("./simbolo"), exports);
10483
10640
 
10484
- },{"./lexador":149,"./lexador-base-linha-unica":147,"./micro-lexador":150,"./simbolo":152}],147:[function(require,module,exports){
10641
+ },{"./lexador":151,"./lexador-base-linha-unica":149,"./micro-lexador":152,"./simbolo":154}],149:[function(require,module,exports){
10485
10642
  "use strict";
10486
10643
  Object.defineProperty(exports, "__esModule", { value: true });
10487
10644
  exports.LexadorBaseLinhaUnica = void 0;
@@ -10565,7 +10722,7 @@ class LexadorBaseLinhaUnica {
10565
10722
  }
10566
10723
  exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
10567
10724
 
10568
- },{"./simbolo":152}],148:[function(require,module,exports){
10725
+ },{"./simbolo":154}],150:[function(require,module,exports){
10569
10726
  "use strict";
10570
10727
  Object.defineProperty(exports, "__esModule", { value: true });
10571
10728
  exports.LexadorBase = void 0;
@@ -10679,7 +10836,7 @@ class LexadorBase {
10679
10836
  }
10680
10837
  exports.LexadorBase = LexadorBase;
10681
10838
 
10682
- },{"./simbolo":152}],149:[function(require,module,exports){
10839
+ },{"./simbolo":154}],151:[function(require,module,exports){
10683
10840
  "use strict";
10684
10841
  var __importDefault = (this && this.__importDefault) || function (mod) {
10685
10842
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -11121,7 +11278,7 @@ class Lexador {
11121
11278
  }
11122
11279
  exports.Lexador = Lexador;
11123
11280
 
11124
- },{"../tipos-de-simbolos/delegua":157,"./palavras-reservadas":151,"./simbolo":152,"browser-process-hrtime":333}],150:[function(require,module,exports){
11281
+ },{"../tipos-de-simbolos/delegua":159,"./palavras-reservadas":153,"./simbolo":154,"browser-process-hrtime":335}],152:[function(require,module,exports){
11125
11282
  "use strict";
11126
11283
  var __importDefault = (this && this.__importDefault) || function (mod) {
11127
11284
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -11330,7 +11487,7 @@ class MicroLexador {
11330
11487
  }
11331
11488
  exports.MicroLexador = MicroLexador;
11332
11489
 
11333
- },{"../tipos-de-simbolos/microgramaticas/delegua":160,"./palavras-reservadas":151,"./simbolo":152}],151:[function(require,module,exports){
11490
+ },{"../tipos-de-simbolos/microgramaticas/delegua":162,"./palavras-reservadas":153,"./simbolo":154}],153:[function(require,module,exports){
11334
11491
  "use strict";
11335
11492
  var __importDefault = (this && this.__importDefault) || function (mod) {
11336
11493
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -11393,7 +11550,7 @@ exports.palavrasReservadasMicroGramatica = {
11393
11550
  verdadeiro: delegua_1.default.VERDADEIRO,
11394
11551
  };
11395
11552
 
11396
- },{"../tipos-de-simbolos/delegua":157}],152:[function(require,module,exports){
11553
+ },{"../tipos-de-simbolos/delegua":159}],154:[function(require,module,exports){
11397
11554
  "use strict";
11398
11555
  Object.defineProperty(exports, "__esModule", { value: true });
11399
11556
  exports.Simbolo = void 0;
@@ -11411,7 +11568,7 @@ class Simbolo {
11411
11568
  }
11412
11569
  exports.Simbolo = Simbolo;
11413
11570
 
11414
- },{}],153:[function(require,module,exports){
11571
+ },{}],155:[function(require,module,exports){
11415
11572
  "use strict";
11416
11573
  Object.defineProperty(exports, "__esModule", { value: true });
11417
11574
  exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
@@ -11432,7 +11589,7 @@ class ContinuarQuebra extends Quebra {
11432
11589
  }
11433
11590
  exports.ContinuarQuebra = ContinuarQuebra;
11434
11591
 
11435
- },{}],154:[function(require,module,exports){
11592
+ },{}],156:[function(require,module,exports){
11436
11593
  "use strict";
11437
11594
  Object.defineProperty(exports, "__esModule", { value: true });
11438
11595
  exports.default = {
@@ -11451,9 +11608,12 @@ exports.default = {
11451
11608
  TUPLA: 'tupla',
11452
11609
  VAZIO: 'vazio',
11453
11610
  VETOR: 'vetor',
11611
+ VETOR_NUMERO: 'numero[]',
11612
+ VETOR_NÚMERO: 'número[]',
11613
+ VETOR_TEXTO: 'texto[]',
11454
11614
  };
11455
11615
 
11456
- },{}],155:[function(require,module,exports){
11616
+ },{}],157:[function(require,module,exports){
11457
11617
  "use strict";
11458
11618
  Object.defineProperty(exports, "__esModule", { value: true });
11459
11619
  exports.default = {
@@ -11472,7 +11632,7 @@ exports.default = {
11472
11632
  TEXTO: 'string',
11473
11633
  };
11474
11634
 
11475
- },{}],156:[function(require,module,exports){
11635
+ },{}],158:[function(require,module,exports){
11476
11636
  "use strict";
11477
11637
  Object.defineProperty(exports, "__esModule", { value: true });
11478
11638
  exports.default = {
@@ -11498,7 +11658,7 @@ exports.default = {
11498
11658
  VIRGULA: 'VIRGULA',
11499
11659
  };
11500
11660
 
11501
- },{}],157:[function(require,module,exports){
11661
+ },{}],159:[function(require,module,exports){
11502
11662
  "use strict";
11503
11663
  Object.defineProperty(exports, "__esModule", { value: true });
11504
11664
  exports.default = {
@@ -11592,7 +11752,7 @@ exports.default = {
11592
11752
  VIRGULA: 'VIRGULA',
11593
11753
  };
11594
11754
 
11595
- },{}],158:[function(require,module,exports){
11755
+ },{}],160:[function(require,module,exports){
11596
11756
  "use strict";
11597
11757
  Object.defineProperty(exports, "__esModule", { value: true });
11598
11758
  exports.default = {
@@ -11670,7 +11830,7 @@ exports.default = {
11670
11830
  VIRGULA: 'VIRGULA',
11671
11831
  };
11672
11832
 
11673
- },{}],159:[function(require,module,exports){
11833
+ },{}],161:[function(require,module,exports){
11674
11834
  "use strict";
11675
11835
  Object.defineProperty(exports, "__esModule", { value: true });
11676
11836
  exports.default = {
@@ -11687,7 +11847,7 @@ exports.default = {
11687
11847
  VIRGULA: 'VIRGULA',
11688
11848
  };
11689
11849
 
11690
- },{}],160:[function(require,module,exports){
11850
+ },{}],162:[function(require,module,exports){
11691
11851
  "use strict";
11692
11852
  Object.defineProperty(exports, "__esModule", { value: true });
11693
11853
  exports.default = {
@@ -11736,7 +11896,7 @@ exports.default = {
11736
11896
  VIRGULA: 'VIRGULA',
11737
11897
  };
11738
11898
 
11739
- },{}],161:[function(require,module,exports){
11899
+ },{}],163:[function(require,module,exports){
11740
11900
  "use strict";
11741
11901
  Object.defineProperty(exports, "__esModule", { value: true });
11742
11902
  exports.default = {
@@ -11814,7 +11974,7 @@ exports.default = {
11814
11974
  VIRGULA: 'VIRGULA',
11815
11975
  };
11816
11976
 
11817
- },{}],162:[function(require,module,exports){
11977
+ },{}],164:[function(require,module,exports){
11818
11978
  "use strict";
11819
11979
  Object.defineProperty(exports, "__esModule", { value: true });
11820
11980
  exports.default = {
@@ -11853,7 +12013,7 @@ exports.default = {
11853
12013
  VIRGULA: 'VIRGULA',
11854
12014
  };
11855
12015
 
11856
- },{}],163:[function(require,module,exports){
12016
+ },{}],165:[function(require,module,exports){
11857
12017
  "use strict";
11858
12018
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
11859
12019
  if (k2 === undefined) k2 = k;
@@ -11877,7 +12037,7 @@ __exportStar(require("./tradutor-python"), exports);
11877
12037
  __exportStar(require("./tradutor-reverso-javascript"), exports);
11878
12038
  __exportStar(require("./tradutor-reverso-python"), exports);
11879
12039
 
11880
- },{"./tradutor-assemblyscript":166,"./tradutor-javascript":167,"./tradutor-portugol-ipt":168,"./tradutor-python":169,"./tradutor-reverso-javascript":170,"./tradutor-reverso-python":171}],164:[function(require,module,exports){
12040
+ },{"./tradutor-assemblyscript":168,"./tradutor-javascript":169,"./tradutor-portugol-ipt":170,"./tradutor-python":171,"./tradutor-reverso-javascript":172,"./tradutor-reverso-python":173}],166:[function(require,module,exports){
11881
12041
  "use strict";
11882
12042
  // Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
11883
12043
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -13106,7 +13266,7 @@ __decorate([
13106
13266
  Decorators_1.Override
13107
13267
  ], Python3Lexer.prototype, "nextToken", null);
13108
13268
 
13109
- },{"./python3-parser":165,"antlr4ts/CommonToken":181,"antlr4ts/Decorators":185,"antlr4ts/Lexer":193,"antlr4ts/Token":210,"antlr4ts/VocabularyImpl":216,"antlr4ts/atn/ATNDeserializer":222,"antlr4ts/atn/LexerATNSimulator":243,"antlr4ts/misc/Utils":304}],165:[function(require,module,exports){
13269
+ },{"./python3-parser":167,"antlr4ts/CommonToken":183,"antlr4ts/Decorators":187,"antlr4ts/Lexer":195,"antlr4ts/Token":212,"antlr4ts/VocabularyImpl":218,"antlr4ts/atn/ATNDeserializer":224,"antlr4ts/atn/LexerATNSimulator":245,"antlr4ts/misc/Utils":306}],167:[function(require,module,exports){
13110
13270
  "use strict";
13111
13271
  // Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
13112
13272
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -24334,7 +24494,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
24334
24494
  }
24335
24495
  exports.Yield_argContext = Yield_argContext;
24336
24496
 
24337
- },{"antlr4ts/FailedPredicateException":189,"antlr4ts/NoViableAltException":197,"antlr4ts/Parser":198,"antlr4ts/ParserRuleContext":201,"antlr4ts/RecognitionException":204,"antlr4ts/Token":210,"antlr4ts/VocabularyImpl":216,"antlr4ts/atn/ATN":218,"antlr4ts/atn/ATNDeserializer":222,"antlr4ts/atn/ParserATNSimulator":259,"antlr4ts/misc/Utils":304}],166:[function(require,module,exports){
24497
+ },{"antlr4ts/FailedPredicateException":191,"antlr4ts/NoViableAltException":199,"antlr4ts/Parser":200,"antlr4ts/ParserRuleContext":203,"antlr4ts/RecognitionException":206,"antlr4ts/Token":212,"antlr4ts/VocabularyImpl":218,"antlr4ts/atn/ATN":220,"antlr4ts/atn/ATNDeserializer":224,"antlr4ts/atn/ParserATNSimulator":261,"antlr4ts/misc/Utils":306}],168:[function(require,module,exports){
24338
24498
  "use strict";
24339
24499
  var __importDefault = (this && this.__importDefault) || function (mod) {
24340
24500
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -24927,7 +25087,7 @@ class TradutorAssemblyScript {
24927
25087
  }
24928
25088
  exports.TradutorAssemblyScript = TradutorAssemblyScript;
24929
25089
 
24930
- },{"../construtos":39,"../declaracoes":77,"../tipos-de-simbolos/delegua":157}],167:[function(require,module,exports){
25090
+ },{"../construtos":41,"../declaracoes":79,"../tipos-de-simbolos/delegua":159}],169:[function(require,module,exports){
24931
25091
  "use strict";
24932
25092
  var __importDefault = (this && this.__importDefault) || function (mod) {
24933
25093
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -25509,7 +25669,7 @@ class TradutorJavaScript {
25509
25669
  }
25510
25670
  exports.TradutorJavaScript = TradutorJavaScript;
25511
25671
 
25512
- },{"../construtos":39,"../declaracoes":77,"../tipos-de-simbolos/delegua":157}],168:[function(require,module,exports){
25672
+ },{"../construtos":41,"../declaracoes":79,"../tipos-de-simbolos/delegua":159}],170:[function(require,module,exports){
25513
25673
  "use strict";
25514
25674
  Object.defineProperty(exports, "__esModule", { value: true });
25515
25675
  exports.TradutorPortugolIpt = void 0;
@@ -25571,7 +25731,7 @@ class TradutorPortugolIpt {
25571
25731
  }
25572
25732
  exports.TradutorPortugolIpt = TradutorPortugolIpt;
25573
25733
 
25574
- },{"../avaliador-sintatico/dialetos":6,"../lexador/dialetos":138}],169:[function(require,module,exports){
25734
+ },{"../avaliador-sintatico/dialetos":6,"../lexador/dialetos":140}],171:[function(require,module,exports){
25575
25735
  "use strict";
25576
25736
  var __importDefault = (this && this.__importDefault) || function (mod) {
25577
25737
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -26091,7 +26251,7 @@ class TradutorPython {
26091
26251
  }
26092
26252
  exports.TradutorPython = TradutorPython;
26093
26253
 
26094
- },{"../construtos":39,"../declaracoes":77,"../tipos-de-simbolos/delegua":157}],170:[function(require,module,exports){
26254
+ },{"../construtos":41,"../declaracoes":79,"../tipos-de-simbolos/delegua":159}],172:[function(require,module,exports){
26095
26255
  "use strict";
26096
26256
  Object.defineProperty(exports, "__esModule", { value: true });
26097
26257
  exports.TradutorReversoJavaScript = void 0;
@@ -26485,7 +26645,7 @@ class TradutorReversoJavaScript {
26485
26645
  }
26486
26646
  exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
26487
26647
 
26488
- },{}],171:[function(require,module,exports){
26648
+ },{}],173:[function(require,module,exports){
26489
26649
  "use strict";
26490
26650
  Object.defineProperty(exports, "__esModule", { value: true });
26491
26651
  exports.TradutorReversoPython = void 0;
@@ -26558,7 +26718,7 @@ class TradutorReversoPython {
26558
26718
  }
26559
26719
  exports.TradutorReversoPython = TradutorReversoPython;
26560
26720
 
26561
- },{"./python/python3-lexer":164,"./python/python3-parser":165,"antlr4ts":287,"antlr4ts/tree/ParseTreeWalker":306}],172:[function(require,module,exports){
26721
+ },{"./python/python3-lexer":166,"./python/python3-parser":167,"antlr4ts":289,"antlr4ts/tree/ParseTreeWalker":308}],174:[function(require,module,exports){
26562
26722
  "use strict";
26563
26723
  /*!
26564
26724
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -26566,7 +26726,7 @@ exports.TradutorReversoPython = TradutorReversoPython;
26566
26726
  */
26567
26727
  Object.defineProperty(exports, "__esModule", { value: true });
26568
26728
 
26569
- },{}],173:[function(require,module,exports){
26729
+ },{}],175:[function(require,module,exports){
26570
26730
  "use strict";
26571
26731
  /*!
26572
26732
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -26574,7 +26734,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
26574
26734
  */
26575
26735
  Object.defineProperty(exports, "__esModule", { value: true });
26576
26736
 
26577
- },{}],174:[function(require,module,exports){
26737
+ },{}],176:[function(require,module,exports){
26578
26738
  "use strict";
26579
26739
  /*!
26580
26740
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -26736,7 +26896,7 @@ __decorate([
26736
26896
  ], ANTLRInputStream.prototype, "toString", null);
26737
26897
  exports.ANTLRInputStream = ANTLRInputStream;
26738
26898
 
26739
- },{"./Decorators":185,"./IntStream":191,"assert":328}],175:[function(require,module,exports){
26899
+ },{"./Decorators":187,"./IntStream":193,"assert":330}],177:[function(require,module,exports){
26740
26900
  "use strict";
26741
26901
  /*!
26742
26902
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -26819,7 +26979,7 @@ __decorate([
26819
26979
  ], BailErrorStrategy.prototype, "sync", null);
26820
26980
  exports.BailErrorStrategy = BailErrorStrategy;
26821
26981
 
26822
- },{"./Decorators":185,"./DefaultErrorStrategy":186,"./InputMismatchException":190,"./misc/ParseCancellationException":302}],176:[function(require,module,exports){
26982
+ },{"./Decorators":187,"./DefaultErrorStrategy":188,"./InputMismatchException":192,"./misc/ParseCancellationException":304}],178:[function(require,module,exports){
26823
26983
  "use strict";
26824
26984
  /*!
26825
26985
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -27309,7 +27469,7 @@ BufferedTokenStream = __decorate([
27309
27469
  ], BufferedTokenStream);
27310
27470
  exports.BufferedTokenStream = BufferedTokenStream;
27311
27471
 
27312
- },{"./CommonToken":181,"./Decorators":185,"./Lexer":193,"./Token":210,"./misc/Interval":297,"assert":328}],177:[function(require,module,exports){
27472
+ },{"./CommonToken":183,"./Decorators":187,"./Lexer":195,"./Token":212,"./misc/Interval":299,"assert":330}],179:[function(require,module,exports){
27313
27473
  "use strict";
27314
27474
  /*!
27315
27475
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -27317,7 +27477,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
27317
27477
  */
27318
27478
  Object.defineProperty(exports, "__esModule", { value: true });
27319
27479
 
27320
- },{}],178:[function(require,module,exports){
27480
+ },{}],180:[function(require,module,exports){
27321
27481
  "use strict";
27322
27482
  /*!
27323
27483
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -27451,7 +27611,7 @@ var CharStreams;
27451
27611
  // }
27452
27612
  })(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
27453
27613
 
27454
- },{"./CodePointBuffer":179,"./CodePointCharStream":180,"./IntStream":191}],179:[function(require,module,exports){
27614
+ },{"./CodePointBuffer":181,"./CodePointCharStream":182,"./IntStream":193}],181:[function(require,module,exports){
27455
27615
  "use strict";
27456
27616
  /*!
27457
27617
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -27686,7 +27846,7 @@ exports.CodePointBuffer = CodePointBuffer;
27686
27846
  CodePointBuffer.Builder = Builder;
27687
27847
  })(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
27688
27848
 
27689
- },{"./misc/Character":293,"assert":328}],180:[function(require,module,exports){
27849
+ },{"./misc/Character":295,"assert":330}],182:[function(require,module,exports){
27690
27850
  "use strict";
27691
27851
  /*!
27692
27852
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -27836,7 +27996,7 @@ __decorate([
27836
27996
  ], CodePointCharStream.prototype, "getText", null);
27837
27997
  exports.CodePointCharStream = CodePointCharStream;
27838
27998
 
27839
- },{"./Decorators":185,"./IntStream":191,"./misc/Interval":297,"assert":328}],181:[function(require,module,exports){
27999
+ },{"./Decorators":187,"./IntStream":193,"./misc/Interval":299,"assert":330}],183:[function(require,module,exports){
27840
28000
  "use strict";
27841
28001
  /*!
27842
28002
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -28066,7 +28226,7 @@ CommonToken = __decorate([
28066
28226
  ], CommonToken);
28067
28227
  exports.CommonToken = CommonToken;
28068
28228
 
28069
- },{"./Decorators":185,"./Token":210,"./misc/Interval":297}],182:[function(require,module,exports){
28229
+ },{"./Decorators":187,"./Token":212,"./misc/Interval":299}],184:[function(require,module,exports){
28070
28230
  "use strict";
28071
28231
  /*!
28072
28232
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -28130,7 +28290,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
28130
28290
  CommonTokenFactory.DEFAULT = new CommonTokenFactory();
28131
28291
  })(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
28132
28292
 
28133
- },{"./CommonToken":181,"./Decorators":185,"./misc/Interval":297}],183:[function(require,module,exports){
28293
+ },{"./CommonToken":183,"./Decorators":187,"./misc/Interval":299}],185:[function(require,module,exports){
28134
28294
  "use strict";
28135
28295
  /*!
28136
28296
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -28257,7 +28417,7 @@ CommonTokenStream = __decorate([
28257
28417
  ], CommonTokenStream);
28258
28418
  exports.CommonTokenStream = CommonTokenStream;
28259
28419
 
28260
- },{"./BufferedTokenStream":176,"./Decorators":185,"./Token":210}],184:[function(require,module,exports){
28420
+ },{"./BufferedTokenStream":178,"./Decorators":187,"./Token":212}],186:[function(require,module,exports){
28261
28421
  "use strict";
28262
28422
  /*!
28263
28423
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -28291,7 +28451,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
28291
28451
  */
28292
28452
  ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
28293
28453
 
28294
- },{}],185:[function(require,module,exports){
28454
+ },{}],187:[function(require,module,exports){
28295
28455
  "use strict";
28296
28456
  /*!
28297
28457
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -28318,7 +28478,7 @@ function SuppressWarnings(options) {
28318
28478
  }
28319
28479
  exports.SuppressWarnings = SuppressWarnings;
28320
28480
 
28321
- },{}],186:[function(require,module,exports){
28481
+ },{}],188:[function(require,module,exports){
28322
28482
  "use strict";
28323
28483
  /*!
28324
28484
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -29132,7 +29292,7 @@ __decorate([
29132
29292
  ], DefaultErrorStrategy.prototype, "consumeUntil", null);
29133
29293
  exports.DefaultErrorStrategy = DefaultErrorStrategy;
29134
29294
 
29135
- },{"./Decorators":185,"./FailedPredicateException":189,"./InputMismatchException":190,"./NoViableAltException":197,"./Token":210,"./atn/ATNState":224,"./atn/ATNStateType":225,"./atn/PredictionContext":265,"./misc/IntervalSet":298}],187:[function(require,module,exports){
29295
+ },{"./Decorators":187,"./FailedPredicateException":191,"./InputMismatchException":192,"./NoViableAltException":199,"./Token":212,"./atn/ATNState":226,"./atn/ATNStateType":227,"./atn/PredictionContext":267,"./misc/IntervalSet":300}],189:[function(require,module,exports){
29136
29296
  "use strict";
29137
29297
  /*!
29138
29298
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -29208,7 +29368,7 @@ var Dependents;
29208
29368
  Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
29209
29369
  })(Dependents = exports.Dependents || (exports.Dependents = {}));
29210
29370
 
29211
- },{}],188:[function(require,module,exports){
29371
+ },{}],190:[function(require,module,exports){
29212
29372
  "use strict";
29213
29373
  /*!
29214
29374
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -29356,7 +29516,7 @@ __decorate([
29356
29516
  ], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
29357
29517
  exports.DiagnosticErrorListener = DiagnosticErrorListener;
29358
29518
 
29359
- },{"./Decorators":185,"./misc/BitSet":292,"./misc/Interval":297}],189:[function(require,module,exports){
29519
+ },{"./Decorators":187,"./misc/BitSet":294,"./misc/Interval":299}],191:[function(require,module,exports){
29360
29520
  "use strict";
29361
29521
  /*!
29362
29522
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -29421,7 +29581,7 @@ FailedPredicateException = __decorate([
29421
29581
  ], FailedPredicateException);
29422
29582
  exports.FailedPredicateException = FailedPredicateException;
29423
29583
 
29424
- },{"./Decorators":185,"./RecognitionException":204,"./atn/PredicateTransition":264}],190:[function(require,module,exports){
29584
+ },{"./Decorators":187,"./RecognitionException":206,"./atn/PredicateTransition":266}],192:[function(require,module,exports){
29425
29585
  "use strict";
29426
29586
  /*!
29427
29587
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -29461,7 +29621,7 @@ InputMismatchException = __decorate([
29461
29621
  ], InputMismatchException);
29462
29622
  exports.InputMismatchException = InputMismatchException;
29463
29623
 
29464
- },{"./Decorators":185,"./RecognitionException":204}],191:[function(require,module,exports){
29624
+ },{"./Decorators":187,"./RecognitionException":206}],193:[function(require,module,exports){
29465
29625
  "use strict";
29466
29626
  /*!
29467
29627
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -29484,7 +29644,7 @@ var IntStream;
29484
29644
  IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
29485
29645
  })(IntStream = exports.IntStream || (exports.IntStream = {}));
29486
29646
 
29487
- },{}],192:[function(require,module,exports){
29647
+ },{}],194:[function(require,module,exports){
29488
29648
  "use strict";
29489
29649
  /*!
29490
29650
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -29531,7 +29691,7 @@ __decorate([
29531
29691
  ], InterpreterRuleContext.prototype, "ruleIndex", null);
29532
29692
  exports.InterpreterRuleContext = InterpreterRuleContext;
29533
29693
 
29534
- },{"./Decorators":185,"./ParserRuleContext":201}],193:[function(require,module,exports){
29694
+ },{"./Decorators":187,"./ParserRuleContext":203}],195:[function(require,module,exports){
29535
29695
  "use strict";
29536
29696
  /*!
29537
29697
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -29867,7 +30027,7 @@ __decorate([
29867
30027
  ], Lexer.prototype, "charPositionInLine", null);
29868
30028
  exports.Lexer = Lexer;
29869
30029
 
29870
- },{"./CommonTokenFactory":182,"./Decorators":185,"./IntStream":191,"./LexerNoViableAltException":195,"./Recognizer":205,"./Token":210,"./atn/LexerATNSimulator":243,"./misc/IntegerStack":296,"./misc/Interval":297}],194:[function(require,module,exports){
30030
+ },{"./CommonTokenFactory":184,"./Decorators":187,"./IntStream":193,"./LexerNoViableAltException":197,"./Recognizer":207,"./Token":212,"./atn/LexerATNSimulator":245,"./misc/IntegerStack":298,"./misc/Interval":299}],196:[function(require,module,exports){
29871
30031
  "use strict";
29872
30032
  /*!
29873
30033
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -29947,7 +30107,7 @@ LexerInterpreter = __decorate([
29947
30107
  ], LexerInterpreter);
29948
30108
  exports.LexerInterpreter = LexerInterpreter;
29949
30109
 
29950
- },{"./Decorators":185,"./Lexer":193,"./atn/LexerATNSimulator":243}],195:[function(require,module,exports){
30110
+ },{"./Decorators":187,"./Lexer":195,"./atn/LexerATNSimulator":245}],197:[function(require,module,exports){
29951
30111
  "use strict";
29952
30112
  /*!
29953
30113
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -30004,7 +30164,7 @@ LexerNoViableAltException = __decorate([
30004
30164
  ], LexerNoViableAltException);
30005
30165
  exports.LexerNoViableAltException = LexerNoViableAltException;
30006
30166
 
30007
- },{"./Decorators":185,"./RecognitionException":204,"./misc/Interval":297,"./misc/Utils":304}],196:[function(require,module,exports){
30167
+ },{"./Decorators":187,"./RecognitionException":206,"./misc/Interval":299,"./misc/Utils":306}],198:[function(require,module,exports){
30008
30168
  "use strict";
30009
30169
  /*!
30010
30170
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -30214,7 +30374,7 @@ ListTokenSource = __decorate([
30214
30374
  ], ListTokenSource);
30215
30375
  exports.ListTokenSource = ListTokenSource;
30216
30376
 
30217
- },{"./CommonTokenFactory":182,"./Decorators":185,"./Token":210}],197:[function(require,module,exports){
30377
+ },{"./CommonTokenFactory":184,"./Decorators":187,"./Token":212}],199:[function(require,module,exports){
30218
30378
  "use strict";
30219
30379
  /*!
30220
30380
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -30269,7 +30429,7 @@ __decorate([
30269
30429
  ], NoViableAltException.prototype, "_startToken", void 0);
30270
30430
  exports.NoViableAltException = NoViableAltException;
30271
30431
 
30272
- },{"./Decorators":185,"./Parser":198,"./RecognitionException":204}],198:[function(require,module,exports){
30432
+ },{"./Decorators":187,"./Parser":200,"./RecognitionException":206}],200:[function(require,module,exports){
30273
30433
  (function (process){(function (){
30274
30434
  "use strict";
30275
30435
  /*!
@@ -31115,7 +31275,7 @@ __decorate([
31115
31275
  exports.Parser = Parser;
31116
31276
 
31117
31277
  }).call(this)}).call(this,require('_process'))
31118
- },{"./Decorators":185,"./DefaultErrorStrategy":186,"./Lexer":193,"./ProxyParserErrorListener":203,"./Recognizer":205,"./Token":210,"./atn/ATNDeserializationOptions":221,"./atn/ATNDeserializer":222,"./atn/ParseInfo":258,"./atn/ParserATNSimulator":259,"./atn/ProfilingATNSimulator":268,"./misc/IntegerStack":296,"./misc/Utils":304,"./tree/ErrorNode":305,"./tree/TerminalNode":308,"./tree/pattern/ParseTreePatternMatcher":313,"_process":376}],199:[function(require,module,exports){
31278
+ },{"./Decorators":187,"./DefaultErrorStrategy":188,"./Lexer":195,"./ProxyParserErrorListener":205,"./Recognizer":207,"./Token":212,"./atn/ATNDeserializationOptions":223,"./atn/ATNDeserializer":224,"./atn/ParseInfo":260,"./atn/ParserATNSimulator":261,"./atn/ProfilingATNSimulator":270,"./misc/IntegerStack":298,"./misc/Utils":306,"./tree/ErrorNode":307,"./tree/TerminalNode":310,"./tree/pattern/ParseTreePatternMatcher":315,"_process":378}],201:[function(require,module,exports){
31119
31279
  "use strict";
31120
31280
  /*!
31121
31281
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -31123,7 +31283,7 @@ exports.Parser = Parser;
31123
31283
  */
31124
31284
  Object.defineProperty(exports, "__esModule", { value: true });
31125
31285
 
31126
- },{}],200:[function(require,module,exports){
31286
+ },{}],202:[function(require,module,exports){
31127
31287
  "use strict";
31128
31288
  /*!
31129
31289
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -31531,7 +31691,7 @@ ParserInterpreter = __decorate([
31531
31691
  ], ParserInterpreter);
31532
31692
  exports.ParserInterpreter = ParserInterpreter;
31533
31693
 
31534
- },{"./Decorators":185,"./FailedPredicateException":189,"./InputMismatchException":190,"./InterpreterRuleContext":192,"./Parser":198,"./RecognitionException":204,"./Token":210,"./atn/ATNState":224,"./atn/ATNStateType":225,"./atn/LoopEndState":255,"./atn/ParserATNSimulator":259,"./atn/StarLoopEntryState":277,"./misc/BitSet":292}],201:[function(require,module,exports){
31694
+ },{"./Decorators":187,"./FailedPredicateException":191,"./InputMismatchException":192,"./InterpreterRuleContext":194,"./Parser":200,"./RecognitionException":206,"./Token":212,"./atn/ATNState":226,"./atn/ATNStateType":227,"./atn/LoopEndState":257,"./atn/ParserATNSimulator":261,"./atn/StarLoopEntryState":279,"./misc/BitSet":294}],203:[function(require,module,exports){
31535
31695
  "use strict";
31536
31696
  /*!
31537
31697
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -31832,7 +31992,7 @@ __decorate([
31832
31992
  ], ParserRuleContext.prototype, "sourceInterval", null);
31833
31993
  exports.ParserRuleContext = ParserRuleContext;
31834
31994
 
31835
- },{"./Decorators":185,"./RuleContext":206,"./misc/Interval":297,"./tree/ErrorNode":305,"./tree/TerminalNode":308}],202:[function(require,module,exports){
31995
+ },{"./Decorators":187,"./RuleContext":208,"./misc/Interval":299,"./tree/ErrorNode":307,"./tree/TerminalNode":310}],204:[function(require,module,exports){
31836
31996
  "use strict";
31837
31997
  /*!
31838
31998
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -31882,7 +32042,7 @@ __decorate([
31882
32042
  ], ProxyErrorListener.prototype, "syntaxError", null);
31883
32043
  exports.ProxyErrorListener = ProxyErrorListener;
31884
32044
 
31885
- },{"./Decorators":185}],203:[function(require,module,exports){
32045
+ },{"./Decorators":187}],205:[function(require,module,exports){
31886
32046
  "use strict";
31887
32047
  /*!
31888
32048
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -31941,7 +32101,7 @@ __decorate([
31941
32101
  ], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
31942
32102
  exports.ProxyParserErrorListener = ProxyParserErrorListener;
31943
32103
 
31944
- },{"./Decorators":185,"./ProxyErrorListener":202}],204:[function(require,module,exports){
32104
+ },{"./Decorators":187,"./ProxyErrorListener":204}],206:[function(require,module,exports){
31945
32105
  "use strict";
31946
32106
  /*!
31947
32107
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32046,7 +32206,7 @@ class RecognitionException extends Error {
32046
32206
  }
32047
32207
  exports.RecognitionException = RecognitionException;
32048
32208
 
32049
- },{}],205:[function(require,module,exports){
32209
+ },{}],207:[function(require,module,exports){
32050
32210
  "use strict";
32051
32211
  /*!
32052
32212
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32265,7 +32425,7 @@ __decorate([
32265
32425
  ], Recognizer.prototype, "getErrorListeners", null);
32266
32426
  exports.Recognizer = Recognizer;
32267
32427
 
32268
- },{"./ConsoleErrorListener":184,"./Decorators":185,"./ProxyErrorListener":202,"./Token":210,"./misc/Utils":304}],206:[function(require,module,exports){
32428
+ },{"./ConsoleErrorListener":186,"./Decorators":187,"./ProxyErrorListener":204,"./Token":212,"./misc/Utils":306}],208:[function(require,module,exports){
32269
32429
  "use strict";
32270
32430
  /*!
32271
32431
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32482,7 +32642,7 @@ __decorate([
32482
32642
  ], RuleContext.prototype, "toStringTree", null);
32483
32643
  exports.RuleContext = RuleContext;
32484
32644
 
32485
- },{"./Decorators":185,"./ParserRuleContext":201,"./Recognizer":205,"./atn/ATN":218,"./misc/Interval":297,"./tree/RuleNode":307,"./tree/Trees":309}],207:[function(require,module,exports){
32645
+ },{"./Decorators":187,"./ParserRuleContext":203,"./Recognizer":207,"./atn/ATN":220,"./misc/Interval":299,"./tree/RuleNode":309,"./tree/Trees":311}],209:[function(require,module,exports){
32486
32646
  "use strict";
32487
32647
  /*!
32488
32648
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32533,7 +32693,7 @@ __decorate([
32533
32693
  ], RuleContextWithAltNum.prototype, "altNumber", null);
32534
32694
  exports.RuleContextWithAltNum = RuleContextWithAltNum;
32535
32695
 
32536
- },{"./Decorators":185,"./ParserRuleContext":201,"./atn/ATN":218}],208:[function(require,module,exports){
32696
+ },{"./Decorators":187,"./ParserRuleContext":203,"./atn/ATN":220}],210:[function(require,module,exports){
32537
32697
  "use strict";
32538
32698
  /*!
32539
32699
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32556,7 +32716,7 @@ function RuleDependency(dependency) {
32556
32716
  }
32557
32717
  exports.RuleDependency = RuleDependency;
32558
32718
 
32559
- },{}],209:[function(require,module,exports){
32719
+ },{}],211:[function(require,module,exports){
32560
32720
  "use strict";
32561
32721
  /*!
32562
32722
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32575,7 +32735,7 @@ function RuleVersion(version) {
32575
32735
  }
32576
32736
  exports.RuleVersion = RuleVersion;
32577
32737
 
32578
- },{}],210:[function(require,module,exports){
32738
+ },{}],212:[function(require,module,exports){
32579
32739
  "use strict";
32580
32740
  /*!
32581
32741
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32615,7 +32775,7 @@ var Token;
32615
32775
  Token.MIN_USER_CHANNEL_VALUE = 2;
32616
32776
  })(Token = exports.Token || (exports.Token = {}));
32617
32777
 
32618
- },{"./IntStream":191}],211:[function(require,module,exports){
32778
+ },{"./IntStream":193}],213:[function(require,module,exports){
32619
32779
  "use strict";
32620
32780
  /*!
32621
32781
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32623,7 +32783,7 @@ var Token;
32623
32783
  */
32624
32784
  Object.defineProperty(exports, "__esModule", { value: true });
32625
32785
 
32626
- },{}],212:[function(require,module,exports){
32786
+ },{}],214:[function(require,module,exports){
32627
32787
  "use strict";
32628
32788
  /*!
32629
32789
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32631,7 +32791,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
32631
32791
  */
32632
32792
  Object.defineProperty(exports, "__esModule", { value: true });
32633
32793
 
32634
- },{}],213:[function(require,module,exports){
32794
+ },{}],215:[function(require,module,exports){
32635
32795
  "use strict";
32636
32796
  /*!
32637
32797
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32639,7 +32799,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
32639
32799
  */
32640
32800
  Object.defineProperty(exports, "__esModule", { value: true });
32641
32801
 
32642
- },{}],214:[function(require,module,exports){
32802
+ },{}],216:[function(require,module,exports){
32643
32803
  "use strict";
32644
32804
  /*!
32645
32805
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33147,7 +33307,7 @@ __decorate([
33147
33307
  Decorators_1.Override
33148
33308
  ], ReplaceOp.prototype, "toString", null);
33149
33309
 
33150
- },{"./Decorators":185,"./Token":210,"./misc/Interval":297}],215:[function(require,module,exports){
33310
+ },{"./Decorators":187,"./Token":212,"./misc/Interval":299}],217:[function(require,module,exports){
33151
33311
  "use strict";
33152
33312
  /*!
33153
33313
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33155,7 +33315,7 @@ __decorate([
33155
33315
  */
33156
33316
  Object.defineProperty(exports, "__esModule", { value: true });
33157
33317
 
33158
- },{}],216:[function(require,module,exports){
33318
+ },{}],218:[function(require,module,exports){
33159
33319
  "use strict";
33160
33320
  /*!
33161
33321
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33275,7 +33435,7 @@ __decorate([
33275
33435
  ], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
33276
33436
  exports.VocabularyImpl = VocabularyImpl;
33277
33437
 
33278
- },{"./Decorators":185,"./Token":210}],217:[function(require,module,exports){
33438
+ },{"./Decorators":187,"./Token":212}],219:[function(require,module,exports){
33279
33439
  "use strict";
33280
33440
  /*!
33281
33441
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33283,7 +33443,7 @@ exports.VocabularyImpl = VocabularyImpl;
33283
33443
  */
33284
33444
  Object.defineProperty(exports, "__esModule", { value: true });
33285
33445
 
33286
- },{}],218:[function(require,module,exports){
33446
+ },{}],220:[function(require,module,exports){
33287
33447
  "use strict";
33288
33448
  /*!
33289
33449
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33505,7 +33665,7 @@ exports.ATN = ATN;
33505
33665
  })(ATN = exports.ATN || (exports.ATN = {}));
33506
33666
  exports.ATN = ATN;
33507
33667
 
33508
- },{"../Decorators":185,"../Token":210,"../dfa/DFA":283,"../misc/Array2DHashMap":288,"../misc/IntervalSet":298,"../misc/ObjectEqualityComparator":301,"./InvalidState":241,"./LL1Analyzer":242,"./PredictionContext":265,"assert":328}],219:[function(require,module,exports){
33668
+ },{"../Decorators":187,"../Token":212,"../dfa/DFA":285,"../misc/Array2DHashMap":290,"../misc/IntervalSet":300,"../misc/ObjectEqualityComparator":303,"./InvalidState":243,"./LL1Analyzer":244,"./PredictionContext":267,"assert":330}],221:[function(require,module,exports){
33509
33669
  "use strict";
33510
33670
  /*!
33511
33671
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34030,7 +34190,7 @@ ActionSemanticContextATNConfig = __decorate([
34030
34190
  __param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
34031
34191
  ], ActionSemanticContextATNConfig);
34032
34192
 
34033
- },{"../Decorators":185,"../misc/Array2DHashMap":288,"../misc/MurmurHash":300,"../misc/ObjectEqualityComparator":301,"./DecisionState":238,"./PredictionContext":265,"./SemanticContext":273,"assert":328}],220:[function(require,module,exports){
34193
+ },{"../Decorators":187,"../misc/Array2DHashMap":290,"../misc/MurmurHash":302,"../misc/ObjectEqualityComparator":303,"./DecisionState":240,"./PredictionContext":267,"./SemanticContext":275,"assert":330}],222:[function(require,module,exports){
34034
34194
  "use strict";
34035
34195
  /*!
34036
34196
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34477,7 +34637,7 @@ __decorate([
34477
34637
  ], ATNConfigSet.prototype, "hashCode", null);
34478
34638
  exports.ATNConfigSet = ATNConfigSet;
34479
34639
 
34480
- },{"../Decorators":185,"../misc/Array2DHashMap":288,"../misc/Array2DHashSet":289,"../misc/ArrayEqualityComparator":290,"../misc/BitSet":292,"../misc/ObjectEqualityComparator":301,"../misc/Utils":304,"./ATN":218,"./ATNConfig":219,"./PredictionContext":265,"./PredictionContextCache":266,"./SemanticContext":273,"assert":328}],221:[function(require,module,exports){
34640
+ },{"../Decorators":187,"../misc/Array2DHashMap":290,"../misc/Array2DHashSet":291,"../misc/ArrayEqualityComparator":292,"../misc/BitSet":294,"../misc/ObjectEqualityComparator":303,"../misc/Utils":306,"./ATN":220,"./ATNConfig":221,"./PredictionContext":267,"./PredictionContextCache":268,"./SemanticContext":275,"assert":330}],223:[function(require,module,exports){
34481
34641
  "use strict";
34482
34642
  /*!
34483
34643
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34556,7 +34716,7 @@ __decorate([
34556
34716
  ], ATNDeserializationOptions, "defaultOptions", null);
34557
34717
  exports.ATNDeserializationOptions = ATNDeserializationOptions;
34558
34718
 
34559
- },{"../Decorators":185}],222:[function(require,module,exports){
34719
+ },{"../Decorators":187}],224:[function(require,module,exports){
34560
34720
  "use strict";
34561
34721
  /*!
34562
34722
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35643,7 +35803,7 @@ __decorate([
35643
35803
  ], ATNDeserializer.prototype, "edgeFactory", null);
35644
35804
  exports.ATNDeserializer = ATNDeserializer;
35645
35805
 
35646
- },{"../Decorators":185,"../Token":210,"../dfa/DFA":283,"../misc/Array2DHashSet":289,"../misc/BitSet":292,"../misc/IntervalSet":298,"../misc/UUID":303,"./ATN":218,"./ATNDeserializationOptions":221,"./ATNStateType":225,"./ActionTransition":227,"./AtomTransition":229,"./BasicBlockStartState":230,"./BasicState":231,"./BlockEndState":232,"./BlockStartState":233,"./DecisionState":238,"./EpsilonTransition":239,"./InvalidState":241,"./LexerChannelAction":245,"./LexerCustomAction":246,"./LexerModeAction":248,"./LexerMoreAction":249,"./LexerPopModeAction":250,"./LexerPushModeAction":251,"./LexerSkipAction":252,"./LexerTypeAction":253,"./LoopEndState":255,"./NotSetTransition":256,"./ParserATNSimulator":259,"./PlusBlockStartState":260,"./PlusLoopbackState":261,"./PrecedencePredicateTransition":262,"./PredicateTransition":264,"./RangeTransition":269,"./RuleStartState":270,"./RuleStopState":271,"./RuleTransition":272,"./SetTransition":274,"./StarBlockStartState":276,"./StarLoopEntryState":277,"./StarLoopbackState":278,"./TokensStartState":279,"./WildcardTransition":281}],223:[function(require,module,exports){
35806
+ },{"../Decorators":187,"../Token":212,"../dfa/DFA":285,"../misc/Array2DHashSet":291,"../misc/BitSet":294,"../misc/IntervalSet":300,"../misc/UUID":305,"./ATN":220,"./ATNDeserializationOptions":223,"./ATNStateType":227,"./ActionTransition":229,"./AtomTransition":231,"./BasicBlockStartState":232,"./BasicState":233,"./BlockEndState":234,"./BlockStartState":235,"./DecisionState":240,"./EpsilonTransition":241,"./InvalidState":243,"./LexerChannelAction":247,"./LexerCustomAction":248,"./LexerModeAction":250,"./LexerMoreAction":251,"./LexerPopModeAction":252,"./LexerPushModeAction":253,"./LexerSkipAction":254,"./LexerTypeAction":255,"./LoopEndState":257,"./NotSetTransition":258,"./ParserATNSimulator":261,"./PlusBlockStartState":262,"./PlusLoopbackState":263,"./PrecedencePredicateTransition":264,"./PredicateTransition":266,"./RangeTransition":271,"./RuleStartState":272,"./RuleStopState":273,"./RuleTransition":274,"./SetTransition":276,"./StarBlockStartState":278,"./StarLoopEntryState":279,"./StarLoopbackState":280,"./TokensStartState":281,"./WildcardTransition":283}],225:[function(require,module,exports){
35647
35807
  "use strict";
35648
35808
  /*!
35649
35809
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35707,7 +35867,7 @@ exports.ATNSimulator = ATNSimulator;
35707
35867
  })(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
35708
35868
  exports.ATNSimulator = ATNSimulator;
35709
35869
 
35710
- },{"../Decorators":185,"../dfa/DFAState":285,"./ATNConfigSet":220,"./PredictionContext":265}],224:[function(require,module,exports){
35870
+ },{"../Decorators":187,"../dfa/DFAState":287,"./ATNConfigSet":222,"./PredictionContext":267}],226:[function(require,module,exports){
35711
35871
  "use strict";
35712
35872
  /*!
35713
35873
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35894,7 +36054,7 @@ exports.ATNState = ATNState;
35894
36054
  ATNState.INVALID_STATE_NUMBER = -1;
35895
36055
  })(ATNState = exports.ATNState || (exports.ATNState = {}));
35896
36056
 
35897
- },{"../Decorators":185}],225:[function(require,module,exports){
36057
+ },{"../Decorators":187}],227:[function(require,module,exports){
35898
36058
  "use strict";
35899
36059
  /*!
35900
36060
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35920,7 +36080,7 @@ var ATNStateType;
35920
36080
  ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
35921
36081
  })(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
35922
36082
 
35923
- },{}],226:[function(require,module,exports){
36083
+ },{}],228:[function(require,module,exports){
35924
36084
  "use strict";
35925
36085
  /*!
35926
36086
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35940,7 +36100,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
35940
36100
  }
35941
36101
  exports.AbstractPredicateTransition = AbstractPredicateTransition;
35942
36102
 
35943
- },{"./Transition":280}],227:[function(require,module,exports){
36103
+ },{"./Transition":282}],229:[function(require,module,exports){
35944
36104
  "use strict";
35945
36105
  /*!
35946
36106
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35996,7 +36156,7 @@ ActionTransition = __decorate([
35996
36156
  ], ActionTransition);
35997
36157
  exports.ActionTransition = ActionTransition;
35998
36158
 
35999
- },{"../Decorators":185,"./Transition":280}],228:[function(require,module,exports){
36159
+ },{"../Decorators":187,"./Transition":282}],230:[function(require,module,exports){
36000
36160
  "use strict";
36001
36161
  /*!
36002
36162
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36083,7 +36243,7 @@ AmbiguityInfo = __decorate([
36083
36243
  ], AmbiguityInfo);
36084
36244
  exports.AmbiguityInfo = AmbiguityInfo;
36085
36245
 
36086
- },{"../Decorators":185,"./DecisionEventInfo":236}],229:[function(require,module,exports){
36246
+ },{"../Decorators":187,"./DecisionEventInfo":238}],231:[function(require,module,exports){
36087
36247
  "use strict";
36088
36248
  /*!
36089
36249
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36141,7 +36301,7 @@ AtomTransition = __decorate([
36141
36301
  ], AtomTransition);
36142
36302
  exports.AtomTransition = AtomTransition;
36143
36303
 
36144
- },{"../Decorators":185,"../misc/IntervalSet":298,"./Transition":280}],230:[function(require,module,exports){
36304
+ },{"../Decorators":187,"../misc/IntervalSet":300,"./Transition":282}],232:[function(require,module,exports){
36145
36305
  "use strict";
36146
36306
  /*!
36147
36307
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36173,7 +36333,7 @@ __decorate([
36173
36333
  ], BasicBlockStartState.prototype, "stateType", null);
36174
36334
  exports.BasicBlockStartState = BasicBlockStartState;
36175
36335
 
36176
- },{"../Decorators":185,"./ATNStateType":225,"./BlockStartState":233}],231:[function(require,module,exports){
36336
+ },{"../Decorators":187,"./ATNStateType":227,"./BlockStartState":235}],233:[function(require,module,exports){
36177
36337
  "use strict";
36178
36338
  /*!
36179
36339
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36205,7 +36365,7 @@ __decorate([
36205
36365
  ], BasicState.prototype, "stateType", null);
36206
36366
  exports.BasicState = BasicState;
36207
36367
 
36208
- },{"../Decorators":185,"./ATNState":224,"./ATNStateType":225}],232:[function(require,module,exports){
36368
+ },{"../Decorators":187,"./ATNState":226,"./ATNStateType":227}],234:[function(require,module,exports){
36209
36369
  "use strict";
36210
36370
  /*!
36211
36371
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36234,7 +36394,7 @@ __decorate([
36234
36394
  ], BlockEndState.prototype, "stateType", null);
36235
36395
  exports.BlockEndState = BlockEndState;
36236
36396
 
36237
- },{"../Decorators":185,"./ATNState":224,"./ATNStateType":225}],233:[function(require,module,exports){
36397
+ },{"../Decorators":187,"./ATNState":226,"./ATNStateType":227}],235:[function(require,module,exports){
36238
36398
  "use strict";
36239
36399
  /*!
36240
36400
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36248,7 +36408,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
36248
36408
  }
36249
36409
  exports.BlockStartState = BlockStartState;
36250
36410
 
36251
- },{"./DecisionState":238}],234:[function(require,module,exports){
36411
+ },{"./DecisionState":240}],236:[function(require,module,exports){
36252
36412
  "use strict";
36253
36413
  /*!
36254
36414
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36318,7 +36478,7 @@ __decorate([
36318
36478
  ], ConflictInfo.prototype, "hashCode", null);
36319
36479
  exports.ConflictInfo = ConflictInfo;
36320
36480
 
36321
- },{"../Decorators":185,"../misc/Utils":304}],235:[function(require,module,exports){
36481
+ },{"../Decorators":187,"../misc/Utils":306}],237:[function(require,module,exports){
36322
36482
  "use strict";
36323
36483
  /*!
36324
36484
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36378,7 +36538,7 @@ ContextSensitivityInfo = __decorate([
36378
36538
  ], ContextSensitivityInfo);
36379
36539
  exports.ContextSensitivityInfo = ContextSensitivityInfo;
36380
36540
 
36381
- },{"../Decorators":185,"./DecisionEventInfo":236}],236:[function(require,module,exports){
36541
+ },{"../Decorators":187,"./DecisionEventInfo":238}],238:[function(require,module,exports){
36382
36542
  "use strict";
36383
36543
  /*!
36384
36544
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36430,7 +36590,7 @@ DecisionEventInfo = __decorate([
36430
36590
  ], DecisionEventInfo);
36431
36591
  exports.DecisionEventInfo = DecisionEventInfo;
36432
36592
 
36433
- },{"../Decorators":185}],237:[function(require,module,exports){
36593
+ },{"../Decorators":187}],239:[function(require,module,exports){
36434
36594
  "use strict";
36435
36595
  /*!
36436
36596
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36643,7 +36803,7 @@ __decorate([
36643
36803
  ], DecisionInfo.prototype, "toString", null);
36644
36804
  exports.DecisionInfo = DecisionInfo;
36645
36805
 
36646
- },{"../Decorators":185}],238:[function(require,module,exports){
36806
+ },{"../Decorators":187}],240:[function(require,module,exports){
36647
36807
  "use strict";
36648
36808
  /*!
36649
36809
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36663,7 +36823,7 @@ class DecisionState extends ATNState_1.ATNState {
36663
36823
  }
36664
36824
  exports.DecisionState = DecisionState;
36665
36825
 
36666
- },{"./ATNState":224}],239:[function(require,module,exports){
36826
+ },{"./ATNState":226}],241:[function(require,module,exports){
36667
36827
  "use strict";
36668
36828
  /*!
36669
36829
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36729,7 +36889,7 @@ EpsilonTransition = __decorate([
36729
36889
  ], EpsilonTransition);
36730
36890
  exports.EpsilonTransition = EpsilonTransition;
36731
36891
 
36732
- },{"../Decorators":185,"./Transition":280}],240:[function(require,module,exports){
36892
+ },{"../Decorators":187,"./Transition":282}],242:[function(require,module,exports){
36733
36893
  "use strict";
36734
36894
  /*!
36735
36895
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36782,7 +36942,7 @@ ErrorInfo = __decorate([
36782
36942
  ], ErrorInfo);
36783
36943
  exports.ErrorInfo = ErrorInfo;
36784
36944
 
36785
- },{"../Decorators":185,"./DecisionEventInfo":236}],241:[function(require,module,exports){
36945
+ },{"../Decorators":187,"./DecisionEventInfo":238}],243:[function(require,module,exports){
36786
36946
  "use strict";
36787
36947
  /*!
36788
36948
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36813,7 +36973,7 @@ __decorate([
36813
36973
  ], InvalidState.prototype, "stateType", null);
36814
36974
  exports.InvalidState = InvalidState;
36815
36975
 
36816
- },{"../Decorators":185,"./ATNStateType":225,"./BasicState":231}],242:[function(require,module,exports){
36976
+ },{"../Decorators":187,"./ATNStateType":227,"./BasicState":233}],244:[function(require,module,exports){
36817
36977
  "use strict";
36818
36978
  /*!
36819
36979
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37035,7 +37195,7 @@ LL1Analyzer = __decorate([
37035
37195
  ], LL1Analyzer);
37036
37196
  exports.LL1Analyzer = LL1Analyzer;
37037
37197
 
37038
- },{"../Decorators":185,"../Token":210,"../misc/Array2DHashSet":289,"../misc/BitSet":292,"../misc/IntervalSet":298,"../misc/ObjectEqualityComparator":301,"./ATNConfig":219,"./AbstractPredicateTransition":226,"./NotSetTransition":256,"./PredictionContext":265,"./RuleStopState":271,"./RuleTransition":272,"./WildcardTransition":281}],243:[function(require,module,exports){
37198
+ },{"../Decorators":187,"../Token":212,"../misc/Array2DHashSet":291,"../misc/BitSet":294,"../misc/IntervalSet":300,"../misc/ObjectEqualityComparator":303,"./ATNConfig":221,"./AbstractPredicateTransition":228,"./NotSetTransition":258,"./PredictionContext":267,"./RuleStopState":273,"./RuleTransition":274,"./WildcardTransition":283}],245:[function(require,module,exports){
37039
37199
  "use strict";
37040
37200
  /*!
37041
37201
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37752,7 +37912,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
37752
37912
  })(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
37753
37913
  exports.LexerATNSimulator = LexerATNSimulator;
37754
37914
 
37755
- },{"../Decorators":185,"../IntStream":191,"../Lexer":193,"../LexerNoViableAltException":195,"../Token":210,"../dfa/AcceptStateInfo":282,"../dfa/DFAState":285,"../misc/Interval":297,"./ATN":218,"./ATNConfig":219,"./ATNConfigSet":220,"./ATNSimulator":223,"./LexerActionExecutor":244,"./OrderedATNConfigSet":257,"./PredictionContext":265,"./RuleStopState":271,"assert":328}],244:[function(require,module,exports){
37915
+ },{"../Decorators":187,"../IntStream":193,"../Lexer":195,"../LexerNoViableAltException":197,"../Token":212,"../dfa/AcceptStateInfo":284,"../dfa/DFAState":287,"../misc/Interval":299,"./ATN":220,"./ATNConfig":221,"./ATNConfigSet":222,"./ATNSimulator":225,"./LexerActionExecutor":246,"./OrderedATNConfigSet":259,"./PredictionContext":267,"./RuleStopState":273,"assert":330}],246:[function(require,module,exports){
37756
37916
  "use strict";
37757
37917
  /*!
37758
37918
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37953,7 +38113,7 @@ LexerActionExecutor = __decorate([
37953
38113
  ], LexerActionExecutor);
37954
38114
  exports.LexerActionExecutor = LexerActionExecutor;
37955
38115
 
37956
- },{"../Decorators":185,"../misc/ArrayEqualityComparator":290,"../misc/MurmurHash":300,"./LexerIndexedCustomAction":247}],245:[function(require,module,exports){
38116
+ },{"../Decorators":187,"../misc/ArrayEqualityComparator":292,"../misc/MurmurHash":302,"./LexerIndexedCustomAction":249}],247:[function(require,module,exports){
37957
38117
  "use strict";
37958
38118
  /*!
37959
38119
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38058,7 +38218,7 @@ __decorate([
38058
38218
  ], LexerChannelAction.prototype, "toString", null);
38059
38219
  exports.LexerChannelAction = LexerChannelAction;
38060
38220
 
38061
- },{"../Decorators":185,"../misc/MurmurHash":300}],246:[function(require,module,exports){
38221
+ },{"../Decorators":187,"../misc/MurmurHash":302}],248:[function(require,module,exports){
38062
38222
  "use strict";
38063
38223
  /*!
38064
38224
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38187,7 +38347,7 @@ __decorate([
38187
38347
  ], LexerCustomAction.prototype, "equals", null);
38188
38348
  exports.LexerCustomAction = LexerCustomAction;
38189
38349
 
38190
- },{"../Decorators":185,"../misc/MurmurHash":300}],247:[function(require,module,exports){
38350
+ },{"../Decorators":187,"../misc/MurmurHash":302}],249:[function(require,module,exports){
38191
38351
  "use strict";
38192
38352
  /*!
38193
38353
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38322,7 +38482,7 @@ LexerIndexedCustomAction = __decorate([
38322
38482
  ], LexerIndexedCustomAction);
38323
38483
  exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
38324
38484
 
38325
- },{"../Decorators":185,"../misc/MurmurHash":300}],248:[function(require,module,exports){
38485
+ },{"../Decorators":187,"../misc/MurmurHash":302}],250:[function(require,module,exports){
38326
38486
  "use strict";
38327
38487
  /*!
38328
38488
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38427,7 +38587,7 @@ __decorate([
38427
38587
  ], LexerModeAction.prototype, "toString", null);
38428
38588
  exports.LexerModeAction = LexerModeAction;
38429
38589
 
38430
- },{"../Decorators":185,"../misc/MurmurHash":300}],249:[function(require,module,exports){
38590
+ },{"../Decorators":187,"../misc/MurmurHash":302}],251:[function(require,module,exports){
38431
38591
  "use strict";
38432
38592
  /*!
38433
38593
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38523,7 +38683,7 @@ exports.LexerMoreAction = LexerMoreAction;
38523
38683
  LexerMoreAction.INSTANCE = new LexerMoreAction();
38524
38684
  })(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
38525
38685
 
38526
- },{"../Decorators":185,"../misc/MurmurHash":300}],250:[function(require,module,exports){
38686
+ },{"../Decorators":187,"../misc/MurmurHash":302}],252:[function(require,module,exports){
38527
38687
  "use strict";
38528
38688
  /*!
38529
38689
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38619,7 +38779,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
38619
38779
  LexerPopModeAction.INSTANCE = new LexerPopModeAction();
38620
38780
  })(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
38621
38781
 
38622
- },{"../Decorators":185,"../misc/MurmurHash":300}],251:[function(require,module,exports){
38782
+ },{"../Decorators":187,"../misc/MurmurHash":302}],253:[function(require,module,exports){
38623
38783
  "use strict";
38624
38784
  /*!
38625
38785
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38724,7 +38884,7 @@ __decorate([
38724
38884
  ], LexerPushModeAction.prototype, "toString", null);
38725
38885
  exports.LexerPushModeAction = LexerPushModeAction;
38726
38886
 
38727
- },{"../Decorators":185,"../misc/MurmurHash":300}],252:[function(require,module,exports){
38887
+ },{"../Decorators":187,"../misc/MurmurHash":302}],254:[function(require,module,exports){
38728
38888
  "use strict";
38729
38889
  /*!
38730
38890
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38820,7 +38980,7 @@ exports.LexerSkipAction = LexerSkipAction;
38820
38980
  LexerSkipAction.INSTANCE = new LexerSkipAction();
38821
38981
  })(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
38822
38982
 
38823
- },{"../Decorators":185,"../misc/MurmurHash":300}],253:[function(require,module,exports){
38983
+ },{"../Decorators":187,"../misc/MurmurHash":302}],255:[function(require,module,exports){
38824
38984
  "use strict";
38825
38985
  /*!
38826
38986
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38924,7 +39084,7 @@ __decorate([
38924
39084
  ], LexerTypeAction.prototype, "toString", null);
38925
39085
  exports.LexerTypeAction = LexerTypeAction;
38926
39086
 
38927
- },{"../Decorators":185,"../misc/MurmurHash":300}],254:[function(require,module,exports){
39087
+ },{"../Decorators":187,"../misc/MurmurHash":302}],256:[function(require,module,exports){
38928
39088
  "use strict";
38929
39089
  /*!
38930
39090
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38976,7 +39136,7 @@ LookaheadEventInfo = __decorate([
38976
39136
  ], LookaheadEventInfo);
38977
39137
  exports.LookaheadEventInfo = LookaheadEventInfo;
38978
39138
 
38979
- },{"../Decorators":185,"./DecisionEventInfo":236}],255:[function(require,module,exports){
39139
+ },{"../Decorators":187,"./DecisionEventInfo":238}],257:[function(require,module,exports){
38980
39140
  "use strict";
38981
39141
  /*!
38982
39142
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39005,7 +39165,7 @@ __decorate([
39005
39165
  ], LoopEndState.prototype, "stateType", null);
39006
39166
  exports.LoopEndState = LoopEndState;
39007
39167
 
39008
- },{"../Decorators":185,"./ATNState":224,"./ATNStateType":225}],256:[function(require,module,exports){
39168
+ },{"../Decorators":187,"./ATNState":226,"./ATNStateType":227}],258:[function(require,module,exports){
39009
39169
  "use strict";
39010
39170
  /*!
39011
39171
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39054,7 +39214,7 @@ NotSetTransition = __decorate([
39054
39214
  ], NotSetTransition);
39055
39215
  exports.NotSetTransition = NotSetTransition;
39056
39216
 
39057
- },{"../Decorators":185,"./SetTransition":274}],257:[function(require,module,exports){
39217
+ },{"../Decorators":187,"./SetTransition":276}],259:[function(require,module,exports){
39058
39218
  "use strict";
39059
39219
  /*!
39060
39220
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39109,7 +39269,7 @@ __decorate([
39109
39269
  ], OrderedATNConfigSet.prototype, "canMerge", null);
39110
39270
  exports.OrderedATNConfigSet = OrderedATNConfigSet;
39111
39271
 
39112
- },{"../Decorators":185,"./ATNConfigSet":220}],258:[function(require,module,exports){
39272
+ },{"../Decorators":187,"./ATNConfigSet":222}],260:[function(require,module,exports){
39113
39273
  "use strict";
39114
39274
  /*!
39115
39275
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39271,7 +39431,7 @@ ParseInfo = __decorate([
39271
39431
  ], ParseInfo);
39272
39432
  exports.ParseInfo = ParseInfo;
39273
39433
 
39274
- },{"../Decorators":185}],259:[function(require,module,exports){
39434
+ },{"../Decorators":187}],261:[function(require,module,exports){
39275
39435
  "use strict";
39276
39436
  /*!
39277
39437
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41544,7 +41704,7 @@ ParserATNSimulator = __decorate([
41544
41704
  ], ParserATNSimulator);
41545
41705
  exports.ParserATNSimulator = ParserATNSimulator;
41546
41706
 
41547
- },{"../Decorators":185,"../IntStream":191,"../NoViableAltException":197,"../ParserRuleContext":201,"../Token":210,"../VocabularyImpl":216,"../dfa/AcceptStateInfo":282,"../dfa/DFAState":285,"../misc/Array2DHashSet":289,"../misc/Arrays":291,"../misc/BitSet":292,"../misc/IntegerList":295,"../misc/Interval":297,"../misc/ObjectEqualityComparator":301,"./ATN":218,"./ATNConfig":219,"./ATNConfigSet":220,"./ATNSimulator":223,"./ATNStateType":225,"./ActionTransition":227,"./AtomTransition":229,"./ConflictInfo":234,"./DecisionState":238,"./NotSetTransition":256,"./PredictionContext":265,"./PredictionContextCache":266,"./PredictionMode":267,"./RuleStopState":271,"./RuleTransition":272,"./SemanticContext":273,"./SetTransition":274,"./SimulatorState":275,"assert":328}],260:[function(require,module,exports){
41707
+ },{"../Decorators":187,"../IntStream":193,"../NoViableAltException":199,"../ParserRuleContext":203,"../Token":212,"../VocabularyImpl":218,"../dfa/AcceptStateInfo":284,"../dfa/DFAState":287,"../misc/Array2DHashSet":291,"../misc/Arrays":293,"../misc/BitSet":294,"../misc/IntegerList":297,"../misc/Interval":299,"../misc/ObjectEqualityComparator":303,"./ATN":220,"./ATNConfig":221,"./ATNConfigSet":222,"./ATNSimulator":225,"./ATNStateType":227,"./ActionTransition":229,"./AtomTransition":231,"./ConflictInfo":236,"./DecisionState":240,"./NotSetTransition":258,"./PredictionContext":267,"./PredictionContextCache":268,"./PredictionMode":269,"./RuleStopState":273,"./RuleTransition":274,"./SemanticContext":275,"./SetTransition":276,"./SimulatorState":277,"assert":330}],262:[function(require,module,exports){
41548
41708
  "use strict";
41549
41709
  /*!
41550
41710
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41577,7 +41737,7 @@ __decorate([
41577
41737
  ], PlusBlockStartState.prototype, "stateType", null);
41578
41738
  exports.PlusBlockStartState = PlusBlockStartState;
41579
41739
 
41580
- },{"../Decorators":185,"./ATNStateType":225,"./BlockStartState":233}],261:[function(require,module,exports){
41740
+ },{"../Decorators":187,"./ATNStateType":227,"./BlockStartState":235}],263:[function(require,module,exports){
41581
41741
  "use strict";
41582
41742
  /*!
41583
41743
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41608,7 +41768,7 @@ __decorate([
41608
41768
  ], PlusLoopbackState.prototype, "stateType", null);
41609
41769
  exports.PlusLoopbackState = PlusLoopbackState;
41610
41770
 
41611
- },{"../Decorators":185,"./ATNStateType":225,"./DecisionState":238}],262:[function(require,module,exports){
41771
+ },{"../Decorators":187,"./ATNStateType":227,"./DecisionState":240}],264:[function(require,module,exports){
41612
41772
  "use strict";
41613
41773
  /*!
41614
41774
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41671,7 +41831,7 @@ PrecedencePredicateTransition = __decorate([
41671
41831
  ], PrecedencePredicateTransition);
41672
41832
  exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
41673
41833
 
41674
- },{"../Decorators":185,"./AbstractPredicateTransition":226,"./SemanticContext":273}],263:[function(require,module,exports){
41834
+ },{"../Decorators":187,"./AbstractPredicateTransition":228,"./SemanticContext":275}],265:[function(require,module,exports){
41675
41835
  "use strict";
41676
41836
  /*!
41677
41837
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41734,7 +41894,7 @@ PredicateEvalInfo = __decorate([
41734
41894
  ], PredicateEvalInfo);
41735
41895
  exports.PredicateEvalInfo = PredicateEvalInfo;
41736
41896
 
41737
- },{"../Decorators":185,"./DecisionEventInfo":236}],264:[function(require,module,exports){
41897
+ },{"../Decorators":187,"./DecisionEventInfo":238}],266:[function(require,module,exports){
41738
41898
  "use strict";
41739
41899
  /*!
41740
41900
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41800,7 +41960,7 @@ PredicateTransition = __decorate([
41800
41960
  ], PredicateTransition);
41801
41961
  exports.PredicateTransition = PredicateTransition;
41802
41962
 
41803
- },{"../Decorators":185,"./AbstractPredicateTransition":226,"./SemanticContext":273}],265:[function(require,module,exports){
41963
+ },{"../Decorators":187,"./AbstractPredicateTransition":228,"./SemanticContext":275}],267:[function(require,module,exports){
41804
41964
  "use strict";
41805
41965
  /*!
41806
41966
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42491,7 +42651,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
42491
42651
  PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
42492
42652
  })(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
42493
42653
 
42494
- },{"../Decorators":185,"../misc/Array2DHashMap":288,"../misc/Array2DHashSet":289,"../misc/Arrays":291,"../misc/MurmurHash":300,"./PredictionContextCache":266,"assert":328}],266:[function(require,module,exports){
42654
+ },{"../Decorators":187,"../misc/Array2DHashMap":290,"../misc/Array2DHashSet":291,"../misc/Arrays":293,"../misc/MurmurHash":302,"./PredictionContextCache":268,"assert":330}],268:[function(require,module,exports){
42495
42655
  "use strict";
42496
42656
  /*!
42497
42657
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42632,7 +42792,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
42632
42792
  PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
42633
42793
  })(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
42634
42794
 
42635
- },{"../Decorators":185,"../misc/Array2DHashMap":288,"../misc/ObjectEqualityComparator":301,"./PredictionContext":265,"assert":328}],267:[function(require,module,exports){
42795
+ },{"../Decorators":187,"../misc/Array2DHashMap":290,"../misc/ObjectEqualityComparator":303,"./PredictionContext":267,"assert":330}],269:[function(require,module,exports){
42636
42796
  "use strict";
42637
42797
  /*!
42638
42798
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42793,7 +42953,7 @@ var PredictionMode;
42793
42953
  PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
42794
42954
  })(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
42795
42955
 
42796
- },{"../Decorators":185,"../misc/Array2DHashMap":288,"../misc/MurmurHash":300,"./RuleStopState":271}],268:[function(require,module,exports){
42956
+ },{"../Decorators":187,"../misc/Array2DHashMap":290,"../misc/MurmurHash":302,"./RuleStopState":273}],270:[function(require,module,exports){
42797
42957
  (function (process){(function (){
42798
42958
  "use strict";
42799
42959
  /*!
@@ -43062,7 +43222,7 @@ __decorate([
43062
43222
  exports.ProfilingATNSimulator = ProfilingATNSimulator;
43063
43223
 
43064
43224
  }).call(this)}).call(this,require('_process'))
43065
- },{"../Decorators":185,"./ATN":218,"./ATNSimulator":223,"./AmbiguityInfo":228,"./ContextSensitivityInfo":235,"./DecisionInfo":237,"./ErrorInfo":240,"./LookaheadEventInfo":254,"./ParserATNSimulator":259,"./PredicateEvalInfo":263,"./SemanticContext":273,"./SimulatorState":275,"_process":376}],269:[function(require,module,exports){
43225
+ },{"../Decorators":187,"./ATN":220,"./ATNSimulator":225,"./AmbiguityInfo":230,"./ContextSensitivityInfo":237,"./DecisionInfo":239,"./ErrorInfo":242,"./LookaheadEventInfo":256,"./ParserATNSimulator":261,"./PredicateEvalInfo":265,"./SemanticContext":275,"./SimulatorState":277,"_process":378}],271:[function(require,module,exports){
43066
43226
  "use strict";
43067
43227
  /*!
43068
43228
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43120,7 +43280,7 @@ RangeTransition = __decorate([
43120
43280
  ], RangeTransition);
43121
43281
  exports.RangeTransition = RangeTransition;
43122
43282
 
43123
- },{"../Decorators":185,"../misc/IntervalSet":298,"./Transition":280}],270:[function(require,module,exports){
43283
+ },{"../Decorators":187,"../misc/IntervalSet":300,"./Transition":282}],272:[function(require,module,exports){
43124
43284
  "use strict";
43125
43285
  /*!
43126
43286
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43153,7 +43313,7 @@ __decorate([
43153
43313
  ], RuleStartState.prototype, "stateType", null);
43154
43314
  exports.RuleStartState = RuleStartState;
43155
43315
 
43156
- },{"../Decorators":185,"./ATNState":224,"./ATNStateType":225}],271:[function(require,module,exports){
43316
+ },{"../Decorators":187,"./ATNState":226,"./ATNStateType":227}],273:[function(require,module,exports){
43157
43317
  "use strict";
43158
43318
  /*!
43159
43319
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43192,7 +43352,7 @@ __decorate([
43192
43352
  ], RuleStopState.prototype, "stateType", null);
43193
43353
  exports.RuleStopState = RuleStopState;
43194
43354
 
43195
- },{"../Decorators":185,"./ATNState":224,"./ATNStateType":225}],272:[function(require,module,exports){
43355
+ },{"../Decorators":187,"./ATNState":226,"./ATNStateType":227}],274:[function(require,module,exports){
43196
43356
  "use strict";
43197
43357
  /*!
43198
43358
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43248,7 +43408,7 @@ RuleTransition = __decorate([
43248
43408
  ], RuleTransition);
43249
43409
  exports.RuleTransition = RuleTransition;
43250
43410
 
43251
- },{"../Decorators":185,"./Transition":280}],273:[function(require,module,exports){
43411
+ },{"../Decorators":187,"./Transition":282}],275:[function(require,module,exports){
43252
43412
  "use strict";
43253
43413
  /*!
43254
43414
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43728,7 +43888,7 @@ exports.SemanticContext = SemanticContext;
43728
43888
  SemanticContext.OR = OR;
43729
43889
  })(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
43730
43890
 
43731
- },{"../Decorators":185,"../misc/Array2DHashSet":289,"../misc/ArrayEqualityComparator":290,"../misc/MurmurHash":300,"../misc/ObjectEqualityComparator":301,"../misc/Utils":304}],274:[function(require,module,exports){
43891
+ },{"../Decorators":187,"../misc/Array2DHashSet":291,"../misc/ArrayEqualityComparator":292,"../misc/MurmurHash":302,"../misc/ObjectEqualityComparator":303,"../misc/Utils":306}],276:[function(require,module,exports){
43732
43892
  "use strict";
43733
43893
  /*!
43734
43894
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43794,7 +43954,7 @@ SetTransition = __decorate([
43794
43954
  ], SetTransition);
43795
43955
  exports.SetTransition = SetTransition;
43796
43956
 
43797
- },{"../Decorators":185,"../Token":210,"../misc/IntervalSet":298,"./Transition":280}],275:[function(require,module,exports){
43957
+ },{"../Decorators":187,"../Token":212,"../misc/IntervalSet":300,"./Transition":282}],277:[function(require,module,exports){
43798
43958
  "use strict";
43799
43959
  /*!
43800
43960
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43830,7 +43990,7 @@ SimulatorState = __decorate([
43830
43990
  ], SimulatorState);
43831
43991
  exports.SimulatorState = SimulatorState;
43832
43992
 
43833
- },{"../Decorators":185,"../ParserRuleContext":201}],276:[function(require,module,exports){
43993
+ },{"../Decorators":187,"../ParserRuleContext":203}],278:[function(require,module,exports){
43834
43994
  "use strict";
43835
43995
  /*!
43836
43996
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43858,7 +44018,7 @@ __decorate([
43858
44018
  ], StarBlockStartState.prototype, "stateType", null);
43859
44019
  exports.StarBlockStartState = StarBlockStartState;
43860
44020
 
43861
- },{"../Decorators":185,"./ATNStateType":225,"./BlockStartState":233}],277:[function(require,module,exports){
44021
+ },{"../Decorators":187,"./ATNStateType":227,"./BlockStartState":235}],279:[function(require,module,exports){
43862
44022
  "use strict";
43863
44023
  /*!
43864
44024
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43915,7 +44075,7 @@ __decorate([
43915
44075
  ], StarLoopEntryState.prototype, "stateType", null);
43916
44076
  exports.StarLoopEntryState = StarLoopEntryState;
43917
44077
 
43918
- },{"../Decorators":185,"../misc/BitSet":292,"./ATNStateType":225,"./DecisionState":238}],278:[function(require,module,exports){
44078
+ },{"../Decorators":187,"../misc/BitSet":294,"./ATNStateType":227,"./DecisionState":240}],280:[function(require,module,exports){
43919
44079
  "use strict";
43920
44080
  /*!
43921
44081
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43946,7 +44106,7 @@ __decorate([
43946
44106
  ], StarLoopbackState.prototype, "stateType", null);
43947
44107
  exports.StarLoopbackState = StarLoopbackState;
43948
44108
 
43949
- },{"../Decorators":185,"./ATNState":224,"./ATNStateType":225}],279:[function(require,module,exports){
44109
+ },{"../Decorators":187,"./ATNState":226,"./ATNStateType":227}],281:[function(require,module,exports){
43950
44110
  "use strict";
43951
44111
  /*!
43952
44112
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43975,7 +44135,7 @@ __decorate([
43975
44135
  ], TokensStartState.prototype, "stateType", null);
43976
44136
  exports.TokensStartState = TokensStartState;
43977
44137
 
43978
- },{"../Decorators":185,"./ATNStateType":225,"./DecisionState":238}],280:[function(require,module,exports){
44138
+ },{"../Decorators":187,"./ATNStateType":227,"./DecisionState":240}],282:[function(require,module,exports){
43979
44139
  "use strict";
43980
44140
  /*!
43981
44141
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44049,7 +44209,7 @@ Transition = __decorate([
44049
44209
  ], Transition);
44050
44210
  exports.Transition = Transition;
44051
44211
 
44052
- },{"../Decorators":185}],281:[function(require,module,exports){
44212
+ },{"../Decorators":187}],283:[function(require,module,exports){
44053
44213
  "use strict";
44054
44214
  /*!
44055
44215
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44097,7 +44257,7 @@ WildcardTransition = __decorate([
44097
44257
  ], WildcardTransition);
44098
44258
  exports.WildcardTransition = WildcardTransition;
44099
44259
 
44100
- },{"../Decorators":185,"./Transition":280}],282:[function(require,module,exports){
44260
+ },{"../Decorators":187,"./Transition":282}],284:[function(require,module,exports){
44101
44261
  "use strict";
44102
44262
  /*!
44103
44263
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44139,7 +44299,7 @@ class AcceptStateInfo {
44139
44299
  }
44140
44300
  exports.AcceptStateInfo = AcceptStateInfo;
44141
44301
 
44142
- },{}],283:[function(require,module,exports){
44302
+ },{}],285:[function(require,module,exports){
44143
44303
  "use strict";
44144
44304
  /*!
44145
44305
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44314,7 +44474,7 @@ DFA = __decorate([
44314
44474
  ], DFA);
44315
44475
  exports.DFA = DFA;
44316
44476
 
44317
- },{"../Decorators":185,"../VocabularyImpl":216,"../atn/ATNConfigSet":220,"../atn/StarLoopEntryState":277,"../misc/Array2DHashSet":289,"../misc/ObjectEqualityComparator":301,"./DFASerializer":284,"./DFAState":285,"./LexerDFASerializer":286}],284:[function(require,module,exports){
44477
+ },{"../Decorators":187,"../VocabularyImpl":218,"../atn/ATNConfigSet":222,"../atn/StarLoopEntryState":279,"../misc/Array2DHashSet":291,"../misc/ObjectEqualityComparator":303,"./DFASerializer":286,"./DFAState":287,"./LexerDFASerializer":288}],286:[function(require,module,exports){
44318
44478
  "use strict";
44319
44479
  /*!
44320
44480
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44456,7 +44616,7 @@ __decorate([
44456
44616
  ], DFASerializer.prototype, "toString", null);
44457
44617
  exports.DFASerializer = DFASerializer;
44458
44618
 
44459
- },{"../Decorators":185,"../Recognizer":205,"../VocabularyImpl":216,"../atn/ATNSimulator":223,"../atn/PredictionContext":265}],285:[function(require,module,exports){
44619
+ },{"../Decorators":187,"../Recognizer":207,"../VocabularyImpl":218,"../atn/ATNSimulator":225,"../atn/PredictionContext":267}],287:[function(require,module,exports){
44460
44620
  "use strict";
44461
44621
  /*!
44462
44622
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44687,7 +44847,7 @@ exports.DFAState = DFAState;
44687
44847
  DFAState.PredPrediction = PredPrediction;
44688
44848
  })(DFAState = exports.DFAState || (exports.DFAState = {}));
44689
44849
 
44690
- },{"../Decorators":185,"../atn/ATN":218,"../atn/PredictionContext":265,"../misc/BitSet":292,"../misc/MurmurHash":300,"assert":328}],286:[function(require,module,exports){
44850
+ },{"../Decorators":187,"../atn/ATN":220,"../atn/PredictionContext":267,"../misc/BitSet":294,"../misc/MurmurHash":302,"assert":330}],288:[function(require,module,exports){
44691
44851
  "use strict";
44692
44852
  /*!
44693
44853
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44724,7 +44884,7 @@ LexerDFASerializer = __decorate([
44724
44884
  ], LexerDFASerializer);
44725
44885
  exports.LexerDFASerializer = LexerDFASerializer;
44726
44886
 
44727
- },{"../Decorators":185,"../VocabularyImpl":216,"./DFASerializer":284}],287:[function(require,module,exports){
44887
+ },{"../Decorators":187,"../VocabularyImpl":218,"./DFASerializer":286}],289:[function(require,module,exports){
44728
44888
  "use strict";
44729
44889
  /*!
44730
44890
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44790,7 +44950,7 @@ __exportStar(require("./Vocabulary"), exports);
44790
44950
  __exportStar(require("./VocabularyImpl"), exports);
44791
44951
  __exportStar(require("./WritableToken"), exports);
44792
44952
 
44793
- },{"./ANTLRErrorListener":172,"./ANTLRErrorStrategy":173,"./ANTLRInputStream":174,"./BailErrorStrategy":175,"./BufferedTokenStream":176,"./CharStream":177,"./CharStreams":178,"./CodePointBuffer":179,"./CodePointCharStream":180,"./CommonToken":181,"./CommonTokenFactory":182,"./CommonTokenStream":183,"./ConsoleErrorListener":184,"./DefaultErrorStrategy":186,"./Dependents":187,"./DiagnosticErrorListener":188,"./FailedPredicateException":189,"./InputMismatchException":190,"./IntStream":191,"./InterpreterRuleContext":192,"./Lexer":193,"./LexerInterpreter":194,"./LexerNoViableAltException":195,"./ListTokenSource":196,"./NoViableAltException":197,"./Parser":198,"./ParserErrorListener":199,"./ParserInterpreter":200,"./ParserRuleContext":201,"./ProxyErrorListener":202,"./ProxyParserErrorListener":203,"./RecognitionException":204,"./Recognizer":205,"./RuleContext":206,"./RuleContextWithAltNum":207,"./RuleDependency":208,"./RuleVersion":209,"./Token":210,"./TokenFactory":211,"./TokenSource":212,"./TokenStream":213,"./TokenStreamRewriter":214,"./Vocabulary":215,"./VocabularyImpl":216,"./WritableToken":217}],288:[function(require,module,exports){
44953
+ },{"./ANTLRErrorListener":174,"./ANTLRErrorStrategy":175,"./ANTLRInputStream":176,"./BailErrorStrategy":177,"./BufferedTokenStream":178,"./CharStream":179,"./CharStreams":180,"./CodePointBuffer":181,"./CodePointCharStream":182,"./CommonToken":183,"./CommonTokenFactory":184,"./CommonTokenStream":185,"./ConsoleErrorListener":186,"./DefaultErrorStrategy":188,"./Dependents":189,"./DiagnosticErrorListener":190,"./FailedPredicateException":191,"./InputMismatchException":192,"./IntStream":193,"./InterpreterRuleContext":194,"./Lexer":195,"./LexerInterpreter":196,"./LexerNoViableAltException":197,"./ListTokenSource":198,"./NoViableAltException":199,"./Parser":200,"./ParserErrorListener":201,"./ParserInterpreter":202,"./ParserRuleContext":203,"./ProxyErrorListener":204,"./ProxyParserErrorListener":205,"./RecognitionException":206,"./Recognizer":207,"./RuleContext":208,"./RuleContextWithAltNum":209,"./RuleDependency":210,"./RuleVersion":211,"./Token":212,"./TokenFactory":213,"./TokenSource":214,"./TokenStream":215,"./TokenStreamRewriter":216,"./Vocabulary":217,"./VocabularyImpl":218,"./WritableToken":219}],290:[function(require,module,exports){
44794
44954
  "use strict";
44795
44955
  /*!
44796
44956
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44873,7 +45033,7 @@ class Array2DHashMap {
44873
45033
  }
44874
45034
  exports.Array2DHashMap = Array2DHashMap;
44875
45035
 
44876
- },{"./Array2DHashSet":289}],289:[function(require,module,exports){
45036
+ },{"./Array2DHashSet":291}],291:[function(require,module,exports){
44877
45037
  "use strict";
44878
45038
  /*!
44879
45039
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45240,7 +45400,7 @@ __decorate([
45240
45400
  ], Array2DHashSet.prototype, "createBuckets", null);
45241
45401
  exports.Array2DHashSet = Array2DHashSet;
45242
45402
 
45243
- },{"../Decorators":185,"./DefaultEqualityComparator":294,"./MurmurHash":300,"assert":328}],290:[function(require,module,exports){
45403
+ },{"../Decorators":187,"./DefaultEqualityComparator":296,"./MurmurHash":302,"assert":330}],292:[function(require,module,exports){
45244
45404
  "use strict";
45245
45405
  /*!
45246
45406
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45312,7 +45472,7 @@ __decorate([
45312
45472
  ], ArrayEqualityComparator.prototype, "equals", null);
45313
45473
  exports.ArrayEqualityComparator = ArrayEqualityComparator;
45314
45474
 
45315
- },{"../Decorators":185,"./MurmurHash":300,"./ObjectEqualityComparator":301}],291:[function(require,module,exports){
45475
+ },{"../Decorators":187,"./MurmurHash":302,"./ObjectEqualityComparator":303}],293:[function(require,module,exports){
45316
45476
  "use strict";
45317
45477
  /*!
45318
45478
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45382,7 +45542,7 @@ var Arrays;
45382
45542
  Arrays.toString = toString;
45383
45543
  })(Arrays = exports.Arrays || (exports.Arrays = {}));
45384
45544
 
45385
- },{}],292:[function(require,module,exports){
45545
+ },{}],294:[function(require,module,exports){
45386
45546
  "use strict";
45387
45547
  /*!
45388
45548
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46054,7 +46214,7 @@ class BitSetIterator {
46054
46214
  [Symbol.iterator]() { return this; }
46055
46215
  }
46056
46216
 
46057
- },{"./MurmurHash":300,"util":381}],293:[function(require,module,exports){
46217
+ },{"./MurmurHash":302,"util":383}],295:[function(require,module,exports){
46058
46218
  "use strict";
46059
46219
  /*!
46060
46220
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46075,7 +46235,7 @@ function isSupplementaryCodePoint(ch) {
46075
46235
  }
46076
46236
  exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
46077
46237
 
46078
- },{}],294:[function(require,module,exports){
46238
+ },{}],296:[function(require,module,exports){
46079
46239
  "use strict";
46080
46240
  /*!
46081
46241
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46146,7 +46306,7 @@ __decorate([
46146
46306
  ], DefaultEqualityComparator.prototype, "equals", null);
46147
46307
  exports.DefaultEqualityComparator = DefaultEqualityComparator;
46148
46308
 
46149
- },{"../Decorators":185,"./MurmurHash":300,"./ObjectEqualityComparator":301}],295:[function(require,module,exports){
46309
+ },{"../Decorators":187,"./MurmurHash":302,"./ObjectEqualityComparator":303}],297:[function(require,module,exports){
46150
46310
  "use strict";
46151
46311
  /*!
46152
46312
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46440,7 +46600,7 @@ __decorate([
46440
46600
  ], IntegerList.prototype, "toString", null);
46441
46601
  exports.IntegerList = IntegerList;
46442
46602
 
46443
- },{"../Decorators":185,"./Arrays":291}],296:[function(require,module,exports){
46603
+ },{"../Decorators":187,"./Arrays":293}],298:[function(require,module,exports){
46444
46604
  "use strict";
46445
46605
  /*!
46446
46606
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46470,7 +46630,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
46470
46630
  }
46471
46631
  exports.IntegerStack = IntegerStack;
46472
46632
 
46473
- },{"./IntegerList":295}],297:[function(require,module,exports){
46633
+ },{"./IntegerList":297}],299:[function(require,module,exports){
46474
46634
  "use strict";
46475
46635
  /*!
46476
46636
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46613,7 +46773,7 @@ __decorate([
46613
46773
  ], Interval.prototype, "toString", null);
46614
46774
  exports.Interval = Interval;
46615
46775
 
46616
- },{"../Decorators":185}],298:[function(require,module,exports){
46776
+ },{"../Decorators":187}],300:[function(require,module,exports){
46617
46777
  "use strict";
46618
46778
  /*!
46619
46779
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47259,7 +47419,7 @@ __decorate([
47259
47419
  ], IntervalSet, "subtract", null);
47260
47420
  exports.IntervalSet = IntervalSet;
47261
47421
 
47262
- },{"../Decorators":185,"../Lexer":193,"../Token":210,"./ArrayEqualityComparator":290,"./IntegerList":295,"./Interval":297,"./MurmurHash":300}],299:[function(require,module,exports){
47422
+ },{"../Decorators":187,"../Lexer":195,"../Token":212,"./ArrayEqualityComparator":292,"./IntegerList":297,"./Interval":299,"./MurmurHash":302}],301:[function(require,module,exports){
47263
47423
  "use strict";
47264
47424
  /*!
47265
47425
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47292,7 +47452,7 @@ class MultiMap extends Map {
47292
47452
  }
47293
47453
  exports.MultiMap = MultiMap;
47294
47454
 
47295
- },{}],300:[function(require,module,exports){
47455
+ },{}],302:[function(require,module,exports){
47296
47456
  "use strict";
47297
47457
  /*!
47298
47458
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47407,7 +47567,7 @@ var MurmurHash;
47407
47567
  }
47408
47568
  })(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
47409
47569
 
47410
- },{}],301:[function(require,module,exports){
47570
+ },{}],303:[function(require,module,exports){
47411
47571
  "use strict";
47412
47572
  /*!
47413
47573
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47466,7 +47626,7 @@ __decorate([
47466
47626
  ], ObjectEqualityComparator.prototype, "equals", null);
47467
47627
  exports.ObjectEqualityComparator = ObjectEqualityComparator;
47468
47628
 
47469
- },{"../Decorators":185}],302:[function(require,module,exports){
47629
+ },{"../Decorators":187}],304:[function(require,module,exports){
47470
47630
  "use strict";
47471
47631
  /*!
47472
47632
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47495,7 +47655,7 @@ class ParseCancellationException extends Error {
47495
47655
  }
47496
47656
  exports.ParseCancellationException = ParseCancellationException;
47497
47657
 
47498
- },{}],303:[function(require,module,exports){
47658
+ },{}],305:[function(require,module,exports){
47499
47659
  "use strict";
47500
47660
  /*!
47501
47661
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47549,7 +47709,7 @@ class UUID {
47549
47709
  }
47550
47710
  exports.UUID = UUID;
47551
47711
 
47552
- },{"./MurmurHash":300}],304:[function(require,module,exports){
47712
+ },{"./MurmurHash":302}],306:[function(require,module,exports){
47553
47713
  "use strict";
47554
47714
  /*!
47555
47715
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47724,7 +47884,7 @@ exports.toCharArray = toCharArray;
47724
47884
  // return s;
47725
47885
  // }
47726
47886
 
47727
- },{}],305:[function(require,module,exports){
47887
+ },{}],307:[function(require,module,exports){
47728
47888
  "use strict";
47729
47889
  /*!
47730
47890
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47760,7 +47920,7 @@ __decorate([
47760
47920
  ], ErrorNode.prototype, "accept", null);
47761
47921
  exports.ErrorNode = ErrorNode;
47762
47922
 
47763
- },{"../Decorators":185,"./TerminalNode":308}],306:[function(require,module,exports){
47923
+ },{"../Decorators":187,"./TerminalNode":310}],308:[function(require,module,exports){
47764
47924
  "use strict";
47765
47925
  /*!
47766
47926
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47865,7 +48025,7 @@ exports.ParseTreeWalker = ParseTreeWalker;
47865
48025
  ParseTreeWalker.DEFAULT = new ParseTreeWalker();
47866
48026
  })(ParseTreeWalker = exports.ParseTreeWalker || (exports.ParseTreeWalker = {}));
47867
48027
 
47868
- },{"./ErrorNode":305,"./RuleNode":307,"./TerminalNode":308}],307:[function(require,module,exports){
48028
+ },{"./ErrorNode":307,"./RuleNode":309,"./TerminalNode":310}],309:[function(require,module,exports){
47869
48029
  "use strict";
47870
48030
  /*!
47871
48031
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47877,7 +48037,7 @@ class RuleNode {
47877
48037
  }
47878
48038
  exports.RuleNode = RuleNode;
47879
48039
 
47880
- },{}],308:[function(require,module,exports){
48040
+ },{}],310:[function(require,module,exports){
47881
48041
  "use strict";
47882
48042
  /*!
47883
48043
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47969,7 +48129,7 @@ __decorate([
47969
48129
  ], TerminalNode.prototype, "toString", null);
47970
48130
  exports.TerminalNode = TerminalNode;
47971
48131
 
47972
- },{"../Decorators":185,"../Token":210,"../misc/Interval":297}],309:[function(require,module,exports){
48132
+ },{"../Decorators":187,"../Token":212,"../misc/Interval":299}],311:[function(require,module,exports){
47973
48133
  "use strict";
47974
48134
  /*!
47975
48135
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48213,7 +48373,7 @@ __decorate([
48213
48373
  ], Trees, "getRootOfSubtreeEnclosingRegion", null);
48214
48374
  exports.Trees = Trees;
48215
48375
 
48216
- },{"../CommonToken":181,"../Decorators":185,"../Parser":198,"../ParserRuleContext":201,"../Token":210,"../atn/ATN":218,"../misc/Utils":304,"./ErrorNode":305,"./RuleNode":307,"./TerminalNode":308}],310:[function(require,module,exports){
48376
+ },{"../CommonToken":183,"../Decorators":187,"../Parser":200,"../ParserRuleContext":203,"../Token":212,"../atn/ATN":220,"../misc/Utils":306,"./ErrorNode":307,"./RuleNode":309,"./TerminalNode":310}],312:[function(require,module,exports){
48217
48377
  "use strict";
48218
48378
  /*!
48219
48379
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48237,7 +48397,7 @@ class Chunk {
48237
48397
  }
48238
48398
  exports.Chunk = Chunk;
48239
48399
 
48240
- },{}],311:[function(require,module,exports){
48400
+ },{}],313:[function(require,module,exports){
48241
48401
  "use strict";
48242
48402
  /*!
48243
48403
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48417,7 +48577,7 @@ ParseTreeMatch = __decorate([
48417
48577
  ], ParseTreeMatch);
48418
48578
  exports.ParseTreeMatch = ParseTreeMatch;
48419
48579
 
48420
- },{"../../Decorators":185}],312:[function(require,module,exports){
48580
+ },{"../../Decorators":187}],314:[function(require,module,exports){
48421
48581
  "use strict";
48422
48582
  /*!
48423
48583
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48575,7 +48735,7 @@ ParseTreePattern = __decorate([
48575
48735
  ], ParseTreePattern);
48576
48736
  exports.ParseTreePattern = ParseTreePattern;
48577
48737
 
48578
- },{"../../Decorators":185,"../xpath/XPath":318}],313:[function(require,module,exports){
48738
+ },{"../../Decorators":187,"../xpath/XPath":320}],315:[function(require,module,exports){
48579
48739
  "use strict";
48580
48740
  /*!
48581
48741
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49053,7 +49213,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
49053
49213
  ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
49054
49214
  })(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
49055
49215
 
49056
- },{"../../BailErrorStrategy":175,"../../CharStreams":178,"../../CommonTokenStream":183,"../../Decorators":185,"../../ListTokenSource":196,"../../ParserInterpreter":200,"../../ParserRuleContext":201,"../../RecognitionException":204,"../../Token":210,"../../misc/MultiMap":299,"../../misc/ParseCancellationException":302,"../RuleNode":307,"../TerminalNode":308,"./ParseTreeMatch":311,"./ParseTreePattern":312,"./RuleTagToken":314,"./TagChunk":315,"./TextChunk":316,"./TokenTagToken":317}],314:[function(require,module,exports){
49216
+ },{"../../BailErrorStrategy":177,"../../CharStreams":180,"../../CommonTokenStream":185,"../../Decorators":187,"../../ListTokenSource":198,"../../ParserInterpreter":202,"../../ParserRuleContext":203,"../../RecognitionException":206,"../../Token":212,"../../misc/MultiMap":301,"../../misc/ParseCancellationException":304,"../RuleNode":309,"../TerminalNode":310,"./ParseTreeMatch":313,"./ParseTreePattern":314,"./RuleTagToken":316,"./TagChunk":317,"./TextChunk":318,"./TokenTagToken":319}],316:[function(require,module,exports){
49057
49217
  "use strict";
49058
49218
  /*!
49059
49219
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49251,7 +49411,7 @@ RuleTagToken = __decorate([
49251
49411
  ], RuleTagToken);
49252
49412
  exports.RuleTagToken = RuleTagToken;
49253
49413
 
49254
- },{"../../Decorators":185,"../../Token":210}],315:[function(require,module,exports){
49414
+ },{"../../Decorators":187,"../../Token":212}],317:[function(require,module,exports){
49255
49415
  "use strict";
49256
49416
  /*!
49257
49417
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49338,7 +49498,7 @@ __decorate([
49338
49498
  ], TagChunk.prototype, "toString", null);
49339
49499
  exports.TagChunk = TagChunk;
49340
49500
 
49341
- },{"../../Decorators":185,"./Chunk":310}],316:[function(require,module,exports){
49501
+ },{"../../Decorators":187,"./Chunk":312}],318:[function(require,module,exports){
49342
49502
  "use strict";
49343
49503
  /*!
49344
49504
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49408,7 +49568,7 @@ TextChunk = __decorate([
49408
49568
  ], TextChunk);
49409
49569
  exports.TextChunk = TextChunk;
49410
49570
 
49411
- },{"../../Decorators":185,"./Chunk":310}],317:[function(require,module,exports){
49571
+ },{"../../Decorators":187,"./Chunk":312}],319:[function(require,module,exports){
49412
49572
  "use strict";
49413
49573
  /*!
49414
49574
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49503,7 +49663,7 @@ TokenTagToken = __decorate([
49503
49663
  ], TokenTagToken);
49504
49664
  exports.TokenTagToken = TokenTagToken;
49505
49665
 
49506
- },{"../../CommonToken":181,"../../Decorators":185}],318:[function(require,module,exports){
49666
+ },{"../../CommonToken":183,"../../Decorators":187}],320:[function(require,module,exports){
49507
49667
  "use strict";
49508
49668
  /*!
49509
49669
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49700,7 +49860,7 @@ exports.XPath = XPath;
49700
49860
  XPath.WILDCARD = "*"; // word not operator/separator
49701
49861
  XPath.NOT = "!"; // word for invert operator
49702
49862
 
49703
- },{"../../CharStreams":178,"../../CommonTokenStream":183,"../../LexerNoViableAltException":195,"../../ParserRuleContext":201,"../../Token":210,"./XPathLexer":320,"./XPathLexerErrorListener":321,"./XPathRuleAnywhereElement":322,"./XPathRuleElement":323,"./XPathTokenAnywhereElement":324,"./XPathTokenElement":325,"./XPathWildcardAnywhereElement":326,"./XPathWildcardElement":327}],319:[function(require,module,exports){
49863
+ },{"../../CharStreams":180,"../../CommonTokenStream":185,"../../LexerNoViableAltException":197,"../../ParserRuleContext":203,"../../Token":212,"./XPathLexer":322,"./XPathLexerErrorListener":323,"./XPathRuleAnywhereElement":324,"./XPathRuleElement":325,"./XPathTokenAnywhereElement":326,"./XPathTokenElement":327,"./XPathWildcardAnywhereElement":328,"./XPathWildcardElement":329}],321:[function(require,module,exports){
49704
49864
  "use strict";
49705
49865
  /*!
49706
49866
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49735,7 +49895,7 @@ __decorate([
49735
49895
  ], XPathElement.prototype, "toString", null);
49736
49896
  exports.XPathElement = XPathElement;
49737
49897
 
49738
- },{"../../Decorators":185}],320:[function(require,module,exports){
49898
+ },{"../../Decorators":187}],322:[function(require,module,exports){
49739
49899
  "use strict";
49740
49900
  // Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
49741
49901
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -50210,7 +50370,7 @@ XPathLexer._serializedATN = Utils.join([
50210
50370
  XPathLexer._serializedATNSegment1,
50211
50371
  ], "");
50212
50372
 
50213
- },{"../../Lexer":193,"../../VocabularyImpl":216,"../../atn/ATNDeserializer":222,"../../atn/LexerATNSimulator":243,"../../misc/Utils":304}],321:[function(require,module,exports){
50373
+ },{"../../Lexer":195,"../../VocabularyImpl":218,"../../atn/ATNDeserializer":224,"../../atn/LexerATNSimulator":245,"../../misc/Utils":306}],323:[function(require,module,exports){
50214
50374
  "use strict";
50215
50375
  /*!
50216
50376
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50235,7 +50395,7 @@ __decorate([
50235
50395
  ], XPathLexerErrorListener.prototype, "syntaxError", null);
50236
50396
  exports.XPathLexerErrorListener = XPathLexerErrorListener;
50237
50397
 
50238
- },{"../../Decorators":185}],322:[function(require,module,exports){
50398
+ },{"../../Decorators":187}],324:[function(require,module,exports){
50239
50399
  "use strict";
50240
50400
  /*!
50241
50401
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50269,7 +50429,7 @@ __decorate([
50269
50429
  ], XPathRuleAnywhereElement.prototype, "evaluate", null);
50270
50430
  exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
50271
50431
 
50272
- },{"../../Decorators":185,"../Trees":309,"./XPathElement":319}],323:[function(require,module,exports){
50432
+ },{"../../Decorators":187,"../Trees":311,"./XPathElement":321}],325:[function(require,module,exports){
50273
50433
  "use strict";
50274
50434
  /*!
50275
50435
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50312,7 +50472,7 @@ __decorate([
50312
50472
  ], XPathRuleElement.prototype, "evaluate", null);
50313
50473
  exports.XPathRuleElement = XPathRuleElement;
50314
50474
 
50315
- },{"../../Decorators":185,"../../ParserRuleContext":201,"../Trees":309,"./XPathElement":319}],324:[function(require,module,exports){
50475
+ },{"../../Decorators":187,"../../ParserRuleContext":203,"../Trees":311,"./XPathElement":321}],326:[function(require,module,exports){
50316
50476
  "use strict";
50317
50477
  /*!
50318
50478
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50344,7 +50504,7 @@ __decorate([
50344
50504
  ], XPathTokenAnywhereElement.prototype, "evaluate", null);
50345
50505
  exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
50346
50506
 
50347
- },{"../../Decorators":185,"../Trees":309,"./XPathElement":319}],325:[function(require,module,exports){
50507
+ },{"../../Decorators":187,"../Trees":311,"./XPathElement":321}],327:[function(require,module,exports){
50348
50508
  "use strict";
50349
50509
  /*!
50350
50510
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50387,7 +50547,7 @@ __decorate([
50387
50547
  ], XPathTokenElement.prototype, "evaluate", null);
50388
50548
  exports.XPathTokenElement = XPathTokenElement;
50389
50549
 
50390
- },{"../../Decorators":185,"../TerminalNode":308,"../Trees":309,"./XPathElement":319}],326:[function(require,module,exports){
50550
+ },{"../../Decorators":187,"../TerminalNode":310,"../Trees":311,"./XPathElement":321}],328:[function(require,module,exports){
50391
50551
  "use strict";
50392
50552
  /*!
50393
50553
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50423,7 +50583,7 @@ __decorate([
50423
50583
  ], XPathWildcardAnywhereElement.prototype, "evaluate", null);
50424
50584
  exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
50425
50585
 
50426
- },{"../../Decorators":185,"../Trees":309,"./XPath":318,"./XPathElement":319}],327:[function(require,module,exports){
50586
+ },{"../../Decorators":187,"../Trees":311,"./XPath":320,"./XPathElement":321}],329:[function(require,module,exports){
50427
50587
  "use strict";
50428
50588
  /*!
50429
50589
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50463,7 +50623,7 @@ __decorate([
50463
50623
  ], XPathWildcardElement.prototype, "evaluate", null);
50464
50624
  exports.XPathWildcardElement = XPathWildcardElement;
50465
50625
 
50466
- },{"../../Decorators":185,"../Trees":309,"./XPath":318,"./XPathElement":319}],328:[function(require,module,exports){
50626
+ },{"../../Decorators":187,"../Trees":311,"./XPath":320,"./XPathElement":321}],330:[function(require,module,exports){
50467
50627
  (function (global){(function (){
50468
50628
  'use strict';
50469
50629
 
@@ -50973,7 +51133,7 @@ var objectKeys = Object.keys || function (obj) {
50973
51133
  };
50974
51134
 
50975
51135
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
50976
- },{"object.assign/polyfill":374,"util/":331}],329:[function(require,module,exports){
51136
+ },{"object.assign/polyfill":376,"util/":333}],331:[function(require,module,exports){
50977
51137
  if (typeof Object.create === 'function') {
50978
51138
  // implementation from standard node.js 'util' module
50979
51139
  module.exports = function inherits(ctor, superCtor) {
@@ -50998,14 +51158,14 @@ if (typeof Object.create === 'function') {
50998
51158
  }
50999
51159
  }
51000
51160
 
51001
- },{}],330:[function(require,module,exports){
51161
+ },{}],332:[function(require,module,exports){
51002
51162
  module.exports = function isBuffer(arg) {
51003
51163
  return arg && typeof arg === 'object'
51004
51164
  && typeof arg.copy === 'function'
51005
51165
  && typeof arg.fill === 'function'
51006
51166
  && typeof arg.readUInt8 === 'function';
51007
51167
  }
51008
- },{}],331:[function(require,module,exports){
51168
+ },{}],333:[function(require,module,exports){
51009
51169
  (function (process,global){(function (){
51010
51170
  // Copyright Joyent, Inc. and other Node contributors.
51011
51171
  //
@@ -51595,7 +51755,7 @@ function hasOwnProperty(obj, prop) {
51595
51755
  }
51596
51756
 
51597
51757
  }).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
51598
- },{"./support/isBuffer":330,"_process":376,"inherits":329}],332:[function(require,module,exports){
51758
+ },{"./support/isBuffer":332,"_process":378,"inherits":331}],334:[function(require,module,exports){
51599
51759
  (function (global){(function (){
51600
51760
  'use strict';
51601
51761
 
@@ -51616,7 +51776,7 @@ module.exports = function availableTypedArrays() {
51616
51776
  };
51617
51777
 
51618
51778
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
51619
- },{"possible-typed-array-names":375}],333:[function(require,module,exports){
51779
+ },{"possible-typed-array-names":377}],335:[function(require,module,exports){
51620
51780
  (function (process,global){(function (){
51621
51781
  module.exports = process.hrtime || hrtime
51622
51782
 
@@ -51647,7 +51807,7 @@ function hrtime(previousTimestamp){
51647
51807
  return [seconds,nanoseconds]
51648
51808
  }
51649
51809
  }).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
51650
- },{"_process":376}],334:[function(require,module,exports){
51810
+ },{"_process":378}],336:[function(require,module,exports){
51651
51811
  'use strict';
51652
51812
 
51653
51813
  var GetIntrinsic = require('get-intrinsic');
@@ -51664,7 +51824,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
51664
51824
  return intrinsic;
51665
51825
  };
51666
51826
 
51667
- },{"./":335,"get-intrinsic":338}],335:[function(require,module,exports){
51827
+ },{"./":337,"get-intrinsic":340}],337:[function(require,module,exports){
51668
51828
  'use strict';
51669
51829
 
51670
51830
  var bind = require('function-bind');
@@ -51713,7 +51873,7 @@ if ($defineProperty) {
51713
51873
  module.exports.apply = applyBind;
51714
51874
  }
51715
51875
 
51716
- },{"function-bind":337,"get-intrinsic":338}],336:[function(require,module,exports){
51876
+ },{"function-bind":339,"get-intrinsic":340}],338:[function(require,module,exports){
51717
51877
  'use strict';
51718
51878
 
51719
51879
  /* eslint no-invalid-this: 1 */
@@ -51767,14 +51927,14 @@ module.exports = function bind(that) {
51767
51927
  return bound;
51768
51928
  };
51769
51929
 
51770
- },{}],337:[function(require,module,exports){
51930
+ },{}],339:[function(require,module,exports){
51771
51931
  'use strict';
51772
51932
 
51773
51933
  var implementation = require('./implementation');
51774
51934
 
51775
51935
  module.exports = Function.prototype.bind || implementation;
51776
51936
 
51777
- },{"./implementation":336}],338:[function(require,module,exports){
51937
+ },{"./implementation":338}],340:[function(require,module,exports){
51778
51938
  'use strict';
51779
51939
 
51780
51940
  var undefined;
@@ -52120,7 +52280,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
52120
52280
  return value;
52121
52281
  };
52122
52282
 
52123
- },{"function-bind":337,"has":362,"has-symbols":357}],339:[function(require,module,exports){
52283
+ },{"function-bind":339,"has":364,"has-symbols":359}],341:[function(require,module,exports){
52124
52284
  'use strict';
52125
52285
 
52126
52286
  var $defineProperty = require('es-define-property');
@@ -52178,7 +52338,7 @@ module.exports = function defineDataProperty(
52178
52338
  }
52179
52339
  };
52180
52340
 
52181
- },{"es-define-property":340,"es-errors/syntax":345,"es-errors/type":346,"gopd":352}],340:[function(require,module,exports){
52341
+ },{"es-define-property":342,"es-errors/syntax":347,"es-errors/type":348,"gopd":354}],342:[function(require,module,exports){
52182
52342
  'use strict';
52183
52343
 
52184
52344
  var GetIntrinsic = require('get-intrinsic');
@@ -52196,49 +52356,49 @@ if ($defineProperty) {
52196
52356
 
52197
52357
  module.exports = $defineProperty;
52198
52358
 
52199
- },{"get-intrinsic":351}],341:[function(require,module,exports){
52359
+ },{"get-intrinsic":353}],343:[function(require,module,exports){
52200
52360
  'use strict';
52201
52361
 
52202
52362
  /** @type {import('./eval')} */
52203
52363
  module.exports = EvalError;
52204
52364
 
52205
- },{}],342:[function(require,module,exports){
52365
+ },{}],344:[function(require,module,exports){
52206
52366
  'use strict';
52207
52367
 
52208
52368
  /** @type {import('.')} */
52209
52369
  module.exports = Error;
52210
52370
 
52211
- },{}],343:[function(require,module,exports){
52371
+ },{}],345:[function(require,module,exports){
52212
52372
  'use strict';
52213
52373
 
52214
52374
  /** @type {import('./range')} */
52215
52375
  module.exports = RangeError;
52216
52376
 
52217
- },{}],344:[function(require,module,exports){
52377
+ },{}],346:[function(require,module,exports){
52218
52378
  'use strict';
52219
52379
 
52220
52380
  /** @type {import('./ref')} */
52221
52381
  module.exports = ReferenceError;
52222
52382
 
52223
- },{}],345:[function(require,module,exports){
52383
+ },{}],347:[function(require,module,exports){
52224
52384
  'use strict';
52225
52385
 
52226
52386
  /** @type {import('./syntax')} */
52227
52387
  module.exports = SyntaxError;
52228
52388
 
52229
- },{}],346:[function(require,module,exports){
52389
+ },{}],348:[function(require,module,exports){
52230
52390
  'use strict';
52231
52391
 
52232
52392
  /** @type {import('./type')} */
52233
52393
  module.exports = TypeError;
52234
52394
 
52235
- },{}],347:[function(require,module,exports){
52395
+ },{}],349:[function(require,module,exports){
52236
52396
  'use strict';
52237
52397
 
52238
52398
  /** @type {import('./uri')} */
52239
52399
  module.exports = URIError;
52240
52400
 
52241
- },{}],348:[function(require,module,exports){
52401
+ },{}],350:[function(require,module,exports){
52242
52402
  'use strict';
52243
52403
 
52244
52404
  var isCallable = require('is-callable');
@@ -52302,7 +52462,7 @@ var forEach = function forEach(list, iterator, thisArg) {
52302
52462
 
52303
52463
  module.exports = forEach;
52304
52464
 
52305
- },{"is-callable":366}],349:[function(require,module,exports){
52465
+ },{"is-callable":368}],351:[function(require,module,exports){
52306
52466
  'use strict';
52307
52467
 
52308
52468
  /* eslint no-invalid-this: 1 */
@@ -52388,9 +52548,9 @@ module.exports = function bind(that) {
52388
52548
  return bound;
52389
52549
  };
52390
52550
 
52391
- },{}],350:[function(require,module,exports){
52392
- arguments[4][337][0].apply(exports,arguments)
52393
- },{"./implementation":349,"dup":337}],351:[function(require,module,exports){
52551
+ },{}],352:[function(require,module,exports){
52552
+ arguments[4][339][0].apply(exports,arguments)
52553
+ },{"./implementation":351,"dup":339}],353:[function(require,module,exports){
52394
52554
  'use strict';
52395
52555
 
52396
52556
  var undefined;
@@ -52751,7 +52911,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
52751
52911
  return value;
52752
52912
  };
52753
52913
 
52754
- },{"es-errors":342,"es-errors/eval":341,"es-errors/range":343,"es-errors/ref":344,"es-errors/syntax":345,"es-errors/type":346,"es-errors/uri":347,"function-bind":350,"has-proto":356,"has-symbols":357,"hasown":363}],352:[function(require,module,exports){
52914
+ },{"es-errors":344,"es-errors/eval":343,"es-errors/range":345,"es-errors/ref":346,"es-errors/syntax":347,"es-errors/type":348,"es-errors/uri":349,"function-bind":352,"has-proto":358,"has-symbols":359,"hasown":365}],354:[function(require,module,exports){
52755
52915
  'use strict';
52756
52916
 
52757
52917
  var GetIntrinsic = require('get-intrinsic');
@@ -52769,13 +52929,13 @@ if ($gOPD) {
52769
52929
 
52770
52930
  module.exports = $gOPD;
52771
52931
 
52772
- },{"get-intrinsic":355}],353:[function(require,module,exports){
52773
- arguments[4][336][0].apply(exports,arguments)
52774
- },{"dup":336}],354:[function(require,module,exports){
52775
- arguments[4][337][0].apply(exports,arguments)
52776
- },{"./implementation":353,"dup":337}],355:[function(require,module,exports){
52932
+ },{"get-intrinsic":357}],355:[function(require,module,exports){
52777
52933
  arguments[4][338][0].apply(exports,arguments)
52778
- },{"dup":338,"function-bind":354,"has":362,"has-symbols":357}],356:[function(require,module,exports){
52934
+ },{"dup":338}],356:[function(require,module,exports){
52935
+ arguments[4][339][0].apply(exports,arguments)
52936
+ },{"./implementation":355,"dup":339}],357:[function(require,module,exports){
52937
+ arguments[4][340][0].apply(exports,arguments)
52938
+ },{"dup":340,"function-bind":356,"has":364,"has-symbols":359}],358:[function(require,module,exports){
52779
52939
  'use strict';
52780
52940
 
52781
52941
  var test = {
@@ -52788,7 +52948,7 @@ module.exports = function hasProto() {
52788
52948
  return { __proto__: test }.foo === test.foo && !({ __proto__: null } instanceof $Object);
52789
52949
  };
52790
52950
 
52791
- },{}],357:[function(require,module,exports){
52951
+ },{}],359:[function(require,module,exports){
52792
52952
  'use strict';
52793
52953
 
52794
52954
  var origSymbol = typeof Symbol !== 'undefined' && Symbol;
@@ -52803,7 +52963,7 @@ module.exports = function hasNativeSymbols() {
52803
52963
  return hasSymbolSham();
52804
52964
  };
52805
52965
 
52806
- },{"./shams":358}],358:[function(require,module,exports){
52966
+ },{"./shams":360}],360:[function(require,module,exports){
52807
52967
  'use strict';
52808
52968
 
52809
52969
  /* eslint complexity: [2, 18], max-statements: [2, 33] */
@@ -52847,7 +53007,7 @@ module.exports = function hasSymbols() {
52847
53007
  return true;
52848
53008
  };
52849
53009
 
52850
- },{}],359:[function(require,module,exports){
53010
+ },{}],361:[function(require,module,exports){
52851
53011
  'use strict';
52852
53012
 
52853
53013
  var hasSymbols = require('has-symbols/shams');
@@ -52856,18 +53016,18 @@ module.exports = function hasToStringTagShams() {
52856
53016
  return hasSymbols() && !!Symbol.toStringTag;
52857
53017
  };
52858
53018
 
52859
- },{"has-symbols/shams":358}],360:[function(require,module,exports){
52860
- arguments[4][336][0].apply(exports,arguments)
52861
- },{"dup":336}],361:[function(require,module,exports){
52862
- arguments[4][337][0].apply(exports,arguments)
52863
- },{"./implementation":360,"dup":337}],362:[function(require,module,exports){
53019
+ },{"has-symbols/shams":360}],362:[function(require,module,exports){
53020
+ arguments[4][338][0].apply(exports,arguments)
53021
+ },{"dup":338}],363:[function(require,module,exports){
53022
+ arguments[4][339][0].apply(exports,arguments)
53023
+ },{"./implementation":362,"dup":339}],364:[function(require,module,exports){
52864
53024
  'use strict';
52865
53025
 
52866
53026
  var bind = require('function-bind');
52867
53027
 
52868
53028
  module.exports = bind.call(Function.call, Object.prototype.hasOwnProperty);
52869
53029
 
52870
- },{"function-bind":361}],363:[function(require,module,exports){
53030
+ },{"function-bind":363}],365:[function(require,module,exports){
52871
53031
  'use strict';
52872
53032
 
52873
53033
  var call = Function.prototype.call;
@@ -52877,7 +53037,7 @@ var bind = require('function-bind');
52877
53037
  /** @type {import('.')} */
52878
53038
  module.exports = bind.call(call, $hasOwn);
52879
53039
 
52880
- },{"function-bind":350}],364:[function(require,module,exports){
53040
+ },{"function-bind":352}],366:[function(require,module,exports){
52881
53041
  if (typeof Object.create === 'function') {
52882
53042
  // implementation from standard node.js 'util' module
52883
53043
  module.exports = function inherits(ctor, superCtor) {
@@ -52906,7 +53066,7 @@ if (typeof Object.create === 'function') {
52906
53066
  }
52907
53067
  }
52908
53068
 
52909
- },{}],365:[function(require,module,exports){
53069
+ },{}],367:[function(require,module,exports){
52910
53070
  'use strict';
52911
53071
 
52912
53072
  var hasToStringTag = require('has-tostringtag/shams')();
@@ -52941,7 +53101,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
52941
53101
 
52942
53102
  module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
52943
53103
 
52944
- },{"call-bind/callBound":334,"has-tostringtag/shams":359}],366:[function(require,module,exports){
53104
+ },{"call-bind/callBound":336,"has-tostringtag/shams":361}],368:[function(require,module,exports){
52945
53105
  'use strict';
52946
53106
 
52947
53107
  var fnToStr = Function.prototype.toString;
@@ -53044,7 +53204,7 @@ module.exports = reflectApply
53044
53204
  return tryFunctionObject(value);
53045
53205
  };
53046
53206
 
53047
- },{}],367:[function(require,module,exports){
53207
+ },{}],369:[function(require,module,exports){
53048
53208
  'use strict';
53049
53209
 
53050
53210
  var toStr = Object.prototype.toString;
@@ -53084,7 +53244,7 @@ module.exports = function isGeneratorFunction(fn) {
53084
53244
  return getProto(fn) === GeneratorFunction;
53085
53245
  };
53086
53246
 
53087
- },{"has-tostringtag/shams":359}],368:[function(require,module,exports){
53247
+ },{"has-tostringtag/shams":361}],370:[function(require,module,exports){
53088
53248
  'use strict';
53089
53249
 
53090
53250
  var whichTypedArray = require('which-typed-array');
@@ -53094,7 +53254,7 @@ module.exports = function isTypedArray(value) {
53094
53254
  return !!whichTypedArray(value);
53095
53255
  };
53096
53256
 
53097
- },{"which-typed-array":382}],369:[function(require,module,exports){
53257
+ },{"which-typed-array":384}],371:[function(require,module,exports){
53098
53258
  (function (global){(function (){
53099
53259
  /**
53100
53260
  * @license
@@ -70307,7 +70467,7 @@ module.exports = function isTypedArray(value) {
70307
70467
  }.call(this));
70308
70468
 
70309
70469
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
70310
- },{}],370:[function(require,module,exports){
70470
+ },{}],372:[function(require,module,exports){
70311
70471
  'use strict';
70312
70472
 
70313
70473
  var keysShim;
@@ -70431,7 +70591,7 @@ if (!Object.keys) {
70431
70591
  }
70432
70592
  module.exports = keysShim;
70433
70593
 
70434
- },{"./isArguments":372}],371:[function(require,module,exports){
70594
+ },{"./isArguments":374}],373:[function(require,module,exports){
70435
70595
  'use strict';
70436
70596
 
70437
70597
  var slice = Array.prototype.slice;
@@ -70465,7 +70625,7 @@ keysShim.shim = function shimObjectKeys() {
70465
70625
 
70466
70626
  module.exports = keysShim;
70467
70627
 
70468
- },{"./implementation":370,"./isArguments":372}],372:[function(require,module,exports){
70628
+ },{"./implementation":372,"./isArguments":374}],374:[function(require,module,exports){
70469
70629
  'use strict';
70470
70630
 
70471
70631
  var toStr = Object.prototype.toString;
@@ -70484,7 +70644,7 @@ module.exports = function isArguments(value) {
70484
70644
  return isArgs;
70485
70645
  };
70486
70646
 
70487
- },{}],373:[function(require,module,exports){
70647
+ },{}],375:[function(require,module,exports){
70488
70648
  'use strict';
70489
70649
 
70490
70650
  // modified from https://github.com/es-shims/es6-shim
@@ -70532,7 +70692,7 @@ module.exports = function assign(target, source1) {
70532
70692
  return to; // step 4
70533
70693
  };
70534
70694
 
70535
- },{"call-bind/callBound":334,"has-symbols/shams":358,"object-keys":371}],374:[function(require,module,exports){
70695
+ },{"call-bind/callBound":336,"has-symbols/shams":360,"object-keys":373}],376:[function(require,module,exports){
70536
70696
  'use strict';
70537
70697
 
70538
70698
  var implementation = require('./implementation');
@@ -70589,7 +70749,7 @@ module.exports = function getPolyfill() {
70589
70749
  return Object.assign;
70590
70750
  };
70591
70751
 
70592
- },{"./implementation":373}],375:[function(require,module,exports){
70752
+ },{"./implementation":375}],377:[function(require,module,exports){
70593
70753
  'use strict';
70594
70754
 
70595
70755
  /** @type {import('.')} */
@@ -70607,7 +70767,7 @@ module.exports = [
70607
70767
  'BigUint64Array'
70608
70768
  ];
70609
70769
 
70610
- },{}],376:[function(require,module,exports){
70770
+ },{}],378:[function(require,module,exports){
70611
70771
  // shim for using process in browser
70612
70772
  var process = module.exports = {};
70613
70773
 
@@ -70793,7 +70953,7 @@ process.chdir = function (dir) {
70793
70953
  };
70794
70954
  process.umask = function() { return 0; };
70795
70955
 
70796
- },{}],377:[function(require,module,exports){
70956
+ },{}],379:[function(require,module,exports){
70797
70957
  'use strict';
70798
70958
 
70799
70959
  var GetIntrinsic = require('get-intrinsic');
@@ -70837,7 +70997,7 @@ module.exports = function setFunctionLength(fn, length) {
70837
70997
  return fn;
70838
70998
  };
70839
70999
 
70840
- },{"define-data-property":339,"es-errors/type":346,"get-intrinsic":351,"gopd":352,"has-property-descriptors":378}],378:[function(require,module,exports){
71000
+ },{"define-data-property":341,"es-errors/type":348,"get-intrinsic":353,"gopd":354,"has-property-descriptors":380}],380:[function(require,module,exports){
70841
71001
  'use strict';
70842
71002
 
70843
71003
  var $defineProperty = require('es-define-property');
@@ -70861,9 +71021,9 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
70861
71021
 
70862
71022
  module.exports = hasPropertyDescriptors;
70863
71023
 
70864
- },{"es-define-property":340}],379:[function(require,module,exports){
70865
- arguments[4][330][0].apply(exports,arguments)
70866
- },{"dup":330}],380:[function(require,module,exports){
71024
+ },{"es-define-property":342}],381:[function(require,module,exports){
71025
+ arguments[4][332][0].apply(exports,arguments)
71026
+ },{"dup":332}],382:[function(require,module,exports){
70867
71027
  // Currently in sync with Node.js lib/internal/util/types.js
70868
71028
  // https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
70869
71029
 
@@ -71199,7 +71359,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
71199
71359
  });
71200
71360
  });
71201
71361
 
71202
- },{"is-arguments":365,"is-generator-function":367,"is-typed-array":368,"which-typed-array":382}],381:[function(require,module,exports){
71362
+ },{"is-arguments":367,"is-generator-function":369,"is-typed-array":370,"which-typed-array":384}],383:[function(require,module,exports){
71203
71363
  (function (process){(function (){
71204
71364
  // Copyright Joyent, Inc. and other Node contributors.
71205
71365
  //
@@ -71918,7 +72078,7 @@ function callbackify(original) {
71918
72078
  exports.callbackify = callbackify;
71919
72079
 
71920
72080
  }).call(this)}).call(this,require('_process'))
71921
- },{"./support/isBuffer":379,"./support/types":380,"_process":376,"inherits":364}],382:[function(require,module,exports){
72081
+ },{"./support/isBuffer":381,"./support/types":382,"_process":378,"inherits":366}],384:[function(require,module,exports){
71922
72082
  (function (global){(function (){
71923
72083
  'use strict';
71924
72084
 
@@ -72038,9 +72198,9 @@ module.exports = function whichTypedArray(value) {
72038
72198
  };
72039
72199
 
72040
72200
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
72041
- },{"available-typed-arrays":332,"call-bind":384,"call-bind/callBound":383,"for-each":348,"gopd":352,"has-tostringtag/shams":385}],383:[function(require,module,exports){
72042
- arguments[4][334][0].apply(exports,arguments)
72043
- },{"./":384,"dup":334,"get-intrinsic":351}],384:[function(require,module,exports){
72201
+ },{"available-typed-arrays":334,"call-bind":386,"call-bind/callBound":385,"for-each":350,"gopd":354,"has-tostringtag/shams":387}],385:[function(require,module,exports){
72202
+ arguments[4][336][0].apply(exports,arguments)
72203
+ },{"./":386,"dup":336,"get-intrinsic":353}],386:[function(require,module,exports){
72044
72204
  'use strict';
72045
72205
 
72046
72206
  var bind = require('function-bind');
@@ -72077,7 +72237,7 @@ if ($defineProperty) {
72077
72237
  module.exports.apply = applyBind;
72078
72238
  }
72079
72239
 
72080
- },{"es-define-property":340,"es-errors/type":346,"function-bind":350,"get-intrinsic":351,"set-function-length":377}],385:[function(require,module,exports){
72240
+ },{"es-define-property":342,"es-errors/type":348,"function-bind":352,"get-intrinsic":353,"set-function-length":379}],387:[function(require,module,exports){
72081
72241
  'use strict';
72082
72242
 
72083
72243
  var hasSymbols = require('has-symbols/shams');
@@ -72087,5 +72247,5 @@ module.exports = function hasToStringTagShams() {
72087
72247
  return hasSymbols() && !!Symbol.toStringTag;
72088
72248
  };
72089
72249
 
72090
- },{"has-symbols/shams":358}]},{},[110])(110)
72250
+ },{"has-symbols/shams":360}]},{},[112])(112)
72091
72251
  });