@designliquido/delegua 0.54.4 → 0.54.6

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 (69) hide show
  1. package/README.md +6 -0
  2. package/analisador-semantico/analisador-semantico-base.d.ts.map +1 -1
  3. package/analisador-semantico/analisador-semantico-base.js +1 -1
  4. package/analisador-semantico/analisador-semantico-base.js.map +1 -1
  5. package/avaliador-sintatico/avaliador-sintatico.d.ts.map +1 -1
  6. package/avaliador-sintatico/avaliador-sintatico.js +4 -7
  7. package/avaliador-sintatico/avaliador-sintatico.js.map +1 -1
  8. package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.d.ts +6 -0
  9. package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.d.ts.map +1 -1
  10. package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.js +66 -14
  11. package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.js.map +1 -1
  12. package/bibliotecas/dialetos/egua-classico/biblioteca-global.d.ts.map +1 -1
  13. package/bibliotecas/dialetos/egua-classico/biblioteca-global.js +139 -115
  14. package/bibliotecas/dialetos/egua-classico/biblioteca-global.js.map +1 -1
  15. package/bibliotecas/primitivas-texto.d.ts.map +1 -1
  16. package/bibliotecas/primitivas-texto.js +30 -0
  17. package/bibliotecas/primitivas-texto.js.map +1 -1
  18. package/bin/package.json +1 -1
  19. package/construtos/index.d.ts +1 -0
  20. package/construtos/index.d.ts.map +1 -1
  21. package/construtos/index.js +1 -0
  22. package/construtos/index.js.map +1 -1
  23. package/construtos/lista-compreensao.d.ts +16 -0
  24. package/construtos/lista-compreensao.d.ts.map +1 -0
  25. package/construtos/lista-compreensao.js +21 -0
  26. package/construtos/lista-compreensao.js.map +1 -0
  27. package/formatadores/formatador-pitugues.d.ts.map +1 -1
  28. package/formatadores/formatador-pitugues.js.map +1 -1
  29. package/inferenciador.js +1 -1
  30. package/inferenciador.js.map +1 -1
  31. package/interfaces/visitante-comum-interface.d.ts.map +1 -1
  32. package/interfaces/visitante-delegua-interface.d.ts +2 -1
  33. package/interfaces/visitante-delegua-interface.d.ts.map +1 -1
  34. package/interpretador/dialetos/egua-classico/interpretador-egua-classico.d.ts +1 -0
  35. package/interpretador/dialetos/egua-classico/interpretador-egua-classico.d.ts.map +1 -1
  36. package/interpretador/dialetos/egua-classico/interpretador-egua-classico.js +15 -3
  37. package/interpretador/dialetos/egua-classico/interpretador-egua-classico.js.map +1 -1
  38. package/interpretador/interpretador-base.d.ts +13 -2
  39. package/interpretador/interpretador-base.d.ts.map +1 -1
  40. package/interpretador/interpretador-base.js +71 -3
  41. package/interpretador/interpretador-base.js.map +1 -1
  42. package/interpretador/interpretador.d.ts +4 -2
  43. package/interpretador/interpretador.d.ts.map +1 -1
  44. package/interpretador/interpretador.js +14 -0
  45. package/interpretador/interpretador.js.map +1 -1
  46. package/lexador/dialetos/lexador-pitugues.d.ts +1 -0
  47. package/lexador/dialetos/lexador-pitugues.d.ts.map +1 -1
  48. package/lexador/dialetos/lexador-pitugues.js +12 -1
  49. package/lexador/dialetos/lexador-pitugues.js.map +1 -1
  50. package/lexador/dialetos/palavras-reservadas/pitugues.d.ts +1 -0
  51. package/lexador/dialetos/palavras-reservadas/pitugues.d.ts.map +1 -1
  52. package/lexador/dialetos/palavras-reservadas/pitugues.js +1 -0
  53. package/lexador/dialetos/palavras-reservadas/pitugues.js.map +1 -1
  54. package/lexador/palavras-reservadas.d.ts +1 -0
  55. package/lexador/palavras-reservadas.d.ts.map +1 -1
  56. package/lexador/palavras-reservadas.js +1 -0
  57. package/lexador/palavras-reservadas.js.map +1 -1
  58. package/package.json +1 -1
  59. package/quebras/index.d.ts.map +1 -1
  60. package/quebras/index.js.map +1 -1
  61. package/tipos-de-simbolos/delegua.d.ts +1 -0
  62. package/tipos-de-simbolos/delegua.d.ts.map +1 -1
  63. package/tipos-de-simbolos/delegua.js +1 -0
  64. package/tipos-de-simbolos/delegua.js.map +1 -1
  65. package/tipos-de-simbolos/pitugues.d.ts +2 -0
  66. package/tipos-de-simbolos/pitugues.d.ts.map +1 -1
  67. package/tipos-de-simbolos/pitugues.js +2 -0
  68. package/tipos-de-simbolos/pitugues.js.map +1 -1
  69. package/umd/delegua.js +607 -407
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;
@@ -1242,11 +1242,8 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
1242
1242
  vetor.tipo = 'vetor';
1243
1243
  }
1244
1244
  }
1245
- if (!vetor.hasOwnProperty('tipo')) {
1246
- throw this.erro(simboloPara, `Variável ou constante em 'para cada' não parece possuir um tipo iterável.`);
1247
- }
1248
1245
  const tipoVetor = vetor.tipo;
1249
- if (!tipoVetor.endsWith('[]') && !['dicionário', 'qualquer', 'vetor'].includes(tipoVetor)) {
1246
+ if (!tipoVetor.endsWith('[]') && !['dicionário', 'qualquer', 'texto', 'vetor'].includes(tipoVetor)) {
1250
1247
  throw this.erro(simboloPara, `Variável ou constante em 'para cada' não é iterável. Tipo resolvido: ${tipoVetor}.`);
1251
1248
  }
1252
1249
  let tipoVariavelIteracao = 'qualquer';
@@ -2093,7 +2090,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
2093
2090
  }
2094
2091
  exports.AvaliadorSintatico = AvaliadorSintatico;
2095
2092
 
2096
- },{"../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){
2093
+ },{"../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){
2097
2094
  "use strict";
2098
2095
  Object.defineProperty(exports, "__esModule", { value: true });
2099
2096
  exports.buscarRetornos = buscarRetornos;
@@ -2193,7 +2190,7 @@ function registrarPrimitiva(primitivasConhecidas, tipo, catalogoPrimitivas) {
2193
2190
  }
2194
2191
  }
2195
2192
 
2196
- },{"../informacao-elemento-sintatico":113}],4:[function(require,module,exports){
2193
+ },{"../informacao-elemento-sintatico":114}],4:[function(require,module,exports){
2197
2194
  "use strict";
2198
2195
  var __importDefault = (this && this.__importDefault) || function (mod) {
2199
2196
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -2848,7 +2845,7 @@ class AvaliadorSintaticoEguaClassico {
2848
2845
  }
2849
2846
  exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
2850
2847
 
2851
- },{"../../construtos":49,"../../declaracoes":93,"../../tipos-de-simbolos/egua-classico":183,"../erro-avaliador-sintatico":10}],5:[function(require,module,exports){
2848
+ },{"../../construtos":49,"../../declaracoes":94,"../../tipos-de-simbolos/egua-classico":184,"../erro-avaliador-sintatico":10}],5:[function(require,module,exports){
2852
2849
  "use strict";
2853
2850
  var __importDefault = (this && this.__importDefault) || function (mod) {
2854
2851
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -2871,6 +2868,7 @@ const primitivas_dicionario_1 = __importDefault(require("../../bibliotecas/primi
2871
2868
  const primitivas_numero_1 = __importDefault(require("../../bibliotecas/primitivas-numero"));
2872
2869
  const primitivas_texto_1 = __importDefault(require("../../bibliotecas/primitivas-texto"));
2873
2870
  const primitivas_vetor_1 = __importDefault(require("../../bibliotecas/primitivas-vetor"));
2871
+ const lista_compreensao_1 = require("../../construtos/lista-compreensao");
2874
2872
  /**
2875
2873
  * O avaliador sintático (_Parser_) é responsável por transformar os símbolos do Lexador em estruturas de alto nível.
2876
2874
  * Essas estruturas de alto nível são as partes que executam lógica de programação de fato.
@@ -3075,20 +3073,6 @@ class AvaliadorSintaticoPitugues {
3075
3073
  const simboloAtual = this.simbolos[this.atual];
3076
3074
  let valores = [];
3077
3075
  switch (simboloAtual.tipo) {
3078
- case pitugues_2.default.COLCHETE_ESQUERDO:
3079
- this.avancarEDevolverAnterior();
3080
- if (this.verificarSeSimboloAtualEIgualA(pitugues_2.default.COLCHETE_DIREITO)) {
3081
- return new construtos_1.Vetor(this.hashArquivo, simboloAtual.linha, [], 0, 'qualquer[]');
3082
- }
3083
- while (!this.verificarSeSimboloAtualEIgualA(pitugues_2.default.COLCHETE_DIREITO)) {
3084
- const valor = this.atribuir();
3085
- valores.push(valor);
3086
- if (this.simbolos[this.atual].tipo !== pitugues_2.default.COLCHETE_DIREITO) {
3087
- this.consumir(pitugues_2.default.VIRGULA, 'Esperado vírgula antes da próxima expressão.');
3088
- }
3089
- }
3090
- const tipoVetor = (0, inferenciador_1.inferirTipoVariavel)(valores);
3091
- return new construtos_1.Vetor(this.hashArquivo, simboloAtual.linha, valores, valores.length, tipoVetor);
3092
3076
  case pitugues_2.default.CHAVE_ESQUERDA:
3093
3077
  this.avancarEDevolverAnterior();
3094
3078
  const chaves = [];
@@ -3106,6 +3090,26 @@ class AvaliadorSintaticoPitugues {
3106
3090
  }
3107
3091
  }
3108
3092
  return new construtos_1.Dicionario(this.hashArquivo, simboloAtual.linha, chaves, valores);
3093
+ case pitugues_2.default.COLCHETE_ESQUERDO:
3094
+ this.avancarEDevolverAnterior();
3095
+ if (this.verificarSeSimboloAtualEIgualA(pitugues_2.default.COLCHETE_DIREITO)) {
3096
+ return new construtos_1.Vetor(this.hashArquivo, simboloAtual.linha, [], 0, 'qualquer[]');
3097
+ }
3098
+ if (this.simbolos[this.atual].tipo == 'IDENTIFICADOR' && !this.verificarTipoProximoSimbolo(pitugues_2.default.VIRGULA)) {
3099
+ return this.resolverListaDeCompreensao();
3100
+ }
3101
+ while (!this.verificarSeSimboloAtualEIgualA(pitugues_2.default.COLCHETE_DIREITO)) {
3102
+ const valor = this.atribuir();
3103
+ valores.push(valor);
3104
+ if (this.simbolos[this.atual].tipo !== pitugues_2.default.COLCHETE_DIREITO) {
3105
+ this.consumir(pitugues_2.default.VIRGULA, 'Esperado vírgula antes da próxima expressão.');
3106
+ }
3107
+ }
3108
+ const tipoVetor = (0, inferenciador_1.inferirTipoVariavel)(valores);
3109
+ return new construtos_1.Vetor(this.hashArquivo, simboloAtual.linha, valores, valores.length, tipoVetor);
3110
+ case pitugues_2.default.COMENTARIO:
3111
+ const simboloComentario = this.avancarEDevolverAnterior();
3112
+ return new construtos_1.ComentarioComoConstruto(simboloComentario);
3109
3113
  case pitugues_2.default.FALSO:
3110
3114
  case pitugues_2.default.VERDADEIRO:
3111
3115
  const simboloLogico = this.avancarEDevolverAnterior();
@@ -3601,6 +3605,7 @@ class AvaliadorSintaticoPitugues {
3601
3605
  case pitugues_2.default.PARA:
3602
3606
  this.avancarEDevolverAnterior();
3603
3607
  return this.declaracaoPara();
3608
+ case pitugues_2.default.QUEBRAR:
3604
3609
  case pitugues_2.default.SUSTAR:
3605
3610
  this.avancarEDevolverAnterior();
3606
3611
  return this.declaracaoSustar();
@@ -3658,6 +3663,50 @@ class AvaliadorSintaticoPitugues {
3658
3663
  } while (this.verificarSeSimboloAtualEIgualA(pitugues_2.default.VIRGULA));
3659
3664
  return parametros;
3660
3665
  }
3666
+ /**
3667
+ * Resolve uma lista de compreensão.
3668
+ * @returns {ListaCompreensao} A lista de compreensão resolvida.
3669
+ */
3670
+ resolverListaDeCompreensao() {
3671
+ // TODO: Se expressão não começar com um identificador, por exemplo `3 * x`, como faríamos para
3672
+ // aceitar o `x` na avaliação da expressão?
3673
+ if (this.simbolos[this.atual].tipo === pitugues_2.default.IDENTIFICADOR) {
3674
+ // Antes de avaliar a condição, precisamos registrar a variável de iteração.
3675
+ const simboloVariavelIteracao = this.simbolos[this.atual];
3676
+ this.pilhaEscopos.definirInformacoesVariavel(simboloVariavelIteracao.lexema, new informacao_elemento_sintatico_1.InformacaoElementoSintatico(simboloVariavelIteracao.lexema, 'qualquer') // TODO: Talvez um dia inferir o tipo aqui.
3677
+ );
3678
+ }
3679
+ const retornoExpressao = this.expressao();
3680
+ this.consumir(pitugues_2.default.PARA, "Esperado instrução 'para' após identificado.");
3681
+ this.consumir(pitugues_2.default.CADA, "Esperado instrução 'cada' após 'para'.");
3682
+ const simboloVariavelIteracao = this.consumir(pitugues_2.default.IDENTIFICADOR, "Esperado identificador de variável após 'para cada'.");
3683
+ // TODO: Manter essa validação aqui? Se sim, como resolver a expressão?
3684
+ /* if (identificador.lexema != simboloVariavelIteracao.lexema) {
3685
+ throw this.erro(
3686
+ this.simbolos[this.atual],
3687
+ "Identificadores de variáveis não correspondentes."
3688
+ )
3689
+ } */
3690
+ if (!this.verificarSeSimboloAtualEIgualA(pitugues_2.default.DE, pitugues_2.default.EM)) {
3691
+ 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.");
3692
+ }
3693
+ const localizacaoVetor = this.simboloAnterior();
3694
+ const vetor = this.expressao();
3695
+ this.consumir(pitugues_2.default.SE, "Esperado condição 'se' após vetor.");
3696
+ const condicao = this.expressao();
3697
+ this.consumir(pitugues_2.default.COLCHETE_DIREITO, 'Espero fechamento de colchetes após condição.');
3698
+ const tipoVetor = vetor.tipo;
3699
+ if (!tipoVetor.endsWith('[]') && !['qualquer', 'vetor'].includes(tipoVetor)) {
3700
+ throw this.erro(localizacaoVetor, `Variável ou constante em 'para cada' não é iterável. Tipo resolvido: ${tipoVetor}.`);
3701
+ }
3702
+ const variavelIteracao = new construtos_1.Variavel(this.hashArquivo, simboloVariavelIteracao);
3703
+ 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, [
3704
+ new declaracoes_1.Se(condicao, new declaracoes_1.Bloco(retornoExpressao.hashArquivo, retornoExpressao.linha, [
3705
+ new declaracoes_1.Retorna(simboloVariavelIteracao, retornoExpressao)
3706
+ ]), [], null)
3707
+ ])), 'qualquer[]' // TODO: Talvez um dia inferir o tipo aqui.
3708
+ );
3709
+ }
3661
3710
  verificarDefinicaoTipoAtual() {
3662
3711
  const tipos = [...Object.values(pitugues_1.default)];
3663
3712
  if (this.simbolos[this.atual].lexema in this.tiposDefinidosEmCodigo) {
@@ -3878,7 +3927,7 @@ class AvaliadorSintaticoPitugues {
3878
3927
  }
3879
3928
  exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
3880
3929
 
3881
- },{"../../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){
3930
+ },{"../../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){
3882
3931
  "use strict";
3883
3932
  var __importDefault = (this && this.__importDefault) || function (mod) {
3884
3933
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -4052,7 +4101,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
4052
4101
  }
4053
4102
  exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
4054
4103
 
4055
- },{"../../construtos":49,"../../declaracoes":93,"../../tipos-de-simbolos/portugol-ipt":187,"../avaliador-sintatico-base":1}],7:[function(require,module,exports){
4104
+ },{"../../construtos":49,"../../declaracoes":94,"../../tipos-de-simbolos/portugol-ipt":188,"../avaliador-sintatico-base":1}],7:[function(require,module,exports){
4056
4105
  "use strict";
4057
4106
  var __importDefault = (this && this.__importDefault) || function (mod) {
4058
4107
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -5040,7 +5089,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
5040
5089
  }
5041
5090
  exports.AvaliadorSintaticoTenda = AvaliadorSintaticoTenda;
5042
5091
 
5043
- },{"../../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){
5092
+ },{"../../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){
5044
5093
  "use strict";
5045
5094
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5046
5095
  if (k2 === undefined) k2 = k;
@@ -5245,7 +5294,7 @@ class MicroAvaliadorSintaticoBase {
5245
5294
  }
5246
5295
  exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
5247
5296
 
5248
- },{"../construtos":49,"../tipos-de-simbolos/comum":181,"./erro-avaliador-sintatico":10}],14:[function(require,module,exports){
5297
+ },{"../construtos":49,"../tipos-de-simbolos/comum":182,"./erro-avaliador-sintatico":10}],14:[function(require,module,exports){
5249
5298
  "use strict";
5250
5299
  var __importDefault = (this && this.__importDefault) || function (mod) {
5251
5300
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -5447,7 +5496,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
5447
5496
  }
5448
5497
  exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
5449
5498
 
5450
- },{"../construtos":49,"../tipos-de-simbolos/microgramaticas/delegua":185,"./micro-avaliador-sintatico-base":13}],15:[function(require,module,exports){
5499
+ },{"../construtos":49,"../tipos-de-simbolos/microgramaticas/delegua":186,"./micro-avaliador-sintatico-base":13}],15:[function(require,module,exports){
5451
5500
  "use strict";
5452
5501
  Object.defineProperty(exports, "__esModule", { value: true });
5453
5502
  exports.MontaoTipos = void 0;
@@ -5498,7 +5547,7 @@ class MontaoTipos {
5498
5547
  }
5499
5548
  exports.MontaoTipos = MontaoTipos;
5500
5549
 
5501
- },{"../geracao-identificadores":110,"./erro-avaliador-sintatico":10}],16:[function(require,module,exports){
5550
+ },{"../geracao-identificadores":111,"./erro-avaliador-sintatico":10}],16:[function(require,module,exports){
5502
5551
  "use strict";
5503
5552
  Object.defineProperty(exports, "__esModule", { value: true });
5504
5553
  exports.PilhaEscopos = void 0;
@@ -6278,7 +6327,7 @@ async function tupla(interpretador, vetor) {
6278
6327
  }
6279
6328
  }
6280
6329
 
6281
- },{"../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){
6330
+ },{"../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){
6282
6331
  "use strict";
6283
6332
  Object.defineProperty(exports, "__esModule", { value: true });
6284
6333
  const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
@@ -6335,7 +6384,7 @@ exports.default = {
6335
6384
  },
6336
6385
  };
6337
6386
 
6338
- },{"../informacao-elemento-sintatico":113}],21:[function(require,module,exports){
6387
+ },{"../informacao-elemento-sintatico":114}],21:[function(require,module,exports){
6339
6388
  "use strict";
6340
6389
  Object.defineProperty(exports, "__esModule", { value: true });
6341
6390
  const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
@@ -6420,7 +6469,7 @@ exports.default = {
6420
6469
  },
6421
6470
  };
6422
6471
 
6423
- },{"../informacao-elemento-sintatico":113}],22:[function(require,module,exports){
6472
+ },{"../informacao-elemento-sintatico":114}],22:[function(require,module,exports){
6424
6473
  "use strict";
6425
6474
  Object.defineProperty(exports, "__esModule", { value: true });
6426
6475
  const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
@@ -6620,9 +6669,39 @@ exports.default = {
6620
6669
  '\n\n ### Formas de uso \n',
6621
6670
  exemploCodigo: 'texto.tamanho()',
6622
6671
  },
6672
+ tudoMaiusculo: {
6673
+ tipoRetorno: 'lógico',
6674
+ argumentos: [],
6675
+ implementacao: (interpretador, nomePrimitiva, texto) => Promise.resolve(texto === texto.toUpperCase()),
6676
+ assinaturaFormato: 'texto.tudoMaiusculo()',
6677
+ documentacao: '# `texto.tudoMaiusculo()` \n\n' +
6678
+ 'Devolve verdadeiro se todos os caracteres alfabéticos do texto estão em maiúsculo, e falso em caso contrário.' +
6679
+ '\n\n ## Exemplo de Código\n' +
6680
+ '\n\n```delegua\nvar t1 = "TUDO EM MAIÚSCULO"\n' +
6681
+ 'var t2 = "Tudo em Maiúsculo"\n' +
6682
+ 't1.tudoMaiusculo() // verdadeiro\n' +
6683
+ 't2.tudoMaiusculo() // falso\n```' +
6684
+ '\n\n ### Formas de uso \n',
6685
+ exemploCodigo: 'texto.tudoMaiusculo()',
6686
+ },
6687
+ tudoMinusculo: {
6688
+ tipoRetorno: 'lógico',
6689
+ argumentos: [],
6690
+ implementacao: (interpretador, nomePrimitiva, texto) => Promise.resolve(texto === texto.toLowerCase()),
6691
+ assinaturaFormato: 'texto.tudoMinusculo()',
6692
+ documentacao: '# `texto.tudoMinusculo()` \n\n' +
6693
+ 'Devolve verdadeiro se todos os caracteres alfabéticos do texto estão em minúsculo, e falso em caso contrário.' +
6694
+ '\n\n ## Exemplo de Código\n' +
6695
+ '\n\n```delegua\nvar t1 = "tudo em minúsculo"\n' +
6696
+ 'var t2 = "Tudo em Minúsculo"\n' +
6697
+ 't1.tudoMinusculo() // verdadeiro\n' +
6698
+ 't2.tudoMinusculo() // falso\n```' +
6699
+ '\n\n ### Formas de uso \n',
6700
+ exemploCodigo: 'texto.tudoMinusculo()',
6701
+ },
6623
6702
  };
6624
6703
 
6625
- },{"../informacao-elemento-sintatico":113}],23:[function(require,module,exports){
6704
+ },{"../informacao-elemento-sintatico":114}],23:[function(require,module,exports){
6626
6705
  "use strict";
6627
6706
  Object.defineProperty(exports, "__esModule", { value: true });
6628
6707
  const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
@@ -6969,7 +7048,7 @@ exports.default = {
6969
7048
  },
6970
7049
  };
6971
7050
 
6972
- },{"../informacao-elemento-sintatico":113}],24:[function(require,module,exports){
7051
+ },{"../informacao-elemento-sintatico":114}],24:[function(require,module,exports){
6973
7052
  "use strict";
6974
7053
  Object.defineProperty(exports, "__esModule", { value: true });
6975
7054
  exports.AcessoElementoMatriz = void 0;
@@ -7319,7 +7398,7 @@ class Chamada {
7319
7398
  }
7320
7399
  exports.Chamada = Chamada;
7321
7400
 
7322
- },{"../geracao-identificadores":110}],36:[function(require,module,exports){
7401
+ },{"../geracao-identificadores":111}],36:[function(require,module,exports){
7323
7402
  "use strict";
7324
7403
  Object.defineProperty(exports, "__esModule", { value: true });
7325
7404
  exports.ComentarioComoConstruto = void 0;
@@ -7642,6 +7721,7 @@ __exportStar(require("./formatacao-escrita"), exports);
7642
7721
  __exportStar(require("./funcao"), exports);
7643
7722
  __exportStar(require("./isto"), exports);
7644
7723
  __exportStar(require("./leia"), exports);
7724
+ __exportStar(require("./lista-compreensao"), exports);
7645
7725
  __exportStar(require("./literal"), exports);
7646
7726
  __exportStar(require("./logico"), exports);
7647
7727
  __exportStar(require("./para-cada-como-construto"), exports);
@@ -7657,7 +7737,7 @@ __exportStar(require("./unario"), exports);
7657
7737
  __exportStar(require("./variavel"), exports);
7658
7738
  __exportStar(require("./vetor"), exports);
7659
7739
 
7660
- },{"./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){
7740
+ },{"./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){
7661
7741
  "use strict";
7662
7742
  Object.defineProperty(exports, "__esModule", { value: true });
7663
7743
  exports.Isto = void 0;
@@ -7702,7 +7782,29 @@ class Leia {
7702
7782
  }
7703
7783
  exports.Leia = Leia;
7704
7784
 
7705
- },{"../geracao-identificadores":110}],52:[function(require,module,exports){
7785
+ },{"../geracao-identificadores":111}],52:[function(require,module,exports){
7786
+ "use strict";
7787
+ Object.defineProperty(exports, "__esModule", { value: true });
7788
+ exports.ListaCompreensao = void 0;
7789
+ class ListaCompreensao {
7790
+ constructor(hashArquivo, linha, expressaoRetorno, referenciaVariavelIteracao, paraCada, tipo) {
7791
+ this.linha = linha;
7792
+ this.hashArquivo = hashArquivo;
7793
+ this.expressaoRetorno = expressaoRetorno;
7794
+ this.referenciaVariavelIteracao = referenciaVariavelIteracao;
7795
+ this.paraCada = paraCada;
7796
+ this.tipo = tipo;
7797
+ }
7798
+ async aceitar(visitante) {
7799
+ return await visitante.visitarExpressaoListaCompreensao(this);
7800
+ }
7801
+ paraTexto() {
7802
+ return `<lista-compreensão />`;
7803
+ }
7804
+ }
7805
+ exports.ListaCompreensao = ListaCompreensao;
7806
+
7807
+ },{}],53:[function(require,module,exports){
7706
7808
  "use strict";
7707
7809
  Object.defineProperty(exports, "__esModule", { value: true });
7708
7810
  exports.Literal = void 0;
@@ -7722,7 +7824,7 @@ class Literal {
7722
7824
  }
7723
7825
  exports.Literal = Literal;
7724
7826
 
7725
- },{}],53:[function(require,module,exports){
7827
+ },{}],54:[function(require,module,exports){
7726
7828
  "use strict";
7727
7829
  Object.defineProperty(exports, "__esModule", { value: true });
7728
7830
  exports.Logico = void 0;
@@ -7745,7 +7847,7 @@ class Logico {
7745
7847
  }
7746
7848
  exports.Logico = Logico;
7747
7849
 
7748
- },{}],54:[function(require,module,exports){
7850
+ },{}],55:[function(require,module,exports){
7749
7851
  "use strict";
7750
7852
  Object.defineProperty(exports, "__esModule", { value: true });
7751
7853
  exports.ParaCadaComoConstruto = void 0;
@@ -7767,7 +7869,7 @@ class ParaCadaComoConstruto {
7767
7869
  }
7768
7870
  exports.ParaCadaComoConstruto = ParaCadaComoConstruto;
7769
7871
 
7770
- },{}],55:[function(require,module,exports){
7872
+ },{}],56:[function(require,module,exports){
7771
7873
  "use strict";
7772
7874
  Object.defineProperty(exports, "__esModule", { value: true });
7773
7875
  exports.ParaComoConstruto = void 0;
@@ -7792,7 +7894,7 @@ class ParaComoConstruto {
7792
7894
  }
7793
7895
  exports.ParaComoConstruto = ParaComoConstruto;
7794
7896
 
7795
- },{}],56:[function(require,module,exports){
7897
+ },{}],57:[function(require,module,exports){
7796
7898
  "use strict";
7797
7899
  Object.defineProperty(exports, "__esModule", { value: true });
7798
7900
  exports.ReferenciaBibliotecaGlobal = void 0;
@@ -7815,7 +7917,7 @@ class ReferenciaBibliotecaGlobal {
7815
7917
  }
7816
7918
  exports.ReferenciaBibliotecaGlobal = ReferenciaBibliotecaGlobal;
7817
7919
 
7818
- },{}],57:[function(require,module,exports){
7920
+ },{}],58:[function(require,module,exports){
7819
7921
  "use strict";
7820
7922
  Object.defineProperty(exports, "__esModule", { value: true });
7821
7923
  exports.ReferenciaFuncao = void 0;
@@ -7836,7 +7938,7 @@ class ReferenciaFuncao {
7836
7938
  }
7837
7939
  exports.ReferenciaFuncao = ReferenciaFuncao;
7838
7940
 
7839
- },{}],58:[function(require,module,exports){
7941
+ },{}],59:[function(require,module,exports){
7840
7942
  "use strict";
7841
7943
  Object.defineProperty(exports, "__esModule", { value: true });
7842
7944
  exports.Separador = void 0;
@@ -7855,7 +7957,7 @@ class Separador {
7855
7957
  }
7856
7958
  exports.Separador = Separador;
7857
7959
 
7858
- },{}],59:[function(require,module,exports){
7960
+ },{}],60:[function(require,module,exports){
7859
7961
  "use strict";
7860
7962
  Object.defineProperty(exports, "__esModule", { value: true });
7861
7963
  exports.Super = void 0;
@@ -7875,7 +7977,7 @@ class Super {
7875
7977
  }
7876
7978
  exports.Super = Super;
7877
7979
 
7878
- },{}],60:[function(require,module,exports){
7980
+ },{}],61:[function(require,module,exports){
7879
7981
  "use strict";
7880
7982
  Object.defineProperty(exports, "__esModule", { value: true });
7881
7983
  exports.TipoDe = void 0;
@@ -7899,7 +8001,7 @@ class TipoDe {
7899
8001
  }
7900
8002
  exports.TipoDe = TipoDe;
7901
8003
 
7902
- },{}],61:[function(require,module,exports){
8004
+ },{}],62:[function(require,module,exports){
7903
8005
  "use strict";
7904
8006
  Object.defineProperty(exports, "__esModule", { value: true });
7905
8007
  exports.Tupla = void 0;
@@ -7910,7 +8012,7 @@ class Tupla {
7910
8012
  }
7911
8013
  exports.Tupla = Tupla;
7912
8014
 
7913
- },{}],62:[function(require,module,exports){
8015
+ },{}],63:[function(require,module,exports){
7914
8016
  "use strict";
7915
8017
  Object.defineProperty(exports, "__esModule", { value: true });
7916
8018
  exports.Deceto = void 0;
@@ -7958,7 +8060,7 @@ class Deceto extends tupla_1.Tupla {
7958
8060
  }
7959
8061
  exports.Deceto = Deceto;
7960
8062
 
7961
- },{"../tupla":61}],63:[function(require,module,exports){
8063
+ },{"../tupla":62}],64:[function(require,module,exports){
7962
8064
  "use strict";
7963
8065
  Object.defineProperty(exports, "__esModule", { value: true });
7964
8066
  exports.Dupla = void 0;
@@ -7977,7 +8079,7 @@ class Dupla extends tupla_1.Tupla {
7977
8079
  }
7978
8080
  exports.Dupla = Dupla;
7979
8081
 
7980
- },{"../tupla":61}],64:[function(require,module,exports){
8082
+ },{"../tupla":62}],65:[function(require,module,exports){
7981
8083
  "use strict";
7982
8084
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7983
8085
  if (k2 === undefined) k2 = k;
@@ -8045,7 +8147,7 @@ class SeletorTuplas {
8045
8147
  }
8046
8148
  exports.SeletorTuplas = SeletorTuplas;
8047
8149
 
8048
- },{"./deceto":62,"./dupla":63,"./noneto":65,"./octeto":66,"./quarteto":67,"./quinteto":68,"./septeto":69,"./sexteto":70,"./trio":71}],65:[function(require,module,exports){
8150
+ },{"./deceto":63,"./dupla":64,"./noneto":66,"./octeto":67,"./quarteto":68,"./quinteto":69,"./septeto":70,"./sexteto":71,"./trio":72}],66:[function(require,module,exports){
8049
8151
  "use strict";
8050
8152
  Object.defineProperty(exports, "__esModule", { value: true });
8051
8153
  exports.Noneto = void 0;
@@ -8084,7 +8186,7 @@ class Noneto extends tupla_1.Tupla {
8084
8186
  }
8085
8187
  exports.Noneto = Noneto;
8086
8188
 
8087
- },{"../tupla":61}],66:[function(require,module,exports){
8189
+ },{"../tupla":62}],67:[function(require,module,exports){
8088
8190
  "use strict";
8089
8191
  Object.defineProperty(exports, "__esModule", { value: true });
8090
8192
  exports.Octeto = void 0;
@@ -8121,7 +8223,7 @@ class Octeto extends tupla_1.Tupla {
8121
8223
  }
8122
8224
  exports.Octeto = Octeto;
8123
8225
 
8124
- },{"../tupla":61}],67:[function(require,module,exports){
8226
+ },{"../tupla":62}],68:[function(require,module,exports){
8125
8227
  "use strict";
8126
8228
  Object.defineProperty(exports, "__esModule", { value: true });
8127
8229
  exports.Quarteto = void 0;
@@ -8144,7 +8246,7 @@ class Quarteto extends tupla_1.Tupla {
8144
8246
  }
8145
8247
  exports.Quarteto = Quarteto;
8146
8248
 
8147
- },{"../tupla":61}],68:[function(require,module,exports){
8249
+ },{"../tupla":62}],69:[function(require,module,exports){
8148
8250
  "use strict";
8149
8251
  Object.defineProperty(exports, "__esModule", { value: true });
8150
8252
  exports.Quinteto = void 0;
@@ -8169,7 +8271,7 @@ class Quinteto extends tupla_1.Tupla {
8169
8271
  }
8170
8272
  exports.Quinteto = Quinteto;
8171
8273
 
8172
- },{"../tupla":61}],69:[function(require,module,exports){
8274
+ },{"../tupla":62}],70:[function(require,module,exports){
8173
8275
  "use strict";
8174
8276
  Object.defineProperty(exports, "__esModule", { value: true });
8175
8277
  exports.Septeto = void 0;
@@ -8204,7 +8306,7 @@ class Septeto extends tupla_1.Tupla {
8204
8306
  }
8205
8307
  exports.Septeto = Septeto;
8206
8308
 
8207
- },{"../tupla":61}],70:[function(require,module,exports){
8309
+ },{"../tupla":62}],71:[function(require,module,exports){
8208
8310
  "use strict";
8209
8311
  Object.defineProperty(exports, "__esModule", { value: true });
8210
8312
  exports.Sexteto = void 0;
@@ -8231,7 +8333,7 @@ class Sexteto extends tupla_1.Tupla {
8231
8333
  }
8232
8334
  exports.Sexteto = Sexteto;
8233
8335
 
8234
- },{"../tupla":61}],71:[function(require,module,exports){
8336
+ },{"../tupla":62}],72:[function(require,module,exports){
8235
8337
  "use strict";
8236
8338
  Object.defineProperty(exports, "__esModule", { value: true });
8237
8339
  exports.Trio = void 0;
@@ -8252,7 +8354,7 @@ class Trio extends tupla_1.Tupla {
8252
8354
  }
8253
8355
  exports.Trio = Trio;
8254
8356
 
8255
- },{"../tupla":61}],72:[function(require,module,exports){
8357
+ },{"../tupla":62}],73:[function(require,module,exports){
8256
8358
  "use strict";
8257
8359
  Object.defineProperty(exports, "__esModule", { value: true });
8258
8360
  exports.Unario = void 0;
@@ -8273,7 +8375,7 @@ class Unario {
8273
8375
  }
8274
8376
  exports.Unario = Unario;
8275
8377
 
8276
- },{}],73:[function(require,module,exports){
8378
+ },{}],74:[function(require,module,exports){
8277
8379
  "use strict";
8278
8380
  Object.defineProperty(exports, "__esModule", { value: true });
8279
8381
  exports.Variavel = void 0;
@@ -8293,7 +8395,7 @@ class Variavel {
8293
8395
  }
8294
8396
  exports.Variavel = Variavel;
8295
8397
 
8296
- },{}],74:[function(require,module,exports){
8398
+ },{}],75:[function(require,module,exports){
8297
8399
  "use strict";
8298
8400
  Object.defineProperty(exports, "__esModule", { value: true });
8299
8401
  exports.Vetor = void 0;
@@ -8319,7 +8421,7 @@ class Vetor {
8319
8421
  }
8320
8422
  exports.Vetor = Vetor;
8321
8423
 
8322
- },{}],75:[function(require,module,exports){
8424
+ },{}],76:[function(require,module,exports){
8323
8425
  "use strict";
8324
8426
  Object.defineProperty(exports, "__esModule", { value: true });
8325
8427
  exports.Aleatorio = void 0;
@@ -8340,7 +8442,7 @@ class Aleatorio extends declaracao_1.Declaracao {
8340
8442
  }
8341
8443
  exports.Aleatorio = Aleatorio;
8342
8444
 
8343
- },{"./declaracao":83}],76:[function(require,module,exports){
8445
+ },{"./declaracao":84}],77:[function(require,module,exports){
8344
8446
  "use strict";
8345
8447
  Object.defineProperty(exports, "__esModule", { value: true });
8346
8448
  exports.Bloco = void 0;
@@ -8366,7 +8468,7 @@ class Bloco extends declaracao_1.Declaracao {
8366
8468
  }
8367
8469
  exports.Bloco = Bloco;
8368
8470
 
8369
- },{"./declaracao":83}],77:[function(require,module,exports){
8471
+ },{"./declaracao":84}],78:[function(require,module,exports){
8370
8472
  "use strict";
8371
8473
  Object.defineProperty(exports, "__esModule", { value: true });
8372
8474
  exports.CabecalhoPrograma = void 0;
@@ -8388,7 +8490,7 @@ class CabecalhoPrograma extends declaracao_1.Declaracao {
8388
8490
  }
8389
8491
  exports.CabecalhoPrograma = CabecalhoPrograma;
8390
8492
 
8391
- },{"./declaracao":83}],78:[function(require,module,exports){
8493
+ },{"./declaracao":84}],79:[function(require,module,exports){
8392
8494
  "use strict";
8393
8495
  Object.defineProperty(exports, "__esModule", { value: true });
8394
8496
  exports.Classe = void 0;
@@ -8423,7 +8525,7 @@ class Classe extends declaracao_1.Declaracao {
8423
8525
  }
8424
8526
  exports.Classe = Classe;
8425
8527
 
8426
- },{"./declaracao":83}],79:[function(require,module,exports){
8528
+ },{"./declaracao":84}],80:[function(require,module,exports){
8427
8529
  "use strict";
8428
8530
  Object.defineProperty(exports, "__esModule", { value: true });
8429
8531
  exports.Comentario = void 0;
@@ -8448,7 +8550,7 @@ class Comentario extends declaracao_1.Declaracao {
8448
8550
  }
8449
8551
  exports.Comentario = Comentario;
8450
8552
 
8451
- },{"./declaracao":83}],80:[function(require,module,exports){
8553
+ },{"./declaracao":84}],81:[function(require,module,exports){
8452
8554
  "use strict";
8453
8555
  Object.defineProperty(exports, "__esModule", { value: true });
8454
8556
  exports.ConstMultiplo = void 0;
@@ -8473,7 +8575,7 @@ class ConstMultiplo extends declaracao_1.Declaracao {
8473
8575
  }
8474
8576
  exports.ConstMultiplo = ConstMultiplo;
8475
8577
 
8476
- },{"./declaracao":83}],81:[function(require,module,exports){
8578
+ },{"./declaracao":84}],82:[function(require,module,exports){
8477
8579
  "use strict";
8478
8580
  Object.defineProperty(exports, "__esModule", { value: true });
8479
8581
  exports.Const = void 0;
@@ -8503,7 +8605,7 @@ class Const extends declaracao_1.Declaracao {
8503
8605
  }
8504
8606
  exports.Const = Const;
8505
8607
 
8506
- },{"./declaracao":83}],82:[function(require,module,exports){
8608
+ },{"./declaracao":84}],83:[function(require,module,exports){
8507
8609
  "use strict";
8508
8610
  Object.defineProperty(exports, "__esModule", { value: true });
8509
8611
  exports.Continua = void 0;
@@ -8521,7 +8623,7 @@ class Continua extends declaracao_1.Declaracao {
8521
8623
  }
8522
8624
  exports.Continua = Continua;
8523
8625
 
8524
- },{"./declaracao":83}],83:[function(require,module,exports){
8626
+ },{"./declaracao":84}],84:[function(require,module,exports){
8525
8627
  "use strict";
8526
8628
  Object.defineProperty(exports, "__esModule", { value: true });
8527
8629
  exports.Declaracao = void 0;
@@ -8544,7 +8646,7 @@ class Declaracao {
8544
8646
  }
8545
8647
  exports.Declaracao = Declaracao;
8546
8648
 
8547
- },{}],84:[function(require,module,exports){
8649
+ },{}],85:[function(require,module,exports){
8548
8650
  "use strict";
8549
8651
  Object.defineProperty(exports, "__esModule", { value: true });
8550
8652
  exports.Enquanto = void 0;
@@ -8565,7 +8667,7 @@ class Enquanto extends declaracao_1.Declaracao {
8565
8667
  }
8566
8668
  exports.Enquanto = Enquanto;
8567
8669
 
8568
- },{"./declaracao":83}],85:[function(require,module,exports){
8670
+ },{"./declaracao":84}],86:[function(require,module,exports){
8569
8671
  "use strict";
8570
8672
  Object.defineProperty(exports, "__esModule", { value: true });
8571
8673
  exports.Escolha = void 0;
@@ -8590,7 +8692,7 @@ class Escolha extends declaracao_1.Declaracao {
8590
8692
  }
8591
8693
  exports.Escolha = Escolha;
8592
8694
 
8593
- },{"./declaracao":83}],86:[function(require,module,exports){
8695
+ },{"./declaracao":84}],87:[function(require,module,exports){
8594
8696
  "use strict";
8595
8697
  Object.defineProperty(exports, "__esModule", { value: true });
8596
8698
  exports.EscrevaMesmaLinha = void 0;
@@ -8609,7 +8711,7 @@ class EscrevaMesmaLinha extends declaracao_1.Declaracao {
8609
8711
  }
8610
8712
  exports.EscrevaMesmaLinha = EscrevaMesmaLinha;
8611
8713
 
8612
- },{"./declaracao":83}],87:[function(require,module,exports){
8714
+ },{"./declaracao":84}],88:[function(require,module,exports){
8613
8715
  "use strict";
8614
8716
  Object.defineProperty(exports, "__esModule", { value: true });
8615
8717
  exports.Escreva = void 0;
@@ -8628,7 +8730,7 @@ class Escreva extends declaracao_1.Declaracao {
8628
8730
  }
8629
8731
  exports.Escreva = Escreva;
8630
8732
 
8631
- },{"./declaracao":83}],88:[function(require,module,exports){
8733
+ },{"./declaracao":84}],89:[function(require,module,exports){
8632
8734
  "use strict";
8633
8735
  Object.defineProperty(exports, "__esModule", { value: true });
8634
8736
  exports.Expressao = void 0;
@@ -8647,7 +8749,7 @@ class Expressao extends declaracao_1.Declaracao {
8647
8749
  }
8648
8750
  exports.Expressao = Expressao;
8649
8751
 
8650
- },{"./declaracao":83}],89:[function(require,module,exports){
8752
+ },{"./declaracao":84}],90:[function(require,module,exports){
8651
8753
  "use strict";
8652
8754
  Object.defineProperty(exports, "__esModule", { value: true });
8653
8755
  exports.Falhar = void 0;
@@ -8667,7 +8769,7 @@ class Falhar extends declaracao_1.Declaracao {
8667
8769
  }
8668
8770
  exports.Falhar = Falhar;
8669
8771
 
8670
- },{"./declaracao":83}],90:[function(require,module,exports){
8772
+ },{"./declaracao":84}],91:[function(require,module,exports){
8671
8773
  "use strict";
8672
8774
  Object.defineProperty(exports, "__esModule", { value: true });
8673
8775
  exports.Fazer = void 0;
@@ -8688,7 +8790,7 @@ class Fazer extends declaracao_1.Declaracao {
8688
8790
  }
8689
8791
  exports.Fazer = Fazer;
8690
8792
 
8691
- },{"./declaracao":83}],91:[function(require,module,exports){
8793
+ },{"./declaracao":84}],92:[function(require,module,exports){
8692
8794
  "use strict";
8693
8795
  Object.defineProperty(exports, "__esModule", { value: true });
8694
8796
  exports.FuncaoDeclaracao = void 0;
@@ -8716,7 +8818,7 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
8716
8818
  }
8717
8819
  exports.FuncaoDeclaracao = FuncaoDeclaracao;
8718
8820
 
8719
- },{"../geracao-identificadores":110,"./declaracao":83}],92:[function(require,module,exports){
8821
+ },{"../geracao-identificadores":111,"./declaracao":84}],93:[function(require,module,exports){
8720
8822
  "use strict";
8721
8823
  Object.defineProperty(exports, "__esModule", { value: true });
8722
8824
  exports.Importar = void 0;
@@ -8740,7 +8842,7 @@ class Importar extends declaracao_1.Declaracao {
8740
8842
  }
8741
8843
  exports.Importar = Importar;
8742
8844
 
8743
- },{"./declaracao":83}],93:[function(require,module,exports){
8845
+ },{"./declaracao":84}],94:[function(require,module,exports){
8744
8846
  "use strict";
8745
8847
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
8746
8848
  if (k2 === undefined) k2 = k;
@@ -8788,7 +8890,7 @@ __exportStar(require("./tente"), exports);
8788
8890
  __exportStar(require("./var"), exports);
8789
8891
  __exportStar(require("./var-multiplo"), exports);
8790
8892
 
8791
- },{"./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){
8893
+ },{"./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){
8792
8894
  "use strict";
8793
8895
  Object.defineProperty(exports, "__esModule", { value: true });
8794
8896
  exports.InicioAlgoritmo = void 0;
@@ -8808,7 +8910,7 @@ class InicioAlgoritmo extends declaracao_1.Declaracao {
8808
8910
  }
8809
8911
  exports.InicioAlgoritmo = InicioAlgoritmo;
8810
8912
 
8811
- },{"./declaracao":83}],95:[function(require,module,exports){
8913
+ },{"./declaracao":84}],96:[function(require,module,exports){
8812
8914
  "use strict";
8813
8915
  Object.defineProperty(exports, "__esModule", { value: true });
8814
8916
  exports.ParaCada = void 0;
@@ -8831,7 +8933,7 @@ class ParaCada extends declaracao_1.Declaracao {
8831
8933
  }
8832
8934
  exports.ParaCada = ParaCada;
8833
8935
 
8834
- },{"./declaracao":83}],96:[function(require,module,exports){
8936
+ },{"./declaracao":84}],97:[function(require,module,exports){
8835
8937
  "use strict";
8836
8938
  Object.defineProperty(exports, "__esModule", { value: true });
8837
8939
  exports.Para = void 0;
@@ -8868,7 +8970,7 @@ class Para extends declaracao_1.Declaracao {
8868
8970
  }
8869
8971
  exports.Para = Para;
8870
8972
 
8871
- },{"./declaracao":83}],97:[function(require,module,exports){
8973
+ },{"./declaracao":84}],98:[function(require,module,exports){
8872
8974
  "use strict";
8873
8975
  Object.defineProperty(exports, "__esModule", { value: true });
8874
8976
  exports.PropriedadeClasse = void 0;
@@ -8889,7 +8991,7 @@ class PropriedadeClasse extends declaracao_1.Declaracao {
8889
8991
  }
8890
8992
  exports.PropriedadeClasse = PropriedadeClasse;
8891
8993
 
8892
- },{"./declaracao":83}],98:[function(require,module,exports){
8994
+ },{"./declaracao":84}],99:[function(require,module,exports){
8893
8995
  "use strict";
8894
8996
  Object.defineProperty(exports, "__esModule", { value: true });
8895
8997
  exports.Retorna = void 0;
@@ -8915,7 +9017,7 @@ class Retorna extends declaracao_1.Declaracao {
8915
9017
  }
8916
9018
  exports.Retorna = Retorna;
8917
9019
 
8918
- },{"./declaracao":83}],99:[function(require,module,exports){
9020
+ },{"./declaracao":84}],100:[function(require,module,exports){
8919
9021
  "use strict";
8920
9022
  Object.defineProperty(exports, "__esModule", { value: true });
8921
9023
  exports.Se = void 0;
@@ -8938,7 +9040,7 @@ class Se extends declaracao_1.Declaracao {
8938
9040
  }
8939
9041
  exports.Se = Se;
8940
9042
 
8941
- },{"./declaracao":83}],100:[function(require,module,exports){
9043
+ },{"./declaracao":84}],101:[function(require,module,exports){
8942
9044
  "use strict";
8943
9045
  Object.defineProperty(exports, "__esModule", { value: true });
8944
9046
  exports.Sustar = void 0;
@@ -8956,7 +9058,7 @@ class Sustar extends declaracao_1.Declaracao {
8956
9058
  }
8957
9059
  exports.Sustar = Sustar;
8958
9060
 
8959
- },{"./declaracao":83}],101:[function(require,module,exports){
9061
+ },{"./declaracao":84}],102:[function(require,module,exports){
8960
9062
  "use strict";
8961
9063
  Object.defineProperty(exports, "__esModule", { value: true });
8962
9064
  exports.TendoComo = void 0;
@@ -8983,7 +9085,7 @@ class TendoComo extends declaracao_1.Declaracao {
8983
9085
  }
8984
9086
  exports.TendoComo = TendoComo;
8985
9087
 
8986
- },{"./declaracao":83}],102:[function(require,module,exports){
9088
+ },{"./declaracao":84}],103:[function(require,module,exports){
8987
9089
  "use strict";
8988
9090
  Object.defineProperty(exports, "__esModule", { value: true });
8989
9091
  exports.Tente = void 0;
@@ -9009,7 +9111,7 @@ class Tente extends declaracao_1.Declaracao {
9009
9111
  }
9010
9112
  exports.Tente = Tente;
9011
9113
 
9012
- },{"./declaracao":83}],103:[function(require,module,exports){
9114
+ },{"./declaracao":84}],104:[function(require,module,exports){
9013
9115
  "use strict";
9014
9116
  Object.defineProperty(exports, "__esModule", { value: true });
9015
9117
  exports.VarMultiplo = void 0;
@@ -9035,7 +9137,7 @@ class VarMultiplo extends declaracao_1.Declaracao {
9035
9137
  }
9036
9138
  exports.VarMultiplo = VarMultiplo;
9037
9139
 
9038
- },{"./declaracao":83}],104:[function(require,module,exports){
9140
+ },{"./declaracao":84}],105:[function(require,module,exports){
9039
9141
  "use strict";
9040
9142
  Object.defineProperty(exports, "__esModule", { value: true });
9041
9143
  exports.Var = void 0;
@@ -9067,7 +9169,7 @@ class Var extends declaracao_1.Declaracao {
9067
9169
  }
9068
9170
  exports.Var = Var;
9069
9171
 
9070
- },{"./declaracao":83}],105:[function(require,module,exports){
9172
+ },{"./declaracao":84}],106:[function(require,module,exports){
9071
9173
  "use strict";
9072
9174
  Object.defineProperty(exports, "__esModule", { value: true });
9073
9175
  exports.ErroEmTempoDeExecucao = void 0;
@@ -9082,7 +9184,7 @@ class ErroEmTempoDeExecucao extends Error {
9082
9184
  }
9083
9185
  exports.ErroEmTempoDeExecucao = ErroEmTempoDeExecucao;
9084
9186
 
9085
- },{}],106:[function(require,module,exports){
9187
+ },{}],107:[function(require,module,exports){
9086
9188
  "use strict";
9087
9189
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
9088
9190
  if (k2 === undefined) k2 = k;
@@ -9101,7 +9203,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
9101
9203
  Object.defineProperty(exports, "__esModule", { value: true });
9102
9204
  __exportStar(require("./erro-em-tempo-de-execucao"), exports);
9103
9205
 
9104
- },{"./erro-em-tempo-de-execucao":105}],107:[function(require,module,exports){
9206
+ },{"./erro-em-tempo-de-execucao":106}],108:[function(require,module,exports){
9105
9207
  "use strict";
9106
9208
  var __importDefault = (this && this.__importDefault) || function (mod) {
9107
9209
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -9830,7 +9932,7 @@ class FormatadorDelegua {
9830
9932
  }
9831
9933
  exports.FormatadorDelegua = FormatadorDelegua;
9832
9934
 
9833
- },{"../construtos":49,"../tipos-de-simbolos/delegua":182}],108:[function(require,module,exports){
9935
+ },{"../construtos":49,"../tipos-de-simbolos/delegua":183}],109:[function(require,module,exports){
9834
9936
  "use strict";
9835
9937
  Object.defineProperty(exports, "__esModule", { value: true });
9836
9938
  exports.FormatadorPitugues = void 0;
@@ -10012,7 +10114,7 @@ class FormatadorPitugues {
10012
10114
  }
10013
10115
  exports.FormatadorPitugues = FormatadorPitugues;
10014
10116
 
10015
- },{}],109:[function(require,module,exports){
10117
+ },{}],110:[function(require,module,exports){
10016
10118
  "use strict";
10017
10119
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10018
10120
  if (k2 === undefined) k2 = k;
@@ -10032,7 +10134,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
10032
10134
  __exportStar(require("./formatador-delegua"), exports);
10033
10135
  __exportStar(require("./formatador-pitugues"), exports);
10034
10136
 
10035
- },{"./formatador-delegua":107,"./formatador-pitugues":108}],110:[function(require,module,exports){
10137
+ },{"./formatador-delegua":108,"./formatador-pitugues":109}],111:[function(require,module,exports){
10036
10138
  "use strict";
10037
10139
  Object.defineProperty(exports, "__esModule", { value: true });
10038
10140
  exports.cyrb53 = cyrb53;
@@ -10076,7 +10178,7 @@ function uuidv4() {
10076
10178
  });
10077
10179
  }
10078
10180
 
10079
- },{}],111:[function(require,module,exports){
10181
+ },{}],112:[function(require,module,exports){
10080
10182
  "use strict";
10081
10183
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10082
10184
  if (k2 === undefined) k2 = k;
@@ -10103,7 +10205,7 @@ __exportStar(require("./interpretador"), exports);
10103
10205
  __exportStar(require("./lexador"), exports);
10104
10206
  __exportStar(require("./tradutores"), exports);
10105
10207
 
10106
- },{"./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){
10208
+ },{"./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){
10107
10209
  "use strict";
10108
10210
  var __importDefault = (this && this.__importDefault) || function (mod) {
10109
10211
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -10161,7 +10263,7 @@ function inferirTipoVariavel(variavel) {
10161
10263
  if (variavel === null) {
10162
10264
  return 'nulo';
10163
10265
  }
10164
- const tipo = variavel.constructor ? variavel.constructor.name : typeof variavel;
10266
+ const tipo = variavel && variavel.constructor ? variavel.constructor.name : typeof variavel;
10165
10267
  switch (tipo) {
10166
10268
  case 'String':
10167
10269
  case 'string':
@@ -10230,7 +10332,7 @@ function tipoInferenciaParaTipoDadosElementar(tipoInferencia) {
10230
10332
  }
10231
10333
  }
10232
10334
 
10233
- },{"./tipos-de-dados/delegua":177,"./tipos-de-dados/primitivos":179,"./tipos-de-simbolos/delegua":182}],113:[function(require,module,exports){
10335
+ },{"./tipos-de-dados/delegua":178,"./tipos-de-dados/primitivos":180,"./tipos-de-simbolos/delegua":183}],114:[function(require,module,exports){
10234
10336
  "use strict";
10235
10337
  Object.defineProperty(exports, "__esModule", { value: true });
10236
10338
  exports.InformacaoElementoSintatico = void 0;
@@ -10249,15 +10351,15 @@ class InformacaoElementoSintatico {
10249
10351
  }
10250
10352
  exports.InformacaoElementoSintatico = InformacaoElementoSintatico;
10251
10353
 
10252
- },{}],114:[function(require,module,exports){
10354
+ },{}],115:[function(require,module,exports){
10253
10355
  "use strict";
10254
10356
  Object.defineProperty(exports, "__esModule", { value: true });
10255
10357
 
10256
- },{}],115:[function(require,module,exports){
10358
+ },{}],116:[function(require,module,exports){
10257
10359
  "use strict";
10258
10360
  Object.defineProperty(exports, "__esModule", { value: true });
10259
10361
 
10260
- },{}],116:[function(require,module,exports){
10362
+ },{}],117:[function(require,module,exports){
10261
10363
  "use strict";
10262
10364
  Object.defineProperty(exports, "__esModule", { value: true });
10263
10365
  exports.DiagnosticoSeveridade = void 0;
@@ -10269,7 +10371,7 @@ var DiagnosticoSeveridade;
10269
10371
  DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
10270
10372
  })(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
10271
10373
 
10272
- },{}],117:[function(require,module,exports){
10374
+ },{}],118:[function(require,module,exports){
10273
10375
  "use strict";
10274
10376
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10275
10377
  if (k2 === undefined) k2 = k;
@@ -10288,11 +10390,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10288
10390
  Object.defineProperty(exports, "__esModule", { value: true });
10289
10391
  __exportStar(require("./diagnostico-analisador-semantico"), exports);
10290
10392
 
10291
- },{"./diagnostico-analisador-semantico":116}],118:[function(require,module,exports){
10393
+ },{"./diagnostico-analisador-semantico":117}],119:[function(require,module,exports){
10292
10394
  "use strict";
10293
10395
  Object.defineProperty(exports, "__esModule", { value: true });
10294
10396
 
10295
- },{}],119:[function(require,module,exports){
10397
+ },{}],120:[function(require,module,exports){
10296
10398
  "use strict";
10297
10399
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10298
10400
  if (k2 === undefined) k2 = k;
@@ -10329,11 +10431,7 @@ __exportStar(require("./construtos"), exports);
10329
10431
  __exportStar(require("./erros"), exports);
10330
10432
  __exportStar(require("./retornos"), exports);
10331
10433
 
10332
- },{"./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){
10333
- "use strict";
10334
- Object.defineProperty(exports, "__esModule", { value: true });
10335
-
10336
- },{}],121:[function(require,module,exports){
10434
+ },{"./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){
10337
10435
  "use strict";
10338
10436
  Object.defineProperty(exports, "__esModule", { value: true });
10339
10437
 
@@ -10363,6 +10461,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
10363
10461
 
10364
10462
  },{}],128:[function(require,module,exports){
10365
10463
  "use strict";
10464
+ Object.defineProperty(exports, "__esModule", { value: true });
10465
+
10466
+ },{}],129:[function(require,module,exports){
10467
+ "use strict";
10366
10468
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10367
10469
  if (k2 === undefined) k2 = k;
10368
10470
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -10383,11 +10485,7 @@ __exportStar(require("./retorno-execucao-interface"), exports);
10383
10485
  __exportStar(require("./retorno-interpretador-interface"), exports);
10384
10486
  __exportStar(require("./retorno-lexador"), exports);
10385
10487
 
10386
- },{"./retorno-avaliador-sintatico":129,"./retorno-execucao-interface":130,"./retorno-interpretador-interface":131,"./retorno-lexador":132}],129:[function(require,module,exports){
10387
- "use strict";
10388
- Object.defineProperty(exports, "__esModule", { value: true });
10389
-
10390
- },{}],130:[function(require,module,exports){
10488
+ },{"./retorno-avaliador-sintatico":130,"./retorno-execucao-interface":131,"./retorno-interpretador-interface":132,"./retorno-lexador":133}],130:[function(require,module,exports){
10391
10489
  "use strict";
10392
10490
  Object.defineProperty(exports, "__esModule", { value: true });
10393
10491
 
@@ -10421,6 +10519,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
10421
10519
 
10422
10520
  },{}],138:[function(require,module,exports){
10423
10521
  "use strict";
10522
+ Object.defineProperty(exports, "__esModule", { value: true });
10523
+
10524
+ },{}],139:[function(require,module,exports){
10525
+ "use strict";
10424
10526
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10425
10527
  if (k2 === undefined) k2 = k;
10426
10528
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -10484,7 +10586,7 @@ function carregarBibliotecasGlobais(pilhaEscoposExecucao) {
10484
10586
  pilhaEscoposExecucao.definirVariavel('tupla', new funcao_padrao_1.FuncaoPadrao(1, bibliotecaGlobal.tupla));
10485
10587
  }
10486
10588
 
10487
- },{"../bibliotecas/biblioteca-global":19,"./estruturas/funcao-padrao":144}],139:[function(require,module,exports){
10589
+ },{"../bibliotecas/biblioteca-global":19,"./estruturas/funcao-padrao":145}],140:[function(require,module,exports){
10488
10590
  "use strict";
10489
10591
  Object.defineProperty(exports, "__esModule", { value: true });
10490
10592
  exports.EspacoMemoria = void 0;
@@ -10509,7 +10611,7 @@ class EspacoMemoria {
10509
10611
  }
10510
10612
  exports.EspacoMemoria = EspacoMemoria;
10511
10613
 
10512
- },{}],140:[function(require,module,exports){
10614
+ },{}],141:[function(require,module,exports){
10513
10615
  "use strict";
10514
10616
  Object.defineProperty(exports, "__esModule", { value: true });
10515
10617
  exports.Chamavel = void 0;
@@ -10523,7 +10625,7 @@ class Chamavel {
10523
10625
  }
10524
10626
  exports.Chamavel = Chamavel;
10525
10627
 
10526
- },{}],141:[function(require,module,exports){
10628
+ },{}],142:[function(require,module,exports){
10527
10629
  "use strict";
10528
10630
  Object.defineProperty(exports, "__esModule", { value: true });
10529
10631
  exports.ClassePadrao = void 0;
@@ -10564,7 +10666,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
10564
10666
  }
10565
10667
  exports.ClassePadrao = ClassePadrao;
10566
10668
 
10567
- },{"./chamavel":140}],142:[function(require,module,exports){
10669
+ },{"./chamavel":141}],143:[function(require,module,exports){
10568
10670
  "use strict";
10569
10671
  Object.defineProperty(exports, "__esModule", { value: true });
10570
10672
  exports.DeleguaFuncao = void 0;
@@ -10709,7 +10811,7 @@ class DeleguaFuncao extends chamavel_1.Chamavel {
10709
10811
  }
10710
10812
  exports.DeleguaFuncao = DeleguaFuncao;
10711
10813
 
10712
- },{"../../declaracoes":93,"../../quebras":176,"../espaco-memoria":139,"./chamavel":140}],143:[function(require,module,exports){
10814
+ },{"../../declaracoes":94,"../../quebras":177,"../espaco-memoria":140,"./chamavel":141}],144:[function(require,module,exports){
10713
10815
  "use strict";
10714
10816
  Object.defineProperty(exports, "__esModule", { value: true });
10715
10817
  exports.DescritorTipoClasse = void 0;
@@ -10790,7 +10892,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
10790
10892
  }
10791
10893
  exports.DescritorTipoClasse = DescritorTipoClasse;
10792
10894
 
10793
- },{"../../excecoes":106,"./chamavel":140,"./objeto-delegua-classe":148}],144:[function(require,module,exports){
10895
+ },{"../../excecoes":107,"./chamavel":141,"./objeto-delegua-classe":149}],145:[function(require,module,exports){
10794
10896
  "use strict";
10795
10897
  Object.defineProperty(exports, "__esModule", { value: true });
10796
10898
  exports.FuncaoPadrao = void 0;
@@ -10827,7 +10929,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
10827
10929
  }
10828
10930
  exports.FuncaoPadrao = FuncaoPadrao;
10829
10931
 
10830
- },{"./chamavel":140}],145:[function(require,module,exports){
10932
+ },{"./chamavel":141}],146:[function(require,module,exports){
10831
10933
  "use strict";
10832
10934
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10833
10935
  if (k2 === undefined) k2 = k;
@@ -10855,7 +10957,7 @@ __exportStar(require("./objeto-delegua-classe"), exports);
10855
10957
  __exportStar(require("./objeto-padrao"), exports);
10856
10958
  __exportStar(require("./referencia-montao"), exports);
10857
10959
 
10858
- },{"./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){
10960
+ },{"./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){
10859
10961
  "use strict";
10860
10962
  Object.defineProperty(exports, "__esModule", { value: true });
10861
10963
  exports.MetodoPrimitiva = void 0;
@@ -10898,7 +11000,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
10898
11000
  }
10899
11001
  exports.MetodoPrimitiva = MetodoPrimitiva;
10900
11002
 
10901
- },{"./chamavel":140}],147:[function(require,module,exports){
11003
+ },{"./chamavel":141}],148:[function(require,module,exports){
10902
11004
  "use strict";
10903
11005
  Object.defineProperty(exports, "__esModule", { value: true });
10904
11006
  exports.DeleguaModulo = void 0;
@@ -10924,7 +11026,7 @@ class DeleguaModulo {
10924
11026
  }
10925
11027
  exports.DeleguaModulo = DeleguaModulo;
10926
11028
 
10927
- },{}],148:[function(require,module,exports){
11029
+ },{}],149:[function(require,module,exports){
10928
11030
  "use strict";
10929
11031
  Object.defineProperty(exports, "__esModule", { value: true });
10930
11032
  exports.ObjetoDeleguaClasse = void 0;
@@ -10992,7 +11094,7 @@ class ObjetoDeleguaClasse {
10992
11094
  }
10993
11095
  exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
10994
11096
 
10995
- },{"../../excecoes":106}],149:[function(require,module,exports){
11097
+ },{"../../excecoes":107}],150:[function(require,module,exports){
10996
11098
  "use strict";
10997
11099
  Object.defineProperty(exports, "__esModule", { value: true });
10998
11100
  exports.ObjetoPadrao = void 0;
@@ -11026,7 +11128,7 @@ class ObjetoPadrao {
11026
11128
  }
11027
11129
  exports.ObjetoPadrao = ObjetoPadrao;
11028
11130
 
11029
- },{}],150:[function(require,module,exports){
11131
+ },{}],151:[function(require,module,exports){
11030
11132
  "use strict";
11031
11133
  Object.defineProperty(exports, "__esModule", { value: true });
11032
11134
  exports.ReferenciaMontao = void 0;
@@ -11051,7 +11153,7 @@ class ReferenciaMontao {
11051
11153
  }
11052
11154
  exports.ReferenciaMontao = ReferenciaMontao;
11053
11155
 
11054
- },{}],151:[function(require,module,exports){
11156
+ },{}],152:[function(require,module,exports){
11055
11157
  "use strict";
11056
11158
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
11057
11159
  if (k2 === undefined) k2 = k;
@@ -11071,7 +11173,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
11071
11173
  __exportStar(require("./interpretador"), exports);
11072
11174
  __exportStar(require("./interpretador-base"), exports);
11073
11175
 
11074
- },{"./interpretador":153,"./interpretador-base":152}],152:[function(require,module,exports){
11176
+ },{"./interpretador":154,"./interpretador-base":153}],153:[function(require,module,exports){
11075
11177
  (function (process){(function (){
11076
11178
  "use strict";
11077
11179
  var __importDefault = (this && this.__importDefault) || function (mod) {
@@ -11343,8 +11445,20 @@ class InterpretadorBase {
11343
11445
  }
11344
11446
  return expressao.valor;
11345
11447
  }
11448
+ /**
11449
+ * Avaliação de agrupamento. Se resultado da avaliação é uma declaração de
11450
+ * função (por exemplo, funções anônimas), a declaração é retornada. Este
11451
+ * retorno é utilizado, entre outros lugares, por `visitarExpressaoDeChamada`.
11452
+ * @param {Agrupamento} expressao O construto de agrupamento.
11453
+ * @returns O resultado da avaliação.
11454
+ * @see this.visitarExpressaoDeChamada
11455
+ */
11346
11456
  async visitarExpressaoAgrupamento(expressao) {
11347
- return await this.avaliar(expressao.expressao);
11457
+ const avaliacaoAgrupamento = await this.avaliar(expressao.expressao);
11458
+ if (avaliacaoAgrupamento.declaracao !== undefined) {
11459
+ return avaliacaoAgrupamento.declaracao;
11460
+ }
11461
+ return avaliacaoAgrupamento;
11348
11462
  }
11349
11463
  eVerdadeiro(objeto) {
11350
11464
  if (objeto === null)
@@ -11621,7 +11735,11 @@ class InterpretadorBase {
11621
11735
  if (variavelEntidadeChamada.hasOwnProperty('valorRetornado')) {
11622
11736
  variavelEntidadeChamada = variavelEntidadeChamada.valorRetornado;
11623
11737
  }
11624
- const entidadeChamada = this.resolverValor(variavelEntidadeChamada);
11738
+ let entidadeChamada = this.resolverValor(variavelEntidadeChamada);
11739
+ // Funções anônimas
11740
+ if (entidadeChamada instanceof construtos_1.FuncaoConstruto) {
11741
+ entidadeChamada = new estruturas_1.DeleguaFuncao(null, entidadeChamada);
11742
+ }
11625
11743
  if (entidadeChamada instanceof estruturas_1.DeleguaModulo) {
11626
11744
  return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(expressao.parentese, 'Entidade chamada é um módulo de Delégua. Provavelmente você quer chamar um de seus componentes?', expressao.linha));
11627
11745
  }
@@ -11644,7 +11762,7 @@ class InterpretadorBase {
11644
11762
  }
11645
11763
  if (entidadeChamada instanceof estruturas_1.FuncaoPadrao) {
11646
11764
  try {
11647
- return entidadeChamada.chamar(this, argumentos.map((a) => a && a.valor && this.resolverValor(a.valor)), expressao.entidadeChamada.simbolo);
11765
+ return entidadeChamada.chamar(this, argumentos.map((a) => a && this.resolverValor(a.valor)), expressao.entidadeChamada.simbolo);
11648
11766
  }
11649
11767
  catch (erro) {
11650
11768
  this.erros.push({
@@ -11793,6 +11911,55 @@ class InterpretadorBase {
11793
11911
  }
11794
11912
  return retornoExecucao;
11795
11913
  }
11914
+ // TODO: Descobrir se mais algum dialeto, fora Delégua e Pituguês, usam isso.
11915
+ async visitarDeclaracaoParaCada(declaracao) {
11916
+ let retornoExecucao;
11917
+ // Posição atual precisa ser reiniciada, pois pode estar dentro de outro
11918
+ // laço de repetição.
11919
+ declaracao.posicaoAtual = 0;
11920
+ const vetorResolvido = await this.avaliar(declaracao.vetorOuDicionario);
11921
+ let valorVetorResolvido = this.resolverValor(vetorResolvido);
11922
+ // Se até aqui vetor resolvido é um dicionário, converte dicionário
11923
+ // para vetor de duplas.
11924
+ // TODO: Converter elementos para `Construto` se necessário.
11925
+ if (declaracao.vetorOuDicionario.tipo === 'dicionário') {
11926
+ valorVetorResolvido = Object.entries(valorVetorResolvido)
11927
+ .map(v => new construtos_1.Dupla(v[0], v[1]));
11928
+ }
11929
+ if (!Array.isArray(valorVetorResolvido)) {
11930
+ return Promise.reject("Variável ou literal provida em instrução 'para cada' não é um vetor.");
11931
+ }
11932
+ while (!(retornoExecucao && retornoExecucao.valorRetornado instanceof quebras_1.Quebra) &&
11933
+ declaracao.posicaoAtual < valorVetorResolvido.length) {
11934
+ try {
11935
+ if (declaracao.variavelIteracao instanceof construtos_1.Variavel) {
11936
+ this.pilhaEscoposExecucao.definirVariavel(declaracao.variavelIteracao.simbolo.lexema, valorVetorResolvido[declaracao.posicaoAtual]);
11937
+ }
11938
+ if (declaracao.variavelIteracao instanceof construtos_1.Dupla) {
11939
+ const valorComoDupla = valorVetorResolvido[declaracao.posicaoAtual];
11940
+ this.pilhaEscoposExecucao.definirVariavel(declaracao.variavelIteracao.primeiro.valor, valorComoDupla.primeiro);
11941
+ this.pilhaEscoposExecucao.definirVariavel(declaracao.variavelIteracao.segundo.valor, valorComoDupla.segundo);
11942
+ }
11943
+ retornoExecucao = await this.executar(declaracao.corpo);
11944
+ if (retornoExecucao && retornoExecucao.valorRetornado instanceof quebras_1.SustarQuebra) {
11945
+ return null;
11946
+ }
11947
+ if (retornoExecucao && retornoExecucao.valorRetornado instanceof quebras_1.ContinuarQuebra) {
11948
+ retornoExecucao = null;
11949
+ }
11950
+ declaracao.posicaoAtual++;
11951
+ }
11952
+ catch (erro) {
11953
+ this.erros.push({
11954
+ erroInterno: erro,
11955
+ linha: declaracao.linha,
11956
+ hashArquivo: declaracao.hashArquivo,
11957
+ });
11958
+ return Promise.reject(erro);
11959
+ }
11960
+ }
11961
+ return retornoExecucao;
11962
+ }
11796
11963
  /**
11797
11964
  * Executa uma expressão Se, que tem uma condição, pode ter um bloco
11798
11965
  * Senão, e múltiplos blocos Senão-se.
@@ -12186,6 +12353,9 @@ class InterpretadorBase {
12186
12353
  visitarDeclaracaoDefinicaoFuncao(declaracao) {
12187
12354
  const funcao = new estruturas_1.DeleguaFuncao(declaracao.simbolo.lexema, declaracao.funcao);
12188
12355
  this.pilhaEscoposExecucao.definirVariavel(declaracao.simbolo.lexema, funcao);
12356
+ return {
12357
+ declaracao: funcao
12358
+ };
12189
12359
  }
12190
12360
  /**
12191
12361
  * Executa uma declaração de classe.
@@ -12539,7 +12709,7 @@ class InterpretadorBase {
12539
12709
  exports.InterpretadorBase = InterpretadorBase;
12540
12710
 
12541
12711
  }).call(this)}).call(this,require('_process'))
12542
- },{"../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){
12712
+ },{"../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){
12543
12713
  "use strict";
12544
12714
  var __importDefault = (this && this.__importDefault) || function (mod) {
12545
12715
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -12695,6 +12865,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
12695
12865
  return {
12696
12866
  tipo: `função<${funcao.declaracao.tipo || 'qualquer'}>`,
12697
12867
  tipoExplicito: funcao.declaracao.tipoExplicito,
12868
+ declaracao: funcao
12698
12869
  };
12699
12870
  }
12700
12871
  async logicaComumExecucaoEnquanto(enquanto, acumularRetornos) {
@@ -12840,6 +13011,9 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
12840
13011
  if (paraCada.vetorOuDicionario.tipo === 'dicionário') {
12841
13012
  valorVetorOuDicionarioResolvido = Object.entries(valorVetorOuDicionarioResolvido).map((v) => new construtos_1.Dupla(v[0], v[1]));
12842
13013
  }
13014
+ if (paraCada.vetorOuDicionario.tipo === 'texto') {
13015
+ valorVetorOuDicionarioResolvido = valorVetorOuDicionarioResolvido.split('');
13016
+ }
12843
13017
  if (!Array.isArray(valorVetorOuDicionarioResolvido)) {
12844
13018
  return Promise.reject("Variável ou literal provida em instrução 'para cada' não é um vetor.");
12845
13019
  }
@@ -13315,6 +13489,16 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
13315
13489
  visitarExpressaoFazer(expressao) {
13316
13490
  return this.logicaComumExecucaoFazer(expressao, true);
13317
13491
  }
13492
+ async visitarExpressaoListaCompreensao(listaCompreensao) {
13493
+ const vetorVariavelIteracao = await this.avaliar(listaCompreensao.referenciaVariavelIteracao);
13494
+ let valorVetorVariavelIteracao = this.resolverValor(vetorVariavelIteracao);
13495
+ if (!Array.isArray(valorVetorVariavelIteracao)) {
13496
+ return Promise.reject("Variável ou literal provida em instrução 'para cada' não é um vetor.");
13497
+ }
13498
+ const resultadoCompreensao = await this.avaliar(listaCompreensao.paraCada);
13499
+ const resultadoCompreensaoResolvido = resultadoCompreensao.valorRetornado.filter(r => r !== null).map(r => this.resolverValor(r));
13500
+ return resultadoCompreensaoResolvido;
13501
+ }
13318
13502
  visitarExpressaoParaCada(expressao) {
13319
13503
  return this.logicaComumExecucaoParaCada(expressao, true);
13320
13504
  }
@@ -13469,7 +13653,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
13469
13653
  }
13470
13654
  exports.Interpretador = Interpretador;
13471
13655
 
13472
- },{"../bibliotecas/primitivas-dicionario":20,"../bibliotecas/primitivas-numero":21,"../bibliotecas/primitivas-texto":22,"../bibliotecas/primitivas-vetor":23,"../construtos":49,"../declaracoes":93,"../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){
13656
+ },{"../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){
13473
13657
  "use strict";
13474
13658
  Object.defineProperty(exports, "__esModule", { value: true });
13475
13659
  exports.Montao = void 0;
@@ -13526,7 +13710,7 @@ class Montao {
13526
13710
  }
13527
13711
  exports.Montao = Montao;
13528
13712
 
13529
- },{"../excecoes":106,"../geracao-identificadores":110}],155:[function(require,module,exports){
13713
+ },{"../excecoes":107,"../geracao-identificadores":111}],156:[function(require,module,exports){
13530
13714
  "use strict";
13531
13715
  var __importDefault = (this && this.__importDefault) || function (mod) {
13532
13716
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -13814,7 +13998,7 @@ class PilhaEscoposExecucao {
13814
13998
  }
13815
13999
  exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
13816
14000
 
13817
- },{"../excecoes":106,"../inferenciador":112,"../lexador":169,"../tipos-de-dados/delegua":177,"./estruturas":145}],156:[function(require,module,exports){
14001
+ },{"../excecoes":107,"../inferenciador":113,"../lexador":170,"../tipos-de-dados/delegua":178,"./estruturas":146}],157:[function(require,module,exports){
13818
14002
  "use strict";
13819
14003
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
13820
14004
  if (k2 === undefined) k2 = k;
@@ -13838,7 +14022,7 @@ __exportStar(require("./lexador-guarani"), exports);
13838
14022
  __exportStar(require("./lexador-portugol-ipt"), exports);
13839
14023
  __exportStar(require("./lexador-tenda"), exports);
13840
14024
 
13841
- },{"./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){
14025
+ },{"./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){
13842
14026
  "use strict";
13843
14027
  var __importDefault = (this && this.__importDefault) || function (mod) {
13844
14028
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14071,7 +14255,7 @@ class LexadorCalango {
14071
14255
  }
14072
14256
  exports.LexadorCalango = LexadorCalango;
14073
14257
 
14074
- },{"../../tipos-de-simbolos/calango":180,"../simbolo":175,"./palavras-reservadas/calango":163}],158:[function(require,module,exports){
14258
+ },{"../../tipos-de-simbolos/calango":181,"../simbolo":176,"./palavras-reservadas/calango":164}],159:[function(require,module,exports){
14075
14259
  "use strict";
14076
14260
  var __importDefault = (this && this.__importDefault) || function (mod) {
14077
14261
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14361,7 +14545,7 @@ class LexadorEguaClassico {
14361
14545
  }
14362
14546
  exports.LexadorEguaClassico = LexadorEguaClassico;
14363
14547
 
14364
- },{"../../tipos-de-simbolos/egua-classico":183,"../simbolo":175,"./palavras-reservadas/egua-classico":164}],159:[function(require,module,exports){
14548
+ },{"../../tipos-de-simbolos/egua-classico":184,"../simbolo":176,"./palavras-reservadas/egua-classico":165}],160:[function(require,module,exports){
14365
14549
  "use strict";
14366
14550
  var __importDefault = (this && this.__importDefault) || function (mod) {
14367
14551
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14480,7 +14664,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
14480
14664
  }
14481
14665
  exports.LexadorGuarani = LexadorGuarani;
14482
14666
 
14483
- },{"../../tipos-de-simbolos/guarani":184,"../lexador-base":171,"./palavras-reservadas/guarani":165}],160:[function(require,module,exports){
14667
+ },{"../../tipos-de-simbolos/guarani":185,"../lexador-base":172,"./palavras-reservadas/guarani":166}],161:[function(require,module,exports){
14484
14668
  "use strict";
14485
14669
  var __importDefault = (this && this.__importDefault) || function (mod) {
14486
14670
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14660,6 +14844,17 @@ class LexadorPitugues {
14660
14844
  espacosIndentacao: espacos,
14661
14845
  };
14662
14846
  }
14847
+ comentarioUmaLinha() {
14848
+ this.avancar();
14849
+ const linhaAtual = this.linha;
14850
+ let ultimoAtual = this.atual;
14851
+ while (linhaAtual === this.linha && !this.eFinalDoCodigo()) {
14852
+ ultimoAtual = this.atual;
14853
+ this.avancar();
14854
+ }
14855
+ const conteudo = this.codigo[linhaAtual].substring(this.inicioSimbolo + 2, ultimoAtual);
14856
+ this.adicionarSimbolo(pitugues_2.default.COMENTARIO, conteudo.trim());
14857
+ }
14663
14858
  avancarParaProximaLinha() {
14664
14859
  this.linha++;
14665
14860
  this.atual = 0;
@@ -14689,7 +14884,7 @@ class LexadorPitugues {
14689
14884
  }
14690
14885
  break;
14691
14886
  case '#':
14692
- this.avancarParaProximaLinha();
14887
+ this.comentarioUmaLinha();
14693
14888
  break;
14694
14889
  case '[':
14695
14890
  this.adicionarSimbolo(pitugues_2.default.COLCHETE_ESQUERDO);
@@ -14887,7 +15082,7 @@ class LexadorPitugues {
14887
15082
  }
14888
15083
  exports.LexadorPitugues = LexadorPitugues;
14889
15084
 
14890
- },{"../../tipos-de-simbolos/pitugues":186,"../simbolo":175,"./palavras-reservadas/pitugues":166,"browser-process-hrtime":362}],161:[function(require,module,exports){
15085
+ },{"../../tipos-de-simbolos/pitugues":187,"../simbolo":176,"./palavras-reservadas/pitugues":167,"browser-process-hrtime":363}],162:[function(require,module,exports){
14891
15086
  "use strict";
14892
15087
  var __importDefault = (this && this.__importDefault) || function (mod) {
14893
15088
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15139,7 +15334,7 @@ class LexadorPortugolIpt {
15139
15334
  }
15140
15335
  exports.LexadorPortugolIpt = LexadorPortugolIpt;
15141
15336
 
15142
- },{"../../tipos-de-simbolos/portugol-ipt":187,"../simbolo":175,"./palavras-reservadas/portugol-ipt":167}],162:[function(require,module,exports){
15337
+ },{"../../tipos-de-simbolos/portugol-ipt":188,"../simbolo":176,"./palavras-reservadas/portugol-ipt":168}],163:[function(require,module,exports){
15143
15338
  "use strict";
15144
15339
  var __importDefault = (this && this.__importDefault) || function (mod) {
15145
15340
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15530,7 +15725,7 @@ class LexadorTenda {
15530
15725
  }
15531
15726
  exports.LexadorTenda = LexadorTenda;
15532
15727
 
15533
- },{"../../tipos-de-simbolos/tenda":188,"../simbolo":175,"./palavras-reservadas/tenda":168,"browser-process-hrtime":362}],163:[function(require,module,exports){
15728
+ },{"../../tipos-de-simbolos/tenda":189,"../simbolo":176,"./palavras-reservadas/tenda":169,"browser-process-hrtime":363}],164:[function(require,module,exports){
15534
15729
  "use strict";
15535
15730
  var __importDefault = (this && this.__importDefault) || function (mod) {
15536
15731
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15551,7 +15746,7 @@ exports.default = {
15551
15746
  fimSe: calango_1.default.FIM_SE,
15552
15747
  };
15553
15748
 
15554
- },{"../../../tipos-de-simbolos/calango":180}],164:[function(require,module,exports){
15749
+ },{"../../../tipos-de-simbolos/calango":181}],165:[function(require,module,exports){
15555
15750
  "use strict";
15556
15751
  var __importDefault = (this && this.__importDefault) || function (mod) {
15557
15752
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15592,7 +15787,7 @@ exports.palavrasReservadas = {
15592
15787
  verdadeiro: egua_classico_1.default.VERDADEIRO,
15593
15788
  };
15594
15789
 
15595
- },{"../../../tipos-de-simbolos/egua-classico":183}],165:[function(require,module,exports){
15790
+ },{"../../../tipos-de-simbolos/egua-classico":184}],166:[function(require,module,exports){
15596
15791
  "use strict";
15597
15792
  var __importDefault = (this && this.__importDefault) || function (mod) {
15598
15793
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15604,7 +15799,7 @@ exports.palavrasReservadas = {
15604
15799
  hai: guarani_1.default.HAI,
15605
15800
  };
15606
15801
 
15607
- },{"../../../tipos-de-simbolos/guarani":184}],166:[function(require,module,exports){
15802
+ },{"../../../tipos-de-simbolos/guarani":185}],167:[function(require,module,exports){
15608
15803
  "use strict";
15609
15804
  var __importDefault = (this && this.__importDefault) || function (mod) {
15610
15805
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15640,6 +15835,7 @@ exports.palavrasReservadas = {
15640
15835
  padrao: pitugues_1.default.PADRAO,
15641
15836
  para: pitugues_1.default.PARA,
15642
15837
  pegue: pitugues_1.default.PEGUE,
15838
+ quebrar: pitugues_1.default.QUEBRAR,
15643
15839
  retorna: pitugues_1.default.RETORNA,
15644
15840
  se: pitugues_1.default.SE,
15645
15841
  senao: pitugues_1.default.SENAO,
@@ -15663,7 +15859,7 @@ exports.palavrasReservadasMicroGramatica = {
15663
15859
  verdadeiro: pitugues_1.default.VERDADEIRO,
15664
15860
  };
15665
15861
 
15666
- },{"../../../tipos-de-simbolos/pitugues":186}],167:[function(require,module,exports){
15862
+ },{"../../../tipos-de-simbolos/pitugues":187}],168:[function(require,module,exports){
15667
15863
  "use strict";
15668
15864
  var __importDefault = (this && this.__importDefault) || function (mod) {
15669
15865
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15685,7 +15881,7 @@ exports.palavrasReservadas = {
15685
15881
  senão: portugol_ipt_1.default.SENAO,
15686
15882
  };
15687
15883
 
15688
- },{"../../../tipos-de-simbolos/portugol-ipt":187}],168:[function(require,module,exports){
15884
+ },{"../../../tipos-de-simbolos/portugol-ipt":188}],169:[function(require,module,exports){
15689
15885
  "use strict";
15690
15886
  var __importDefault = (this && this.__importDefault) || function (mod) {
15691
15887
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15743,7 +15939,7 @@ exports.palavrasReservadas = {
15743
15939
  Texto: tenda_1.default.BIBLIOTECA_GLOBAL,
15744
15940
  };
15745
15941
 
15746
- },{"../../../tipos-de-simbolos/tenda":188}],169:[function(require,module,exports){
15942
+ },{"../../../tipos-de-simbolos/tenda":189}],170:[function(require,module,exports){
15747
15943
  "use strict";
15748
15944
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
15749
15945
  if (k2 === undefined) k2 = k;
@@ -15766,7 +15962,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
15766
15962
  __exportStar(require("./micro-lexador"), exports);
15767
15963
  __exportStar(require("./simbolo"), exports);
15768
15964
 
15769
- },{"./dialetos":156,"./lexador":172,"./lexador-base-linha-unica":170,"./micro-lexador":173,"./simbolo":175}],170:[function(require,module,exports){
15965
+ },{"./dialetos":157,"./lexador":173,"./lexador-base-linha-unica":171,"./micro-lexador":174,"./simbolo":176}],171:[function(require,module,exports){
15770
15966
  "use strict";
15771
15967
  Object.defineProperty(exports, "__esModule", { value: true });
15772
15968
  exports.LexadorBaseLinhaUnica = void 0;
@@ -15850,7 +16046,7 @@ class LexadorBaseLinhaUnica {
15850
16046
  }
15851
16047
  exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
15852
16048
 
15853
- },{"./simbolo":175}],171:[function(require,module,exports){
16049
+ },{"./simbolo":176}],172:[function(require,module,exports){
15854
16050
  "use strict";
15855
16051
  Object.defineProperty(exports, "__esModule", { value: true });
15856
16052
  exports.LexadorBase = void 0;
@@ -15964,7 +16160,7 @@ class LexadorBase {
15964
16160
  }
15965
16161
  exports.LexadorBase = LexadorBase;
15966
16162
 
15967
- },{"./simbolo":175}],172:[function(require,module,exports){
16163
+ },{"./simbolo":176}],173:[function(require,module,exports){
15968
16164
  "use strict";
15969
16165
  var __importDefault = (this && this.__importDefault) || function (mod) {
15970
16166
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16425,7 +16621,7 @@ class Lexador {
16425
16621
  }
16426
16622
  exports.Lexador = Lexador;
16427
16623
 
16428
- },{"../tipos-de-simbolos/delegua":182,"./palavras-reservadas":174,"./simbolo":175,"browser-process-hrtime":362}],173:[function(require,module,exports){
16624
+ },{"../tipos-de-simbolos/delegua":183,"./palavras-reservadas":175,"./simbolo":176,"browser-process-hrtime":363}],174:[function(require,module,exports){
16429
16625
  "use strict";
16430
16626
  var __importDefault = (this && this.__importDefault) || function (mod) {
16431
16627
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16648,7 +16844,7 @@ class MicroLexador {
16648
16844
  }
16649
16845
  exports.MicroLexador = MicroLexador;
16650
16846
 
16651
- },{"../tipos-de-simbolos/microgramaticas/delegua":185,"./palavras-reservadas":174,"./simbolo":175}],174:[function(require,module,exports){
16847
+ },{"../tipos-de-simbolos/microgramaticas/delegua":186,"./palavras-reservadas":175,"./simbolo":176}],175:[function(require,module,exports){
16652
16848
  "use strict";
16653
16849
  var __importDefault = (this && this.__importDefault) || function (mod) {
16654
16850
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16689,6 +16885,7 @@ exports.palavrasReservadas = {
16689
16885
  para: delegua_1.default.PARA,
16690
16886
  pausa: delegua_1.default.PAUSA,
16691
16887
  pegue: delegua_1.default.PEGUE,
16888
+ quebrar: delegua_1.default.QUEBRAR,
16692
16889
  retorna: delegua_1.default.RETORNA,
16693
16890
  se: delegua_1.default.SE,
16694
16891
  senao: delegua_1.default.SENAO,
@@ -16712,7 +16909,7 @@ exports.palavrasReservadasMicroGramatica = {
16712
16909
  verdadeiro: delegua_1.default.VERDADEIRO,
16713
16910
  };
16714
16911
 
16715
- },{"../tipos-de-simbolos/delegua":182}],175:[function(require,module,exports){
16912
+ },{"../tipos-de-simbolos/delegua":183}],176:[function(require,module,exports){
16716
16913
  "use strict";
16717
16914
  Object.defineProperty(exports, "__esModule", { value: true });
16718
16915
  exports.Simbolo = void 0;
@@ -16730,7 +16927,7 @@ class Simbolo {
16730
16927
  }
16731
16928
  exports.Simbolo = Simbolo;
16732
16929
 
16733
- },{}],176:[function(require,module,exports){
16930
+ },{}],177:[function(require,module,exports){
16734
16931
  "use strict";
16735
16932
  Object.defineProperty(exports, "__esModule", { value: true });
16736
16933
  exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
@@ -16755,7 +16952,7 @@ class ContinuarQuebra extends Quebra {
16755
16952
  }
16756
16953
  exports.ContinuarQuebra = ContinuarQuebra;
16757
16954
 
16758
- },{}],177:[function(require,module,exports){
16955
+ },{}],178:[function(require,module,exports){
16759
16956
  "use strict";
16760
16957
  Object.defineProperty(exports, "__esModule", { value: true });
16761
16958
  exports.default = {
@@ -16785,7 +16982,7 @@ exports.default = {
16785
16982
  VETOR_TEXTO: 'texto[]',
16786
16983
  };
16787
16984
 
16788
- },{}],178:[function(require,module,exports){
16985
+ },{}],179:[function(require,module,exports){
16789
16986
  "use strict";
16790
16987
  Object.defineProperty(exports, "__esModule", { value: true });
16791
16988
  exports.default = {
@@ -16815,7 +17012,7 @@ exports.default = {
16815
17012
  VETOR_TEXTO: 'texto[]',
16816
17013
  };
16817
17014
 
16818
- },{}],179:[function(require,module,exports){
17015
+ },{}],180:[function(require,module,exports){
16819
17016
  "use strict";
16820
17017
  Object.defineProperty(exports, "__esModule", { value: true });
16821
17018
  exports.default = {
@@ -16834,7 +17031,7 @@ exports.default = {
16834
17031
  TEXTO: 'string',
16835
17032
  };
16836
17033
 
16837
- },{}],180:[function(require,module,exports){
17034
+ },{}],181:[function(require,module,exports){
16838
17035
  "use strict";
16839
17036
  Object.defineProperty(exports, "__esModule", { value: true });
16840
17037
  exports.default = {
@@ -16878,7 +17075,7 @@ exports.default = {
16878
17075
  VIRGULA: 'VIRGULA',
16879
17076
  };
16880
17077
 
16881
- },{}],181:[function(require,module,exports){
17078
+ },{}],182:[function(require,module,exports){
16882
17079
  "use strict";
16883
17080
  Object.defineProperty(exports, "__esModule", { value: true });
16884
17081
  exports.default = {
@@ -16904,7 +17101,7 @@ exports.default = {
16904
17101
  VIRGULA: 'VIRGULA',
16905
17102
  };
16906
17103
 
16907
- },{}],182:[function(require,module,exports){
17104
+ },{}],183:[function(require,module,exports){
16908
17105
  "use strict";
16909
17106
  Object.defineProperty(exports, "__esModule", { value: true });
16910
17107
  exports.default = {
@@ -16983,6 +17180,7 @@ exports.default = {
16983
17180
  PEGUE: 'PEGUE',
16984
17181
  PONTO: 'PONTO',
16985
17182
  PONTO_E_VIRGULA: 'PONTO_E_VIRGULA',
17183
+ QUEBRAR: 'QUEBRAR',
16986
17184
  RETORNA: 'RETORNA',
16987
17185
  SUBTRACAO: 'SUBTRACAO',
16988
17186
  SE: 'SE',
@@ -16999,7 +17197,7 @@ exports.default = {
16999
17197
  VIRGULA: 'VIRGULA',
17000
17198
  };
17001
17199
 
17002
- },{}],183:[function(require,module,exports){
17200
+ },{}],184:[function(require,module,exports){
17003
17201
  "use strict";
17004
17202
  Object.defineProperty(exports, "__esModule", { value: true });
17005
17203
  exports.default = {
@@ -17077,7 +17275,7 @@ exports.default = {
17077
17275
  VIRGULA: 'VIRGULA',
17078
17276
  };
17079
17277
 
17080
- },{}],184:[function(require,module,exports){
17278
+ },{}],185:[function(require,module,exports){
17081
17279
  "use strict";
17082
17280
  Object.defineProperty(exports, "__esModule", { value: true });
17083
17281
  exports.default = {
@@ -17094,7 +17292,7 @@ exports.default = {
17094
17292
  VIRGULA: 'VIRGULA',
17095
17293
  };
17096
17294
 
17097
- },{}],185:[function(require,module,exports){
17295
+ },{}],186:[function(require,module,exports){
17098
17296
  "use strict";
17099
17297
  Object.defineProperty(exports, "__esModule", { value: true });
17100
17298
  exports.default = {
@@ -17143,7 +17341,7 @@ exports.default = {
17143
17341
  VIRGULA: 'VIRGULA',
17144
17342
  };
17145
17343
 
17146
- },{}],186:[function(require,module,exports){
17344
+ },{}],187:[function(require,module,exports){
17147
17345
  "use strict";
17148
17346
  Object.defineProperty(exports, "__esModule", { value: true });
17149
17347
  exports.default = {
@@ -17159,6 +17357,7 @@ exports.default = {
17159
17357
  CLASSE: 'CLASSE',
17160
17358
  COLCHETE_DIREITO: 'COLCHETE_DIREITO',
17161
17359
  COLCHETE_ESQUERDO: 'COLCHETE_ESQUERDO',
17360
+ COMENTARIO: 'COMENTARIO',
17162
17361
  COMO: 'COMO',
17163
17362
  CONSTRUTOR: 'CONSTRUTOR',
17164
17363
  CONTINUA: 'CONTINUA',
@@ -17208,6 +17407,7 @@ exports.default = {
17208
17407
  PEGUE: 'PEGUE',
17209
17408
  PONTO: 'PONTO',
17210
17409
  PONTO_E_VIRGULA: 'PONTO_E_VIRGULA',
17410
+ QUEBRAR: 'QUEBRAR',
17211
17411
  RETORNA: 'RETORNA',
17212
17412
  SUBTRACAO: 'SUBTRACAO',
17213
17413
  SE: 'SE',
@@ -17225,7 +17425,7 @@ exports.default = {
17225
17425
  VIRGULA: 'VIRGULA',
17226
17426
  };
17227
17427
 
17228
- },{}],187:[function(require,module,exports){
17428
+ },{}],188:[function(require,module,exports){
17229
17429
  "use strict";
17230
17430
  Object.defineProperty(exports, "__esModule", { value: true });
17231
17431
  exports.default = {
@@ -17264,7 +17464,7 @@ exports.default = {
17264
17464
  VIRGULA: 'VIRGULA',
17265
17465
  };
17266
17466
 
17267
- },{}],188:[function(require,module,exports){
17467
+ },{}],189:[function(require,module,exports){
17268
17468
  "use strict";
17269
17469
  Object.defineProperty(exports, "__esModule", { value: true });
17270
17470
  // Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
@@ -17359,7 +17559,7 @@ exports.default = {
17359
17559
  VIRGULA: 'VIRGULA',
17360
17560
  };
17361
17561
 
17362
- },{}],189:[function(require,module,exports){
17562
+ },{}],190:[function(require,module,exports){
17363
17563
  "use strict";
17364
17564
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
17365
17565
  if (k2 === undefined) k2 = k;
@@ -17386,7 +17586,7 @@ __exportStar(require("./tradutor-reverso-javascript"), exports);
17386
17586
  __exportStar(require("./tradutor-reverso-python"), exports);
17387
17587
  __exportStar(require("./tradutor-reverso-tenda"), exports);
17388
17588
 
17389
- },{"./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){
17589
+ },{"./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){
17390
17590
  "use strict";
17391
17591
  // Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
17392
17592
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -18626,7 +18826,7 @@ __decorate([
18626
18826
  Decorators_1.Override
18627
18827
  ], Python3Lexer.prototype, "nextToken", null);
18628
18828
 
18629
- },{"./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){
18829
+ },{"./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){
18630
18830
  "use strict";
18631
18831
  // Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
18632
18832
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -29873,7 +30073,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
29873
30073
  }
29874
30074
  exports.Yield_argContext = Yield_argContext;
29875
30075
 
29876
- },{"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){
30076
+ },{"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){
29877
30077
  "use strict";
29878
30078
  var __importDefault = (this && this.__importDefault) || function (mod) {
29879
30079
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -30508,7 +30708,7 @@ class TradutorAssemblyScript {
30508
30708
  }
30509
30709
  exports.TradutorAssemblyScript = TradutorAssemblyScript;
30510
30710
 
30511
- },{"../construtos":49,"../declaracoes":93,"../tipos-de-simbolos/delegua":182}],193:[function(require,module,exports){
30711
+ },{"../construtos":49,"../declaracoes":94,"../tipos-de-simbolos/delegua":183}],194:[function(require,module,exports){
30512
30712
  "use strict";
30513
30713
  Object.defineProperty(exports, "__esModule", { value: true });
30514
30714
  exports.TradutorCalango = void 0;
@@ -30570,7 +30770,7 @@ class TradutorCalango {
30570
30770
  }
30571
30771
  exports.TradutorCalango = TradutorCalango;
30572
30772
 
30573
- },{"../lexador/dialetos":156}],194:[function(require,module,exports){
30773
+ },{"../lexador/dialetos":157}],195:[function(require,module,exports){
30574
30774
  "use strict";
30575
30775
  var __importDefault = (this && this.__importDefault) || function (mod) {
30576
30776
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -31314,7 +31514,7 @@ class TradutorJavaScript {
31314
31514
  }
31315
31515
  exports.TradutorJavaScript = TradutorJavaScript;
31316
31516
 
31317
- },{"../construtos":49,"../declaracoes":93,"../tipos-de-simbolos/delegua":182}],195:[function(require,module,exports){
31517
+ },{"../construtos":49,"../declaracoes":94,"../tipos-de-simbolos/delegua":183}],196:[function(require,module,exports){
31318
31518
  "use strict";
31319
31519
  var __importDefault = (this && this.__importDefault) || function (mod) {
31320
31520
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -31768,7 +31968,7 @@ class TradutorMermaidJs {
31768
31968
  }
31769
31969
  exports.TradutorMermaidJs = TradutorMermaidJs;
31770
31970
 
31771
- },{"../tipos-de-simbolos/delegua":182}],196:[function(require,module,exports){
31971
+ },{"../tipos-de-simbolos/delegua":183}],197:[function(require,module,exports){
31772
31972
  "use strict";
31773
31973
  Object.defineProperty(exports, "__esModule", { value: true });
31774
31974
  exports.TradutorPortugolIpt = void 0;
@@ -31830,7 +32030,7 @@ class TradutorPortugolIpt {
31830
32030
  }
31831
32031
  exports.TradutorPortugolIpt = TradutorPortugolIpt;
31832
32032
 
31833
- },{"../avaliador-sintatico/dialetos":8,"../lexador/dialetos":156}],197:[function(require,module,exports){
32033
+ },{"../avaliador-sintatico/dialetos":8,"../lexador/dialetos":157}],198:[function(require,module,exports){
31834
32034
  "use strict";
31835
32035
  var __importDefault = (this && this.__importDefault) || function (mod) {
31836
32036
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -32472,7 +32672,7 @@ class TradutorPython {
32472
32672
  }
32473
32673
  exports.TradutorPython = TradutorPython;
32474
32674
 
32475
- },{"../construtos":49,"../declaracoes":93,"../tipos-de-simbolos/delegua":182}],198:[function(require,module,exports){
32675
+ },{"../construtos":49,"../declaracoes":94,"../tipos-de-simbolos/delegua":183}],199:[function(require,module,exports){
32476
32676
  "use strict";
32477
32677
  Object.defineProperty(exports, "__esModule", { value: true });
32478
32678
  exports.TradutorReversoJavaScript = void 0;
@@ -32869,7 +33069,7 @@ class TradutorReversoJavaScript {
32869
33069
  }
32870
33070
  exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
32871
33071
 
32872
- },{}],199:[function(require,module,exports){
33072
+ },{}],200:[function(require,module,exports){
32873
33073
  "use strict";
32874
33074
  Object.defineProperty(exports, "__esModule", { value: true });
32875
33075
  exports.TradutorReversoPython = void 0;
@@ -32942,7 +33142,7 @@ class TradutorReversoPython {
32942
33142
  }
32943
33143
  exports.TradutorReversoPython = TradutorReversoPython;
32944
33144
 
32945
- },{"./python/python3-lexer":190,"./python/python3-parser":191,"antlr4ts":316,"antlr4ts/tree/ParseTreeWalker":335}],200:[function(require,module,exports){
33145
+ },{"./python/python3-lexer":191,"./python/python3-parser":192,"antlr4ts":317,"antlr4ts/tree/ParseTreeWalker":336}],201:[function(require,module,exports){
32946
33146
  "use strict";
32947
33147
  var __importDefault = (this && this.__importDefault) || function (mod) {
32948
33148
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -33536,7 +33736,7 @@ class TradutorReversoTenda {
33536
33736
  }
33537
33737
  exports.TradutorReversoTenda = TradutorReversoTenda;
33538
33738
 
33539
- },{"../construtos":49,"../tipos-de-simbolos/tenda":188}],201:[function(require,module,exports){
33739
+ },{"../construtos":49,"../tipos-de-simbolos/tenda":189}],202:[function(require,module,exports){
33540
33740
  "use strict";
33541
33741
  /*!
33542
33742
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33544,7 +33744,7 @@ exports.TradutorReversoTenda = TradutorReversoTenda;
33544
33744
  */
33545
33745
  Object.defineProperty(exports, "__esModule", { value: true });
33546
33746
 
33547
- },{}],202:[function(require,module,exports){
33747
+ },{}],203:[function(require,module,exports){
33548
33748
  "use strict";
33549
33749
  /*!
33550
33750
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33552,7 +33752,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
33552
33752
  */
33553
33753
  Object.defineProperty(exports, "__esModule", { value: true });
33554
33754
 
33555
- },{}],203:[function(require,module,exports){
33755
+ },{}],204:[function(require,module,exports){
33556
33756
  "use strict";
33557
33757
  /*!
33558
33758
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33714,7 +33914,7 @@ __decorate([
33714
33914
  ], ANTLRInputStream.prototype, "toString", null);
33715
33915
  exports.ANTLRInputStream = ANTLRInputStream;
33716
33916
 
33717
- },{"./Decorators":214,"./IntStream":220,"assert":357}],204:[function(require,module,exports){
33917
+ },{"./Decorators":215,"./IntStream":221,"assert":358}],205:[function(require,module,exports){
33718
33918
  "use strict";
33719
33919
  /*!
33720
33920
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33797,7 +33997,7 @@ __decorate([
33797
33997
  ], BailErrorStrategy.prototype, "sync", null);
33798
33998
  exports.BailErrorStrategy = BailErrorStrategy;
33799
33999
 
33800
- },{"./Decorators":214,"./DefaultErrorStrategy":215,"./InputMismatchException":219,"./misc/ParseCancellationException":331}],205:[function(require,module,exports){
34000
+ },{"./Decorators":215,"./DefaultErrorStrategy":216,"./InputMismatchException":220,"./misc/ParseCancellationException":332}],206:[function(require,module,exports){
33801
34001
  "use strict";
33802
34002
  /*!
33803
34003
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34287,7 +34487,7 @@ BufferedTokenStream = __decorate([
34287
34487
  ], BufferedTokenStream);
34288
34488
  exports.BufferedTokenStream = BufferedTokenStream;
34289
34489
 
34290
- },{"./CommonToken":210,"./Decorators":214,"./Lexer":222,"./Token":239,"./misc/Interval":326,"assert":357}],206:[function(require,module,exports){
34490
+ },{"./CommonToken":211,"./Decorators":215,"./Lexer":223,"./Token":240,"./misc/Interval":327,"assert":358}],207:[function(require,module,exports){
34291
34491
  "use strict";
34292
34492
  /*!
34293
34493
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34295,7 +34495,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
34295
34495
  */
34296
34496
  Object.defineProperty(exports, "__esModule", { value: true });
34297
34497
 
34298
- },{}],207:[function(require,module,exports){
34498
+ },{}],208:[function(require,module,exports){
34299
34499
  "use strict";
34300
34500
  /*!
34301
34501
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34429,7 +34629,7 @@ var CharStreams;
34429
34629
  // }
34430
34630
  })(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
34431
34631
 
34432
- },{"./CodePointBuffer":208,"./CodePointCharStream":209,"./IntStream":220}],208:[function(require,module,exports){
34632
+ },{"./CodePointBuffer":209,"./CodePointCharStream":210,"./IntStream":221}],209:[function(require,module,exports){
34433
34633
  "use strict";
34434
34634
  /*!
34435
34635
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34664,7 +34864,7 @@ exports.CodePointBuffer = CodePointBuffer;
34664
34864
  CodePointBuffer.Builder = Builder;
34665
34865
  })(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
34666
34866
 
34667
- },{"./misc/Character":322,"assert":357}],209:[function(require,module,exports){
34867
+ },{"./misc/Character":323,"assert":358}],210:[function(require,module,exports){
34668
34868
  "use strict";
34669
34869
  /*!
34670
34870
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34814,7 +35014,7 @@ __decorate([
34814
35014
  ], CodePointCharStream.prototype, "getText", null);
34815
35015
  exports.CodePointCharStream = CodePointCharStream;
34816
35016
 
34817
- },{"./Decorators":214,"./IntStream":220,"./misc/Interval":326,"assert":357}],210:[function(require,module,exports){
35017
+ },{"./Decorators":215,"./IntStream":221,"./misc/Interval":327,"assert":358}],211:[function(require,module,exports){
34818
35018
  "use strict";
34819
35019
  /*!
34820
35020
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35044,7 +35244,7 @@ CommonToken = __decorate([
35044
35244
  ], CommonToken);
35045
35245
  exports.CommonToken = CommonToken;
35046
35246
 
35047
- },{"./Decorators":214,"./Token":239,"./misc/Interval":326}],211:[function(require,module,exports){
35247
+ },{"./Decorators":215,"./Token":240,"./misc/Interval":327}],212:[function(require,module,exports){
35048
35248
  "use strict";
35049
35249
  /*!
35050
35250
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35108,7 +35308,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
35108
35308
  CommonTokenFactory.DEFAULT = new CommonTokenFactory();
35109
35309
  })(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
35110
35310
 
35111
- },{"./CommonToken":210,"./Decorators":214,"./misc/Interval":326}],212:[function(require,module,exports){
35311
+ },{"./CommonToken":211,"./Decorators":215,"./misc/Interval":327}],213:[function(require,module,exports){
35112
35312
  "use strict";
35113
35313
  /*!
35114
35314
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35235,7 +35435,7 @@ CommonTokenStream = __decorate([
35235
35435
  ], CommonTokenStream);
35236
35436
  exports.CommonTokenStream = CommonTokenStream;
35237
35437
 
35238
- },{"./BufferedTokenStream":205,"./Decorators":214,"./Token":239}],213:[function(require,module,exports){
35438
+ },{"./BufferedTokenStream":206,"./Decorators":215,"./Token":240}],214:[function(require,module,exports){
35239
35439
  "use strict";
35240
35440
  /*!
35241
35441
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35269,7 +35469,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
35269
35469
  */
35270
35470
  ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
35271
35471
 
35272
- },{}],214:[function(require,module,exports){
35472
+ },{}],215:[function(require,module,exports){
35273
35473
  "use strict";
35274
35474
  /*!
35275
35475
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35296,7 +35496,7 @@ function SuppressWarnings(options) {
35296
35496
  }
35297
35497
  exports.SuppressWarnings = SuppressWarnings;
35298
35498
 
35299
- },{}],215:[function(require,module,exports){
35499
+ },{}],216:[function(require,module,exports){
35300
35500
  "use strict";
35301
35501
  /*!
35302
35502
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36110,7 +36310,7 @@ __decorate([
36110
36310
  ], DefaultErrorStrategy.prototype, "consumeUntil", null);
36111
36311
  exports.DefaultErrorStrategy = DefaultErrorStrategy;
36112
36312
 
36113
- },{"./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){
36313
+ },{"./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){
36114
36314
  "use strict";
36115
36315
  /*!
36116
36316
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36186,7 +36386,7 @@ var Dependents;
36186
36386
  Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
36187
36387
  })(Dependents = exports.Dependents || (exports.Dependents = {}));
36188
36388
 
36189
- },{}],217:[function(require,module,exports){
36389
+ },{}],218:[function(require,module,exports){
36190
36390
  "use strict";
36191
36391
  /*!
36192
36392
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36334,7 +36534,7 @@ __decorate([
36334
36534
  ], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
36335
36535
  exports.DiagnosticErrorListener = DiagnosticErrorListener;
36336
36536
 
36337
- },{"./Decorators":214,"./misc/BitSet":321,"./misc/Interval":326}],218:[function(require,module,exports){
36537
+ },{"./Decorators":215,"./misc/BitSet":322,"./misc/Interval":327}],219:[function(require,module,exports){
36338
36538
  "use strict";
36339
36539
  /*!
36340
36540
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36399,7 +36599,7 @@ FailedPredicateException = __decorate([
36399
36599
  ], FailedPredicateException);
36400
36600
  exports.FailedPredicateException = FailedPredicateException;
36401
36601
 
36402
- },{"./Decorators":214,"./RecognitionException":233,"./atn/PredicateTransition":293}],219:[function(require,module,exports){
36602
+ },{"./Decorators":215,"./RecognitionException":234,"./atn/PredicateTransition":294}],220:[function(require,module,exports){
36403
36603
  "use strict";
36404
36604
  /*!
36405
36605
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36439,7 +36639,7 @@ InputMismatchException = __decorate([
36439
36639
  ], InputMismatchException);
36440
36640
  exports.InputMismatchException = InputMismatchException;
36441
36641
 
36442
- },{"./Decorators":214,"./RecognitionException":233}],220:[function(require,module,exports){
36642
+ },{"./Decorators":215,"./RecognitionException":234}],221:[function(require,module,exports){
36443
36643
  "use strict";
36444
36644
  /*!
36445
36645
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36462,7 +36662,7 @@ var IntStream;
36462
36662
  IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
36463
36663
  })(IntStream = exports.IntStream || (exports.IntStream = {}));
36464
36664
 
36465
- },{}],221:[function(require,module,exports){
36665
+ },{}],222:[function(require,module,exports){
36466
36666
  "use strict";
36467
36667
  /*!
36468
36668
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36509,7 +36709,7 @@ __decorate([
36509
36709
  ], InterpreterRuleContext.prototype, "ruleIndex", null);
36510
36710
  exports.InterpreterRuleContext = InterpreterRuleContext;
36511
36711
 
36512
- },{"./Decorators":214,"./ParserRuleContext":230}],222:[function(require,module,exports){
36712
+ },{"./Decorators":215,"./ParserRuleContext":231}],223:[function(require,module,exports){
36513
36713
  "use strict";
36514
36714
  /*!
36515
36715
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36845,7 +37045,7 @@ __decorate([
36845
37045
  ], Lexer.prototype, "charPositionInLine", null);
36846
37046
  exports.Lexer = Lexer;
36847
37047
 
36848
- },{"./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){
37048
+ },{"./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){
36849
37049
  "use strict";
36850
37050
  /*!
36851
37051
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36925,7 +37125,7 @@ LexerInterpreter = __decorate([
36925
37125
  ], LexerInterpreter);
36926
37126
  exports.LexerInterpreter = LexerInterpreter;
36927
37127
 
36928
- },{"./Decorators":214,"./Lexer":222,"./atn/LexerATNSimulator":272}],224:[function(require,module,exports){
37128
+ },{"./Decorators":215,"./Lexer":223,"./atn/LexerATNSimulator":273}],225:[function(require,module,exports){
36929
37129
  "use strict";
36930
37130
  /*!
36931
37131
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36982,7 +37182,7 @@ LexerNoViableAltException = __decorate([
36982
37182
  ], LexerNoViableAltException);
36983
37183
  exports.LexerNoViableAltException = LexerNoViableAltException;
36984
37184
 
36985
- },{"./Decorators":214,"./RecognitionException":233,"./misc/Interval":326,"./misc/Utils":333}],225:[function(require,module,exports){
37185
+ },{"./Decorators":215,"./RecognitionException":234,"./misc/Interval":327,"./misc/Utils":334}],226:[function(require,module,exports){
36986
37186
  "use strict";
36987
37187
  /*!
36988
37188
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37192,7 +37392,7 @@ ListTokenSource = __decorate([
37192
37392
  ], ListTokenSource);
37193
37393
  exports.ListTokenSource = ListTokenSource;
37194
37394
 
37195
- },{"./CommonTokenFactory":211,"./Decorators":214,"./Token":239}],226:[function(require,module,exports){
37395
+ },{"./CommonTokenFactory":212,"./Decorators":215,"./Token":240}],227:[function(require,module,exports){
37196
37396
  "use strict";
37197
37397
  /*!
37198
37398
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37247,7 +37447,7 @@ __decorate([
37247
37447
  ], NoViableAltException.prototype, "_startToken", void 0);
37248
37448
  exports.NoViableAltException = NoViableAltException;
37249
37449
 
37250
- },{"./Decorators":214,"./Parser":227,"./RecognitionException":233}],227:[function(require,module,exports){
37450
+ },{"./Decorators":215,"./Parser":228,"./RecognitionException":234}],228:[function(require,module,exports){
37251
37451
  (function (process){(function (){
37252
37452
  "use strict";
37253
37453
  /*!
@@ -38093,7 +38293,7 @@ __decorate([
38093
38293
  exports.Parser = Parser;
38094
38294
 
38095
38295
  }).call(this)}).call(this,require('_process'))
38096
- },{"./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){
38296
+ },{"./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){
38097
38297
  "use strict";
38098
38298
  /*!
38099
38299
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38101,7 +38301,7 @@ exports.Parser = Parser;
38101
38301
  */
38102
38302
  Object.defineProperty(exports, "__esModule", { value: true });
38103
38303
 
38104
- },{}],229:[function(require,module,exports){
38304
+ },{}],230:[function(require,module,exports){
38105
38305
  "use strict";
38106
38306
  /*!
38107
38307
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38509,7 +38709,7 @@ ParserInterpreter = __decorate([
38509
38709
  ], ParserInterpreter);
38510
38710
  exports.ParserInterpreter = ParserInterpreter;
38511
38711
 
38512
- },{"./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){
38712
+ },{"./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){
38513
38713
  "use strict";
38514
38714
  /*!
38515
38715
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38810,7 +39010,7 @@ __decorate([
38810
39010
  ], ParserRuleContext.prototype, "sourceInterval", null);
38811
39011
  exports.ParserRuleContext = ParserRuleContext;
38812
39012
 
38813
- },{"./Decorators":214,"./RuleContext":235,"./misc/Interval":326,"./tree/ErrorNode":334,"./tree/TerminalNode":337}],231:[function(require,module,exports){
39013
+ },{"./Decorators":215,"./RuleContext":236,"./misc/Interval":327,"./tree/ErrorNode":335,"./tree/TerminalNode":338}],232:[function(require,module,exports){
38814
39014
  "use strict";
38815
39015
  /*!
38816
39016
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38860,7 +39060,7 @@ __decorate([
38860
39060
  ], ProxyErrorListener.prototype, "syntaxError", null);
38861
39061
  exports.ProxyErrorListener = ProxyErrorListener;
38862
39062
 
38863
- },{"./Decorators":214}],232:[function(require,module,exports){
39063
+ },{"./Decorators":215}],233:[function(require,module,exports){
38864
39064
  "use strict";
38865
39065
  /*!
38866
39066
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38919,7 +39119,7 @@ __decorate([
38919
39119
  ], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
38920
39120
  exports.ProxyParserErrorListener = ProxyParserErrorListener;
38921
39121
 
38922
- },{"./Decorators":214,"./ProxyErrorListener":231}],233:[function(require,module,exports){
39122
+ },{"./Decorators":215,"./ProxyErrorListener":232}],234:[function(require,module,exports){
38923
39123
  "use strict";
38924
39124
  /*!
38925
39125
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39024,7 +39224,7 @@ class RecognitionException extends Error {
39024
39224
  }
39025
39225
  exports.RecognitionException = RecognitionException;
39026
39226
 
39027
- },{}],234:[function(require,module,exports){
39227
+ },{}],235:[function(require,module,exports){
39028
39228
  "use strict";
39029
39229
  /*!
39030
39230
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39243,7 +39443,7 @@ __decorate([
39243
39443
  ], Recognizer.prototype, "getErrorListeners", null);
39244
39444
  exports.Recognizer = Recognizer;
39245
39445
 
39246
- },{"./ConsoleErrorListener":213,"./Decorators":214,"./ProxyErrorListener":231,"./Token":239,"./misc/Utils":333}],235:[function(require,module,exports){
39446
+ },{"./ConsoleErrorListener":214,"./Decorators":215,"./ProxyErrorListener":232,"./Token":240,"./misc/Utils":334}],236:[function(require,module,exports){
39247
39447
  "use strict";
39248
39448
  /*!
39249
39449
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39460,7 +39660,7 @@ __decorate([
39460
39660
  ], RuleContext.prototype, "toStringTree", null);
39461
39661
  exports.RuleContext = RuleContext;
39462
39662
 
39463
- },{"./Decorators":214,"./ParserRuleContext":230,"./Recognizer":234,"./atn/ATN":247,"./misc/Interval":326,"./tree/RuleNode":336,"./tree/Trees":338}],236:[function(require,module,exports){
39663
+ },{"./Decorators":215,"./ParserRuleContext":231,"./Recognizer":235,"./atn/ATN":248,"./misc/Interval":327,"./tree/RuleNode":337,"./tree/Trees":339}],237:[function(require,module,exports){
39464
39664
  "use strict";
39465
39665
  /*!
39466
39666
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39511,7 +39711,7 @@ __decorate([
39511
39711
  ], RuleContextWithAltNum.prototype, "altNumber", null);
39512
39712
  exports.RuleContextWithAltNum = RuleContextWithAltNum;
39513
39713
 
39514
- },{"./Decorators":214,"./ParserRuleContext":230,"./atn/ATN":247}],237:[function(require,module,exports){
39714
+ },{"./Decorators":215,"./ParserRuleContext":231,"./atn/ATN":248}],238:[function(require,module,exports){
39515
39715
  "use strict";
39516
39716
  /*!
39517
39717
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39534,7 +39734,7 @@ function RuleDependency(dependency) {
39534
39734
  }
39535
39735
  exports.RuleDependency = RuleDependency;
39536
39736
 
39537
- },{}],238:[function(require,module,exports){
39737
+ },{}],239:[function(require,module,exports){
39538
39738
  "use strict";
39539
39739
  /*!
39540
39740
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39553,7 +39753,7 @@ function RuleVersion(version) {
39553
39753
  }
39554
39754
  exports.RuleVersion = RuleVersion;
39555
39755
 
39556
- },{}],239:[function(require,module,exports){
39756
+ },{}],240:[function(require,module,exports){
39557
39757
  "use strict";
39558
39758
  /*!
39559
39759
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39593,7 +39793,7 @@ var Token;
39593
39793
  Token.MIN_USER_CHANNEL_VALUE = 2;
39594
39794
  })(Token = exports.Token || (exports.Token = {}));
39595
39795
 
39596
- },{"./IntStream":220}],240:[function(require,module,exports){
39796
+ },{"./IntStream":221}],241:[function(require,module,exports){
39597
39797
  "use strict";
39598
39798
  /*!
39599
39799
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39601,7 +39801,7 @@ var Token;
39601
39801
  */
39602
39802
  Object.defineProperty(exports, "__esModule", { value: true });
39603
39803
 
39604
- },{}],241:[function(require,module,exports){
39804
+ },{}],242:[function(require,module,exports){
39605
39805
  "use strict";
39606
39806
  /*!
39607
39807
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39609,7 +39809,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
39609
39809
  */
39610
39810
  Object.defineProperty(exports, "__esModule", { value: true });
39611
39811
 
39612
- },{}],242:[function(require,module,exports){
39812
+ },{}],243:[function(require,module,exports){
39613
39813
  "use strict";
39614
39814
  /*!
39615
39815
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39617,7 +39817,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
39617
39817
  */
39618
39818
  Object.defineProperty(exports, "__esModule", { value: true });
39619
39819
 
39620
- },{}],243:[function(require,module,exports){
39820
+ },{}],244:[function(require,module,exports){
39621
39821
  "use strict";
39622
39822
  /*!
39623
39823
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40125,7 +40325,7 @@ __decorate([
40125
40325
  Decorators_1.Override
40126
40326
  ], ReplaceOp.prototype, "toString", null);
40127
40327
 
40128
- },{"./Decorators":214,"./Token":239,"./misc/Interval":326}],244:[function(require,module,exports){
40328
+ },{"./Decorators":215,"./Token":240,"./misc/Interval":327}],245:[function(require,module,exports){
40129
40329
  "use strict";
40130
40330
  /*!
40131
40331
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40133,7 +40333,7 @@ __decorate([
40133
40333
  */
40134
40334
  Object.defineProperty(exports, "__esModule", { value: true });
40135
40335
 
40136
- },{}],245:[function(require,module,exports){
40336
+ },{}],246:[function(require,module,exports){
40137
40337
  "use strict";
40138
40338
  /*!
40139
40339
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40253,7 +40453,7 @@ __decorate([
40253
40453
  ], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
40254
40454
  exports.VocabularyImpl = VocabularyImpl;
40255
40455
 
40256
- },{"./Decorators":214,"./Token":239}],246:[function(require,module,exports){
40456
+ },{"./Decorators":215,"./Token":240}],247:[function(require,module,exports){
40257
40457
  "use strict";
40258
40458
  /*!
40259
40459
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40261,7 +40461,7 @@ exports.VocabularyImpl = VocabularyImpl;
40261
40461
  */
40262
40462
  Object.defineProperty(exports, "__esModule", { value: true });
40263
40463
 
40264
- },{}],247:[function(require,module,exports){
40464
+ },{}],248:[function(require,module,exports){
40265
40465
  "use strict";
40266
40466
  /*!
40267
40467
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40483,7 +40683,7 @@ exports.ATN = ATN;
40483
40683
  })(ATN = exports.ATN || (exports.ATN = {}));
40484
40684
  exports.ATN = ATN;
40485
40685
 
40486
- },{"../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){
40686
+ },{"../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){
40487
40687
  "use strict";
40488
40688
  /*!
40489
40689
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41008,7 +41208,7 @@ ActionSemanticContextATNConfig = __decorate([
41008
41208
  __param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
41009
41209
  ], ActionSemanticContextATNConfig);
41010
41210
 
41011
- },{"../Decorators":214,"../misc/Array2DHashMap":317,"../misc/MurmurHash":329,"../misc/ObjectEqualityComparator":330,"./DecisionState":267,"./PredictionContext":294,"./SemanticContext":302,"assert":357}],249:[function(require,module,exports){
41211
+ },{"../Decorators":215,"../misc/Array2DHashMap":318,"../misc/MurmurHash":330,"../misc/ObjectEqualityComparator":331,"./DecisionState":268,"./PredictionContext":295,"./SemanticContext":303,"assert":358}],250:[function(require,module,exports){
41012
41212
  "use strict";
41013
41213
  /*!
41014
41214
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41455,7 +41655,7 @@ __decorate([
41455
41655
  ], ATNConfigSet.prototype, "hashCode", null);
41456
41656
  exports.ATNConfigSet = ATNConfigSet;
41457
41657
 
41458
- },{"../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){
41658
+ },{"../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){
41459
41659
  "use strict";
41460
41660
  /*!
41461
41661
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41534,7 +41734,7 @@ __decorate([
41534
41734
  ], ATNDeserializationOptions, "defaultOptions", null);
41535
41735
  exports.ATNDeserializationOptions = ATNDeserializationOptions;
41536
41736
 
41537
- },{"../Decorators":214}],251:[function(require,module,exports){
41737
+ },{"../Decorators":215}],252:[function(require,module,exports){
41538
41738
  "use strict";
41539
41739
  /*!
41540
41740
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42621,7 +42821,7 @@ __decorate([
42621
42821
  ], ATNDeserializer.prototype, "edgeFactory", null);
42622
42822
  exports.ATNDeserializer = ATNDeserializer;
42623
42823
 
42624
- },{"../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){
42824
+ },{"../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){
42625
42825
  "use strict";
42626
42826
  /*!
42627
42827
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42685,7 +42885,7 @@ exports.ATNSimulator = ATNSimulator;
42685
42885
  })(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
42686
42886
  exports.ATNSimulator = ATNSimulator;
42687
42887
 
42688
- },{"../Decorators":214,"../dfa/DFAState":314,"./ATNConfigSet":249,"./PredictionContext":294}],253:[function(require,module,exports){
42888
+ },{"../Decorators":215,"../dfa/DFAState":315,"./ATNConfigSet":250,"./PredictionContext":295}],254:[function(require,module,exports){
42689
42889
  "use strict";
42690
42890
  /*!
42691
42891
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42872,7 +43072,7 @@ exports.ATNState = ATNState;
42872
43072
  ATNState.INVALID_STATE_NUMBER = -1;
42873
43073
  })(ATNState = exports.ATNState || (exports.ATNState = {}));
42874
43074
 
42875
- },{"../Decorators":214}],254:[function(require,module,exports){
43075
+ },{"../Decorators":215}],255:[function(require,module,exports){
42876
43076
  "use strict";
42877
43077
  /*!
42878
43078
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42898,7 +43098,7 @@ var ATNStateType;
42898
43098
  ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
42899
43099
  })(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
42900
43100
 
42901
- },{}],255:[function(require,module,exports){
43101
+ },{}],256:[function(require,module,exports){
42902
43102
  "use strict";
42903
43103
  /*!
42904
43104
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42918,7 +43118,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
42918
43118
  }
42919
43119
  exports.AbstractPredicateTransition = AbstractPredicateTransition;
42920
43120
 
42921
- },{"./Transition":309}],256:[function(require,module,exports){
43121
+ },{"./Transition":310}],257:[function(require,module,exports){
42922
43122
  "use strict";
42923
43123
  /*!
42924
43124
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42974,7 +43174,7 @@ ActionTransition = __decorate([
42974
43174
  ], ActionTransition);
42975
43175
  exports.ActionTransition = ActionTransition;
42976
43176
 
42977
- },{"../Decorators":214,"./Transition":309}],257:[function(require,module,exports){
43177
+ },{"../Decorators":215,"./Transition":310}],258:[function(require,module,exports){
42978
43178
  "use strict";
42979
43179
  /*!
42980
43180
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43061,7 +43261,7 @@ AmbiguityInfo = __decorate([
43061
43261
  ], AmbiguityInfo);
43062
43262
  exports.AmbiguityInfo = AmbiguityInfo;
43063
43263
 
43064
- },{"../Decorators":214,"./DecisionEventInfo":265}],258:[function(require,module,exports){
43264
+ },{"../Decorators":215,"./DecisionEventInfo":266}],259:[function(require,module,exports){
43065
43265
  "use strict";
43066
43266
  /*!
43067
43267
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43119,7 +43319,7 @@ AtomTransition = __decorate([
43119
43319
  ], AtomTransition);
43120
43320
  exports.AtomTransition = AtomTransition;
43121
43321
 
43122
- },{"../Decorators":214,"../misc/IntervalSet":327,"./Transition":309}],259:[function(require,module,exports){
43322
+ },{"../Decorators":215,"../misc/IntervalSet":328,"./Transition":310}],260:[function(require,module,exports){
43123
43323
  "use strict";
43124
43324
  /*!
43125
43325
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43151,7 +43351,7 @@ __decorate([
43151
43351
  ], BasicBlockStartState.prototype, "stateType", null);
43152
43352
  exports.BasicBlockStartState = BasicBlockStartState;
43153
43353
 
43154
- },{"../Decorators":214,"./ATNStateType":254,"./BlockStartState":262}],260:[function(require,module,exports){
43354
+ },{"../Decorators":215,"./ATNStateType":255,"./BlockStartState":263}],261:[function(require,module,exports){
43155
43355
  "use strict";
43156
43356
  /*!
43157
43357
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43183,7 +43383,7 @@ __decorate([
43183
43383
  ], BasicState.prototype, "stateType", null);
43184
43384
  exports.BasicState = BasicState;
43185
43385
 
43186
- },{"../Decorators":214,"./ATNState":253,"./ATNStateType":254}],261:[function(require,module,exports){
43386
+ },{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],262:[function(require,module,exports){
43187
43387
  "use strict";
43188
43388
  /*!
43189
43389
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43212,7 +43412,7 @@ __decorate([
43212
43412
  ], BlockEndState.prototype, "stateType", null);
43213
43413
  exports.BlockEndState = BlockEndState;
43214
43414
 
43215
- },{"../Decorators":214,"./ATNState":253,"./ATNStateType":254}],262:[function(require,module,exports){
43415
+ },{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],263:[function(require,module,exports){
43216
43416
  "use strict";
43217
43417
  /*!
43218
43418
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43226,7 +43426,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
43226
43426
  }
43227
43427
  exports.BlockStartState = BlockStartState;
43228
43428
 
43229
- },{"./DecisionState":267}],263:[function(require,module,exports){
43429
+ },{"./DecisionState":268}],264:[function(require,module,exports){
43230
43430
  "use strict";
43231
43431
  /*!
43232
43432
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43296,7 +43496,7 @@ __decorate([
43296
43496
  ], ConflictInfo.prototype, "hashCode", null);
43297
43497
  exports.ConflictInfo = ConflictInfo;
43298
43498
 
43299
- },{"../Decorators":214,"../misc/Utils":333}],264:[function(require,module,exports){
43499
+ },{"../Decorators":215,"../misc/Utils":334}],265:[function(require,module,exports){
43300
43500
  "use strict";
43301
43501
  /*!
43302
43502
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43356,7 +43556,7 @@ ContextSensitivityInfo = __decorate([
43356
43556
  ], ContextSensitivityInfo);
43357
43557
  exports.ContextSensitivityInfo = ContextSensitivityInfo;
43358
43558
 
43359
- },{"../Decorators":214,"./DecisionEventInfo":265}],265:[function(require,module,exports){
43559
+ },{"../Decorators":215,"./DecisionEventInfo":266}],266:[function(require,module,exports){
43360
43560
  "use strict";
43361
43561
  /*!
43362
43562
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43408,7 +43608,7 @@ DecisionEventInfo = __decorate([
43408
43608
  ], DecisionEventInfo);
43409
43609
  exports.DecisionEventInfo = DecisionEventInfo;
43410
43610
 
43411
- },{"../Decorators":214}],266:[function(require,module,exports){
43611
+ },{"../Decorators":215}],267:[function(require,module,exports){
43412
43612
  "use strict";
43413
43613
  /*!
43414
43614
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43621,7 +43821,7 @@ __decorate([
43621
43821
  ], DecisionInfo.prototype, "toString", null);
43622
43822
  exports.DecisionInfo = DecisionInfo;
43623
43823
 
43624
- },{"../Decorators":214}],267:[function(require,module,exports){
43824
+ },{"../Decorators":215}],268:[function(require,module,exports){
43625
43825
  "use strict";
43626
43826
  /*!
43627
43827
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43641,7 +43841,7 @@ class DecisionState extends ATNState_1.ATNState {
43641
43841
  }
43642
43842
  exports.DecisionState = DecisionState;
43643
43843
 
43644
- },{"./ATNState":253}],268:[function(require,module,exports){
43844
+ },{"./ATNState":254}],269:[function(require,module,exports){
43645
43845
  "use strict";
43646
43846
  /*!
43647
43847
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43707,7 +43907,7 @@ EpsilonTransition = __decorate([
43707
43907
  ], EpsilonTransition);
43708
43908
  exports.EpsilonTransition = EpsilonTransition;
43709
43909
 
43710
- },{"../Decorators":214,"./Transition":309}],269:[function(require,module,exports){
43910
+ },{"../Decorators":215,"./Transition":310}],270:[function(require,module,exports){
43711
43911
  "use strict";
43712
43912
  /*!
43713
43913
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43760,7 +43960,7 @@ ErrorInfo = __decorate([
43760
43960
  ], ErrorInfo);
43761
43961
  exports.ErrorInfo = ErrorInfo;
43762
43962
 
43763
- },{"../Decorators":214,"./DecisionEventInfo":265}],270:[function(require,module,exports){
43963
+ },{"../Decorators":215,"./DecisionEventInfo":266}],271:[function(require,module,exports){
43764
43964
  "use strict";
43765
43965
  /*!
43766
43966
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43791,7 +43991,7 @@ __decorate([
43791
43991
  ], InvalidState.prototype, "stateType", null);
43792
43992
  exports.InvalidState = InvalidState;
43793
43993
 
43794
- },{"../Decorators":214,"./ATNStateType":254,"./BasicState":260}],271:[function(require,module,exports){
43994
+ },{"../Decorators":215,"./ATNStateType":255,"./BasicState":261}],272:[function(require,module,exports){
43795
43995
  "use strict";
43796
43996
  /*!
43797
43997
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44013,7 +44213,7 @@ LL1Analyzer = __decorate([
44013
44213
  ], LL1Analyzer);
44014
44214
  exports.LL1Analyzer = LL1Analyzer;
44015
44215
 
44016
- },{"../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){
44216
+ },{"../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){
44017
44217
  "use strict";
44018
44218
  /*!
44019
44219
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44730,7 +44930,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
44730
44930
  })(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
44731
44931
  exports.LexerATNSimulator = LexerATNSimulator;
44732
44932
 
44733
- },{"../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){
44933
+ },{"../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){
44734
44934
  "use strict";
44735
44935
  /*!
44736
44936
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44931,7 +45131,7 @@ LexerActionExecutor = __decorate([
44931
45131
  ], LexerActionExecutor);
44932
45132
  exports.LexerActionExecutor = LexerActionExecutor;
44933
45133
 
44934
- },{"../Decorators":214,"../misc/ArrayEqualityComparator":319,"../misc/MurmurHash":329,"./LexerIndexedCustomAction":276}],274:[function(require,module,exports){
45134
+ },{"../Decorators":215,"../misc/ArrayEqualityComparator":320,"../misc/MurmurHash":330,"./LexerIndexedCustomAction":277}],275:[function(require,module,exports){
44935
45135
  "use strict";
44936
45136
  /*!
44937
45137
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45036,7 +45236,7 @@ __decorate([
45036
45236
  ], LexerChannelAction.prototype, "toString", null);
45037
45237
  exports.LexerChannelAction = LexerChannelAction;
45038
45238
 
45039
- },{"../Decorators":214,"../misc/MurmurHash":329}],275:[function(require,module,exports){
45239
+ },{"../Decorators":215,"../misc/MurmurHash":330}],276:[function(require,module,exports){
45040
45240
  "use strict";
45041
45241
  /*!
45042
45242
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45165,7 +45365,7 @@ __decorate([
45165
45365
  ], LexerCustomAction.prototype, "equals", null);
45166
45366
  exports.LexerCustomAction = LexerCustomAction;
45167
45367
 
45168
- },{"../Decorators":214,"../misc/MurmurHash":329}],276:[function(require,module,exports){
45368
+ },{"../Decorators":215,"../misc/MurmurHash":330}],277:[function(require,module,exports){
45169
45369
  "use strict";
45170
45370
  /*!
45171
45371
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45300,7 +45500,7 @@ LexerIndexedCustomAction = __decorate([
45300
45500
  ], LexerIndexedCustomAction);
45301
45501
  exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
45302
45502
 
45303
- },{"../Decorators":214,"../misc/MurmurHash":329}],277:[function(require,module,exports){
45503
+ },{"../Decorators":215,"../misc/MurmurHash":330}],278:[function(require,module,exports){
45304
45504
  "use strict";
45305
45505
  /*!
45306
45506
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45405,7 +45605,7 @@ __decorate([
45405
45605
  ], LexerModeAction.prototype, "toString", null);
45406
45606
  exports.LexerModeAction = LexerModeAction;
45407
45607
 
45408
- },{"../Decorators":214,"../misc/MurmurHash":329}],278:[function(require,module,exports){
45608
+ },{"../Decorators":215,"../misc/MurmurHash":330}],279:[function(require,module,exports){
45409
45609
  "use strict";
45410
45610
  /*!
45411
45611
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45501,7 +45701,7 @@ exports.LexerMoreAction = LexerMoreAction;
45501
45701
  LexerMoreAction.INSTANCE = new LexerMoreAction();
45502
45702
  })(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
45503
45703
 
45504
- },{"../Decorators":214,"../misc/MurmurHash":329}],279:[function(require,module,exports){
45704
+ },{"../Decorators":215,"../misc/MurmurHash":330}],280:[function(require,module,exports){
45505
45705
  "use strict";
45506
45706
  /*!
45507
45707
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45597,7 +45797,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
45597
45797
  LexerPopModeAction.INSTANCE = new LexerPopModeAction();
45598
45798
  })(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
45599
45799
 
45600
- },{"../Decorators":214,"../misc/MurmurHash":329}],280:[function(require,module,exports){
45800
+ },{"../Decorators":215,"../misc/MurmurHash":330}],281:[function(require,module,exports){
45601
45801
  "use strict";
45602
45802
  /*!
45603
45803
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45702,7 +45902,7 @@ __decorate([
45702
45902
  ], LexerPushModeAction.prototype, "toString", null);
45703
45903
  exports.LexerPushModeAction = LexerPushModeAction;
45704
45904
 
45705
- },{"../Decorators":214,"../misc/MurmurHash":329}],281:[function(require,module,exports){
45905
+ },{"../Decorators":215,"../misc/MurmurHash":330}],282:[function(require,module,exports){
45706
45906
  "use strict";
45707
45907
  /*!
45708
45908
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45798,7 +45998,7 @@ exports.LexerSkipAction = LexerSkipAction;
45798
45998
  LexerSkipAction.INSTANCE = new LexerSkipAction();
45799
45999
  })(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
45800
46000
 
45801
- },{"../Decorators":214,"../misc/MurmurHash":329}],282:[function(require,module,exports){
46001
+ },{"../Decorators":215,"../misc/MurmurHash":330}],283:[function(require,module,exports){
45802
46002
  "use strict";
45803
46003
  /*!
45804
46004
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45902,7 +46102,7 @@ __decorate([
45902
46102
  ], LexerTypeAction.prototype, "toString", null);
45903
46103
  exports.LexerTypeAction = LexerTypeAction;
45904
46104
 
45905
- },{"../Decorators":214,"../misc/MurmurHash":329}],283:[function(require,module,exports){
46105
+ },{"../Decorators":215,"../misc/MurmurHash":330}],284:[function(require,module,exports){
45906
46106
  "use strict";
45907
46107
  /*!
45908
46108
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45954,7 +46154,7 @@ LookaheadEventInfo = __decorate([
45954
46154
  ], LookaheadEventInfo);
45955
46155
  exports.LookaheadEventInfo = LookaheadEventInfo;
45956
46156
 
45957
- },{"../Decorators":214,"./DecisionEventInfo":265}],284:[function(require,module,exports){
46157
+ },{"../Decorators":215,"./DecisionEventInfo":266}],285:[function(require,module,exports){
45958
46158
  "use strict";
45959
46159
  /*!
45960
46160
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45983,7 +46183,7 @@ __decorate([
45983
46183
  ], LoopEndState.prototype, "stateType", null);
45984
46184
  exports.LoopEndState = LoopEndState;
45985
46185
 
45986
- },{"../Decorators":214,"./ATNState":253,"./ATNStateType":254}],285:[function(require,module,exports){
46186
+ },{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],286:[function(require,module,exports){
45987
46187
  "use strict";
45988
46188
  /*!
45989
46189
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46032,7 +46232,7 @@ NotSetTransition = __decorate([
46032
46232
  ], NotSetTransition);
46033
46233
  exports.NotSetTransition = NotSetTransition;
46034
46234
 
46035
- },{"../Decorators":214,"./SetTransition":303}],286:[function(require,module,exports){
46235
+ },{"../Decorators":215,"./SetTransition":304}],287:[function(require,module,exports){
46036
46236
  "use strict";
46037
46237
  /*!
46038
46238
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46087,7 +46287,7 @@ __decorate([
46087
46287
  ], OrderedATNConfigSet.prototype, "canMerge", null);
46088
46288
  exports.OrderedATNConfigSet = OrderedATNConfigSet;
46089
46289
 
46090
- },{"../Decorators":214,"./ATNConfigSet":249}],287:[function(require,module,exports){
46290
+ },{"../Decorators":215,"./ATNConfigSet":250}],288:[function(require,module,exports){
46091
46291
  "use strict";
46092
46292
  /*!
46093
46293
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46249,7 +46449,7 @@ ParseInfo = __decorate([
46249
46449
  ], ParseInfo);
46250
46450
  exports.ParseInfo = ParseInfo;
46251
46451
 
46252
- },{"../Decorators":214}],288:[function(require,module,exports){
46452
+ },{"../Decorators":215}],289:[function(require,module,exports){
46253
46453
  "use strict";
46254
46454
  /*!
46255
46455
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48522,7 +48722,7 @@ ParserATNSimulator = __decorate([
48522
48722
  ], ParserATNSimulator);
48523
48723
  exports.ParserATNSimulator = ParserATNSimulator;
48524
48724
 
48525
- },{"../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){
48725
+ },{"../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){
48526
48726
  "use strict";
48527
48727
  /*!
48528
48728
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48555,7 +48755,7 @@ __decorate([
48555
48755
  ], PlusBlockStartState.prototype, "stateType", null);
48556
48756
  exports.PlusBlockStartState = PlusBlockStartState;
48557
48757
 
48558
- },{"../Decorators":214,"./ATNStateType":254,"./BlockStartState":262}],290:[function(require,module,exports){
48758
+ },{"../Decorators":215,"./ATNStateType":255,"./BlockStartState":263}],291:[function(require,module,exports){
48559
48759
  "use strict";
48560
48760
  /*!
48561
48761
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48586,7 +48786,7 @@ __decorate([
48586
48786
  ], PlusLoopbackState.prototype, "stateType", null);
48587
48787
  exports.PlusLoopbackState = PlusLoopbackState;
48588
48788
 
48589
- },{"../Decorators":214,"./ATNStateType":254,"./DecisionState":267}],291:[function(require,module,exports){
48789
+ },{"../Decorators":215,"./ATNStateType":255,"./DecisionState":268}],292:[function(require,module,exports){
48590
48790
  "use strict";
48591
48791
  /*!
48592
48792
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48649,7 +48849,7 @@ PrecedencePredicateTransition = __decorate([
48649
48849
  ], PrecedencePredicateTransition);
48650
48850
  exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
48651
48851
 
48652
- },{"../Decorators":214,"./AbstractPredicateTransition":255,"./SemanticContext":302}],292:[function(require,module,exports){
48852
+ },{"../Decorators":215,"./AbstractPredicateTransition":256,"./SemanticContext":303}],293:[function(require,module,exports){
48653
48853
  "use strict";
48654
48854
  /*!
48655
48855
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48712,7 +48912,7 @@ PredicateEvalInfo = __decorate([
48712
48912
  ], PredicateEvalInfo);
48713
48913
  exports.PredicateEvalInfo = PredicateEvalInfo;
48714
48914
 
48715
- },{"../Decorators":214,"./DecisionEventInfo":265}],293:[function(require,module,exports){
48915
+ },{"../Decorators":215,"./DecisionEventInfo":266}],294:[function(require,module,exports){
48716
48916
  "use strict";
48717
48917
  /*!
48718
48918
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48778,7 +48978,7 @@ PredicateTransition = __decorate([
48778
48978
  ], PredicateTransition);
48779
48979
  exports.PredicateTransition = PredicateTransition;
48780
48980
 
48781
- },{"../Decorators":214,"./AbstractPredicateTransition":255,"./SemanticContext":302}],294:[function(require,module,exports){
48981
+ },{"../Decorators":215,"./AbstractPredicateTransition":256,"./SemanticContext":303}],295:[function(require,module,exports){
48782
48982
  "use strict";
48783
48983
  /*!
48784
48984
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49469,7 +49669,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
49469
49669
  PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
49470
49670
  })(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
49471
49671
 
49472
- },{"../Decorators":214,"../misc/Array2DHashMap":317,"../misc/Array2DHashSet":318,"../misc/Arrays":320,"../misc/MurmurHash":329,"./PredictionContextCache":295,"assert":357}],295:[function(require,module,exports){
49672
+ },{"../Decorators":215,"../misc/Array2DHashMap":318,"../misc/Array2DHashSet":319,"../misc/Arrays":321,"../misc/MurmurHash":330,"./PredictionContextCache":296,"assert":358}],296:[function(require,module,exports){
49473
49673
  "use strict";
49474
49674
  /*!
49475
49675
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49610,7 +49810,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
49610
49810
  PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
49611
49811
  })(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
49612
49812
 
49613
- },{"../Decorators":214,"../misc/Array2DHashMap":317,"../misc/ObjectEqualityComparator":330,"./PredictionContext":294,"assert":357}],296:[function(require,module,exports){
49813
+ },{"../Decorators":215,"../misc/Array2DHashMap":318,"../misc/ObjectEqualityComparator":331,"./PredictionContext":295,"assert":358}],297:[function(require,module,exports){
49614
49814
  "use strict";
49615
49815
  /*!
49616
49816
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49771,7 +49971,7 @@ var PredictionMode;
49771
49971
  PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
49772
49972
  })(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
49773
49973
 
49774
- },{"../Decorators":214,"../misc/Array2DHashMap":317,"../misc/MurmurHash":329,"./RuleStopState":300}],297:[function(require,module,exports){
49974
+ },{"../Decorators":215,"../misc/Array2DHashMap":318,"../misc/MurmurHash":330,"./RuleStopState":301}],298:[function(require,module,exports){
49775
49975
  (function (process){(function (){
49776
49976
  "use strict";
49777
49977
  /*!
@@ -50040,7 +50240,7 @@ __decorate([
50040
50240
  exports.ProfilingATNSimulator = ProfilingATNSimulator;
50041
50241
 
50042
50242
  }).call(this)}).call(this,require('_process'))
50043
- },{"../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){
50243
+ },{"../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){
50044
50244
  "use strict";
50045
50245
  /*!
50046
50246
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50098,7 +50298,7 @@ RangeTransition = __decorate([
50098
50298
  ], RangeTransition);
50099
50299
  exports.RangeTransition = RangeTransition;
50100
50300
 
50101
- },{"../Decorators":214,"../misc/IntervalSet":327,"./Transition":309}],299:[function(require,module,exports){
50301
+ },{"../Decorators":215,"../misc/IntervalSet":328,"./Transition":310}],300:[function(require,module,exports){
50102
50302
  "use strict";
50103
50303
  /*!
50104
50304
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50131,7 +50331,7 @@ __decorate([
50131
50331
  ], RuleStartState.prototype, "stateType", null);
50132
50332
  exports.RuleStartState = RuleStartState;
50133
50333
 
50134
- },{"../Decorators":214,"./ATNState":253,"./ATNStateType":254}],300:[function(require,module,exports){
50334
+ },{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],301:[function(require,module,exports){
50135
50335
  "use strict";
50136
50336
  /*!
50137
50337
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50170,7 +50370,7 @@ __decorate([
50170
50370
  ], RuleStopState.prototype, "stateType", null);
50171
50371
  exports.RuleStopState = RuleStopState;
50172
50372
 
50173
- },{"../Decorators":214,"./ATNState":253,"./ATNStateType":254}],301:[function(require,module,exports){
50373
+ },{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],302:[function(require,module,exports){
50174
50374
  "use strict";
50175
50375
  /*!
50176
50376
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50226,7 +50426,7 @@ RuleTransition = __decorate([
50226
50426
  ], RuleTransition);
50227
50427
  exports.RuleTransition = RuleTransition;
50228
50428
 
50229
- },{"../Decorators":214,"./Transition":309}],302:[function(require,module,exports){
50429
+ },{"../Decorators":215,"./Transition":310}],303:[function(require,module,exports){
50230
50430
  "use strict";
50231
50431
  /*!
50232
50432
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50706,7 +50906,7 @@ exports.SemanticContext = SemanticContext;
50706
50906
  SemanticContext.OR = OR;
50707
50907
  })(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
50708
50908
 
50709
- },{"../Decorators":214,"../misc/Array2DHashSet":318,"../misc/ArrayEqualityComparator":319,"../misc/MurmurHash":329,"../misc/ObjectEqualityComparator":330,"../misc/Utils":333}],303:[function(require,module,exports){
50909
+ },{"../Decorators":215,"../misc/Array2DHashSet":319,"../misc/ArrayEqualityComparator":320,"../misc/MurmurHash":330,"../misc/ObjectEqualityComparator":331,"../misc/Utils":334}],304:[function(require,module,exports){
50710
50910
  "use strict";
50711
50911
  /*!
50712
50912
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50772,7 +50972,7 @@ SetTransition = __decorate([
50772
50972
  ], SetTransition);
50773
50973
  exports.SetTransition = SetTransition;
50774
50974
 
50775
- },{"../Decorators":214,"../Token":239,"../misc/IntervalSet":327,"./Transition":309}],304:[function(require,module,exports){
50975
+ },{"../Decorators":215,"../Token":240,"../misc/IntervalSet":328,"./Transition":310}],305:[function(require,module,exports){
50776
50976
  "use strict";
50777
50977
  /*!
50778
50978
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50808,7 +51008,7 @@ SimulatorState = __decorate([
50808
51008
  ], SimulatorState);
50809
51009
  exports.SimulatorState = SimulatorState;
50810
51010
 
50811
- },{"../Decorators":214,"../ParserRuleContext":230}],305:[function(require,module,exports){
51011
+ },{"../Decorators":215,"../ParserRuleContext":231}],306:[function(require,module,exports){
50812
51012
  "use strict";
50813
51013
  /*!
50814
51014
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50836,7 +51036,7 @@ __decorate([
50836
51036
  ], StarBlockStartState.prototype, "stateType", null);
50837
51037
  exports.StarBlockStartState = StarBlockStartState;
50838
51038
 
50839
- },{"../Decorators":214,"./ATNStateType":254,"./BlockStartState":262}],306:[function(require,module,exports){
51039
+ },{"../Decorators":215,"./ATNStateType":255,"./BlockStartState":263}],307:[function(require,module,exports){
50840
51040
  "use strict";
50841
51041
  /*!
50842
51042
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50893,7 +51093,7 @@ __decorate([
50893
51093
  ], StarLoopEntryState.prototype, "stateType", null);
50894
51094
  exports.StarLoopEntryState = StarLoopEntryState;
50895
51095
 
50896
- },{"../Decorators":214,"../misc/BitSet":321,"./ATNStateType":254,"./DecisionState":267}],307:[function(require,module,exports){
51096
+ },{"../Decorators":215,"../misc/BitSet":322,"./ATNStateType":255,"./DecisionState":268}],308:[function(require,module,exports){
50897
51097
  "use strict";
50898
51098
  /*!
50899
51099
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50924,7 +51124,7 @@ __decorate([
50924
51124
  ], StarLoopbackState.prototype, "stateType", null);
50925
51125
  exports.StarLoopbackState = StarLoopbackState;
50926
51126
 
50927
- },{"../Decorators":214,"./ATNState":253,"./ATNStateType":254}],308:[function(require,module,exports){
51127
+ },{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],309:[function(require,module,exports){
50928
51128
  "use strict";
50929
51129
  /*!
50930
51130
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50953,7 +51153,7 @@ __decorate([
50953
51153
  ], TokensStartState.prototype, "stateType", null);
50954
51154
  exports.TokensStartState = TokensStartState;
50955
51155
 
50956
- },{"../Decorators":214,"./ATNStateType":254,"./DecisionState":267}],309:[function(require,module,exports){
51156
+ },{"../Decorators":215,"./ATNStateType":255,"./DecisionState":268}],310:[function(require,module,exports){
50957
51157
  "use strict";
50958
51158
  /*!
50959
51159
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51027,7 +51227,7 @@ Transition = __decorate([
51027
51227
  ], Transition);
51028
51228
  exports.Transition = Transition;
51029
51229
 
51030
- },{"../Decorators":214}],310:[function(require,module,exports){
51230
+ },{"../Decorators":215}],311:[function(require,module,exports){
51031
51231
  "use strict";
51032
51232
  /*!
51033
51233
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51075,7 +51275,7 @@ WildcardTransition = __decorate([
51075
51275
  ], WildcardTransition);
51076
51276
  exports.WildcardTransition = WildcardTransition;
51077
51277
 
51078
- },{"../Decorators":214,"./Transition":309}],311:[function(require,module,exports){
51278
+ },{"../Decorators":215,"./Transition":310}],312:[function(require,module,exports){
51079
51279
  "use strict";
51080
51280
  /*!
51081
51281
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51117,7 +51317,7 @@ class AcceptStateInfo {
51117
51317
  }
51118
51318
  exports.AcceptStateInfo = AcceptStateInfo;
51119
51319
 
51120
- },{}],312:[function(require,module,exports){
51320
+ },{}],313:[function(require,module,exports){
51121
51321
  "use strict";
51122
51322
  /*!
51123
51323
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51292,7 +51492,7 @@ DFA = __decorate([
51292
51492
  ], DFA);
51293
51493
  exports.DFA = DFA;
51294
51494
 
51295
- },{"../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){
51495
+ },{"../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){
51296
51496
  "use strict";
51297
51497
  /*!
51298
51498
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51434,7 +51634,7 @@ __decorate([
51434
51634
  ], DFASerializer.prototype, "toString", null);
51435
51635
  exports.DFASerializer = DFASerializer;
51436
51636
 
51437
- },{"../Decorators":214,"../Recognizer":234,"../VocabularyImpl":245,"../atn/ATNSimulator":252,"../atn/PredictionContext":294}],314:[function(require,module,exports){
51637
+ },{"../Decorators":215,"../Recognizer":235,"../VocabularyImpl":246,"../atn/ATNSimulator":253,"../atn/PredictionContext":295}],315:[function(require,module,exports){
51438
51638
  "use strict";
51439
51639
  /*!
51440
51640
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51665,7 +51865,7 @@ exports.DFAState = DFAState;
51665
51865
  DFAState.PredPrediction = PredPrediction;
51666
51866
  })(DFAState = exports.DFAState || (exports.DFAState = {}));
51667
51867
 
51668
- },{"../Decorators":214,"../atn/ATN":247,"../atn/PredictionContext":294,"../misc/BitSet":321,"../misc/MurmurHash":329,"assert":357}],315:[function(require,module,exports){
51868
+ },{"../Decorators":215,"../atn/ATN":248,"../atn/PredictionContext":295,"../misc/BitSet":322,"../misc/MurmurHash":330,"assert":358}],316:[function(require,module,exports){
51669
51869
  "use strict";
51670
51870
  /*!
51671
51871
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51702,7 +51902,7 @@ LexerDFASerializer = __decorate([
51702
51902
  ], LexerDFASerializer);
51703
51903
  exports.LexerDFASerializer = LexerDFASerializer;
51704
51904
 
51705
- },{"../Decorators":214,"../VocabularyImpl":245,"./DFASerializer":313}],316:[function(require,module,exports){
51905
+ },{"../Decorators":215,"../VocabularyImpl":246,"./DFASerializer":314}],317:[function(require,module,exports){
51706
51906
  "use strict";
51707
51907
  /*!
51708
51908
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51768,7 +51968,7 @@ __exportStar(require("./Vocabulary"), exports);
51768
51968
  __exportStar(require("./VocabularyImpl"), exports);
51769
51969
  __exportStar(require("./WritableToken"), exports);
51770
51970
 
51771
- },{"./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){
51971
+ },{"./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){
51772
51972
  "use strict";
51773
51973
  /*!
51774
51974
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51851,7 +52051,7 @@ class Array2DHashMap {
51851
52051
  }
51852
52052
  exports.Array2DHashMap = Array2DHashMap;
51853
52053
 
51854
- },{"./Array2DHashSet":318}],318:[function(require,module,exports){
52054
+ },{"./Array2DHashSet":319}],319:[function(require,module,exports){
51855
52055
  "use strict";
51856
52056
  /*!
51857
52057
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52218,7 +52418,7 @@ __decorate([
52218
52418
  ], Array2DHashSet.prototype, "createBuckets", null);
52219
52419
  exports.Array2DHashSet = Array2DHashSet;
52220
52420
 
52221
- },{"../Decorators":214,"./DefaultEqualityComparator":323,"./MurmurHash":329,"assert":357}],319:[function(require,module,exports){
52421
+ },{"../Decorators":215,"./DefaultEqualityComparator":324,"./MurmurHash":330,"assert":358}],320:[function(require,module,exports){
52222
52422
  "use strict";
52223
52423
  /*!
52224
52424
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52290,7 +52490,7 @@ __decorate([
52290
52490
  ], ArrayEqualityComparator.prototype, "equals", null);
52291
52491
  exports.ArrayEqualityComparator = ArrayEqualityComparator;
52292
52492
 
52293
- },{"../Decorators":214,"./MurmurHash":329,"./ObjectEqualityComparator":330}],320:[function(require,module,exports){
52493
+ },{"../Decorators":215,"./MurmurHash":330,"./ObjectEqualityComparator":331}],321:[function(require,module,exports){
52294
52494
  "use strict";
52295
52495
  /*!
52296
52496
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52360,7 +52560,7 @@ var Arrays;
52360
52560
  Arrays.toString = toString;
52361
52561
  })(Arrays = exports.Arrays || (exports.Arrays = {}));
52362
52562
 
52363
- },{}],321:[function(require,module,exports){
52563
+ },{}],322:[function(require,module,exports){
52364
52564
  "use strict";
52365
52565
  /*!
52366
52566
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53032,7 +53232,7 @@ class BitSetIterator {
53032
53232
  [Symbol.iterator]() { return this; }
53033
53233
  }
53034
53234
 
53035
- },{"./MurmurHash":329,"util":421}],322:[function(require,module,exports){
53235
+ },{"./MurmurHash":330,"util":422}],323:[function(require,module,exports){
53036
53236
  "use strict";
53037
53237
  /*!
53038
53238
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53053,7 +53253,7 @@ function isSupplementaryCodePoint(ch) {
53053
53253
  }
53054
53254
  exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
53055
53255
 
53056
- },{}],323:[function(require,module,exports){
53256
+ },{}],324:[function(require,module,exports){
53057
53257
  "use strict";
53058
53258
  /*!
53059
53259
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53124,7 +53324,7 @@ __decorate([
53124
53324
  ], DefaultEqualityComparator.prototype, "equals", null);
53125
53325
  exports.DefaultEqualityComparator = DefaultEqualityComparator;
53126
53326
 
53127
- },{"../Decorators":214,"./MurmurHash":329,"./ObjectEqualityComparator":330}],324:[function(require,module,exports){
53327
+ },{"../Decorators":215,"./MurmurHash":330,"./ObjectEqualityComparator":331}],325:[function(require,module,exports){
53128
53328
  "use strict";
53129
53329
  /*!
53130
53330
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53418,7 +53618,7 @@ __decorate([
53418
53618
  ], IntegerList.prototype, "toString", null);
53419
53619
  exports.IntegerList = IntegerList;
53420
53620
 
53421
- },{"../Decorators":214,"./Arrays":320}],325:[function(require,module,exports){
53621
+ },{"../Decorators":215,"./Arrays":321}],326:[function(require,module,exports){
53422
53622
  "use strict";
53423
53623
  /*!
53424
53624
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53448,7 +53648,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
53448
53648
  }
53449
53649
  exports.IntegerStack = IntegerStack;
53450
53650
 
53451
- },{"./IntegerList":324}],326:[function(require,module,exports){
53651
+ },{"./IntegerList":325}],327:[function(require,module,exports){
53452
53652
  "use strict";
53453
53653
  /*!
53454
53654
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53591,7 +53791,7 @@ __decorate([
53591
53791
  ], Interval.prototype, "toString", null);
53592
53792
  exports.Interval = Interval;
53593
53793
 
53594
- },{"../Decorators":214}],327:[function(require,module,exports){
53794
+ },{"../Decorators":215}],328:[function(require,module,exports){
53595
53795
  "use strict";
53596
53796
  /*!
53597
53797
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54237,7 +54437,7 @@ __decorate([
54237
54437
  ], IntervalSet, "subtract", null);
54238
54438
  exports.IntervalSet = IntervalSet;
54239
54439
 
54240
- },{"../Decorators":214,"../Lexer":222,"../Token":239,"./ArrayEqualityComparator":319,"./IntegerList":324,"./Interval":326,"./MurmurHash":329}],328:[function(require,module,exports){
54440
+ },{"../Decorators":215,"../Lexer":223,"../Token":240,"./ArrayEqualityComparator":320,"./IntegerList":325,"./Interval":327,"./MurmurHash":330}],329:[function(require,module,exports){
54241
54441
  "use strict";
54242
54442
  /*!
54243
54443
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54270,7 +54470,7 @@ class MultiMap extends Map {
54270
54470
  }
54271
54471
  exports.MultiMap = MultiMap;
54272
54472
 
54273
- },{}],329:[function(require,module,exports){
54473
+ },{}],330:[function(require,module,exports){
54274
54474
  "use strict";
54275
54475
  /*!
54276
54476
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54385,7 +54585,7 @@ var MurmurHash;
54385
54585
  }
54386
54586
  })(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
54387
54587
 
54388
- },{}],330:[function(require,module,exports){
54588
+ },{}],331:[function(require,module,exports){
54389
54589
  "use strict";
54390
54590
  /*!
54391
54591
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54444,7 +54644,7 @@ __decorate([
54444
54644
  ], ObjectEqualityComparator.prototype, "equals", null);
54445
54645
  exports.ObjectEqualityComparator = ObjectEqualityComparator;
54446
54646
 
54447
- },{"../Decorators":214}],331:[function(require,module,exports){
54647
+ },{"../Decorators":215}],332:[function(require,module,exports){
54448
54648
  "use strict";
54449
54649
  /*!
54450
54650
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54473,7 +54673,7 @@ class ParseCancellationException extends Error {
54473
54673
  }
54474
54674
  exports.ParseCancellationException = ParseCancellationException;
54475
54675
 
54476
- },{}],332:[function(require,module,exports){
54676
+ },{}],333:[function(require,module,exports){
54477
54677
  "use strict";
54478
54678
  /*!
54479
54679
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54527,7 +54727,7 @@ class UUID {
54527
54727
  }
54528
54728
  exports.UUID = UUID;
54529
54729
 
54530
- },{"./MurmurHash":329}],333:[function(require,module,exports){
54730
+ },{"./MurmurHash":330}],334:[function(require,module,exports){
54531
54731
  "use strict";
54532
54732
  /*!
54533
54733
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54702,7 +54902,7 @@ exports.toCharArray = toCharArray;
54702
54902
  // return s;
54703
54903
  // }
54704
54904
 
54705
- },{}],334:[function(require,module,exports){
54905
+ },{}],335:[function(require,module,exports){
54706
54906
  "use strict";
54707
54907
  /*!
54708
54908
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54738,7 +54938,7 @@ __decorate([
54738
54938
  ], ErrorNode.prototype, "accept", null);
54739
54939
  exports.ErrorNode = ErrorNode;
54740
54940
 
54741
- },{"../Decorators":214,"./TerminalNode":337}],335:[function(require,module,exports){
54941
+ },{"../Decorators":215,"./TerminalNode":338}],336:[function(require,module,exports){
54742
54942
  "use strict";
54743
54943
  /*!
54744
54944
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54843,7 +55043,7 @@ exports.ParseTreeWalker = ParseTreeWalker;
54843
55043
  ParseTreeWalker.DEFAULT = new ParseTreeWalker();
54844
55044
  })(ParseTreeWalker = exports.ParseTreeWalker || (exports.ParseTreeWalker = {}));
54845
55045
 
54846
- },{"./ErrorNode":334,"./RuleNode":336,"./TerminalNode":337}],336:[function(require,module,exports){
55046
+ },{"./ErrorNode":335,"./RuleNode":337,"./TerminalNode":338}],337:[function(require,module,exports){
54847
55047
  "use strict";
54848
55048
  /*!
54849
55049
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54855,7 +55055,7 @@ class RuleNode {
54855
55055
  }
54856
55056
  exports.RuleNode = RuleNode;
54857
55057
 
54858
- },{}],337:[function(require,module,exports){
55058
+ },{}],338:[function(require,module,exports){
54859
55059
  "use strict";
54860
55060
  /*!
54861
55061
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54947,7 +55147,7 @@ __decorate([
54947
55147
  ], TerminalNode.prototype, "toString", null);
54948
55148
  exports.TerminalNode = TerminalNode;
54949
55149
 
54950
- },{"../Decorators":214,"../Token":239,"../misc/Interval":326}],338:[function(require,module,exports){
55150
+ },{"../Decorators":215,"../Token":240,"../misc/Interval":327}],339:[function(require,module,exports){
54951
55151
  "use strict";
54952
55152
  /*!
54953
55153
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55191,7 +55391,7 @@ __decorate([
55191
55391
  ], Trees, "getRootOfSubtreeEnclosingRegion", null);
55192
55392
  exports.Trees = Trees;
55193
55393
 
55194
- },{"../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){
55394
+ },{"../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){
55195
55395
  "use strict";
55196
55396
  /*!
55197
55397
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55215,7 +55415,7 @@ class Chunk {
55215
55415
  }
55216
55416
  exports.Chunk = Chunk;
55217
55417
 
55218
- },{}],340:[function(require,module,exports){
55418
+ },{}],341:[function(require,module,exports){
55219
55419
  "use strict";
55220
55420
  /*!
55221
55421
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55395,7 +55595,7 @@ ParseTreeMatch = __decorate([
55395
55595
  ], ParseTreeMatch);
55396
55596
  exports.ParseTreeMatch = ParseTreeMatch;
55397
55597
 
55398
- },{"../../Decorators":214}],341:[function(require,module,exports){
55598
+ },{"../../Decorators":215}],342:[function(require,module,exports){
55399
55599
  "use strict";
55400
55600
  /*!
55401
55601
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55553,7 +55753,7 @@ ParseTreePattern = __decorate([
55553
55753
  ], ParseTreePattern);
55554
55754
  exports.ParseTreePattern = ParseTreePattern;
55555
55755
 
55556
- },{"../../Decorators":214,"../xpath/XPath":347}],342:[function(require,module,exports){
55756
+ },{"../../Decorators":215,"../xpath/XPath":348}],343:[function(require,module,exports){
55557
55757
  "use strict";
55558
55758
  /*!
55559
55759
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56031,7 +56231,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
56031
56231
  ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
56032
56232
  })(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
56033
56233
 
56034
- },{"../../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){
56234
+ },{"../../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){
56035
56235
  "use strict";
56036
56236
  /*!
56037
56237
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56229,7 +56429,7 @@ RuleTagToken = __decorate([
56229
56429
  ], RuleTagToken);
56230
56430
  exports.RuleTagToken = RuleTagToken;
56231
56431
 
56232
- },{"../../Decorators":214,"../../Token":239}],344:[function(require,module,exports){
56432
+ },{"../../Decorators":215,"../../Token":240}],345:[function(require,module,exports){
56233
56433
  "use strict";
56234
56434
  /*!
56235
56435
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56316,7 +56516,7 @@ __decorate([
56316
56516
  ], TagChunk.prototype, "toString", null);
56317
56517
  exports.TagChunk = TagChunk;
56318
56518
 
56319
- },{"../../Decorators":214,"./Chunk":339}],345:[function(require,module,exports){
56519
+ },{"../../Decorators":215,"./Chunk":340}],346:[function(require,module,exports){
56320
56520
  "use strict";
56321
56521
  /*!
56322
56522
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56386,7 +56586,7 @@ TextChunk = __decorate([
56386
56586
  ], TextChunk);
56387
56587
  exports.TextChunk = TextChunk;
56388
56588
 
56389
- },{"../../Decorators":214,"./Chunk":339}],346:[function(require,module,exports){
56589
+ },{"../../Decorators":215,"./Chunk":340}],347:[function(require,module,exports){
56390
56590
  "use strict";
56391
56591
  /*!
56392
56592
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56481,7 +56681,7 @@ TokenTagToken = __decorate([
56481
56681
  ], TokenTagToken);
56482
56682
  exports.TokenTagToken = TokenTagToken;
56483
56683
 
56484
- },{"../../CommonToken":210,"../../Decorators":214}],347:[function(require,module,exports){
56684
+ },{"../../CommonToken":211,"../../Decorators":215}],348:[function(require,module,exports){
56485
56685
  "use strict";
56486
56686
  /*!
56487
56687
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56678,7 +56878,7 @@ exports.XPath = XPath;
56678
56878
  XPath.WILDCARD = "*"; // word not operator/separator
56679
56879
  XPath.NOT = "!"; // word for invert operator
56680
56880
 
56681
- },{"../../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){
56881
+ },{"../../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){
56682
56882
  "use strict";
56683
56883
  /*!
56684
56884
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56713,7 +56913,7 @@ __decorate([
56713
56913
  ], XPathElement.prototype, "toString", null);
56714
56914
  exports.XPathElement = XPathElement;
56715
56915
 
56716
- },{"../../Decorators":214}],349:[function(require,module,exports){
56916
+ },{"../../Decorators":215}],350:[function(require,module,exports){
56717
56917
  "use strict";
56718
56918
  // Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
56719
56919
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -57188,7 +57388,7 @@ XPathLexer._serializedATN = Utils.join([
57188
57388
  XPathLexer._serializedATNSegment1,
57189
57389
  ], "");
57190
57390
 
57191
- },{"../../Lexer":222,"../../VocabularyImpl":245,"../../atn/ATNDeserializer":251,"../../atn/LexerATNSimulator":272,"../../misc/Utils":333}],350:[function(require,module,exports){
57391
+ },{"../../Lexer":223,"../../VocabularyImpl":246,"../../atn/ATNDeserializer":252,"../../atn/LexerATNSimulator":273,"../../misc/Utils":334}],351:[function(require,module,exports){
57192
57392
  "use strict";
57193
57393
  /*!
57194
57394
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57213,7 +57413,7 @@ __decorate([
57213
57413
  ], XPathLexerErrorListener.prototype, "syntaxError", null);
57214
57414
  exports.XPathLexerErrorListener = XPathLexerErrorListener;
57215
57415
 
57216
- },{"../../Decorators":214}],351:[function(require,module,exports){
57416
+ },{"../../Decorators":215}],352:[function(require,module,exports){
57217
57417
  "use strict";
57218
57418
  /*!
57219
57419
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57247,7 +57447,7 @@ __decorate([
57247
57447
  ], XPathRuleAnywhereElement.prototype, "evaluate", null);
57248
57448
  exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
57249
57449
 
57250
- },{"../../Decorators":214,"../Trees":338,"./XPathElement":348}],352:[function(require,module,exports){
57450
+ },{"../../Decorators":215,"../Trees":339,"./XPathElement":349}],353:[function(require,module,exports){
57251
57451
  "use strict";
57252
57452
  /*!
57253
57453
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57290,7 +57490,7 @@ __decorate([
57290
57490
  ], XPathRuleElement.prototype, "evaluate", null);
57291
57491
  exports.XPathRuleElement = XPathRuleElement;
57292
57492
 
57293
- },{"../../Decorators":214,"../../ParserRuleContext":230,"../Trees":338,"./XPathElement":348}],353:[function(require,module,exports){
57493
+ },{"../../Decorators":215,"../../ParserRuleContext":231,"../Trees":339,"./XPathElement":349}],354:[function(require,module,exports){
57294
57494
  "use strict";
57295
57495
  /*!
57296
57496
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57322,7 +57522,7 @@ __decorate([
57322
57522
  ], XPathTokenAnywhereElement.prototype, "evaluate", null);
57323
57523
  exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
57324
57524
 
57325
- },{"../../Decorators":214,"../Trees":338,"./XPathElement":348}],354:[function(require,module,exports){
57525
+ },{"../../Decorators":215,"../Trees":339,"./XPathElement":349}],355:[function(require,module,exports){
57326
57526
  "use strict";
57327
57527
  /*!
57328
57528
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57365,7 +57565,7 @@ __decorate([
57365
57565
  ], XPathTokenElement.prototype, "evaluate", null);
57366
57566
  exports.XPathTokenElement = XPathTokenElement;
57367
57567
 
57368
- },{"../../Decorators":214,"../TerminalNode":337,"../Trees":338,"./XPathElement":348}],355:[function(require,module,exports){
57568
+ },{"../../Decorators":215,"../TerminalNode":338,"../Trees":339,"./XPathElement":349}],356:[function(require,module,exports){
57369
57569
  "use strict";
57370
57570
  /*!
57371
57571
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57401,7 +57601,7 @@ __decorate([
57401
57601
  ], XPathWildcardAnywhereElement.prototype, "evaluate", null);
57402
57602
  exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
57403
57603
 
57404
- },{"../../Decorators":214,"../Trees":338,"./XPath":347,"./XPathElement":348}],356:[function(require,module,exports){
57604
+ },{"../../Decorators":215,"../Trees":339,"./XPath":348,"./XPathElement":349}],357:[function(require,module,exports){
57405
57605
  "use strict";
57406
57606
  /*!
57407
57607
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57441,7 +57641,7 @@ __decorate([
57441
57641
  ], XPathWildcardElement.prototype, "evaluate", null);
57442
57642
  exports.XPathWildcardElement = XPathWildcardElement;
57443
57643
 
57444
- },{"../../Decorators":214,"../Trees":338,"./XPath":347,"./XPathElement":348}],357:[function(require,module,exports){
57644
+ },{"../../Decorators":215,"../Trees":339,"./XPath":348,"./XPathElement":349}],358:[function(require,module,exports){
57445
57645
  (function (global){(function (){
57446
57646
  'use strict';
57447
57647
 
@@ -57951,7 +58151,7 @@ var objectKeys = Object.keys || function (obj) {
57951
58151
  };
57952
58152
 
57953
58153
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
57954
- },{"object.assign/polyfill":414,"util/":360}],358:[function(require,module,exports){
58154
+ },{"object.assign/polyfill":415,"util/":361}],359:[function(require,module,exports){
57955
58155
  if (typeof Object.create === 'function') {
57956
58156
  // implementation from standard node.js 'util' module
57957
58157
  module.exports = function inherits(ctor, superCtor) {
@@ -57976,14 +58176,14 @@ if (typeof Object.create === 'function') {
57976
58176
  }
57977
58177
  }
57978
58178
 
57979
- },{}],359:[function(require,module,exports){
58179
+ },{}],360:[function(require,module,exports){
57980
58180
  module.exports = function isBuffer(arg) {
57981
58181
  return arg && typeof arg === 'object'
57982
58182
  && typeof arg.copy === 'function'
57983
58183
  && typeof arg.fill === 'function'
57984
58184
  && typeof arg.readUInt8 === 'function';
57985
58185
  }
57986
- },{}],360:[function(require,module,exports){
58186
+ },{}],361:[function(require,module,exports){
57987
58187
  (function (process,global){(function (){
57988
58188
  // Copyright Joyent, Inc. and other Node contributors.
57989
58189
  //
@@ -58573,7 +58773,7 @@ function hasOwnProperty(obj, prop) {
58573
58773
  }
58574
58774
 
58575
58775
  }).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
58576
- },{"./support/isBuffer":359,"_process":416,"inherits":358}],361:[function(require,module,exports){
58776
+ },{"./support/isBuffer":360,"_process":417,"inherits":359}],362:[function(require,module,exports){
58577
58777
  (function (global){(function (){
58578
58778
  'use strict';
58579
58779
 
@@ -58594,7 +58794,7 @@ module.exports = function availableTypedArrays() {
58594
58794
  };
58595
58795
 
58596
58796
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
58597
- },{"possible-typed-array-names":415}],362:[function(require,module,exports){
58797
+ },{"possible-typed-array-names":416}],363:[function(require,module,exports){
58598
58798
  (function (process,global){(function (){
58599
58799
  module.exports = process.hrtime || hrtime
58600
58800
 
@@ -58625,7 +58825,7 @@ function hrtime(previousTimestamp){
58625
58825
  return [seconds,nanoseconds]
58626
58826
  }
58627
58827
  }).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
58628
- },{"_process":416}],363:[function(require,module,exports){
58828
+ },{"_process":417}],364:[function(require,module,exports){
58629
58829
  'use strict';
58630
58830
 
58631
58831
  var bind = require('function-bind');
@@ -58637,7 +58837,7 @@ var $reflectApply = require('./reflectApply');
58637
58837
  /** @type {import('./actualApply')} */
58638
58838
  module.exports = $reflectApply || bind.call($call, $apply);
58639
58839
 
58640
- },{"./functionApply":365,"./functionCall":366,"./reflectApply":368,"function-bind":384}],364:[function(require,module,exports){
58840
+ },{"./functionApply":366,"./functionCall":367,"./reflectApply":369,"function-bind":385}],365:[function(require,module,exports){
58641
58841
  'use strict';
58642
58842
 
58643
58843
  var bind = require('function-bind');
@@ -58649,19 +58849,19 @@ module.exports = function applyBind() {
58649
58849
  return actualApply(bind, $apply, arguments);
58650
58850
  };
58651
58851
 
58652
- },{"./actualApply":363,"./functionApply":365,"function-bind":384}],365:[function(require,module,exports){
58852
+ },{"./actualApply":364,"./functionApply":366,"function-bind":385}],366:[function(require,module,exports){
58653
58853
  'use strict';
58654
58854
 
58655
58855
  /** @type {import('./functionApply')} */
58656
58856
  module.exports = Function.prototype.apply;
58657
58857
 
58658
- },{}],366:[function(require,module,exports){
58858
+ },{}],367:[function(require,module,exports){
58659
58859
  'use strict';
58660
58860
 
58661
58861
  /** @type {import('./functionCall')} */
58662
58862
  module.exports = Function.prototype.call;
58663
58863
 
58664
- },{}],367:[function(require,module,exports){
58864
+ },{}],368:[function(require,module,exports){
58665
58865
  'use strict';
58666
58866
 
58667
58867
  var bind = require('function-bind');
@@ -58678,13 +58878,13 @@ module.exports = function callBindBasic(args) {
58678
58878
  return $actualApply(bind, $call, args);
58679
58879
  };
58680
58880
 
58681
- },{"./actualApply":363,"./functionCall":366,"es-errors/type":379,"function-bind":384}],368:[function(require,module,exports){
58881
+ },{"./actualApply":364,"./functionCall":367,"es-errors/type":380,"function-bind":385}],369:[function(require,module,exports){
58682
58882
  'use strict';
58683
58883
 
58684
58884
  /** @type {import('./reflectApply')} */
58685
58885
  module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
58686
58886
 
58687
- },{}],369:[function(require,module,exports){
58887
+ },{}],370:[function(require,module,exports){
58688
58888
  'use strict';
58689
58889
 
58690
58890
  var setFunctionLength = require('set-function-length');
@@ -58710,7 +58910,7 @@ if ($defineProperty) {
58710
58910
  module.exports.apply = applyBind;
58711
58911
  }
58712
58912
 
58713
- },{"call-bind-apply-helpers":367,"call-bind-apply-helpers/applyBind":364,"es-define-property":373,"set-function-length":418}],370:[function(require,module,exports){
58913
+ },{"call-bind-apply-helpers":368,"call-bind-apply-helpers/applyBind":365,"es-define-property":374,"set-function-length":419}],371:[function(require,module,exports){
58714
58914
  'use strict';
58715
58915
 
58716
58916
  var GetIntrinsic = require('get-intrinsic');
@@ -58731,7 +58931,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
58731
58931
  return intrinsic;
58732
58932
  };
58733
58933
 
58734
- },{"call-bind-apply-helpers":367,"get-intrinsic":385}],371:[function(require,module,exports){
58934
+ },{"call-bind-apply-helpers":368,"get-intrinsic":386}],372:[function(require,module,exports){
58735
58935
  'use strict';
58736
58936
 
58737
58937
  var $defineProperty = require('es-define-property');
@@ -58789,7 +58989,7 @@ module.exports = function defineDataProperty(
58789
58989
  }
58790
58990
  };
58791
58991
 
58792
- },{"es-define-property":373,"es-errors/syntax":378,"es-errors/type":379,"gopd":390}],372:[function(require,module,exports){
58992
+ },{"es-define-property":374,"es-errors/syntax":379,"es-errors/type":380,"gopd":391}],373:[function(require,module,exports){
58793
58993
  'use strict';
58794
58994
 
58795
58995
  var callBind = require('call-bind-apply-helpers');
@@ -58821,7 +59021,7 @@ module.exports = desc && typeof desc.get === 'function'
58821
59021
  }
58822
59022
  : false;
58823
59023
 
58824
- },{"call-bind-apply-helpers":367,"gopd":390}],373:[function(require,module,exports){
59024
+ },{"call-bind-apply-helpers":368,"gopd":391}],374:[function(require,module,exports){
58825
59025
  'use strict';
58826
59026
 
58827
59027
  /** @type {import('.')} */
@@ -58837,55 +59037,55 @@ if ($defineProperty) {
58837
59037
 
58838
59038
  module.exports = $defineProperty;
58839
59039
 
58840
- },{}],374:[function(require,module,exports){
59040
+ },{}],375:[function(require,module,exports){
58841
59041
  'use strict';
58842
59042
 
58843
59043
  /** @type {import('./eval')} */
58844
59044
  module.exports = EvalError;
58845
59045
 
58846
- },{}],375:[function(require,module,exports){
59046
+ },{}],376:[function(require,module,exports){
58847
59047
  'use strict';
58848
59048
 
58849
59049
  /** @type {import('.')} */
58850
59050
  module.exports = Error;
58851
59051
 
58852
- },{}],376:[function(require,module,exports){
59052
+ },{}],377:[function(require,module,exports){
58853
59053
  'use strict';
58854
59054
 
58855
59055
  /** @type {import('./range')} */
58856
59056
  module.exports = RangeError;
58857
59057
 
58858
- },{}],377:[function(require,module,exports){
59058
+ },{}],378:[function(require,module,exports){
58859
59059
  'use strict';
58860
59060
 
58861
59061
  /** @type {import('./ref')} */
58862
59062
  module.exports = ReferenceError;
58863
59063
 
58864
- },{}],378:[function(require,module,exports){
59064
+ },{}],379:[function(require,module,exports){
58865
59065
  'use strict';
58866
59066
 
58867
59067
  /** @type {import('./syntax')} */
58868
59068
  module.exports = SyntaxError;
58869
59069
 
58870
- },{}],379:[function(require,module,exports){
59070
+ },{}],380:[function(require,module,exports){
58871
59071
  'use strict';
58872
59072
 
58873
59073
  /** @type {import('./type')} */
58874
59074
  module.exports = TypeError;
58875
59075
 
58876
- },{}],380:[function(require,module,exports){
59076
+ },{}],381:[function(require,module,exports){
58877
59077
  'use strict';
58878
59078
 
58879
59079
  /** @type {import('./uri')} */
58880
59080
  module.exports = URIError;
58881
59081
 
58882
- },{}],381:[function(require,module,exports){
59082
+ },{}],382:[function(require,module,exports){
58883
59083
  'use strict';
58884
59084
 
58885
59085
  /** @type {import('.')} */
58886
59086
  module.exports = Object;
58887
59087
 
58888
- },{}],382:[function(require,module,exports){
59088
+ },{}],383:[function(require,module,exports){
58889
59089
  'use strict';
58890
59090
 
58891
59091
  var isCallable = require('is-callable');
@@ -58956,7 +59156,7 @@ module.exports = function forEach(list, iterator, thisArg) {
58956
59156
  }
58957
59157
  };
58958
59158
 
58959
- },{"is-callable":398}],383:[function(require,module,exports){
59159
+ },{"is-callable":399}],384:[function(require,module,exports){
58960
59160
  'use strict';
58961
59161
 
58962
59162
  /* eslint no-invalid-this: 1 */
@@ -59042,14 +59242,14 @@ module.exports = function bind(that) {
59042
59242
  return bound;
59043
59243
  };
59044
59244
 
59045
- },{}],384:[function(require,module,exports){
59245
+ },{}],385:[function(require,module,exports){
59046
59246
  'use strict';
59047
59247
 
59048
59248
  var implementation = require('./implementation');
59049
59249
 
59050
59250
  module.exports = Function.prototype.bind || implementation;
59051
59251
 
59052
- },{"./implementation":383}],385:[function(require,module,exports){
59252
+ },{"./implementation":384}],386:[function(require,module,exports){
59053
59253
  'use strict';
59054
59254
 
59055
59255
  var undefined;
@@ -59429,7 +59629,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
59429
59629
  return value;
59430
59630
  };
59431
59631
 
59432
- },{"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){
59632
+ },{"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){
59433
59633
  'use strict';
59434
59634
 
59435
59635
  var $Object = require('es-object-atoms');
@@ -59437,13 +59637,13 @@ var $Object = require('es-object-atoms');
59437
59637
  /** @type {import('./Object.getPrototypeOf')} */
59438
59638
  module.exports = $Object.getPrototypeOf || null;
59439
59639
 
59440
- },{"es-object-atoms":381}],387:[function(require,module,exports){
59640
+ },{"es-object-atoms":382}],388:[function(require,module,exports){
59441
59641
  'use strict';
59442
59642
 
59443
59643
  /** @type {import('./Reflect.getPrototypeOf')} */
59444
59644
  module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
59445
59645
 
59446
- },{}],388:[function(require,module,exports){
59646
+ },{}],389:[function(require,module,exports){
59447
59647
  'use strict';
59448
59648
 
59449
59649
  var reflectGetProto = require('./Reflect.getPrototypeOf');
@@ -59472,13 +59672,13 @@ module.exports = reflectGetProto
59472
59672
  }
59473
59673
  : null;
59474
59674
 
59475
- },{"./Object.getPrototypeOf":386,"./Reflect.getPrototypeOf":387,"dunder-proto/get":372}],389:[function(require,module,exports){
59675
+ },{"./Object.getPrototypeOf":387,"./Reflect.getPrototypeOf":388,"dunder-proto/get":373}],390:[function(require,module,exports){
59476
59676
  'use strict';
59477
59677
 
59478
59678
  /** @type {import('./gOPD')} */
59479
59679
  module.exports = Object.getOwnPropertyDescriptor;
59480
59680
 
59481
- },{}],390:[function(require,module,exports){
59681
+ },{}],391:[function(require,module,exports){
59482
59682
  'use strict';
59483
59683
 
59484
59684
  /** @type {import('.')} */
@@ -59495,7 +59695,7 @@ if ($gOPD) {
59495
59695
 
59496
59696
  module.exports = $gOPD;
59497
59697
 
59498
- },{"./gOPD":389}],391:[function(require,module,exports){
59698
+ },{"./gOPD":390}],392:[function(require,module,exports){
59499
59699
  'use strict';
59500
59700
 
59501
59701
  var $defineProperty = require('es-define-property');
@@ -59519,7 +59719,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
59519
59719
 
59520
59720
  module.exports = hasPropertyDescriptors;
59521
59721
 
59522
- },{"es-define-property":373}],392:[function(require,module,exports){
59722
+ },{"es-define-property":374}],393:[function(require,module,exports){
59523
59723
  'use strict';
59524
59724
 
59525
59725
  var origSymbol = typeof Symbol !== 'undefined' && Symbol;
@@ -59535,7 +59735,7 @@ module.exports = function hasNativeSymbols() {
59535
59735
  return hasSymbolSham();
59536
59736
  };
59537
59737
 
59538
- },{"./shams":393}],393:[function(require,module,exports){
59738
+ },{"./shams":394}],394:[function(require,module,exports){
59539
59739
  'use strict';
59540
59740
 
59541
59741
  /** @type {import('./shams')} */
@@ -59582,7 +59782,7 @@ module.exports = function hasSymbols() {
59582
59782
  return true;
59583
59783
  };
59584
59784
 
59585
- },{}],394:[function(require,module,exports){
59785
+ },{}],395:[function(require,module,exports){
59586
59786
  'use strict';
59587
59787
 
59588
59788
  var hasSymbols = require('has-symbols/shams');
@@ -59592,7 +59792,7 @@ module.exports = function hasToStringTagShams() {
59592
59792
  return hasSymbols() && !!Symbol.toStringTag;
59593
59793
  };
59594
59794
 
59595
- },{"has-symbols/shams":393}],395:[function(require,module,exports){
59795
+ },{"has-symbols/shams":394}],396:[function(require,module,exports){
59596
59796
  'use strict';
59597
59797
 
59598
59798
  var call = Function.prototype.call;
@@ -59602,7 +59802,7 @@ var bind = require('function-bind');
59602
59802
  /** @type {import('.')} */
59603
59803
  module.exports = bind.call(call, $hasOwn);
59604
59804
 
59605
- },{"function-bind":384}],396:[function(require,module,exports){
59805
+ },{"function-bind":385}],397:[function(require,module,exports){
59606
59806
  if (typeof Object.create === 'function') {
59607
59807
  // implementation from standard node.js 'util' module
59608
59808
  module.exports = function inherits(ctor, superCtor) {
@@ -59631,7 +59831,7 @@ if (typeof Object.create === 'function') {
59631
59831
  }
59632
59832
  }
59633
59833
 
59634
- },{}],397:[function(require,module,exports){
59834
+ },{}],398:[function(require,module,exports){
59635
59835
  'use strict';
59636
59836
 
59637
59837
  var hasToStringTag = require('has-tostringtag/shams')();
@@ -59677,7 +59877,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
59677
59877
  /** @type {import('.')} */
59678
59878
  module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
59679
59879
 
59680
- },{"call-bound":370,"has-tostringtag/shams":394}],398:[function(require,module,exports){
59880
+ },{"call-bound":371,"has-tostringtag/shams":395}],399:[function(require,module,exports){
59681
59881
  'use strict';
59682
59882
 
59683
59883
  var fnToStr = Function.prototype.toString;
@@ -59780,7 +59980,7 @@ module.exports = reflectApply
59780
59980
  return tryFunctionObject(value);
59781
59981
  };
59782
59982
 
59783
- },{}],399:[function(require,module,exports){
59983
+ },{}],400:[function(require,module,exports){
59784
59984
  'use strict';
59785
59985
 
59786
59986
  var callBound = require('call-bound');
@@ -59829,7 +60029,7 @@ module.exports = function isGeneratorFunction(fn) {
59829
60029
  return getProto(fn) === GeneratorFunction;
59830
60030
  };
59831
60031
 
59832
- },{"call-bound":370,"get-proto":388,"has-tostringtag/shams":394,"safe-regex-test":417}],400:[function(require,module,exports){
60032
+ },{"call-bound":371,"get-proto":389,"has-tostringtag/shams":395,"safe-regex-test":418}],401:[function(require,module,exports){
59833
60033
  'use strict';
59834
60034
 
59835
60035
  var callBound = require('call-bound');
@@ -59900,7 +60100,7 @@ if (hasToStringTag) {
59900
60100
 
59901
60101
  module.exports = fn;
59902
60102
 
59903
- },{"call-bound":370,"gopd":390,"has-tostringtag/shams":394,"hasown":395}],401:[function(require,module,exports){
60103
+ },{"call-bound":371,"gopd":391,"has-tostringtag/shams":395,"hasown":396}],402:[function(require,module,exports){
59904
60104
  'use strict';
59905
60105
 
59906
60106
  var whichTypedArray = require('which-typed-array');
@@ -59910,19 +60110,19 @@ module.exports = function isTypedArray(value) {
59910
60110
  return !!whichTypedArray(value);
59911
60111
  };
59912
60112
 
59913
- },{"which-typed-array":422}],402:[function(require,module,exports){
60113
+ },{"which-typed-array":423}],403:[function(require,module,exports){
59914
60114
  'use strict';
59915
60115
 
59916
60116
  /** @type {import('./abs')} */
59917
60117
  module.exports = Math.abs;
59918
60118
 
59919
- },{}],403:[function(require,module,exports){
60119
+ },{}],404:[function(require,module,exports){
59920
60120
  'use strict';
59921
60121
 
59922
60122
  /** @type {import('./floor')} */
59923
60123
  module.exports = Math.floor;
59924
60124
 
59925
- },{}],404:[function(require,module,exports){
60125
+ },{}],405:[function(require,module,exports){
59926
60126
  'use strict';
59927
60127
 
59928
60128
  /** @type {import('./isNaN')} */
@@ -59930,31 +60130,31 @@ module.exports = Number.isNaN || function isNaN(a) {
59930
60130
  return a !== a;
59931
60131
  };
59932
60132
 
59933
- },{}],405:[function(require,module,exports){
60133
+ },{}],406:[function(require,module,exports){
59934
60134
  'use strict';
59935
60135
 
59936
60136
  /** @type {import('./max')} */
59937
60137
  module.exports = Math.max;
59938
60138
 
59939
- },{}],406:[function(require,module,exports){
60139
+ },{}],407:[function(require,module,exports){
59940
60140
  'use strict';
59941
60141
 
59942
60142
  /** @type {import('./min')} */
59943
60143
  module.exports = Math.min;
59944
60144
 
59945
- },{}],407:[function(require,module,exports){
60145
+ },{}],408:[function(require,module,exports){
59946
60146
  'use strict';
59947
60147
 
59948
60148
  /** @type {import('./pow')} */
59949
60149
  module.exports = Math.pow;
59950
60150
 
59951
- },{}],408:[function(require,module,exports){
60151
+ },{}],409:[function(require,module,exports){
59952
60152
  'use strict';
59953
60153
 
59954
60154
  /** @type {import('./round')} */
59955
60155
  module.exports = Math.round;
59956
60156
 
59957
- },{}],409:[function(require,module,exports){
60157
+ },{}],410:[function(require,module,exports){
59958
60158
  'use strict';
59959
60159
 
59960
60160
  var $isNaN = require('./isNaN');
@@ -59967,7 +60167,7 @@ module.exports = function sign(number) {
59967
60167
  return number < 0 ? -1 : +1;
59968
60168
  };
59969
60169
 
59970
- },{"./isNaN":404}],410:[function(require,module,exports){
60170
+ },{"./isNaN":405}],411:[function(require,module,exports){
59971
60171
  'use strict';
59972
60172
 
59973
60173
  var keysShim;
@@ -60091,7 +60291,7 @@ if (!Object.keys) {
60091
60291
  }
60092
60292
  module.exports = keysShim;
60093
60293
 
60094
- },{"./isArguments":412}],411:[function(require,module,exports){
60294
+ },{"./isArguments":413}],412:[function(require,module,exports){
60095
60295
  'use strict';
60096
60296
 
60097
60297
  var slice = Array.prototype.slice;
@@ -60125,7 +60325,7 @@ keysShim.shim = function shimObjectKeys() {
60125
60325
 
60126
60326
  module.exports = keysShim;
60127
60327
 
60128
- },{"./implementation":410,"./isArguments":412}],412:[function(require,module,exports){
60328
+ },{"./implementation":411,"./isArguments":413}],413:[function(require,module,exports){
60129
60329
  'use strict';
60130
60330
 
60131
60331
  var toStr = Object.prototype.toString;
@@ -60144,7 +60344,7 @@ module.exports = function isArguments(value) {
60144
60344
  return isArgs;
60145
60345
  };
60146
60346
 
60147
- },{}],413:[function(require,module,exports){
60347
+ },{}],414:[function(require,module,exports){
60148
60348
  'use strict';
60149
60349
 
60150
60350
  // modified from https://github.com/es-shims/es6-shim
@@ -60192,7 +60392,7 @@ module.exports = function assign(target, source1) {
60192
60392
  return to; // step 4
60193
60393
  };
60194
60394
 
60195
- },{"call-bound":370,"es-object-atoms":381,"has-symbols/shams":393,"object-keys":411}],414:[function(require,module,exports){
60395
+ },{"call-bound":371,"es-object-atoms":382,"has-symbols/shams":394,"object-keys":412}],415:[function(require,module,exports){
60196
60396
  'use strict';
60197
60397
 
60198
60398
  var implementation = require('./implementation');
@@ -60249,7 +60449,7 @@ module.exports = function getPolyfill() {
60249
60449
  return Object.assign;
60250
60450
  };
60251
60451
 
60252
- },{"./implementation":413}],415:[function(require,module,exports){
60452
+ },{"./implementation":414}],416:[function(require,module,exports){
60253
60453
  'use strict';
60254
60454
 
60255
60455
  /** @type {import('.')} */
@@ -60268,7 +60468,7 @@ module.exports = [
60268
60468
  'BigUint64Array'
60269
60469
  ];
60270
60470
 
60271
- },{}],416:[function(require,module,exports){
60471
+ },{}],417:[function(require,module,exports){
60272
60472
  // shim for using process in browser
60273
60473
  var process = module.exports = {};
60274
60474
 
@@ -60454,7 +60654,7 @@ process.chdir = function (dir) {
60454
60654
  };
60455
60655
  process.umask = function() { return 0; };
60456
60656
 
60457
- },{}],417:[function(require,module,exports){
60657
+ },{}],418:[function(require,module,exports){
60458
60658
  'use strict';
60459
60659
 
60460
60660
  var callBound = require('call-bound');
@@ -60473,7 +60673,7 @@ module.exports = function regexTester(regex) {
60473
60673
  };
60474
60674
  };
60475
60675
 
60476
- },{"call-bound":370,"es-errors/type":379,"is-regex":400}],418:[function(require,module,exports){
60676
+ },{"call-bound":371,"es-errors/type":380,"is-regex":401}],419:[function(require,module,exports){
60477
60677
  'use strict';
60478
60678
 
60479
60679
  var GetIntrinsic = require('get-intrinsic');
@@ -60517,9 +60717,9 @@ module.exports = function setFunctionLength(fn, length) {
60517
60717
  return fn;
60518
60718
  };
60519
60719
 
60520
- },{"define-data-property":371,"es-errors/type":379,"get-intrinsic":385,"gopd":390,"has-property-descriptors":391}],419:[function(require,module,exports){
60521
- arguments[4][359][0].apply(exports,arguments)
60522
- },{"dup":359}],420:[function(require,module,exports){
60720
+ },{"define-data-property":372,"es-errors/type":380,"get-intrinsic":386,"gopd":391,"has-property-descriptors":392}],420:[function(require,module,exports){
60721
+ arguments[4][360][0].apply(exports,arguments)
60722
+ },{"dup":360}],421:[function(require,module,exports){
60523
60723
  // Currently in sync with Node.js lib/internal/util/types.js
60524
60724
  // https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
60525
60725
 
@@ -60855,7 +61055,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
60855
61055
  });
60856
61056
  });
60857
61057
 
60858
- },{"is-arguments":397,"is-generator-function":399,"is-typed-array":401,"which-typed-array":422}],421:[function(require,module,exports){
61058
+ },{"is-arguments":398,"is-generator-function":400,"is-typed-array":402,"which-typed-array":423}],422:[function(require,module,exports){
60859
61059
  (function (process){(function (){
60860
61060
  // Copyright Joyent, Inc. and other Node contributors.
60861
61061
  //
@@ -61574,7 +61774,7 @@ function callbackify(original) {
61574
61774
  exports.callbackify = callbackify;
61575
61775
 
61576
61776
  }).call(this)}).call(this,require('_process'))
61577
- },{"./support/isBuffer":419,"./support/types":420,"_process":416,"inherits":396}],422:[function(require,module,exports){
61777
+ },{"./support/isBuffer":420,"./support/types":421,"_process":417,"inherits":397}],423:[function(require,module,exports){
61578
61778
  (function (global){(function (){
61579
61779
  'use strict';
61580
61780
 
@@ -61695,5 +61895,5 @@ module.exports = function whichTypedArray(value) {
61695
61895
  };
61696
61896
 
61697
61897
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
61698
- },{"available-typed-arrays":361,"call-bind":369,"call-bound":370,"for-each":382,"get-proto":388,"gopd":390,"has-tostringtag/shams":394}]},{},[111])(111)
61898
+ },{"available-typed-arrays":362,"call-bind":370,"call-bound":371,"for-each":383,"get-proto":389,"gopd":391,"has-tostringtag/shams":395}]},{},[112])(112)
61699
61899
  });