@designliquido/delegua 0.54.3 → 0.54.5

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 (56) hide show
  1. package/README.md +6 -0
  2. package/avaliador-sintatico/avaliador-sintatico.d.ts.map +1 -1
  3. package/avaliador-sintatico/avaliador-sintatico.js +18 -8
  4. package/avaliador-sintatico/avaliador-sintatico.js.map +1 -1
  5. package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.d.ts +6 -0
  6. package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.d.ts.map +1 -1
  7. package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.js +66 -14
  8. package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.js.map +1 -1
  9. package/bibliotecas/primitivas-dicionario.js +1 -1
  10. package/bibliotecas/primitivas-dicionario.js.map +1 -1
  11. package/bin/package.json +1 -1
  12. package/construtos/index.d.ts +1 -0
  13. package/construtos/index.d.ts.map +1 -1
  14. package/construtos/index.js +1 -0
  15. package/construtos/index.js.map +1 -1
  16. package/construtos/lista-compreensao.d.ts +16 -0
  17. package/construtos/lista-compreensao.d.ts.map +1 -0
  18. package/construtos/lista-compreensao.js +21 -0
  19. package/construtos/lista-compreensao.js.map +1 -0
  20. package/formatadores/formatador-pitugues.d.ts.map +1 -1
  21. package/formatadores/formatador-pitugues.js.map +1 -1
  22. package/interfaces/visitante-comum-interface.d.ts.map +1 -1
  23. package/interfaces/visitante-delegua-interface.d.ts +2 -1
  24. package/interfaces/visitante-delegua-interface.d.ts.map +1 -1
  25. package/interpretador/interpretador-base.d.ts +2 -1
  26. package/interpretador/interpretador-base.d.ts.map +1 -1
  27. package/interpretador/interpretador-base.js +49 -0
  28. package/interpretador/interpretador-base.js.map +1 -1
  29. package/interpretador/interpretador.d.ts +2 -1
  30. package/interpretador/interpretador.d.ts.map +1 -1
  31. package/interpretador/interpretador.js +42 -18
  32. package/interpretador/interpretador.js.map +1 -1
  33. package/lexador/dialetos/lexador-pitugues.d.ts +1 -0
  34. package/lexador/dialetos/lexador-pitugues.d.ts.map +1 -1
  35. package/lexador/dialetos/lexador-pitugues.js +12 -1
  36. package/lexador/dialetos/lexador-pitugues.js.map +1 -1
  37. package/lexador/dialetos/palavras-reservadas/pitugues.d.ts +1 -0
  38. package/lexador/dialetos/palavras-reservadas/pitugues.d.ts.map +1 -1
  39. package/lexador/dialetos/palavras-reservadas/pitugues.js +1 -0
  40. package/lexador/dialetos/palavras-reservadas/pitugues.js.map +1 -1
  41. package/lexador/palavras-reservadas.d.ts +1 -0
  42. package/lexador/palavras-reservadas.d.ts.map +1 -1
  43. package/lexador/palavras-reservadas.js +1 -0
  44. package/lexador/palavras-reservadas.js.map +1 -1
  45. package/package.json +1 -1
  46. package/quebras/index.d.ts.map +1 -1
  47. package/quebras/index.js.map +1 -1
  48. package/tipos-de-simbolos/delegua.d.ts +1 -0
  49. package/tipos-de-simbolos/delegua.d.ts.map +1 -1
  50. package/tipos-de-simbolos/delegua.js +1 -0
  51. package/tipos-de-simbolos/delegua.js.map +1 -1
  52. package/tipos-de-simbolos/pitugues.d.ts +2 -0
  53. package/tipos-de-simbolos/pitugues.d.ts.map +1 -1
  54. package/tipos-de-simbolos/pitugues.js +2 -0
  55. package/tipos-de-simbolos/pitugues.js.map +1 -1
  56. package/umd/delegua.js +597 -423
package/umd/delegua.js CHANGED
@@ -238,7 +238,7 @@ class AvaliadorSintaticoBase {
238
238
  }
239
239
  exports.AvaliadorSintaticoBase = AvaliadorSintaticoBase;
240
240
 
241
- },{"../construtos":49,"../declaracoes":93,"../tipos-de-simbolos/comum":181,"./erro-avaliador-sintatico":10}],2:[function(require,module,exports){
241
+ },{"../construtos":49,"../declaracoes":94,"../tipos-de-simbolos/comum":182,"./erro-avaliador-sintatico":10}],2:[function(require,module,exports){
242
242
  "use strict";
243
243
  var __importDefault = (this && this.__importDefault) || function (mod) {
244
244
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -472,17 +472,17 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
472
472
  }
473
473
  }
474
474
  // Remover comentários, verificar se vírgulas fazem sentido.
475
- const valoresSemComentarios = valores.filter((v) => v.constructor.name !== 'ComentarioComoConstruto');
475
+ const valoresSemComentarios = valores.filter((v) => v.constructor !== construtos_1.ComentarioComoConstruto);
476
476
  let elementoSeparador = false; // O primeiro elemento não pode ser separador.
477
477
  for (const elemento of valoresSemComentarios) {
478
478
  if (elementoSeparador) {
479
- if (elemento.constructor.name !== 'Separador') {
479
+ if (elemento.constructor !== construtos_1.Separador) {
480
480
  throw this.erro(elemento.simbolo, 'Não podem haver duas vírgulas seguidas em uma definição de vetor, ou definição de vetor começando em vírgula.');
481
481
  }
482
482
  elementoSeparador = false;
483
483
  }
484
484
  else {
485
- if (elemento.constructor.name === 'Separador') {
485
+ if (elemento.constructor === construtos_1.Separador) {
486
486
  throw this.erro(elemento.simbolo, 'Não podem haver duas vírgulas seguidas em uma definição de vetor, ou definição de vetor começando em vírgula.');
487
487
  }
488
488
  elementoSeparador = true;
@@ -790,6 +790,9 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
790
790
  * @returns A entidade chamada resolvida, se as validações passarem.
791
791
  */
792
792
  resolverEntidadeChamada(entidadeChamada, argumentos, tipoPrimitiva = undefined) {
793
+ if (entidadeChamada.constructor === construtos_1.AcessoMetodoOuPropriedade) {
794
+ return this.resolverEntidadeChamadaAcessoMetodoOuPropriedade(entidadeChamada);
795
+ }
793
796
  if (entidadeChamada.constructor === construtos_1.Variavel) {
794
797
  const entidadeChamadaResolvidaVariavel = entidadeChamada;
795
798
  if (tipoPrimitiva === 'qualquer') {
@@ -822,9 +825,6 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
822
825
  }
823
826
  return new construtos_1.ArgumentoReferenciaFuncao(entidadeChamadaResolvidaVariavel.hashArquivo, entidadeChamadaResolvidaVariavel.linha, entidadeChamadaResolvidaVariavel.simbolo);
824
827
  }
825
- if (entidadeChamada.constructor === construtos_1.AcessoMetodoOuPropriedade) {
826
- return this.resolverEntidadeChamadaAcessoMetodoOuPropriedade(entidadeChamada);
827
- }
828
828
  return entidadeChamada;
829
829
  }
830
830
  finalizarChamada(entidadeChamada, tipoPrimitiva = undefined) {
@@ -1232,7 +1232,16 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
1232
1232
  if (!this.verificarSeSimboloAtualEIgualA(delegua_2.default.DE, delegua_2.default.EM)) {
1233
1233
  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'.");
1234
1234
  }
1235
- const vetor = this.expressao();
1235
+ let vetor = this.expressao();
1236
+ if (vetor.constructor === construtos_1.AcessoIndiceVariavel) {
1237
+ const construtoAcessoIndiceVariavel = vetor;
1238
+ if (construtoAcessoIndiceVariavel.entidadeChamada.tipo === 'dicionário') {
1239
+ // A avaliação sintática não deve verificar valores de dicionários.
1240
+ // Aqui se supõe que o programador sabe o que está fazendo.
1241
+ // TODO: Talvez pensar numa forma melhor de fazer isso.
1242
+ vetor.tipo = 'vetor';
1243
+ }
1244
+ }
1236
1245
  if (!vetor.hasOwnProperty('tipo')) {
1237
1246
  throw this.erro(simboloPara, `Variável ou constante em 'para cada' não parece possuir um tipo iterável.`);
1238
1247
  }
@@ -1553,7 +1562,8 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
1553
1562
  switch (entidadeChamadaChamada.constructor) {
1554
1563
  case construtos_1.AcessoMetodo:
1555
1564
  const entidadeChamadaAcessoMetodo = entidadeChamadaChamada;
1556
- return entidadeChamadaAcessoMetodo.tipoRetornoMetodo;
1565
+ const tipoRetornoAcessoMetodoResolvido = entidadeChamadaAcessoMetodo.tipoRetornoMetodo.replace('<T>', entidadeChamadaAcessoMetodo.objeto.tipo);
1566
+ return tipoRetornoAcessoMetodoResolvido;
1557
1567
  case construtos_1.AcessoMetodoOuPropriedade:
1558
1568
  // Este caso ocorre quando a variável/constante é do tipo 'qualquer',
1559
1569
  // e a chamada normalmente é feita para uma primitiva.
@@ -2083,7 +2093,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
2083
2093
  }
2084
2094
  exports.AvaliadorSintatico = AvaliadorSintatico;
2085
2095
 
2086
- },{"../bibliotecas/primitivas-dicionario":20,"../bibliotecas/primitivas-numero":21,"../bibliotecas/primitivas-texto":22,"../bibliotecas/primitivas-vetor":23,"../construtos":49,"../construtos/tuplas":64,"../declaracoes":93,"../inferenciador":112,"../informacao-elemento-sintatico":113,"../tipos-de-dados/delegua":177,"../tipos-de-simbolos/delegua":182,"./avaliador-sintatico-base":1,"./comum":3,"./elemento-montao-tipos":9,"./erro-avaliador-sintatico":10,"./informacao-escopo":12,"./montao-tipos":15,"./pilha-escopos":16,"browser-process-hrtime":362}],3:[function(require,module,exports){
2096
+ },{"../bibliotecas/primitivas-dicionario":20,"../bibliotecas/primitivas-numero":21,"../bibliotecas/primitivas-texto":22,"../bibliotecas/primitivas-vetor":23,"../construtos":49,"../construtos/tuplas":65,"../declaracoes":94,"../inferenciador":113,"../informacao-elemento-sintatico":114,"../tipos-de-dados/delegua":178,"../tipos-de-simbolos/delegua":183,"./avaliador-sintatico-base":1,"./comum":3,"./elemento-montao-tipos":9,"./erro-avaliador-sintatico":10,"./informacao-escopo":12,"./montao-tipos":15,"./pilha-escopos":16,"browser-process-hrtime":363}],3:[function(require,module,exports){
2087
2097
  "use strict";
2088
2098
  Object.defineProperty(exports, "__esModule", { value: true });
2089
2099
  exports.buscarRetornos = buscarRetornos;
@@ -2183,7 +2193,7 @@ function registrarPrimitiva(primitivasConhecidas, tipo, catalogoPrimitivas) {
2183
2193
  }
2184
2194
  }
2185
2195
 
2186
- },{"../informacao-elemento-sintatico":113}],4:[function(require,module,exports){
2196
+ },{"../informacao-elemento-sintatico":114}],4:[function(require,module,exports){
2187
2197
  "use strict";
2188
2198
  var __importDefault = (this && this.__importDefault) || function (mod) {
2189
2199
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -2838,7 +2848,7 @@ class AvaliadorSintaticoEguaClassico {
2838
2848
  }
2839
2849
  exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
2840
2850
 
2841
- },{"../../construtos":49,"../../declaracoes":93,"../../tipos-de-simbolos/egua-classico":183,"../erro-avaliador-sintatico":10}],5:[function(require,module,exports){
2851
+ },{"../../construtos":49,"../../declaracoes":94,"../../tipos-de-simbolos/egua-classico":184,"../erro-avaliador-sintatico":10}],5:[function(require,module,exports){
2842
2852
  "use strict";
2843
2853
  var __importDefault = (this && this.__importDefault) || function (mod) {
2844
2854
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -2861,6 +2871,7 @@ const primitivas_dicionario_1 = __importDefault(require("../../bibliotecas/primi
2861
2871
  const primitivas_numero_1 = __importDefault(require("../../bibliotecas/primitivas-numero"));
2862
2872
  const primitivas_texto_1 = __importDefault(require("../../bibliotecas/primitivas-texto"));
2863
2873
  const primitivas_vetor_1 = __importDefault(require("../../bibliotecas/primitivas-vetor"));
2874
+ const lista_compreensao_1 = require("../../construtos/lista-compreensao");
2864
2875
  /**
2865
2876
  * O avaliador sintático (_Parser_) é responsável por transformar os símbolos do Lexador em estruturas de alto nível.
2866
2877
  * Essas estruturas de alto nível são as partes que executam lógica de programação de fato.
@@ -3065,20 +3076,6 @@ class AvaliadorSintaticoPitugues {
3065
3076
  const simboloAtual = this.simbolos[this.atual];
3066
3077
  let valores = [];
3067
3078
  switch (simboloAtual.tipo) {
3068
- case pitugues_2.default.COLCHETE_ESQUERDO:
3069
- this.avancarEDevolverAnterior();
3070
- if (this.verificarSeSimboloAtualEIgualA(pitugues_2.default.COLCHETE_DIREITO)) {
3071
- return new construtos_1.Vetor(this.hashArquivo, simboloAtual.linha, [], 0, 'qualquer[]');
3072
- }
3073
- while (!this.verificarSeSimboloAtualEIgualA(pitugues_2.default.COLCHETE_DIREITO)) {
3074
- const valor = this.atribuir();
3075
- valores.push(valor);
3076
- if (this.simbolos[this.atual].tipo !== pitugues_2.default.COLCHETE_DIREITO) {
3077
- this.consumir(pitugues_2.default.VIRGULA, 'Esperado vírgula antes da próxima expressão.');
3078
- }
3079
- }
3080
- const tipoVetor = (0, inferenciador_1.inferirTipoVariavel)(valores);
3081
- return new construtos_1.Vetor(this.hashArquivo, simboloAtual.linha, valores, valores.length, tipoVetor);
3082
3079
  case pitugues_2.default.CHAVE_ESQUERDA:
3083
3080
  this.avancarEDevolverAnterior();
3084
3081
  const chaves = [];
@@ -3096,6 +3093,26 @@ class AvaliadorSintaticoPitugues {
3096
3093
  }
3097
3094
  }
3098
3095
  return new construtos_1.Dicionario(this.hashArquivo, simboloAtual.linha, chaves, valores);
3096
+ case pitugues_2.default.COLCHETE_ESQUERDO:
3097
+ this.avancarEDevolverAnterior();
3098
+ if (this.verificarSeSimboloAtualEIgualA(pitugues_2.default.COLCHETE_DIREITO)) {
3099
+ return new construtos_1.Vetor(this.hashArquivo, simboloAtual.linha, [], 0, 'qualquer[]');
3100
+ }
3101
+ if (this.simbolos[this.atual].tipo == 'IDENTIFICADOR' && !this.verificarTipoProximoSimbolo(pitugues_2.default.VIRGULA)) {
3102
+ return this.resolverListaDeCompreensao();
3103
+ }
3104
+ while (!this.verificarSeSimboloAtualEIgualA(pitugues_2.default.COLCHETE_DIREITO)) {
3105
+ const valor = this.atribuir();
3106
+ valores.push(valor);
3107
+ if (this.simbolos[this.atual].tipo !== pitugues_2.default.COLCHETE_DIREITO) {
3108
+ this.consumir(pitugues_2.default.VIRGULA, 'Esperado vírgula antes da próxima expressão.');
3109
+ }
3110
+ }
3111
+ const tipoVetor = (0, inferenciador_1.inferirTipoVariavel)(valores);
3112
+ return new construtos_1.Vetor(this.hashArquivo, simboloAtual.linha, valores, valores.length, tipoVetor);
3113
+ case pitugues_2.default.COMENTARIO:
3114
+ const simboloComentario = this.avancarEDevolverAnterior();
3115
+ return new construtos_1.ComentarioComoConstruto(simboloComentario);
3099
3116
  case pitugues_2.default.FALSO:
3100
3117
  case pitugues_2.default.VERDADEIRO:
3101
3118
  const simboloLogico = this.avancarEDevolverAnterior();
@@ -3591,6 +3608,7 @@ class AvaliadorSintaticoPitugues {
3591
3608
  case pitugues_2.default.PARA:
3592
3609
  this.avancarEDevolverAnterior();
3593
3610
  return this.declaracaoPara();
3611
+ case pitugues_2.default.QUEBRAR:
3594
3612
  case pitugues_2.default.SUSTAR:
3595
3613
  this.avancarEDevolverAnterior();
3596
3614
  return this.declaracaoSustar();
@@ -3648,6 +3666,50 @@ class AvaliadorSintaticoPitugues {
3648
3666
  } while (this.verificarSeSimboloAtualEIgualA(pitugues_2.default.VIRGULA));
3649
3667
  return parametros;
3650
3668
  }
3669
+ /**
3670
+ * Resolve uma lista de compreensão.
3671
+ * @returns {ListaCompreensao} A lista de compreensão resolvida.
3672
+ */
3673
+ resolverListaDeCompreensao() {
3674
+ // TODO: Se expressão não começar com um identificador, por exemplo `3 * x`, como faríamos para
3675
+ // aceitar o `x` na avaliação da expressão?
3676
+ if (this.simbolos[this.atual].tipo === pitugues_2.default.IDENTIFICADOR) {
3677
+ // Antes de avaliar a condição, precisamos registrar a variável de iteração.
3678
+ const simboloVariavelIteracao = this.simbolos[this.atual];
3679
+ this.pilhaEscopos.definirInformacoesVariavel(simboloVariavelIteracao.lexema, new informacao_elemento_sintatico_1.InformacaoElementoSintatico(simboloVariavelIteracao.lexema, 'qualquer') // TODO: Talvez um dia inferir o tipo aqui.
3680
+ );
3681
+ }
3682
+ const retornoExpressao = this.expressao();
3683
+ this.consumir(pitugues_2.default.PARA, "Esperado instrução 'para' após identificado.");
3684
+ this.consumir(pitugues_2.default.CADA, "Esperado instrução 'cada' após 'para'.");
3685
+ const simboloVariavelIteracao = this.consumir(pitugues_2.default.IDENTIFICADOR, "Esperado identificador de variável após 'para cada'.");
3686
+ // TODO: Manter essa validação aqui? Se sim, como resolver a expressão?
3687
+ /* if (identificador.lexema != simboloVariavelIteracao.lexema) {
3688
+ throw this.erro(
3689
+ this.simbolos[this.atual],
3690
+ "Identificadores de variáveis não correspondentes."
3691
+ )
3692
+ } */
3693
+ if (!this.verificarSeSimboloAtualEIgualA(pitugues_2.default.DE, pitugues_2.default.EM)) {
3694
+ throw this.erro(this.simbolos[this.atual], "Esperado palavras reservadas 'em' ou 'de' após variável de iteração em instrução em lista de compreensão.");
3695
+ }
3696
+ const localizacaoVetor = this.simboloAnterior();
3697
+ const vetor = this.expressao();
3698
+ this.consumir(pitugues_2.default.SE, "Esperado condição 'se' após vetor.");
3699
+ const condicao = this.expressao();
3700
+ this.consumir(pitugues_2.default.COLCHETE_DIREITO, 'Espero fechamento de colchetes após condição.');
3701
+ const tipoVetor = vetor.tipo;
3702
+ if (!tipoVetor.endsWith('[]') && !['qualquer', 'vetor'].includes(tipoVetor)) {
3703
+ throw this.erro(localizacaoVetor, `Variável ou constante em 'para cada' não é iterável. Tipo resolvido: ${tipoVetor}.`);
3704
+ }
3705
+ const variavelIteracao = new construtos_1.Variavel(this.hashArquivo, simboloVariavelIteracao);
3706
+ return new lista_compreensao_1.ListaCompreensao(Number(this.simbolos[this.atual]), this.hashArquivo, retornoExpressao, vetor, new construtos_1.ParaCadaComoConstruto(retornoExpressao.hashArquivo, retornoExpressao.linha, variavelIteracao, vetor, new declaracoes_1.Bloco(retornoExpressao.hashArquivo, retornoExpressao.linha, [
3707
+ new declaracoes_1.Se(condicao, new declaracoes_1.Bloco(retornoExpressao.hashArquivo, retornoExpressao.linha, [
3708
+ new declaracoes_1.Retorna(simboloVariavelIteracao, retornoExpressao)
3709
+ ]), [], null)
3710
+ ])), 'qualquer[]' // TODO: Talvez um dia inferir o tipo aqui.
3711
+ );
3712
+ }
3651
3713
  verificarDefinicaoTipoAtual() {
3652
3714
  const tipos = [...Object.values(pitugues_1.default)];
3653
3715
  if (this.simbolos[this.atual].lexema in this.tiposDefinidosEmCodigo) {
@@ -3868,7 +3930,7 @@ class AvaliadorSintaticoPitugues {
3868
3930
  }
3869
3931
  exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
3870
3932
 
3871
- },{"../../bibliotecas/primitivas-dicionario":20,"../../bibliotecas/primitivas-numero":21,"../../bibliotecas/primitivas-texto":22,"../../bibliotecas/primitivas-vetor":23,"../../construtos":49,"../../declaracoes":93,"../../inferenciador":112,"../../informacao-elemento-sintatico":113,"../../lexador":169,"../../tipos-de-dados/dialetos/pitugues":178,"../../tipos-de-simbolos/pitugues":186,"../comum":3,"../erro-avaliador-sintatico":10,"../informacao-escopo":12,"../pilha-escopos":16,"browser-process-hrtime":362}],6:[function(require,module,exports){
3933
+ },{"../../bibliotecas/primitivas-dicionario":20,"../../bibliotecas/primitivas-numero":21,"../../bibliotecas/primitivas-texto":22,"../../bibliotecas/primitivas-vetor":23,"../../construtos":49,"../../construtos/lista-compreensao":52,"../../declaracoes":94,"../../inferenciador":113,"../../informacao-elemento-sintatico":114,"../../lexador":170,"../../tipos-de-dados/dialetos/pitugues":179,"../../tipos-de-simbolos/pitugues":187,"../comum":3,"../erro-avaliador-sintatico":10,"../informacao-escopo":12,"../pilha-escopos":16,"browser-process-hrtime":363}],6:[function(require,module,exports){
3872
3934
  "use strict";
3873
3935
  var __importDefault = (this && this.__importDefault) || function (mod) {
3874
3936
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -4042,7 +4104,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
4042
4104
  }
4043
4105
  exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
4044
4106
 
4045
- },{"../../construtos":49,"../../declaracoes":93,"../../tipos-de-simbolos/portugol-ipt":187,"../avaliador-sintatico-base":1}],7:[function(require,module,exports){
4107
+ },{"../../construtos":49,"../../declaracoes":94,"../../tipos-de-simbolos/portugol-ipt":188,"../avaliador-sintatico-base":1}],7:[function(require,module,exports){
4046
4108
  "use strict";
4047
4109
  var __importDefault = (this && this.__importDefault) || function (mod) {
4048
4110
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -5030,7 +5092,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
5030
5092
  }
5031
5093
  exports.AvaliadorSintaticoTenda = AvaliadorSintaticoTenda;
5032
5094
 
5033
- },{"../../bibliotecas/primitivas-dicionario":20,"../../bibliotecas/primitivas-numero":21,"../../bibliotecas/primitivas-texto":22,"../../bibliotecas/primitivas-vetor":23,"../../construtos":49,"../../construtos/tuplas":64,"../../declaracoes":93,"../../inferenciador":112,"../../informacao-elemento-sintatico":113,"../../lexador/simbolo":175,"../../tipos-de-dados/delegua":177,"../../tipos-de-simbolos/tenda":188,"../avaliador-sintatico-base":1,"./../erro-avaliador-sintatico":10,"./../informacao-escopo":12,"./../pilha-escopos":16,"browser-process-hrtime":362}],8:[function(require,module,exports){
5095
+ },{"../../bibliotecas/primitivas-dicionario":20,"../../bibliotecas/primitivas-numero":21,"../../bibliotecas/primitivas-texto":22,"../../bibliotecas/primitivas-vetor":23,"../../construtos":49,"../../construtos/tuplas":65,"../../declaracoes":94,"../../inferenciador":113,"../../informacao-elemento-sintatico":114,"../../lexador/simbolo":176,"../../tipos-de-dados/delegua":178,"../../tipos-de-simbolos/tenda":189,"../avaliador-sintatico-base":1,"./../erro-avaliador-sintatico":10,"./../informacao-escopo":12,"./../pilha-escopos":16,"browser-process-hrtime":363}],8:[function(require,module,exports){
5034
5096
  "use strict";
5035
5097
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5036
5098
  if (k2 === undefined) k2 = k;
@@ -5235,7 +5297,7 @@ class MicroAvaliadorSintaticoBase {
5235
5297
  }
5236
5298
  exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
5237
5299
 
5238
- },{"../construtos":49,"../tipos-de-simbolos/comum":181,"./erro-avaliador-sintatico":10}],14:[function(require,module,exports){
5300
+ },{"../construtos":49,"../tipos-de-simbolos/comum":182,"./erro-avaliador-sintatico":10}],14:[function(require,module,exports){
5239
5301
  "use strict";
5240
5302
  var __importDefault = (this && this.__importDefault) || function (mod) {
5241
5303
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -5437,7 +5499,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
5437
5499
  }
5438
5500
  exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
5439
5501
 
5440
- },{"../construtos":49,"../tipos-de-simbolos/microgramaticas/delegua":185,"./micro-avaliador-sintatico-base":13}],15:[function(require,module,exports){
5502
+ },{"../construtos":49,"../tipos-de-simbolos/microgramaticas/delegua":186,"./micro-avaliador-sintatico-base":13}],15:[function(require,module,exports){
5441
5503
  "use strict";
5442
5504
  Object.defineProperty(exports, "__esModule", { value: true });
5443
5505
  exports.MontaoTipos = void 0;
@@ -5488,7 +5550,7 @@ class MontaoTipos {
5488
5550
  }
5489
5551
  exports.MontaoTipos = MontaoTipos;
5490
5552
 
5491
- },{"../geracao-identificadores":110,"./erro-avaliador-sintatico":10}],16:[function(require,module,exports){
5553
+ },{"../geracao-identificadores":111,"./erro-avaliador-sintatico":10}],16:[function(require,module,exports){
5492
5554
  "use strict";
5493
5555
  Object.defineProperty(exports, "__esModule", { value: true });
5494
5556
  exports.PilhaEscopos = void 0;
@@ -6268,7 +6330,7 @@ async function tupla(interpretador, vetor) {
6268
6330
  }
6269
6331
  }
6270
6332
 
6271
- },{"../construtos":49,"../excecoes":106,"../interpretador/estruturas":145,"../interpretador/estruturas/descritor-tipo-classe":143,"../interpretador/estruturas/funcao-padrao":144,"../interpretador/estruturas/objeto-delegua-classe":148,"../quebras":176}],20:[function(require,module,exports){
6333
+ },{"../construtos":49,"../excecoes":107,"../interpretador/estruturas":146,"../interpretador/estruturas/descritor-tipo-classe":144,"../interpretador/estruturas/funcao-padrao":145,"../interpretador/estruturas/objeto-delegua-classe":149,"../quebras":177}],20:[function(require,module,exports){
6272
6334
  "use strict";
6273
6335
  Object.defineProperty(exports, "__esModule", { value: true });
6274
6336
  const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
@@ -6317,7 +6379,7 @@ exports.default = {
6317
6379
  assinaturaFormato: `dicionário.remover(chave: qualquer)`,
6318
6380
  },
6319
6381
  valores: {
6320
- tipoRetorno: 'qualquer[]',
6382
+ tipoRetorno: '<T>[]',
6321
6383
  argumentos: [],
6322
6384
  implementacao: (interpretador, nomePrimitiva, valor) => {
6323
6385
  return Promise.resolve(Object.values(valor));
@@ -6325,7 +6387,7 @@ exports.default = {
6325
6387
  },
6326
6388
  };
6327
6389
 
6328
- },{"../informacao-elemento-sintatico":113}],21:[function(require,module,exports){
6390
+ },{"../informacao-elemento-sintatico":114}],21:[function(require,module,exports){
6329
6391
  "use strict";
6330
6392
  Object.defineProperty(exports, "__esModule", { value: true });
6331
6393
  const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
@@ -6410,7 +6472,7 @@ exports.default = {
6410
6472
  },
6411
6473
  };
6412
6474
 
6413
- },{"../informacao-elemento-sintatico":113}],22:[function(require,module,exports){
6475
+ },{"../informacao-elemento-sintatico":114}],22:[function(require,module,exports){
6414
6476
  "use strict";
6415
6477
  Object.defineProperty(exports, "__esModule", { value: true });
6416
6478
  const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
@@ -6612,7 +6674,7 @@ exports.default = {
6612
6674
  },
6613
6675
  };
6614
6676
 
6615
- },{"../informacao-elemento-sintatico":113}],23:[function(require,module,exports){
6677
+ },{"../informacao-elemento-sintatico":114}],23:[function(require,module,exports){
6616
6678
  "use strict";
6617
6679
  Object.defineProperty(exports, "__esModule", { value: true });
6618
6680
  const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
@@ -6959,7 +7021,7 @@ exports.default = {
6959
7021
  },
6960
7022
  };
6961
7023
 
6962
- },{"../informacao-elemento-sintatico":113}],24:[function(require,module,exports){
7024
+ },{"../informacao-elemento-sintatico":114}],24:[function(require,module,exports){
6963
7025
  "use strict";
6964
7026
  Object.defineProperty(exports, "__esModule", { value: true });
6965
7027
  exports.AcessoElementoMatriz = void 0;
@@ -7309,7 +7371,7 @@ class Chamada {
7309
7371
  }
7310
7372
  exports.Chamada = Chamada;
7311
7373
 
7312
- },{"../geracao-identificadores":110}],36:[function(require,module,exports){
7374
+ },{"../geracao-identificadores":111}],36:[function(require,module,exports){
7313
7375
  "use strict";
7314
7376
  Object.defineProperty(exports, "__esModule", { value: true });
7315
7377
  exports.ComentarioComoConstruto = void 0;
@@ -7632,6 +7694,7 @@ __exportStar(require("./formatacao-escrita"), exports);
7632
7694
  __exportStar(require("./funcao"), exports);
7633
7695
  __exportStar(require("./isto"), exports);
7634
7696
  __exportStar(require("./leia"), exports);
7697
+ __exportStar(require("./lista-compreensao"), exports);
7635
7698
  __exportStar(require("./literal"), exports);
7636
7699
  __exportStar(require("./logico"), exports);
7637
7700
  __exportStar(require("./para-cada-como-construto"), exports);
@@ -7647,7 +7710,7 @@ __exportStar(require("./unario"), exports);
7647
7710
  __exportStar(require("./variavel"), exports);
7648
7711
  __exportStar(require("./vetor"), exports);
7649
7712
 
7650
- },{"./acesso-elemento-matriz":24,"./acesso-indice-variavel":25,"./acesso-metodo":27,"./acesso-metodo-ou-propriedade":26,"./acesso-propriedade":28,"./agrupamento":29,"./argumento-referencia-funcao":30,"./atribuicao-por-indice":31,"./atribuicao-por-indices-matriz":32,"./atribuir":33,"./binario":34,"./chamada":35,"./comentario-como-construto":36,"./componente-linguagem":37,"./constante":38,"./construto":39,"./decorador":40,"./definir-valor":41,"./dicionario":42,"./enquanto-como-construto":43,"./expressao-regular":44,"./fazer-como-construto":45,"./fim-para":46,"./formatacao-escrita":47,"./funcao":48,"./isto":50,"./leia":51,"./literal":52,"./logico":53,"./para-cada-como-construto":54,"./para-como-construto":55,"./referencia-biblioteca-global":56,"./referencia-funcao":57,"./separador":58,"./super":59,"./tipo-de":60,"./tupla":61,"./tuplas":64,"./unario":72,"./variavel":73,"./vetor":74}],50:[function(require,module,exports){
7713
+ },{"./acesso-elemento-matriz":24,"./acesso-indice-variavel":25,"./acesso-metodo":27,"./acesso-metodo-ou-propriedade":26,"./acesso-propriedade":28,"./agrupamento":29,"./argumento-referencia-funcao":30,"./atribuicao-por-indice":31,"./atribuicao-por-indices-matriz":32,"./atribuir":33,"./binario":34,"./chamada":35,"./comentario-como-construto":36,"./componente-linguagem":37,"./constante":38,"./construto":39,"./decorador":40,"./definir-valor":41,"./dicionario":42,"./enquanto-como-construto":43,"./expressao-regular":44,"./fazer-como-construto":45,"./fim-para":46,"./formatacao-escrita":47,"./funcao":48,"./isto":50,"./leia":51,"./lista-compreensao":52,"./literal":53,"./logico":54,"./para-cada-como-construto":55,"./para-como-construto":56,"./referencia-biblioteca-global":57,"./referencia-funcao":58,"./separador":59,"./super":60,"./tipo-de":61,"./tupla":62,"./tuplas":65,"./unario":73,"./variavel":74,"./vetor":75}],50:[function(require,module,exports){
7651
7714
  "use strict";
7652
7715
  Object.defineProperty(exports, "__esModule", { value: true });
7653
7716
  exports.Isto = void 0;
@@ -7692,7 +7755,29 @@ class Leia {
7692
7755
  }
7693
7756
  exports.Leia = Leia;
7694
7757
 
7695
- },{"../geracao-identificadores":110}],52:[function(require,module,exports){
7758
+ },{"../geracao-identificadores":111}],52:[function(require,module,exports){
7759
+ "use strict";
7760
+ Object.defineProperty(exports, "__esModule", { value: true });
7761
+ exports.ListaCompreensao = void 0;
7762
+ class ListaCompreensao {
7763
+ constructor(hashArquivo, linha, expressaoRetorno, referenciaVariavelIteracao, paraCada, tipo) {
7764
+ this.linha = linha;
7765
+ this.hashArquivo = hashArquivo;
7766
+ this.expressaoRetorno = expressaoRetorno;
7767
+ this.referenciaVariavelIteracao = referenciaVariavelIteracao;
7768
+ this.paraCada = paraCada;
7769
+ this.tipo = tipo;
7770
+ }
7771
+ async aceitar(visitante) {
7772
+ return await visitante.visitarExpressaoListaCompreensao(this);
7773
+ }
7774
+ paraTexto() {
7775
+ return `<lista-compreensão />`;
7776
+ }
7777
+ }
7778
+ exports.ListaCompreensao = ListaCompreensao;
7779
+
7780
+ },{}],53:[function(require,module,exports){
7696
7781
  "use strict";
7697
7782
  Object.defineProperty(exports, "__esModule", { value: true });
7698
7783
  exports.Literal = void 0;
@@ -7712,7 +7797,7 @@ class Literal {
7712
7797
  }
7713
7798
  exports.Literal = Literal;
7714
7799
 
7715
- },{}],53:[function(require,module,exports){
7800
+ },{}],54:[function(require,module,exports){
7716
7801
  "use strict";
7717
7802
  Object.defineProperty(exports, "__esModule", { value: true });
7718
7803
  exports.Logico = void 0;
@@ -7735,7 +7820,7 @@ class Logico {
7735
7820
  }
7736
7821
  exports.Logico = Logico;
7737
7822
 
7738
- },{}],54:[function(require,module,exports){
7823
+ },{}],55:[function(require,module,exports){
7739
7824
  "use strict";
7740
7825
  Object.defineProperty(exports, "__esModule", { value: true });
7741
7826
  exports.ParaCadaComoConstruto = void 0;
@@ -7757,7 +7842,7 @@ class ParaCadaComoConstruto {
7757
7842
  }
7758
7843
  exports.ParaCadaComoConstruto = ParaCadaComoConstruto;
7759
7844
 
7760
- },{}],55:[function(require,module,exports){
7845
+ },{}],56:[function(require,module,exports){
7761
7846
  "use strict";
7762
7847
  Object.defineProperty(exports, "__esModule", { value: true });
7763
7848
  exports.ParaComoConstruto = void 0;
@@ -7782,7 +7867,7 @@ class ParaComoConstruto {
7782
7867
  }
7783
7868
  exports.ParaComoConstruto = ParaComoConstruto;
7784
7869
 
7785
- },{}],56:[function(require,module,exports){
7870
+ },{}],57:[function(require,module,exports){
7786
7871
  "use strict";
7787
7872
  Object.defineProperty(exports, "__esModule", { value: true });
7788
7873
  exports.ReferenciaBibliotecaGlobal = void 0;
@@ -7805,7 +7890,7 @@ class ReferenciaBibliotecaGlobal {
7805
7890
  }
7806
7891
  exports.ReferenciaBibliotecaGlobal = ReferenciaBibliotecaGlobal;
7807
7892
 
7808
- },{}],57:[function(require,module,exports){
7893
+ },{}],58:[function(require,module,exports){
7809
7894
  "use strict";
7810
7895
  Object.defineProperty(exports, "__esModule", { value: true });
7811
7896
  exports.ReferenciaFuncao = void 0;
@@ -7826,7 +7911,7 @@ class ReferenciaFuncao {
7826
7911
  }
7827
7912
  exports.ReferenciaFuncao = ReferenciaFuncao;
7828
7913
 
7829
- },{}],58:[function(require,module,exports){
7914
+ },{}],59:[function(require,module,exports){
7830
7915
  "use strict";
7831
7916
  Object.defineProperty(exports, "__esModule", { value: true });
7832
7917
  exports.Separador = void 0;
@@ -7845,7 +7930,7 @@ class Separador {
7845
7930
  }
7846
7931
  exports.Separador = Separador;
7847
7932
 
7848
- },{}],59:[function(require,module,exports){
7933
+ },{}],60:[function(require,module,exports){
7849
7934
  "use strict";
7850
7935
  Object.defineProperty(exports, "__esModule", { value: true });
7851
7936
  exports.Super = void 0;
@@ -7865,7 +7950,7 @@ class Super {
7865
7950
  }
7866
7951
  exports.Super = Super;
7867
7952
 
7868
- },{}],60:[function(require,module,exports){
7953
+ },{}],61:[function(require,module,exports){
7869
7954
  "use strict";
7870
7955
  Object.defineProperty(exports, "__esModule", { value: true });
7871
7956
  exports.TipoDe = void 0;
@@ -7889,7 +7974,7 @@ class TipoDe {
7889
7974
  }
7890
7975
  exports.TipoDe = TipoDe;
7891
7976
 
7892
- },{}],61:[function(require,module,exports){
7977
+ },{}],62:[function(require,module,exports){
7893
7978
  "use strict";
7894
7979
  Object.defineProperty(exports, "__esModule", { value: true });
7895
7980
  exports.Tupla = void 0;
@@ -7900,7 +7985,7 @@ class Tupla {
7900
7985
  }
7901
7986
  exports.Tupla = Tupla;
7902
7987
 
7903
- },{}],62:[function(require,module,exports){
7988
+ },{}],63:[function(require,module,exports){
7904
7989
  "use strict";
7905
7990
  Object.defineProperty(exports, "__esModule", { value: true });
7906
7991
  exports.Deceto = void 0;
@@ -7948,7 +8033,7 @@ class Deceto extends tupla_1.Tupla {
7948
8033
  }
7949
8034
  exports.Deceto = Deceto;
7950
8035
 
7951
- },{"../tupla":61}],63:[function(require,module,exports){
8036
+ },{"../tupla":62}],64:[function(require,module,exports){
7952
8037
  "use strict";
7953
8038
  Object.defineProperty(exports, "__esModule", { value: true });
7954
8039
  exports.Dupla = void 0;
@@ -7967,7 +8052,7 @@ class Dupla extends tupla_1.Tupla {
7967
8052
  }
7968
8053
  exports.Dupla = Dupla;
7969
8054
 
7970
- },{"../tupla":61}],64:[function(require,module,exports){
8055
+ },{"../tupla":62}],65:[function(require,module,exports){
7971
8056
  "use strict";
7972
8057
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7973
8058
  if (k2 === undefined) k2 = k;
@@ -8035,7 +8120,7 @@ class SeletorTuplas {
8035
8120
  }
8036
8121
  exports.SeletorTuplas = SeletorTuplas;
8037
8122
 
8038
- },{"./deceto":62,"./dupla":63,"./noneto":65,"./octeto":66,"./quarteto":67,"./quinteto":68,"./septeto":69,"./sexteto":70,"./trio":71}],65:[function(require,module,exports){
8123
+ },{"./deceto":63,"./dupla":64,"./noneto":66,"./octeto":67,"./quarteto":68,"./quinteto":69,"./septeto":70,"./sexteto":71,"./trio":72}],66:[function(require,module,exports){
8039
8124
  "use strict";
8040
8125
  Object.defineProperty(exports, "__esModule", { value: true });
8041
8126
  exports.Noneto = void 0;
@@ -8074,7 +8159,7 @@ class Noneto extends tupla_1.Tupla {
8074
8159
  }
8075
8160
  exports.Noneto = Noneto;
8076
8161
 
8077
- },{"../tupla":61}],66:[function(require,module,exports){
8162
+ },{"../tupla":62}],67:[function(require,module,exports){
8078
8163
  "use strict";
8079
8164
  Object.defineProperty(exports, "__esModule", { value: true });
8080
8165
  exports.Octeto = void 0;
@@ -8111,7 +8196,7 @@ class Octeto extends tupla_1.Tupla {
8111
8196
  }
8112
8197
  exports.Octeto = Octeto;
8113
8198
 
8114
- },{"../tupla":61}],67:[function(require,module,exports){
8199
+ },{"../tupla":62}],68:[function(require,module,exports){
8115
8200
  "use strict";
8116
8201
  Object.defineProperty(exports, "__esModule", { value: true });
8117
8202
  exports.Quarteto = void 0;
@@ -8134,7 +8219,7 @@ class Quarteto extends tupla_1.Tupla {
8134
8219
  }
8135
8220
  exports.Quarteto = Quarteto;
8136
8221
 
8137
- },{"../tupla":61}],68:[function(require,module,exports){
8222
+ },{"../tupla":62}],69:[function(require,module,exports){
8138
8223
  "use strict";
8139
8224
  Object.defineProperty(exports, "__esModule", { value: true });
8140
8225
  exports.Quinteto = void 0;
@@ -8159,7 +8244,7 @@ class Quinteto extends tupla_1.Tupla {
8159
8244
  }
8160
8245
  exports.Quinteto = Quinteto;
8161
8246
 
8162
- },{"../tupla":61}],69:[function(require,module,exports){
8247
+ },{"../tupla":62}],70:[function(require,module,exports){
8163
8248
  "use strict";
8164
8249
  Object.defineProperty(exports, "__esModule", { value: true });
8165
8250
  exports.Septeto = void 0;
@@ -8194,7 +8279,7 @@ class Septeto extends tupla_1.Tupla {
8194
8279
  }
8195
8280
  exports.Septeto = Septeto;
8196
8281
 
8197
- },{"../tupla":61}],70:[function(require,module,exports){
8282
+ },{"../tupla":62}],71:[function(require,module,exports){
8198
8283
  "use strict";
8199
8284
  Object.defineProperty(exports, "__esModule", { value: true });
8200
8285
  exports.Sexteto = void 0;
@@ -8221,7 +8306,7 @@ class Sexteto extends tupla_1.Tupla {
8221
8306
  }
8222
8307
  exports.Sexteto = Sexteto;
8223
8308
 
8224
- },{"../tupla":61}],71:[function(require,module,exports){
8309
+ },{"../tupla":62}],72:[function(require,module,exports){
8225
8310
  "use strict";
8226
8311
  Object.defineProperty(exports, "__esModule", { value: true });
8227
8312
  exports.Trio = void 0;
@@ -8242,7 +8327,7 @@ class Trio extends tupla_1.Tupla {
8242
8327
  }
8243
8328
  exports.Trio = Trio;
8244
8329
 
8245
- },{"../tupla":61}],72:[function(require,module,exports){
8330
+ },{"../tupla":62}],73:[function(require,module,exports){
8246
8331
  "use strict";
8247
8332
  Object.defineProperty(exports, "__esModule", { value: true });
8248
8333
  exports.Unario = void 0;
@@ -8263,7 +8348,7 @@ class Unario {
8263
8348
  }
8264
8349
  exports.Unario = Unario;
8265
8350
 
8266
- },{}],73:[function(require,module,exports){
8351
+ },{}],74:[function(require,module,exports){
8267
8352
  "use strict";
8268
8353
  Object.defineProperty(exports, "__esModule", { value: true });
8269
8354
  exports.Variavel = void 0;
@@ -8283,7 +8368,7 @@ class Variavel {
8283
8368
  }
8284
8369
  exports.Variavel = Variavel;
8285
8370
 
8286
- },{}],74:[function(require,module,exports){
8371
+ },{}],75:[function(require,module,exports){
8287
8372
  "use strict";
8288
8373
  Object.defineProperty(exports, "__esModule", { value: true });
8289
8374
  exports.Vetor = void 0;
@@ -8309,7 +8394,7 @@ class Vetor {
8309
8394
  }
8310
8395
  exports.Vetor = Vetor;
8311
8396
 
8312
- },{}],75:[function(require,module,exports){
8397
+ },{}],76:[function(require,module,exports){
8313
8398
  "use strict";
8314
8399
  Object.defineProperty(exports, "__esModule", { value: true });
8315
8400
  exports.Aleatorio = void 0;
@@ -8330,7 +8415,7 @@ class Aleatorio extends declaracao_1.Declaracao {
8330
8415
  }
8331
8416
  exports.Aleatorio = Aleatorio;
8332
8417
 
8333
- },{"./declaracao":83}],76:[function(require,module,exports){
8418
+ },{"./declaracao":84}],77:[function(require,module,exports){
8334
8419
  "use strict";
8335
8420
  Object.defineProperty(exports, "__esModule", { value: true });
8336
8421
  exports.Bloco = void 0;
@@ -8356,7 +8441,7 @@ class Bloco extends declaracao_1.Declaracao {
8356
8441
  }
8357
8442
  exports.Bloco = Bloco;
8358
8443
 
8359
- },{"./declaracao":83}],77:[function(require,module,exports){
8444
+ },{"./declaracao":84}],78:[function(require,module,exports){
8360
8445
  "use strict";
8361
8446
  Object.defineProperty(exports, "__esModule", { value: true });
8362
8447
  exports.CabecalhoPrograma = void 0;
@@ -8378,7 +8463,7 @@ class CabecalhoPrograma extends declaracao_1.Declaracao {
8378
8463
  }
8379
8464
  exports.CabecalhoPrograma = CabecalhoPrograma;
8380
8465
 
8381
- },{"./declaracao":83}],78:[function(require,module,exports){
8466
+ },{"./declaracao":84}],79:[function(require,module,exports){
8382
8467
  "use strict";
8383
8468
  Object.defineProperty(exports, "__esModule", { value: true });
8384
8469
  exports.Classe = void 0;
@@ -8413,7 +8498,7 @@ class Classe extends declaracao_1.Declaracao {
8413
8498
  }
8414
8499
  exports.Classe = Classe;
8415
8500
 
8416
- },{"./declaracao":83}],79:[function(require,module,exports){
8501
+ },{"./declaracao":84}],80:[function(require,module,exports){
8417
8502
  "use strict";
8418
8503
  Object.defineProperty(exports, "__esModule", { value: true });
8419
8504
  exports.Comentario = void 0;
@@ -8438,7 +8523,7 @@ class Comentario extends declaracao_1.Declaracao {
8438
8523
  }
8439
8524
  exports.Comentario = Comentario;
8440
8525
 
8441
- },{"./declaracao":83}],80:[function(require,module,exports){
8526
+ },{"./declaracao":84}],81:[function(require,module,exports){
8442
8527
  "use strict";
8443
8528
  Object.defineProperty(exports, "__esModule", { value: true });
8444
8529
  exports.ConstMultiplo = void 0;
@@ -8463,7 +8548,7 @@ class ConstMultiplo extends declaracao_1.Declaracao {
8463
8548
  }
8464
8549
  exports.ConstMultiplo = ConstMultiplo;
8465
8550
 
8466
- },{"./declaracao":83}],81:[function(require,module,exports){
8551
+ },{"./declaracao":84}],82:[function(require,module,exports){
8467
8552
  "use strict";
8468
8553
  Object.defineProperty(exports, "__esModule", { value: true });
8469
8554
  exports.Const = void 0;
@@ -8493,7 +8578,7 @@ class Const extends declaracao_1.Declaracao {
8493
8578
  }
8494
8579
  exports.Const = Const;
8495
8580
 
8496
- },{"./declaracao":83}],82:[function(require,module,exports){
8581
+ },{"./declaracao":84}],83:[function(require,module,exports){
8497
8582
  "use strict";
8498
8583
  Object.defineProperty(exports, "__esModule", { value: true });
8499
8584
  exports.Continua = void 0;
@@ -8511,7 +8596,7 @@ class Continua extends declaracao_1.Declaracao {
8511
8596
  }
8512
8597
  exports.Continua = Continua;
8513
8598
 
8514
- },{"./declaracao":83}],83:[function(require,module,exports){
8599
+ },{"./declaracao":84}],84:[function(require,module,exports){
8515
8600
  "use strict";
8516
8601
  Object.defineProperty(exports, "__esModule", { value: true });
8517
8602
  exports.Declaracao = void 0;
@@ -8534,7 +8619,7 @@ class Declaracao {
8534
8619
  }
8535
8620
  exports.Declaracao = Declaracao;
8536
8621
 
8537
- },{}],84:[function(require,module,exports){
8622
+ },{}],85:[function(require,module,exports){
8538
8623
  "use strict";
8539
8624
  Object.defineProperty(exports, "__esModule", { value: true });
8540
8625
  exports.Enquanto = void 0;
@@ -8555,7 +8640,7 @@ class Enquanto extends declaracao_1.Declaracao {
8555
8640
  }
8556
8641
  exports.Enquanto = Enquanto;
8557
8642
 
8558
- },{"./declaracao":83}],85:[function(require,module,exports){
8643
+ },{"./declaracao":84}],86:[function(require,module,exports){
8559
8644
  "use strict";
8560
8645
  Object.defineProperty(exports, "__esModule", { value: true });
8561
8646
  exports.Escolha = void 0;
@@ -8580,7 +8665,7 @@ class Escolha extends declaracao_1.Declaracao {
8580
8665
  }
8581
8666
  exports.Escolha = Escolha;
8582
8667
 
8583
- },{"./declaracao":83}],86:[function(require,module,exports){
8668
+ },{"./declaracao":84}],87:[function(require,module,exports){
8584
8669
  "use strict";
8585
8670
  Object.defineProperty(exports, "__esModule", { value: true });
8586
8671
  exports.EscrevaMesmaLinha = void 0;
@@ -8599,7 +8684,7 @@ class EscrevaMesmaLinha extends declaracao_1.Declaracao {
8599
8684
  }
8600
8685
  exports.EscrevaMesmaLinha = EscrevaMesmaLinha;
8601
8686
 
8602
- },{"./declaracao":83}],87:[function(require,module,exports){
8687
+ },{"./declaracao":84}],88:[function(require,module,exports){
8603
8688
  "use strict";
8604
8689
  Object.defineProperty(exports, "__esModule", { value: true });
8605
8690
  exports.Escreva = void 0;
@@ -8618,7 +8703,7 @@ class Escreva extends declaracao_1.Declaracao {
8618
8703
  }
8619
8704
  exports.Escreva = Escreva;
8620
8705
 
8621
- },{"./declaracao":83}],88:[function(require,module,exports){
8706
+ },{"./declaracao":84}],89:[function(require,module,exports){
8622
8707
  "use strict";
8623
8708
  Object.defineProperty(exports, "__esModule", { value: true });
8624
8709
  exports.Expressao = void 0;
@@ -8637,7 +8722,7 @@ class Expressao extends declaracao_1.Declaracao {
8637
8722
  }
8638
8723
  exports.Expressao = Expressao;
8639
8724
 
8640
- },{"./declaracao":83}],89:[function(require,module,exports){
8725
+ },{"./declaracao":84}],90:[function(require,module,exports){
8641
8726
  "use strict";
8642
8727
  Object.defineProperty(exports, "__esModule", { value: true });
8643
8728
  exports.Falhar = void 0;
@@ -8657,7 +8742,7 @@ class Falhar extends declaracao_1.Declaracao {
8657
8742
  }
8658
8743
  exports.Falhar = Falhar;
8659
8744
 
8660
- },{"./declaracao":83}],90:[function(require,module,exports){
8745
+ },{"./declaracao":84}],91:[function(require,module,exports){
8661
8746
  "use strict";
8662
8747
  Object.defineProperty(exports, "__esModule", { value: true });
8663
8748
  exports.Fazer = void 0;
@@ -8678,7 +8763,7 @@ class Fazer extends declaracao_1.Declaracao {
8678
8763
  }
8679
8764
  exports.Fazer = Fazer;
8680
8765
 
8681
- },{"./declaracao":83}],91:[function(require,module,exports){
8766
+ },{"./declaracao":84}],92:[function(require,module,exports){
8682
8767
  "use strict";
8683
8768
  Object.defineProperty(exports, "__esModule", { value: true });
8684
8769
  exports.FuncaoDeclaracao = void 0;
@@ -8706,7 +8791,7 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
8706
8791
  }
8707
8792
  exports.FuncaoDeclaracao = FuncaoDeclaracao;
8708
8793
 
8709
- },{"../geracao-identificadores":110,"./declaracao":83}],92:[function(require,module,exports){
8794
+ },{"../geracao-identificadores":111,"./declaracao":84}],93:[function(require,module,exports){
8710
8795
  "use strict";
8711
8796
  Object.defineProperty(exports, "__esModule", { value: true });
8712
8797
  exports.Importar = void 0;
@@ -8730,7 +8815,7 @@ class Importar extends declaracao_1.Declaracao {
8730
8815
  }
8731
8816
  exports.Importar = Importar;
8732
8817
 
8733
- },{"./declaracao":83}],93:[function(require,module,exports){
8818
+ },{"./declaracao":84}],94:[function(require,module,exports){
8734
8819
  "use strict";
8735
8820
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
8736
8821
  if (k2 === undefined) k2 = k;
@@ -8778,7 +8863,7 @@ __exportStar(require("./tente"), exports);
8778
8863
  __exportStar(require("./var"), exports);
8779
8864
  __exportStar(require("./var-multiplo"), exports);
8780
8865
 
8781
- },{"./aleatorio":75,"./bloco":76,"./cabecalho-programa":77,"./classe":78,"./comentario":79,"./const":81,"./const-multiplo":80,"./continua":82,"./declaracao":83,"./enquanto":84,"./escolha":85,"./escreva":87,"./escreva-mesma-linha":86,"./expressao":88,"./falhar":89,"./fazer":90,"./funcao":91,"./importar":92,"./inicio-algoritmo":94,"./para":96,"./para-cada":95,"./propriedade-classe":97,"./retorna":98,"./se":99,"./sustar":100,"./tendo-como":101,"./tente":102,"./var":104,"./var-multiplo":103}],94:[function(require,module,exports){
8866
+ },{"./aleatorio":76,"./bloco":77,"./cabecalho-programa":78,"./classe":79,"./comentario":80,"./const":82,"./const-multiplo":81,"./continua":83,"./declaracao":84,"./enquanto":85,"./escolha":86,"./escreva":88,"./escreva-mesma-linha":87,"./expressao":89,"./falhar":90,"./fazer":91,"./funcao":92,"./importar":93,"./inicio-algoritmo":95,"./para":97,"./para-cada":96,"./propriedade-classe":98,"./retorna":99,"./se":100,"./sustar":101,"./tendo-como":102,"./tente":103,"./var":105,"./var-multiplo":104}],95:[function(require,module,exports){
8782
8867
  "use strict";
8783
8868
  Object.defineProperty(exports, "__esModule", { value: true });
8784
8869
  exports.InicioAlgoritmo = void 0;
@@ -8798,7 +8883,7 @@ class InicioAlgoritmo extends declaracao_1.Declaracao {
8798
8883
  }
8799
8884
  exports.InicioAlgoritmo = InicioAlgoritmo;
8800
8885
 
8801
- },{"./declaracao":83}],95:[function(require,module,exports){
8886
+ },{"./declaracao":84}],96:[function(require,module,exports){
8802
8887
  "use strict";
8803
8888
  Object.defineProperty(exports, "__esModule", { value: true });
8804
8889
  exports.ParaCada = void 0;
@@ -8821,7 +8906,7 @@ class ParaCada extends declaracao_1.Declaracao {
8821
8906
  }
8822
8907
  exports.ParaCada = ParaCada;
8823
8908
 
8824
- },{"./declaracao":83}],96:[function(require,module,exports){
8909
+ },{"./declaracao":84}],97:[function(require,module,exports){
8825
8910
  "use strict";
8826
8911
  Object.defineProperty(exports, "__esModule", { value: true });
8827
8912
  exports.Para = void 0;
@@ -8858,7 +8943,7 @@ class Para extends declaracao_1.Declaracao {
8858
8943
  }
8859
8944
  exports.Para = Para;
8860
8945
 
8861
- },{"./declaracao":83}],97:[function(require,module,exports){
8946
+ },{"./declaracao":84}],98:[function(require,module,exports){
8862
8947
  "use strict";
8863
8948
  Object.defineProperty(exports, "__esModule", { value: true });
8864
8949
  exports.PropriedadeClasse = void 0;
@@ -8879,7 +8964,7 @@ class PropriedadeClasse extends declaracao_1.Declaracao {
8879
8964
  }
8880
8965
  exports.PropriedadeClasse = PropriedadeClasse;
8881
8966
 
8882
- },{"./declaracao":83}],98:[function(require,module,exports){
8967
+ },{"./declaracao":84}],99:[function(require,module,exports){
8883
8968
  "use strict";
8884
8969
  Object.defineProperty(exports, "__esModule", { value: true });
8885
8970
  exports.Retorna = void 0;
@@ -8905,7 +8990,7 @@ class Retorna extends declaracao_1.Declaracao {
8905
8990
  }
8906
8991
  exports.Retorna = Retorna;
8907
8992
 
8908
- },{"./declaracao":83}],99:[function(require,module,exports){
8993
+ },{"./declaracao":84}],100:[function(require,module,exports){
8909
8994
  "use strict";
8910
8995
  Object.defineProperty(exports, "__esModule", { value: true });
8911
8996
  exports.Se = void 0;
@@ -8928,7 +9013,7 @@ class Se extends declaracao_1.Declaracao {
8928
9013
  }
8929
9014
  exports.Se = Se;
8930
9015
 
8931
- },{"./declaracao":83}],100:[function(require,module,exports){
9016
+ },{"./declaracao":84}],101:[function(require,module,exports){
8932
9017
  "use strict";
8933
9018
  Object.defineProperty(exports, "__esModule", { value: true });
8934
9019
  exports.Sustar = void 0;
@@ -8946,7 +9031,7 @@ class Sustar extends declaracao_1.Declaracao {
8946
9031
  }
8947
9032
  exports.Sustar = Sustar;
8948
9033
 
8949
- },{"./declaracao":83}],101:[function(require,module,exports){
9034
+ },{"./declaracao":84}],102:[function(require,module,exports){
8950
9035
  "use strict";
8951
9036
  Object.defineProperty(exports, "__esModule", { value: true });
8952
9037
  exports.TendoComo = void 0;
@@ -8973,7 +9058,7 @@ class TendoComo extends declaracao_1.Declaracao {
8973
9058
  }
8974
9059
  exports.TendoComo = TendoComo;
8975
9060
 
8976
- },{"./declaracao":83}],102:[function(require,module,exports){
9061
+ },{"./declaracao":84}],103:[function(require,module,exports){
8977
9062
  "use strict";
8978
9063
  Object.defineProperty(exports, "__esModule", { value: true });
8979
9064
  exports.Tente = void 0;
@@ -8999,7 +9084,7 @@ class Tente extends declaracao_1.Declaracao {
8999
9084
  }
9000
9085
  exports.Tente = Tente;
9001
9086
 
9002
- },{"./declaracao":83}],103:[function(require,module,exports){
9087
+ },{"./declaracao":84}],104:[function(require,module,exports){
9003
9088
  "use strict";
9004
9089
  Object.defineProperty(exports, "__esModule", { value: true });
9005
9090
  exports.VarMultiplo = void 0;
@@ -9025,7 +9110,7 @@ class VarMultiplo extends declaracao_1.Declaracao {
9025
9110
  }
9026
9111
  exports.VarMultiplo = VarMultiplo;
9027
9112
 
9028
- },{"./declaracao":83}],104:[function(require,module,exports){
9113
+ },{"./declaracao":84}],105:[function(require,module,exports){
9029
9114
  "use strict";
9030
9115
  Object.defineProperty(exports, "__esModule", { value: true });
9031
9116
  exports.Var = void 0;
@@ -9057,7 +9142,7 @@ class Var extends declaracao_1.Declaracao {
9057
9142
  }
9058
9143
  exports.Var = Var;
9059
9144
 
9060
- },{"./declaracao":83}],105:[function(require,module,exports){
9145
+ },{"./declaracao":84}],106:[function(require,module,exports){
9061
9146
  "use strict";
9062
9147
  Object.defineProperty(exports, "__esModule", { value: true });
9063
9148
  exports.ErroEmTempoDeExecucao = void 0;
@@ -9072,7 +9157,7 @@ class ErroEmTempoDeExecucao extends Error {
9072
9157
  }
9073
9158
  exports.ErroEmTempoDeExecucao = ErroEmTempoDeExecucao;
9074
9159
 
9075
- },{}],106:[function(require,module,exports){
9160
+ },{}],107:[function(require,module,exports){
9076
9161
  "use strict";
9077
9162
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
9078
9163
  if (k2 === undefined) k2 = k;
@@ -9091,7 +9176,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
9091
9176
  Object.defineProperty(exports, "__esModule", { value: true });
9092
9177
  __exportStar(require("./erro-em-tempo-de-execucao"), exports);
9093
9178
 
9094
- },{"./erro-em-tempo-de-execucao":105}],107:[function(require,module,exports){
9179
+ },{"./erro-em-tempo-de-execucao":106}],108:[function(require,module,exports){
9095
9180
  "use strict";
9096
9181
  var __importDefault = (this && this.__importDefault) || function (mod) {
9097
9182
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -9820,7 +9905,7 @@ class FormatadorDelegua {
9820
9905
  }
9821
9906
  exports.FormatadorDelegua = FormatadorDelegua;
9822
9907
 
9823
- },{"../construtos":49,"../tipos-de-simbolos/delegua":182}],108:[function(require,module,exports){
9908
+ },{"../construtos":49,"../tipos-de-simbolos/delegua":183}],109:[function(require,module,exports){
9824
9909
  "use strict";
9825
9910
  Object.defineProperty(exports, "__esModule", { value: true });
9826
9911
  exports.FormatadorPitugues = void 0;
@@ -10002,7 +10087,7 @@ class FormatadorPitugues {
10002
10087
  }
10003
10088
  exports.FormatadorPitugues = FormatadorPitugues;
10004
10089
 
10005
- },{}],109:[function(require,module,exports){
10090
+ },{}],110:[function(require,module,exports){
10006
10091
  "use strict";
10007
10092
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10008
10093
  if (k2 === undefined) k2 = k;
@@ -10022,7 +10107,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
10022
10107
  __exportStar(require("./formatador-delegua"), exports);
10023
10108
  __exportStar(require("./formatador-pitugues"), exports);
10024
10109
 
10025
- },{"./formatador-delegua":107,"./formatador-pitugues":108}],110:[function(require,module,exports){
10110
+ },{"./formatador-delegua":108,"./formatador-pitugues":109}],111:[function(require,module,exports){
10026
10111
  "use strict";
10027
10112
  Object.defineProperty(exports, "__esModule", { value: true });
10028
10113
  exports.cyrb53 = cyrb53;
@@ -10066,7 +10151,7 @@ function uuidv4() {
10066
10151
  });
10067
10152
  }
10068
10153
 
10069
- },{}],111:[function(require,module,exports){
10154
+ },{}],112:[function(require,module,exports){
10070
10155
  "use strict";
10071
10156
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10072
10157
  if (k2 === undefined) k2 = k;
@@ -10093,7 +10178,7 @@ __exportStar(require("./interpretador"), exports);
10093
10178
  __exportStar(require("./lexador"), exports);
10094
10179
  __exportStar(require("./tradutores"), exports);
10095
10180
 
10096
- },{"./avaliador-sintatico":11,"./construtos":49,"./declaracoes":93,"./formatadores":109,"./geracao-identificadores":110,"./interfaces":119,"./interpretador":151,"./lexador":169,"./tradutores":189}],112:[function(require,module,exports){
10181
+ },{"./avaliador-sintatico":11,"./construtos":49,"./declaracoes":94,"./formatadores":110,"./geracao-identificadores":111,"./interfaces":120,"./interpretador":152,"./lexador":170,"./tradutores":190}],113:[function(require,module,exports){
10097
10182
  "use strict";
10098
10183
  var __importDefault = (this && this.__importDefault) || function (mod) {
10099
10184
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -10220,7 +10305,7 @@ function tipoInferenciaParaTipoDadosElementar(tipoInferencia) {
10220
10305
  }
10221
10306
  }
10222
10307
 
10223
- },{"./tipos-de-dados/delegua":177,"./tipos-de-dados/primitivos":179,"./tipos-de-simbolos/delegua":182}],113:[function(require,module,exports){
10308
+ },{"./tipos-de-dados/delegua":178,"./tipos-de-dados/primitivos":180,"./tipos-de-simbolos/delegua":183}],114:[function(require,module,exports){
10224
10309
  "use strict";
10225
10310
  Object.defineProperty(exports, "__esModule", { value: true });
10226
10311
  exports.InformacaoElementoSintatico = void 0;
@@ -10239,15 +10324,15 @@ class InformacaoElementoSintatico {
10239
10324
  }
10240
10325
  exports.InformacaoElementoSintatico = InformacaoElementoSintatico;
10241
10326
 
10242
- },{}],114:[function(require,module,exports){
10327
+ },{}],115:[function(require,module,exports){
10243
10328
  "use strict";
10244
10329
  Object.defineProperty(exports, "__esModule", { value: true });
10245
10330
 
10246
- },{}],115:[function(require,module,exports){
10331
+ },{}],116:[function(require,module,exports){
10247
10332
  "use strict";
10248
10333
  Object.defineProperty(exports, "__esModule", { value: true });
10249
10334
 
10250
- },{}],116:[function(require,module,exports){
10335
+ },{}],117:[function(require,module,exports){
10251
10336
  "use strict";
10252
10337
  Object.defineProperty(exports, "__esModule", { value: true });
10253
10338
  exports.DiagnosticoSeveridade = void 0;
@@ -10259,7 +10344,7 @@ var DiagnosticoSeveridade;
10259
10344
  DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
10260
10345
  })(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
10261
10346
 
10262
- },{}],117:[function(require,module,exports){
10347
+ },{}],118:[function(require,module,exports){
10263
10348
  "use strict";
10264
10349
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10265
10350
  if (k2 === undefined) k2 = k;
@@ -10278,11 +10363,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10278
10363
  Object.defineProperty(exports, "__esModule", { value: true });
10279
10364
  __exportStar(require("./diagnostico-analisador-semantico"), exports);
10280
10365
 
10281
- },{"./diagnostico-analisador-semantico":116}],118:[function(require,module,exports){
10366
+ },{"./diagnostico-analisador-semantico":117}],119:[function(require,module,exports){
10282
10367
  "use strict";
10283
10368
  Object.defineProperty(exports, "__esModule", { value: true });
10284
10369
 
10285
- },{}],119:[function(require,module,exports){
10370
+ },{}],120:[function(require,module,exports){
10286
10371
  "use strict";
10287
10372
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10288
10373
  if (k2 === undefined) k2 = k;
@@ -10319,11 +10404,7 @@ __exportStar(require("./construtos"), exports);
10319
10404
  __exportStar(require("./erros"), exports);
10320
10405
  __exportStar(require("./retornos"), exports);
10321
10406
 
10322
- },{"./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,"./primitiva-interface":125,"./resolvedor-interface":126,"./resultado-parcial-interpretador-interface":127,"./retornos":128,"./retornos/retorno-execucao-interface":130,"./simbolo-interface":133,"./tradutor-interface":134,"./variavel-interface":135,"./visitante-comum-interface":136,"./visitante-delegua-interface":137}],120:[function(require,module,exports){
10323
- "use strict";
10324
- Object.defineProperty(exports, "__esModule", { value: true });
10325
-
10326
- },{}],121:[function(require,module,exports){
10407
+ },{"./avaliador-sintatico-interface":115,"./construtos":116,"./erros":118,"./formatador-comum-interface":119,"./interpretador-com-depuracao-interface":121,"./interpretador-interface":122,"./lexador-interface":123,"./parametro-interface":124,"./pilha-interface":125,"./primitiva-interface":126,"./resolvedor-interface":127,"./resultado-parcial-interpretador-interface":128,"./retornos":129,"./retornos/retorno-execucao-interface":131,"./simbolo-interface":134,"./tradutor-interface":135,"./variavel-interface":136,"./visitante-comum-interface":137,"./visitante-delegua-interface":138}],121:[function(require,module,exports){
10327
10408
  "use strict";
10328
10409
  Object.defineProperty(exports, "__esModule", { value: true });
10329
10410
 
@@ -10353,6 +10434,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
10353
10434
 
10354
10435
  },{}],128:[function(require,module,exports){
10355
10436
  "use strict";
10437
+ Object.defineProperty(exports, "__esModule", { value: true });
10438
+
10439
+ },{}],129:[function(require,module,exports){
10440
+ "use strict";
10356
10441
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10357
10442
  if (k2 === undefined) k2 = k;
10358
10443
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -10373,11 +10458,7 @@ __exportStar(require("./retorno-execucao-interface"), exports);
10373
10458
  __exportStar(require("./retorno-interpretador-interface"), exports);
10374
10459
  __exportStar(require("./retorno-lexador"), exports);
10375
10460
 
10376
- },{"./retorno-avaliador-sintatico":129,"./retorno-execucao-interface":130,"./retorno-interpretador-interface":131,"./retorno-lexador":132}],129:[function(require,module,exports){
10377
- "use strict";
10378
- Object.defineProperty(exports, "__esModule", { value: true });
10379
-
10380
- },{}],130:[function(require,module,exports){
10461
+ },{"./retorno-avaliador-sintatico":130,"./retorno-execucao-interface":131,"./retorno-interpretador-interface":132,"./retorno-lexador":133}],130:[function(require,module,exports){
10381
10462
  "use strict";
10382
10463
  Object.defineProperty(exports, "__esModule", { value: true });
10383
10464
 
@@ -10411,6 +10492,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
10411
10492
 
10412
10493
  },{}],138:[function(require,module,exports){
10413
10494
  "use strict";
10495
+ Object.defineProperty(exports, "__esModule", { value: true });
10496
+
10497
+ },{}],139:[function(require,module,exports){
10498
+ "use strict";
10414
10499
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10415
10500
  if (k2 === undefined) k2 = k;
10416
10501
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -10474,7 +10559,7 @@ function carregarBibliotecasGlobais(pilhaEscoposExecucao) {
10474
10559
  pilhaEscoposExecucao.definirVariavel('tupla', new funcao_padrao_1.FuncaoPadrao(1, bibliotecaGlobal.tupla));
10475
10560
  }
10476
10561
 
10477
- },{"../bibliotecas/biblioteca-global":19,"./estruturas/funcao-padrao":144}],139:[function(require,module,exports){
10562
+ },{"../bibliotecas/biblioteca-global":19,"./estruturas/funcao-padrao":145}],140:[function(require,module,exports){
10478
10563
  "use strict";
10479
10564
  Object.defineProperty(exports, "__esModule", { value: true });
10480
10565
  exports.EspacoMemoria = void 0;
@@ -10499,7 +10584,7 @@ class EspacoMemoria {
10499
10584
  }
10500
10585
  exports.EspacoMemoria = EspacoMemoria;
10501
10586
 
10502
- },{}],140:[function(require,module,exports){
10587
+ },{}],141:[function(require,module,exports){
10503
10588
  "use strict";
10504
10589
  Object.defineProperty(exports, "__esModule", { value: true });
10505
10590
  exports.Chamavel = void 0;
@@ -10513,7 +10598,7 @@ class Chamavel {
10513
10598
  }
10514
10599
  exports.Chamavel = Chamavel;
10515
10600
 
10516
- },{}],141:[function(require,module,exports){
10601
+ },{}],142:[function(require,module,exports){
10517
10602
  "use strict";
10518
10603
  Object.defineProperty(exports, "__esModule", { value: true });
10519
10604
  exports.ClassePadrao = void 0;
@@ -10554,7 +10639,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
10554
10639
  }
10555
10640
  exports.ClassePadrao = ClassePadrao;
10556
10641
 
10557
- },{"./chamavel":140}],142:[function(require,module,exports){
10642
+ },{"./chamavel":141}],143:[function(require,module,exports){
10558
10643
  "use strict";
10559
10644
  Object.defineProperty(exports, "__esModule", { value: true });
10560
10645
  exports.DeleguaFuncao = void 0;
@@ -10699,7 +10784,7 @@ class DeleguaFuncao extends chamavel_1.Chamavel {
10699
10784
  }
10700
10785
  exports.DeleguaFuncao = DeleguaFuncao;
10701
10786
 
10702
- },{"../../declaracoes":93,"../../quebras":176,"../espaco-memoria":139,"./chamavel":140}],143:[function(require,module,exports){
10787
+ },{"../../declaracoes":94,"../../quebras":177,"../espaco-memoria":140,"./chamavel":141}],144:[function(require,module,exports){
10703
10788
  "use strict";
10704
10789
  Object.defineProperty(exports, "__esModule", { value: true });
10705
10790
  exports.DescritorTipoClasse = void 0;
@@ -10780,7 +10865,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
10780
10865
  }
10781
10866
  exports.DescritorTipoClasse = DescritorTipoClasse;
10782
10867
 
10783
- },{"../../excecoes":106,"./chamavel":140,"./objeto-delegua-classe":148}],144:[function(require,module,exports){
10868
+ },{"../../excecoes":107,"./chamavel":141,"./objeto-delegua-classe":149}],145:[function(require,module,exports){
10784
10869
  "use strict";
10785
10870
  Object.defineProperty(exports, "__esModule", { value: true });
10786
10871
  exports.FuncaoPadrao = void 0;
@@ -10817,7 +10902,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
10817
10902
  }
10818
10903
  exports.FuncaoPadrao = FuncaoPadrao;
10819
10904
 
10820
- },{"./chamavel":140}],145:[function(require,module,exports){
10905
+ },{"./chamavel":141}],146:[function(require,module,exports){
10821
10906
  "use strict";
10822
10907
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10823
10908
  if (k2 === undefined) k2 = k;
@@ -10845,7 +10930,7 @@ __exportStar(require("./objeto-delegua-classe"), exports);
10845
10930
  __exportStar(require("./objeto-padrao"), exports);
10846
10931
  __exportStar(require("./referencia-montao"), exports);
10847
10932
 
10848
- },{"./chamavel":140,"./classe-padrao":141,"./delegua-funcao":142,"./descritor-tipo-classe":143,"./funcao-padrao":144,"./metodo-primitiva":146,"./modulo":147,"./objeto-delegua-classe":148,"./objeto-padrao":149,"./referencia-montao":150}],146:[function(require,module,exports){
10933
+ },{"./chamavel":141,"./classe-padrao":142,"./delegua-funcao":143,"./descritor-tipo-classe":144,"./funcao-padrao":145,"./metodo-primitiva":147,"./modulo":148,"./objeto-delegua-classe":149,"./objeto-padrao":150,"./referencia-montao":151}],147:[function(require,module,exports){
10849
10934
  "use strict";
10850
10935
  Object.defineProperty(exports, "__esModule", { value: true });
10851
10936
  exports.MetodoPrimitiva = void 0;
@@ -10888,7 +10973,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
10888
10973
  }
10889
10974
  exports.MetodoPrimitiva = MetodoPrimitiva;
10890
10975
 
10891
- },{"./chamavel":140}],147:[function(require,module,exports){
10976
+ },{"./chamavel":141}],148:[function(require,module,exports){
10892
10977
  "use strict";
10893
10978
  Object.defineProperty(exports, "__esModule", { value: true });
10894
10979
  exports.DeleguaModulo = void 0;
@@ -10914,7 +10999,7 @@ class DeleguaModulo {
10914
10999
  }
10915
11000
  exports.DeleguaModulo = DeleguaModulo;
10916
11001
 
10917
- },{}],148:[function(require,module,exports){
11002
+ },{}],149:[function(require,module,exports){
10918
11003
  "use strict";
10919
11004
  Object.defineProperty(exports, "__esModule", { value: true });
10920
11005
  exports.ObjetoDeleguaClasse = void 0;
@@ -10982,7 +11067,7 @@ class ObjetoDeleguaClasse {
10982
11067
  }
10983
11068
  exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
10984
11069
 
10985
- },{"../../excecoes":106}],149:[function(require,module,exports){
11070
+ },{"../../excecoes":107}],150:[function(require,module,exports){
10986
11071
  "use strict";
10987
11072
  Object.defineProperty(exports, "__esModule", { value: true });
10988
11073
  exports.ObjetoPadrao = void 0;
@@ -11016,7 +11101,7 @@ class ObjetoPadrao {
11016
11101
  }
11017
11102
  exports.ObjetoPadrao = ObjetoPadrao;
11018
11103
 
11019
- },{}],150:[function(require,module,exports){
11104
+ },{}],151:[function(require,module,exports){
11020
11105
  "use strict";
11021
11106
  Object.defineProperty(exports, "__esModule", { value: true });
11022
11107
  exports.ReferenciaMontao = void 0;
@@ -11041,7 +11126,7 @@ class ReferenciaMontao {
11041
11126
  }
11042
11127
  exports.ReferenciaMontao = ReferenciaMontao;
11043
11128
 
11044
- },{}],151:[function(require,module,exports){
11129
+ },{}],152:[function(require,module,exports){
11045
11130
  "use strict";
11046
11131
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
11047
11132
  if (k2 === undefined) k2 = k;
@@ -11061,7 +11146,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
11061
11146
  __exportStar(require("./interpretador"), exports);
11062
11147
  __exportStar(require("./interpretador-base"), exports);
11063
11148
 
11064
- },{"./interpretador":153,"./interpretador-base":152}],152:[function(require,module,exports){
11149
+ },{"./interpretador":154,"./interpretador-base":153}],153:[function(require,module,exports){
11065
11150
  (function (process){(function (){
11066
11151
  "use strict";
11067
11152
  var __importDefault = (this && this.__importDefault) || function (mod) {
@@ -11783,6 +11868,55 @@ class InterpretadorBase {
11783
11868
  }
11784
11869
  return retornoExecucao;
11785
11870
  }
11871
+ // TODO: Descobrir se mais algum dialeto, fora Delégua e Pituguês, usam isso.
11872
+ async visitarDeclaracaoParaCada(declaracao) {
11873
+ let retornoExecucao;
11874
+ // Posição atual precisa ser reiniciada, pois pode estar dentro de outro
11875
+ // laço de repetição.
11876
+ declaracao.posicaoAtual = 0;
11877
+ const vetorResolvido = await this.avaliar(declaracao.vetorOuDicionario);
11878
+ let valorVetorResolvido = this.resolverValor(vetorResolvido);
11879
+ // Se até aqui vetor resolvido é um dicionário, converte dicionário
11880
+ // para vetor de duplas.
11881
+ // TODO: Converter elementos para `Construto` se necessário.
11882
+ if (declaracao.vetorOuDicionario.tipo === 'dicionário') {
11883
+ valorVetorResolvido = Object.entries(valorVetorResolvido)
11884
+ .map(v => new construtos_1.Dupla(v[0], v[1]));
11885
+ }
11886
+ if (!Array.isArray(valorVetorResolvido)) {
11887
+ return Promise.reject("Variável ou literal provida em instrução 'para cada' não é um vetor.");
11888
+ }
11889
+ while (!(retornoExecucao && retornoExecucao.valorRetornado instanceof quebras_1.Quebra) &&
11890
+ declaracao.posicaoAtual < valorVetorResolvido.length) {
11891
+ try {
11892
+ if (declaracao.variavelIteracao instanceof construtos_1.Variavel) {
11893
+ this.pilhaEscoposExecucao.definirVariavel(declaracao.variavelIteracao.simbolo.lexema, valorVetorResolvido[declaracao.posicaoAtual]);
11894
+ }
11895
+ if (declaracao.variavelIteracao instanceof construtos_1.Dupla) {
11896
+ const valorComoDupla = valorVetorResolvido[declaracao.posicaoAtual];
11897
+ this.pilhaEscoposExecucao.definirVariavel(declaracao.variavelIteracao.primeiro.valor, valorComoDupla.primeiro);
11898
+ this.pilhaEscoposExecucao.definirVariavel(declaracao.variavelIteracao.segundo.valor, valorComoDupla.segundo);
11899
+ }
11900
+ retornoExecucao = await this.executar(declaracao.corpo);
11901
+ if (retornoExecucao && retornoExecucao.valorRetornado instanceof quebras_1.SustarQuebra) {
11902
+ return null;
11903
+ }
11904
+ if (retornoExecucao && retornoExecucao.valorRetornado instanceof quebras_1.ContinuarQuebra) {
11905
+ retornoExecucao = null;
11906
+ }
11907
+ declaracao.posicaoAtual++;
11908
+ }
11909
+ catch (erro) {
11910
+ this.erros.push({
11911
+ erroInterno: erro,
11912
+ linha: declaracao.linha,
11913
+ hashArquivo: declaracao.hashArquivo,
11914
+ });
11915
+ return Promise.reject(erro);
11916
+ }
11917
+ }
11918
+ return retornoExecucao;
11919
+ }
11786
11920
  /**
11787
11921
  * Executa uma expressão Se, que tem uma condição, pode ter um bloco
11788
11922
  * Senão, e múltiplos blocos Senão-se.
@@ -12529,7 +12663,7 @@ class InterpretadorBase {
12529
12663
  exports.InterpretadorBase = InterpretadorBase;
12530
12664
 
12531
12665
  }).call(this)}).call(this,require('_process'))
12532
- },{"../avaliador-sintatico":11,"../bibliotecas/primitivas-dicionario":20,"../construtos":49,"../excecoes":106,"../inferenciador":112,"../lexador":169,"../quebras":176,"../tipos-de-dados/delegua":177,"../tipos-de-dados/primitivos":179,"../tipos-de-simbolos/delegua":182,"./comum":138,"./espaco-memoria":139,"./estruturas":145,"./estruturas/metodo-primitiva":146,"./pilha-escopos-execucao":155,"_process":416,"browser-process-hrtime":362}],153:[function(require,module,exports){
12666
+ },{"../avaliador-sintatico":11,"../bibliotecas/primitivas-dicionario":20,"../construtos":49,"../excecoes":107,"../inferenciador":113,"../lexador":170,"../quebras":177,"../tipos-de-dados/delegua":178,"../tipos-de-dados/primitivos":180,"../tipos-de-simbolos/delegua":183,"./comum":139,"./espaco-memoria":140,"./estruturas":146,"./estruturas/metodo-primitiva":147,"./pilha-escopos-execucao":156,"_process":417,"browser-process-hrtime":363}],154:[function(require,module,exports){
12533
12667
  "use strict";
12534
12668
  var __importDefault = (this && this.__importDefault) || function (mod) {
12535
12669
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -12541,6 +12675,7 @@ const estruturas_1 = require("./estruturas");
12541
12675
  const interpretador_base_1 = require("./interpretador-base");
12542
12676
  const inferenciador_1 = require("../inferenciador");
12543
12677
  const excecoes_1 = require("../excecoes");
12678
+ const declaracoes_1 = require("../declaracoes");
12544
12679
  const quebras_1 = require("../quebras");
12545
12680
  const montao_1 = require("./montao");
12546
12681
  const primitivas_dicionario_1 = __importDefault(require("../bibliotecas/primitivas-dicionario"));
@@ -12645,7 +12780,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
12645
12780
  if (typeof valor === primitivos_1.default.BOOLEANO) {
12646
12781
  valor = valor ? 'verdadeiro' : 'falso';
12647
12782
  }
12648
- if (valor instanceof estruturas_1.ReferenciaMontao) {
12783
+ if (valor instanceof estruturas_1.ReferenciaMontao || ((valor === null || valor === void 0 ? void 0 : valor.hasOwnProperty) && (valor === null || valor === void 0 ? void 0 : valor.hasOwnProperty('tipo')))) {
12649
12784
  valor = this.resolverValor(valor);
12650
12785
  }
12651
12786
  objetoEscrita[propriedade] = valor;
@@ -13038,6 +13173,9 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
13038
13173
  // Objeto simples do JavaScript, ou dicionário de Delégua.
13039
13174
  if (objeto.constructor === Object) {
13040
13175
  if (expressao.simbolo.lexema in primitivas_dicionario_1.default) {
13176
+ if (!(expressao.simbolo.lexema in primitivas_numero_1.default)) {
13177
+ throw new excecoes_1.ErroEmTempoDeExecucao(expressao.simbolo, `Método de primitiva '${expressao.simbolo.lexema}' não existe para o tipo dicionário.`);
13178
+ }
13041
13179
  const metodoDePrimitivaDicionario = primitivas_dicionario_1.default[expressao.simbolo.lexema].implementacao;
13042
13180
  return new estruturas_1.MetodoPrimitiva(nomeObjeto, objeto, metodoDePrimitivaDicionario);
13043
13181
  }
@@ -13059,12 +13197,18 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
13059
13197
  case delegua_1.default.INTEIRO:
13060
13198
  case delegua_1.default.NUMERO:
13061
13199
  case delegua_1.default.NÚMERO:
13200
+ if (!(expressao.simbolo.lexema in primitivas_numero_1.default)) {
13201
+ throw new excecoes_1.ErroEmTempoDeExecucao(expressao.simbolo, `Método de primitiva '${expressao.simbolo.lexema}' não existe para o tipo ${tipoObjeto}.`);
13202
+ }
13062
13203
  const metodoDePrimitivaNumero = primitivas_numero_1.default[expressao.simbolo.lexema].implementacao;
13063
13204
  if (metodoDePrimitivaNumero) {
13064
13205
  return new estruturas_1.MetodoPrimitiva(nomeObjeto, objeto, metodoDePrimitivaNumero);
13065
13206
  }
13066
13207
  break;
13067
13208
  case delegua_1.default.TEXTO:
13209
+ if (!(expressao.simbolo.lexema in primitivas_texto_1.default)) {
13210
+ throw new excecoes_1.ErroEmTempoDeExecucao(expressao.simbolo, `Método de primitiva '${expressao.simbolo.lexema}' não existe para o tipo ${tipoObjeto}.`);
13211
+ }
13068
13212
  const metodoDePrimitivaTexto = primitivas_texto_1.default[expressao.simbolo.lexema].implementacao;
13069
13213
  if (metodoDePrimitivaTexto) {
13070
13214
  return new estruturas_1.MetodoPrimitiva(nomeObjeto, objeto, metodoDePrimitivaTexto);
@@ -13078,6 +13222,9 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
13078
13222
  case delegua_1.default.VETOR_NÚMERO:
13079
13223
  case delegua_1.default.VETOR_QUALQUER:
13080
13224
  case delegua_1.default.VETOR_TEXTO:
13225
+ if (!(expressao.simbolo.lexema in primitivas_vetor_1.default)) {
13226
+ throw new excecoes_1.ErroEmTempoDeExecucao(expressao.simbolo, `Método de primitiva '${expressao.simbolo.lexema}' não existe para o tipo ${tipoObjeto}.`);
13227
+ }
13081
13228
  const metodoDePrimitivaVetor = primitivas_vetor_1.default[expressao.simbolo.lexema].implementacao;
13082
13229
  if (metodoDePrimitivaVetor) {
13083
13230
  return new estruturas_1.MetodoPrimitiva(nomeObjeto, objeto, metodoDePrimitivaVetor);
@@ -13292,6 +13439,16 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
13292
13439
  visitarExpressaoFazer(expressao) {
13293
13440
  return this.logicaComumExecucaoFazer(expressao, true);
13294
13441
  }
13442
+ async visitarExpressaoListaCompreensao(listaCompreensao) {
13443
+ const vetorVariavelIteracao = await this.avaliar(listaCompreensao.referenciaVariavelIteracao);
13444
+ let valorVetorVariavelIteracao = this.resolverValor(vetorVariavelIteracao);
13445
+ if (!Array.isArray(valorVetorVariavelIteracao)) {
13446
+ return Promise.reject("Variável ou literal provida em instrução 'para cada' não é um vetor.");
13447
+ }
13448
+ const resultadoCompreensao = await this.avaliar(listaCompreensao.paraCada);
13449
+ const resultadoCompreensaoResolvido = resultadoCompreensao.valorRetornado.filter(r => r !== null).map(r => this.resolverValor(r));
13450
+ return resultadoCompreensaoResolvido;
13451
+ }
13295
13452
  visitarExpressaoParaCada(expressao) {
13296
13453
  return this.logicaComumExecucaoParaCada(expressao, true);
13297
13454
  }
@@ -13329,41 +13486,42 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
13329
13486
  }
13330
13487
  async visitarExpressaoTipoDe(expressao) {
13331
13488
  let valorTipoDe = expressao.valor;
13332
- switch (valorTipoDe.constructor.name) {
13333
- case 'AcessoIndiceVariavel':
13334
- case 'Agrupamento':
13335
- case 'Binario':
13336
- case 'Chamada':
13337
- case 'Dicionario':
13338
- case 'Unario':
13489
+ switch (valorTipoDe.constructor) {
13490
+ case construtos_1.AcessoIndiceVariavel:
13491
+ case construtos_1.Agrupamento:
13492
+ case construtos_1.Binario:
13493
+ case construtos_1.Chamada:
13494
+ case construtos_1.Dicionario:
13495
+ case construtos_1.Unario:
13339
13496
  valorTipoDe = await this.avaliar(valorTipoDe);
13340
13497
  if (valorTipoDe instanceof estruturas_1.ReferenciaMontao) {
13341
13498
  valorTipoDe = this.montao.obterReferencia(this.hashArquivoDeclaracaoAtual, this.linhaDeclaracaoAtual, valorTipoDe.endereco);
13342
13499
  }
13343
13500
  return valorTipoDe.tipo || (0, inferenciador_1.inferirTipoVariavel)(valorTipoDe);
13344
- case 'AcessoMetodo':
13501
+ case construtos_1.AcessoMetodo:
13345
13502
  const acessoMetodo = valorTipoDe;
13346
- return `método<${acessoMetodo.tipoRetornoMetodo}>`;
13347
- case 'AcessoPropriedade':
13503
+ const tipoRetornoMetodoResolvido = acessoMetodo.tipoRetornoMetodo.replace('<T>', acessoMetodo.objeto.tipo);
13504
+ return `método<${tipoRetornoMetodoResolvido}>`;
13505
+ case construtos_1.AcessoPropriedade:
13348
13506
  const acessoPropriedade = valorTipoDe;
13349
13507
  return acessoPropriedade.tipoRetornoPropriedade;
13350
- case 'AcessoMetodoOuPropriedade':
13508
+ case construtos_1.AcessoMetodoOuPropriedade:
13351
13509
  // TODO: Deve ser removido mais futuramente.
13352
13510
  // Apenas `AcessoMetodo` e `AcessoPropriedade` devem funcionar aqui.
13353
13511
  throw new excecoes_1.ErroEmTempoDeExecucao(expressao.simbolo, 'Não deveria cair aqui.');
13354
- case 'Escreva':
13512
+ case declaracoes_1.Escreva:
13355
13513
  return 'função<vazio>';
13356
- case 'Leia':
13514
+ case construtos_1.Leia:
13357
13515
  return 'função<texto>';
13358
- case 'Literal':
13516
+ case construtos_1.Literal:
13359
13517
  const tipoLiteral = valorTipoDe;
13360
13518
  return tipoLiteral.tipo;
13361
- case 'TipoDe':
13519
+ case construtos_1.TipoDe:
13362
13520
  const alvoTipoDe = await this.avaliar(valorTipoDe);
13363
13521
  return `tipo de<${alvoTipoDe}>`;
13364
- case 'Variavel':
13522
+ case construtos_1.Variavel:
13365
13523
  return valorTipoDe.tipo;
13366
- case 'Vetor':
13524
+ case construtos_1.Vetor:
13367
13525
  const vetor = valorTipoDe;
13368
13526
  const apenasValores = vetor.valores.filter((v) => !['ComentarioComoConstruto', 'Separador'].includes(v.constructor.name));
13369
13527
  return (0, inferenciador_1.inferirTipoVariavel)(apenasValores);
@@ -13445,7 +13603,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
13445
13603
  }
13446
13604
  exports.Interpretador = Interpretador;
13447
13605
 
13448
- },{"../bibliotecas/primitivas-dicionario":20,"../bibliotecas/primitivas-numero":21,"../bibliotecas/primitivas-texto":22,"../bibliotecas/primitivas-vetor":23,"../construtos":49,"../excecoes":106,"../inferenciador":112,"../quebras":176,"../tipos-de-dados/delegua":177,"../tipos-de-dados/primitivos":179,"./estruturas":145,"./interpretador-base":152,"./montao":154}],154:[function(require,module,exports){
13606
+ },{"../bibliotecas/primitivas-dicionario":20,"../bibliotecas/primitivas-numero":21,"../bibliotecas/primitivas-texto":22,"../bibliotecas/primitivas-vetor":23,"../construtos":49,"../declaracoes":94,"../excecoes":107,"../inferenciador":113,"../quebras":177,"../tipos-de-dados/delegua":178,"../tipos-de-dados/primitivos":180,"./estruturas":146,"./interpretador-base":153,"./montao":155}],155:[function(require,module,exports){
13449
13607
  "use strict";
13450
13608
  Object.defineProperty(exports, "__esModule", { value: true });
13451
13609
  exports.Montao = void 0;
@@ -13502,7 +13660,7 @@ class Montao {
13502
13660
  }
13503
13661
  exports.Montao = Montao;
13504
13662
 
13505
- },{"../excecoes":106,"../geracao-identificadores":110}],155:[function(require,module,exports){
13663
+ },{"../excecoes":107,"../geracao-identificadores":111}],156:[function(require,module,exports){
13506
13664
  "use strict";
13507
13665
  var __importDefault = (this && this.__importDefault) || function (mod) {
13508
13666
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -13790,7 +13948,7 @@ class PilhaEscoposExecucao {
13790
13948
  }
13791
13949
  exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
13792
13950
 
13793
- },{"../excecoes":106,"../inferenciador":112,"../lexador":169,"../tipos-de-dados/delegua":177,"./estruturas":145}],156:[function(require,module,exports){
13951
+ },{"../excecoes":107,"../inferenciador":113,"../lexador":170,"../tipos-de-dados/delegua":178,"./estruturas":146}],157:[function(require,module,exports){
13794
13952
  "use strict";
13795
13953
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
13796
13954
  if (k2 === undefined) k2 = k;
@@ -13814,7 +13972,7 @@ __exportStar(require("./lexador-guarani"), exports);
13814
13972
  __exportStar(require("./lexador-portugol-ipt"), exports);
13815
13973
  __exportStar(require("./lexador-tenda"), exports);
13816
13974
 
13817
- },{"./lexador-calango":157,"./lexador-egua-classico":158,"./lexador-guarani":159,"./lexador-pitugues":160,"./lexador-portugol-ipt":161,"./lexador-tenda":162}],157:[function(require,module,exports){
13975
+ },{"./lexador-calango":158,"./lexador-egua-classico":159,"./lexador-guarani":160,"./lexador-pitugues":161,"./lexador-portugol-ipt":162,"./lexador-tenda":163}],158:[function(require,module,exports){
13818
13976
  "use strict";
13819
13977
  var __importDefault = (this && this.__importDefault) || function (mod) {
13820
13978
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14047,7 +14205,7 @@ class LexadorCalango {
14047
14205
  }
14048
14206
  exports.LexadorCalango = LexadorCalango;
14049
14207
 
14050
- },{"../../tipos-de-simbolos/calango":180,"../simbolo":175,"./palavras-reservadas/calango":163}],158:[function(require,module,exports){
14208
+ },{"../../tipos-de-simbolos/calango":181,"../simbolo":176,"./palavras-reservadas/calango":164}],159:[function(require,module,exports){
14051
14209
  "use strict";
14052
14210
  var __importDefault = (this && this.__importDefault) || function (mod) {
14053
14211
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14337,7 +14495,7 @@ class LexadorEguaClassico {
14337
14495
  }
14338
14496
  exports.LexadorEguaClassico = LexadorEguaClassico;
14339
14497
 
14340
- },{"../../tipos-de-simbolos/egua-classico":183,"../simbolo":175,"./palavras-reservadas/egua-classico":164}],159:[function(require,module,exports){
14498
+ },{"../../tipos-de-simbolos/egua-classico":184,"../simbolo":176,"./palavras-reservadas/egua-classico":165}],160:[function(require,module,exports){
14341
14499
  "use strict";
14342
14500
  var __importDefault = (this && this.__importDefault) || function (mod) {
14343
14501
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14456,7 +14614,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
14456
14614
  }
14457
14615
  exports.LexadorGuarani = LexadorGuarani;
14458
14616
 
14459
- },{"../../tipos-de-simbolos/guarani":184,"../lexador-base":171,"./palavras-reservadas/guarani":165}],160:[function(require,module,exports){
14617
+ },{"../../tipos-de-simbolos/guarani":185,"../lexador-base":172,"./palavras-reservadas/guarani":166}],161:[function(require,module,exports){
14460
14618
  "use strict";
14461
14619
  var __importDefault = (this && this.__importDefault) || function (mod) {
14462
14620
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14636,6 +14794,17 @@ class LexadorPitugues {
14636
14794
  espacosIndentacao: espacos,
14637
14795
  };
14638
14796
  }
14797
+ comentarioUmaLinha() {
14798
+ this.avancar();
14799
+ const linhaAtual = this.linha;
14800
+ let ultimoAtual = this.atual;
14801
+ while (linhaAtual === this.linha && !this.eFinalDoCodigo()) {
14802
+ ultimoAtual = this.atual;
14803
+ this.avancar();
14804
+ }
14805
+ const conteudo = this.codigo[linhaAtual].substring(this.inicioSimbolo + 2, ultimoAtual);
14806
+ this.adicionarSimbolo(pitugues_2.default.COMENTARIO, conteudo.trim());
14807
+ }
14639
14808
  avancarParaProximaLinha() {
14640
14809
  this.linha++;
14641
14810
  this.atual = 0;
@@ -14665,7 +14834,7 @@ class LexadorPitugues {
14665
14834
  }
14666
14835
  break;
14667
14836
  case '#':
14668
- this.avancarParaProximaLinha();
14837
+ this.comentarioUmaLinha();
14669
14838
  break;
14670
14839
  case '[':
14671
14840
  this.adicionarSimbolo(pitugues_2.default.COLCHETE_ESQUERDO);
@@ -14863,7 +15032,7 @@ class LexadorPitugues {
14863
15032
  }
14864
15033
  exports.LexadorPitugues = LexadorPitugues;
14865
15034
 
14866
- },{"../../tipos-de-simbolos/pitugues":186,"../simbolo":175,"./palavras-reservadas/pitugues":166,"browser-process-hrtime":362}],161:[function(require,module,exports){
15035
+ },{"../../tipos-de-simbolos/pitugues":187,"../simbolo":176,"./palavras-reservadas/pitugues":167,"browser-process-hrtime":363}],162:[function(require,module,exports){
14867
15036
  "use strict";
14868
15037
  var __importDefault = (this && this.__importDefault) || function (mod) {
14869
15038
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15115,7 +15284,7 @@ class LexadorPortugolIpt {
15115
15284
  }
15116
15285
  exports.LexadorPortugolIpt = LexadorPortugolIpt;
15117
15286
 
15118
- },{"../../tipos-de-simbolos/portugol-ipt":187,"../simbolo":175,"./palavras-reservadas/portugol-ipt":167}],162:[function(require,module,exports){
15287
+ },{"../../tipos-de-simbolos/portugol-ipt":188,"../simbolo":176,"./palavras-reservadas/portugol-ipt":168}],163:[function(require,module,exports){
15119
15288
  "use strict";
15120
15289
  var __importDefault = (this && this.__importDefault) || function (mod) {
15121
15290
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15506,7 +15675,7 @@ class LexadorTenda {
15506
15675
  }
15507
15676
  exports.LexadorTenda = LexadorTenda;
15508
15677
 
15509
- },{"../../tipos-de-simbolos/tenda":188,"../simbolo":175,"./palavras-reservadas/tenda":168,"browser-process-hrtime":362}],163:[function(require,module,exports){
15678
+ },{"../../tipos-de-simbolos/tenda":189,"../simbolo":176,"./palavras-reservadas/tenda":169,"browser-process-hrtime":363}],164:[function(require,module,exports){
15510
15679
  "use strict";
15511
15680
  var __importDefault = (this && this.__importDefault) || function (mod) {
15512
15681
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15527,7 +15696,7 @@ exports.default = {
15527
15696
  fimSe: calango_1.default.FIM_SE,
15528
15697
  };
15529
15698
 
15530
- },{"../../../tipos-de-simbolos/calango":180}],164:[function(require,module,exports){
15699
+ },{"../../../tipos-de-simbolos/calango":181}],165:[function(require,module,exports){
15531
15700
  "use strict";
15532
15701
  var __importDefault = (this && this.__importDefault) || function (mod) {
15533
15702
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15568,7 +15737,7 @@ exports.palavrasReservadas = {
15568
15737
  verdadeiro: egua_classico_1.default.VERDADEIRO,
15569
15738
  };
15570
15739
 
15571
- },{"../../../tipos-de-simbolos/egua-classico":183}],165:[function(require,module,exports){
15740
+ },{"../../../tipos-de-simbolos/egua-classico":184}],166:[function(require,module,exports){
15572
15741
  "use strict";
15573
15742
  var __importDefault = (this && this.__importDefault) || function (mod) {
15574
15743
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15580,7 +15749,7 @@ exports.palavrasReservadas = {
15580
15749
  hai: guarani_1.default.HAI,
15581
15750
  };
15582
15751
 
15583
- },{"../../../tipos-de-simbolos/guarani":184}],166:[function(require,module,exports){
15752
+ },{"../../../tipos-de-simbolos/guarani":185}],167:[function(require,module,exports){
15584
15753
  "use strict";
15585
15754
  var __importDefault = (this && this.__importDefault) || function (mod) {
15586
15755
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15616,6 +15785,7 @@ exports.palavrasReservadas = {
15616
15785
  padrao: pitugues_1.default.PADRAO,
15617
15786
  para: pitugues_1.default.PARA,
15618
15787
  pegue: pitugues_1.default.PEGUE,
15788
+ quebrar: pitugues_1.default.QUEBRAR,
15619
15789
  retorna: pitugues_1.default.RETORNA,
15620
15790
  se: pitugues_1.default.SE,
15621
15791
  senao: pitugues_1.default.SENAO,
@@ -15639,7 +15809,7 @@ exports.palavrasReservadasMicroGramatica = {
15639
15809
  verdadeiro: pitugues_1.default.VERDADEIRO,
15640
15810
  };
15641
15811
 
15642
- },{"../../../tipos-de-simbolos/pitugues":186}],167:[function(require,module,exports){
15812
+ },{"../../../tipos-de-simbolos/pitugues":187}],168:[function(require,module,exports){
15643
15813
  "use strict";
15644
15814
  var __importDefault = (this && this.__importDefault) || function (mod) {
15645
15815
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15661,7 +15831,7 @@ exports.palavrasReservadas = {
15661
15831
  senão: portugol_ipt_1.default.SENAO,
15662
15832
  };
15663
15833
 
15664
- },{"../../../tipos-de-simbolos/portugol-ipt":187}],168:[function(require,module,exports){
15834
+ },{"../../../tipos-de-simbolos/portugol-ipt":188}],169:[function(require,module,exports){
15665
15835
  "use strict";
15666
15836
  var __importDefault = (this && this.__importDefault) || function (mod) {
15667
15837
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15719,7 +15889,7 @@ exports.palavrasReservadas = {
15719
15889
  Texto: tenda_1.default.BIBLIOTECA_GLOBAL,
15720
15890
  };
15721
15891
 
15722
- },{"../../../tipos-de-simbolos/tenda":188}],169:[function(require,module,exports){
15892
+ },{"../../../tipos-de-simbolos/tenda":189}],170:[function(require,module,exports){
15723
15893
  "use strict";
15724
15894
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
15725
15895
  if (k2 === undefined) k2 = k;
@@ -15742,7 +15912,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
15742
15912
  __exportStar(require("./micro-lexador"), exports);
15743
15913
  __exportStar(require("./simbolo"), exports);
15744
15914
 
15745
- },{"./dialetos":156,"./lexador":172,"./lexador-base-linha-unica":170,"./micro-lexador":173,"./simbolo":175}],170:[function(require,module,exports){
15915
+ },{"./dialetos":157,"./lexador":173,"./lexador-base-linha-unica":171,"./micro-lexador":174,"./simbolo":176}],171:[function(require,module,exports){
15746
15916
  "use strict";
15747
15917
  Object.defineProperty(exports, "__esModule", { value: true });
15748
15918
  exports.LexadorBaseLinhaUnica = void 0;
@@ -15826,7 +15996,7 @@ class LexadorBaseLinhaUnica {
15826
15996
  }
15827
15997
  exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
15828
15998
 
15829
- },{"./simbolo":175}],171:[function(require,module,exports){
15999
+ },{"./simbolo":176}],172:[function(require,module,exports){
15830
16000
  "use strict";
15831
16001
  Object.defineProperty(exports, "__esModule", { value: true });
15832
16002
  exports.LexadorBase = void 0;
@@ -15940,7 +16110,7 @@ class LexadorBase {
15940
16110
  }
15941
16111
  exports.LexadorBase = LexadorBase;
15942
16112
 
15943
- },{"./simbolo":175}],172:[function(require,module,exports){
16113
+ },{"./simbolo":176}],173:[function(require,module,exports){
15944
16114
  "use strict";
15945
16115
  var __importDefault = (this && this.__importDefault) || function (mod) {
15946
16116
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16401,7 +16571,7 @@ class Lexador {
16401
16571
  }
16402
16572
  exports.Lexador = Lexador;
16403
16573
 
16404
- },{"../tipos-de-simbolos/delegua":182,"./palavras-reservadas":174,"./simbolo":175,"browser-process-hrtime":362}],173:[function(require,module,exports){
16574
+ },{"../tipos-de-simbolos/delegua":183,"./palavras-reservadas":175,"./simbolo":176,"browser-process-hrtime":363}],174:[function(require,module,exports){
16405
16575
  "use strict";
16406
16576
  var __importDefault = (this && this.__importDefault) || function (mod) {
16407
16577
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16624,7 +16794,7 @@ class MicroLexador {
16624
16794
  }
16625
16795
  exports.MicroLexador = MicroLexador;
16626
16796
 
16627
- },{"../tipos-de-simbolos/microgramaticas/delegua":185,"./palavras-reservadas":174,"./simbolo":175}],174:[function(require,module,exports){
16797
+ },{"../tipos-de-simbolos/microgramaticas/delegua":186,"./palavras-reservadas":175,"./simbolo":176}],175:[function(require,module,exports){
16628
16798
  "use strict";
16629
16799
  var __importDefault = (this && this.__importDefault) || function (mod) {
16630
16800
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16665,6 +16835,7 @@ exports.palavrasReservadas = {
16665
16835
  para: delegua_1.default.PARA,
16666
16836
  pausa: delegua_1.default.PAUSA,
16667
16837
  pegue: delegua_1.default.PEGUE,
16838
+ quebrar: delegua_1.default.QUEBRAR,
16668
16839
  retorna: delegua_1.default.RETORNA,
16669
16840
  se: delegua_1.default.SE,
16670
16841
  senao: delegua_1.default.SENAO,
@@ -16688,7 +16859,7 @@ exports.palavrasReservadasMicroGramatica = {
16688
16859
  verdadeiro: delegua_1.default.VERDADEIRO,
16689
16860
  };
16690
16861
 
16691
- },{"../tipos-de-simbolos/delegua":182}],175:[function(require,module,exports){
16862
+ },{"../tipos-de-simbolos/delegua":183}],176:[function(require,module,exports){
16692
16863
  "use strict";
16693
16864
  Object.defineProperty(exports, "__esModule", { value: true });
16694
16865
  exports.Simbolo = void 0;
@@ -16706,7 +16877,7 @@ class Simbolo {
16706
16877
  }
16707
16878
  exports.Simbolo = Simbolo;
16708
16879
 
16709
- },{}],176:[function(require,module,exports){
16880
+ },{}],177:[function(require,module,exports){
16710
16881
  "use strict";
16711
16882
  Object.defineProperty(exports, "__esModule", { value: true });
16712
16883
  exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
@@ -16731,7 +16902,7 @@ class ContinuarQuebra extends Quebra {
16731
16902
  }
16732
16903
  exports.ContinuarQuebra = ContinuarQuebra;
16733
16904
 
16734
- },{}],177:[function(require,module,exports){
16905
+ },{}],178:[function(require,module,exports){
16735
16906
  "use strict";
16736
16907
  Object.defineProperty(exports, "__esModule", { value: true });
16737
16908
  exports.default = {
@@ -16761,7 +16932,7 @@ exports.default = {
16761
16932
  VETOR_TEXTO: 'texto[]',
16762
16933
  };
16763
16934
 
16764
- },{}],178:[function(require,module,exports){
16935
+ },{}],179:[function(require,module,exports){
16765
16936
  "use strict";
16766
16937
  Object.defineProperty(exports, "__esModule", { value: true });
16767
16938
  exports.default = {
@@ -16791,7 +16962,7 @@ exports.default = {
16791
16962
  VETOR_TEXTO: 'texto[]',
16792
16963
  };
16793
16964
 
16794
- },{}],179:[function(require,module,exports){
16965
+ },{}],180:[function(require,module,exports){
16795
16966
  "use strict";
16796
16967
  Object.defineProperty(exports, "__esModule", { value: true });
16797
16968
  exports.default = {
@@ -16810,7 +16981,7 @@ exports.default = {
16810
16981
  TEXTO: 'string',
16811
16982
  };
16812
16983
 
16813
- },{}],180:[function(require,module,exports){
16984
+ },{}],181:[function(require,module,exports){
16814
16985
  "use strict";
16815
16986
  Object.defineProperty(exports, "__esModule", { value: true });
16816
16987
  exports.default = {
@@ -16854,7 +17025,7 @@ exports.default = {
16854
17025
  VIRGULA: 'VIRGULA',
16855
17026
  };
16856
17027
 
16857
- },{}],181:[function(require,module,exports){
17028
+ },{}],182:[function(require,module,exports){
16858
17029
  "use strict";
16859
17030
  Object.defineProperty(exports, "__esModule", { value: true });
16860
17031
  exports.default = {
@@ -16880,7 +17051,7 @@ exports.default = {
16880
17051
  VIRGULA: 'VIRGULA',
16881
17052
  };
16882
17053
 
16883
- },{}],182:[function(require,module,exports){
17054
+ },{}],183:[function(require,module,exports){
16884
17055
  "use strict";
16885
17056
  Object.defineProperty(exports, "__esModule", { value: true });
16886
17057
  exports.default = {
@@ -16959,6 +17130,7 @@ exports.default = {
16959
17130
  PEGUE: 'PEGUE',
16960
17131
  PONTO: 'PONTO',
16961
17132
  PONTO_E_VIRGULA: 'PONTO_E_VIRGULA',
17133
+ QUEBRAR: 'QUEBRAR',
16962
17134
  RETORNA: 'RETORNA',
16963
17135
  SUBTRACAO: 'SUBTRACAO',
16964
17136
  SE: 'SE',
@@ -16975,7 +17147,7 @@ exports.default = {
16975
17147
  VIRGULA: 'VIRGULA',
16976
17148
  };
16977
17149
 
16978
- },{}],183:[function(require,module,exports){
17150
+ },{}],184:[function(require,module,exports){
16979
17151
  "use strict";
16980
17152
  Object.defineProperty(exports, "__esModule", { value: true });
16981
17153
  exports.default = {
@@ -17053,7 +17225,7 @@ exports.default = {
17053
17225
  VIRGULA: 'VIRGULA',
17054
17226
  };
17055
17227
 
17056
- },{}],184:[function(require,module,exports){
17228
+ },{}],185:[function(require,module,exports){
17057
17229
  "use strict";
17058
17230
  Object.defineProperty(exports, "__esModule", { value: true });
17059
17231
  exports.default = {
@@ -17070,7 +17242,7 @@ exports.default = {
17070
17242
  VIRGULA: 'VIRGULA',
17071
17243
  };
17072
17244
 
17073
- },{}],185:[function(require,module,exports){
17245
+ },{}],186:[function(require,module,exports){
17074
17246
  "use strict";
17075
17247
  Object.defineProperty(exports, "__esModule", { value: true });
17076
17248
  exports.default = {
@@ -17119,7 +17291,7 @@ exports.default = {
17119
17291
  VIRGULA: 'VIRGULA',
17120
17292
  };
17121
17293
 
17122
- },{}],186:[function(require,module,exports){
17294
+ },{}],187:[function(require,module,exports){
17123
17295
  "use strict";
17124
17296
  Object.defineProperty(exports, "__esModule", { value: true });
17125
17297
  exports.default = {
@@ -17135,6 +17307,7 @@ exports.default = {
17135
17307
  CLASSE: 'CLASSE',
17136
17308
  COLCHETE_DIREITO: 'COLCHETE_DIREITO',
17137
17309
  COLCHETE_ESQUERDO: 'COLCHETE_ESQUERDO',
17310
+ COMENTARIO: 'COMENTARIO',
17138
17311
  COMO: 'COMO',
17139
17312
  CONSTRUTOR: 'CONSTRUTOR',
17140
17313
  CONTINUA: 'CONTINUA',
@@ -17184,6 +17357,7 @@ exports.default = {
17184
17357
  PEGUE: 'PEGUE',
17185
17358
  PONTO: 'PONTO',
17186
17359
  PONTO_E_VIRGULA: 'PONTO_E_VIRGULA',
17360
+ QUEBRAR: 'QUEBRAR',
17187
17361
  RETORNA: 'RETORNA',
17188
17362
  SUBTRACAO: 'SUBTRACAO',
17189
17363
  SE: 'SE',
@@ -17201,7 +17375,7 @@ exports.default = {
17201
17375
  VIRGULA: 'VIRGULA',
17202
17376
  };
17203
17377
 
17204
- },{}],187:[function(require,module,exports){
17378
+ },{}],188:[function(require,module,exports){
17205
17379
  "use strict";
17206
17380
  Object.defineProperty(exports, "__esModule", { value: true });
17207
17381
  exports.default = {
@@ -17240,7 +17414,7 @@ exports.default = {
17240
17414
  VIRGULA: 'VIRGULA',
17241
17415
  };
17242
17416
 
17243
- },{}],188:[function(require,module,exports){
17417
+ },{}],189:[function(require,module,exports){
17244
17418
  "use strict";
17245
17419
  Object.defineProperty(exports, "__esModule", { value: true });
17246
17420
  // Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
@@ -17335,7 +17509,7 @@ exports.default = {
17335
17509
  VIRGULA: 'VIRGULA',
17336
17510
  };
17337
17511
 
17338
- },{}],189:[function(require,module,exports){
17512
+ },{}],190:[function(require,module,exports){
17339
17513
  "use strict";
17340
17514
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
17341
17515
  if (k2 === undefined) k2 = k;
@@ -17362,7 +17536,7 @@ __exportStar(require("./tradutor-reverso-javascript"), exports);
17362
17536
  __exportStar(require("./tradutor-reverso-python"), exports);
17363
17537
  __exportStar(require("./tradutor-reverso-tenda"), exports);
17364
17538
 
17365
- },{"./tradutor-assemblyscript":192,"./tradutor-calango":193,"./tradutor-javascript":194,"./tradutor-mermaidjs":195,"./tradutor-portugol-ipt":196,"./tradutor-python":197,"./tradutor-reverso-javascript":198,"./tradutor-reverso-python":199,"./tradutor-reverso-tenda":200}],190:[function(require,module,exports){
17539
+ },{"./tradutor-assemblyscript":193,"./tradutor-calango":194,"./tradutor-javascript":195,"./tradutor-mermaidjs":196,"./tradutor-portugol-ipt":197,"./tradutor-python":198,"./tradutor-reverso-javascript":199,"./tradutor-reverso-python":200,"./tradutor-reverso-tenda":201}],191:[function(require,module,exports){
17366
17540
  "use strict";
17367
17541
  // Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
17368
17542
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -18602,7 +18776,7 @@ __decorate([
18602
18776
  Decorators_1.Override
18603
18777
  ], Python3Lexer.prototype, "nextToken", null);
18604
18778
 
18605
- },{"./python3-parser":191,"antlr4ts/CommonToken":210,"antlr4ts/Decorators":214,"antlr4ts/Lexer":222,"antlr4ts/Token":239,"antlr4ts/VocabularyImpl":245,"antlr4ts/atn/ATNDeserializer":251,"antlr4ts/atn/LexerATNSimulator":272,"antlr4ts/misc/Utils":333}],191:[function(require,module,exports){
18779
+ },{"./python3-parser":192,"antlr4ts/CommonToken":211,"antlr4ts/Decorators":215,"antlr4ts/Lexer":223,"antlr4ts/Token":240,"antlr4ts/VocabularyImpl":246,"antlr4ts/atn/ATNDeserializer":252,"antlr4ts/atn/LexerATNSimulator":273,"antlr4ts/misc/Utils":334}],192:[function(require,module,exports){
18606
18780
  "use strict";
18607
18781
  // Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
18608
18782
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -29849,7 +30023,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
29849
30023
  }
29850
30024
  exports.Yield_argContext = Yield_argContext;
29851
30025
 
29852
- },{"antlr4ts/FailedPredicateException":218,"antlr4ts/NoViableAltException":226,"antlr4ts/Parser":227,"antlr4ts/ParserRuleContext":230,"antlr4ts/RecognitionException":233,"antlr4ts/Token":239,"antlr4ts/VocabularyImpl":245,"antlr4ts/atn/ATN":247,"antlr4ts/atn/ATNDeserializer":251,"antlr4ts/atn/ParserATNSimulator":288,"antlr4ts/misc/Utils":333}],192:[function(require,module,exports){
30026
+ },{"antlr4ts/FailedPredicateException":219,"antlr4ts/NoViableAltException":227,"antlr4ts/Parser":228,"antlr4ts/ParserRuleContext":231,"antlr4ts/RecognitionException":234,"antlr4ts/Token":240,"antlr4ts/VocabularyImpl":246,"antlr4ts/atn/ATN":248,"antlr4ts/atn/ATNDeserializer":252,"antlr4ts/atn/ParserATNSimulator":289,"antlr4ts/misc/Utils":334}],193:[function(require,module,exports){
29853
30027
  "use strict";
29854
30028
  var __importDefault = (this && this.__importDefault) || function (mod) {
29855
30029
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -30484,7 +30658,7 @@ class TradutorAssemblyScript {
30484
30658
  }
30485
30659
  exports.TradutorAssemblyScript = TradutorAssemblyScript;
30486
30660
 
30487
- },{"../construtos":49,"../declaracoes":93,"../tipos-de-simbolos/delegua":182}],193:[function(require,module,exports){
30661
+ },{"../construtos":49,"../declaracoes":94,"../tipos-de-simbolos/delegua":183}],194:[function(require,module,exports){
30488
30662
  "use strict";
30489
30663
  Object.defineProperty(exports, "__esModule", { value: true });
30490
30664
  exports.TradutorCalango = void 0;
@@ -30546,7 +30720,7 @@ class TradutorCalango {
30546
30720
  }
30547
30721
  exports.TradutorCalango = TradutorCalango;
30548
30722
 
30549
- },{"../lexador/dialetos":156}],194:[function(require,module,exports){
30723
+ },{"../lexador/dialetos":157}],195:[function(require,module,exports){
30550
30724
  "use strict";
30551
30725
  var __importDefault = (this && this.__importDefault) || function (mod) {
30552
30726
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -31290,7 +31464,7 @@ class TradutorJavaScript {
31290
31464
  }
31291
31465
  exports.TradutorJavaScript = TradutorJavaScript;
31292
31466
 
31293
- },{"../construtos":49,"../declaracoes":93,"../tipos-de-simbolos/delegua":182}],195:[function(require,module,exports){
31467
+ },{"../construtos":49,"../declaracoes":94,"../tipos-de-simbolos/delegua":183}],196:[function(require,module,exports){
31294
31468
  "use strict";
31295
31469
  var __importDefault = (this && this.__importDefault) || function (mod) {
31296
31470
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -31744,7 +31918,7 @@ class TradutorMermaidJs {
31744
31918
  }
31745
31919
  exports.TradutorMermaidJs = TradutorMermaidJs;
31746
31920
 
31747
- },{"../tipos-de-simbolos/delegua":182}],196:[function(require,module,exports){
31921
+ },{"../tipos-de-simbolos/delegua":183}],197:[function(require,module,exports){
31748
31922
  "use strict";
31749
31923
  Object.defineProperty(exports, "__esModule", { value: true });
31750
31924
  exports.TradutorPortugolIpt = void 0;
@@ -31806,7 +31980,7 @@ class TradutorPortugolIpt {
31806
31980
  }
31807
31981
  exports.TradutorPortugolIpt = TradutorPortugolIpt;
31808
31982
 
31809
- },{"../avaliador-sintatico/dialetos":8,"../lexador/dialetos":156}],197:[function(require,module,exports){
31983
+ },{"../avaliador-sintatico/dialetos":8,"../lexador/dialetos":157}],198:[function(require,module,exports){
31810
31984
  "use strict";
31811
31985
  var __importDefault = (this && this.__importDefault) || function (mod) {
31812
31986
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -32448,7 +32622,7 @@ class TradutorPython {
32448
32622
  }
32449
32623
  exports.TradutorPython = TradutorPython;
32450
32624
 
32451
- },{"../construtos":49,"../declaracoes":93,"../tipos-de-simbolos/delegua":182}],198:[function(require,module,exports){
32625
+ },{"../construtos":49,"../declaracoes":94,"../tipos-de-simbolos/delegua":183}],199:[function(require,module,exports){
32452
32626
  "use strict";
32453
32627
  Object.defineProperty(exports, "__esModule", { value: true });
32454
32628
  exports.TradutorReversoJavaScript = void 0;
@@ -32845,7 +33019,7 @@ class TradutorReversoJavaScript {
32845
33019
  }
32846
33020
  exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
32847
33021
 
32848
- },{}],199:[function(require,module,exports){
33022
+ },{}],200:[function(require,module,exports){
32849
33023
  "use strict";
32850
33024
  Object.defineProperty(exports, "__esModule", { value: true });
32851
33025
  exports.TradutorReversoPython = void 0;
@@ -32918,7 +33092,7 @@ class TradutorReversoPython {
32918
33092
  }
32919
33093
  exports.TradutorReversoPython = TradutorReversoPython;
32920
33094
 
32921
- },{"./python/python3-lexer":190,"./python/python3-parser":191,"antlr4ts":316,"antlr4ts/tree/ParseTreeWalker":335}],200:[function(require,module,exports){
33095
+ },{"./python/python3-lexer":191,"./python/python3-parser":192,"antlr4ts":317,"antlr4ts/tree/ParseTreeWalker":336}],201:[function(require,module,exports){
32922
33096
  "use strict";
32923
33097
  var __importDefault = (this && this.__importDefault) || function (mod) {
32924
33098
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -33512,7 +33686,7 @@ class TradutorReversoTenda {
33512
33686
  }
33513
33687
  exports.TradutorReversoTenda = TradutorReversoTenda;
33514
33688
 
33515
- },{"../construtos":49,"../tipos-de-simbolos/tenda":188}],201:[function(require,module,exports){
33689
+ },{"../construtos":49,"../tipos-de-simbolos/tenda":189}],202:[function(require,module,exports){
33516
33690
  "use strict";
33517
33691
  /*!
33518
33692
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33520,7 +33694,7 @@ exports.TradutorReversoTenda = TradutorReversoTenda;
33520
33694
  */
33521
33695
  Object.defineProperty(exports, "__esModule", { value: true });
33522
33696
 
33523
- },{}],202:[function(require,module,exports){
33697
+ },{}],203:[function(require,module,exports){
33524
33698
  "use strict";
33525
33699
  /*!
33526
33700
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33528,7 +33702,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
33528
33702
  */
33529
33703
  Object.defineProperty(exports, "__esModule", { value: true });
33530
33704
 
33531
- },{}],203:[function(require,module,exports){
33705
+ },{}],204:[function(require,module,exports){
33532
33706
  "use strict";
33533
33707
  /*!
33534
33708
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33690,7 +33864,7 @@ __decorate([
33690
33864
  ], ANTLRInputStream.prototype, "toString", null);
33691
33865
  exports.ANTLRInputStream = ANTLRInputStream;
33692
33866
 
33693
- },{"./Decorators":214,"./IntStream":220,"assert":357}],204:[function(require,module,exports){
33867
+ },{"./Decorators":215,"./IntStream":221,"assert":358}],205:[function(require,module,exports){
33694
33868
  "use strict";
33695
33869
  /*!
33696
33870
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33773,7 +33947,7 @@ __decorate([
33773
33947
  ], BailErrorStrategy.prototype, "sync", null);
33774
33948
  exports.BailErrorStrategy = BailErrorStrategy;
33775
33949
 
33776
- },{"./Decorators":214,"./DefaultErrorStrategy":215,"./InputMismatchException":219,"./misc/ParseCancellationException":331}],205:[function(require,module,exports){
33950
+ },{"./Decorators":215,"./DefaultErrorStrategy":216,"./InputMismatchException":220,"./misc/ParseCancellationException":332}],206:[function(require,module,exports){
33777
33951
  "use strict";
33778
33952
  /*!
33779
33953
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34263,7 +34437,7 @@ BufferedTokenStream = __decorate([
34263
34437
  ], BufferedTokenStream);
34264
34438
  exports.BufferedTokenStream = BufferedTokenStream;
34265
34439
 
34266
- },{"./CommonToken":210,"./Decorators":214,"./Lexer":222,"./Token":239,"./misc/Interval":326,"assert":357}],206:[function(require,module,exports){
34440
+ },{"./CommonToken":211,"./Decorators":215,"./Lexer":223,"./Token":240,"./misc/Interval":327,"assert":358}],207:[function(require,module,exports){
34267
34441
  "use strict";
34268
34442
  /*!
34269
34443
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34271,7 +34445,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
34271
34445
  */
34272
34446
  Object.defineProperty(exports, "__esModule", { value: true });
34273
34447
 
34274
- },{}],207:[function(require,module,exports){
34448
+ },{}],208:[function(require,module,exports){
34275
34449
  "use strict";
34276
34450
  /*!
34277
34451
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34405,7 +34579,7 @@ var CharStreams;
34405
34579
  // }
34406
34580
  })(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
34407
34581
 
34408
- },{"./CodePointBuffer":208,"./CodePointCharStream":209,"./IntStream":220}],208:[function(require,module,exports){
34582
+ },{"./CodePointBuffer":209,"./CodePointCharStream":210,"./IntStream":221}],209:[function(require,module,exports){
34409
34583
  "use strict";
34410
34584
  /*!
34411
34585
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34640,7 +34814,7 @@ exports.CodePointBuffer = CodePointBuffer;
34640
34814
  CodePointBuffer.Builder = Builder;
34641
34815
  })(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
34642
34816
 
34643
- },{"./misc/Character":322,"assert":357}],209:[function(require,module,exports){
34817
+ },{"./misc/Character":323,"assert":358}],210:[function(require,module,exports){
34644
34818
  "use strict";
34645
34819
  /*!
34646
34820
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34790,7 +34964,7 @@ __decorate([
34790
34964
  ], CodePointCharStream.prototype, "getText", null);
34791
34965
  exports.CodePointCharStream = CodePointCharStream;
34792
34966
 
34793
- },{"./Decorators":214,"./IntStream":220,"./misc/Interval":326,"assert":357}],210:[function(require,module,exports){
34967
+ },{"./Decorators":215,"./IntStream":221,"./misc/Interval":327,"assert":358}],211:[function(require,module,exports){
34794
34968
  "use strict";
34795
34969
  /*!
34796
34970
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35020,7 +35194,7 @@ CommonToken = __decorate([
35020
35194
  ], CommonToken);
35021
35195
  exports.CommonToken = CommonToken;
35022
35196
 
35023
- },{"./Decorators":214,"./Token":239,"./misc/Interval":326}],211:[function(require,module,exports){
35197
+ },{"./Decorators":215,"./Token":240,"./misc/Interval":327}],212:[function(require,module,exports){
35024
35198
  "use strict";
35025
35199
  /*!
35026
35200
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35084,7 +35258,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
35084
35258
  CommonTokenFactory.DEFAULT = new CommonTokenFactory();
35085
35259
  })(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
35086
35260
 
35087
- },{"./CommonToken":210,"./Decorators":214,"./misc/Interval":326}],212:[function(require,module,exports){
35261
+ },{"./CommonToken":211,"./Decorators":215,"./misc/Interval":327}],213:[function(require,module,exports){
35088
35262
  "use strict";
35089
35263
  /*!
35090
35264
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35211,7 +35385,7 @@ CommonTokenStream = __decorate([
35211
35385
  ], CommonTokenStream);
35212
35386
  exports.CommonTokenStream = CommonTokenStream;
35213
35387
 
35214
- },{"./BufferedTokenStream":205,"./Decorators":214,"./Token":239}],213:[function(require,module,exports){
35388
+ },{"./BufferedTokenStream":206,"./Decorators":215,"./Token":240}],214:[function(require,module,exports){
35215
35389
  "use strict";
35216
35390
  /*!
35217
35391
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35245,7 +35419,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
35245
35419
  */
35246
35420
  ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
35247
35421
 
35248
- },{}],214:[function(require,module,exports){
35422
+ },{}],215:[function(require,module,exports){
35249
35423
  "use strict";
35250
35424
  /*!
35251
35425
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35272,7 +35446,7 @@ function SuppressWarnings(options) {
35272
35446
  }
35273
35447
  exports.SuppressWarnings = SuppressWarnings;
35274
35448
 
35275
- },{}],215:[function(require,module,exports){
35449
+ },{}],216:[function(require,module,exports){
35276
35450
  "use strict";
35277
35451
  /*!
35278
35452
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36086,7 +36260,7 @@ __decorate([
36086
36260
  ], DefaultErrorStrategy.prototype, "consumeUntil", null);
36087
36261
  exports.DefaultErrorStrategy = DefaultErrorStrategy;
36088
36262
 
36089
- },{"./Decorators":214,"./FailedPredicateException":218,"./InputMismatchException":219,"./NoViableAltException":226,"./Token":239,"./atn/ATNState":253,"./atn/ATNStateType":254,"./atn/PredictionContext":294,"./misc/IntervalSet":327}],216:[function(require,module,exports){
36263
+ },{"./Decorators":215,"./FailedPredicateException":219,"./InputMismatchException":220,"./NoViableAltException":227,"./Token":240,"./atn/ATNState":254,"./atn/ATNStateType":255,"./atn/PredictionContext":295,"./misc/IntervalSet":328}],217:[function(require,module,exports){
36090
36264
  "use strict";
36091
36265
  /*!
36092
36266
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36162,7 +36336,7 @@ var Dependents;
36162
36336
  Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
36163
36337
  })(Dependents = exports.Dependents || (exports.Dependents = {}));
36164
36338
 
36165
- },{}],217:[function(require,module,exports){
36339
+ },{}],218:[function(require,module,exports){
36166
36340
  "use strict";
36167
36341
  /*!
36168
36342
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36310,7 +36484,7 @@ __decorate([
36310
36484
  ], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
36311
36485
  exports.DiagnosticErrorListener = DiagnosticErrorListener;
36312
36486
 
36313
- },{"./Decorators":214,"./misc/BitSet":321,"./misc/Interval":326}],218:[function(require,module,exports){
36487
+ },{"./Decorators":215,"./misc/BitSet":322,"./misc/Interval":327}],219:[function(require,module,exports){
36314
36488
  "use strict";
36315
36489
  /*!
36316
36490
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36375,7 +36549,7 @@ FailedPredicateException = __decorate([
36375
36549
  ], FailedPredicateException);
36376
36550
  exports.FailedPredicateException = FailedPredicateException;
36377
36551
 
36378
- },{"./Decorators":214,"./RecognitionException":233,"./atn/PredicateTransition":293}],219:[function(require,module,exports){
36552
+ },{"./Decorators":215,"./RecognitionException":234,"./atn/PredicateTransition":294}],220:[function(require,module,exports){
36379
36553
  "use strict";
36380
36554
  /*!
36381
36555
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36415,7 +36589,7 @@ InputMismatchException = __decorate([
36415
36589
  ], InputMismatchException);
36416
36590
  exports.InputMismatchException = InputMismatchException;
36417
36591
 
36418
- },{"./Decorators":214,"./RecognitionException":233}],220:[function(require,module,exports){
36592
+ },{"./Decorators":215,"./RecognitionException":234}],221:[function(require,module,exports){
36419
36593
  "use strict";
36420
36594
  /*!
36421
36595
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36438,7 +36612,7 @@ var IntStream;
36438
36612
  IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
36439
36613
  })(IntStream = exports.IntStream || (exports.IntStream = {}));
36440
36614
 
36441
- },{}],221:[function(require,module,exports){
36615
+ },{}],222:[function(require,module,exports){
36442
36616
  "use strict";
36443
36617
  /*!
36444
36618
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36485,7 +36659,7 @@ __decorate([
36485
36659
  ], InterpreterRuleContext.prototype, "ruleIndex", null);
36486
36660
  exports.InterpreterRuleContext = InterpreterRuleContext;
36487
36661
 
36488
- },{"./Decorators":214,"./ParserRuleContext":230}],222:[function(require,module,exports){
36662
+ },{"./Decorators":215,"./ParserRuleContext":231}],223:[function(require,module,exports){
36489
36663
  "use strict";
36490
36664
  /*!
36491
36665
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36821,7 +36995,7 @@ __decorate([
36821
36995
  ], Lexer.prototype, "charPositionInLine", null);
36822
36996
  exports.Lexer = Lexer;
36823
36997
 
36824
- },{"./CommonTokenFactory":211,"./Decorators":214,"./IntStream":220,"./LexerNoViableAltException":224,"./Recognizer":234,"./Token":239,"./atn/LexerATNSimulator":272,"./misc/IntegerStack":325,"./misc/Interval":326}],223:[function(require,module,exports){
36998
+ },{"./CommonTokenFactory":212,"./Decorators":215,"./IntStream":221,"./LexerNoViableAltException":225,"./Recognizer":235,"./Token":240,"./atn/LexerATNSimulator":273,"./misc/IntegerStack":326,"./misc/Interval":327}],224:[function(require,module,exports){
36825
36999
  "use strict";
36826
37000
  /*!
36827
37001
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36901,7 +37075,7 @@ LexerInterpreter = __decorate([
36901
37075
  ], LexerInterpreter);
36902
37076
  exports.LexerInterpreter = LexerInterpreter;
36903
37077
 
36904
- },{"./Decorators":214,"./Lexer":222,"./atn/LexerATNSimulator":272}],224:[function(require,module,exports){
37078
+ },{"./Decorators":215,"./Lexer":223,"./atn/LexerATNSimulator":273}],225:[function(require,module,exports){
36905
37079
  "use strict";
36906
37080
  /*!
36907
37081
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36958,7 +37132,7 @@ LexerNoViableAltException = __decorate([
36958
37132
  ], LexerNoViableAltException);
36959
37133
  exports.LexerNoViableAltException = LexerNoViableAltException;
36960
37134
 
36961
- },{"./Decorators":214,"./RecognitionException":233,"./misc/Interval":326,"./misc/Utils":333}],225:[function(require,module,exports){
37135
+ },{"./Decorators":215,"./RecognitionException":234,"./misc/Interval":327,"./misc/Utils":334}],226:[function(require,module,exports){
36962
37136
  "use strict";
36963
37137
  /*!
36964
37138
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37168,7 +37342,7 @@ ListTokenSource = __decorate([
37168
37342
  ], ListTokenSource);
37169
37343
  exports.ListTokenSource = ListTokenSource;
37170
37344
 
37171
- },{"./CommonTokenFactory":211,"./Decorators":214,"./Token":239}],226:[function(require,module,exports){
37345
+ },{"./CommonTokenFactory":212,"./Decorators":215,"./Token":240}],227:[function(require,module,exports){
37172
37346
  "use strict";
37173
37347
  /*!
37174
37348
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37223,7 +37397,7 @@ __decorate([
37223
37397
  ], NoViableAltException.prototype, "_startToken", void 0);
37224
37398
  exports.NoViableAltException = NoViableAltException;
37225
37399
 
37226
- },{"./Decorators":214,"./Parser":227,"./RecognitionException":233}],227:[function(require,module,exports){
37400
+ },{"./Decorators":215,"./Parser":228,"./RecognitionException":234}],228:[function(require,module,exports){
37227
37401
  (function (process){(function (){
37228
37402
  "use strict";
37229
37403
  /*!
@@ -38069,7 +38243,7 @@ __decorate([
38069
38243
  exports.Parser = Parser;
38070
38244
 
38071
38245
  }).call(this)}).call(this,require('_process'))
38072
- },{"./Decorators":214,"./DefaultErrorStrategy":215,"./Lexer":222,"./ProxyParserErrorListener":232,"./Recognizer":234,"./Token":239,"./atn/ATNDeserializationOptions":250,"./atn/ATNDeserializer":251,"./atn/ParseInfo":287,"./atn/ParserATNSimulator":288,"./atn/ProfilingATNSimulator":297,"./misc/IntegerStack":325,"./misc/Utils":333,"./tree/ErrorNode":334,"./tree/TerminalNode":337,"./tree/pattern/ParseTreePatternMatcher":342,"_process":416}],228:[function(require,module,exports){
38246
+ },{"./Decorators":215,"./DefaultErrorStrategy":216,"./Lexer":223,"./ProxyParserErrorListener":233,"./Recognizer":235,"./Token":240,"./atn/ATNDeserializationOptions":251,"./atn/ATNDeserializer":252,"./atn/ParseInfo":288,"./atn/ParserATNSimulator":289,"./atn/ProfilingATNSimulator":298,"./misc/IntegerStack":326,"./misc/Utils":334,"./tree/ErrorNode":335,"./tree/TerminalNode":338,"./tree/pattern/ParseTreePatternMatcher":343,"_process":417}],229:[function(require,module,exports){
38073
38247
  "use strict";
38074
38248
  /*!
38075
38249
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38077,7 +38251,7 @@ exports.Parser = Parser;
38077
38251
  */
38078
38252
  Object.defineProperty(exports, "__esModule", { value: true });
38079
38253
 
38080
- },{}],229:[function(require,module,exports){
38254
+ },{}],230:[function(require,module,exports){
38081
38255
  "use strict";
38082
38256
  /*!
38083
38257
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38485,7 +38659,7 @@ ParserInterpreter = __decorate([
38485
38659
  ], ParserInterpreter);
38486
38660
  exports.ParserInterpreter = ParserInterpreter;
38487
38661
 
38488
- },{"./Decorators":214,"./FailedPredicateException":218,"./InputMismatchException":219,"./InterpreterRuleContext":221,"./Parser":227,"./RecognitionException":233,"./Token":239,"./atn/ATNState":253,"./atn/ATNStateType":254,"./atn/LoopEndState":284,"./atn/ParserATNSimulator":288,"./atn/StarLoopEntryState":306,"./misc/BitSet":321}],230:[function(require,module,exports){
38662
+ },{"./Decorators":215,"./FailedPredicateException":219,"./InputMismatchException":220,"./InterpreterRuleContext":222,"./Parser":228,"./RecognitionException":234,"./Token":240,"./atn/ATNState":254,"./atn/ATNStateType":255,"./atn/LoopEndState":285,"./atn/ParserATNSimulator":289,"./atn/StarLoopEntryState":307,"./misc/BitSet":322}],231:[function(require,module,exports){
38489
38663
  "use strict";
38490
38664
  /*!
38491
38665
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38786,7 +38960,7 @@ __decorate([
38786
38960
  ], ParserRuleContext.prototype, "sourceInterval", null);
38787
38961
  exports.ParserRuleContext = ParserRuleContext;
38788
38962
 
38789
- },{"./Decorators":214,"./RuleContext":235,"./misc/Interval":326,"./tree/ErrorNode":334,"./tree/TerminalNode":337}],231:[function(require,module,exports){
38963
+ },{"./Decorators":215,"./RuleContext":236,"./misc/Interval":327,"./tree/ErrorNode":335,"./tree/TerminalNode":338}],232:[function(require,module,exports){
38790
38964
  "use strict";
38791
38965
  /*!
38792
38966
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38836,7 +39010,7 @@ __decorate([
38836
39010
  ], ProxyErrorListener.prototype, "syntaxError", null);
38837
39011
  exports.ProxyErrorListener = ProxyErrorListener;
38838
39012
 
38839
- },{"./Decorators":214}],232:[function(require,module,exports){
39013
+ },{"./Decorators":215}],233:[function(require,module,exports){
38840
39014
  "use strict";
38841
39015
  /*!
38842
39016
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38895,7 +39069,7 @@ __decorate([
38895
39069
  ], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
38896
39070
  exports.ProxyParserErrorListener = ProxyParserErrorListener;
38897
39071
 
38898
- },{"./Decorators":214,"./ProxyErrorListener":231}],233:[function(require,module,exports){
39072
+ },{"./Decorators":215,"./ProxyErrorListener":232}],234:[function(require,module,exports){
38899
39073
  "use strict";
38900
39074
  /*!
38901
39075
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39000,7 +39174,7 @@ class RecognitionException extends Error {
39000
39174
  }
39001
39175
  exports.RecognitionException = RecognitionException;
39002
39176
 
39003
- },{}],234:[function(require,module,exports){
39177
+ },{}],235:[function(require,module,exports){
39004
39178
  "use strict";
39005
39179
  /*!
39006
39180
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39219,7 +39393,7 @@ __decorate([
39219
39393
  ], Recognizer.prototype, "getErrorListeners", null);
39220
39394
  exports.Recognizer = Recognizer;
39221
39395
 
39222
- },{"./ConsoleErrorListener":213,"./Decorators":214,"./ProxyErrorListener":231,"./Token":239,"./misc/Utils":333}],235:[function(require,module,exports){
39396
+ },{"./ConsoleErrorListener":214,"./Decorators":215,"./ProxyErrorListener":232,"./Token":240,"./misc/Utils":334}],236:[function(require,module,exports){
39223
39397
  "use strict";
39224
39398
  /*!
39225
39399
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39436,7 +39610,7 @@ __decorate([
39436
39610
  ], RuleContext.prototype, "toStringTree", null);
39437
39611
  exports.RuleContext = RuleContext;
39438
39612
 
39439
- },{"./Decorators":214,"./ParserRuleContext":230,"./Recognizer":234,"./atn/ATN":247,"./misc/Interval":326,"./tree/RuleNode":336,"./tree/Trees":338}],236:[function(require,module,exports){
39613
+ },{"./Decorators":215,"./ParserRuleContext":231,"./Recognizer":235,"./atn/ATN":248,"./misc/Interval":327,"./tree/RuleNode":337,"./tree/Trees":339}],237:[function(require,module,exports){
39440
39614
  "use strict";
39441
39615
  /*!
39442
39616
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39487,7 +39661,7 @@ __decorate([
39487
39661
  ], RuleContextWithAltNum.prototype, "altNumber", null);
39488
39662
  exports.RuleContextWithAltNum = RuleContextWithAltNum;
39489
39663
 
39490
- },{"./Decorators":214,"./ParserRuleContext":230,"./atn/ATN":247}],237:[function(require,module,exports){
39664
+ },{"./Decorators":215,"./ParserRuleContext":231,"./atn/ATN":248}],238:[function(require,module,exports){
39491
39665
  "use strict";
39492
39666
  /*!
39493
39667
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39510,7 +39684,7 @@ function RuleDependency(dependency) {
39510
39684
  }
39511
39685
  exports.RuleDependency = RuleDependency;
39512
39686
 
39513
- },{}],238:[function(require,module,exports){
39687
+ },{}],239:[function(require,module,exports){
39514
39688
  "use strict";
39515
39689
  /*!
39516
39690
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39529,7 +39703,7 @@ function RuleVersion(version) {
39529
39703
  }
39530
39704
  exports.RuleVersion = RuleVersion;
39531
39705
 
39532
- },{}],239:[function(require,module,exports){
39706
+ },{}],240:[function(require,module,exports){
39533
39707
  "use strict";
39534
39708
  /*!
39535
39709
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39569,7 +39743,7 @@ var Token;
39569
39743
  Token.MIN_USER_CHANNEL_VALUE = 2;
39570
39744
  })(Token = exports.Token || (exports.Token = {}));
39571
39745
 
39572
- },{"./IntStream":220}],240:[function(require,module,exports){
39746
+ },{"./IntStream":221}],241:[function(require,module,exports){
39573
39747
  "use strict";
39574
39748
  /*!
39575
39749
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39577,7 +39751,7 @@ var Token;
39577
39751
  */
39578
39752
  Object.defineProperty(exports, "__esModule", { value: true });
39579
39753
 
39580
- },{}],241:[function(require,module,exports){
39754
+ },{}],242:[function(require,module,exports){
39581
39755
  "use strict";
39582
39756
  /*!
39583
39757
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39585,7 +39759,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
39585
39759
  */
39586
39760
  Object.defineProperty(exports, "__esModule", { value: true });
39587
39761
 
39588
- },{}],242:[function(require,module,exports){
39762
+ },{}],243:[function(require,module,exports){
39589
39763
  "use strict";
39590
39764
  /*!
39591
39765
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39593,7 +39767,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
39593
39767
  */
39594
39768
  Object.defineProperty(exports, "__esModule", { value: true });
39595
39769
 
39596
- },{}],243:[function(require,module,exports){
39770
+ },{}],244:[function(require,module,exports){
39597
39771
  "use strict";
39598
39772
  /*!
39599
39773
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40101,7 +40275,7 @@ __decorate([
40101
40275
  Decorators_1.Override
40102
40276
  ], ReplaceOp.prototype, "toString", null);
40103
40277
 
40104
- },{"./Decorators":214,"./Token":239,"./misc/Interval":326}],244:[function(require,module,exports){
40278
+ },{"./Decorators":215,"./Token":240,"./misc/Interval":327}],245:[function(require,module,exports){
40105
40279
  "use strict";
40106
40280
  /*!
40107
40281
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40109,7 +40283,7 @@ __decorate([
40109
40283
  */
40110
40284
  Object.defineProperty(exports, "__esModule", { value: true });
40111
40285
 
40112
- },{}],245:[function(require,module,exports){
40286
+ },{}],246:[function(require,module,exports){
40113
40287
  "use strict";
40114
40288
  /*!
40115
40289
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40229,7 +40403,7 @@ __decorate([
40229
40403
  ], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
40230
40404
  exports.VocabularyImpl = VocabularyImpl;
40231
40405
 
40232
- },{"./Decorators":214,"./Token":239}],246:[function(require,module,exports){
40406
+ },{"./Decorators":215,"./Token":240}],247:[function(require,module,exports){
40233
40407
  "use strict";
40234
40408
  /*!
40235
40409
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40237,7 +40411,7 @@ exports.VocabularyImpl = VocabularyImpl;
40237
40411
  */
40238
40412
  Object.defineProperty(exports, "__esModule", { value: true });
40239
40413
 
40240
- },{}],247:[function(require,module,exports){
40414
+ },{}],248:[function(require,module,exports){
40241
40415
  "use strict";
40242
40416
  /*!
40243
40417
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40459,7 +40633,7 @@ exports.ATN = ATN;
40459
40633
  })(ATN = exports.ATN || (exports.ATN = {}));
40460
40634
  exports.ATN = ATN;
40461
40635
 
40462
- },{"../Decorators":214,"../Token":239,"../dfa/DFA":312,"../misc/Array2DHashMap":317,"../misc/IntervalSet":327,"../misc/ObjectEqualityComparator":330,"./InvalidState":270,"./LL1Analyzer":271,"./PredictionContext":294,"assert":357}],248:[function(require,module,exports){
40636
+ },{"../Decorators":215,"../Token":240,"../dfa/DFA":313,"../misc/Array2DHashMap":318,"../misc/IntervalSet":328,"../misc/ObjectEqualityComparator":331,"./InvalidState":271,"./LL1Analyzer":272,"./PredictionContext":295,"assert":358}],249:[function(require,module,exports){
40463
40637
  "use strict";
40464
40638
  /*!
40465
40639
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40984,7 +41158,7 @@ ActionSemanticContextATNConfig = __decorate([
40984
41158
  __param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
40985
41159
  ], ActionSemanticContextATNConfig);
40986
41160
 
40987
- },{"../Decorators":214,"../misc/Array2DHashMap":317,"../misc/MurmurHash":329,"../misc/ObjectEqualityComparator":330,"./DecisionState":267,"./PredictionContext":294,"./SemanticContext":302,"assert":357}],249:[function(require,module,exports){
41161
+ },{"../Decorators":215,"../misc/Array2DHashMap":318,"../misc/MurmurHash":330,"../misc/ObjectEqualityComparator":331,"./DecisionState":268,"./PredictionContext":295,"./SemanticContext":303,"assert":358}],250:[function(require,module,exports){
40988
41162
  "use strict";
40989
41163
  /*!
40990
41164
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41431,7 +41605,7 @@ __decorate([
41431
41605
  ], ATNConfigSet.prototype, "hashCode", null);
41432
41606
  exports.ATNConfigSet = ATNConfigSet;
41433
41607
 
41434
- },{"../Decorators":214,"../misc/Array2DHashMap":317,"../misc/Array2DHashSet":318,"../misc/ArrayEqualityComparator":319,"../misc/BitSet":321,"../misc/ObjectEqualityComparator":330,"../misc/Utils":333,"./ATN":247,"./ATNConfig":248,"./PredictionContext":294,"./PredictionContextCache":295,"./SemanticContext":302,"assert":357}],250:[function(require,module,exports){
41608
+ },{"../Decorators":215,"../misc/Array2DHashMap":318,"../misc/Array2DHashSet":319,"../misc/ArrayEqualityComparator":320,"../misc/BitSet":322,"../misc/ObjectEqualityComparator":331,"../misc/Utils":334,"./ATN":248,"./ATNConfig":249,"./PredictionContext":295,"./PredictionContextCache":296,"./SemanticContext":303,"assert":358}],251:[function(require,module,exports){
41435
41609
  "use strict";
41436
41610
  /*!
41437
41611
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41510,7 +41684,7 @@ __decorate([
41510
41684
  ], ATNDeserializationOptions, "defaultOptions", null);
41511
41685
  exports.ATNDeserializationOptions = ATNDeserializationOptions;
41512
41686
 
41513
- },{"../Decorators":214}],251:[function(require,module,exports){
41687
+ },{"../Decorators":215}],252:[function(require,module,exports){
41514
41688
  "use strict";
41515
41689
  /*!
41516
41690
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42597,7 +42771,7 @@ __decorate([
42597
42771
  ], ATNDeserializer.prototype, "edgeFactory", null);
42598
42772
  exports.ATNDeserializer = ATNDeserializer;
42599
42773
 
42600
- },{"../Decorators":214,"../Token":239,"../dfa/DFA":312,"../misc/Array2DHashSet":318,"../misc/BitSet":321,"../misc/IntervalSet":327,"../misc/UUID":332,"./ATN":247,"./ATNDeserializationOptions":250,"./ATNStateType":254,"./ActionTransition":256,"./AtomTransition":258,"./BasicBlockStartState":259,"./BasicState":260,"./BlockEndState":261,"./BlockStartState":262,"./DecisionState":267,"./EpsilonTransition":268,"./InvalidState":270,"./LexerChannelAction":274,"./LexerCustomAction":275,"./LexerModeAction":277,"./LexerMoreAction":278,"./LexerPopModeAction":279,"./LexerPushModeAction":280,"./LexerSkipAction":281,"./LexerTypeAction":282,"./LoopEndState":284,"./NotSetTransition":285,"./ParserATNSimulator":288,"./PlusBlockStartState":289,"./PlusLoopbackState":290,"./PrecedencePredicateTransition":291,"./PredicateTransition":293,"./RangeTransition":298,"./RuleStartState":299,"./RuleStopState":300,"./RuleTransition":301,"./SetTransition":303,"./StarBlockStartState":305,"./StarLoopEntryState":306,"./StarLoopbackState":307,"./TokensStartState":308,"./WildcardTransition":310}],252:[function(require,module,exports){
42774
+ },{"../Decorators":215,"../Token":240,"../dfa/DFA":313,"../misc/Array2DHashSet":319,"../misc/BitSet":322,"../misc/IntervalSet":328,"../misc/UUID":333,"./ATN":248,"./ATNDeserializationOptions":251,"./ATNStateType":255,"./ActionTransition":257,"./AtomTransition":259,"./BasicBlockStartState":260,"./BasicState":261,"./BlockEndState":262,"./BlockStartState":263,"./DecisionState":268,"./EpsilonTransition":269,"./InvalidState":271,"./LexerChannelAction":275,"./LexerCustomAction":276,"./LexerModeAction":278,"./LexerMoreAction":279,"./LexerPopModeAction":280,"./LexerPushModeAction":281,"./LexerSkipAction":282,"./LexerTypeAction":283,"./LoopEndState":285,"./NotSetTransition":286,"./ParserATNSimulator":289,"./PlusBlockStartState":290,"./PlusLoopbackState":291,"./PrecedencePredicateTransition":292,"./PredicateTransition":294,"./RangeTransition":299,"./RuleStartState":300,"./RuleStopState":301,"./RuleTransition":302,"./SetTransition":304,"./StarBlockStartState":306,"./StarLoopEntryState":307,"./StarLoopbackState":308,"./TokensStartState":309,"./WildcardTransition":311}],253:[function(require,module,exports){
42601
42775
  "use strict";
42602
42776
  /*!
42603
42777
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42661,7 +42835,7 @@ exports.ATNSimulator = ATNSimulator;
42661
42835
  })(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
42662
42836
  exports.ATNSimulator = ATNSimulator;
42663
42837
 
42664
- },{"../Decorators":214,"../dfa/DFAState":314,"./ATNConfigSet":249,"./PredictionContext":294}],253:[function(require,module,exports){
42838
+ },{"../Decorators":215,"../dfa/DFAState":315,"./ATNConfigSet":250,"./PredictionContext":295}],254:[function(require,module,exports){
42665
42839
  "use strict";
42666
42840
  /*!
42667
42841
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42848,7 +43022,7 @@ exports.ATNState = ATNState;
42848
43022
  ATNState.INVALID_STATE_NUMBER = -1;
42849
43023
  })(ATNState = exports.ATNState || (exports.ATNState = {}));
42850
43024
 
42851
- },{"../Decorators":214}],254:[function(require,module,exports){
43025
+ },{"../Decorators":215}],255:[function(require,module,exports){
42852
43026
  "use strict";
42853
43027
  /*!
42854
43028
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42874,7 +43048,7 @@ var ATNStateType;
42874
43048
  ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
42875
43049
  })(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
42876
43050
 
42877
- },{}],255:[function(require,module,exports){
43051
+ },{}],256:[function(require,module,exports){
42878
43052
  "use strict";
42879
43053
  /*!
42880
43054
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42894,7 +43068,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
42894
43068
  }
42895
43069
  exports.AbstractPredicateTransition = AbstractPredicateTransition;
42896
43070
 
42897
- },{"./Transition":309}],256:[function(require,module,exports){
43071
+ },{"./Transition":310}],257:[function(require,module,exports){
42898
43072
  "use strict";
42899
43073
  /*!
42900
43074
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42950,7 +43124,7 @@ ActionTransition = __decorate([
42950
43124
  ], ActionTransition);
42951
43125
  exports.ActionTransition = ActionTransition;
42952
43126
 
42953
- },{"../Decorators":214,"./Transition":309}],257:[function(require,module,exports){
43127
+ },{"../Decorators":215,"./Transition":310}],258:[function(require,module,exports){
42954
43128
  "use strict";
42955
43129
  /*!
42956
43130
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43037,7 +43211,7 @@ AmbiguityInfo = __decorate([
43037
43211
  ], AmbiguityInfo);
43038
43212
  exports.AmbiguityInfo = AmbiguityInfo;
43039
43213
 
43040
- },{"../Decorators":214,"./DecisionEventInfo":265}],258:[function(require,module,exports){
43214
+ },{"../Decorators":215,"./DecisionEventInfo":266}],259:[function(require,module,exports){
43041
43215
  "use strict";
43042
43216
  /*!
43043
43217
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43095,7 +43269,7 @@ AtomTransition = __decorate([
43095
43269
  ], AtomTransition);
43096
43270
  exports.AtomTransition = AtomTransition;
43097
43271
 
43098
- },{"../Decorators":214,"../misc/IntervalSet":327,"./Transition":309}],259:[function(require,module,exports){
43272
+ },{"../Decorators":215,"../misc/IntervalSet":328,"./Transition":310}],260:[function(require,module,exports){
43099
43273
  "use strict";
43100
43274
  /*!
43101
43275
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43127,7 +43301,7 @@ __decorate([
43127
43301
  ], BasicBlockStartState.prototype, "stateType", null);
43128
43302
  exports.BasicBlockStartState = BasicBlockStartState;
43129
43303
 
43130
- },{"../Decorators":214,"./ATNStateType":254,"./BlockStartState":262}],260:[function(require,module,exports){
43304
+ },{"../Decorators":215,"./ATNStateType":255,"./BlockStartState":263}],261:[function(require,module,exports){
43131
43305
  "use strict";
43132
43306
  /*!
43133
43307
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43159,7 +43333,7 @@ __decorate([
43159
43333
  ], BasicState.prototype, "stateType", null);
43160
43334
  exports.BasicState = BasicState;
43161
43335
 
43162
- },{"../Decorators":214,"./ATNState":253,"./ATNStateType":254}],261:[function(require,module,exports){
43336
+ },{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],262:[function(require,module,exports){
43163
43337
  "use strict";
43164
43338
  /*!
43165
43339
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43188,7 +43362,7 @@ __decorate([
43188
43362
  ], BlockEndState.prototype, "stateType", null);
43189
43363
  exports.BlockEndState = BlockEndState;
43190
43364
 
43191
- },{"../Decorators":214,"./ATNState":253,"./ATNStateType":254}],262:[function(require,module,exports){
43365
+ },{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],263:[function(require,module,exports){
43192
43366
  "use strict";
43193
43367
  /*!
43194
43368
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43202,7 +43376,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
43202
43376
  }
43203
43377
  exports.BlockStartState = BlockStartState;
43204
43378
 
43205
- },{"./DecisionState":267}],263:[function(require,module,exports){
43379
+ },{"./DecisionState":268}],264:[function(require,module,exports){
43206
43380
  "use strict";
43207
43381
  /*!
43208
43382
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43272,7 +43446,7 @@ __decorate([
43272
43446
  ], ConflictInfo.prototype, "hashCode", null);
43273
43447
  exports.ConflictInfo = ConflictInfo;
43274
43448
 
43275
- },{"../Decorators":214,"../misc/Utils":333}],264:[function(require,module,exports){
43449
+ },{"../Decorators":215,"../misc/Utils":334}],265:[function(require,module,exports){
43276
43450
  "use strict";
43277
43451
  /*!
43278
43452
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43332,7 +43506,7 @@ ContextSensitivityInfo = __decorate([
43332
43506
  ], ContextSensitivityInfo);
43333
43507
  exports.ContextSensitivityInfo = ContextSensitivityInfo;
43334
43508
 
43335
- },{"../Decorators":214,"./DecisionEventInfo":265}],265:[function(require,module,exports){
43509
+ },{"../Decorators":215,"./DecisionEventInfo":266}],266:[function(require,module,exports){
43336
43510
  "use strict";
43337
43511
  /*!
43338
43512
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43384,7 +43558,7 @@ DecisionEventInfo = __decorate([
43384
43558
  ], DecisionEventInfo);
43385
43559
  exports.DecisionEventInfo = DecisionEventInfo;
43386
43560
 
43387
- },{"../Decorators":214}],266:[function(require,module,exports){
43561
+ },{"../Decorators":215}],267:[function(require,module,exports){
43388
43562
  "use strict";
43389
43563
  /*!
43390
43564
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43597,7 +43771,7 @@ __decorate([
43597
43771
  ], DecisionInfo.prototype, "toString", null);
43598
43772
  exports.DecisionInfo = DecisionInfo;
43599
43773
 
43600
- },{"../Decorators":214}],267:[function(require,module,exports){
43774
+ },{"../Decorators":215}],268:[function(require,module,exports){
43601
43775
  "use strict";
43602
43776
  /*!
43603
43777
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43617,7 +43791,7 @@ class DecisionState extends ATNState_1.ATNState {
43617
43791
  }
43618
43792
  exports.DecisionState = DecisionState;
43619
43793
 
43620
- },{"./ATNState":253}],268:[function(require,module,exports){
43794
+ },{"./ATNState":254}],269:[function(require,module,exports){
43621
43795
  "use strict";
43622
43796
  /*!
43623
43797
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43683,7 +43857,7 @@ EpsilonTransition = __decorate([
43683
43857
  ], EpsilonTransition);
43684
43858
  exports.EpsilonTransition = EpsilonTransition;
43685
43859
 
43686
- },{"../Decorators":214,"./Transition":309}],269:[function(require,module,exports){
43860
+ },{"../Decorators":215,"./Transition":310}],270:[function(require,module,exports){
43687
43861
  "use strict";
43688
43862
  /*!
43689
43863
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43736,7 +43910,7 @@ ErrorInfo = __decorate([
43736
43910
  ], ErrorInfo);
43737
43911
  exports.ErrorInfo = ErrorInfo;
43738
43912
 
43739
- },{"../Decorators":214,"./DecisionEventInfo":265}],270:[function(require,module,exports){
43913
+ },{"../Decorators":215,"./DecisionEventInfo":266}],271:[function(require,module,exports){
43740
43914
  "use strict";
43741
43915
  /*!
43742
43916
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43767,7 +43941,7 @@ __decorate([
43767
43941
  ], InvalidState.prototype, "stateType", null);
43768
43942
  exports.InvalidState = InvalidState;
43769
43943
 
43770
- },{"../Decorators":214,"./ATNStateType":254,"./BasicState":260}],271:[function(require,module,exports){
43944
+ },{"../Decorators":215,"./ATNStateType":255,"./BasicState":261}],272:[function(require,module,exports){
43771
43945
  "use strict";
43772
43946
  /*!
43773
43947
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43989,7 +44163,7 @@ LL1Analyzer = __decorate([
43989
44163
  ], LL1Analyzer);
43990
44164
  exports.LL1Analyzer = LL1Analyzer;
43991
44165
 
43992
- },{"../Decorators":214,"../Token":239,"../misc/Array2DHashSet":318,"../misc/BitSet":321,"../misc/IntervalSet":327,"../misc/ObjectEqualityComparator":330,"./ATNConfig":248,"./AbstractPredicateTransition":255,"./NotSetTransition":285,"./PredictionContext":294,"./RuleStopState":300,"./RuleTransition":301,"./WildcardTransition":310}],272:[function(require,module,exports){
44166
+ },{"../Decorators":215,"../Token":240,"../misc/Array2DHashSet":319,"../misc/BitSet":322,"../misc/IntervalSet":328,"../misc/ObjectEqualityComparator":331,"./ATNConfig":249,"./AbstractPredicateTransition":256,"./NotSetTransition":286,"./PredictionContext":295,"./RuleStopState":301,"./RuleTransition":302,"./WildcardTransition":311}],273:[function(require,module,exports){
43993
44167
  "use strict";
43994
44168
  /*!
43995
44169
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44706,7 +44880,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
44706
44880
  })(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
44707
44881
  exports.LexerATNSimulator = LexerATNSimulator;
44708
44882
 
44709
- },{"../Decorators":214,"../IntStream":220,"../Lexer":222,"../LexerNoViableAltException":224,"../Token":239,"../dfa/AcceptStateInfo":311,"../dfa/DFAState":314,"../misc/Interval":326,"./ATN":247,"./ATNConfig":248,"./ATNConfigSet":249,"./ATNSimulator":252,"./LexerActionExecutor":273,"./OrderedATNConfigSet":286,"./PredictionContext":294,"./RuleStopState":300,"assert":357}],273:[function(require,module,exports){
44883
+ },{"../Decorators":215,"../IntStream":221,"../Lexer":223,"../LexerNoViableAltException":225,"../Token":240,"../dfa/AcceptStateInfo":312,"../dfa/DFAState":315,"../misc/Interval":327,"./ATN":248,"./ATNConfig":249,"./ATNConfigSet":250,"./ATNSimulator":253,"./LexerActionExecutor":274,"./OrderedATNConfigSet":287,"./PredictionContext":295,"./RuleStopState":301,"assert":358}],274:[function(require,module,exports){
44710
44884
  "use strict";
44711
44885
  /*!
44712
44886
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44907,7 +45081,7 @@ LexerActionExecutor = __decorate([
44907
45081
  ], LexerActionExecutor);
44908
45082
  exports.LexerActionExecutor = LexerActionExecutor;
44909
45083
 
44910
- },{"../Decorators":214,"../misc/ArrayEqualityComparator":319,"../misc/MurmurHash":329,"./LexerIndexedCustomAction":276}],274:[function(require,module,exports){
45084
+ },{"../Decorators":215,"../misc/ArrayEqualityComparator":320,"../misc/MurmurHash":330,"./LexerIndexedCustomAction":277}],275:[function(require,module,exports){
44911
45085
  "use strict";
44912
45086
  /*!
44913
45087
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45012,7 +45186,7 @@ __decorate([
45012
45186
  ], LexerChannelAction.prototype, "toString", null);
45013
45187
  exports.LexerChannelAction = LexerChannelAction;
45014
45188
 
45015
- },{"../Decorators":214,"../misc/MurmurHash":329}],275:[function(require,module,exports){
45189
+ },{"../Decorators":215,"../misc/MurmurHash":330}],276:[function(require,module,exports){
45016
45190
  "use strict";
45017
45191
  /*!
45018
45192
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45141,7 +45315,7 @@ __decorate([
45141
45315
  ], LexerCustomAction.prototype, "equals", null);
45142
45316
  exports.LexerCustomAction = LexerCustomAction;
45143
45317
 
45144
- },{"../Decorators":214,"../misc/MurmurHash":329}],276:[function(require,module,exports){
45318
+ },{"../Decorators":215,"../misc/MurmurHash":330}],277:[function(require,module,exports){
45145
45319
  "use strict";
45146
45320
  /*!
45147
45321
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45276,7 +45450,7 @@ LexerIndexedCustomAction = __decorate([
45276
45450
  ], LexerIndexedCustomAction);
45277
45451
  exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
45278
45452
 
45279
- },{"../Decorators":214,"../misc/MurmurHash":329}],277:[function(require,module,exports){
45453
+ },{"../Decorators":215,"../misc/MurmurHash":330}],278:[function(require,module,exports){
45280
45454
  "use strict";
45281
45455
  /*!
45282
45456
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45381,7 +45555,7 @@ __decorate([
45381
45555
  ], LexerModeAction.prototype, "toString", null);
45382
45556
  exports.LexerModeAction = LexerModeAction;
45383
45557
 
45384
- },{"../Decorators":214,"../misc/MurmurHash":329}],278:[function(require,module,exports){
45558
+ },{"../Decorators":215,"../misc/MurmurHash":330}],279:[function(require,module,exports){
45385
45559
  "use strict";
45386
45560
  /*!
45387
45561
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45477,7 +45651,7 @@ exports.LexerMoreAction = LexerMoreAction;
45477
45651
  LexerMoreAction.INSTANCE = new LexerMoreAction();
45478
45652
  })(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
45479
45653
 
45480
- },{"../Decorators":214,"../misc/MurmurHash":329}],279:[function(require,module,exports){
45654
+ },{"../Decorators":215,"../misc/MurmurHash":330}],280:[function(require,module,exports){
45481
45655
  "use strict";
45482
45656
  /*!
45483
45657
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45573,7 +45747,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
45573
45747
  LexerPopModeAction.INSTANCE = new LexerPopModeAction();
45574
45748
  })(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
45575
45749
 
45576
- },{"../Decorators":214,"../misc/MurmurHash":329}],280:[function(require,module,exports){
45750
+ },{"../Decorators":215,"../misc/MurmurHash":330}],281:[function(require,module,exports){
45577
45751
  "use strict";
45578
45752
  /*!
45579
45753
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45678,7 +45852,7 @@ __decorate([
45678
45852
  ], LexerPushModeAction.prototype, "toString", null);
45679
45853
  exports.LexerPushModeAction = LexerPushModeAction;
45680
45854
 
45681
- },{"../Decorators":214,"../misc/MurmurHash":329}],281:[function(require,module,exports){
45855
+ },{"../Decorators":215,"../misc/MurmurHash":330}],282:[function(require,module,exports){
45682
45856
  "use strict";
45683
45857
  /*!
45684
45858
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45774,7 +45948,7 @@ exports.LexerSkipAction = LexerSkipAction;
45774
45948
  LexerSkipAction.INSTANCE = new LexerSkipAction();
45775
45949
  })(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
45776
45950
 
45777
- },{"../Decorators":214,"../misc/MurmurHash":329}],282:[function(require,module,exports){
45951
+ },{"../Decorators":215,"../misc/MurmurHash":330}],283:[function(require,module,exports){
45778
45952
  "use strict";
45779
45953
  /*!
45780
45954
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45878,7 +46052,7 @@ __decorate([
45878
46052
  ], LexerTypeAction.prototype, "toString", null);
45879
46053
  exports.LexerTypeAction = LexerTypeAction;
45880
46054
 
45881
- },{"../Decorators":214,"../misc/MurmurHash":329}],283:[function(require,module,exports){
46055
+ },{"../Decorators":215,"../misc/MurmurHash":330}],284:[function(require,module,exports){
45882
46056
  "use strict";
45883
46057
  /*!
45884
46058
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45930,7 +46104,7 @@ LookaheadEventInfo = __decorate([
45930
46104
  ], LookaheadEventInfo);
45931
46105
  exports.LookaheadEventInfo = LookaheadEventInfo;
45932
46106
 
45933
- },{"../Decorators":214,"./DecisionEventInfo":265}],284:[function(require,module,exports){
46107
+ },{"../Decorators":215,"./DecisionEventInfo":266}],285:[function(require,module,exports){
45934
46108
  "use strict";
45935
46109
  /*!
45936
46110
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45959,7 +46133,7 @@ __decorate([
45959
46133
  ], LoopEndState.prototype, "stateType", null);
45960
46134
  exports.LoopEndState = LoopEndState;
45961
46135
 
45962
- },{"../Decorators":214,"./ATNState":253,"./ATNStateType":254}],285:[function(require,module,exports){
46136
+ },{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],286:[function(require,module,exports){
45963
46137
  "use strict";
45964
46138
  /*!
45965
46139
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46008,7 +46182,7 @@ NotSetTransition = __decorate([
46008
46182
  ], NotSetTransition);
46009
46183
  exports.NotSetTransition = NotSetTransition;
46010
46184
 
46011
- },{"../Decorators":214,"./SetTransition":303}],286:[function(require,module,exports){
46185
+ },{"../Decorators":215,"./SetTransition":304}],287:[function(require,module,exports){
46012
46186
  "use strict";
46013
46187
  /*!
46014
46188
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46063,7 +46237,7 @@ __decorate([
46063
46237
  ], OrderedATNConfigSet.prototype, "canMerge", null);
46064
46238
  exports.OrderedATNConfigSet = OrderedATNConfigSet;
46065
46239
 
46066
- },{"../Decorators":214,"./ATNConfigSet":249}],287:[function(require,module,exports){
46240
+ },{"../Decorators":215,"./ATNConfigSet":250}],288:[function(require,module,exports){
46067
46241
  "use strict";
46068
46242
  /*!
46069
46243
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46225,7 +46399,7 @@ ParseInfo = __decorate([
46225
46399
  ], ParseInfo);
46226
46400
  exports.ParseInfo = ParseInfo;
46227
46401
 
46228
- },{"../Decorators":214}],288:[function(require,module,exports){
46402
+ },{"../Decorators":215}],289:[function(require,module,exports){
46229
46403
  "use strict";
46230
46404
  /*!
46231
46405
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48498,7 +48672,7 @@ ParserATNSimulator = __decorate([
48498
48672
  ], ParserATNSimulator);
48499
48673
  exports.ParserATNSimulator = ParserATNSimulator;
48500
48674
 
48501
- },{"../Decorators":214,"../IntStream":220,"../NoViableAltException":226,"../ParserRuleContext":230,"../Token":239,"../VocabularyImpl":245,"../dfa/AcceptStateInfo":311,"../dfa/DFAState":314,"../misc/Array2DHashSet":318,"../misc/Arrays":320,"../misc/BitSet":321,"../misc/IntegerList":324,"../misc/Interval":326,"../misc/ObjectEqualityComparator":330,"./ATN":247,"./ATNConfig":248,"./ATNConfigSet":249,"./ATNSimulator":252,"./ATNStateType":254,"./ActionTransition":256,"./AtomTransition":258,"./ConflictInfo":263,"./DecisionState":267,"./NotSetTransition":285,"./PredictionContext":294,"./PredictionContextCache":295,"./PredictionMode":296,"./RuleStopState":300,"./RuleTransition":301,"./SemanticContext":302,"./SetTransition":303,"./SimulatorState":304,"assert":357}],289:[function(require,module,exports){
48675
+ },{"../Decorators":215,"../IntStream":221,"../NoViableAltException":227,"../ParserRuleContext":231,"../Token":240,"../VocabularyImpl":246,"../dfa/AcceptStateInfo":312,"../dfa/DFAState":315,"../misc/Array2DHashSet":319,"../misc/Arrays":321,"../misc/BitSet":322,"../misc/IntegerList":325,"../misc/Interval":327,"../misc/ObjectEqualityComparator":331,"./ATN":248,"./ATNConfig":249,"./ATNConfigSet":250,"./ATNSimulator":253,"./ATNStateType":255,"./ActionTransition":257,"./AtomTransition":259,"./ConflictInfo":264,"./DecisionState":268,"./NotSetTransition":286,"./PredictionContext":295,"./PredictionContextCache":296,"./PredictionMode":297,"./RuleStopState":301,"./RuleTransition":302,"./SemanticContext":303,"./SetTransition":304,"./SimulatorState":305,"assert":358}],290:[function(require,module,exports){
48502
48676
  "use strict";
48503
48677
  /*!
48504
48678
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48531,7 +48705,7 @@ __decorate([
48531
48705
  ], PlusBlockStartState.prototype, "stateType", null);
48532
48706
  exports.PlusBlockStartState = PlusBlockStartState;
48533
48707
 
48534
- },{"../Decorators":214,"./ATNStateType":254,"./BlockStartState":262}],290:[function(require,module,exports){
48708
+ },{"../Decorators":215,"./ATNStateType":255,"./BlockStartState":263}],291:[function(require,module,exports){
48535
48709
  "use strict";
48536
48710
  /*!
48537
48711
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48562,7 +48736,7 @@ __decorate([
48562
48736
  ], PlusLoopbackState.prototype, "stateType", null);
48563
48737
  exports.PlusLoopbackState = PlusLoopbackState;
48564
48738
 
48565
- },{"../Decorators":214,"./ATNStateType":254,"./DecisionState":267}],291:[function(require,module,exports){
48739
+ },{"../Decorators":215,"./ATNStateType":255,"./DecisionState":268}],292:[function(require,module,exports){
48566
48740
  "use strict";
48567
48741
  /*!
48568
48742
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48625,7 +48799,7 @@ PrecedencePredicateTransition = __decorate([
48625
48799
  ], PrecedencePredicateTransition);
48626
48800
  exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
48627
48801
 
48628
- },{"../Decorators":214,"./AbstractPredicateTransition":255,"./SemanticContext":302}],292:[function(require,module,exports){
48802
+ },{"../Decorators":215,"./AbstractPredicateTransition":256,"./SemanticContext":303}],293:[function(require,module,exports){
48629
48803
  "use strict";
48630
48804
  /*!
48631
48805
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48688,7 +48862,7 @@ PredicateEvalInfo = __decorate([
48688
48862
  ], PredicateEvalInfo);
48689
48863
  exports.PredicateEvalInfo = PredicateEvalInfo;
48690
48864
 
48691
- },{"../Decorators":214,"./DecisionEventInfo":265}],293:[function(require,module,exports){
48865
+ },{"../Decorators":215,"./DecisionEventInfo":266}],294:[function(require,module,exports){
48692
48866
  "use strict";
48693
48867
  /*!
48694
48868
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48754,7 +48928,7 @@ PredicateTransition = __decorate([
48754
48928
  ], PredicateTransition);
48755
48929
  exports.PredicateTransition = PredicateTransition;
48756
48930
 
48757
- },{"../Decorators":214,"./AbstractPredicateTransition":255,"./SemanticContext":302}],294:[function(require,module,exports){
48931
+ },{"../Decorators":215,"./AbstractPredicateTransition":256,"./SemanticContext":303}],295:[function(require,module,exports){
48758
48932
  "use strict";
48759
48933
  /*!
48760
48934
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49445,7 +49619,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
49445
49619
  PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
49446
49620
  })(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
49447
49621
 
49448
- },{"../Decorators":214,"../misc/Array2DHashMap":317,"../misc/Array2DHashSet":318,"../misc/Arrays":320,"../misc/MurmurHash":329,"./PredictionContextCache":295,"assert":357}],295:[function(require,module,exports){
49622
+ },{"../Decorators":215,"../misc/Array2DHashMap":318,"../misc/Array2DHashSet":319,"../misc/Arrays":321,"../misc/MurmurHash":330,"./PredictionContextCache":296,"assert":358}],296:[function(require,module,exports){
49449
49623
  "use strict";
49450
49624
  /*!
49451
49625
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49586,7 +49760,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
49586
49760
  PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
49587
49761
  })(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
49588
49762
 
49589
- },{"../Decorators":214,"../misc/Array2DHashMap":317,"../misc/ObjectEqualityComparator":330,"./PredictionContext":294,"assert":357}],296:[function(require,module,exports){
49763
+ },{"../Decorators":215,"../misc/Array2DHashMap":318,"../misc/ObjectEqualityComparator":331,"./PredictionContext":295,"assert":358}],297:[function(require,module,exports){
49590
49764
  "use strict";
49591
49765
  /*!
49592
49766
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49747,7 +49921,7 @@ var PredictionMode;
49747
49921
  PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
49748
49922
  })(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
49749
49923
 
49750
- },{"../Decorators":214,"../misc/Array2DHashMap":317,"../misc/MurmurHash":329,"./RuleStopState":300}],297:[function(require,module,exports){
49924
+ },{"../Decorators":215,"../misc/Array2DHashMap":318,"../misc/MurmurHash":330,"./RuleStopState":301}],298:[function(require,module,exports){
49751
49925
  (function (process){(function (){
49752
49926
  "use strict";
49753
49927
  /*!
@@ -50016,7 +50190,7 @@ __decorate([
50016
50190
  exports.ProfilingATNSimulator = ProfilingATNSimulator;
50017
50191
 
50018
50192
  }).call(this)}).call(this,require('_process'))
50019
- },{"../Decorators":214,"./ATN":247,"./ATNSimulator":252,"./AmbiguityInfo":257,"./ContextSensitivityInfo":264,"./DecisionInfo":266,"./ErrorInfo":269,"./LookaheadEventInfo":283,"./ParserATNSimulator":288,"./PredicateEvalInfo":292,"./SemanticContext":302,"./SimulatorState":304,"_process":416}],298:[function(require,module,exports){
50193
+ },{"../Decorators":215,"./ATN":248,"./ATNSimulator":253,"./AmbiguityInfo":258,"./ContextSensitivityInfo":265,"./DecisionInfo":267,"./ErrorInfo":270,"./LookaheadEventInfo":284,"./ParserATNSimulator":289,"./PredicateEvalInfo":293,"./SemanticContext":303,"./SimulatorState":305,"_process":417}],299:[function(require,module,exports){
50020
50194
  "use strict";
50021
50195
  /*!
50022
50196
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50074,7 +50248,7 @@ RangeTransition = __decorate([
50074
50248
  ], RangeTransition);
50075
50249
  exports.RangeTransition = RangeTransition;
50076
50250
 
50077
- },{"../Decorators":214,"../misc/IntervalSet":327,"./Transition":309}],299:[function(require,module,exports){
50251
+ },{"../Decorators":215,"../misc/IntervalSet":328,"./Transition":310}],300:[function(require,module,exports){
50078
50252
  "use strict";
50079
50253
  /*!
50080
50254
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50107,7 +50281,7 @@ __decorate([
50107
50281
  ], RuleStartState.prototype, "stateType", null);
50108
50282
  exports.RuleStartState = RuleStartState;
50109
50283
 
50110
- },{"../Decorators":214,"./ATNState":253,"./ATNStateType":254}],300:[function(require,module,exports){
50284
+ },{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],301:[function(require,module,exports){
50111
50285
  "use strict";
50112
50286
  /*!
50113
50287
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50146,7 +50320,7 @@ __decorate([
50146
50320
  ], RuleStopState.prototype, "stateType", null);
50147
50321
  exports.RuleStopState = RuleStopState;
50148
50322
 
50149
- },{"../Decorators":214,"./ATNState":253,"./ATNStateType":254}],301:[function(require,module,exports){
50323
+ },{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],302:[function(require,module,exports){
50150
50324
  "use strict";
50151
50325
  /*!
50152
50326
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50202,7 +50376,7 @@ RuleTransition = __decorate([
50202
50376
  ], RuleTransition);
50203
50377
  exports.RuleTransition = RuleTransition;
50204
50378
 
50205
- },{"../Decorators":214,"./Transition":309}],302:[function(require,module,exports){
50379
+ },{"../Decorators":215,"./Transition":310}],303:[function(require,module,exports){
50206
50380
  "use strict";
50207
50381
  /*!
50208
50382
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50682,7 +50856,7 @@ exports.SemanticContext = SemanticContext;
50682
50856
  SemanticContext.OR = OR;
50683
50857
  })(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
50684
50858
 
50685
- },{"../Decorators":214,"../misc/Array2DHashSet":318,"../misc/ArrayEqualityComparator":319,"../misc/MurmurHash":329,"../misc/ObjectEqualityComparator":330,"../misc/Utils":333}],303:[function(require,module,exports){
50859
+ },{"../Decorators":215,"../misc/Array2DHashSet":319,"../misc/ArrayEqualityComparator":320,"../misc/MurmurHash":330,"../misc/ObjectEqualityComparator":331,"../misc/Utils":334}],304:[function(require,module,exports){
50686
50860
  "use strict";
50687
50861
  /*!
50688
50862
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50748,7 +50922,7 @@ SetTransition = __decorate([
50748
50922
  ], SetTransition);
50749
50923
  exports.SetTransition = SetTransition;
50750
50924
 
50751
- },{"../Decorators":214,"../Token":239,"../misc/IntervalSet":327,"./Transition":309}],304:[function(require,module,exports){
50925
+ },{"../Decorators":215,"../Token":240,"../misc/IntervalSet":328,"./Transition":310}],305:[function(require,module,exports){
50752
50926
  "use strict";
50753
50927
  /*!
50754
50928
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50784,7 +50958,7 @@ SimulatorState = __decorate([
50784
50958
  ], SimulatorState);
50785
50959
  exports.SimulatorState = SimulatorState;
50786
50960
 
50787
- },{"../Decorators":214,"../ParserRuleContext":230}],305:[function(require,module,exports){
50961
+ },{"../Decorators":215,"../ParserRuleContext":231}],306:[function(require,module,exports){
50788
50962
  "use strict";
50789
50963
  /*!
50790
50964
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50812,7 +50986,7 @@ __decorate([
50812
50986
  ], StarBlockStartState.prototype, "stateType", null);
50813
50987
  exports.StarBlockStartState = StarBlockStartState;
50814
50988
 
50815
- },{"../Decorators":214,"./ATNStateType":254,"./BlockStartState":262}],306:[function(require,module,exports){
50989
+ },{"../Decorators":215,"./ATNStateType":255,"./BlockStartState":263}],307:[function(require,module,exports){
50816
50990
  "use strict";
50817
50991
  /*!
50818
50992
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50869,7 +51043,7 @@ __decorate([
50869
51043
  ], StarLoopEntryState.prototype, "stateType", null);
50870
51044
  exports.StarLoopEntryState = StarLoopEntryState;
50871
51045
 
50872
- },{"../Decorators":214,"../misc/BitSet":321,"./ATNStateType":254,"./DecisionState":267}],307:[function(require,module,exports){
51046
+ },{"../Decorators":215,"../misc/BitSet":322,"./ATNStateType":255,"./DecisionState":268}],308:[function(require,module,exports){
50873
51047
  "use strict";
50874
51048
  /*!
50875
51049
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50900,7 +51074,7 @@ __decorate([
50900
51074
  ], StarLoopbackState.prototype, "stateType", null);
50901
51075
  exports.StarLoopbackState = StarLoopbackState;
50902
51076
 
50903
- },{"../Decorators":214,"./ATNState":253,"./ATNStateType":254}],308:[function(require,module,exports){
51077
+ },{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],309:[function(require,module,exports){
50904
51078
  "use strict";
50905
51079
  /*!
50906
51080
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50929,7 +51103,7 @@ __decorate([
50929
51103
  ], TokensStartState.prototype, "stateType", null);
50930
51104
  exports.TokensStartState = TokensStartState;
50931
51105
 
50932
- },{"../Decorators":214,"./ATNStateType":254,"./DecisionState":267}],309:[function(require,module,exports){
51106
+ },{"../Decorators":215,"./ATNStateType":255,"./DecisionState":268}],310:[function(require,module,exports){
50933
51107
  "use strict";
50934
51108
  /*!
50935
51109
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51003,7 +51177,7 @@ Transition = __decorate([
51003
51177
  ], Transition);
51004
51178
  exports.Transition = Transition;
51005
51179
 
51006
- },{"../Decorators":214}],310:[function(require,module,exports){
51180
+ },{"../Decorators":215}],311:[function(require,module,exports){
51007
51181
  "use strict";
51008
51182
  /*!
51009
51183
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51051,7 +51225,7 @@ WildcardTransition = __decorate([
51051
51225
  ], WildcardTransition);
51052
51226
  exports.WildcardTransition = WildcardTransition;
51053
51227
 
51054
- },{"../Decorators":214,"./Transition":309}],311:[function(require,module,exports){
51228
+ },{"../Decorators":215,"./Transition":310}],312:[function(require,module,exports){
51055
51229
  "use strict";
51056
51230
  /*!
51057
51231
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51093,7 +51267,7 @@ class AcceptStateInfo {
51093
51267
  }
51094
51268
  exports.AcceptStateInfo = AcceptStateInfo;
51095
51269
 
51096
- },{}],312:[function(require,module,exports){
51270
+ },{}],313:[function(require,module,exports){
51097
51271
  "use strict";
51098
51272
  /*!
51099
51273
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51268,7 +51442,7 @@ DFA = __decorate([
51268
51442
  ], DFA);
51269
51443
  exports.DFA = DFA;
51270
51444
 
51271
- },{"../Decorators":214,"../VocabularyImpl":245,"../atn/ATNConfigSet":249,"../atn/StarLoopEntryState":306,"../misc/Array2DHashSet":318,"../misc/ObjectEqualityComparator":330,"./DFASerializer":313,"./DFAState":314,"./LexerDFASerializer":315}],313:[function(require,module,exports){
51445
+ },{"../Decorators":215,"../VocabularyImpl":246,"../atn/ATNConfigSet":250,"../atn/StarLoopEntryState":307,"../misc/Array2DHashSet":319,"../misc/ObjectEqualityComparator":331,"./DFASerializer":314,"./DFAState":315,"./LexerDFASerializer":316}],314:[function(require,module,exports){
51272
51446
  "use strict";
51273
51447
  /*!
51274
51448
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51410,7 +51584,7 @@ __decorate([
51410
51584
  ], DFASerializer.prototype, "toString", null);
51411
51585
  exports.DFASerializer = DFASerializer;
51412
51586
 
51413
- },{"../Decorators":214,"../Recognizer":234,"../VocabularyImpl":245,"../atn/ATNSimulator":252,"../atn/PredictionContext":294}],314:[function(require,module,exports){
51587
+ },{"../Decorators":215,"../Recognizer":235,"../VocabularyImpl":246,"../atn/ATNSimulator":253,"../atn/PredictionContext":295}],315:[function(require,module,exports){
51414
51588
  "use strict";
51415
51589
  /*!
51416
51590
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51641,7 +51815,7 @@ exports.DFAState = DFAState;
51641
51815
  DFAState.PredPrediction = PredPrediction;
51642
51816
  })(DFAState = exports.DFAState || (exports.DFAState = {}));
51643
51817
 
51644
- },{"../Decorators":214,"../atn/ATN":247,"../atn/PredictionContext":294,"../misc/BitSet":321,"../misc/MurmurHash":329,"assert":357}],315:[function(require,module,exports){
51818
+ },{"../Decorators":215,"../atn/ATN":248,"../atn/PredictionContext":295,"../misc/BitSet":322,"../misc/MurmurHash":330,"assert":358}],316:[function(require,module,exports){
51645
51819
  "use strict";
51646
51820
  /*!
51647
51821
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51678,7 +51852,7 @@ LexerDFASerializer = __decorate([
51678
51852
  ], LexerDFASerializer);
51679
51853
  exports.LexerDFASerializer = LexerDFASerializer;
51680
51854
 
51681
- },{"../Decorators":214,"../VocabularyImpl":245,"./DFASerializer":313}],316:[function(require,module,exports){
51855
+ },{"../Decorators":215,"../VocabularyImpl":246,"./DFASerializer":314}],317:[function(require,module,exports){
51682
51856
  "use strict";
51683
51857
  /*!
51684
51858
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51744,7 +51918,7 @@ __exportStar(require("./Vocabulary"), exports);
51744
51918
  __exportStar(require("./VocabularyImpl"), exports);
51745
51919
  __exportStar(require("./WritableToken"), exports);
51746
51920
 
51747
- },{"./ANTLRErrorListener":201,"./ANTLRErrorStrategy":202,"./ANTLRInputStream":203,"./BailErrorStrategy":204,"./BufferedTokenStream":205,"./CharStream":206,"./CharStreams":207,"./CodePointBuffer":208,"./CodePointCharStream":209,"./CommonToken":210,"./CommonTokenFactory":211,"./CommonTokenStream":212,"./ConsoleErrorListener":213,"./DefaultErrorStrategy":215,"./Dependents":216,"./DiagnosticErrorListener":217,"./FailedPredicateException":218,"./InputMismatchException":219,"./IntStream":220,"./InterpreterRuleContext":221,"./Lexer":222,"./LexerInterpreter":223,"./LexerNoViableAltException":224,"./ListTokenSource":225,"./NoViableAltException":226,"./Parser":227,"./ParserErrorListener":228,"./ParserInterpreter":229,"./ParserRuleContext":230,"./ProxyErrorListener":231,"./ProxyParserErrorListener":232,"./RecognitionException":233,"./Recognizer":234,"./RuleContext":235,"./RuleContextWithAltNum":236,"./RuleDependency":237,"./RuleVersion":238,"./Token":239,"./TokenFactory":240,"./TokenSource":241,"./TokenStream":242,"./TokenStreamRewriter":243,"./Vocabulary":244,"./VocabularyImpl":245,"./WritableToken":246}],317:[function(require,module,exports){
51921
+ },{"./ANTLRErrorListener":202,"./ANTLRErrorStrategy":203,"./ANTLRInputStream":204,"./BailErrorStrategy":205,"./BufferedTokenStream":206,"./CharStream":207,"./CharStreams":208,"./CodePointBuffer":209,"./CodePointCharStream":210,"./CommonToken":211,"./CommonTokenFactory":212,"./CommonTokenStream":213,"./ConsoleErrorListener":214,"./DefaultErrorStrategy":216,"./Dependents":217,"./DiagnosticErrorListener":218,"./FailedPredicateException":219,"./InputMismatchException":220,"./IntStream":221,"./InterpreterRuleContext":222,"./Lexer":223,"./LexerInterpreter":224,"./LexerNoViableAltException":225,"./ListTokenSource":226,"./NoViableAltException":227,"./Parser":228,"./ParserErrorListener":229,"./ParserInterpreter":230,"./ParserRuleContext":231,"./ProxyErrorListener":232,"./ProxyParserErrorListener":233,"./RecognitionException":234,"./Recognizer":235,"./RuleContext":236,"./RuleContextWithAltNum":237,"./RuleDependency":238,"./RuleVersion":239,"./Token":240,"./TokenFactory":241,"./TokenSource":242,"./TokenStream":243,"./TokenStreamRewriter":244,"./Vocabulary":245,"./VocabularyImpl":246,"./WritableToken":247}],318:[function(require,module,exports){
51748
51922
  "use strict";
51749
51923
  /*!
51750
51924
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51827,7 +52001,7 @@ class Array2DHashMap {
51827
52001
  }
51828
52002
  exports.Array2DHashMap = Array2DHashMap;
51829
52003
 
51830
- },{"./Array2DHashSet":318}],318:[function(require,module,exports){
52004
+ },{"./Array2DHashSet":319}],319:[function(require,module,exports){
51831
52005
  "use strict";
51832
52006
  /*!
51833
52007
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52194,7 +52368,7 @@ __decorate([
52194
52368
  ], Array2DHashSet.prototype, "createBuckets", null);
52195
52369
  exports.Array2DHashSet = Array2DHashSet;
52196
52370
 
52197
- },{"../Decorators":214,"./DefaultEqualityComparator":323,"./MurmurHash":329,"assert":357}],319:[function(require,module,exports){
52371
+ },{"../Decorators":215,"./DefaultEqualityComparator":324,"./MurmurHash":330,"assert":358}],320:[function(require,module,exports){
52198
52372
  "use strict";
52199
52373
  /*!
52200
52374
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52266,7 +52440,7 @@ __decorate([
52266
52440
  ], ArrayEqualityComparator.prototype, "equals", null);
52267
52441
  exports.ArrayEqualityComparator = ArrayEqualityComparator;
52268
52442
 
52269
- },{"../Decorators":214,"./MurmurHash":329,"./ObjectEqualityComparator":330}],320:[function(require,module,exports){
52443
+ },{"../Decorators":215,"./MurmurHash":330,"./ObjectEqualityComparator":331}],321:[function(require,module,exports){
52270
52444
  "use strict";
52271
52445
  /*!
52272
52446
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52336,7 +52510,7 @@ var Arrays;
52336
52510
  Arrays.toString = toString;
52337
52511
  })(Arrays = exports.Arrays || (exports.Arrays = {}));
52338
52512
 
52339
- },{}],321:[function(require,module,exports){
52513
+ },{}],322:[function(require,module,exports){
52340
52514
  "use strict";
52341
52515
  /*!
52342
52516
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53008,7 +53182,7 @@ class BitSetIterator {
53008
53182
  [Symbol.iterator]() { return this; }
53009
53183
  }
53010
53184
 
53011
- },{"./MurmurHash":329,"util":421}],322:[function(require,module,exports){
53185
+ },{"./MurmurHash":330,"util":422}],323:[function(require,module,exports){
53012
53186
  "use strict";
53013
53187
  /*!
53014
53188
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53029,7 +53203,7 @@ function isSupplementaryCodePoint(ch) {
53029
53203
  }
53030
53204
  exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
53031
53205
 
53032
- },{}],323:[function(require,module,exports){
53206
+ },{}],324:[function(require,module,exports){
53033
53207
  "use strict";
53034
53208
  /*!
53035
53209
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53100,7 +53274,7 @@ __decorate([
53100
53274
  ], DefaultEqualityComparator.prototype, "equals", null);
53101
53275
  exports.DefaultEqualityComparator = DefaultEqualityComparator;
53102
53276
 
53103
- },{"../Decorators":214,"./MurmurHash":329,"./ObjectEqualityComparator":330}],324:[function(require,module,exports){
53277
+ },{"../Decorators":215,"./MurmurHash":330,"./ObjectEqualityComparator":331}],325:[function(require,module,exports){
53104
53278
  "use strict";
53105
53279
  /*!
53106
53280
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53394,7 +53568,7 @@ __decorate([
53394
53568
  ], IntegerList.prototype, "toString", null);
53395
53569
  exports.IntegerList = IntegerList;
53396
53570
 
53397
- },{"../Decorators":214,"./Arrays":320}],325:[function(require,module,exports){
53571
+ },{"../Decorators":215,"./Arrays":321}],326:[function(require,module,exports){
53398
53572
  "use strict";
53399
53573
  /*!
53400
53574
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53424,7 +53598,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
53424
53598
  }
53425
53599
  exports.IntegerStack = IntegerStack;
53426
53600
 
53427
- },{"./IntegerList":324}],326:[function(require,module,exports){
53601
+ },{"./IntegerList":325}],327:[function(require,module,exports){
53428
53602
  "use strict";
53429
53603
  /*!
53430
53604
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53567,7 +53741,7 @@ __decorate([
53567
53741
  ], Interval.prototype, "toString", null);
53568
53742
  exports.Interval = Interval;
53569
53743
 
53570
- },{"../Decorators":214}],327:[function(require,module,exports){
53744
+ },{"../Decorators":215}],328:[function(require,module,exports){
53571
53745
  "use strict";
53572
53746
  /*!
53573
53747
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54213,7 +54387,7 @@ __decorate([
54213
54387
  ], IntervalSet, "subtract", null);
54214
54388
  exports.IntervalSet = IntervalSet;
54215
54389
 
54216
- },{"../Decorators":214,"../Lexer":222,"../Token":239,"./ArrayEqualityComparator":319,"./IntegerList":324,"./Interval":326,"./MurmurHash":329}],328:[function(require,module,exports){
54390
+ },{"../Decorators":215,"../Lexer":223,"../Token":240,"./ArrayEqualityComparator":320,"./IntegerList":325,"./Interval":327,"./MurmurHash":330}],329:[function(require,module,exports){
54217
54391
  "use strict";
54218
54392
  /*!
54219
54393
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54246,7 +54420,7 @@ class MultiMap extends Map {
54246
54420
  }
54247
54421
  exports.MultiMap = MultiMap;
54248
54422
 
54249
- },{}],329:[function(require,module,exports){
54423
+ },{}],330:[function(require,module,exports){
54250
54424
  "use strict";
54251
54425
  /*!
54252
54426
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54361,7 +54535,7 @@ var MurmurHash;
54361
54535
  }
54362
54536
  })(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
54363
54537
 
54364
- },{}],330:[function(require,module,exports){
54538
+ },{}],331:[function(require,module,exports){
54365
54539
  "use strict";
54366
54540
  /*!
54367
54541
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54420,7 +54594,7 @@ __decorate([
54420
54594
  ], ObjectEqualityComparator.prototype, "equals", null);
54421
54595
  exports.ObjectEqualityComparator = ObjectEqualityComparator;
54422
54596
 
54423
- },{"../Decorators":214}],331:[function(require,module,exports){
54597
+ },{"../Decorators":215}],332:[function(require,module,exports){
54424
54598
  "use strict";
54425
54599
  /*!
54426
54600
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54449,7 +54623,7 @@ class ParseCancellationException extends Error {
54449
54623
  }
54450
54624
  exports.ParseCancellationException = ParseCancellationException;
54451
54625
 
54452
- },{}],332:[function(require,module,exports){
54626
+ },{}],333:[function(require,module,exports){
54453
54627
  "use strict";
54454
54628
  /*!
54455
54629
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54503,7 +54677,7 @@ class UUID {
54503
54677
  }
54504
54678
  exports.UUID = UUID;
54505
54679
 
54506
- },{"./MurmurHash":329}],333:[function(require,module,exports){
54680
+ },{"./MurmurHash":330}],334:[function(require,module,exports){
54507
54681
  "use strict";
54508
54682
  /*!
54509
54683
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54678,7 +54852,7 @@ exports.toCharArray = toCharArray;
54678
54852
  // return s;
54679
54853
  // }
54680
54854
 
54681
- },{}],334:[function(require,module,exports){
54855
+ },{}],335:[function(require,module,exports){
54682
54856
  "use strict";
54683
54857
  /*!
54684
54858
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54714,7 +54888,7 @@ __decorate([
54714
54888
  ], ErrorNode.prototype, "accept", null);
54715
54889
  exports.ErrorNode = ErrorNode;
54716
54890
 
54717
- },{"../Decorators":214,"./TerminalNode":337}],335:[function(require,module,exports){
54891
+ },{"../Decorators":215,"./TerminalNode":338}],336:[function(require,module,exports){
54718
54892
  "use strict";
54719
54893
  /*!
54720
54894
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54819,7 +54993,7 @@ exports.ParseTreeWalker = ParseTreeWalker;
54819
54993
  ParseTreeWalker.DEFAULT = new ParseTreeWalker();
54820
54994
  })(ParseTreeWalker = exports.ParseTreeWalker || (exports.ParseTreeWalker = {}));
54821
54995
 
54822
- },{"./ErrorNode":334,"./RuleNode":336,"./TerminalNode":337}],336:[function(require,module,exports){
54996
+ },{"./ErrorNode":335,"./RuleNode":337,"./TerminalNode":338}],337:[function(require,module,exports){
54823
54997
  "use strict";
54824
54998
  /*!
54825
54999
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54831,7 +55005,7 @@ class RuleNode {
54831
55005
  }
54832
55006
  exports.RuleNode = RuleNode;
54833
55007
 
54834
- },{}],337:[function(require,module,exports){
55008
+ },{}],338:[function(require,module,exports){
54835
55009
  "use strict";
54836
55010
  /*!
54837
55011
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54923,7 +55097,7 @@ __decorate([
54923
55097
  ], TerminalNode.prototype, "toString", null);
54924
55098
  exports.TerminalNode = TerminalNode;
54925
55099
 
54926
- },{"../Decorators":214,"../Token":239,"../misc/Interval":326}],338:[function(require,module,exports){
55100
+ },{"../Decorators":215,"../Token":240,"../misc/Interval":327}],339:[function(require,module,exports){
54927
55101
  "use strict";
54928
55102
  /*!
54929
55103
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55167,7 +55341,7 @@ __decorate([
55167
55341
  ], Trees, "getRootOfSubtreeEnclosingRegion", null);
55168
55342
  exports.Trees = Trees;
55169
55343
 
55170
- },{"../CommonToken":210,"../Decorators":214,"../Parser":227,"../ParserRuleContext":230,"../Token":239,"../atn/ATN":247,"../misc/Utils":333,"./ErrorNode":334,"./RuleNode":336,"./TerminalNode":337}],339:[function(require,module,exports){
55344
+ },{"../CommonToken":211,"../Decorators":215,"../Parser":228,"../ParserRuleContext":231,"../Token":240,"../atn/ATN":248,"../misc/Utils":334,"./ErrorNode":335,"./RuleNode":337,"./TerminalNode":338}],340:[function(require,module,exports){
55171
55345
  "use strict";
55172
55346
  /*!
55173
55347
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55191,7 +55365,7 @@ class Chunk {
55191
55365
  }
55192
55366
  exports.Chunk = Chunk;
55193
55367
 
55194
- },{}],340:[function(require,module,exports){
55368
+ },{}],341:[function(require,module,exports){
55195
55369
  "use strict";
55196
55370
  /*!
55197
55371
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55371,7 +55545,7 @@ ParseTreeMatch = __decorate([
55371
55545
  ], ParseTreeMatch);
55372
55546
  exports.ParseTreeMatch = ParseTreeMatch;
55373
55547
 
55374
- },{"../../Decorators":214}],341:[function(require,module,exports){
55548
+ },{"../../Decorators":215}],342:[function(require,module,exports){
55375
55549
  "use strict";
55376
55550
  /*!
55377
55551
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55529,7 +55703,7 @@ ParseTreePattern = __decorate([
55529
55703
  ], ParseTreePattern);
55530
55704
  exports.ParseTreePattern = ParseTreePattern;
55531
55705
 
55532
- },{"../../Decorators":214,"../xpath/XPath":347}],342:[function(require,module,exports){
55706
+ },{"../../Decorators":215,"../xpath/XPath":348}],343:[function(require,module,exports){
55533
55707
  "use strict";
55534
55708
  /*!
55535
55709
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56007,7 +56181,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
56007
56181
  ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
56008
56182
  })(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
56009
56183
 
56010
- },{"../../BailErrorStrategy":204,"../../CharStreams":207,"../../CommonTokenStream":212,"../../Decorators":214,"../../ListTokenSource":225,"../../ParserInterpreter":229,"../../ParserRuleContext":230,"../../RecognitionException":233,"../../Token":239,"../../misc/MultiMap":328,"../../misc/ParseCancellationException":331,"../RuleNode":336,"../TerminalNode":337,"./ParseTreeMatch":340,"./ParseTreePattern":341,"./RuleTagToken":343,"./TagChunk":344,"./TextChunk":345,"./TokenTagToken":346}],343:[function(require,module,exports){
56184
+ },{"../../BailErrorStrategy":205,"../../CharStreams":208,"../../CommonTokenStream":213,"../../Decorators":215,"../../ListTokenSource":226,"../../ParserInterpreter":230,"../../ParserRuleContext":231,"../../RecognitionException":234,"../../Token":240,"../../misc/MultiMap":329,"../../misc/ParseCancellationException":332,"../RuleNode":337,"../TerminalNode":338,"./ParseTreeMatch":341,"./ParseTreePattern":342,"./RuleTagToken":344,"./TagChunk":345,"./TextChunk":346,"./TokenTagToken":347}],344:[function(require,module,exports){
56011
56185
  "use strict";
56012
56186
  /*!
56013
56187
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56205,7 +56379,7 @@ RuleTagToken = __decorate([
56205
56379
  ], RuleTagToken);
56206
56380
  exports.RuleTagToken = RuleTagToken;
56207
56381
 
56208
- },{"../../Decorators":214,"../../Token":239}],344:[function(require,module,exports){
56382
+ },{"../../Decorators":215,"../../Token":240}],345:[function(require,module,exports){
56209
56383
  "use strict";
56210
56384
  /*!
56211
56385
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56292,7 +56466,7 @@ __decorate([
56292
56466
  ], TagChunk.prototype, "toString", null);
56293
56467
  exports.TagChunk = TagChunk;
56294
56468
 
56295
- },{"../../Decorators":214,"./Chunk":339}],345:[function(require,module,exports){
56469
+ },{"../../Decorators":215,"./Chunk":340}],346:[function(require,module,exports){
56296
56470
  "use strict";
56297
56471
  /*!
56298
56472
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56362,7 +56536,7 @@ TextChunk = __decorate([
56362
56536
  ], TextChunk);
56363
56537
  exports.TextChunk = TextChunk;
56364
56538
 
56365
- },{"../../Decorators":214,"./Chunk":339}],346:[function(require,module,exports){
56539
+ },{"../../Decorators":215,"./Chunk":340}],347:[function(require,module,exports){
56366
56540
  "use strict";
56367
56541
  /*!
56368
56542
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56457,7 +56631,7 @@ TokenTagToken = __decorate([
56457
56631
  ], TokenTagToken);
56458
56632
  exports.TokenTagToken = TokenTagToken;
56459
56633
 
56460
- },{"../../CommonToken":210,"../../Decorators":214}],347:[function(require,module,exports){
56634
+ },{"../../CommonToken":211,"../../Decorators":215}],348:[function(require,module,exports){
56461
56635
  "use strict";
56462
56636
  /*!
56463
56637
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56654,7 +56828,7 @@ exports.XPath = XPath;
56654
56828
  XPath.WILDCARD = "*"; // word not operator/separator
56655
56829
  XPath.NOT = "!"; // word for invert operator
56656
56830
 
56657
- },{"../../CharStreams":207,"../../CommonTokenStream":212,"../../LexerNoViableAltException":224,"../../ParserRuleContext":230,"../../Token":239,"./XPathLexer":349,"./XPathLexerErrorListener":350,"./XPathRuleAnywhereElement":351,"./XPathRuleElement":352,"./XPathTokenAnywhereElement":353,"./XPathTokenElement":354,"./XPathWildcardAnywhereElement":355,"./XPathWildcardElement":356}],348:[function(require,module,exports){
56831
+ },{"../../CharStreams":208,"../../CommonTokenStream":213,"../../LexerNoViableAltException":225,"../../ParserRuleContext":231,"../../Token":240,"./XPathLexer":350,"./XPathLexerErrorListener":351,"./XPathRuleAnywhereElement":352,"./XPathRuleElement":353,"./XPathTokenAnywhereElement":354,"./XPathTokenElement":355,"./XPathWildcardAnywhereElement":356,"./XPathWildcardElement":357}],349:[function(require,module,exports){
56658
56832
  "use strict";
56659
56833
  /*!
56660
56834
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56689,7 +56863,7 @@ __decorate([
56689
56863
  ], XPathElement.prototype, "toString", null);
56690
56864
  exports.XPathElement = XPathElement;
56691
56865
 
56692
- },{"../../Decorators":214}],349:[function(require,module,exports){
56866
+ },{"../../Decorators":215}],350:[function(require,module,exports){
56693
56867
  "use strict";
56694
56868
  // Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
56695
56869
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -57164,7 +57338,7 @@ XPathLexer._serializedATN = Utils.join([
57164
57338
  XPathLexer._serializedATNSegment1,
57165
57339
  ], "");
57166
57340
 
57167
- },{"../../Lexer":222,"../../VocabularyImpl":245,"../../atn/ATNDeserializer":251,"../../atn/LexerATNSimulator":272,"../../misc/Utils":333}],350:[function(require,module,exports){
57341
+ },{"../../Lexer":223,"../../VocabularyImpl":246,"../../atn/ATNDeserializer":252,"../../atn/LexerATNSimulator":273,"../../misc/Utils":334}],351:[function(require,module,exports){
57168
57342
  "use strict";
57169
57343
  /*!
57170
57344
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57189,7 +57363,7 @@ __decorate([
57189
57363
  ], XPathLexerErrorListener.prototype, "syntaxError", null);
57190
57364
  exports.XPathLexerErrorListener = XPathLexerErrorListener;
57191
57365
 
57192
- },{"../../Decorators":214}],351:[function(require,module,exports){
57366
+ },{"../../Decorators":215}],352:[function(require,module,exports){
57193
57367
  "use strict";
57194
57368
  /*!
57195
57369
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57223,7 +57397,7 @@ __decorate([
57223
57397
  ], XPathRuleAnywhereElement.prototype, "evaluate", null);
57224
57398
  exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
57225
57399
 
57226
- },{"../../Decorators":214,"../Trees":338,"./XPathElement":348}],352:[function(require,module,exports){
57400
+ },{"../../Decorators":215,"../Trees":339,"./XPathElement":349}],353:[function(require,module,exports){
57227
57401
  "use strict";
57228
57402
  /*!
57229
57403
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57266,7 +57440,7 @@ __decorate([
57266
57440
  ], XPathRuleElement.prototype, "evaluate", null);
57267
57441
  exports.XPathRuleElement = XPathRuleElement;
57268
57442
 
57269
- },{"../../Decorators":214,"../../ParserRuleContext":230,"../Trees":338,"./XPathElement":348}],353:[function(require,module,exports){
57443
+ },{"../../Decorators":215,"../../ParserRuleContext":231,"../Trees":339,"./XPathElement":349}],354:[function(require,module,exports){
57270
57444
  "use strict";
57271
57445
  /*!
57272
57446
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57298,7 +57472,7 @@ __decorate([
57298
57472
  ], XPathTokenAnywhereElement.prototype, "evaluate", null);
57299
57473
  exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
57300
57474
 
57301
- },{"../../Decorators":214,"../Trees":338,"./XPathElement":348}],354:[function(require,module,exports){
57475
+ },{"../../Decorators":215,"../Trees":339,"./XPathElement":349}],355:[function(require,module,exports){
57302
57476
  "use strict";
57303
57477
  /*!
57304
57478
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57341,7 +57515,7 @@ __decorate([
57341
57515
  ], XPathTokenElement.prototype, "evaluate", null);
57342
57516
  exports.XPathTokenElement = XPathTokenElement;
57343
57517
 
57344
- },{"../../Decorators":214,"../TerminalNode":337,"../Trees":338,"./XPathElement":348}],355:[function(require,module,exports){
57518
+ },{"../../Decorators":215,"../TerminalNode":338,"../Trees":339,"./XPathElement":349}],356:[function(require,module,exports){
57345
57519
  "use strict";
57346
57520
  /*!
57347
57521
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57377,7 +57551,7 @@ __decorate([
57377
57551
  ], XPathWildcardAnywhereElement.prototype, "evaluate", null);
57378
57552
  exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
57379
57553
 
57380
- },{"../../Decorators":214,"../Trees":338,"./XPath":347,"./XPathElement":348}],356:[function(require,module,exports){
57554
+ },{"../../Decorators":215,"../Trees":339,"./XPath":348,"./XPathElement":349}],357:[function(require,module,exports){
57381
57555
  "use strict";
57382
57556
  /*!
57383
57557
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57417,7 +57591,7 @@ __decorate([
57417
57591
  ], XPathWildcardElement.prototype, "evaluate", null);
57418
57592
  exports.XPathWildcardElement = XPathWildcardElement;
57419
57593
 
57420
- },{"../../Decorators":214,"../Trees":338,"./XPath":347,"./XPathElement":348}],357:[function(require,module,exports){
57594
+ },{"../../Decorators":215,"../Trees":339,"./XPath":348,"./XPathElement":349}],358:[function(require,module,exports){
57421
57595
  (function (global){(function (){
57422
57596
  'use strict';
57423
57597
 
@@ -57927,7 +58101,7 @@ var objectKeys = Object.keys || function (obj) {
57927
58101
  };
57928
58102
 
57929
58103
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
57930
- },{"object.assign/polyfill":414,"util/":360}],358:[function(require,module,exports){
58104
+ },{"object.assign/polyfill":415,"util/":361}],359:[function(require,module,exports){
57931
58105
  if (typeof Object.create === 'function') {
57932
58106
  // implementation from standard node.js 'util' module
57933
58107
  module.exports = function inherits(ctor, superCtor) {
@@ -57952,14 +58126,14 @@ if (typeof Object.create === 'function') {
57952
58126
  }
57953
58127
  }
57954
58128
 
57955
- },{}],359:[function(require,module,exports){
58129
+ },{}],360:[function(require,module,exports){
57956
58130
  module.exports = function isBuffer(arg) {
57957
58131
  return arg && typeof arg === 'object'
57958
58132
  && typeof arg.copy === 'function'
57959
58133
  && typeof arg.fill === 'function'
57960
58134
  && typeof arg.readUInt8 === 'function';
57961
58135
  }
57962
- },{}],360:[function(require,module,exports){
58136
+ },{}],361:[function(require,module,exports){
57963
58137
  (function (process,global){(function (){
57964
58138
  // Copyright Joyent, Inc. and other Node contributors.
57965
58139
  //
@@ -58549,7 +58723,7 @@ function hasOwnProperty(obj, prop) {
58549
58723
  }
58550
58724
 
58551
58725
  }).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
58552
- },{"./support/isBuffer":359,"_process":416,"inherits":358}],361:[function(require,module,exports){
58726
+ },{"./support/isBuffer":360,"_process":417,"inherits":359}],362:[function(require,module,exports){
58553
58727
  (function (global){(function (){
58554
58728
  'use strict';
58555
58729
 
@@ -58570,7 +58744,7 @@ module.exports = function availableTypedArrays() {
58570
58744
  };
58571
58745
 
58572
58746
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
58573
- },{"possible-typed-array-names":415}],362:[function(require,module,exports){
58747
+ },{"possible-typed-array-names":416}],363:[function(require,module,exports){
58574
58748
  (function (process,global){(function (){
58575
58749
  module.exports = process.hrtime || hrtime
58576
58750
 
@@ -58601,7 +58775,7 @@ function hrtime(previousTimestamp){
58601
58775
  return [seconds,nanoseconds]
58602
58776
  }
58603
58777
  }).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
58604
- },{"_process":416}],363:[function(require,module,exports){
58778
+ },{"_process":417}],364:[function(require,module,exports){
58605
58779
  'use strict';
58606
58780
 
58607
58781
  var bind = require('function-bind');
@@ -58613,7 +58787,7 @@ var $reflectApply = require('./reflectApply');
58613
58787
  /** @type {import('./actualApply')} */
58614
58788
  module.exports = $reflectApply || bind.call($call, $apply);
58615
58789
 
58616
- },{"./functionApply":365,"./functionCall":366,"./reflectApply":368,"function-bind":384}],364:[function(require,module,exports){
58790
+ },{"./functionApply":366,"./functionCall":367,"./reflectApply":369,"function-bind":385}],365:[function(require,module,exports){
58617
58791
  'use strict';
58618
58792
 
58619
58793
  var bind = require('function-bind');
@@ -58625,19 +58799,19 @@ module.exports = function applyBind() {
58625
58799
  return actualApply(bind, $apply, arguments);
58626
58800
  };
58627
58801
 
58628
- },{"./actualApply":363,"./functionApply":365,"function-bind":384}],365:[function(require,module,exports){
58802
+ },{"./actualApply":364,"./functionApply":366,"function-bind":385}],366:[function(require,module,exports){
58629
58803
  'use strict';
58630
58804
 
58631
58805
  /** @type {import('./functionApply')} */
58632
58806
  module.exports = Function.prototype.apply;
58633
58807
 
58634
- },{}],366:[function(require,module,exports){
58808
+ },{}],367:[function(require,module,exports){
58635
58809
  'use strict';
58636
58810
 
58637
58811
  /** @type {import('./functionCall')} */
58638
58812
  module.exports = Function.prototype.call;
58639
58813
 
58640
- },{}],367:[function(require,module,exports){
58814
+ },{}],368:[function(require,module,exports){
58641
58815
  'use strict';
58642
58816
 
58643
58817
  var bind = require('function-bind');
@@ -58654,13 +58828,13 @@ module.exports = function callBindBasic(args) {
58654
58828
  return $actualApply(bind, $call, args);
58655
58829
  };
58656
58830
 
58657
- },{"./actualApply":363,"./functionCall":366,"es-errors/type":379,"function-bind":384}],368:[function(require,module,exports){
58831
+ },{"./actualApply":364,"./functionCall":367,"es-errors/type":380,"function-bind":385}],369:[function(require,module,exports){
58658
58832
  'use strict';
58659
58833
 
58660
58834
  /** @type {import('./reflectApply')} */
58661
58835
  module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
58662
58836
 
58663
- },{}],369:[function(require,module,exports){
58837
+ },{}],370:[function(require,module,exports){
58664
58838
  'use strict';
58665
58839
 
58666
58840
  var setFunctionLength = require('set-function-length');
@@ -58686,7 +58860,7 @@ if ($defineProperty) {
58686
58860
  module.exports.apply = applyBind;
58687
58861
  }
58688
58862
 
58689
- },{"call-bind-apply-helpers":367,"call-bind-apply-helpers/applyBind":364,"es-define-property":373,"set-function-length":418}],370:[function(require,module,exports){
58863
+ },{"call-bind-apply-helpers":368,"call-bind-apply-helpers/applyBind":365,"es-define-property":374,"set-function-length":419}],371:[function(require,module,exports){
58690
58864
  'use strict';
58691
58865
 
58692
58866
  var GetIntrinsic = require('get-intrinsic');
@@ -58707,7 +58881,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
58707
58881
  return intrinsic;
58708
58882
  };
58709
58883
 
58710
- },{"call-bind-apply-helpers":367,"get-intrinsic":385}],371:[function(require,module,exports){
58884
+ },{"call-bind-apply-helpers":368,"get-intrinsic":386}],372:[function(require,module,exports){
58711
58885
  'use strict';
58712
58886
 
58713
58887
  var $defineProperty = require('es-define-property');
@@ -58765,7 +58939,7 @@ module.exports = function defineDataProperty(
58765
58939
  }
58766
58940
  };
58767
58941
 
58768
- },{"es-define-property":373,"es-errors/syntax":378,"es-errors/type":379,"gopd":390}],372:[function(require,module,exports){
58942
+ },{"es-define-property":374,"es-errors/syntax":379,"es-errors/type":380,"gopd":391}],373:[function(require,module,exports){
58769
58943
  'use strict';
58770
58944
 
58771
58945
  var callBind = require('call-bind-apply-helpers');
@@ -58797,7 +58971,7 @@ module.exports = desc && typeof desc.get === 'function'
58797
58971
  }
58798
58972
  : false;
58799
58973
 
58800
- },{"call-bind-apply-helpers":367,"gopd":390}],373:[function(require,module,exports){
58974
+ },{"call-bind-apply-helpers":368,"gopd":391}],374:[function(require,module,exports){
58801
58975
  'use strict';
58802
58976
 
58803
58977
  /** @type {import('.')} */
@@ -58813,55 +58987,55 @@ if ($defineProperty) {
58813
58987
 
58814
58988
  module.exports = $defineProperty;
58815
58989
 
58816
- },{}],374:[function(require,module,exports){
58990
+ },{}],375:[function(require,module,exports){
58817
58991
  'use strict';
58818
58992
 
58819
58993
  /** @type {import('./eval')} */
58820
58994
  module.exports = EvalError;
58821
58995
 
58822
- },{}],375:[function(require,module,exports){
58996
+ },{}],376:[function(require,module,exports){
58823
58997
  'use strict';
58824
58998
 
58825
58999
  /** @type {import('.')} */
58826
59000
  module.exports = Error;
58827
59001
 
58828
- },{}],376:[function(require,module,exports){
59002
+ },{}],377:[function(require,module,exports){
58829
59003
  'use strict';
58830
59004
 
58831
59005
  /** @type {import('./range')} */
58832
59006
  module.exports = RangeError;
58833
59007
 
58834
- },{}],377:[function(require,module,exports){
59008
+ },{}],378:[function(require,module,exports){
58835
59009
  'use strict';
58836
59010
 
58837
59011
  /** @type {import('./ref')} */
58838
59012
  module.exports = ReferenceError;
58839
59013
 
58840
- },{}],378:[function(require,module,exports){
59014
+ },{}],379:[function(require,module,exports){
58841
59015
  'use strict';
58842
59016
 
58843
59017
  /** @type {import('./syntax')} */
58844
59018
  module.exports = SyntaxError;
58845
59019
 
58846
- },{}],379:[function(require,module,exports){
59020
+ },{}],380:[function(require,module,exports){
58847
59021
  'use strict';
58848
59022
 
58849
59023
  /** @type {import('./type')} */
58850
59024
  module.exports = TypeError;
58851
59025
 
58852
- },{}],380:[function(require,module,exports){
59026
+ },{}],381:[function(require,module,exports){
58853
59027
  'use strict';
58854
59028
 
58855
59029
  /** @type {import('./uri')} */
58856
59030
  module.exports = URIError;
58857
59031
 
58858
- },{}],381:[function(require,module,exports){
59032
+ },{}],382:[function(require,module,exports){
58859
59033
  'use strict';
58860
59034
 
58861
59035
  /** @type {import('.')} */
58862
59036
  module.exports = Object;
58863
59037
 
58864
- },{}],382:[function(require,module,exports){
59038
+ },{}],383:[function(require,module,exports){
58865
59039
  'use strict';
58866
59040
 
58867
59041
  var isCallable = require('is-callable');
@@ -58932,7 +59106,7 @@ module.exports = function forEach(list, iterator, thisArg) {
58932
59106
  }
58933
59107
  };
58934
59108
 
58935
- },{"is-callable":398}],383:[function(require,module,exports){
59109
+ },{"is-callable":399}],384:[function(require,module,exports){
58936
59110
  'use strict';
58937
59111
 
58938
59112
  /* eslint no-invalid-this: 1 */
@@ -59018,14 +59192,14 @@ module.exports = function bind(that) {
59018
59192
  return bound;
59019
59193
  };
59020
59194
 
59021
- },{}],384:[function(require,module,exports){
59195
+ },{}],385:[function(require,module,exports){
59022
59196
  'use strict';
59023
59197
 
59024
59198
  var implementation = require('./implementation');
59025
59199
 
59026
59200
  module.exports = Function.prototype.bind || implementation;
59027
59201
 
59028
- },{"./implementation":383}],385:[function(require,module,exports){
59202
+ },{"./implementation":384}],386:[function(require,module,exports){
59029
59203
  'use strict';
59030
59204
 
59031
59205
  var undefined;
@@ -59405,7 +59579,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
59405
59579
  return value;
59406
59580
  };
59407
59581
 
59408
- },{"call-bind-apply-helpers/functionApply":365,"call-bind-apply-helpers/functionCall":366,"es-define-property":373,"es-errors":375,"es-errors/eval":374,"es-errors/range":376,"es-errors/ref":377,"es-errors/syntax":378,"es-errors/type":379,"es-errors/uri":380,"es-object-atoms":381,"function-bind":384,"get-proto":388,"get-proto/Object.getPrototypeOf":386,"get-proto/Reflect.getPrototypeOf":387,"gopd":390,"has-symbols":392,"hasown":395,"math-intrinsics/abs":402,"math-intrinsics/floor":403,"math-intrinsics/max":405,"math-intrinsics/min":406,"math-intrinsics/pow":407,"math-intrinsics/round":408,"math-intrinsics/sign":409}],386:[function(require,module,exports){
59582
+ },{"call-bind-apply-helpers/functionApply":366,"call-bind-apply-helpers/functionCall":367,"es-define-property":374,"es-errors":376,"es-errors/eval":375,"es-errors/range":377,"es-errors/ref":378,"es-errors/syntax":379,"es-errors/type":380,"es-errors/uri":381,"es-object-atoms":382,"function-bind":385,"get-proto":389,"get-proto/Object.getPrototypeOf":387,"get-proto/Reflect.getPrototypeOf":388,"gopd":391,"has-symbols":393,"hasown":396,"math-intrinsics/abs":403,"math-intrinsics/floor":404,"math-intrinsics/max":406,"math-intrinsics/min":407,"math-intrinsics/pow":408,"math-intrinsics/round":409,"math-intrinsics/sign":410}],387:[function(require,module,exports){
59409
59583
  'use strict';
59410
59584
 
59411
59585
  var $Object = require('es-object-atoms');
@@ -59413,13 +59587,13 @@ var $Object = require('es-object-atoms');
59413
59587
  /** @type {import('./Object.getPrototypeOf')} */
59414
59588
  module.exports = $Object.getPrototypeOf || null;
59415
59589
 
59416
- },{"es-object-atoms":381}],387:[function(require,module,exports){
59590
+ },{"es-object-atoms":382}],388:[function(require,module,exports){
59417
59591
  'use strict';
59418
59592
 
59419
59593
  /** @type {import('./Reflect.getPrototypeOf')} */
59420
59594
  module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
59421
59595
 
59422
- },{}],388:[function(require,module,exports){
59596
+ },{}],389:[function(require,module,exports){
59423
59597
  'use strict';
59424
59598
 
59425
59599
  var reflectGetProto = require('./Reflect.getPrototypeOf');
@@ -59448,13 +59622,13 @@ module.exports = reflectGetProto
59448
59622
  }
59449
59623
  : null;
59450
59624
 
59451
- },{"./Object.getPrototypeOf":386,"./Reflect.getPrototypeOf":387,"dunder-proto/get":372}],389:[function(require,module,exports){
59625
+ },{"./Object.getPrototypeOf":387,"./Reflect.getPrototypeOf":388,"dunder-proto/get":373}],390:[function(require,module,exports){
59452
59626
  'use strict';
59453
59627
 
59454
59628
  /** @type {import('./gOPD')} */
59455
59629
  module.exports = Object.getOwnPropertyDescriptor;
59456
59630
 
59457
- },{}],390:[function(require,module,exports){
59631
+ },{}],391:[function(require,module,exports){
59458
59632
  'use strict';
59459
59633
 
59460
59634
  /** @type {import('.')} */
@@ -59471,7 +59645,7 @@ if ($gOPD) {
59471
59645
 
59472
59646
  module.exports = $gOPD;
59473
59647
 
59474
- },{"./gOPD":389}],391:[function(require,module,exports){
59648
+ },{"./gOPD":390}],392:[function(require,module,exports){
59475
59649
  'use strict';
59476
59650
 
59477
59651
  var $defineProperty = require('es-define-property');
@@ -59495,7 +59669,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
59495
59669
 
59496
59670
  module.exports = hasPropertyDescriptors;
59497
59671
 
59498
- },{"es-define-property":373}],392:[function(require,module,exports){
59672
+ },{"es-define-property":374}],393:[function(require,module,exports){
59499
59673
  'use strict';
59500
59674
 
59501
59675
  var origSymbol = typeof Symbol !== 'undefined' && Symbol;
@@ -59511,7 +59685,7 @@ module.exports = function hasNativeSymbols() {
59511
59685
  return hasSymbolSham();
59512
59686
  };
59513
59687
 
59514
- },{"./shams":393}],393:[function(require,module,exports){
59688
+ },{"./shams":394}],394:[function(require,module,exports){
59515
59689
  'use strict';
59516
59690
 
59517
59691
  /** @type {import('./shams')} */
@@ -59558,7 +59732,7 @@ module.exports = function hasSymbols() {
59558
59732
  return true;
59559
59733
  };
59560
59734
 
59561
- },{}],394:[function(require,module,exports){
59735
+ },{}],395:[function(require,module,exports){
59562
59736
  'use strict';
59563
59737
 
59564
59738
  var hasSymbols = require('has-symbols/shams');
@@ -59568,7 +59742,7 @@ module.exports = function hasToStringTagShams() {
59568
59742
  return hasSymbols() && !!Symbol.toStringTag;
59569
59743
  };
59570
59744
 
59571
- },{"has-symbols/shams":393}],395:[function(require,module,exports){
59745
+ },{"has-symbols/shams":394}],396:[function(require,module,exports){
59572
59746
  'use strict';
59573
59747
 
59574
59748
  var call = Function.prototype.call;
@@ -59578,7 +59752,7 @@ var bind = require('function-bind');
59578
59752
  /** @type {import('.')} */
59579
59753
  module.exports = bind.call(call, $hasOwn);
59580
59754
 
59581
- },{"function-bind":384}],396:[function(require,module,exports){
59755
+ },{"function-bind":385}],397:[function(require,module,exports){
59582
59756
  if (typeof Object.create === 'function') {
59583
59757
  // implementation from standard node.js 'util' module
59584
59758
  module.exports = function inherits(ctor, superCtor) {
@@ -59607,7 +59781,7 @@ if (typeof Object.create === 'function') {
59607
59781
  }
59608
59782
  }
59609
59783
 
59610
- },{}],397:[function(require,module,exports){
59784
+ },{}],398:[function(require,module,exports){
59611
59785
  'use strict';
59612
59786
 
59613
59787
  var hasToStringTag = require('has-tostringtag/shams')();
@@ -59653,7 +59827,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
59653
59827
  /** @type {import('.')} */
59654
59828
  module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
59655
59829
 
59656
- },{"call-bound":370,"has-tostringtag/shams":394}],398:[function(require,module,exports){
59830
+ },{"call-bound":371,"has-tostringtag/shams":395}],399:[function(require,module,exports){
59657
59831
  'use strict';
59658
59832
 
59659
59833
  var fnToStr = Function.prototype.toString;
@@ -59756,7 +59930,7 @@ module.exports = reflectApply
59756
59930
  return tryFunctionObject(value);
59757
59931
  };
59758
59932
 
59759
- },{}],399:[function(require,module,exports){
59933
+ },{}],400:[function(require,module,exports){
59760
59934
  'use strict';
59761
59935
 
59762
59936
  var callBound = require('call-bound');
@@ -59805,7 +59979,7 @@ module.exports = function isGeneratorFunction(fn) {
59805
59979
  return getProto(fn) === GeneratorFunction;
59806
59980
  };
59807
59981
 
59808
- },{"call-bound":370,"get-proto":388,"has-tostringtag/shams":394,"safe-regex-test":417}],400:[function(require,module,exports){
59982
+ },{"call-bound":371,"get-proto":389,"has-tostringtag/shams":395,"safe-regex-test":418}],401:[function(require,module,exports){
59809
59983
  'use strict';
59810
59984
 
59811
59985
  var callBound = require('call-bound');
@@ -59876,7 +60050,7 @@ if (hasToStringTag) {
59876
60050
 
59877
60051
  module.exports = fn;
59878
60052
 
59879
- },{"call-bound":370,"gopd":390,"has-tostringtag/shams":394,"hasown":395}],401:[function(require,module,exports){
60053
+ },{"call-bound":371,"gopd":391,"has-tostringtag/shams":395,"hasown":396}],402:[function(require,module,exports){
59880
60054
  'use strict';
59881
60055
 
59882
60056
  var whichTypedArray = require('which-typed-array');
@@ -59886,19 +60060,19 @@ module.exports = function isTypedArray(value) {
59886
60060
  return !!whichTypedArray(value);
59887
60061
  };
59888
60062
 
59889
- },{"which-typed-array":422}],402:[function(require,module,exports){
60063
+ },{"which-typed-array":423}],403:[function(require,module,exports){
59890
60064
  'use strict';
59891
60065
 
59892
60066
  /** @type {import('./abs')} */
59893
60067
  module.exports = Math.abs;
59894
60068
 
59895
- },{}],403:[function(require,module,exports){
60069
+ },{}],404:[function(require,module,exports){
59896
60070
  'use strict';
59897
60071
 
59898
60072
  /** @type {import('./floor')} */
59899
60073
  module.exports = Math.floor;
59900
60074
 
59901
- },{}],404:[function(require,module,exports){
60075
+ },{}],405:[function(require,module,exports){
59902
60076
  'use strict';
59903
60077
 
59904
60078
  /** @type {import('./isNaN')} */
@@ -59906,31 +60080,31 @@ module.exports = Number.isNaN || function isNaN(a) {
59906
60080
  return a !== a;
59907
60081
  };
59908
60082
 
59909
- },{}],405:[function(require,module,exports){
60083
+ },{}],406:[function(require,module,exports){
59910
60084
  'use strict';
59911
60085
 
59912
60086
  /** @type {import('./max')} */
59913
60087
  module.exports = Math.max;
59914
60088
 
59915
- },{}],406:[function(require,module,exports){
60089
+ },{}],407:[function(require,module,exports){
59916
60090
  'use strict';
59917
60091
 
59918
60092
  /** @type {import('./min')} */
59919
60093
  module.exports = Math.min;
59920
60094
 
59921
- },{}],407:[function(require,module,exports){
60095
+ },{}],408:[function(require,module,exports){
59922
60096
  'use strict';
59923
60097
 
59924
60098
  /** @type {import('./pow')} */
59925
60099
  module.exports = Math.pow;
59926
60100
 
59927
- },{}],408:[function(require,module,exports){
60101
+ },{}],409:[function(require,module,exports){
59928
60102
  'use strict';
59929
60103
 
59930
60104
  /** @type {import('./round')} */
59931
60105
  module.exports = Math.round;
59932
60106
 
59933
- },{}],409:[function(require,module,exports){
60107
+ },{}],410:[function(require,module,exports){
59934
60108
  'use strict';
59935
60109
 
59936
60110
  var $isNaN = require('./isNaN');
@@ -59943,7 +60117,7 @@ module.exports = function sign(number) {
59943
60117
  return number < 0 ? -1 : +1;
59944
60118
  };
59945
60119
 
59946
- },{"./isNaN":404}],410:[function(require,module,exports){
60120
+ },{"./isNaN":405}],411:[function(require,module,exports){
59947
60121
  'use strict';
59948
60122
 
59949
60123
  var keysShim;
@@ -60067,7 +60241,7 @@ if (!Object.keys) {
60067
60241
  }
60068
60242
  module.exports = keysShim;
60069
60243
 
60070
- },{"./isArguments":412}],411:[function(require,module,exports){
60244
+ },{"./isArguments":413}],412:[function(require,module,exports){
60071
60245
  'use strict';
60072
60246
 
60073
60247
  var slice = Array.prototype.slice;
@@ -60101,7 +60275,7 @@ keysShim.shim = function shimObjectKeys() {
60101
60275
 
60102
60276
  module.exports = keysShim;
60103
60277
 
60104
- },{"./implementation":410,"./isArguments":412}],412:[function(require,module,exports){
60278
+ },{"./implementation":411,"./isArguments":413}],413:[function(require,module,exports){
60105
60279
  'use strict';
60106
60280
 
60107
60281
  var toStr = Object.prototype.toString;
@@ -60120,7 +60294,7 @@ module.exports = function isArguments(value) {
60120
60294
  return isArgs;
60121
60295
  };
60122
60296
 
60123
- },{}],413:[function(require,module,exports){
60297
+ },{}],414:[function(require,module,exports){
60124
60298
  'use strict';
60125
60299
 
60126
60300
  // modified from https://github.com/es-shims/es6-shim
@@ -60168,7 +60342,7 @@ module.exports = function assign(target, source1) {
60168
60342
  return to; // step 4
60169
60343
  };
60170
60344
 
60171
- },{"call-bound":370,"es-object-atoms":381,"has-symbols/shams":393,"object-keys":411}],414:[function(require,module,exports){
60345
+ },{"call-bound":371,"es-object-atoms":382,"has-symbols/shams":394,"object-keys":412}],415:[function(require,module,exports){
60172
60346
  'use strict';
60173
60347
 
60174
60348
  var implementation = require('./implementation');
@@ -60225,7 +60399,7 @@ module.exports = function getPolyfill() {
60225
60399
  return Object.assign;
60226
60400
  };
60227
60401
 
60228
- },{"./implementation":413}],415:[function(require,module,exports){
60402
+ },{"./implementation":414}],416:[function(require,module,exports){
60229
60403
  'use strict';
60230
60404
 
60231
60405
  /** @type {import('.')} */
@@ -60244,7 +60418,7 @@ module.exports = [
60244
60418
  'BigUint64Array'
60245
60419
  ];
60246
60420
 
60247
- },{}],416:[function(require,module,exports){
60421
+ },{}],417:[function(require,module,exports){
60248
60422
  // shim for using process in browser
60249
60423
  var process = module.exports = {};
60250
60424
 
@@ -60430,7 +60604,7 @@ process.chdir = function (dir) {
60430
60604
  };
60431
60605
  process.umask = function() { return 0; };
60432
60606
 
60433
- },{}],417:[function(require,module,exports){
60607
+ },{}],418:[function(require,module,exports){
60434
60608
  'use strict';
60435
60609
 
60436
60610
  var callBound = require('call-bound');
@@ -60449,7 +60623,7 @@ module.exports = function regexTester(regex) {
60449
60623
  };
60450
60624
  };
60451
60625
 
60452
- },{"call-bound":370,"es-errors/type":379,"is-regex":400}],418:[function(require,module,exports){
60626
+ },{"call-bound":371,"es-errors/type":380,"is-regex":401}],419:[function(require,module,exports){
60453
60627
  'use strict';
60454
60628
 
60455
60629
  var GetIntrinsic = require('get-intrinsic');
@@ -60493,9 +60667,9 @@ module.exports = function setFunctionLength(fn, length) {
60493
60667
  return fn;
60494
60668
  };
60495
60669
 
60496
- },{"define-data-property":371,"es-errors/type":379,"get-intrinsic":385,"gopd":390,"has-property-descriptors":391}],419:[function(require,module,exports){
60497
- arguments[4][359][0].apply(exports,arguments)
60498
- },{"dup":359}],420:[function(require,module,exports){
60670
+ },{"define-data-property":372,"es-errors/type":380,"get-intrinsic":386,"gopd":391,"has-property-descriptors":392}],420:[function(require,module,exports){
60671
+ arguments[4][360][0].apply(exports,arguments)
60672
+ },{"dup":360}],421:[function(require,module,exports){
60499
60673
  // Currently in sync with Node.js lib/internal/util/types.js
60500
60674
  // https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
60501
60675
 
@@ -60831,7 +61005,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
60831
61005
  });
60832
61006
  });
60833
61007
 
60834
- },{"is-arguments":397,"is-generator-function":399,"is-typed-array":401,"which-typed-array":422}],421:[function(require,module,exports){
61008
+ },{"is-arguments":398,"is-generator-function":400,"is-typed-array":402,"which-typed-array":423}],422:[function(require,module,exports){
60835
61009
  (function (process){(function (){
60836
61010
  // Copyright Joyent, Inc. and other Node contributors.
60837
61011
  //
@@ -61550,7 +61724,7 @@ function callbackify(original) {
61550
61724
  exports.callbackify = callbackify;
61551
61725
 
61552
61726
  }).call(this)}).call(this,require('_process'))
61553
- },{"./support/isBuffer":419,"./support/types":420,"_process":416,"inherits":396}],422:[function(require,module,exports){
61727
+ },{"./support/isBuffer":420,"./support/types":421,"_process":417,"inherits":397}],423:[function(require,module,exports){
61554
61728
  (function (global){(function (){
61555
61729
  'use strict';
61556
61730
 
@@ -61671,5 +61845,5 @@ module.exports = function whichTypedArray(value) {
61671
61845
  };
61672
61846
 
61673
61847
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
61674
- },{"available-typed-arrays":361,"call-bind":369,"call-bound":370,"for-each":382,"get-proto":388,"gopd":390,"has-tostringtag/shams":394}]},{},[111])(111)
61848
+ },{"available-typed-arrays":362,"call-bind":370,"call-bound":371,"for-each":383,"get-proto":389,"gopd":391,"has-tostringtag/shams":395}]},{},[112])(112)
61675
61849
  });