@designliquido/delegua 0.38.0 → 0.38.2

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 (46) 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 +109 -14
  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/binario.d.ts +3 -1
  26. package/construtos/binario.d.ts.map +1 -1
  27. package/construtos/binario.js +16 -0
  28. package/construtos/binario.js.map +1 -1
  29. package/construtos/construto.d.ts +1 -0
  30. package/construtos/construto.d.ts.map +1 -1
  31. package/construtos/variavel.d.ts +2 -1
  32. package/construtos/variavel.d.ts.map +1 -1
  33. package/construtos/variavel.js +2 -1
  34. package/construtos/variavel.js.map +1 -1
  35. package/inferenciador.d.ts.map +1 -1
  36. package/inferenciador.js +26 -17
  37. package/inferenciador.js.map +1 -1
  38. package/interpretador/interpretador-base.d.ts.map +1 -1
  39. package/interpretador/interpretador-base.js +8 -7
  40. package/interpretador/interpretador-base.js.map +1 -1
  41. package/package.json +1 -1
  42. package/tipos-de-dados/delegua.d.ts +3 -0
  43. package/tipos-de-dados/delegua.d.ts.map +1 -1
  44. package/tipos-de-dados/delegua.js +3 -0
  45. package/tipos-de-dados/delegua.js.map +1 -1
  46. package/umd/delegua.js +608 -432
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();
@@ -502,7 +514,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
502
514
  let expressao = this.bitOu();
503
515
  while (this.verificarSeSimboloAtualEIgualA(delegua_2.default.MAIOR, delegua_2.default.MAIOR_IGUAL, delegua_2.default.MENOR, delegua_2.default.MENOR_IGUAL)) {
504
516
  const operador = this.simbolos[this.atual - 1];
505
- const direito = this.bitOu(); // Única diferença entre esta implementação e base.
517
+ const direito = this.bitOu();
506
518
  expressao = new construtos_1.Binario(this.hashArquivo, expressao, operador, direito);
507
519
  }
508
520
  return expressao;
@@ -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;
@@ -4096,11 +4242,27 @@ exports.Binario = void 0;
4096
4242
  */
4097
4243
  class Binario {
4098
4244
  constructor(hashArquivo, esquerda, operador, direita) {
4245
+ this.tipo = 'qualquer';
4099
4246
  this.linha = esquerda.linha;
4100
4247
  this.hashArquivo = hashArquivo;
4101
4248
  this.esquerda = esquerda;
4102
4249
  this.operador = operador;
4103
4250
  this.direita = direita;
4251
+ this.tipo = this.deduzirTipo();
4252
+ }
4253
+ deduzirTipo() {
4254
+ if (['logico', 'lógico'].includes(this.esquerda.tipo) || ['logico', 'lógico'].includes(this.direita.tipo)) {
4255
+ return 'lógico';
4256
+ }
4257
+ if (this.esquerda.tipo === 'texto' || this.direita.tipo === 'texto') {
4258
+ return 'texto';
4259
+ }
4260
+ if (this.esquerda.tipo === 'inteiro' && this.direita.tipo === 'inteiro') {
4261
+ return 'inteiro';
4262
+ }
4263
+ if (['numero', 'número'].includes(this.esquerda.tipo) || ['numero', 'número'].includes(this.direita.tipo)) {
4264
+ return 'número';
4265
+ }
4104
4266
  }
4105
4267
  async aceitar(visitante) {
4106
4268
  return await visitante.visitarExpressaoBinaria(this);
@@ -4108,7 +4270,7 @@ class Binario {
4108
4270
  }
4109
4271
  exports.Binario = Binario;
4110
4272
 
4111
- },{}],28:[function(require,module,exports){
4273
+ },{}],30:[function(require,module,exports){
4112
4274
  "use strict";
4113
4275
  Object.defineProperty(exports, "__esModule", { value: true });
4114
4276
  exports.Chamada = void 0;
@@ -4131,7 +4293,7 @@ class Chamada {
4131
4293
  }
4132
4294
  exports.Chamada = Chamada;
4133
4295
 
4134
- },{"../geracao-identificadores":109}],29:[function(require,module,exports){
4296
+ },{"../geracao-identificadores":111}],31:[function(require,module,exports){
4135
4297
  "use strict";
4136
4298
  Object.defineProperty(exports, "__esModule", { value: true });
4137
4299
  exports.Comentario = void 0;
@@ -4153,7 +4315,7 @@ class Comentario {
4153
4315
  }
4154
4316
  exports.Comentario = Comentario;
4155
4317
 
4156
- },{}],30:[function(require,module,exports){
4318
+ },{}],32:[function(require,module,exports){
4157
4319
  "use strict";
4158
4320
  Object.defineProperty(exports, "__esModule", { value: true });
4159
4321
  exports.Constante = void 0;
@@ -4172,11 +4334,11 @@ class Constante {
4172
4334
  }
4173
4335
  exports.Constante = Constante;
4174
4336
 
4175
- },{}],31:[function(require,module,exports){
4337
+ },{}],33:[function(require,module,exports){
4176
4338
  "use strict";
4177
4339
  Object.defineProperty(exports, "__esModule", { value: true });
4178
4340
 
4179
- },{}],32:[function(require,module,exports){
4341
+ },{}],34:[function(require,module,exports){
4180
4342
  "use strict";
4181
4343
  Object.defineProperty(exports, "__esModule", { value: true });
4182
4344
  exports.Decorador = void 0;
@@ -4197,7 +4359,7 @@ class Decorador {
4197
4359
  }
4198
4360
  exports.Decorador = Decorador;
4199
4361
 
4200
- },{}],33:[function(require,module,exports){
4362
+ },{}],35:[function(require,module,exports){
4201
4363
  "use strict";
4202
4364
  Object.defineProperty(exports, "__esModule", { value: true });
4203
4365
  exports.DefinirValor = void 0;
@@ -4215,7 +4377,7 @@ class DefinirValor {
4215
4377
  }
4216
4378
  exports.DefinirValor = DefinirValor;
4217
4379
 
4218
- },{}],34:[function(require,module,exports){
4380
+ },{}],36:[function(require,module,exports){
4219
4381
  "use strict";
4220
4382
  Object.defineProperty(exports, "__esModule", { value: true });
4221
4383
  exports.Dicionario = void 0;
@@ -4232,7 +4394,7 @@ class Dicionario {
4232
4394
  }
4233
4395
  exports.Dicionario = Dicionario;
4234
4396
 
4235
- },{}],35:[function(require,module,exports){
4397
+ },{}],37:[function(require,module,exports){
4236
4398
  "use strict";
4237
4399
  Object.defineProperty(exports, "__esModule", { value: true });
4238
4400
  exports.ExpressaoRegular = void 0;
@@ -4249,7 +4411,7 @@ class ExpressaoRegular {
4249
4411
  }
4250
4412
  exports.ExpressaoRegular = ExpressaoRegular;
4251
4413
 
4252
- },{}],36:[function(require,module,exports){
4414
+ },{}],38:[function(require,module,exports){
4253
4415
  "use strict";
4254
4416
  Object.defineProperty(exports, "__esModule", { value: true });
4255
4417
  exports.FimPara = void 0;
@@ -4276,7 +4438,7 @@ class FimPara {
4276
4438
  }
4277
4439
  exports.FimPara = FimPara;
4278
4440
 
4279
- },{}],37:[function(require,module,exports){
4441
+ },{}],39:[function(require,module,exports){
4280
4442
  "use strict";
4281
4443
  Object.defineProperty(exports, "__esModule", { value: true });
4282
4444
  exports.FormatacaoEscrita = void 0;
@@ -4299,7 +4461,7 @@ class FormatacaoEscrita {
4299
4461
  }
4300
4462
  exports.FormatacaoEscrita = FormatacaoEscrita;
4301
4463
 
4302
- },{}],38:[function(require,module,exports){
4464
+ },{}],40:[function(require,module,exports){
4303
4465
  "use strict";
4304
4466
  Object.defineProperty(exports, "__esModule", { value: true });
4305
4467
  exports.FuncaoConstruto = void 0;
@@ -4317,7 +4479,7 @@ class FuncaoConstruto {
4317
4479
  }
4318
4480
  exports.FuncaoConstruto = FuncaoConstruto;
4319
4481
 
4320
- },{}],39:[function(require,module,exports){
4482
+ },{}],41:[function(require,module,exports){
4321
4483
  "use strict";
4322
4484
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4323
4485
  if (k2 === undefined) k2 = k;
@@ -4364,7 +4526,7 @@ __exportStar(require("./variavel"), exports);
4364
4526
  __exportStar(require("./vetor"), exports);
4365
4527
  __exportStar(require("./qual-tipo"), exports);
4366
4528
 
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){
4529
+ },{"./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
4530
  "use strict";
4369
4531
  Object.defineProperty(exports, "__esModule", { value: true });
4370
4532
  exports.Isto = void 0;
@@ -4380,7 +4542,7 @@ class Isto {
4380
4542
  }
4381
4543
  exports.Isto = Isto;
4382
4544
 
4383
- },{}],41:[function(require,module,exports){
4545
+ },{}],43:[function(require,module,exports){
4384
4546
  "use strict";
4385
4547
  Object.defineProperty(exports, "__esModule", { value: true });
4386
4548
  exports.Literal = void 0;
@@ -4397,7 +4559,7 @@ class Literal {
4397
4559
  }
4398
4560
  exports.Literal = Literal;
4399
4561
 
4400
- },{}],42:[function(require,module,exports){
4562
+ },{}],44:[function(require,module,exports){
4401
4563
  "use strict";
4402
4564
  Object.defineProperty(exports, "__esModule", { value: true });
4403
4565
  exports.Logico = void 0;
@@ -4415,7 +4577,7 @@ class Logico {
4415
4577
  }
4416
4578
  exports.Logico = Logico;
4417
4579
 
4418
- },{}],43:[function(require,module,exports){
4580
+ },{}],45:[function(require,module,exports){
4419
4581
  "use strict";
4420
4582
  Object.defineProperty(exports, "__esModule", { value: true });
4421
4583
  exports.QualTipo = void 0;
@@ -4433,7 +4595,7 @@ class QualTipo {
4433
4595
  }
4434
4596
  exports.QualTipo = QualTipo;
4435
4597
 
4436
- },{}],44:[function(require,module,exports){
4598
+ },{}],46:[function(require,module,exports){
4437
4599
  "use strict";
4438
4600
  Object.defineProperty(exports, "__esModule", { value: true });
4439
4601
  exports.Super = void 0;
@@ -4450,7 +4612,7 @@ class Super {
4450
4612
  }
4451
4613
  exports.Super = Super;
4452
4614
 
4453
- },{}],45:[function(require,module,exports){
4615
+ },{}],47:[function(require,module,exports){
4454
4616
  "use strict";
4455
4617
  Object.defineProperty(exports, "__esModule", { value: true });
4456
4618
  exports.TipoDe = void 0;
@@ -4467,7 +4629,7 @@ class TipoDe {
4467
4629
  }
4468
4630
  exports.TipoDe = TipoDe;
4469
4631
 
4470
- },{}],46:[function(require,module,exports){
4632
+ },{}],48:[function(require,module,exports){
4471
4633
  "use strict";
4472
4634
  Object.defineProperty(exports, "__esModule", { value: true });
4473
4635
  exports.Deceto = void 0;
@@ -4501,7 +4663,7 @@ class Deceto extends tupla_1.Tupla {
4501
4663
  }
4502
4664
  exports.Deceto = Deceto;
4503
4665
 
4504
- },{"./tupla":56}],47:[function(require,module,exports){
4666
+ },{"./tupla":58}],49:[function(require,module,exports){
4505
4667
  "use strict";
4506
4668
  Object.defineProperty(exports, "__esModule", { value: true });
4507
4669
  exports.Dupla = void 0;
@@ -4515,7 +4677,7 @@ class Dupla extends tupla_1.Tupla {
4515
4677
  }
4516
4678
  exports.Dupla = Dupla;
4517
4679
 
4518
- },{"./tupla":56}],48:[function(require,module,exports){
4680
+ },{"./tupla":58}],50:[function(require,module,exports){
4519
4681
  "use strict";
4520
4682
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4521
4683
  if (k2 === undefined) k2 = k;
@@ -4584,7 +4746,7 @@ class SeletorTuplas {
4584
4746
  }
4585
4747
  exports.SeletorTuplas = SeletorTuplas;
4586
4748
 
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){
4749
+ },{"./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
4750
  "use strict";
4589
4751
  Object.defineProperty(exports, "__esModule", { value: true });
4590
4752
  exports.Noneto = void 0;
@@ -4611,7 +4773,7 @@ class Noneto extends tupla_1.Tupla {
4611
4773
  }
4612
4774
  exports.Noneto = Noneto;
4613
4775
 
4614
- },{"./tupla":56}],50:[function(require,module,exports){
4776
+ },{"./tupla":58}],52:[function(require,module,exports){
4615
4777
  "use strict";
4616
4778
  Object.defineProperty(exports, "__esModule", { value: true });
4617
4779
  exports.Octeto = void 0;
@@ -4637,7 +4799,7 @@ class Octeto extends tupla_1.Tupla {
4637
4799
  }
4638
4800
  exports.Octeto = Octeto;
4639
4801
 
4640
- },{"./tupla":56}],51:[function(require,module,exports){
4802
+ },{"./tupla":58}],53:[function(require,module,exports){
4641
4803
  "use strict";
4642
4804
  Object.defineProperty(exports, "__esModule", { value: true });
4643
4805
  exports.Quarteto = void 0;
@@ -4653,7 +4815,7 @@ class Quarteto extends tupla_1.Tupla {
4653
4815
  }
4654
4816
  exports.Quarteto = Quarteto;
4655
4817
 
4656
- },{"./tupla":56}],52:[function(require,module,exports){
4818
+ },{"./tupla":58}],54:[function(require,module,exports){
4657
4819
  "use strict";
4658
4820
  Object.defineProperty(exports, "__esModule", { value: true });
4659
4821
  exports.Quinteto = void 0;
@@ -4670,7 +4832,7 @@ class Quinteto extends tupla_1.Tupla {
4670
4832
  }
4671
4833
  exports.Quinteto = Quinteto;
4672
4834
 
4673
- },{"./tupla":56}],53:[function(require,module,exports){
4835
+ },{"./tupla":58}],55:[function(require,module,exports){
4674
4836
  "use strict";
4675
4837
  Object.defineProperty(exports, "__esModule", { value: true });
4676
4838
  exports.Septeto = void 0;
@@ -4695,7 +4857,7 @@ class Septeto extends tupla_1.Tupla {
4695
4857
  }
4696
4858
  exports.Septeto = Septeto;
4697
4859
 
4698
- },{"./tupla":56}],54:[function(require,module,exports){
4860
+ },{"./tupla":58}],56:[function(require,module,exports){
4699
4861
  "use strict";
4700
4862
  Object.defineProperty(exports, "__esModule", { value: true });
4701
4863
  exports.Sexteto = void 0;
@@ -4713,7 +4875,7 @@ class Sexteto extends tupla_1.Tupla {
4713
4875
  }
4714
4876
  exports.Sexteto = Sexteto;
4715
4877
 
4716
- },{"./tupla":56}],55:[function(require,module,exports){
4878
+ },{"./tupla":58}],57:[function(require,module,exports){
4717
4879
  "use strict";
4718
4880
  Object.defineProperty(exports, "__esModule", { value: true });
4719
4881
  exports.Trio = void 0;
@@ -4728,7 +4890,7 @@ class Trio extends tupla_1.Tupla {
4728
4890
  }
4729
4891
  exports.Trio = Trio;
4730
4892
 
4731
- },{"./tupla":56}],56:[function(require,module,exports){
4893
+ },{"./tupla":58}],58:[function(require,module,exports){
4732
4894
  "use strict";
4733
4895
  Object.defineProperty(exports, "__esModule", { value: true });
4734
4896
  exports.Tupla = void 0;
@@ -4739,7 +4901,7 @@ class Tupla {
4739
4901
  }
4740
4902
  exports.Tupla = Tupla;
4741
4903
 
4742
- },{}],57:[function(require,module,exports){
4904
+ },{}],59:[function(require,module,exports){
4743
4905
  "use strict";
4744
4906
  Object.defineProperty(exports, "__esModule", { value: true });
4745
4907
  exports.Unario = void 0;
@@ -4757,15 +4919,16 @@ class Unario {
4757
4919
  }
4758
4920
  exports.Unario = Unario;
4759
4921
 
4760
- },{}],58:[function(require,module,exports){
4922
+ },{}],60:[function(require,module,exports){
4761
4923
  "use strict";
4762
4924
  Object.defineProperty(exports, "__esModule", { value: true });
4763
4925
  exports.Variavel = void 0;
4764
4926
  class Variavel {
4765
- constructor(hashArquivo, simbolo) {
4927
+ constructor(hashArquivo, simbolo, tipo = 'qualquer') {
4766
4928
  this.linha = Number(simbolo.linha);
4767
4929
  this.hashArquivo = hashArquivo;
4768
4930
  this.simbolo = simbolo;
4931
+ this.tipo = tipo;
4769
4932
  }
4770
4933
  async aceitar(visitante) {
4771
4934
  return Promise.resolve(visitante.visitarExpressaoDeVariavel(this));
@@ -4773,7 +4936,7 @@ class Variavel {
4773
4936
  }
4774
4937
  exports.Variavel = Variavel;
4775
4938
 
4776
- },{}],59:[function(require,module,exports){
4939
+ },{}],61:[function(require,module,exports){
4777
4940
  "use strict";
4778
4941
  Object.defineProperty(exports, "__esModule", { value: true });
4779
4942
  exports.Vetor = void 0;
@@ -4796,7 +4959,7 @@ class Vetor {
4796
4959
  }
4797
4960
  exports.Vetor = Vetor;
4798
4961
 
4799
- },{}],60:[function(require,module,exports){
4962
+ },{}],62:[function(require,module,exports){
4800
4963
  "use strict";
4801
4964
  Object.defineProperty(exports, "__esModule", { value: true });
4802
4965
  exports.Aleatorio = void 0;
@@ -4813,7 +4976,7 @@ class Aleatorio extends declaracao_1.Declaracao {
4813
4976
  }
4814
4977
  exports.Aleatorio = Aleatorio;
4815
4978
 
4816
- },{"./declaracao":67}],61:[function(require,module,exports){
4979
+ },{"./declaracao":69}],63:[function(require,module,exports){
4817
4980
  "use strict";
4818
4981
  Object.defineProperty(exports, "__esModule", { value: true });
4819
4982
  exports.Bloco = void 0;
@@ -4829,7 +4992,7 @@ class Bloco extends declaracao_1.Declaracao {
4829
4992
  }
4830
4993
  exports.Bloco = Bloco;
4831
4994
 
4832
- },{"./declaracao":67}],62:[function(require,module,exports){
4995
+ },{"./declaracao":69}],64:[function(require,module,exports){
4833
4996
  "use strict";
4834
4997
  Object.defineProperty(exports, "__esModule", { value: true });
4835
4998
  exports.CabecalhoPrograma = void 0;
@@ -4845,7 +5008,7 @@ class CabecalhoPrograma extends declaracao_1.Declaracao {
4845
5008
  }
4846
5009
  exports.CabecalhoPrograma = CabecalhoPrograma;
4847
5010
 
4848
- },{"./declaracao":67}],63:[function(require,module,exports){
5011
+ },{"./declaracao":69}],65:[function(require,module,exports){
4849
5012
  "use strict";
4850
5013
  Object.defineProperty(exports, "__esModule", { value: true });
4851
5014
  exports.Classe = void 0;
@@ -4865,7 +5028,7 @@ class Classe extends declaracao_1.Declaracao {
4865
5028
  }
4866
5029
  exports.Classe = Classe;
4867
5030
 
4868
- },{"./declaracao":67}],64:[function(require,module,exports){
5031
+ },{"./declaracao":69}],66:[function(require,module,exports){
4869
5032
  "use strict";
4870
5033
  Object.defineProperty(exports, "__esModule", { value: true });
4871
5034
  exports.ConstMultiplo = void 0;
@@ -4886,7 +5049,7 @@ class ConstMultiplo extends declaracao_1.Declaracao {
4886
5049
  }
4887
5050
  exports.ConstMultiplo = ConstMultiplo;
4888
5051
 
4889
- },{"./declaracao":67}],65:[function(require,module,exports){
5052
+ },{"./declaracao":69}],67:[function(require,module,exports){
4890
5053
  "use strict";
4891
5054
  Object.defineProperty(exports, "__esModule", { value: true });
4892
5055
  exports.Const = void 0;
@@ -4907,7 +5070,7 @@ class Const extends declaracao_1.Declaracao {
4907
5070
  }
4908
5071
  exports.Const = Const;
4909
5072
 
4910
- },{"./declaracao":67}],66:[function(require,module,exports){
5073
+ },{"./declaracao":69}],68:[function(require,module,exports){
4911
5074
  "use strict";
4912
5075
  Object.defineProperty(exports, "__esModule", { value: true });
4913
5076
  exports.Continua = void 0;
@@ -4922,7 +5085,7 @@ class Continua extends declaracao_1.Declaracao {
4922
5085
  }
4923
5086
  exports.Continua = Continua;
4924
5087
 
4925
- },{"./declaracao":67}],67:[function(require,module,exports){
5088
+ },{"./declaracao":69}],69:[function(require,module,exports){
4926
5089
  "use strict";
4927
5090
  Object.defineProperty(exports, "__esModule", { value: true });
4928
5091
  exports.Declaracao = void 0;
@@ -4942,7 +5105,7 @@ class Declaracao {
4942
5105
  }
4943
5106
  exports.Declaracao = Declaracao;
4944
5107
 
4945
- },{}],68:[function(require,module,exports){
5108
+ },{}],70:[function(require,module,exports){
4946
5109
  "use strict";
4947
5110
  Object.defineProperty(exports, "__esModule", { value: true });
4948
5111
  exports.Enquanto = void 0;
@@ -4959,7 +5122,7 @@ class Enquanto extends declaracao_1.Declaracao {
4959
5122
  }
4960
5123
  exports.Enquanto = Enquanto;
4961
5124
 
4962
- },{"./declaracao":67}],69:[function(require,module,exports){
5125
+ },{"./declaracao":69}],71:[function(require,module,exports){
4963
5126
  "use strict";
4964
5127
  Object.defineProperty(exports, "__esModule", { value: true });
4965
5128
  exports.Escolha = void 0;
@@ -4980,7 +5143,7 @@ class Escolha extends declaracao_1.Declaracao {
4980
5143
  }
4981
5144
  exports.Escolha = Escolha;
4982
5145
 
4983
- },{"./declaracao":67}],70:[function(require,module,exports){
5146
+ },{"./declaracao":69}],72:[function(require,module,exports){
4984
5147
  "use strict";
4985
5148
  Object.defineProperty(exports, "__esModule", { value: true });
4986
5149
  exports.EscrevaMesmaLinha = void 0;
@@ -4996,7 +5159,7 @@ class EscrevaMesmaLinha extends declaracao_1.Declaracao {
4996
5159
  }
4997
5160
  exports.EscrevaMesmaLinha = EscrevaMesmaLinha;
4998
5161
 
4999
- },{"./declaracao":67}],71:[function(require,module,exports){
5162
+ },{"./declaracao":69}],73:[function(require,module,exports){
5000
5163
  "use strict";
5001
5164
  Object.defineProperty(exports, "__esModule", { value: true });
5002
5165
  exports.Escreva = void 0;
@@ -5012,7 +5175,7 @@ class Escreva extends declaracao_1.Declaracao {
5012
5175
  }
5013
5176
  exports.Escreva = Escreva;
5014
5177
 
5015
- },{"./declaracao":67}],72:[function(require,module,exports){
5178
+ },{"./declaracao":69}],74:[function(require,module,exports){
5016
5179
  "use strict";
5017
5180
  Object.defineProperty(exports, "__esModule", { value: true });
5018
5181
  exports.Expressao = void 0;
@@ -5028,7 +5191,7 @@ class Expressao extends declaracao_1.Declaracao {
5028
5191
  }
5029
5192
  exports.Expressao = Expressao;
5030
5193
 
5031
- },{"./declaracao":67}],73:[function(require,module,exports){
5194
+ },{"./declaracao":69}],75:[function(require,module,exports){
5032
5195
  "use strict";
5033
5196
  Object.defineProperty(exports, "__esModule", { value: true });
5034
5197
  exports.Falhar = void 0;
@@ -5045,7 +5208,7 @@ class Falhar extends declaracao_1.Declaracao {
5045
5208
  }
5046
5209
  exports.Falhar = Falhar;
5047
5210
 
5048
- },{"./declaracao":67}],74:[function(require,module,exports){
5211
+ },{"./declaracao":69}],76:[function(require,module,exports){
5049
5212
  "use strict";
5050
5213
  Object.defineProperty(exports, "__esModule", { value: true });
5051
5214
  exports.Fazer = void 0;
@@ -5062,7 +5225,7 @@ class Fazer extends declaracao_1.Declaracao {
5062
5225
  }
5063
5226
  exports.Fazer = Fazer;
5064
5227
 
5065
- },{"./declaracao":67}],75:[function(require,module,exports){
5228
+ },{"./declaracao":69}],77:[function(require,module,exports){
5066
5229
  "use strict";
5067
5230
  Object.defineProperty(exports, "__esModule", { value: true });
5068
5231
  exports.FuncaoDeclaracao = void 0;
@@ -5081,7 +5244,7 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
5081
5244
  }
5082
5245
  exports.FuncaoDeclaracao = FuncaoDeclaracao;
5083
5246
 
5084
- },{"./declaracao":67}],76:[function(require,module,exports){
5247
+ },{"./declaracao":69}],78:[function(require,module,exports){
5085
5248
  "use strict";
5086
5249
  Object.defineProperty(exports, "__esModule", { value: true });
5087
5250
  exports.Importar = void 0;
@@ -5098,7 +5261,7 @@ class Importar extends declaracao_1.Declaracao {
5098
5261
  }
5099
5262
  exports.Importar = Importar;
5100
5263
 
5101
- },{"./declaracao":67}],77:[function(require,module,exports){
5264
+ },{"./declaracao":69}],79:[function(require,module,exports){
5102
5265
  "use strict";
5103
5266
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5104
5267
  if (k2 === undefined) k2 = k;
@@ -5147,7 +5310,7 @@ __exportStar(require("./var"), exports);
5147
5310
  __exportStar(require("./var-multiplo"), exports);
5148
5311
  __exportStar(require("./aleatorio"), exports);
5149
5312
 
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){
5313
+ },{"./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
5314
  "use strict";
5152
5315
  Object.defineProperty(exports, "__esModule", { value: true });
5153
5316
  exports.InicioAlgoritmo = void 0;
@@ -5162,7 +5325,7 @@ class InicioAlgoritmo extends declaracao_1.Declaracao {
5162
5325
  }
5163
5326
  exports.InicioAlgoritmo = InicioAlgoritmo;
5164
5327
 
5165
- },{"./declaracao":67}],79:[function(require,module,exports){
5328
+ },{"./declaracao":69}],81:[function(require,module,exports){
5166
5329
  "use strict";
5167
5330
  Object.defineProperty(exports, "__esModule", { value: true });
5168
5331
  exports.LeiaMultiplo = void 0;
@@ -5185,7 +5348,7 @@ class LeiaMultiplo extends declaracao_1.Declaracao {
5185
5348
  }
5186
5349
  exports.LeiaMultiplo = LeiaMultiplo;
5187
5350
 
5188
- },{"../geracao-identificadores":109,"./declaracao":67}],80:[function(require,module,exports){
5351
+ },{"../geracao-identificadores":111,"./declaracao":69}],82:[function(require,module,exports){
5189
5352
  "use strict";
5190
5353
  Object.defineProperty(exports, "__esModule", { value: true });
5191
5354
  exports.Leia = void 0;
@@ -5208,7 +5371,7 @@ class Leia extends declaracao_1.Declaracao {
5208
5371
  }
5209
5372
  exports.Leia = Leia;
5210
5373
 
5211
- },{"../geracao-identificadores":109,"./declaracao":67}],81:[function(require,module,exports){
5374
+ },{"../geracao-identificadores":111,"./declaracao":69}],83:[function(require,module,exports){
5212
5375
  "use strict";
5213
5376
  Object.defineProperty(exports, "__esModule", { value: true });
5214
5377
  exports.ParaCada = void 0;
@@ -5227,7 +5390,7 @@ class ParaCada extends declaracao_1.Declaracao {
5227
5390
  }
5228
5391
  exports.ParaCada = ParaCada;
5229
5392
 
5230
- },{"./declaracao":67}],82:[function(require,module,exports){
5393
+ },{"./declaracao":69}],84:[function(require,module,exports){
5231
5394
  "use strict";
5232
5395
  Object.defineProperty(exports, "__esModule", { value: true });
5233
5396
  exports.Para = void 0;
@@ -5253,7 +5416,7 @@ class Para extends declaracao_1.Declaracao {
5253
5416
  }
5254
5417
  exports.Para = Para;
5255
5418
 
5256
- },{"./declaracao":67}],83:[function(require,module,exports){
5419
+ },{"./declaracao":69}],85:[function(require,module,exports){
5257
5420
  "use strict";
5258
5421
  Object.defineProperty(exports, "__esModule", { value: true });
5259
5422
  exports.PropriedadeClasse = void 0;
@@ -5271,7 +5434,7 @@ class PropriedadeClasse extends declaracao_1.Declaracao {
5271
5434
  }
5272
5435
  exports.PropriedadeClasse = PropriedadeClasse;
5273
5436
 
5274
- },{"./declaracao":67}],84:[function(require,module,exports){
5437
+ },{"./declaracao":69}],86:[function(require,module,exports){
5275
5438
  "use strict";
5276
5439
  Object.defineProperty(exports, "__esModule", { value: true });
5277
5440
  exports.Retorna = void 0;
@@ -5288,7 +5451,7 @@ class Retorna extends declaracao_1.Declaracao {
5288
5451
  }
5289
5452
  exports.Retorna = Retorna;
5290
5453
 
5291
- },{"./declaracao":67}],85:[function(require,module,exports){
5454
+ },{"./declaracao":69}],87:[function(require,module,exports){
5292
5455
  "use strict";
5293
5456
  Object.defineProperty(exports, "__esModule", { value: true });
5294
5457
  exports.Se = void 0;
@@ -5307,7 +5470,7 @@ class Se extends declaracao_1.Declaracao {
5307
5470
  }
5308
5471
  exports.Se = Se;
5309
5472
 
5310
- },{"./declaracao":67}],86:[function(require,module,exports){
5473
+ },{"./declaracao":69}],88:[function(require,module,exports){
5311
5474
  "use strict";
5312
5475
  Object.defineProperty(exports, "__esModule", { value: true });
5313
5476
  exports.Sustar = void 0;
@@ -5322,7 +5485,7 @@ class Sustar extends declaracao_1.Declaracao {
5322
5485
  }
5323
5486
  exports.Sustar = Sustar;
5324
5487
 
5325
- },{"./declaracao":67}],87:[function(require,module,exports){
5488
+ },{"./declaracao":69}],89:[function(require,module,exports){
5326
5489
  "use strict";
5327
5490
  Object.defineProperty(exports, "__esModule", { value: true });
5328
5491
  exports.TendoComo = void 0;
@@ -5345,7 +5508,7 @@ class TendoComo extends declaracao_1.Declaracao {
5345
5508
  }
5346
5509
  exports.TendoComo = TendoComo;
5347
5510
 
5348
- },{"./declaracao":67}],88:[function(require,module,exports){
5511
+ },{"./declaracao":69}],90:[function(require,module,exports){
5349
5512
  "use strict";
5350
5513
  Object.defineProperty(exports, "__esModule", { value: true });
5351
5514
  exports.Tente = void 0;
@@ -5367,7 +5530,7 @@ class Tente extends declaracao_1.Declaracao {
5367
5530
  }
5368
5531
  exports.Tente = Tente;
5369
5532
 
5370
- },{"./declaracao":67}],89:[function(require,module,exports){
5533
+ },{"./declaracao":69}],91:[function(require,module,exports){
5371
5534
  "use strict";
5372
5535
  Object.defineProperty(exports, "__esModule", { value: true });
5373
5536
  exports.VarMultiplo = void 0;
@@ -5389,7 +5552,7 @@ class VarMultiplo extends declaracao_1.Declaracao {
5389
5552
  }
5390
5553
  exports.VarMultiplo = VarMultiplo;
5391
5554
 
5392
- },{"./declaracao":67}],90:[function(require,module,exports){
5555
+ },{"./declaracao":69}],92:[function(require,module,exports){
5393
5556
  "use strict";
5394
5557
  Object.defineProperty(exports, "__esModule", { value: true });
5395
5558
  exports.Var = void 0;
@@ -5412,7 +5575,7 @@ class Var extends declaracao_1.Declaracao {
5412
5575
  }
5413
5576
  exports.Var = Var;
5414
5577
 
5415
- },{"./declaracao":67}],91:[function(require,module,exports){
5578
+ },{"./declaracao":69}],93:[function(require,module,exports){
5416
5579
  "use strict";
5417
5580
  Object.defineProperty(exports, "__esModule", { value: true });
5418
5581
  exports.default = cyrb53;
@@ -5436,7 +5599,7 @@ function cyrb53(nomeArquivo, semente = 0) {
5436
5599
  return 4294967296 * (2097151 & h2) + (h1 >>> 0);
5437
5600
  }
5438
5601
 
5439
- },{}],92:[function(require,module,exports){
5602
+ },{}],94:[function(require,module,exports){
5440
5603
  "use strict";
5441
5604
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5442
5605
  if (k2 === undefined) k2 = k;
@@ -5461,11 +5624,11 @@ var cyrb53_1 = require("./cyrb53");
5461
5624
  Object.defineProperty(exports, "cyrb53", { enumerable: true, get: function () { return __importDefault(cyrb53_1).default; } });
5462
5625
  __exportStar(require("./ponto-parada"), exports);
5463
5626
 
5464
- },{"./cyrb53":91,"./ponto-parada":93}],93:[function(require,module,exports){
5627
+ },{"./cyrb53":93,"./ponto-parada":95}],95:[function(require,module,exports){
5465
5628
  "use strict";
5466
5629
  Object.defineProperty(exports, "__esModule", { value: true });
5467
5630
 
5468
- },{}],94:[function(require,module,exports){
5631
+ },{}],96:[function(require,module,exports){
5469
5632
  "use strict";
5470
5633
  Object.defineProperty(exports, "__esModule", { value: true });
5471
5634
  exports.EspacoVariaveis = void 0;
@@ -5486,7 +5649,7 @@ class EspacoVariaveis {
5486
5649
  }
5487
5650
  exports.EspacoVariaveis = EspacoVariaveis;
5488
5651
 
5489
- },{}],95:[function(require,module,exports){
5652
+ },{}],97:[function(require,module,exports){
5490
5653
  "use strict";
5491
5654
  Object.defineProperty(exports, "__esModule", { value: true });
5492
5655
  exports.Chamavel = void 0;
@@ -5500,7 +5663,7 @@ class Chamavel {
5500
5663
  }
5501
5664
  exports.Chamavel = Chamavel;
5502
5665
 
5503
- },{}],96:[function(require,module,exports){
5666
+ },{}],98:[function(require,module,exports){
5504
5667
  "use strict";
5505
5668
  Object.defineProperty(exports, "__esModule", { value: true });
5506
5669
  exports.ClassePadrao = void 0;
@@ -5541,7 +5704,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
5541
5704
  }
5542
5705
  exports.ClassePadrao = ClassePadrao;
5543
5706
 
5544
- },{"./chamavel":95}],97:[function(require,module,exports){
5707
+ },{"./chamavel":97}],99:[function(require,module,exports){
5545
5708
  "use strict";
5546
5709
  Object.defineProperty(exports, "__esModule", { value: true });
5547
5710
  exports.DeleguaFuncao = void 0;
@@ -5683,7 +5846,7 @@ class DeleguaFuncao extends chamavel_1.Chamavel {
5683
5846
  }
5684
5847
  exports.DeleguaFuncao = DeleguaFuncao;
5685
5848
 
5686
- },{"../declaracoes":77,"../espaco-variaveis":94,"../inferenciador":111,"../quebras":153,"./chamavel":95}],98:[function(require,module,exports){
5849
+ },{"../declaracoes":79,"../espaco-variaveis":96,"../inferenciador":113,"../quebras":155,"./chamavel":97}],100:[function(require,module,exports){
5687
5850
  "use strict";
5688
5851
  Object.defineProperty(exports, "__esModule", { value: true });
5689
5852
  exports.DescritorTipoClasse = void 0;
@@ -5764,7 +5927,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
5764
5927
  }
5765
5928
  exports.DescritorTipoClasse = DescritorTipoClasse;
5766
5929
 
5767
- },{"../excecoes":106,"./chamavel":95,"./objeto-delegua-classe":103}],99:[function(require,module,exports){
5930
+ },{"../excecoes":108,"./chamavel":97,"./objeto-delegua-classe":105}],101:[function(require,module,exports){
5768
5931
  "use strict";
5769
5932
  Object.defineProperty(exports, "__esModule", { value: true });
5770
5933
  exports.FuncaoPadrao = void 0;
@@ -5800,7 +5963,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
5800
5963
  }
5801
5964
  exports.FuncaoPadrao = FuncaoPadrao;
5802
5965
 
5803
- },{"./chamavel":95}],100:[function(require,module,exports){
5966
+ },{"./chamavel":97}],102:[function(require,module,exports){
5804
5967
  "use strict";
5805
5968
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5806
5969
  if (k2 === undefined) k2 = k;
@@ -5827,7 +5990,7 @@ __exportStar(require("./modulo"), exports);
5827
5990
  __exportStar(require("./objeto-delegua-classe"), exports);
5828
5991
  __exportStar(require("./objeto-padrao"), exports);
5829
5992
 
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){
5993
+ },{"./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
5994
  "use strict";
5832
5995
  Object.defineProperty(exports, "__esModule", { value: true });
5833
5996
  exports.MetodoPrimitiva = void 0;
@@ -5869,7 +6032,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
5869
6032
  }
5870
6033
  exports.MetodoPrimitiva = MetodoPrimitiva;
5871
6034
 
5872
- },{"./chamavel":95}],102:[function(require,module,exports){
6035
+ },{"./chamavel":97}],104:[function(require,module,exports){
5873
6036
  "use strict";
5874
6037
  Object.defineProperty(exports, "__esModule", { value: true });
5875
6038
  exports.DeleguaModulo = void 0;
@@ -5895,7 +6058,7 @@ class DeleguaModulo {
5895
6058
  }
5896
6059
  exports.DeleguaModulo = DeleguaModulo;
5897
6060
 
5898
- },{}],103:[function(require,module,exports){
6061
+ },{}],105:[function(require,module,exports){
5899
6062
  "use strict";
5900
6063
  Object.defineProperty(exports, "__esModule", { value: true });
5901
6064
  exports.ObjetoDeleguaClasse = void 0;
@@ -5950,7 +6113,7 @@ class ObjetoDeleguaClasse {
5950
6113
  }
5951
6114
  exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
5952
6115
 
5953
- },{"../excecoes":106}],104:[function(require,module,exports){
6116
+ },{"../excecoes":108}],106:[function(require,module,exports){
5954
6117
  "use strict";
5955
6118
  Object.defineProperty(exports, "__esModule", { value: true });
5956
6119
  exports.ObjetoPadrao = void 0;
@@ -5984,7 +6147,7 @@ class ObjetoPadrao {
5984
6147
  }
5985
6148
  exports.ObjetoPadrao = ObjetoPadrao;
5986
6149
 
5987
- },{}],105:[function(require,module,exports){
6150
+ },{}],107:[function(require,module,exports){
5988
6151
  "use strict";
5989
6152
  Object.defineProperty(exports, "__esModule", { value: true });
5990
6153
  exports.ErroEmTempoDeExecucao = void 0;
@@ -5999,7 +6162,7 @@ class ErroEmTempoDeExecucao extends Error {
5999
6162
  }
6000
6163
  exports.ErroEmTempoDeExecucao = ErroEmTempoDeExecucao;
6001
6164
 
6002
- },{}],106:[function(require,module,exports){
6165
+ },{}],108:[function(require,module,exports){
6003
6166
  "use strict";
6004
6167
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6005
6168
  if (k2 === undefined) k2 = k;
@@ -6018,7 +6181,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
6018
6181
  Object.defineProperty(exports, "__esModule", { value: true });
6019
6182
  __exportStar(require("./erro-em-tempo-de-execucao"), exports);
6020
6183
 
6021
- },{"./erro-em-tempo-de-execucao":105}],107:[function(require,module,exports){
6184
+ },{"./erro-em-tempo-de-execucao":107}],109:[function(require,module,exports){
6022
6185
  "use strict";
6023
6186
  var __importDefault = (this && this.__importDefault) || function (mod) {
6024
6187
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -6696,7 +6859,7 @@ class FormatadorDelegua {
6696
6859
  }
6697
6860
  exports.FormatadorDelegua = FormatadorDelegua;
6698
6861
 
6699
- },{"../construtos":39,"../tipos-de-simbolos/delegua":157}],108:[function(require,module,exports){
6862
+ },{"../construtos":41,"../tipos-de-simbolos/delegua":159}],110:[function(require,module,exports){
6700
6863
  "use strict";
6701
6864
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6702
6865
  if (k2 === undefined) k2 = k;
@@ -6715,7 +6878,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
6715
6878
  Object.defineProperty(exports, "__esModule", { value: true });
6716
6879
  __exportStar(require("./formatador-delegua"), exports);
6717
6880
 
6718
- },{"./formatador-delegua":107}],109:[function(require,module,exports){
6881
+ },{"./formatador-delegua":109}],111:[function(require,module,exports){
6719
6882
  "use strict";
6720
6883
  Object.defineProperty(exports, "__esModule", { value: true });
6721
6884
  exports.uuidv4 = uuidv4;
@@ -6739,7 +6902,7 @@ function uuidv4() {
6739
6902
  });
6740
6903
  }
6741
6904
 
6742
- },{}],110:[function(require,module,exports){
6905
+ },{}],112:[function(require,module,exports){
6743
6906
  "use strict";
6744
6907
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6745
6908
  if (k2 === undefined) k2 = k;
@@ -6768,7 +6931,7 @@ __exportStar(require("./interpretador"), exports);
6768
6931
  __exportStar(require("./lexador"), exports);
6769
6932
  __exportStar(require("./tradutores"), exports);
6770
6933
 
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){
6934
+ },{"./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
6935
  "use strict";
6773
6936
  var __importDefault = (this && this.__importDefault) || function (mod) {
6774
6937
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -6794,6 +6957,31 @@ var TipoNativoSimbolo;
6794
6957
  TipoNativoSimbolo["BOOLEANO"] = "<palavra reservada booleano ajuda=\"palavra reservada usada para definir vari\u00E1veis do tipo booleano\">";
6795
6958
  TipoNativoSimbolo["VAZIO"] = "<palavra reservada vazio ajuda=\"palavra reservada usada para definir fun\u00E7\u00F5es que n\u00E3o retornam valores\">";
6796
6959
  })(TipoNativoSimbolo || (exports.TipoNativoSimbolo = TipoNativoSimbolo = {}));
6960
+ function inferirVetor(vetor) {
6961
+ const tiposEmVetor = new Set(vetor.map((elemento) => typeof elemento));
6962
+ if (tiposEmVetor.size > 1) {
6963
+ return 'vetor';
6964
+ }
6965
+ const tipoVetor = tiposEmVetor.values().next().value;
6966
+ switch (tipoVetor) {
6967
+ case 'bigint':
6968
+ return 'longo[]';
6969
+ case 'boolean':
6970
+ return 'lógico[]';
6971
+ case 'number':
6972
+ return 'número[]';
6973
+ case 'string':
6974
+ return 'texto[]';
6975
+ case 'object':
6976
+ const tiposObjetosEmVetor = new Set(vetor.map((elemento) => elemento.tipo));
6977
+ if (tiposObjetosEmVetor.size > 1) {
6978
+ return 'vetor';
6979
+ }
6980
+ return `${tiposObjetosEmVetor.values().next().value}[]`;
6981
+ default:
6982
+ return 'vetor';
6983
+ }
6984
+ }
6797
6985
  function inferirTipoVariavel(variavel) {
6798
6986
  const tipo = typeof variavel;
6799
6987
  switch (tipo) {
@@ -6809,23 +6997,7 @@ function inferirTipoVariavel(variavel) {
6809
6997
  return 'nulo';
6810
6998
  case 'object':
6811
6999
  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
- }
7000
+ return inferirVetor(variavel);
6829
7001
  }
6830
7002
  if (variavel === null)
6831
7003
  return 'nulo';
@@ -6875,15 +7047,15 @@ function tipoInferenciaParaTipoDadosElementar(tipoInferencia) {
6875
7047
  }
6876
7048
  }
6877
7049
 
6878
- },{"./tipos-de-dados/delegua":154,"./tipos-de-dados/primitivos":155,"./tipos-de-simbolos/delegua":157}],112:[function(require,module,exports){
7050
+ },{"./tipos-de-dados/delegua":156,"./tipos-de-dados/primitivos":157,"./tipos-de-simbolos/delegua":159}],114:[function(require,module,exports){
6879
7051
  "use strict";
6880
7052
  Object.defineProperty(exports, "__esModule", { value: true });
6881
7053
 
6882
- },{}],113:[function(require,module,exports){
7054
+ },{}],115:[function(require,module,exports){
6883
7055
  "use strict";
6884
7056
  Object.defineProperty(exports, "__esModule", { value: true });
6885
7057
 
6886
- },{}],114:[function(require,module,exports){
7058
+ },{}],116:[function(require,module,exports){
6887
7059
  "use strict";
6888
7060
  Object.defineProperty(exports, "__esModule", { value: true });
6889
7061
  exports.DiagnosticoSeveridade = void 0;
@@ -6895,7 +7067,7 @@ var DiagnosticoSeveridade;
6895
7067
  DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
6896
7068
  })(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
6897
7069
 
6898
- },{}],115:[function(require,module,exports){
7070
+ },{}],117:[function(require,module,exports){
6899
7071
  "use strict";
6900
7072
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6901
7073
  if (k2 === undefined) k2 = k;
@@ -6914,11 +7086,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
6914
7086
  Object.defineProperty(exports, "__esModule", { value: true });
6915
7087
  __exportStar(require("./diagnostico-analisador-semantico"), exports);
6916
7088
 
6917
- },{"./diagnostico-analisador-semantico":114}],116:[function(require,module,exports){
7089
+ },{"./diagnostico-analisador-semantico":116}],118:[function(require,module,exports){
6918
7090
  "use strict";
6919
7091
  Object.defineProperty(exports, "__esModule", { value: true });
6920
7092
 
6921
- },{}],117:[function(require,module,exports){
7093
+ },{}],119:[function(require,module,exports){
6922
7094
  "use strict";
6923
7095
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6924
7096
  if (k2 === undefined) k2 = k;
@@ -6952,31 +7124,31 @@ __exportStar(require("./construtos"), exports);
6952
7124
  __exportStar(require("./erros"), exports);
6953
7125
  __exportStar(require("./retornos"), exports);
6954
7126
 
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){
7127
+ },{"./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
7128
  "use strict";
6957
7129
  Object.defineProperty(exports, "__esModule", { value: true });
6958
7130
 
6959
- },{}],119:[function(require,module,exports){
7131
+ },{}],121:[function(require,module,exports){
6960
7132
  "use strict";
6961
7133
  Object.defineProperty(exports, "__esModule", { value: true });
6962
7134
 
6963
- },{}],120:[function(require,module,exports){
7135
+ },{}],122:[function(require,module,exports){
6964
7136
  "use strict";
6965
7137
  Object.defineProperty(exports, "__esModule", { value: true });
6966
7138
 
6967
- },{}],121:[function(require,module,exports){
7139
+ },{}],123:[function(require,module,exports){
6968
7140
  "use strict";
6969
7141
  Object.defineProperty(exports, "__esModule", { value: true });
6970
7142
 
6971
- },{}],122:[function(require,module,exports){
7143
+ },{}],124:[function(require,module,exports){
6972
7144
  "use strict";
6973
7145
  Object.defineProperty(exports, "__esModule", { value: true });
6974
7146
 
6975
- },{}],123:[function(require,module,exports){
7147
+ },{}],125:[function(require,module,exports){
6976
7148
  "use strict";
6977
7149
  Object.defineProperty(exports, "__esModule", { value: true });
6978
7150
 
6979
- },{}],124:[function(require,module,exports){
7151
+ },{}],126:[function(require,module,exports){
6980
7152
  "use strict";
6981
7153
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6982
7154
  if (k2 === undefined) k2 = k;
@@ -6998,15 +7170,7 @@ __exportStar(require("./retorno-execucao-interface"), exports);
6998
7170
  __exportStar(require("./retorno-interpretador"), exports);
6999
7171
  __exportStar(require("./retorno-lexador"), exports);
7000
7172
 
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){
7173
+ },{"./retorno-avaliador-sintatico":127,"./retorno-execucao-interface":128,"./retorno-interpretador":129,"./retorno-lexador":130}],127:[function(require,module,exports){
7010
7174
  "use strict";
7011
7175
  Object.defineProperty(exports, "__esModule", { value: true });
7012
7176
 
@@ -7032,6 +7196,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
7032
7196
 
7033
7197
  },{}],133:[function(require,module,exports){
7034
7198
  "use strict";
7199
+ Object.defineProperty(exports, "__esModule", { value: true });
7200
+
7201
+ },{}],134:[function(require,module,exports){
7202
+ "use strict";
7203
+ Object.defineProperty(exports, "__esModule", { value: true });
7204
+
7205
+ },{}],135:[function(require,module,exports){
7206
+ "use strict";
7035
7207
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7036
7208
  if (k2 === undefined) k2 = k;
7037
7209
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -7083,7 +7255,7 @@ function carregarBibliotecasGlobais(pilhaEscoposExecucao) {
7083
7255
  pilhaEscoposExecucao.definirVariavel('tupla', new funcao_padrao_1.FuncaoPadrao(1, bibliotecaGlobal.tupla));
7084
7256
  }
7085
7257
 
7086
- },{"../bibliotecas/biblioteca-global":15,"../estruturas/funcao-padrao":99}],134:[function(require,module,exports){
7258
+ },{"../bibliotecas/biblioteca-global":17,"../estruturas/funcao-padrao":101}],136:[function(require,module,exports){
7087
7259
  "use strict";
7088
7260
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7089
7261
  if (k2 === undefined) k2 = k;
@@ -7103,7 +7275,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
7103
7275
  __exportStar(require("./interpretador-base"), exports);
7104
7276
  __exportStar(require("./interpretador-com-depuracao"), exports);
7105
7277
 
7106
- },{"./interpretador-base":135,"./interpretador-com-depuracao":136}],135:[function(require,module,exports){
7278
+ },{"./interpretador-base":137,"./interpretador-com-depuracao":138}],137:[function(require,module,exports){
7107
7279
  (function (process){(function (){
7108
7280
  "use strict";
7109
7281
  var __importDefault = (this && this.__importDefault) || function (mod) {
@@ -8281,6 +8453,9 @@ class InterpretadorBase {
8281
8453
  }
8282
8454
  break;
8283
8455
  case delegua_2.default.VETOR:
8456
+ case delegua_2.default.VETOR_NUMERO:
8457
+ case delegua_2.default.VETOR_NÚMERO:
8458
+ case delegua_2.default.VETOR_TEXTO:
8284
8459
  const metodoDePrimitivaVetor = primitivas_vetor_1.default[expressao.simbolo.lexema];
8285
8460
  if (metodoDePrimitivaVetor) {
8286
8461
  return new metodo_primitiva_1.MetodoPrimitiva(objeto, metodoDePrimitivaVetor);
@@ -8442,7 +8617,9 @@ class InterpretadorBase {
8442
8617
  hashArquivo: declaracaoAtual.hashArquivo,
8443
8618
  });
8444
8619
  }
8445
- return Promise.reject(erro);
8620
+ else {
8621
+ return Promise.reject(erro);
8622
+ }
8446
8623
  }
8447
8624
  finally {
8448
8625
  this.pilhaEscoposExecucao.removerUltimo();
@@ -8479,12 +8656,8 @@ class InterpretadorBase {
8479
8656
  this.erros.push(retornoOuErro);
8480
8657
  }
8481
8658
  }
8482
- catch (erro) {
8483
- this.erros.push({
8484
- erroInterno: erro,
8485
- linha: -1,
8486
- hashArquivo: -1,
8487
- });
8659
+ catch (erro) { // TODO: Estudar remoção do `catch`.
8660
+ 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
8661
  }
8489
8662
  finally {
8490
8663
  if (this.performance) {
@@ -8503,7 +8676,7 @@ class InterpretadorBase {
8503
8676
  exports.InterpretadorBase = InterpretadorBase;
8504
8677
 
8505
8678
  }).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){
8679
+ },{"../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
8680
  "use strict";
8508
8681
  var __importDefault = (this && this.__importDefault) || function (mod) {
8509
8682
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -9075,7 +9248,7 @@ class InterpretadorComDepuracao extends interpretador_base_1.InterpretadorBase {
9075
9248
  }
9076
9249
  exports.InterpretadorComDepuracao = InterpretadorComDepuracao;
9077
9250
 
9078
- },{"../declaracoes":77,"../espaco-variaveis":94,"../inferenciador":111,"../quebras":153,"./interpretador-base":135,"lodash":369}],137:[function(require,module,exports){
9251
+ },{"../declaracoes":79,"../espaco-variaveis":96,"../inferenciador":113,"../quebras":155,"./interpretador-base":137,"lodash":371}],139:[function(require,module,exports){
9079
9252
  "use strict";
9080
9253
  var __importDefault = (this && this.__importDefault) || function (mod) {
9081
9254
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -9320,7 +9493,7 @@ class PilhaEscoposExecucao {
9320
9493
  }
9321
9494
  exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
9322
9495
 
9323
- },{"../estruturas":100,"../excecoes":106,"../inferenciador":111,"../lexador":146,"../tipos-de-dados/delegua":154}],138:[function(require,module,exports){
9496
+ },{"../estruturas":102,"../excecoes":108,"../inferenciador":113,"../lexador":148,"../tipos-de-dados/delegua":156}],140:[function(require,module,exports){
9324
9497
  "use strict";
9325
9498
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
9326
9499
  if (k2 === undefined) k2 = k;
@@ -9342,7 +9515,7 @@ __exportStar(require("./lexador-pitugues"), exports);
9342
9515
  __exportStar(require("./lexador-guarani"), exports);
9343
9516
  __exportStar(require("./lexador-portugol-ipt"), exports);
9344
9517
 
9345
- },{"./lexador-egua-classico":139,"./lexador-guarani":140,"./lexador-pitugues":141,"./lexador-portugol-ipt":142}],139:[function(require,module,exports){
9518
+ },{"./lexador-egua-classico":141,"./lexador-guarani":142,"./lexador-pitugues":143,"./lexador-portugol-ipt":144}],141:[function(require,module,exports){
9346
9519
  "use strict";
9347
9520
  var __importDefault = (this && this.__importDefault) || function (mod) {
9348
9521
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -9630,7 +9803,7 @@ class LexadorEguaClassico {
9630
9803
  }
9631
9804
  exports.LexadorEguaClassico = LexadorEguaClassico;
9632
9805
 
9633
- },{"../../tipos-de-simbolos/egua-classico":158,"../simbolo":152,"./palavras-reservadas/egua-classico":143}],140:[function(require,module,exports){
9806
+ },{"../../tipos-de-simbolos/egua-classico":160,"../simbolo":154,"./palavras-reservadas/egua-classico":145}],142:[function(require,module,exports){
9634
9807
  "use strict";
9635
9808
  var __importDefault = (this && this.__importDefault) || function (mod) {
9636
9809
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -9745,7 +9918,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
9745
9918
  }
9746
9919
  exports.LexadorGuarani = LexadorGuarani;
9747
9920
 
9748
- },{"../../tipos-de-simbolos/guarani":159,"../lexador-base":148,"./palavras-reservadas/guarani":144}],141:[function(require,module,exports){
9921
+ },{"../../tipos-de-simbolos/guarani":161,"../lexador-base":150,"./palavras-reservadas/guarani":146}],143:[function(require,module,exports){
9749
9922
  "use strict";
9750
9923
  var __importDefault = (this && this.__importDefault) || function (mod) {
9751
9924
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -10145,7 +10318,7 @@ class LexadorPitugues {
10145
10318
  }
10146
10319
  exports.LexadorPitugues = LexadorPitugues;
10147
10320
 
10148
- },{"../../tipos-de-simbolos/pitugues":161,"../palavras-reservadas":151,"../simbolo":152,"browser-process-hrtime":333}],142:[function(require,module,exports){
10321
+ },{"../../tipos-de-simbolos/pitugues":163,"../palavras-reservadas":153,"../simbolo":154,"browser-process-hrtime":335}],144:[function(require,module,exports){
10149
10322
  "use strict";
10150
10323
  var __importDefault = (this && this.__importDefault) || function (mod) {
10151
10324
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -10384,7 +10557,7 @@ class LexadorPortugolIpt {
10384
10557
  }
10385
10558
  exports.LexadorPortugolIpt = LexadorPortugolIpt;
10386
10559
 
10387
- },{"../../tipos-de-simbolos/portugol-ipt":162,"../simbolo":152,"./palavras-reservadas/portugol-ipt":145}],143:[function(require,module,exports){
10560
+ },{"../../tipos-de-simbolos/portugol-ipt":164,"../simbolo":154,"./palavras-reservadas/portugol-ipt":147}],145:[function(require,module,exports){
10388
10561
  "use strict";
10389
10562
  var __importDefault = (this && this.__importDefault) || function (mod) {
10390
10563
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -10425,7 +10598,7 @@ exports.palavrasReservadas = {
10425
10598
  verdadeiro: egua_classico_1.default.VERDADEIRO,
10426
10599
  };
10427
10600
 
10428
- },{"../../../tipos-de-simbolos/egua-classico":158}],144:[function(require,module,exports){
10601
+ },{"../../../tipos-de-simbolos/egua-classico":160}],146:[function(require,module,exports){
10429
10602
  "use strict";
10430
10603
  var __importDefault = (this && this.__importDefault) || function (mod) {
10431
10604
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -10437,7 +10610,7 @@ exports.palavrasReservadas = {
10437
10610
  hai: guarani_1.default.HAI,
10438
10611
  };
10439
10612
 
10440
- },{"../../../tipos-de-simbolos/guarani":159}],145:[function(require,module,exports){
10613
+ },{"../../../tipos-de-simbolos/guarani":161}],147:[function(require,module,exports){
10441
10614
  "use strict";
10442
10615
  var __importDefault = (this && this.__importDefault) || function (mod) {
10443
10616
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -10459,7 +10632,7 @@ exports.palavrasReservadas = {
10459
10632
  senão: portugol_ipt_1.default.SENAO,
10460
10633
  };
10461
10634
 
10462
- },{"../../../tipos-de-simbolos/portugol-ipt":162}],146:[function(require,module,exports){
10635
+ },{"../../../tipos-de-simbolos/portugol-ipt":164}],148:[function(require,module,exports){
10463
10636
  "use strict";
10464
10637
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10465
10638
  if (k2 === undefined) k2 = k;
@@ -10481,7 +10654,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
10481
10654
  __exportStar(require("./micro-lexador"), exports);
10482
10655
  __exportStar(require("./simbolo"), exports);
10483
10656
 
10484
- },{"./lexador":149,"./lexador-base-linha-unica":147,"./micro-lexador":150,"./simbolo":152}],147:[function(require,module,exports){
10657
+ },{"./lexador":151,"./lexador-base-linha-unica":149,"./micro-lexador":152,"./simbolo":154}],149:[function(require,module,exports){
10485
10658
  "use strict";
10486
10659
  Object.defineProperty(exports, "__esModule", { value: true });
10487
10660
  exports.LexadorBaseLinhaUnica = void 0;
@@ -10565,7 +10738,7 @@ class LexadorBaseLinhaUnica {
10565
10738
  }
10566
10739
  exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
10567
10740
 
10568
- },{"./simbolo":152}],148:[function(require,module,exports){
10741
+ },{"./simbolo":154}],150:[function(require,module,exports){
10569
10742
  "use strict";
10570
10743
  Object.defineProperty(exports, "__esModule", { value: true });
10571
10744
  exports.LexadorBase = void 0;
@@ -10679,7 +10852,7 @@ class LexadorBase {
10679
10852
  }
10680
10853
  exports.LexadorBase = LexadorBase;
10681
10854
 
10682
- },{"./simbolo":152}],149:[function(require,module,exports){
10855
+ },{"./simbolo":154}],151:[function(require,module,exports){
10683
10856
  "use strict";
10684
10857
  var __importDefault = (this && this.__importDefault) || function (mod) {
10685
10858
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -11121,7 +11294,7 @@ class Lexador {
11121
11294
  }
11122
11295
  exports.Lexador = Lexador;
11123
11296
 
11124
- },{"../tipos-de-simbolos/delegua":157,"./palavras-reservadas":151,"./simbolo":152,"browser-process-hrtime":333}],150:[function(require,module,exports){
11297
+ },{"../tipos-de-simbolos/delegua":159,"./palavras-reservadas":153,"./simbolo":154,"browser-process-hrtime":335}],152:[function(require,module,exports){
11125
11298
  "use strict";
11126
11299
  var __importDefault = (this && this.__importDefault) || function (mod) {
11127
11300
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -11330,7 +11503,7 @@ class MicroLexador {
11330
11503
  }
11331
11504
  exports.MicroLexador = MicroLexador;
11332
11505
 
11333
- },{"../tipos-de-simbolos/microgramaticas/delegua":160,"./palavras-reservadas":151,"./simbolo":152}],151:[function(require,module,exports){
11506
+ },{"../tipos-de-simbolos/microgramaticas/delegua":162,"./palavras-reservadas":153,"./simbolo":154}],153:[function(require,module,exports){
11334
11507
  "use strict";
11335
11508
  var __importDefault = (this && this.__importDefault) || function (mod) {
11336
11509
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -11393,7 +11566,7 @@ exports.palavrasReservadasMicroGramatica = {
11393
11566
  verdadeiro: delegua_1.default.VERDADEIRO,
11394
11567
  };
11395
11568
 
11396
- },{"../tipos-de-simbolos/delegua":157}],152:[function(require,module,exports){
11569
+ },{"../tipos-de-simbolos/delegua":159}],154:[function(require,module,exports){
11397
11570
  "use strict";
11398
11571
  Object.defineProperty(exports, "__esModule", { value: true });
11399
11572
  exports.Simbolo = void 0;
@@ -11411,7 +11584,7 @@ class Simbolo {
11411
11584
  }
11412
11585
  exports.Simbolo = Simbolo;
11413
11586
 
11414
- },{}],153:[function(require,module,exports){
11587
+ },{}],155:[function(require,module,exports){
11415
11588
  "use strict";
11416
11589
  Object.defineProperty(exports, "__esModule", { value: true });
11417
11590
  exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
@@ -11432,7 +11605,7 @@ class ContinuarQuebra extends Quebra {
11432
11605
  }
11433
11606
  exports.ContinuarQuebra = ContinuarQuebra;
11434
11607
 
11435
- },{}],154:[function(require,module,exports){
11608
+ },{}],156:[function(require,module,exports){
11436
11609
  "use strict";
11437
11610
  Object.defineProperty(exports, "__esModule", { value: true });
11438
11611
  exports.default = {
@@ -11451,9 +11624,12 @@ exports.default = {
11451
11624
  TUPLA: 'tupla',
11452
11625
  VAZIO: 'vazio',
11453
11626
  VETOR: 'vetor',
11627
+ VETOR_NUMERO: 'numero[]',
11628
+ VETOR_NÚMERO: 'número[]',
11629
+ VETOR_TEXTO: 'texto[]',
11454
11630
  };
11455
11631
 
11456
- },{}],155:[function(require,module,exports){
11632
+ },{}],157:[function(require,module,exports){
11457
11633
  "use strict";
11458
11634
  Object.defineProperty(exports, "__esModule", { value: true });
11459
11635
  exports.default = {
@@ -11472,7 +11648,7 @@ exports.default = {
11472
11648
  TEXTO: 'string',
11473
11649
  };
11474
11650
 
11475
- },{}],156:[function(require,module,exports){
11651
+ },{}],158:[function(require,module,exports){
11476
11652
  "use strict";
11477
11653
  Object.defineProperty(exports, "__esModule", { value: true });
11478
11654
  exports.default = {
@@ -11498,7 +11674,7 @@ exports.default = {
11498
11674
  VIRGULA: 'VIRGULA',
11499
11675
  };
11500
11676
 
11501
- },{}],157:[function(require,module,exports){
11677
+ },{}],159:[function(require,module,exports){
11502
11678
  "use strict";
11503
11679
  Object.defineProperty(exports, "__esModule", { value: true });
11504
11680
  exports.default = {
@@ -11592,7 +11768,7 @@ exports.default = {
11592
11768
  VIRGULA: 'VIRGULA',
11593
11769
  };
11594
11770
 
11595
- },{}],158:[function(require,module,exports){
11771
+ },{}],160:[function(require,module,exports){
11596
11772
  "use strict";
11597
11773
  Object.defineProperty(exports, "__esModule", { value: true });
11598
11774
  exports.default = {
@@ -11670,7 +11846,7 @@ exports.default = {
11670
11846
  VIRGULA: 'VIRGULA',
11671
11847
  };
11672
11848
 
11673
- },{}],159:[function(require,module,exports){
11849
+ },{}],161:[function(require,module,exports){
11674
11850
  "use strict";
11675
11851
  Object.defineProperty(exports, "__esModule", { value: true });
11676
11852
  exports.default = {
@@ -11687,7 +11863,7 @@ exports.default = {
11687
11863
  VIRGULA: 'VIRGULA',
11688
11864
  };
11689
11865
 
11690
- },{}],160:[function(require,module,exports){
11866
+ },{}],162:[function(require,module,exports){
11691
11867
  "use strict";
11692
11868
  Object.defineProperty(exports, "__esModule", { value: true });
11693
11869
  exports.default = {
@@ -11736,7 +11912,7 @@ exports.default = {
11736
11912
  VIRGULA: 'VIRGULA',
11737
11913
  };
11738
11914
 
11739
- },{}],161:[function(require,module,exports){
11915
+ },{}],163:[function(require,module,exports){
11740
11916
  "use strict";
11741
11917
  Object.defineProperty(exports, "__esModule", { value: true });
11742
11918
  exports.default = {
@@ -11814,7 +11990,7 @@ exports.default = {
11814
11990
  VIRGULA: 'VIRGULA',
11815
11991
  };
11816
11992
 
11817
- },{}],162:[function(require,module,exports){
11993
+ },{}],164:[function(require,module,exports){
11818
11994
  "use strict";
11819
11995
  Object.defineProperty(exports, "__esModule", { value: true });
11820
11996
  exports.default = {
@@ -11853,7 +12029,7 @@ exports.default = {
11853
12029
  VIRGULA: 'VIRGULA',
11854
12030
  };
11855
12031
 
11856
- },{}],163:[function(require,module,exports){
12032
+ },{}],165:[function(require,module,exports){
11857
12033
  "use strict";
11858
12034
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
11859
12035
  if (k2 === undefined) k2 = k;
@@ -11877,7 +12053,7 @@ __exportStar(require("./tradutor-python"), exports);
11877
12053
  __exportStar(require("./tradutor-reverso-javascript"), exports);
11878
12054
  __exportStar(require("./tradutor-reverso-python"), exports);
11879
12055
 
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){
12056
+ },{"./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
12057
  "use strict";
11882
12058
  // Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
11883
12059
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -13106,7 +13282,7 @@ __decorate([
13106
13282
  Decorators_1.Override
13107
13283
  ], Python3Lexer.prototype, "nextToken", null);
13108
13284
 
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){
13285
+ },{"./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
13286
  "use strict";
13111
13287
  // Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
13112
13288
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -24334,7 +24510,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
24334
24510
  }
24335
24511
  exports.Yield_argContext = Yield_argContext;
24336
24512
 
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){
24513
+ },{"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
24514
  "use strict";
24339
24515
  var __importDefault = (this && this.__importDefault) || function (mod) {
24340
24516
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -24927,7 +25103,7 @@ class TradutorAssemblyScript {
24927
25103
  }
24928
25104
  exports.TradutorAssemblyScript = TradutorAssemblyScript;
24929
25105
 
24930
- },{"../construtos":39,"../declaracoes":77,"../tipos-de-simbolos/delegua":157}],167:[function(require,module,exports){
25106
+ },{"../construtos":41,"../declaracoes":79,"../tipos-de-simbolos/delegua":159}],169:[function(require,module,exports){
24931
25107
  "use strict";
24932
25108
  var __importDefault = (this && this.__importDefault) || function (mod) {
24933
25109
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -25509,7 +25685,7 @@ class TradutorJavaScript {
25509
25685
  }
25510
25686
  exports.TradutorJavaScript = TradutorJavaScript;
25511
25687
 
25512
- },{"../construtos":39,"../declaracoes":77,"../tipos-de-simbolos/delegua":157}],168:[function(require,module,exports){
25688
+ },{"../construtos":41,"../declaracoes":79,"../tipos-de-simbolos/delegua":159}],170:[function(require,module,exports){
25513
25689
  "use strict";
25514
25690
  Object.defineProperty(exports, "__esModule", { value: true });
25515
25691
  exports.TradutorPortugolIpt = void 0;
@@ -25571,7 +25747,7 @@ class TradutorPortugolIpt {
25571
25747
  }
25572
25748
  exports.TradutorPortugolIpt = TradutorPortugolIpt;
25573
25749
 
25574
- },{"../avaliador-sintatico/dialetos":6,"../lexador/dialetos":138}],169:[function(require,module,exports){
25750
+ },{"../avaliador-sintatico/dialetos":6,"../lexador/dialetos":140}],171:[function(require,module,exports){
25575
25751
  "use strict";
25576
25752
  var __importDefault = (this && this.__importDefault) || function (mod) {
25577
25753
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -26091,7 +26267,7 @@ class TradutorPython {
26091
26267
  }
26092
26268
  exports.TradutorPython = TradutorPython;
26093
26269
 
26094
- },{"../construtos":39,"../declaracoes":77,"../tipos-de-simbolos/delegua":157}],170:[function(require,module,exports){
26270
+ },{"../construtos":41,"../declaracoes":79,"../tipos-de-simbolos/delegua":159}],172:[function(require,module,exports){
26095
26271
  "use strict";
26096
26272
  Object.defineProperty(exports, "__esModule", { value: true });
26097
26273
  exports.TradutorReversoJavaScript = void 0;
@@ -26485,7 +26661,7 @@ class TradutorReversoJavaScript {
26485
26661
  }
26486
26662
  exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
26487
26663
 
26488
- },{}],171:[function(require,module,exports){
26664
+ },{}],173:[function(require,module,exports){
26489
26665
  "use strict";
26490
26666
  Object.defineProperty(exports, "__esModule", { value: true });
26491
26667
  exports.TradutorReversoPython = void 0;
@@ -26558,7 +26734,7 @@ class TradutorReversoPython {
26558
26734
  }
26559
26735
  exports.TradutorReversoPython = TradutorReversoPython;
26560
26736
 
26561
- },{"./python/python3-lexer":164,"./python/python3-parser":165,"antlr4ts":287,"antlr4ts/tree/ParseTreeWalker":306}],172:[function(require,module,exports){
26737
+ },{"./python/python3-lexer":166,"./python/python3-parser":167,"antlr4ts":289,"antlr4ts/tree/ParseTreeWalker":308}],174:[function(require,module,exports){
26562
26738
  "use strict";
26563
26739
  /*!
26564
26740
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -26566,7 +26742,7 @@ exports.TradutorReversoPython = TradutorReversoPython;
26566
26742
  */
26567
26743
  Object.defineProperty(exports, "__esModule", { value: true });
26568
26744
 
26569
- },{}],173:[function(require,module,exports){
26745
+ },{}],175:[function(require,module,exports){
26570
26746
  "use strict";
26571
26747
  /*!
26572
26748
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -26574,7 +26750,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
26574
26750
  */
26575
26751
  Object.defineProperty(exports, "__esModule", { value: true });
26576
26752
 
26577
- },{}],174:[function(require,module,exports){
26753
+ },{}],176:[function(require,module,exports){
26578
26754
  "use strict";
26579
26755
  /*!
26580
26756
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -26736,7 +26912,7 @@ __decorate([
26736
26912
  ], ANTLRInputStream.prototype, "toString", null);
26737
26913
  exports.ANTLRInputStream = ANTLRInputStream;
26738
26914
 
26739
- },{"./Decorators":185,"./IntStream":191,"assert":328}],175:[function(require,module,exports){
26915
+ },{"./Decorators":187,"./IntStream":193,"assert":330}],177:[function(require,module,exports){
26740
26916
  "use strict";
26741
26917
  /*!
26742
26918
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -26819,7 +26995,7 @@ __decorate([
26819
26995
  ], BailErrorStrategy.prototype, "sync", null);
26820
26996
  exports.BailErrorStrategy = BailErrorStrategy;
26821
26997
 
26822
- },{"./Decorators":185,"./DefaultErrorStrategy":186,"./InputMismatchException":190,"./misc/ParseCancellationException":302}],176:[function(require,module,exports){
26998
+ },{"./Decorators":187,"./DefaultErrorStrategy":188,"./InputMismatchException":192,"./misc/ParseCancellationException":304}],178:[function(require,module,exports){
26823
26999
  "use strict";
26824
27000
  /*!
26825
27001
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -27309,7 +27485,7 @@ BufferedTokenStream = __decorate([
27309
27485
  ], BufferedTokenStream);
27310
27486
  exports.BufferedTokenStream = BufferedTokenStream;
27311
27487
 
27312
- },{"./CommonToken":181,"./Decorators":185,"./Lexer":193,"./Token":210,"./misc/Interval":297,"assert":328}],177:[function(require,module,exports){
27488
+ },{"./CommonToken":183,"./Decorators":187,"./Lexer":195,"./Token":212,"./misc/Interval":299,"assert":330}],179:[function(require,module,exports){
27313
27489
  "use strict";
27314
27490
  /*!
27315
27491
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -27317,7 +27493,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
27317
27493
  */
27318
27494
  Object.defineProperty(exports, "__esModule", { value: true });
27319
27495
 
27320
- },{}],178:[function(require,module,exports){
27496
+ },{}],180:[function(require,module,exports){
27321
27497
  "use strict";
27322
27498
  /*!
27323
27499
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -27451,7 +27627,7 @@ var CharStreams;
27451
27627
  // }
27452
27628
  })(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
27453
27629
 
27454
- },{"./CodePointBuffer":179,"./CodePointCharStream":180,"./IntStream":191}],179:[function(require,module,exports){
27630
+ },{"./CodePointBuffer":181,"./CodePointCharStream":182,"./IntStream":193}],181:[function(require,module,exports){
27455
27631
  "use strict";
27456
27632
  /*!
27457
27633
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -27686,7 +27862,7 @@ exports.CodePointBuffer = CodePointBuffer;
27686
27862
  CodePointBuffer.Builder = Builder;
27687
27863
  })(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
27688
27864
 
27689
- },{"./misc/Character":293,"assert":328}],180:[function(require,module,exports){
27865
+ },{"./misc/Character":295,"assert":330}],182:[function(require,module,exports){
27690
27866
  "use strict";
27691
27867
  /*!
27692
27868
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -27836,7 +28012,7 @@ __decorate([
27836
28012
  ], CodePointCharStream.prototype, "getText", null);
27837
28013
  exports.CodePointCharStream = CodePointCharStream;
27838
28014
 
27839
- },{"./Decorators":185,"./IntStream":191,"./misc/Interval":297,"assert":328}],181:[function(require,module,exports){
28015
+ },{"./Decorators":187,"./IntStream":193,"./misc/Interval":299,"assert":330}],183:[function(require,module,exports){
27840
28016
  "use strict";
27841
28017
  /*!
27842
28018
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -28066,7 +28242,7 @@ CommonToken = __decorate([
28066
28242
  ], CommonToken);
28067
28243
  exports.CommonToken = CommonToken;
28068
28244
 
28069
- },{"./Decorators":185,"./Token":210,"./misc/Interval":297}],182:[function(require,module,exports){
28245
+ },{"./Decorators":187,"./Token":212,"./misc/Interval":299}],184:[function(require,module,exports){
28070
28246
  "use strict";
28071
28247
  /*!
28072
28248
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -28130,7 +28306,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
28130
28306
  CommonTokenFactory.DEFAULT = new CommonTokenFactory();
28131
28307
  })(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
28132
28308
 
28133
- },{"./CommonToken":181,"./Decorators":185,"./misc/Interval":297}],183:[function(require,module,exports){
28309
+ },{"./CommonToken":183,"./Decorators":187,"./misc/Interval":299}],185:[function(require,module,exports){
28134
28310
  "use strict";
28135
28311
  /*!
28136
28312
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -28257,7 +28433,7 @@ CommonTokenStream = __decorate([
28257
28433
  ], CommonTokenStream);
28258
28434
  exports.CommonTokenStream = CommonTokenStream;
28259
28435
 
28260
- },{"./BufferedTokenStream":176,"./Decorators":185,"./Token":210}],184:[function(require,module,exports){
28436
+ },{"./BufferedTokenStream":178,"./Decorators":187,"./Token":212}],186:[function(require,module,exports){
28261
28437
  "use strict";
28262
28438
  /*!
28263
28439
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -28291,7 +28467,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
28291
28467
  */
28292
28468
  ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
28293
28469
 
28294
- },{}],185:[function(require,module,exports){
28470
+ },{}],187:[function(require,module,exports){
28295
28471
  "use strict";
28296
28472
  /*!
28297
28473
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -28318,7 +28494,7 @@ function SuppressWarnings(options) {
28318
28494
  }
28319
28495
  exports.SuppressWarnings = SuppressWarnings;
28320
28496
 
28321
- },{}],186:[function(require,module,exports){
28497
+ },{}],188:[function(require,module,exports){
28322
28498
  "use strict";
28323
28499
  /*!
28324
28500
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -29132,7 +29308,7 @@ __decorate([
29132
29308
  ], DefaultErrorStrategy.prototype, "consumeUntil", null);
29133
29309
  exports.DefaultErrorStrategy = DefaultErrorStrategy;
29134
29310
 
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){
29311
+ },{"./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
29312
  "use strict";
29137
29313
  /*!
29138
29314
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -29208,7 +29384,7 @@ var Dependents;
29208
29384
  Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
29209
29385
  })(Dependents = exports.Dependents || (exports.Dependents = {}));
29210
29386
 
29211
- },{}],188:[function(require,module,exports){
29387
+ },{}],190:[function(require,module,exports){
29212
29388
  "use strict";
29213
29389
  /*!
29214
29390
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -29356,7 +29532,7 @@ __decorate([
29356
29532
  ], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
29357
29533
  exports.DiagnosticErrorListener = DiagnosticErrorListener;
29358
29534
 
29359
- },{"./Decorators":185,"./misc/BitSet":292,"./misc/Interval":297}],189:[function(require,module,exports){
29535
+ },{"./Decorators":187,"./misc/BitSet":294,"./misc/Interval":299}],191:[function(require,module,exports){
29360
29536
  "use strict";
29361
29537
  /*!
29362
29538
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -29421,7 +29597,7 @@ FailedPredicateException = __decorate([
29421
29597
  ], FailedPredicateException);
29422
29598
  exports.FailedPredicateException = FailedPredicateException;
29423
29599
 
29424
- },{"./Decorators":185,"./RecognitionException":204,"./atn/PredicateTransition":264}],190:[function(require,module,exports){
29600
+ },{"./Decorators":187,"./RecognitionException":206,"./atn/PredicateTransition":266}],192:[function(require,module,exports){
29425
29601
  "use strict";
29426
29602
  /*!
29427
29603
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -29461,7 +29637,7 @@ InputMismatchException = __decorate([
29461
29637
  ], InputMismatchException);
29462
29638
  exports.InputMismatchException = InputMismatchException;
29463
29639
 
29464
- },{"./Decorators":185,"./RecognitionException":204}],191:[function(require,module,exports){
29640
+ },{"./Decorators":187,"./RecognitionException":206}],193:[function(require,module,exports){
29465
29641
  "use strict";
29466
29642
  /*!
29467
29643
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -29484,7 +29660,7 @@ var IntStream;
29484
29660
  IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
29485
29661
  })(IntStream = exports.IntStream || (exports.IntStream = {}));
29486
29662
 
29487
- },{}],192:[function(require,module,exports){
29663
+ },{}],194:[function(require,module,exports){
29488
29664
  "use strict";
29489
29665
  /*!
29490
29666
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -29531,7 +29707,7 @@ __decorate([
29531
29707
  ], InterpreterRuleContext.prototype, "ruleIndex", null);
29532
29708
  exports.InterpreterRuleContext = InterpreterRuleContext;
29533
29709
 
29534
- },{"./Decorators":185,"./ParserRuleContext":201}],193:[function(require,module,exports){
29710
+ },{"./Decorators":187,"./ParserRuleContext":203}],195:[function(require,module,exports){
29535
29711
  "use strict";
29536
29712
  /*!
29537
29713
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -29867,7 +30043,7 @@ __decorate([
29867
30043
  ], Lexer.prototype, "charPositionInLine", null);
29868
30044
  exports.Lexer = Lexer;
29869
30045
 
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){
30046
+ },{"./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
30047
  "use strict";
29872
30048
  /*!
29873
30049
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -29947,7 +30123,7 @@ LexerInterpreter = __decorate([
29947
30123
  ], LexerInterpreter);
29948
30124
  exports.LexerInterpreter = LexerInterpreter;
29949
30125
 
29950
- },{"./Decorators":185,"./Lexer":193,"./atn/LexerATNSimulator":243}],195:[function(require,module,exports){
30126
+ },{"./Decorators":187,"./Lexer":195,"./atn/LexerATNSimulator":245}],197:[function(require,module,exports){
29951
30127
  "use strict";
29952
30128
  /*!
29953
30129
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -30004,7 +30180,7 @@ LexerNoViableAltException = __decorate([
30004
30180
  ], LexerNoViableAltException);
30005
30181
  exports.LexerNoViableAltException = LexerNoViableAltException;
30006
30182
 
30007
- },{"./Decorators":185,"./RecognitionException":204,"./misc/Interval":297,"./misc/Utils":304}],196:[function(require,module,exports){
30183
+ },{"./Decorators":187,"./RecognitionException":206,"./misc/Interval":299,"./misc/Utils":306}],198:[function(require,module,exports){
30008
30184
  "use strict";
30009
30185
  /*!
30010
30186
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -30214,7 +30390,7 @@ ListTokenSource = __decorate([
30214
30390
  ], ListTokenSource);
30215
30391
  exports.ListTokenSource = ListTokenSource;
30216
30392
 
30217
- },{"./CommonTokenFactory":182,"./Decorators":185,"./Token":210}],197:[function(require,module,exports){
30393
+ },{"./CommonTokenFactory":184,"./Decorators":187,"./Token":212}],199:[function(require,module,exports){
30218
30394
  "use strict";
30219
30395
  /*!
30220
30396
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -30269,7 +30445,7 @@ __decorate([
30269
30445
  ], NoViableAltException.prototype, "_startToken", void 0);
30270
30446
  exports.NoViableAltException = NoViableAltException;
30271
30447
 
30272
- },{"./Decorators":185,"./Parser":198,"./RecognitionException":204}],198:[function(require,module,exports){
30448
+ },{"./Decorators":187,"./Parser":200,"./RecognitionException":206}],200:[function(require,module,exports){
30273
30449
  (function (process){(function (){
30274
30450
  "use strict";
30275
30451
  /*!
@@ -31115,7 +31291,7 @@ __decorate([
31115
31291
  exports.Parser = Parser;
31116
31292
 
31117
31293
  }).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){
31294
+ },{"./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
31295
  "use strict";
31120
31296
  /*!
31121
31297
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -31123,7 +31299,7 @@ exports.Parser = Parser;
31123
31299
  */
31124
31300
  Object.defineProperty(exports, "__esModule", { value: true });
31125
31301
 
31126
- },{}],200:[function(require,module,exports){
31302
+ },{}],202:[function(require,module,exports){
31127
31303
  "use strict";
31128
31304
  /*!
31129
31305
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -31531,7 +31707,7 @@ ParserInterpreter = __decorate([
31531
31707
  ], ParserInterpreter);
31532
31708
  exports.ParserInterpreter = ParserInterpreter;
31533
31709
 
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){
31710
+ },{"./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
31711
  "use strict";
31536
31712
  /*!
31537
31713
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -31832,7 +32008,7 @@ __decorate([
31832
32008
  ], ParserRuleContext.prototype, "sourceInterval", null);
31833
32009
  exports.ParserRuleContext = ParserRuleContext;
31834
32010
 
31835
- },{"./Decorators":185,"./RuleContext":206,"./misc/Interval":297,"./tree/ErrorNode":305,"./tree/TerminalNode":308}],202:[function(require,module,exports){
32011
+ },{"./Decorators":187,"./RuleContext":208,"./misc/Interval":299,"./tree/ErrorNode":307,"./tree/TerminalNode":310}],204:[function(require,module,exports){
31836
32012
  "use strict";
31837
32013
  /*!
31838
32014
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -31882,7 +32058,7 @@ __decorate([
31882
32058
  ], ProxyErrorListener.prototype, "syntaxError", null);
31883
32059
  exports.ProxyErrorListener = ProxyErrorListener;
31884
32060
 
31885
- },{"./Decorators":185}],203:[function(require,module,exports){
32061
+ },{"./Decorators":187}],205:[function(require,module,exports){
31886
32062
  "use strict";
31887
32063
  /*!
31888
32064
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -31941,7 +32117,7 @@ __decorate([
31941
32117
  ], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
31942
32118
  exports.ProxyParserErrorListener = ProxyParserErrorListener;
31943
32119
 
31944
- },{"./Decorators":185,"./ProxyErrorListener":202}],204:[function(require,module,exports){
32120
+ },{"./Decorators":187,"./ProxyErrorListener":204}],206:[function(require,module,exports){
31945
32121
  "use strict";
31946
32122
  /*!
31947
32123
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32046,7 +32222,7 @@ class RecognitionException extends Error {
32046
32222
  }
32047
32223
  exports.RecognitionException = RecognitionException;
32048
32224
 
32049
- },{}],205:[function(require,module,exports){
32225
+ },{}],207:[function(require,module,exports){
32050
32226
  "use strict";
32051
32227
  /*!
32052
32228
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32265,7 +32441,7 @@ __decorate([
32265
32441
  ], Recognizer.prototype, "getErrorListeners", null);
32266
32442
  exports.Recognizer = Recognizer;
32267
32443
 
32268
- },{"./ConsoleErrorListener":184,"./Decorators":185,"./ProxyErrorListener":202,"./Token":210,"./misc/Utils":304}],206:[function(require,module,exports){
32444
+ },{"./ConsoleErrorListener":186,"./Decorators":187,"./ProxyErrorListener":204,"./Token":212,"./misc/Utils":306}],208:[function(require,module,exports){
32269
32445
  "use strict";
32270
32446
  /*!
32271
32447
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32482,7 +32658,7 @@ __decorate([
32482
32658
  ], RuleContext.prototype, "toStringTree", null);
32483
32659
  exports.RuleContext = RuleContext;
32484
32660
 
32485
- },{"./Decorators":185,"./ParserRuleContext":201,"./Recognizer":205,"./atn/ATN":218,"./misc/Interval":297,"./tree/RuleNode":307,"./tree/Trees":309}],207:[function(require,module,exports){
32661
+ },{"./Decorators":187,"./ParserRuleContext":203,"./Recognizer":207,"./atn/ATN":220,"./misc/Interval":299,"./tree/RuleNode":309,"./tree/Trees":311}],209:[function(require,module,exports){
32486
32662
  "use strict";
32487
32663
  /*!
32488
32664
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32533,7 +32709,7 @@ __decorate([
32533
32709
  ], RuleContextWithAltNum.prototype, "altNumber", null);
32534
32710
  exports.RuleContextWithAltNum = RuleContextWithAltNum;
32535
32711
 
32536
- },{"./Decorators":185,"./ParserRuleContext":201,"./atn/ATN":218}],208:[function(require,module,exports){
32712
+ },{"./Decorators":187,"./ParserRuleContext":203,"./atn/ATN":220}],210:[function(require,module,exports){
32537
32713
  "use strict";
32538
32714
  /*!
32539
32715
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32556,7 +32732,7 @@ function RuleDependency(dependency) {
32556
32732
  }
32557
32733
  exports.RuleDependency = RuleDependency;
32558
32734
 
32559
- },{}],209:[function(require,module,exports){
32735
+ },{}],211:[function(require,module,exports){
32560
32736
  "use strict";
32561
32737
  /*!
32562
32738
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32575,7 +32751,7 @@ function RuleVersion(version) {
32575
32751
  }
32576
32752
  exports.RuleVersion = RuleVersion;
32577
32753
 
32578
- },{}],210:[function(require,module,exports){
32754
+ },{}],212:[function(require,module,exports){
32579
32755
  "use strict";
32580
32756
  /*!
32581
32757
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32615,7 +32791,7 @@ var Token;
32615
32791
  Token.MIN_USER_CHANNEL_VALUE = 2;
32616
32792
  })(Token = exports.Token || (exports.Token = {}));
32617
32793
 
32618
- },{"./IntStream":191}],211:[function(require,module,exports){
32794
+ },{"./IntStream":193}],213:[function(require,module,exports){
32619
32795
  "use strict";
32620
32796
  /*!
32621
32797
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32623,7 +32799,7 @@ var Token;
32623
32799
  */
32624
32800
  Object.defineProperty(exports, "__esModule", { value: true });
32625
32801
 
32626
- },{}],212:[function(require,module,exports){
32802
+ },{}],214:[function(require,module,exports){
32627
32803
  "use strict";
32628
32804
  /*!
32629
32805
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32631,7 +32807,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
32631
32807
  */
32632
32808
  Object.defineProperty(exports, "__esModule", { value: true });
32633
32809
 
32634
- },{}],213:[function(require,module,exports){
32810
+ },{}],215:[function(require,module,exports){
32635
32811
  "use strict";
32636
32812
  /*!
32637
32813
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32639,7 +32815,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
32639
32815
  */
32640
32816
  Object.defineProperty(exports, "__esModule", { value: true });
32641
32817
 
32642
- },{}],214:[function(require,module,exports){
32818
+ },{}],216:[function(require,module,exports){
32643
32819
  "use strict";
32644
32820
  /*!
32645
32821
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33147,7 +33323,7 @@ __decorate([
33147
33323
  Decorators_1.Override
33148
33324
  ], ReplaceOp.prototype, "toString", null);
33149
33325
 
33150
- },{"./Decorators":185,"./Token":210,"./misc/Interval":297}],215:[function(require,module,exports){
33326
+ },{"./Decorators":187,"./Token":212,"./misc/Interval":299}],217:[function(require,module,exports){
33151
33327
  "use strict";
33152
33328
  /*!
33153
33329
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33155,7 +33331,7 @@ __decorate([
33155
33331
  */
33156
33332
  Object.defineProperty(exports, "__esModule", { value: true });
33157
33333
 
33158
- },{}],216:[function(require,module,exports){
33334
+ },{}],218:[function(require,module,exports){
33159
33335
  "use strict";
33160
33336
  /*!
33161
33337
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33275,7 +33451,7 @@ __decorate([
33275
33451
  ], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
33276
33452
  exports.VocabularyImpl = VocabularyImpl;
33277
33453
 
33278
- },{"./Decorators":185,"./Token":210}],217:[function(require,module,exports){
33454
+ },{"./Decorators":187,"./Token":212}],219:[function(require,module,exports){
33279
33455
  "use strict";
33280
33456
  /*!
33281
33457
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33283,7 +33459,7 @@ exports.VocabularyImpl = VocabularyImpl;
33283
33459
  */
33284
33460
  Object.defineProperty(exports, "__esModule", { value: true });
33285
33461
 
33286
- },{}],218:[function(require,module,exports){
33462
+ },{}],220:[function(require,module,exports){
33287
33463
  "use strict";
33288
33464
  /*!
33289
33465
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33505,7 +33681,7 @@ exports.ATN = ATN;
33505
33681
  })(ATN = exports.ATN || (exports.ATN = {}));
33506
33682
  exports.ATN = ATN;
33507
33683
 
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){
33684
+ },{"../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
33685
  "use strict";
33510
33686
  /*!
33511
33687
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34030,7 +34206,7 @@ ActionSemanticContextATNConfig = __decorate([
34030
34206
  __param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
34031
34207
  ], ActionSemanticContextATNConfig);
34032
34208
 
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){
34209
+ },{"../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
34210
  "use strict";
34035
34211
  /*!
34036
34212
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34477,7 +34653,7 @@ __decorate([
34477
34653
  ], ATNConfigSet.prototype, "hashCode", null);
34478
34654
  exports.ATNConfigSet = ATNConfigSet;
34479
34655
 
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){
34656
+ },{"../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
34657
  "use strict";
34482
34658
  /*!
34483
34659
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34556,7 +34732,7 @@ __decorate([
34556
34732
  ], ATNDeserializationOptions, "defaultOptions", null);
34557
34733
  exports.ATNDeserializationOptions = ATNDeserializationOptions;
34558
34734
 
34559
- },{"../Decorators":185}],222:[function(require,module,exports){
34735
+ },{"../Decorators":187}],224:[function(require,module,exports){
34560
34736
  "use strict";
34561
34737
  /*!
34562
34738
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35643,7 +35819,7 @@ __decorate([
35643
35819
  ], ATNDeserializer.prototype, "edgeFactory", null);
35644
35820
  exports.ATNDeserializer = ATNDeserializer;
35645
35821
 
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){
35822
+ },{"../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
35823
  "use strict";
35648
35824
  /*!
35649
35825
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35707,7 +35883,7 @@ exports.ATNSimulator = ATNSimulator;
35707
35883
  })(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
35708
35884
  exports.ATNSimulator = ATNSimulator;
35709
35885
 
35710
- },{"../Decorators":185,"../dfa/DFAState":285,"./ATNConfigSet":220,"./PredictionContext":265}],224:[function(require,module,exports){
35886
+ },{"../Decorators":187,"../dfa/DFAState":287,"./ATNConfigSet":222,"./PredictionContext":267}],226:[function(require,module,exports){
35711
35887
  "use strict";
35712
35888
  /*!
35713
35889
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35894,7 +36070,7 @@ exports.ATNState = ATNState;
35894
36070
  ATNState.INVALID_STATE_NUMBER = -1;
35895
36071
  })(ATNState = exports.ATNState || (exports.ATNState = {}));
35896
36072
 
35897
- },{"../Decorators":185}],225:[function(require,module,exports){
36073
+ },{"../Decorators":187}],227:[function(require,module,exports){
35898
36074
  "use strict";
35899
36075
  /*!
35900
36076
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35920,7 +36096,7 @@ var ATNStateType;
35920
36096
  ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
35921
36097
  })(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
35922
36098
 
35923
- },{}],226:[function(require,module,exports){
36099
+ },{}],228:[function(require,module,exports){
35924
36100
  "use strict";
35925
36101
  /*!
35926
36102
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35940,7 +36116,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
35940
36116
  }
35941
36117
  exports.AbstractPredicateTransition = AbstractPredicateTransition;
35942
36118
 
35943
- },{"./Transition":280}],227:[function(require,module,exports){
36119
+ },{"./Transition":282}],229:[function(require,module,exports){
35944
36120
  "use strict";
35945
36121
  /*!
35946
36122
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35996,7 +36172,7 @@ ActionTransition = __decorate([
35996
36172
  ], ActionTransition);
35997
36173
  exports.ActionTransition = ActionTransition;
35998
36174
 
35999
- },{"../Decorators":185,"./Transition":280}],228:[function(require,module,exports){
36175
+ },{"../Decorators":187,"./Transition":282}],230:[function(require,module,exports){
36000
36176
  "use strict";
36001
36177
  /*!
36002
36178
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36083,7 +36259,7 @@ AmbiguityInfo = __decorate([
36083
36259
  ], AmbiguityInfo);
36084
36260
  exports.AmbiguityInfo = AmbiguityInfo;
36085
36261
 
36086
- },{"../Decorators":185,"./DecisionEventInfo":236}],229:[function(require,module,exports){
36262
+ },{"../Decorators":187,"./DecisionEventInfo":238}],231:[function(require,module,exports){
36087
36263
  "use strict";
36088
36264
  /*!
36089
36265
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36141,7 +36317,7 @@ AtomTransition = __decorate([
36141
36317
  ], AtomTransition);
36142
36318
  exports.AtomTransition = AtomTransition;
36143
36319
 
36144
- },{"../Decorators":185,"../misc/IntervalSet":298,"./Transition":280}],230:[function(require,module,exports){
36320
+ },{"../Decorators":187,"../misc/IntervalSet":300,"./Transition":282}],232:[function(require,module,exports){
36145
36321
  "use strict";
36146
36322
  /*!
36147
36323
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36173,7 +36349,7 @@ __decorate([
36173
36349
  ], BasicBlockStartState.prototype, "stateType", null);
36174
36350
  exports.BasicBlockStartState = BasicBlockStartState;
36175
36351
 
36176
- },{"../Decorators":185,"./ATNStateType":225,"./BlockStartState":233}],231:[function(require,module,exports){
36352
+ },{"../Decorators":187,"./ATNStateType":227,"./BlockStartState":235}],233:[function(require,module,exports){
36177
36353
  "use strict";
36178
36354
  /*!
36179
36355
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36205,7 +36381,7 @@ __decorate([
36205
36381
  ], BasicState.prototype, "stateType", null);
36206
36382
  exports.BasicState = BasicState;
36207
36383
 
36208
- },{"../Decorators":185,"./ATNState":224,"./ATNStateType":225}],232:[function(require,module,exports){
36384
+ },{"../Decorators":187,"./ATNState":226,"./ATNStateType":227}],234:[function(require,module,exports){
36209
36385
  "use strict";
36210
36386
  /*!
36211
36387
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36234,7 +36410,7 @@ __decorate([
36234
36410
  ], BlockEndState.prototype, "stateType", null);
36235
36411
  exports.BlockEndState = BlockEndState;
36236
36412
 
36237
- },{"../Decorators":185,"./ATNState":224,"./ATNStateType":225}],233:[function(require,module,exports){
36413
+ },{"../Decorators":187,"./ATNState":226,"./ATNStateType":227}],235:[function(require,module,exports){
36238
36414
  "use strict";
36239
36415
  /*!
36240
36416
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36248,7 +36424,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
36248
36424
  }
36249
36425
  exports.BlockStartState = BlockStartState;
36250
36426
 
36251
- },{"./DecisionState":238}],234:[function(require,module,exports){
36427
+ },{"./DecisionState":240}],236:[function(require,module,exports){
36252
36428
  "use strict";
36253
36429
  /*!
36254
36430
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36318,7 +36494,7 @@ __decorate([
36318
36494
  ], ConflictInfo.prototype, "hashCode", null);
36319
36495
  exports.ConflictInfo = ConflictInfo;
36320
36496
 
36321
- },{"../Decorators":185,"../misc/Utils":304}],235:[function(require,module,exports){
36497
+ },{"../Decorators":187,"../misc/Utils":306}],237:[function(require,module,exports){
36322
36498
  "use strict";
36323
36499
  /*!
36324
36500
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36378,7 +36554,7 @@ ContextSensitivityInfo = __decorate([
36378
36554
  ], ContextSensitivityInfo);
36379
36555
  exports.ContextSensitivityInfo = ContextSensitivityInfo;
36380
36556
 
36381
- },{"../Decorators":185,"./DecisionEventInfo":236}],236:[function(require,module,exports){
36557
+ },{"../Decorators":187,"./DecisionEventInfo":238}],238:[function(require,module,exports){
36382
36558
  "use strict";
36383
36559
  /*!
36384
36560
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36430,7 +36606,7 @@ DecisionEventInfo = __decorate([
36430
36606
  ], DecisionEventInfo);
36431
36607
  exports.DecisionEventInfo = DecisionEventInfo;
36432
36608
 
36433
- },{"../Decorators":185}],237:[function(require,module,exports){
36609
+ },{"../Decorators":187}],239:[function(require,module,exports){
36434
36610
  "use strict";
36435
36611
  /*!
36436
36612
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36643,7 +36819,7 @@ __decorate([
36643
36819
  ], DecisionInfo.prototype, "toString", null);
36644
36820
  exports.DecisionInfo = DecisionInfo;
36645
36821
 
36646
- },{"../Decorators":185}],238:[function(require,module,exports){
36822
+ },{"../Decorators":187}],240:[function(require,module,exports){
36647
36823
  "use strict";
36648
36824
  /*!
36649
36825
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36663,7 +36839,7 @@ class DecisionState extends ATNState_1.ATNState {
36663
36839
  }
36664
36840
  exports.DecisionState = DecisionState;
36665
36841
 
36666
- },{"./ATNState":224}],239:[function(require,module,exports){
36842
+ },{"./ATNState":226}],241:[function(require,module,exports){
36667
36843
  "use strict";
36668
36844
  /*!
36669
36845
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36729,7 +36905,7 @@ EpsilonTransition = __decorate([
36729
36905
  ], EpsilonTransition);
36730
36906
  exports.EpsilonTransition = EpsilonTransition;
36731
36907
 
36732
- },{"../Decorators":185,"./Transition":280}],240:[function(require,module,exports){
36908
+ },{"../Decorators":187,"./Transition":282}],242:[function(require,module,exports){
36733
36909
  "use strict";
36734
36910
  /*!
36735
36911
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36782,7 +36958,7 @@ ErrorInfo = __decorate([
36782
36958
  ], ErrorInfo);
36783
36959
  exports.ErrorInfo = ErrorInfo;
36784
36960
 
36785
- },{"../Decorators":185,"./DecisionEventInfo":236}],241:[function(require,module,exports){
36961
+ },{"../Decorators":187,"./DecisionEventInfo":238}],243:[function(require,module,exports){
36786
36962
  "use strict";
36787
36963
  /*!
36788
36964
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36813,7 +36989,7 @@ __decorate([
36813
36989
  ], InvalidState.prototype, "stateType", null);
36814
36990
  exports.InvalidState = InvalidState;
36815
36991
 
36816
- },{"../Decorators":185,"./ATNStateType":225,"./BasicState":231}],242:[function(require,module,exports){
36992
+ },{"../Decorators":187,"./ATNStateType":227,"./BasicState":233}],244:[function(require,module,exports){
36817
36993
  "use strict";
36818
36994
  /*!
36819
36995
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37035,7 +37211,7 @@ LL1Analyzer = __decorate([
37035
37211
  ], LL1Analyzer);
37036
37212
  exports.LL1Analyzer = LL1Analyzer;
37037
37213
 
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){
37214
+ },{"../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
37215
  "use strict";
37040
37216
  /*!
37041
37217
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37752,7 +37928,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
37752
37928
  })(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
37753
37929
  exports.LexerATNSimulator = LexerATNSimulator;
37754
37930
 
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){
37931
+ },{"../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
37932
  "use strict";
37757
37933
  /*!
37758
37934
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37953,7 +38129,7 @@ LexerActionExecutor = __decorate([
37953
38129
  ], LexerActionExecutor);
37954
38130
  exports.LexerActionExecutor = LexerActionExecutor;
37955
38131
 
37956
- },{"../Decorators":185,"../misc/ArrayEqualityComparator":290,"../misc/MurmurHash":300,"./LexerIndexedCustomAction":247}],245:[function(require,module,exports){
38132
+ },{"../Decorators":187,"../misc/ArrayEqualityComparator":292,"../misc/MurmurHash":302,"./LexerIndexedCustomAction":249}],247:[function(require,module,exports){
37957
38133
  "use strict";
37958
38134
  /*!
37959
38135
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38058,7 +38234,7 @@ __decorate([
38058
38234
  ], LexerChannelAction.prototype, "toString", null);
38059
38235
  exports.LexerChannelAction = LexerChannelAction;
38060
38236
 
38061
- },{"../Decorators":185,"../misc/MurmurHash":300}],246:[function(require,module,exports){
38237
+ },{"../Decorators":187,"../misc/MurmurHash":302}],248:[function(require,module,exports){
38062
38238
  "use strict";
38063
38239
  /*!
38064
38240
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38187,7 +38363,7 @@ __decorate([
38187
38363
  ], LexerCustomAction.prototype, "equals", null);
38188
38364
  exports.LexerCustomAction = LexerCustomAction;
38189
38365
 
38190
- },{"../Decorators":185,"../misc/MurmurHash":300}],247:[function(require,module,exports){
38366
+ },{"../Decorators":187,"../misc/MurmurHash":302}],249:[function(require,module,exports){
38191
38367
  "use strict";
38192
38368
  /*!
38193
38369
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38322,7 +38498,7 @@ LexerIndexedCustomAction = __decorate([
38322
38498
  ], LexerIndexedCustomAction);
38323
38499
  exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
38324
38500
 
38325
- },{"../Decorators":185,"../misc/MurmurHash":300}],248:[function(require,module,exports){
38501
+ },{"../Decorators":187,"../misc/MurmurHash":302}],250:[function(require,module,exports){
38326
38502
  "use strict";
38327
38503
  /*!
38328
38504
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38427,7 +38603,7 @@ __decorate([
38427
38603
  ], LexerModeAction.prototype, "toString", null);
38428
38604
  exports.LexerModeAction = LexerModeAction;
38429
38605
 
38430
- },{"../Decorators":185,"../misc/MurmurHash":300}],249:[function(require,module,exports){
38606
+ },{"../Decorators":187,"../misc/MurmurHash":302}],251:[function(require,module,exports){
38431
38607
  "use strict";
38432
38608
  /*!
38433
38609
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38523,7 +38699,7 @@ exports.LexerMoreAction = LexerMoreAction;
38523
38699
  LexerMoreAction.INSTANCE = new LexerMoreAction();
38524
38700
  })(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
38525
38701
 
38526
- },{"../Decorators":185,"../misc/MurmurHash":300}],250:[function(require,module,exports){
38702
+ },{"../Decorators":187,"../misc/MurmurHash":302}],252:[function(require,module,exports){
38527
38703
  "use strict";
38528
38704
  /*!
38529
38705
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38619,7 +38795,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
38619
38795
  LexerPopModeAction.INSTANCE = new LexerPopModeAction();
38620
38796
  })(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
38621
38797
 
38622
- },{"../Decorators":185,"../misc/MurmurHash":300}],251:[function(require,module,exports){
38798
+ },{"../Decorators":187,"../misc/MurmurHash":302}],253:[function(require,module,exports){
38623
38799
  "use strict";
38624
38800
  /*!
38625
38801
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38724,7 +38900,7 @@ __decorate([
38724
38900
  ], LexerPushModeAction.prototype, "toString", null);
38725
38901
  exports.LexerPushModeAction = LexerPushModeAction;
38726
38902
 
38727
- },{"../Decorators":185,"../misc/MurmurHash":300}],252:[function(require,module,exports){
38903
+ },{"../Decorators":187,"../misc/MurmurHash":302}],254:[function(require,module,exports){
38728
38904
  "use strict";
38729
38905
  /*!
38730
38906
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38820,7 +38996,7 @@ exports.LexerSkipAction = LexerSkipAction;
38820
38996
  LexerSkipAction.INSTANCE = new LexerSkipAction();
38821
38997
  })(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
38822
38998
 
38823
- },{"../Decorators":185,"../misc/MurmurHash":300}],253:[function(require,module,exports){
38999
+ },{"../Decorators":187,"../misc/MurmurHash":302}],255:[function(require,module,exports){
38824
39000
  "use strict";
38825
39001
  /*!
38826
39002
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38924,7 +39100,7 @@ __decorate([
38924
39100
  ], LexerTypeAction.prototype, "toString", null);
38925
39101
  exports.LexerTypeAction = LexerTypeAction;
38926
39102
 
38927
- },{"../Decorators":185,"../misc/MurmurHash":300}],254:[function(require,module,exports){
39103
+ },{"../Decorators":187,"../misc/MurmurHash":302}],256:[function(require,module,exports){
38928
39104
  "use strict";
38929
39105
  /*!
38930
39106
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38976,7 +39152,7 @@ LookaheadEventInfo = __decorate([
38976
39152
  ], LookaheadEventInfo);
38977
39153
  exports.LookaheadEventInfo = LookaheadEventInfo;
38978
39154
 
38979
- },{"../Decorators":185,"./DecisionEventInfo":236}],255:[function(require,module,exports){
39155
+ },{"../Decorators":187,"./DecisionEventInfo":238}],257:[function(require,module,exports){
38980
39156
  "use strict";
38981
39157
  /*!
38982
39158
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39005,7 +39181,7 @@ __decorate([
39005
39181
  ], LoopEndState.prototype, "stateType", null);
39006
39182
  exports.LoopEndState = LoopEndState;
39007
39183
 
39008
- },{"../Decorators":185,"./ATNState":224,"./ATNStateType":225}],256:[function(require,module,exports){
39184
+ },{"../Decorators":187,"./ATNState":226,"./ATNStateType":227}],258:[function(require,module,exports){
39009
39185
  "use strict";
39010
39186
  /*!
39011
39187
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39054,7 +39230,7 @@ NotSetTransition = __decorate([
39054
39230
  ], NotSetTransition);
39055
39231
  exports.NotSetTransition = NotSetTransition;
39056
39232
 
39057
- },{"../Decorators":185,"./SetTransition":274}],257:[function(require,module,exports){
39233
+ },{"../Decorators":187,"./SetTransition":276}],259:[function(require,module,exports){
39058
39234
  "use strict";
39059
39235
  /*!
39060
39236
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39109,7 +39285,7 @@ __decorate([
39109
39285
  ], OrderedATNConfigSet.prototype, "canMerge", null);
39110
39286
  exports.OrderedATNConfigSet = OrderedATNConfigSet;
39111
39287
 
39112
- },{"../Decorators":185,"./ATNConfigSet":220}],258:[function(require,module,exports){
39288
+ },{"../Decorators":187,"./ATNConfigSet":222}],260:[function(require,module,exports){
39113
39289
  "use strict";
39114
39290
  /*!
39115
39291
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39271,7 +39447,7 @@ ParseInfo = __decorate([
39271
39447
  ], ParseInfo);
39272
39448
  exports.ParseInfo = ParseInfo;
39273
39449
 
39274
- },{"../Decorators":185}],259:[function(require,module,exports){
39450
+ },{"../Decorators":187}],261:[function(require,module,exports){
39275
39451
  "use strict";
39276
39452
  /*!
39277
39453
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41544,7 +41720,7 @@ ParserATNSimulator = __decorate([
41544
41720
  ], ParserATNSimulator);
41545
41721
  exports.ParserATNSimulator = ParserATNSimulator;
41546
41722
 
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){
41723
+ },{"../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
41724
  "use strict";
41549
41725
  /*!
41550
41726
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41577,7 +41753,7 @@ __decorate([
41577
41753
  ], PlusBlockStartState.prototype, "stateType", null);
41578
41754
  exports.PlusBlockStartState = PlusBlockStartState;
41579
41755
 
41580
- },{"../Decorators":185,"./ATNStateType":225,"./BlockStartState":233}],261:[function(require,module,exports){
41756
+ },{"../Decorators":187,"./ATNStateType":227,"./BlockStartState":235}],263:[function(require,module,exports){
41581
41757
  "use strict";
41582
41758
  /*!
41583
41759
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41608,7 +41784,7 @@ __decorate([
41608
41784
  ], PlusLoopbackState.prototype, "stateType", null);
41609
41785
  exports.PlusLoopbackState = PlusLoopbackState;
41610
41786
 
41611
- },{"../Decorators":185,"./ATNStateType":225,"./DecisionState":238}],262:[function(require,module,exports){
41787
+ },{"../Decorators":187,"./ATNStateType":227,"./DecisionState":240}],264:[function(require,module,exports){
41612
41788
  "use strict";
41613
41789
  /*!
41614
41790
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41671,7 +41847,7 @@ PrecedencePredicateTransition = __decorate([
41671
41847
  ], PrecedencePredicateTransition);
41672
41848
  exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
41673
41849
 
41674
- },{"../Decorators":185,"./AbstractPredicateTransition":226,"./SemanticContext":273}],263:[function(require,module,exports){
41850
+ },{"../Decorators":187,"./AbstractPredicateTransition":228,"./SemanticContext":275}],265:[function(require,module,exports){
41675
41851
  "use strict";
41676
41852
  /*!
41677
41853
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41734,7 +41910,7 @@ PredicateEvalInfo = __decorate([
41734
41910
  ], PredicateEvalInfo);
41735
41911
  exports.PredicateEvalInfo = PredicateEvalInfo;
41736
41912
 
41737
- },{"../Decorators":185,"./DecisionEventInfo":236}],264:[function(require,module,exports){
41913
+ },{"../Decorators":187,"./DecisionEventInfo":238}],266:[function(require,module,exports){
41738
41914
  "use strict";
41739
41915
  /*!
41740
41916
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41800,7 +41976,7 @@ PredicateTransition = __decorate([
41800
41976
  ], PredicateTransition);
41801
41977
  exports.PredicateTransition = PredicateTransition;
41802
41978
 
41803
- },{"../Decorators":185,"./AbstractPredicateTransition":226,"./SemanticContext":273}],265:[function(require,module,exports){
41979
+ },{"../Decorators":187,"./AbstractPredicateTransition":228,"./SemanticContext":275}],267:[function(require,module,exports){
41804
41980
  "use strict";
41805
41981
  /*!
41806
41982
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42491,7 +42667,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
42491
42667
  PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
42492
42668
  })(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
42493
42669
 
42494
- },{"../Decorators":185,"../misc/Array2DHashMap":288,"../misc/Array2DHashSet":289,"../misc/Arrays":291,"../misc/MurmurHash":300,"./PredictionContextCache":266,"assert":328}],266:[function(require,module,exports){
42670
+ },{"../Decorators":187,"../misc/Array2DHashMap":290,"../misc/Array2DHashSet":291,"../misc/Arrays":293,"../misc/MurmurHash":302,"./PredictionContextCache":268,"assert":330}],268:[function(require,module,exports){
42495
42671
  "use strict";
42496
42672
  /*!
42497
42673
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42632,7 +42808,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
42632
42808
  PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
42633
42809
  })(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
42634
42810
 
42635
- },{"../Decorators":185,"../misc/Array2DHashMap":288,"../misc/ObjectEqualityComparator":301,"./PredictionContext":265,"assert":328}],267:[function(require,module,exports){
42811
+ },{"../Decorators":187,"../misc/Array2DHashMap":290,"../misc/ObjectEqualityComparator":303,"./PredictionContext":267,"assert":330}],269:[function(require,module,exports){
42636
42812
  "use strict";
42637
42813
  /*!
42638
42814
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42793,7 +42969,7 @@ var PredictionMode;
42793
42969
  PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
42794
42970
  })(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
42795
42971
 
42796
- },{"../Decorators":185,"../misc/Array2DHashMap":288,"../misc/MurmurHash":300,"./RuleStopState":271}],268:[function(require,module,exports){
42972
+ },{"../Decorators":187,"../misc/Array2DHashMap":290,"../misc/MurmurHash":302,"./RuleStopState":273}],270:[function(require,module,exports){
42797
42973
  (function (process){(function (){
42798
42974
  "use strict";
42799
42975
  /*!
@@ -43062,7 +43238,7 @@ __decorate([
43062
43238
  exports.ProfilingATNSimulator = ProfilingATNSimulator;
43063
43239
 
43064
43240
  }).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){
43241
+ },{"../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
43242
  "use strict";
43067
43243
  /*!
43068
43244
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43120,7 +43296,7 @@ RangeTransition = __decorate([
43120
43296
  ], RangeTransition);
43121
43297
  exports.RangeTransition = RangeTransition;
43122
43298
 
43123
- },{"../Decorators":185,"../misc/IntervalSet":298,"./Transition":280}],270:[function(require,module,exports){
43299
+ },{"../Decorators":187,"../misc/IntervalSet":300,"./Transition":282}],272:[function(require,module,exports){
43124
43300
  "use strict";
43125
43301
  /*!
43126
43302
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43153,7 +43329,7 @@ __decorate([
43153
43329
  ], RuleStartState.prototype, "stateType", null);
43154
43330
  exports.RuleStartState = RuleStartState;
43155
43331
 
43156
- },{"../Decorators":185,"./ATNState":224,"./ATNStateType":225}],271:[function(require,module,exports){
43332
+ },{"../Decorators":187,"./ATNState":226,"./ATNStateType":227}],273:[function(require,module,exports){
43157
43333
  "use strict";
43158
43334
  /*!
43159
43335
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43192,7 +43368,7 @@ __decorate([
43192
43368
  ], RuleStopState.prototype, "stateType", null);
43193
43369
  exports.RuleStopState = RuleStopState;
43194
43370
 
43195
- },{"../Decorators":185,"./ATNState":224,"./ATNStateType":225}],272:[function(require,module,exports){
43371
+ },{"../Decorators":187,"./ATNState":226,"./ATNStateType":227}],274:[function(require,module,exports){
43196
43372
  "use strict";
43197
43373
  /*!
43198
43374
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43248,7 +43424,7 @@ RuleTransition = __decorate([
43248
43424
  ], RuleTransition);
43249
43425
  exports.RuleTransition = RuleTransition;
43250
43426
 
43251
- },{"../Decorators":185,"./Transition":280}],273:[function(require,module,exports){
43427
+ },{"../Decorators":187,"./Transition":282}],275:[function(require,module,exports){
43252
43428
  "use strict";
43253
43429
  /*!
43254
43430
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43728,7 +43904,7 @@ exports.SemanticContext = SemanticContext;
43728
43904
  SemanticContext.OR = OR;
43729
43905
  })(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
43730
43906
 
43731
- },{"../Decorators":185,"../misc/Array2DHashSet":289,"../misc/ArrayEqualityComparator":290,"../misc/MurmurHash":300,"../misc/ObjectEqualityComparator":301,"../misc/Utils":304}],274:[function(require,module,exports){
43907
+ },{"../Decorators":187,"../misc/Array2DHashSet":291,"../misc/ArrayEqualityComparator":292,"../misc/MurmurHash":302,"../misc/ObjectEqualityComparator":303,"../misc/Utils":306}],276:[function(require,module,exports){
43732
43908
  "use strict";
43733
43909
  /*!
43734
43910
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43794,7 +43970,7 @@ SetTransition = __decorate([
43794
43970
  ], SetTransition);
43795
43971
  exports.SetTransition = SetTransition;
43796
43972
 
43797
- },{"../Decorators":185,"../Token":210,"../misc/IntervalSet":298,"./Transition":280}],275:[function(require,module,exports){
43973
+ },{"../Decorators":187,"../Token":212,"../misc/IntervalSet":300,"./Transition":282}],277:[function(require,module,exports){
43798
43974
  "use strict";
43799
43975
  /*!
43800
43976
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43830,7 +44006,7 @@ SimulatorState = __decorate([
43830
44006
  ], SimulatorState);
43831
44007
  exports.SimulatorState = SimulatorState;
43832
44008
 
43833
- },{"../Decorators":185,"../ParserRuleContext":201}],276:[function(require,module,exports){
44009
+ },{"../Decorators":187,"../ParserRuleContext":203}],278:[function(require,module,exports){
43834
44010
  "use strict";
43835
44011
  /*!
43836
44012
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43858,7 +44034,7 @@ __decorate([
43858
44034
  ], StarBlockStartState.prototype, "stateType", null);
43859
44035
  exports.StarBlockStartState = StarBlockStartState;
43860
44036
 
43861
- },{"../Decorators":185,"./ATNStateType":225,"./BlockStartState":233}],277:[function(require,module,exports){
44037
+ },{"../Decorators":187,"./ATNStateType":227,"./BlockStartState":235}],279:[function(require,module,exports){
43862
44038
  "use strict";
43863
44039
  /*!
43864
44040
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43915,7 +44091,7 @@ __decorate([
43915
44091
  ], StarLoopEntryState.prototype, "stateType", null);
43916
44092
  exports.StarLoopEntryState = StarLoopEntryState;
43917
44093
 
43918
- },{"../Decorators":185,"../misc/BitSet":292,"./ATNStateType":225,"./DecisionState":238}],278:[function(require,module,exports){
44094
+ },{"../Decorators":187,"../misc/BitSet":294,"./ATNStateType":227,"./DecisionState":240}],280:[function(require,module,exports){
43919
44095
  "use strict";
43920
44096
  /*!
43921
44097
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43946,7 +44122,7 @@ __decorate([
43946
44122
  ], StarLoopbackState.prototype, "stateType", null);
43947
44123
  exports.StarLoopbackState = StarLoopbackState;
43948
44124
 
43949
- },{"../Decorators":185,"./ATNState":224,"./ATNStateType":225}],279:[function(require,module,exports){
44125
+ },{"../Decorators":187,"./ATNState":226,"./ATNStateType":227}],281:[function(require,module,exports){
43950
44126
  "use strict";
43951
44127
  /*!
43952
44128
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43975,7 +44151,7 @@ __decorate([
43975
44151
  ], TokensStartState.prototype, "stateType", null);
43976
44152
  exports.TokensStartState = TokensStartState;
43977
44153
 
43978
- },{"../Decorators":185,"./ATNStateType":225,"./DecisionState":238}],280:[function(require,module,exports){
44154
+ },{"../Decorators":187,"./ATNStateType":227,"./DecisionState":240}],282:[function(require,module,exports){
43979
44155
  "use strict";
43980
44156
  /*!
43981
44157
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44049,7 +44225,7 @@ Transition = __decorate([
44049
44225
  ], Transition);
44050
44226
  exports.Transition = Transition;
44051
44227
 
44052
- },{"../Decorators":185}],281:[function(require,module,exports){
44228
+ },{"../Decorators":187}],283:[function(require,module,exports){
44053
44229
  "use strict";
44054
44230
  /*!
44055
44231
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44097,7 +44273,7 @@ WildcardTransition = __decorate([
44097
44273
  ], WildcardTransition);
44098
44274
  exports.WildcardTransition = WildcardTransition;
44099
44275
 
44100
- },{"../Decorators":185,"./Transition":280}],282:[function(require,module,exports){
44276
+ },{"../Decorators":187,"./Transition":282}],284:[function(require,module,exports){
44101
44277
  "use strict";
44102
44278
  /*!
44103
44279
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44139,7 +44315,7 @@ class AcceptStateInfo {
44139
44315
  }
44140
44316
  exports.AcceptStateInfo = AcceptStateInfo;
44141
44317
 
44142
- },{}],283:[function(require,module,exports){
44318
+ },{}],285:[function(require,module,exports){
44143
44319
  "use strict";
44144
44320
  /*!
44145
44321
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44314,7 +44490,7 @@ DFA = __decorate([
44314
44490
  ], DFA);
44315
44491
  exports.DFA = DFA;
44316
44492
 
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){
44493
+ },{"../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
44494
  "use strict";
44319
44495
  /*!
44320
44496
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44456,7 +44632,7 @@ __decorate([
44456
44632
  ], DFASerializer.prototype, "toString", null);
44457
44633
  exports.DFASerializer = DFASerializer;
44458
44634
 
44459
- },{"../Decorators":185,"../Recognizer":205,"../VocabularyImpl":216,"../atn/ATNSimulator":223,"../atn/PredictionContext":265}],285:[function(require,module,exports){
44635
+ },{"../Decorators":187,"../Recognizer":207,"../VocabularyImpl":218,"../atn/ATNSimulator":225,"../atn/PredictionContext":267}],287:[function(require,module,exports){
44460
44636
  "use strict";
44461
44637
  /*!
44462
44638
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44687,7 +44863,7 @@ exports.DFAState = DFAState;
44687
44863
  DFAState.PredPrediction = PredPrediction;
44688
44864
  })(DFAState = exports.DFAState || (exports.DFAState = {}));
44689
44865
 
44690
- },{"../Decorators":185,"../atn/ATN":218,"../atn/PredictionContext":265,"../misc/BitSet":292,"../misc/MurmurHash":300,"assert":328}],286:[function(require,module,exports){
44866
+ },{"../Decorators":187,"../atn/ATN":220,"../atn/PredictionContext":267,"../misc/BitSet":294,"../misc/MurmurHash":302,"assert":330}],288:[function(require,module,exports){
44691
44867
  "use strict";
44692
44868
  /*!
44693
44869
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44724,7 +44900,7 @@ LexerDFASerializer = __decorate([
44724
44900
  ], LexerDFASerializer);
44725
44901
  exports.LexerDFASerializer = LexerDFASerializer;
44726
44902
 
44727
- },{"../Decorators":185,"../VocabularyImpl":216,"./DFASerializer":284}],287:[function(require,module,exports){
44903
+ },{"../Decorators":187,"../VocabularyImpl":218,"./DFASerializer":286}],289:[function(require,module,exports){
44728
44904
  "use strict";
44729
44905
  /*!
44730
44906
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44790,7 +44966,7 @@ __exportStar(require("./Vocabulary"), exports);
44790
44966
  __exportStar(require("./VocabularyImpl"), exports);
44791
44967
  __exportStar(require("./WritableToken"), exports);
44792
44968
 
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){
44969
+ },{"./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
44970
  "use strict";
44795
44971
  /*!
44796
44972
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44873,7 +45049,7 @@ class Array2DHashMap {
44873
45049
  }
44874
45050
  exports.Array2DHashMap = Array2DHashMap;
44875
45051
 
44876
- },{"./Array2DHashSet":289}],289:[function(require,module,exports){
45052
+ },{"./Array2DHashSet":291}],291:[function(require,module,exports){
44877
45053
  "use strict";
44878
45054
  /*!
44879
45055
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45240,7 +45416,7 @@ __decorate([
45240
45416
  ], Array2DHashSet.prototype, "createBuckets", null);
45241
45417
  exports.Array2DHashSet = Array2DHashSet;
45242
45418
 
45243
- },{"../Decorators":185,"./DefaultEqualityComparator":294,"./MurmurHash":300,"assert":328}],290:[function(require,module,exports){
45419
+ },{"../Decorators":187,"./DefaultEqualityComparator":296,"./MurmurHash":302,"assert":330}],292:[function(require,module,exports){
45244
45420
  "use strict";
45245
45421
  /*!
45246
45422
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45312,7 +45488,7 @@ __decorate([
45312
45488
  ], ArrayEqualityComparator.prototype, "equals", null);
45313
45489
  exports.ArrayEqualityComparator = ArrayEqualityComparator;
45314
45490
 
45315
- },{"../Decorators":185,"./MurmurHash":300,"./ObjectEqualityComparator":301}],291:[function(require,module,exports){
45491
+ },{"../Decorators":187,"./MurmurHash":302,"./ObjectEqualityComparator":303}],293:[function(require,module,exports){
45316
45492
  "use strict";
45317
45493
  /*!
45318
45494
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45382,7 +45558,7 @@ var Arrays;
45382
45558
  Arrays.toString = toString;
45383
45559
  })(Arrays = exports.Arrays || (exports.Arrays = {}));
45384
45560
 
45385
- },{}],292:[function(require,module,exports){
45561
+ },{}],294:[function(require,module,exports){
45386
45562
  "use strict";
45387
45563
  /*!
45388
45564
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46054,7 +46230,7 @@ class BitSetIterator {
46054
46230
  [Symbol.iterator]() { return this; }
46055
46231
  }
46056
46232
 
46057
- },{"./MurmurHash":300,"util":381}],293:[function(require,module,exports){
46233
+ },{"./MurmurHash":302,"util":383}],295:[function(require,module,exports){
46058
46234
  "use strict";
46059
46235
  /*!
46060
46236
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46075,7 +46251,7 @@ function isSupplementaryCodePoint(ch) {
46075
46251
  }
46076
46252
  exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
46077
46253
 
46078
- },{}],294:[function(require,module,exports){
46254
+ },{}],296:[function(require,module,exports){
46079
46255
  "use strict";
46080
46256
  /*!
46081
46257
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46146,7 +46322,7 @@ __decorate([
46146
46322
  ], DefaultEqualityComparator.prototype, "equals", null);
46147
46323
  exports.DefaultEqualityComparator = DefaultEqualityComparator;
46148
46324
 
46149
- },{"../Decorators":185,"./MurmurHash":300,"./ObjectEqualityComparator":301}],295:[function(require,module,exports){
46325
+ },{"../Decorators":187,"./MurmurHash":302,"./ObjectEqualityComparator":303}],297:[function(require,module,exports){
46150
46326
  "use strict";
46151
46327
  /*!
46152
46328
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46440,7 +46616,7 @@ __decorate([
46440
46616
  ], IntegerList.prototype, "toString", null);
46441
46617
  exports.IntegerList = IntegerList;
46442
46618
 
46443
- },{"../Decorators":185,"./Arrays":291}],296:[function(require,module,exports){
46619
+ },{"../Decorators":187,"./Arrays":293}],298:[function(require,module,exports){
46444
46620
  "use strict";
46445
46621
  /*!
46446
46622
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46470,7 +46646,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
46470
46646
  }
46471
46647
  exports.IntegerStack = IntegerStack;
46472
46648
 
46473
- },{"./IntegerList":295}],297:[function(require,module,exports){
46649
+ },{"./IntegerList":297}],299:[function(require,module,exports){
46474
46650
  "use strict";
46475
46651
  /*!
46476
46652
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46613,7 +46789,7 @@ __decorate([
46613
46789
  ], Interval.prototype, "toString", null);
46614
46790
  exports.Interval = Interval;
46615
46791
 
46616
- },{"../Decorators":185}],298:[function(require,module,exports){
46792
+ },{"../Decorators":187}],300:[function(require,module,exports){
46617
46793
  "use strict";
46618
46794
  /*!
46619
46795
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47259,7 +47435,7 @@ __decorate([
47259
47435
  ], IntervalSet, "subtract", null);
47260
47436
  exports.IntervalSet = IntervalSet;
47261
47437
 
47262
- },{"../Decorators":185,"../Lexer":193,"../Token":210,"./ArrayEqualityComparator":290,"./IntegerList":295,"./Interval":297,"./MurmurHash":300}],299:[function(require,module,exports){
47438
+ },{"../Decorators":187,"../Lexer":195,"../Token":212,"./ArrayEqualityComparator":292,"./IntegerList":297,"./Interval":299,"./MurmurHash":302}],301:[function(require,module,exports){
47263
47439
  "use strict";
47264
47440
  /*!
47265
47441
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47292,7 +47468,7 @@ class MultiMap extends Map {
47292
47468
  }
47293
47469
  exports.MultiMap = MultiMap;
47294
47470
 
47295
- },{}],300:[function(require,module,exports){
47471
+ },{}],302:[function(require,module,exports){
47296
47472
  "use strict";
47297
47473
  /*!
47298
47474
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47407,7 +47583,7 @@ var MurmurHash;
47407
47583
  }
47408
47584
  })(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
47409
47585
 
47410
- },{}],301:[function(require,module,exports){
47586
+ },{}],303:[function(require,module,exports){
47411
47587
  "use strict";
47412
47588
  /*!
47413
47589
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47466,7 +47642,7 @@ __decorate([
47466
47642
  ], ObjectEqualityComparator.prototype, "equals", null);
47467
47643
  exports.ObjectEqualityComparator = ObjectEqualityComparator;
47468
47644
 
47469
- },{"../Decorators":185}],302:[function(require,module,exports){
47645
+ },{"../Decorators":187}],304:[function(require,module,exports){
47470
47646
  "use strict";
47471
47647
  /*!
47472
47648
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47495,7 +47671,7 @@ class ParseCancellationException extends Error {
47495
47671
  }
47496
47672
  exports.ParseCancellationException = ParseCancellationException;
47497
47673
 
47498
- },{}],303:[function(require,module,exports){
47674
+ },{}],305:[function(require,module,exports){
47499
47675
  "use strict";
47500
47676
  /*!
47501
47677
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47549,7 +47725,7 @@ class UUID {
47549
47725
  }
47550
47726
  exports.UUID = UUID;
47551
47727
 
47552
- },{"./MurmurHash":300}],304:[function(require,module,exports){
47728
+ },{"./MurmurHash":302}],306:[function(require,module,exports){
47553
47729
  "use strict";
47554
47730
  /*!
47555
47731
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47724,7 +47900,7 @@ exports.toCharArray = toCharArray;
47724
47900
  // return s;
47725
47901
  // }
47726
47902
 
47727
- },{}],305:[function(require,module,exports){
47903
+ },{}],307:[function(require,module,exports){
47728
47904
  "use strict";
47729
47905
  /*!
47730
47906
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47760,7 +47936,7 @@ __decorate([
47760
47936
  ], ErrorNode.prototype, "accept", null);
47761
47937
  exports.ErrorNode = ErrorNode;
47762
47938
 
47763
- },{"../Decorators":185,"./TerminalNode":308}],306:[function(require,module,exports){
47939
+ },{"../Decorators":187,"./TerminalNode":310}],308:[function(require,module,exports){
47764
47940
  "use strict";
47765
47941
  /*!
47766
47942
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47865,7 +48041,7 @@ exports.ParseTreeWalker = ParseTreeWalker;
47865
48041
  ParseTreeWalker.DEFAULT = new ParseTreeWalker();
47866
48042
  })(ParseTreeWalker = exports.ParseTreeWalker || (exports.ParseTreeWalker = {}));
47867
48043
 
47868
- },{"./ErrorNode":305,"./RuleNode":307,"./TerminalNode":308}],307:[function(require,module,exports){
48044
+ },{"./ErrorNode":307,"./RuleNode":309,"./TerminalNode":310}],309:[function(require,module,exports){
47869
48045
  "use strict";
47870
48046
  /*!
47871
48047
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47877,7 +48053,7 @@ class RuleNode {
47877
48053
  }
47878
48054
  exports.RuleNode = RuleNode;
47879
48055
 
47880
- },{}],308:[function(require,module,exports){
48056
+ },{}],310:[function(require,module,exports){
47881
48057
  "use strict";
47882
48058
  /*!
47883
48059
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47969,7 +48145,7 @@ __decorate([
47969
48145
  ], TerminalNode.prototype, "toString", null);
47970
48146
  exports.TerminalNode = TerminalNode;
47971
48147
 
47972
- },{"../Decorators":185,"../Token":210,"../misc/Interval":297}],309:[function(require,module,exports){
48148
+ },{"../Decorators":187,"../Token":212,"../misc/Interval":299}],311:[function(require,module,exports){
47973
48149
  "use strict";
47974
48150
  /*!
47975
48151
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48213,7 +48389,7 @@ __decorate([
48213
48389
  ], Trees, "getRootOfSubtreeEnclosingRegion", null);
48214
48390
  exports.Trees = Trees;
48215
48391
 
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){
48392
+ },{"../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
48393
  "use strict";
48218
48394
  /*!
48219
48395
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48237,7 +48413,7 @@ class Chunk {
48237
48413
  }
48238
48414
  exports.Chunk = Chunk;
48239
48415
 
48240
- },{}],311:[function(require,module,exports){
48416
+ },{}],313:[function(require,module,exports){
48241
48417
  "use strict";
48242
48418
  /*!
48243
48419
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48417,7 +48593,7 @@ ParseTreeMatch = __decorate([
48417
48593
  ], ParseTreeMatch);
48418
48594
  exports.ParseTreeMatch = ParseTreeMatch;
48419
48595
 
48420
- },{"../../Decorators":185}],312:[function(require,module,exports){
48596
+ },{"../../Decorators":187}],314:[function(require,module,exports){
48421
48597
  "use strict";
48422
48598
  /*!
48423
48599
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48575,7 +48751,7 @@ ParseTreePattern = __decorate([
48575
48751
  ], ParseTreePattern);
48576
48752
  exports.ParseTreePattern = ParseTreePattern;
48577
48753
 
48578
- },{"../../Decorators":185,"../xpath/XPath":318}],313:[function(require,module,exports){
48754
+ },{"../../Decorators":187,"../xpath/XPath":320}],315:[function(require,module,exports){
48579
48755
  "use strict";
48580
48756
  /*!
48581
48757
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49053,7 +49229,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
49053
49229
  ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
49054
49230
  })(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
49055
49231
 
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){
49232
+ },{"../../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
49233
  "use strict";
49058
49234
  /*!
49059
49235
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49251,7 +49427,7 @@ RuleTagToken = __decorate([
49251
49427
  ], RuleTagToken);
49252
49428
  exports.RuleTagToken = RuleTagToken;
49253
49429
 
49254
- },{"../../Decorators":185,"../../Token":210}],315:[function(require,module,exports){
49430
+ },{"../../Decorators":187,"../../Token":212}],317:[function(require,module,exports){
49255
49431
  "use strict";
49256
49432
  /*!
49257
49433
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49338,7 +49514,7 @@ __decorate([
49338
49514
  ], TagChunk.prototype, "toString", null);
49339
49515
  exports.TagChunk = TagChunk;
49340
49516
 
49341
- },{"../../Decorators":185,"./Chunk":310}],316:[function(require,module,exports){
49517
+ },{"../../Decorators":187,"./Chunk":312}],318:[function(require,module,exports){
49342
49518
  "use strict";
49343
49519
  /*!
49344
49520
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49408,7 +49584,7 @@ TextChunk = __decorate([
49408
49584
  ], TextChunk);
49409
49585
  exports.TextChunk = TextChunk;
49410
49586
 
49411
- },{"../../Decorators":185,"./Chunk":310}],317:[function(require,module,exports){
49587
+ },{"../../Decorators":187,"./Chunk":312}],319:[function(require,module,exports){
49412
49588
  "use strict";
49413
49589
  /*!
49414
49590
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49503,7 +49679,7 @@ TokenTagToken = __decorate([
49503
49679
  ], TokenTagToken);
49504
49680
  exports.TokenTagToken = TokenTagToken;
49505
49681
 
49506
- },{"../../CommonToken":181,"../../Decorators":185}],318:[function(require,module,exports){
49682
+ },{"../../CommonToken":183,"../../Decorators":187}],320:[function(require,module,exports){
49507
49683
  "use strict";
49508
49684
  /*!
49509
49685
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49700,7 +49876,7 @@ exports.XPath = XPath;
49700
49876
  XPath.WILDCARD = "*"; // word not operator/separator
49701
49877
  XPath.NOT = "!"; // word for invert operator
49702
49878
 
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){
49879
+ },{"../../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
49880
  "use strict";
49705
49881
  /*!
49706
49882
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49735,7 +49911,7 @@ __decorate([
49735
49911
  ], XPathElement.prototype, "toString", null);
49736
49912
  exports.XPathElement = XPathElement;
49737
49913
 
49738
- },{"../../Decorators":185}],320:[function(require,module,exports){
49914
+ },{"../../Decorators":187}],322:[function(require,module,exports){
49739
49915
  "use strict";
49740
49916
  // Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
49741
49917
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -50210,7 +50386,7 @@ XPathLexer._serializedATN = Utils.join([
50210
50386
  XPathLexer._serializedATNSegment1,
50211
50387
  ], "");
50212
50388
 
50213
- },{"../../Lexer":193,"../../VocabularyImpl":216,"../../atn/ATNDeserializer":222,"../../atn/LexerATNSimulator":243,"../../misc/Utils":304}],321:[function(require,module,exports){
50389
+ },{"../../Lexer":195,"../../VocabularyImpl":218,"../../atn/ATNDeserializer":224,"../../atn/LexerATNSimulator":245,"../../misc/Utils":306}],323:[function(require,module,exports){
50214
50390
  "use strict";
50215
50391
  /*!
50216
50392
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50235,7 +50411,7 @@ __decorate([
50235
50411
  ], XPathLexerErrorListener.prototype, "syntaxError", null);
50236
50412
  exports.XPathLexerErrorListener = XPathLexerErrorListener;
50237
50413
 
50238
- },{"../../Decorators":185}],322:[function(require,module,exports){
50414
+ },{"../../Decorators":187}],324:[function(require,module,exports){
50239
50415
  "use strict";
50240
50416
  /*!
50241
50417
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50269,7 +50445,7 @@ __decorate([
50269
50445
  ], XPathRuleAnywhereElement.prototype, "evaluate", null);
50270
50446
  exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
50271
50447
 
50272
- },{"../../Decorators":185,"../Trees":309,"./XPathElement":319}],323:[function(require,module,exports){
50448
+ },{"../../Decorators":187,"../Trees":311,"./XPathElement":321}],325:[function(require,module,exports){
50273
50449
  "use strict";
50274
50450
  /*!
50275
50451
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50312,7 +50488,7 @@ __decorate([
50312
50488
  ], XPathRuleElement.prototype, "evaluate", null);
50313
50489
  exports.XPathRuleElement = XPathRuleElement;
50314
50490
 
50315
- },{"../../Decorators":185,"../../ParserRuleContext":201,"../Trees":309,"./XPathElement":319}],324:[function(require,module,exports){
50491
+ },{"../../Decorators":187,"../../ParserRuleContext":203,"../Trees":311,"./XPathElement":321}],326:[function(require,module,exports){
50316
50492
  "use strict";
50317
50493
  /*!
50318
50494
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50344,7 +50520,7 @@ __decorate([
50344
50520
  ], XPathTokenAnywhereElement.prototype, "evaluate", null);
50345
50521
  exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
50346
50522
 
50347
- },{"../../Decorators":185,"../Trees":309,"./XPathElement":319}],325:[function(require,module,exports){
50523
+ },{"../../Decorators":187,"../Trees":311,"./XPathElement":321}],327:[function(require,module,exports){
50348
50524
  "use strict";
50349
50525
  /*!
50350
50526
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50387,7 +50563,7 @@ __decorate([
50387
50563
  ], XPathTokenElement.prototype, "evaluate", null);
50388
50564
  exports.XPathTokenElement = XPathTokenElement;
50389
50565
 
50390
- },{"../../Decorators":185,"../TerminalNode":308,"../Trees":309,"./XPathElement":319}],326:[function(require,module,exports){
50566
+ },{"../../Decorators":187,"../TerminalNode":310,"../Trees":311,"./XPathElement":321}],328:[function(require,module,exports){
50391
50567
  "use strict";
50392
50568
  /*!
50393
50569
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50423,7 +50599,7 @@ __decorate([
50423
50599
  ], XPathWildcardAnywhereElement.prototype, "evaluate", null);
50424
50600
  exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
50425
50601
 
50426
- },{"../../Decorators":185,"../Trees":309,"./XPath":318,"./XPathElement":319}],327:[function(require,module,exports){
50602
+ },{"../../Decorators":187,"../Trees":311,"./XPath":320,"./XPathElement":321}],329:[function(require,module,exports){
50427
50603
  "use strict";
50428
50604
  /*!
50429
50605
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50463,7 +50639,7 @@ __decorate([
50463
50639
  ], XPathWildcardElement.prototype, "evaluate", null);
50464
50640
  exports.XPathWildcardElement = XPathWildcardElement;
50465
50641
 
50466
- },{"../../Decorators":185,"../Trees":309,"./XPath":318,"./XPathElement":319}],328:[function(require,module,exports){
50642
+ },{"../../Decorators":187,"../Trees":311,"./XPath":320,"./XPathElement":321}],330:[function(require,module,exports){
50467
50643
  (function (global){(function (){
50468
50644
  'use strict';
50469
50645
 
@@ -50973,7 +51149,7 @@ var objectKeys = Object.keys || function (obj) {
50973
51149
  };
50974
51150
 
50975
51151
  }).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){
51152
+ },{"object.assign/polyfill":376,"util/":333}],331:[function(require,module,exports){
50977
51153
  if (typeof Object.create === 'function') {
50978
51154
  // implementation from standard node.js 'util' module
50979
51155
  module.exports = function inherits(ctor, superCtor) {
@@ -50998,14 +51174,14 @@ if (typeof Object.create === 'function') {
50998
51174
  }
50999
51175
  }
51000
51176
 
51001
- },{}],330:[function(require,module,exports){
51177
+ },{}],332:[function(require,module,exports){
51002
51178
  module.exports = function isBuffer(arg) {
51003
51179
  return arg && typeof arg === 'object'
51004
51180
  && typeof arg.copy === 'function'
51005
51181
  && typeof arg.fill === 'function'
51006
51182
  && typeof arg.readUInt8 === 'function';
51007
51183
  }
51008
- },{}],331:[function(require,module,exports){
51184
+ },{}],333:[function(require,module,exports){
51009
51185
  (function (process,global){(function (){
51010
51186
  // Copyright Joyent, Inc. and other Node contributors.
51011
51187
  //
@@ -51595,7 +51771,7 @@ function hasOwnProperty(obj, prop) {
51595
51771
  }
51596
51772
 
51597
51773
  }).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){
51774
+ },{"./support/isBuffer":332,"_process":378,"inherits":331}],334:[function(require,module,exports){
51599
51775
  (function (global){(function (){
51600
51776
  'use strict';
51601
51777
 
@@ -51616,7 +51792,7 @@ module.exports = function availableTypedArrays() {
51616
51792
  };
51617
51793
 
51618
51794
  }).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){
51795
+ },{"possible-typed-array-names":377}],335:[function(require,module,exports){
51620
51796
  (function (process,global){(function (){
51621
51797
  module.exports = process.hrtime || hrtime
51622
51798
 
@@ -51647,7 +51823,7 @@ function hrtime(previousTimestamp){
51647
51823
  return [seconds,nanoseconds]
51648
51824
  }
51649
51825
  }).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){
51826
+ },{"_process":378}],336:[function(require,module,exports){
51651
51827
  'use strict';
51652
51828
 
51653
51829
  var GetIntrinsic = require('get-intrinsic');
@@ -51664,7 +51840,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
51664
51840
  return intrinsic;
51665
51841
  };
51666
51842
 
51667
- },{"./":335,"get-intrinsic":338}],335:[function(require,module,exports){
51843
+ },{"./":337,"get-intrinsic":340}],337:[function(require,module,exports){
51668
51844
  'use strict';
51669
51845
 
51670
51846
  var bind = require('function-bind');
@@ -51713,7 +51889,7 @@ if ($defineProperty) {
51713
51889
  module.exports.apply = applyBind;
51714
51890
  }
51715
51891
 
51716
- },{"function-bind":337,"get-intrinsic":338}],336:[function(require,module,exports){
51892
+ },{"function-bind":339,"get-intrinsic":340}],338:[function(require,module,exports){
51717
51893
  'use strict';
51718
51894
 
51719
51895
  /* eslint no-invalid-this: 1 */
@@ -51767,14 +51943,14 @@ module.exports = function bind(that) {
51767
51943
  return bound;
51768
51944
  };
51769
51945
 
51770
- },{}],337:[function(require,module,exports){
51946
+ },{}],339:[function(require,module,exports){
51771
51947
  'use strict';
51772
51948
 
51773
51949
  var implementation = require('./implementation');
51774
51950
 
51775
51951
  module.exports = Function.prototype.bind || implementation;
51776
51952
 
51777
- },{"./implementation":336}],338:[function(require,module,exports){
51953
+ },{"./implementation":338}],340:[function(require,module,exports){
51778
51954
  'use strict';
51779
51955
 
51780
51956
  var undefined;
@@ -52120,7 +52296,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
52120
52296
  return value;
52121
52297
  };
52122
52298
 
52123
- },{"function-bind":337,"has":362,"has-symbols":357}],339:[function(require,module,exports){
52299
+ },{"function-bind":339,"has":364,"has-symbols":359}],341:[function(require,module,exports){
52124
52300
  'use strict';
52125
52301
 
52126
52302
  var $defineProperty = require('es-define-property');
@@ -52178,7 +52354,7 @@ module.exports = function defineDataProperty(
52178
52354
  }
52179
52355
  };
52180
52356
 
52181
- },{"es-define-property":340,"es-errors/syntax":345,"es-errors/type":346,"gopd":352}],340:[function(require,module,exports){
52357
+ },{"es-define-property":342,"es-errors/syntax":347,"es-errors/type":348,"gopd":354}],342:[function(require,module,exports){
52182
52358
  'use strict';
52183
52359
 
52184
52360
  var GetIntrinsic = require('get-intrinsic');
@@ -52196,49 +52372,49 @@ if ($defineProperty) {
52196
52372
 
52197
52373
  module.exports = $defineProperty;
52198
52374
 
52199
- },{"get-intrinsic":351}],341:[function(require,module,exports){
52375
+ },{"get-intrinsic":353}],343:[function(require,module,exports){
52200
52376
  'use strict';
52201
52377
 
52202
52378
  /** @type {import('./eval')} */
52203
52379
  module.exports = EvalError;
52204
52380
 
52205
- },{}],342:[function(require,module,exports){
52381
+ },{}],344:[function(require,module,exports){
52206
52382
  'use strict';
52207
52383
 
52208
52384
  /** @type {import('.')} */
52209
52385
  module.exports = Error;
52210
52386
 
52211
- },{}],343:[function(require,module,exports){
52387
+ },{}],345:[function(require,module,exports){
52212
52388
  'use strict';
52213
52389
 
52214
52390
  /** @type {import('./range')} */
52215
52391
  module.exports = RangeError;
52216
52392
 
52217
- },{}],344:[function(require,module,exports){
52393
+ },{}],346:[function(require,module,exports){
52218
52394
  'use strict';
52219
52395
 
52220
52396
  /** @type {import('./ref')} */
52221
52397
  module.exports = ReferenceError;
52222
52398
 
52223
- },{}],345:[function(require,module,exports){
52399
+ },{}],347:[function(require,module,exports){
52224
52400
  'use strict';
52225
52401
 
52226
52402
  /** @type {import('./syntax')} */
52227
52403
  module.exports = SyntaxError;
52228
52404
 
52229
- },{}],346:[function(require,module,exports){
52405
+ },{}],348:[function(require,module,exports){
52230
52406
  'use strict';
52231
52407
 
52232
52408
  /** @type {import('./type')} */
52233
52409
  module.exports = TypeError;
52234
52410
 
52235
- },{}],347:[function(require,module,exports){
52411
+ },{}],349:[function(require,module,exports){
52236
52412
  'use strict';
52237
52413
 
52238
52414
  /** @type {import('./uri')} */
52239
52415
  module.exports = URIError;
52240
52416
 
52241
- },{}],348:[function(require,module,exports){
52417
+ },{}],350:[function(require,module,exports){
52242
52418
  'use strict';
52243
52419
 
52244
52420
  var isCallable = require('is-callable');
@@ -52302,7 +52478,7 @@ var forEach = function forEach(list, iterator, thisArg) {
52302
52478
 
52303
52479
  module.exports = forEach;
52304
52480
 
52305
- },{"is-callable":366}],349:[function(require,module,exports){
52481
+ },{"is-callable":368}],351:[function(require,module,exports){
52306
52482
  'use strict';
52307
52483
 
52308
52484
  /* eslint no-invalid-this: 1 */
@@ -52388,9 +52564,9 @@ module.exports = function bind(that) {
52388
52564
  return bound;
52389
52565
  };
52390
52566
 
52391
- },{}],350:[function(require,module,exports){
52392
- arguments[4][337][0].apply(exports,arguments)
52393
- },{"./implementation":349,"dup":337}],351:[function(require,module,exports){
52567
+ },{}],352:[function(require,module,exports){
52568
+ arguments[4][339][0].apply(exports,arguments)
52569
+ },{"./implementation":351,"dup":339}],353:[function(require,module,exports){
52394
52570
  'use strict';
52395
52571
 
52396
52572
  var undefined;
@@ -52751,7 +52927,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
52751
52927
  return value;
52752
52928
  };
52753
52929
 
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){
52930
+ },{"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
52931
  'use strict';
52756
52932
 
52757
52933
  var GetIntrinsic = require('get-intrinsic');
@@ -52769,13 +52945,13 @@ if ($gOPD) {
52769
52945
 
52770
52946
  module.exports = $gOPD;
52771
52947
 
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){
52948
+ },{"get-intrinsic":357}],355:[function(require,module,exports){
52777
52949
  arguments[4][338][0].apply(exports,arguments)
52778
- },{"dup":338,"function-bind":354,"has":362,"has-symbols":357}],356:[function(require,module,exports){
52950
+ },{"dup":338}],356:[function(require,module,exports){
52951
+ arguments[4][339][0].apply(exports,arguments)
52952
+ },{"./implementation":355,"dup":339}],357:[function(require,module,exports){
52953
+ arguments[4][340][0].apply(exports,arguments)
52954
+ },{"dup":340,"function-bind":356,"has":364,"has-symbols":359}],358:[function(require,module,exports){
52779
52955
  'use strict';
52780
52956
 
52781
52957
  var test = {
@@ -52788,7 +52964,7 @@ module.exports = function hasProto() {
52788
52964
  return { __proto__: test }.foo === test.foo && !({ __proto__: null } instanceof $Object);
52789
52965
  };
52790
52966
 
52791
- },{}],357:[function(require,module,exports){
52967
+ },{}],359:[function(require,module,exports){
52792
52968
  'use strict';
52793
52969
 
52794
52970
  var origSymbol = typeof Symbol !== 'undefined' && Symbol;
@@ -52803,7 +52979,7 @@ module.exports = function hasNativeSymbols() {
52803
52979
  return hasSymbolSham();
52804
52980
  };
52805
52981
 
52806
- },{"./shams":358}],358:[function(require,module,exports){
52982
+ },{"./shams":360}],360:[function(require,module,exports){
52807
52983
  'use strict';
52808
52984
 
52809
52985
  /* eslint complexity: [2, 18], max-statements: [2, 33] */
@@ -52847,7 +53023,7 @@ module.exports = function hasSymbols() {
52847
53023
  return true;
52848
53024
  };
52849
53025
 
52850
- },{}],359:[function(require,module,exports){
53026
+ },{}],361:[function(require,module,exports){
52851
53027
  'use strict';
52852
53028
 
52853
53029
  var hasSymbols = require('has-symbols/shams');
@@ -52856,18 +53032,18 @@ module.exports = function hasToStringTagShams() {
52856
53032
  return hasSymbols() && !!Symbol.toStringTag;
52857
53033
  };
52858
53034
 
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){
53035
+ },{"has-symbols/shams":360}],362:[function(require,module,exports){
53036
+ arguments[4][338][0].apply(exports,arguments)
53037
+ },{"dup":338}],363:[function(require,module,exports){
53038
+ arguments[4][339][0].apply(exports,arguments)
53039
+ },{"./implementation":362,"dup":339}],364:[function(require,module,exports){
52864
53040
  'use strict';
52865
53041
 
52866
53042
  var bind = require('function-bind');
52867
53043
 
52868
53044
  module.exports = bind.call(Function.call, Object.prototype.hasOwnProperty);
52869
53045
 
52870
- },{"function-bind":361}],363:[function(require,module,exports){
53046
+ },{"function-bind":363}],365:[function(require,module,exports){
52871
53047
  'use strict';
52872
53048
 
52873
53049
  var call = Function.prototype.call;
@@ -52877,7 +53053,7 @@ var bind = require('function-bind');
52877
53053
  /** @type {import('.')} */
52878
53054
  module.exports = bind.call(call, $hasOwn);
52879
53055
 
52880
- },{"function-bind":350}],364:[function(require,module,exports){
53056
+ },{"function-bind":352}],366:[function(require,module,exports){
52881
53057
  if (typeof Object.create === 'function') {
52882
53058
  // implementation from standard node.js 'util' module
52883
53059
  module.exports = function inherits(ctor, superCtor) {
@@ -52906,7 +53082,7 @@ if (typeof Object.create === 'function') {
52906
53082
  }
52907
53083
  }
52908
53084
 
52909
- },{}],365:[function(require,module,exports){
53085
+ },{}],367:[function(require,module,exports){
52910
53086
  'use strict';
52911
53087
 
52912
53088
  var hasToStringTag = require('has-tostringtag/shams')();
@@ -52941,7 +53117,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
52941
53117
 
52942
53118
  module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
52943
53119
 
52944
- },{"call-bind/callBound":334,"has-tostringtag/shams":359}],366:[function(require,module,exports){
53120
+ },{"call-bind/callBound":336,"has-tostringtag/shams":361}],368:[function(require,module,exports){
52945
53121
  'use strict';
52946
53122
 
52947
53123
  var fnToStr = Function.prototype.toString;
@@ -53044,7 +53220,7 @@ module.exports = reflectApply
53044
53220
  return tryFunctionObject(value);
53045
53221
  };
53046
53222
 
53047
- },{}],367:[function(require,module,exports){
53223
+ },{}],369:[function(require,module,exports){
53048
53224
  'use strict';
53049
53225
 
53050
53226
  var toStr = Object.prototype.toString;
@@ -53084,7 +53260,7 @@ module.exports = function isGeneratorFunction(fn) {
53084
53260
  return getProto(fn) === GeneratorFunction;
53085
53261
  };
53086
53262
 
53087
- },{"has-tostringtag/shams":359}],368:[function(require,module,exports){
53263
+ },{"has-tostringtag/shams":361}],370:[function(require,module,exports){
53088
53264
  'use strict';
53089
53265
 
53090
53266
  var whichTypedArray = require('which-typed-array');
@@ -53094,7 +53270,7 @@ module.exports = function isTypedArray(value) {
53094
53270
  return !!whichTypedArray(value);
53095
53271
  };
53096
53272
 
53097
- },{"which-typed-array":382}],369:[function(require,module,exports){
53273
+ },{"which-typed-array":384}],371:[function(require,module,exports){
53098
53274
  (function (global){(function (){
53099
53275
  /**
53100
53276
  * @license
@@ -70307,7 +70483,7 @@ module.exports = function isTypedArray(value) {
70307
70483
  }.call(this));
70308
70484
 
70309
70485
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
70310
- },{}],370:[function(require,module,exports){
70486
+ },{}],372:[function(require,module,exports){
70311
70487
  'use strict';
70312
70488
 
70313
70489
  var keysShim;
@@ -70431,7 +70607,7 @@ if (!Object.keys) {
70431
70607
  }
70432
70608
  module.exports = keysShim;
70433
70609
 
70434
- },{"./isArguments":372}],371:[function(require,module,exports){
70610
+ },{"./isArguments":374}],373:[function(require,module,exports){
70435
70611
  'use strict';
70436
70612
 
70437
70613
  var slice = Array.prototype.slice;
@@ -70465,7 +70641,7 @@ keysShim.shim = function shimObjectKeys() {
70465
70641
 
70466
70642
  module.exports = keysShim;
70467
70643
 
70468
- },{"./implementation":370,"./isArguments":372}],372:[function(require,module,exports){
70644
+ },{"./implementation":372,"./isArguments":374}],374:[function(require,module,exports){
70469
70645
  'use strict';
70470
70646
 
70471
70647
  var toStr = Object.prototype.toString;
@@ -70484,7 +70660,7 @@ module.exports = function isArguments(value) {
70484
70660
  return isArgs;
70485
70661
  };
70486
70662
 
70487
- },{}],373:[function(require,module,exports){
70663
+ },{}],375:[function(require,module,exports){
70488
70664
  'use strict';
70489
70665
 
70490
70666
  // modified from https://github.com/es-shims/es6-shim
@@ -70532,7 +70708,7 @@ module.exports = function assign(target, source1) {
70532
70708
  return to; // step 4
70533
70709
  };
70534
70710
 
70535
- },{"call-bind/callBound":334,"has-symbols/shams":358,"object-keys":371}],374:[function(require,module,exports){
70711
+ },{"call-bind/callBound":336,"has-symbols/shams":360,"object-keys":373}],376:[function(require,module,exports){
70536
70712
  'use strict';
70537
70713
 
70538
70714
  var implementation = require('./implementation');
@@ -70589,7 +70765,7 @@ module.exports = function getPolyfill() {
70589
70765
  return Object.assign;
70590
70766
  };
70591
70767
 
70592
- },{"./implementation":373}],375:[function(require,module,exports){
70768
+ },{"./implementation":375}],377:[function(require,module,exports){
70593
70769
  'use strict';
70594
70770
 
70595
70771
  /** @type {import('.')} */
@@ -70607,7 +70783,7 @@ module.exports = [
70607
70783
  'BigUint64Array'
70608
70784
  ];
70609
70785
 
70610
- },{}],376:[function(require,module,exports){
70786
+ },{}],378:[function(require,module,exports){
70611
70787
  // shim for using process in browser
70612
70788
  var process = module.exports = {};
70613
70789
 
@@ -70793,7 +70969,7 @@ process.chdir = function (dir) {
70793
70969
  };
70794
70970
  process.umask = function() { return 0; };
70795
70971
 
70796
- },{}],377:[function(require,module,exports){
70972
+ },{}],379:[function(require,module,exports){
70797
70973
  'use strict';
70798
70974
 
70799
70975
  var GetIntrinsic = require('get-intrinsic');
@@ -70837,7 +71013,7 @@ module.exports = function setFunctionLength(fn, length) {
70837
71013
  return fn;
70838
71014
  };
70839
71015
 
70840
- },{"define-data-property":339,"es-errors/type":346,"get-intrinsic":351,"gopd":352,"has-property-descriptors":378}],378:[function(require,module,exports){
71016
+ },{"define-data-property":341,"es-errors/type":348,"get-intrinsic":353,"gopd":354,"has-property-descriptors":380}],380:[function(require,module,exports){
70841
71017
  'use strict';
70842
71018
 
70843
71019
  var $defineProperty = require('es-define-property');
@@ -70861,9 +71037,9 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
70861
71037
 
70862
71038
  module.exports = hasPropertyDescriptors;
70863
71039
 
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){
71040
+ },{"es-define-property":342}],381:[function(require,module,exports){
71041
+ arguments[4][332][0].apply(exports,arguments)
71042
+ },{"dup":332}],382:[function(require,module,exports){
70867
71043
  // Currently in sync with Node.js lib/internal/util/types.js
70868
71044
  // https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
70869
71045
 
@@ -71199,7 +71375,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
71199
71375
  });
71200
71376
  });
71201
71377
 
71202
- },{"is-arguments":365,"is-generator-function":367,"is-typed-array":368,"which-typed-array":382}],381:[function(require,module,exports){
71378
+ },{"is-arguments":367,"is-generator-function":369,"is-typed-array":370,"which-typed-array":384}],383:[function(require,module,exports){
71203
71379
  (function (process){(function (){
71204
71380
  // Copyright Joyent, Inc. and other Node contributors.
71205
71381
  //
@@ -71918,7 +72094,7 @@ function callbackify(original) {
71918
72094
  exports.callbackify = callbackify;
71919
72095
 
71920
72096
  }).call(this)}).call(this,require('_process'))
71921
- },{"./support/isBuffer":379,"./support/types":380,"_process":376,"inherits":364}],382:[function(require,module,exports){
72097
+ },{"./support/isBuffer":381,"./support/types":382,"_process":378,"inherits":366}],384:[function(require,module,exports){
71922
72098
  (function (global){(function (){
71923
72099
  'use strict';
71924
72100
 
@@ -72038,9 +72214,9 @@ module.exports = function whichTypedArray(value) {
72038
72214
  };
72039
72215
 
72040
72216
  }).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){
72217
+ },{"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){
72218
+ arguments[4][336][0].apply(exports,arguments)
72219
+ },{"./":386,"dup":336,"get-intrinsic":353}],386:[function(require,module,exports){
72044
72220
  'use strict';
72045
72221
 
72046
72222
  var bind = require('function-bind');
@@ -72077,7 +72253,7 @@ if ($defineProperty) {
72077
72253
  module.exports.apply = applyBind;
72078
72254
  }
72079
72255
 
72080
- },{"es-define-property":340,"es-errors/type":346,"function-bind":350,"get-intrinsic":351,"set-function-length":377}],385:[function(require,module,exports){
72256
+ },{"es-define-property":342,"es-errors/type":348,"function-bind":352,"get-intrinsic":353,"set-function-length":379}],387:[function(require,module,exports){
72081
72257
  'use strict';
72082
72258
 
72083
72259
  var hasSymbols = require('has-symbols/shams');
@@ -72087,5 +72263,5 @@ module.exports = function hasToStringTagShams() {
72087
72263
  return hasSymbols() && !!Symbol.toStringTag;
72088
72264
  };
72089
72265
 
72090
- },{"has-symbols/shams":358}]},{},[110])(110)
72266
+ },{"has-symbols/shams":360}]},{},[112])(112)
72091
72267
  });