@designliquido/delegua 0.56.0 → 0.57.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/avaliador-sintatico/avaliador-sintatico.d.ts +5 -0
  2. package/avaliador-sintatico/avaliador-sintatico.d.ts.map +1 -1
  3. package/avaliador-sintatico/avaliador-sintatico.js +37 -7
  4. package/avaliador-sintatico/avaliador-sintatico.js.map +1 -1
  5. package/bin/package.json +1 -1
  6. package/construtos/index.d.ts +1 -0
  7. package/construtos/index.d.ts.map +1 -1
  8. package/construtos/index.js +1 -0
  9. package/construtos/index.js.map +1 -1
  10. package/construtos/se-ternario.d.ts +15 -0
  11. package/construtos/se-ternario.d.ts.map +1 -0
  12. package/construtos/se-ternario.js +21 -0
  13. package/construtos/se-ternario.js.map +1 -0
  14. package/interfaces/visitante-delegua-interface.d.ts +3 -2
  15. package/interfaces/visitante-delegua-interface.d.ts.map +1 -1
  16. package/interpretador/estruturas/classe-de-modulo.d.ts +22 -0
  17. package/interpretador/estruturas/classe-de-modulo.d.ts.map +1 -0
  18. package/interpretador/estruturas/classe-de-modulo.js +20 -0
  19. package/interpretador/estruturas/classe-de-modulo.js.map +1 -0
  20. package/interpretador/estruturas/index.d.ts +1 -0
  21. package/interpretador/estruturas/index.d.ts.map +1 -1
  22. package/interpretador/estruturas/index.js +1 -0
  23. package/interpretador/estruturas/index.js.map +1 -1
  24. package/interpretador/interpretador.d.ts +4 -3
  25. package/interpretador/interpretador.d.ts.map +1 -1
  26. package/interpretador/interpretador.js +12 -4
  27. package/interpretador/interpretador.js.map +1 -1
  28. package/package.json +1 -1
  29. package/tradutores/tradutor-javascript.d.ts +3 -1
  30. package/tradutores/tradutor-javascript.d.ts.map +1 -1
  31. package/tradutores/tradutor-javascript.js +10 -0
  32. package/tradutores/tradutor-javascript.js.map +1 -1
  33. package/tradutores/tradutor-python.d.ts +3 -1
  34. package/tradutores/tradutor-python.d.ts.map +1 -1
  35. package/tradutores/tradutor-python.js +7 -0
  36. package/tradutores/tradutor-python.js.map +1 -1
  37. package/umd/delegua.js +486 -386
package/umd/delegua.js CHANGED
@@ -235,7 +235,7 @@ class AvaliadorSintaticoBase {
235
235
  }
236
236
  exports.AvaliadorSintaticoBase = AvaliadorSintaticoBase;
237
237
 
238
- },{"../construtos":52,"../declaracoes":96,"../tipos-de-simbolos/comum":184,"./erro-avaliador-sintatico":11}],2:[function(require,module,exports){
238
+ },{"../construtos":52,"../declaracoes":97,"../tipos-de-simbolos/comum":186,"./erro-avaliador-sintatico":11}],2:[function(require,module,exports){
239
239
  "use strict";
240
240
  var __importDefault = (this && this.__importDefault) || function (mod) {
241
241
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -968,12 +968,23 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
968
968
  }
969
969
  return expressao;
970
970
  }
971
+ seTernario() {
972
+ let expressaoOuCondicao = this.ou();
973
+ while (this.verificarSeSimboloAtualEIgualA(delegua_2.default.INTERROGACAO)) {
974
+ const operador = this.simbolos[this.atual - 1];
975
+ const expressaoEntao = this.seTernario();
976
+ this.consumir(delegua_2.default.DOIS_PONTOS, `Esperado dois-pontos após caminho positivo em se ternário. Atual: ${this.simbolos[this.atual].lexema}.`);
977
+ const expressaoSenao = this.seTernario();
978
+ expressaoOuCondicao = new construtos_1.SeTernario(this.hashArquivo, expressaoOuCondicao, expressaoEntao, operador, expressaoSenao);
979
+ }
980
+ return expressaoOuCondicao;
981
+ }
971
982
  /**
972
983
  * Método que resolve atribuições.
973
984
  * @returns Um construto do tipo `Atribuir`, `Conjunto` ou `AtribuicaoPorIndice`.
974
985
  */
975
986
  atribuir() {
976
- const expressao = this.ou();
987
+ const expressao = this.seTernario();
977
988
  if (expressao instanceof construtos_1.Binario &&
978
989
  [
979
990
  delegua_2.default.MAIS_IGUAL,
@@ -991,14 +1002,14 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
991
1002
  }
992
1003
  else if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.IGUAL)) {
993
1004
  const igual = this.simbolos[this.atual - 1];
994
- const valor = this.expressao();
995
- switch (expressao.constructor.name) {
996
- case 'Variavel':
1005
+ const valor = this.seTernario();
1006
+ switch (expressao.constructor) {
1007
+ case construtos_1.Variavel:
997
1008
  return new construtos_1.Atribuir(this.hashArquivo, expressao, valor);
998
- case 'AcessoMetodoOuPropriedade':
1009
+ case construtos_1.AcessoMetodoOuPropriedade:
999
1010
  const expressaoAcessoMetodoOuPropriedade = expressao;
1000
1011
  return new construtos_1.DefinirValor(this.hashArquivo, igual.linha, expressaoAcessoMetodoOuPropriedade.objeto, expressaoAcessoMetodoOuPropriedade.simbolo, valor);
1001
- case 'AcessoIndiceVariavel':
1012
+ case construtos_1.AcessoIndiceVariavel:
1002
1013
  const expressaoAcessoIndiceVariavel = expressao;
1003
1014
  return new construtos_1.AtribuicaoPorIndice(this.hashArquivo, expressaoAcessoIndiceVariavel.linha, expressaoAcessoIndiceVariavel.entidadeChamada, expressaoAcessoIndiceVariavel.indice, valor);
1004
1015
  }
@@ -1620,10 +1631,29 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
1620
1631
  const tipoRetornoAcessoMetodoResolvido = entidadeChamadaAcessoMetodo.tipoRetornoMetodo.replace('<T>', entidadeChamadaAcessoMetodo.objeto.tipo);
1621
1632
  return tipoRetornoAcessoMetodoResolvido;
1622
1633
  case construtos_1.AcessoMetodoOuPropriedade:
1634
+ const entidadeChamadaAcessoMetodoOuPropriedade = entidadeChamadaChamada;
1635
+ // Algumas coisas podem acontecer aqui.
1636
+ // Uma delas é a variável/constante ser uma classe padrão.
1637
+ // Isso ocorre quando a importação é feita de uma biblioteca Node.js.
1638
+ // Nesse caso, o tipo de `entidadeChamadaAcessoMetodoOuPropriedade.objeto` começa com uma letra maiúscula.
1639
+ if (entidadeChamadaAcessoMetodoOuPropriedade.objeto.tipo &&
1640
+ entidadeChamadaAcessoMetodoOuPropriedade.objeto.tipo.match(/^[A-Z]/)) {
1641
+ const tipoCorrespondente = this.tiposDefinidosPorBibliotecas[entidadeChamadaAcessoMetodoOuPropriedade.objeto.tipo];
1642
+ if (!tipoCorrespondente) {
1643
+ throw new erro_avaliador_sintatico_1.ErroAvaliadorSintatico(entidadeChamadaAcessoMetodoOuPropriedade.simbolo, `Tipo '${entidadeChamadaAcessoMetodoOuPropriedade.objeto.tipo}' não foi encontrado entre os tipos definidos por bibliotecas.`);
1644
+ }
1645
+ if (!(entidadeChamadaAcessoMetodoOuPropriedade.simbolo.lexema in tipoCorrespondente.metodos) &&
1646
+ !(entidadeChamadaAcessoMetodoOuPropriedade.simbolo.lexema in tipoCorrespondente.propriedades)) {
1647
+ throw new erro_avaliador_sintatico_1.ErroAvaliadorSintatico(entidadeChamadaAcessoMetodoOuPropriedade.simbolo, `Membro '${entidadeChamadaAcessoMetodoOuPropriedade.simbolo.lexema}' não existe no tipo '${entidadeChamadaAcessoMetodoOuPropriedade.objeto.tipo}'.`);
1648
+ }
1649
+ if (entidadeChamadaAcessoMetodoOuPropriedade.simbolo.lexema in tipoCorrespondente.metodos) {
1650
+ return tipoCorrespondente.metodos[entidadeChamadaAcessoMetodoOuPropriedade.simbolo.lexema].tipo;
1651
+ }
1652
+ return tipoCorrespondente.propriedades[entidadeChamadaAcessoMetodoOuPropriedade.simbolo.lexema].tipo;
1653
+ }
1623
1654
  // Este caso ocorre quando a variável/constante é do tipo 'qualquer',
1624
1655
  // e a chamada normalmente é feita para uma primitiva.
1625
1656
  // A inferência, portanto, ocorre pelo uso da primitiva.
1626
- const entidadeChamadaAcessoMetodoOuPropriedade = entidadeChamadaChamada;
1627
1657
  for (const primitiva in this.primitivasConhecidas) {
1628
1658
  if (this.primitivasConhecidas[primitiva].hasOwnProperty(entidadeChamadaAcessoMetodoOuPropriedade.simbolo.lexema)) {
1629
1659
  return this.primitivasConhecidas[primitiva][entidadeChamadaAcessoMetodoOuPropriedade.simbolo.lexema].tipo;
@@ -2148,7 +2178,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
2148
2178
  }
2149
2179
  exports.AvaliadorSintatico = AvaliadorSintatico;
2150
2180
 
2151
- },{"../bibliotecas/primitivas-dicionario":21,"../bibliotecas/primitivas-numero":22,"../bibliotecas/primitivas-texto":23,"../bibliotecas/primitivas-vetor":24,"../construtos":52,"../construtos/tuplas":68,"../declaracoes":96,"../inferenciador":115,"../informacao-elemento-sintatico":116,"../tipos-de-dados/delegua":180,"../tipos-de-simbolos/delegua":185,"./avaliador-sintatico-base":1,"./comum":3,"./elemento-montao-tipos":10,"./erro-avaliador-sintatico":11,"./informacao-escopo":13,"./montao-tipos":16,"./pilha-escopos":17,"browser-process-hrtime":365}],3:[function(require,module,exports){
2181
+ },{"../bibliotecas/primitivas-dicionario":21,"../bibliotecas/primitivas-numero":22,"../bibliotecas/primitivas-texto":23,"../bibliotecas/primitivas-vetor":24,"../construtos":52,"../construtos/tuplas":69,"../declaracoes":97,"../inferenciador":116,"../informacao-elemento-sintatico":117,"../tipos-de-dados/delegua":182,"../tipos-de-simbolos/delegua":187,"./avaliador-sintatico-base":1,"./comum":3,"./elemento-montao-tipos":10,"./erro-avaliador-sintatico":11,"./informacao-escopo":13,"./montao-tipos":16,"./pilha-escopos":17,"browser-process-hrtime":367}],3:[function(require,module,exports){
2152
2182
  "use strict";
2153
2183
  Object.defineProperty(exports, "__esModule", { value: true });
2154
2184
  exports.buscarRetornos = buscarRetornos;
@@ -2248,7 +2278,7 @@ function registrarPrimitiva(primitivasConhecidas, tipo, catalogoPrimitivas) {
2248
2278
  }
2249
2279
  }
2250
2280
 
2251
- },{"../informacao-elemento-sintatico":116}],4:[function(require,module,exports){
2281
+ },{"../informacao-elemento-sintatico":117}],4:[function(require,module,exports){
2252
2282
  "use strict";
2253
2283
  var __importDefault = (this && this.__importDefault) || function (mod) {
2254
2284
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -2474,7 +2504,7 @@ class AvaliadorSintaticoCalango extends avaliador_sintatico_base_1.AvaliadorSint
2474
2504
  }
2475
2505
  exports.AvaliadorSintaticoCalango = AvaliadorSintaticoCalango;
2476
2506
 
2477
- },{"../../construtos":52,"../../declaracoes":96,"../../informacao-elemento-sintatico":116,"../../tipos-de-simbolos/calango":183,"../avaliador-sintatico-base":1,"../informacao-escopo":13,"../pilha-escopos":17}],5:[function(require,module,exports){
2507
+ },{"../../construtos":52,"../../declaracoes":97,"../../informacao-elemento-sintatico":117,"../../tipos-de-simbolos/calango":185,"../avaliador-sintatico-base":1,"../informacao-escopo":13,"../pilha-escopos":17}],5:[function(require,module,exports){
2478
2508
  "use strict";
2479
2509
  var __importDefault = (this && this.__importDefault) || function (mod) {
2480
2510
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -3129,7 +3159,7 @@ class AvaliadorSintaticoEguaClassico {
3129
3159
  }
3130
3160
  exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
3131
3161
 
3132
- },{"../../construtos":52,"../../declaracoes":96,"../../tipos-de-simbolos/egua-classico":186,"../erro-avaliador-sintatico":11}],6:[function(require,module,exports){
3162
+ },{"../../construtos":52,"../../declaracoes":97,"../../tipos-de-simbolos/egua-classico":188,"../erro-avaliador-sintatico":11}],6:[function(require,module,exports){
3133
3163
  "use strict";
3134
3164
  var __importDefault = (this && this.__importDefault) || function (mod) {
3135
3165
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -4211,7 +4241,7 @@ class AvaliadorSintaticoPitugues {
4211
4241
  }
4212
4242
  exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
4213
4243
 
4214
- },{"../../bibliotecas/primitivas-dicionario":21,"../../bibliotecas/primitivas-numero":22,"../../bibliotecas/primitivas-texto":23,"../../bibliotecas/primitivas-vetor":24,"../../construtos":52,"../../construtos/lista-compreensao":55,"../../declaracoes":96,"../../inferenciador":115,"../../informacao-elemento-sintatico":116,"../../lexador":172,"../../tipos-de-dados/dialetos/pitugues":181,"../../tipos-de-simbolos/pitugues":189,"../comum":3,"../erro-avaliador-sintatico":11,"../informacao-escopo":13,"../pilha-escopos":17,"browser-process-hrtime":365}],7:[function(require,module,exports){
4244
+ },{"../../bibliotecas/primitivas-dicionario":21,"../../bibliotecas/primitivas-numero":22,"../../bibliotecas/primitivas-texto":23,"../../bibliotecas/primitivas-vetor":24,"../../construtos":52,"../../construtos/lista-compreensao":55,"../../declaracoes":97,"../../inferenciador":116,"../../informacao-elemento-sintatico":117,"../../lexador":174,"../../tipos-de-dados/dialetos/pitugues":183,"../../tipos-de-simbolos/pitugues":191,"../comum":3,"../erro-avaliador-sintatico":11,"../informacao-escopo":13,"../pilha-escopos":17,"browser-process-hrtime":367}],7:[function(require,module,exports){
4215
4245
  "use strict";
4216
4246
  var __importDefault = (this && this.__importDefault) || function (mod) {
4217
4247
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -4385,7 +4415,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
4385
4415
  }
4386
4416
  exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
4387
4417
 
4388
- },{"../../construtos":52,"../../declaracoes":96,"../../tipos-de-simbolos/portugol-ipt":190,"../avaliador-sintatico-base":1}],8:[function(require,module,exports){
4418
+ },{"../../construtos":52,"../../declaracoes":97,"../../tipos-de-simbolos/portugol-ipt":192,"../avaliador-sintatico-base":1}],8:[function(require,module,exports){
4389
4419
  "use strict";
4390
4420
  var __importDefault = (this && this.__importDefault) || function (mod) {
4391
4421
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -5373,7 +5403,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
5373
5403
  }
5374
5404
  exports.AvaliadorSintaticoTenda = AvaliadorSintaticoTenda;
5375
5405
 
5376
- },{"../../bibliotecas/primitivas-dicionario":21,"../../bibliotecas/primitivas-numero":22,"../../bibliotecas/primitivas-texto":23,"../../bibliotecas/primitivas-vetor":24,"../../construtos":52,"../../construtos/tuplas":68,"../../declaracoes":96,"../../inferenciador":115,"../../informacao-elemento-sintatico":116,"../../lexador/simbolo":178,"../../tipos-de-dados/delegua":180,"../../tipos-de-simbolos/tenda":191,"../avaliador-sintatico-base":1,"./../erro-avaliador-sintatico":11,"./../informacao-escopo":13,"./../pilha-escopos":17,"browser-process-hrtime":365}],9:[function(require,module,exports){
5406
+ },{"../../bibliotecas/primitivas-dicionario":21,"../../bibliotecas/primitivas-numero":22,"../../bibliotecas/primitivas-texto":23,"../../bibliotecas/primitivas-vetor":24,"../../construtos":52,"../../construtos/tuplas":69,"../../declaracoes":97,"../../inferenciador":116,"../../informacao-elemento-sintatico":117,"../../lexador/simbolo":180,"../../tipos-de-dados/delegua":182,"../../tipos-de-simbolos/tenda":193,"../avaliador-sintatico-base":1,"./../erro-avaliador-sintatico":11,"./../informacao-escopo":13,"./../pilha-escopos":17,"browser-process-hrtime":367}],9:[function(require,module,exports){
5377
5407
  "use strict";
5378
5408
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5379
5409
  if (k2 === undefined) k2 = k;
@@ -5578,7 +5608,7 @@ class MicroAvaliadorSintaticoBase {
5578
5608
  }
5579
5609
  exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
5580
5610
 
5581
- },{"../construtos":52,"../tipos-de-simbolos/comum":184,"./erro-avaliador-sintatico":11}],15:[function(require,module,exports){
5611
+ },{"../construtos":52,"../tipos-de-simbolos/comum":186,"./erro-avaliador-sintatico":11}],15:[function(require,module,exports){
5582
5612
  "use strict";
5583
5613
  var __importDefault = (this && this.__importDefault) || function (mod) {
5584
5614
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -5797,7 +5827,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
5797
5827
  }
5798
5828
  exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
5799
5829
 
5800
- },{"../construtos":52,"../tipos-de-simbolos/microgramaticas/delegua":188,"./micro-avaliador-sintatico-base":14}],16:[function(require,module,exports){
5830
+ },{"../construtos":52,"../tipos-de-simbolos/microgramaticas/delegua":190,"./micro-avaliador-sintatico-base":14}],16:[function(require,module,exports){
5801
5831
  "use strict";
5802
5832
  Object.defineProperty(exports, "__esModule", { value: true });
5803
5833
  exports.MontaoTipos = void 0;
@@ -5848,7 +5878,7 @@ class MontaoTipos {
5848
5878
  }
5849
5879
  exports.MontaoTipos = MontaoTipos;
5850
5880
 
5851
- },{"../geracao-identificadores":113,"./erro-avaliador-sintatico":11}],17:[function(require,module,exports){
5881
+ },{"../geracao-identificadores":114,"./erro-avaliador-sintatico":11}],17:[function(require,module,exports){
5852
5882
  "use strict";
5853
5883
  Object.defineProperty(exports, "__esModule", { value: true });
5854
5884
  exports.PilhaEscopos = void 0;
@@ -6628,7 +6658,7 @@ async function tupla(interpretador, vetor) {
6628
6658
  }
6629
6659
  }
6630
6660
 
6631
- },{"../construtos":52,"../excecoes":109,"../interpretador/estruturas":148,"../interpretador/estruturas/descritor-tipo-classe":146,"../interpretador/estruturas/funcao-padrao":147,"../interpretador/estruturas/objeto-delegua-classe":151,"../quebras":179}],21:[function(require,module,exports){
6661
+ },{"../construtos":52,"../excecoes":110,"../interpretador/estruturas":150,"../interpretador/estruturas/descritor-tipo-classe":148,"../interpretador/estruturas/funcao-padrao":149,"../interpretador/estruturas/objeto-delegua-classe":153,"../quebras":181}],21:[function(require,module,exports){
6632
6662
  "use strict";
6633
6663
  Object.defineProperty(exports, "__esModule", { value: true });
6634
6664
  const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
@@ -6685,7 +6715,7 @@ exports.default = {
6685
6715
  },
6686
6716
  };
6687
6717
 
6688
- },{"../informacao-elemento-sintatico":116}],22:[function(require,module,exports){
6718
+ },{"../informacao-elemento-sintatico":117}],22:[function(require,module,exports){
6689
6719
  "use strict";
6690
6720
  Object.defineProperty(exports, "__esModule", { value: true });
6691
6721
  const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
@@ -6770,7 +6800,7 @@ exports.default = {
6770
6800
  },
6771
6801
  };
6772
6802
 
6773
- },{"../informacao-elemento-sintatico":116}],23:[function(require,module,exports){
6803
+ },{"../informacao-elemento-sintatico":117}],23:[function(require,module,exports){
6774
6804
  "use strict";
6775
6805
  Object.defineProperty(exports, "__esModule", { value: true });
6776
6806
  const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
@@ -7025,7 +7055,7 @@ exports.default = {
7025
7055
  },
7026
7056
  };
7027
7057
 
7028
- },{"../informacao-elemento-sintatico":116}],24:[function(require,module,exports){
7058
+ },{"../informacao-elemento-sintatico":117}],24:[function(require,module,exports){
7029
7059
  "use strict";
7030
7060
  Object.defineProperty(exports, "__esModule", { value: true });
7031
7061
  const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
@@ -7372,7 +7402,7 @@ exports.default = {
7372
7402
  },
7373
7403
  };
7374
7404
 
7375
- },{"../informacao-elemento-sintatico":116}],25:[function(require,module,exports){
7405
+ },{"../informacao-elemento-sintatico":117}],25:[function(require,module,exports){
7376
7406
  "use strict";
7377
7407
  Object.defineProperty(exports, "__esModule", { value: true });
7378
7408
  exports.AcessoElementoMatriz = void 0;
@@ -7722,7 +7752,7 @@ class Chamada {
7722
7752
  }
7723
7753
  exports.Chamada = Chamada;
7724
7754
 
7725
- },{"../geracao-identificadores":113}],37:[function(require,module,exports){
7755
+ },{"../geracao-identificadores":114}],37:[function(require,module,exports){
7726
7756
  "use strict";
7727
7757
  Object.defineProperty(exports, "__esModule", { value: true });
7728
7758
  exports.ComentarioComoConstruto = void 0;
@@ -8099,6 +8129,7 @@ __exportStar(require("./para-cada-como-construto"), exports);
8099
8129
  __exportStar(require("./para-como-construto"), exports);
8100
8130
  __exportStar(require("./referencia-biblioteca-global"), exports);
8101
8131
  __exportStar(require("./referencia-funcao"), exports);
8132
+ __exportStar(require("./se-ternario"), exports);
8102
8133
  __exportStar(require("./separador"), exports);
8103
8134
  __exportStar(require("./super"), exports);
8104
8135
  __exportStar(require("./tipo-de"), exports);
@@ -8108,7 +8139,7 @@ __exportStar(require("./unario"), exports);
8108
8139
  __exportStar(require("./variavel"), exports);
8109
8140
  __exportStar(require("./vetor"), exports);
8110
8141
 
8111
- },{"./acesso-elemento-matriz":25,"./acesso-indice-variavel":26,"./acesso-metodo":28,"./acesso-metodo-ou-propriedade":27,"./acesso-propriedade":29,"./agrupamento":30,"./argumento-referencia-funcao":31,"./atribuicao-por-indice":32,"./atribuicao-por-indices-matriz":33,"./atribuir":34,"./binario":35,"./chamada":36,"./comentario-como-construto":37,"./componente-linguagem":38,"./constante":39,"./construto":40,"./decorador":41,"./definir-valor":42,"./dicionario":43,"./elvis":44,"./enquanto-como-construto":45,"./expressao-regular":46,"./fazer-como-construto":47,"./fim-para":48,"./formatacao-escrita":49,"./funcao":50,"./importar-como-construto":51,"./isto":53,"./leia":54,"./lista-compreensao":55,"./literal":56,"./logico":57,"./para-cada-como-construto":58,"./para-como-construto":59,"./referencia-biblioteca-global":60,"./referencia-funcao":61,"./separador":62,"./super":63,"./tipo-de":64,"./tupla":65,"./tuplas":68,"./unario":76,"./variavel":77,"./vetor":78}],53:[function(require,module,exports){
8142
+ },{"./acesso-elemento-matriz":25,"./acesso-indice-variavel":26,"./acesso-metodo":28,"./acesso-metodo-ou-propriedade":27,"./acesso-propriedade":29,"./agrupamento":30,"./argumento-referencia-funcao":31,"./atribuicao-por-indice":32,"./atribuicao-por-indices-matriz":33,"./atribuir":34,"./binario":35,"./chamada":36,"./comentario-como-construto":37,"./componente-linguagem":38,"./constante":39,"./construto":40,"./decorador":41,"./definir-valor":42,"./dicionario":43,"./elvis":44,"./enquanto-como-construto":45,"./expressao-regular":46,"./fazer-como-construto":47,"./fim-para":48,"./formatacao-escrita":49,"./funcao":50,"./importar-como-construto":51,"./isto":53,"./leia":54,"./lista-compreensao":55,"./literal":56,"./logico":57,"./para-cada-como-construto":58,"./para-como-construto":59,"./referencia-biblioteca-global":60,"./referencia-funcao":61,"./se-ternario":62,"./separador":63,"./super":64,"./tipo-de":65,"./tupla":66,"./tuplas":69,"./unario":77,"./variavel":78,"./vetor":79}],53:[function(require,module,exports){
8112
8143
  "use strict";
8113
8144
  Object.defineProperty(exports, "__esModule", { value: true });
8114
8145
  exports.Isto = void 0;
@@ -8153,7 +8184,7 @@ class Leia {
8153
8184
  }
8154
8185
  exports.Leia = Leia;
8155
8186
 
8156
- },{"../geracao-identificadores":113}],55:[function(require,module,exports){
8187
+ },{"../geracao-identificadores":114}],55:[function(require,module,exports){
8157
8188
  "use strict";
8158
8189
  Object.defineProperty(exports, "__esModule", { value: true });
8159
8190
  exports.ListaCompreensao = void 0;
@@ -8312,6 +8343,28 @@ exports.ReferenciaFuncao = ReferenciaFuncao;
8312
8343
  },{}],62:[function(require,module,exports){
8313
8344
  "use strict";
8314
8345
  Object.defineProperty(exports, "__esModule", { value: true });
8346
+ exports.SeTernario = void 0;
8347
+ class SeTernario {
8348
+ constructor(hashArquivo, condicao, expressaoSe, operador, expressaoSenao) {
8349
+ this.tipo = 'qualquer';
8350
+ this.linha = condicao.linha;
8351
+ this.hashArquivo = hashArquivo;
8352
+ this.condicao = condicao;
8353
+ this.expressaoSe = expressaoSe;
8354
+ this.expressaoSenao = expressaoSenao;
8355
+ }
8356
+ async aceitar(visitante) {
8357
+ return await visitante.visitarExpressaoSeTernario(this);
8358
+ }
8359
+ paraTexto() {
8360
+ return `<se-ternário condicao=${this.condicao.paraTexto()} expressaoSe=${this.expressaoSe.paraTexto()} expressaoSenao=${this.expressaoSenao.paraTexto()} />`;
8361
+ }
8362
+ }
8363
+ exports.SeTernario = SeTernario;
8364
+
8365
+ },{}],63:[function(require,module,exports){
8366
+ "use strict";
8367
+ Object.defineProperty(exports, "__esModule", { value: true });
8315
8368
  exports.Separador = void 0;
8316
8369
  class Separador {
8317
8370
  constructor(simboloSeparador) {
@@ -8328,7 +8381,7 @@ class Separador {
8328
8381
  }
8329
8382
  exports.Separador = Separador;
8330
8383
 
8331
- },{}],63:[function(require,module,exports){
8384
+ },{}],64:[function(require,module,exports){
8332
8385
  "use strict";
8333
8386
  Object.defineProperty(exports, "__esModule", { value: true });
8334
8387
  exports.Super = void 0;
@@ -8348,7 +8401,7 @@ class Super {
8348
8401
  }
8349
8402
  exports.Super = Super;
8350
8403
 
8351
- },{}],64:[function(require,module,exports){
8404
+ },{}],65:[function(require,module,exports){
8352
8405
  "use strict";
8353
8406
  Object.defineProperty(exports, "__esModule", { value: true });
8354
8407
  exports.TipoDe = void 0;
@@ -8372,7 +8425,7 @@ class TipoDe {
8372
8425
  }
8373
8426
  exports.TipoDe = TipoDe;
8374
8427
 
8375
- },{}],65:[function(require,module,exports){
8428
+ },{}],66:[function(require,module,exports){
8376
8429
  "use strict";
8377
8430
  Object.defineProperty(exports, "__esModule", { value: true });
8378
8431
  exports.Tupla = void 0;
@@ -8383,7 +8436,7 @@ class Tupla {
8383
8436
  }
8384
8437
  exports.Tupla = Tupla;
8385
8438
 
8386
- },{}],66:[function(require,module,exports){
8439
+ },{}],67:[function(require,module,exports){
8387
8440
  "use strict";
8388
8441
  Object.defineProperty(exports, "__esModule", { value: true });
8389
8442
  exports.Deceto = void 0;
@@ -8431,7 +8484,7 @@ class Deceto extends tupla_1.Tupla {
8431
8484
  }
8432
8485
  exports.Deceto = Deceto;
8433
8486
 
8434
- },{"../tupla":65}],67:[function(require,module,exports){
8487
+ },{"../tupla":66}],68:[function(require,module,exports){
8435
8488
  "use strict";
8436
8489
  Object.defineProperty(exports, "__esModule", { value: true });
8437
8490
  exports.Dupla = void 0;
@@ -8450,7 +8503,7 @@ class Dupla extends tupla_1.Tupla {
8450
8503
  }
8451
8504
  exports.Dupla = Dupla;
8452
8505
 
8453
- },{"../tupla":65}],68:[function(require,module,exports){
8506
+ },{"../tupla":66}],69:[function(require,module,exports){
8454
8507
  "use strict";
8455
8508
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
8456
8509
  if (k2 === undefined) k2 = k;
@@ -8518,7 +8571,7 @@ class SeletorTuplas {
8518
8571
  }
8519
8572
  exports.SeletorTuplas = SeletorTuplas;
8520
8573
 
8521
- },{"./deceto":66,"./dupla":67,"./noneto":69,"./octeto":70,"./quarteto":71,"./quinteto":72,"./septeto":73,"./sexteto":74,"./trio":75}],69:[function(require,module,exports){
8574
+ },{"./deceto":67,"./dupla":68,"./noneto":70,"./octeto":71,"./quarteto":72,"./quinteto":73,"./septeto":74,"./sexteto":75,"./trio":76}],70:[function(require,module,exports){
8522
8575
  "use strict";
8523
8576
  Object.defineProperty(exports, "__esModule", { value: true });
8524
8577
  exports.Noneto = void 0;
@@ -8557,7 +8610,7 @@ class Noneto extends tupla_1.Tupla {
8557
8610
  }
8558
8611
  exports.Noneto = Noneto;
8559
8612
 
8560
- },{"../tupla":65}],70:[function(require,module,exports){
8613
+ },{"../tupla":66}],71:[function(require,module,exports){
8561
8614
  "use strict";
8562
8615
  Object.defineProperty(exports, "__esModule", { value: true });
8563
8616
  exports.Octeto = void 0;
@@ -8594,7 +8647,7 @@ class Octeto extends tupla_1.Tupla {
8594
8647
  }
8595
8648
  exports.Octeto = Octeto;
8596
8649
 
8597
- },{"../tupla":65}],71:[function(require,module,exports){
8650
+ },{"../tupla":66}],72:[function(require,module,exports){
8598
8651
  "use strict";
8599
8652
  Object.defineProperty(exports, "__esModule", { value: true });
8600
8653
  exports.Quarteto = void 0;
@@ -8617,7 +8670,7 @@ class Quarteto extends tupla_1.Tupla {
8617
8670
  }
8618
8671
  exports.Quarteto = Quarteto;
8619
8672
 
8620
- },{"../tupla":65}],72:[function(require,module,exports){
8673
+ },{"../tupla":66}],73:[function(require,module,exports){
8621
8674
  "use strict";
8622
8675
  Object.defineProperty(exports, "__esModule", { value: true });
8623
8676
  exports.Quinteto = void 0;
@@ -8642,7 +8695,7 @@ class Quinteto extends tupla_1.Tupla {
8642
8695
  }
8643
8696
  exports.Quinteto = Quinteto;
8644
8697
 
8645
- },{"../tupla":65}],73:[function(require,module,exports){
8698
+ },{"../tupla":66}],74:[function(require,module,exports){
8646
8699
  "use strict";
8647
8700
  Object.defineProperty(exports, "__esModule", { value: true });
8648
8701
  exports.Septeto = void 0;
@@ -8677,7 +8730,7 @@ class Septeto extends tupla_1.Tupla {
8677
8730
  }
8678
8731
  exports.Septeto = Septeto;
8679
8732
 
8680
- },{"../tupla":65}],74:[function(require,module,exports){
8733
+ },{"../tupla":66}],75:[function(require,module,exports){
8681
8734
  "use strict";
8682
8735
  Object.defineProperty(exports, "__esModule", { value: true });
8683
8736
  exports.Sexteto = void 0;
@@ -8704,7 +8757,7 @@ class Sexteto extends tupla_1.Tupla {
8704
8757
  }
8705
8758
  exports.Sexteto = Sexteto;
8706
8759
 
8707
- },{"../tupla":65}],75:[function(require,module,exports){
8760
+ },{"../tupla":66}],76:[function(require,module,exports){
8708
8761
  "use strict";
8709
8762
  Object.defineProperty(exports, "__esModule", { value: true });
8710
8763
  exports.Trio = void 0;
@@ -8725,7 +8778,7 @@ class Trio extends tupla_1.Tupla {
8725
8778
  }
8726
8779
  exports.Trio = Trio;
8727
8780
 
8728
- },{"../tupla":65}],76:[function(require,module,exports){
8781
+ },{"../tupla":66}],77:[function(require,module,exports){
8729
8782
  "use strict";
8730
8783
  Object.defineProperty(exports, "__esModule", { value: true });
8731
8784
  exports.Unario = void 0;
@@ -8746,7 +8799,7 @@ class Unario {
8746
8799
  }
8747
8800
  exports.Unario = Unario;
8748
8801
 
8749
- },{}],77:[function(require,module,exports){
8802
+ },{}],78:[function(require,module,exports){
8750
8803
  "use strict";
8751
8804
  Object.defineProperty(exports, "__esModule", { value: true });
8752
8805
  exports.Variavel = void 0;
@@ -8766,7 +8819,7 @@ class Variavel {
8766
8819
  }
8767
8820
  exports.Variavel = Variavel;
8768
8821
 
8769
- },{}],78:[function(require,module,exports){
8822
+ },{}],79:[function(require,module,exports){
8770
8823
  "use strict";
8771
8824
  Object.defineProperty(exports, "__esModule", { value: true });
8772
8825
  exports.Vetor = void 0;
@@ -8792,7 +8845,7 @@ class Vetor {
8792
8845
  }
8793
8846
  exports.Vetor = Vetor;
8794
8847
 
8795
- },{}],79:[function(require,module,exports){
8848
+ },{}],80:[function(require,module,exports){
8796
8849
  "use strict";
8797
8850
  Object.defineProperty(exports, "__esModule", { value: true });
8798
8851
  exports.Bloco = void 0;
@@ -8818,7 +8871,7 @@ class Bloco extends declaracao_1.Declaracao {
8818
8871
  }
8819
8872
  exports.Bloco = Bloco;
8820
8873
 
8821
- },{"./declaracao":86}],80:[function(require,module,exports){
8874
+ },{"./declaracao":87}],81:[function(require,module,exports){
8822
8875
  "use strict";
8823
8876
  Object.defineProperty(exports, "__esModule", { value: true });
8824
8877
  exports.CabecalhoPrograma = void 0;
@@ -8840,7 +8893,7 @@ class CabecalhoPrograma extends declaracao_1.Declaracao {
8840
8893
  }
8841
8894
  exports.CabecalhoPrograma = CabecalhoPrograma;
8842
8895
 
8843
- },{"./declaracao":86}],81:[function(require,module,exports){
8896
+ },{"./declaracao":87}],82:[function(require,module,exports){
8844
8897
  "use strict";
8845
8898
  Object.defineProperty(exports, "__esModule", { value: true });
8846
8899
  exports.Classe = void 0;
@@ -8875,7 +8928,7 @@ class Classe extends declaracao_1.Declaracao {
8875
8928
  }
8876
8929
  exports.Classe = Classe;
8877
8930
 
8878
- },{"./declaracao":86}],82:[function(require,module,exports){
8931
+ },{"./declaracao":87}],83:[function(require,module,exports){
8879
8932
  "use strict";
8880
8933
  Object.defineProperty(exports, "__esModule", { value: true });
8881
8934
  exports.Comentario = void 0;
@@ -8900,7 +8953,7 @@ class Comentario extends declaracao_1.Declaracao {
8900
8953
  }
8901
8954
  exports.Comentario = Comentario;
8902
8955
 
8903
- },{"./declaracao":86}],83:[function(require,module,exports){
8956
+ },{"./declaracao":87}],84:[function(require,module,exports){
8904
8957
  "use strict";
8905
8958
  Object.defineProperty(exports, "__esModule", { value: true });
8906
8959
  exports.ConstMultiplo = void 0;
@@ -8925,7 +8978,7 @@ class ConstMultiplo extends declaracao_1.Declaracao {
8925
8978
  }
8926
8979
  exports.ConstMultiplo = ConstMultiplo;
8927
8980
 
8928
- },{"./declaracao":86}],84:[function(require,module,exports){
8981
+ },{"./declaracao":87}],85:[function(require,module,exports){
8929
8982
  "use strict";
8930
8983
  Object.defineProperty(exports, "__esModule", { value: true });
8931
8984
  exports.Const = void 0;
@@ -8955,7 +9008,7 @@ class Const extends declaracao_1.Declaracao {
8955
9008
  }
8956
9009
  exports.Const = Const;
8957
9010
 
8958
- },{"./declaracao":86}],85:[function(require,module,exports){
9011
+ },{"./declaracao":87}],86:[function(require,module,exports){
8959
9012
  "use strict";
8960
9013
  Object.defineProperty(exports, "__esModule", { value: true });
8961
9014
  exports.Continua = void 0;
@@ -8973,7 +9026,7 @@ class Continua extends declaracao_1.Declaracao {
8973
9026
  }
8974
9027
  exports.Continua = Continua;
8975
9028
 
8976
- },{"./declaracao":86}],86:[function(require,module,exports){
9029
+ },{"./declaracao":87}],87:[function(require,module,exports){
8977
9030
  "use strict";
8978
9031
  Object.defineProperty(exports, "__esModule", { value: true });
8979
9032
  exports.Declaracao = void 0;
@@ -8996,7 +9049,7 @@ class Declaracao {
8996
9049
  }
8997
9050
  exports.Declaracao = Declaracao;
8998
9051
 
8999
- },{}],87:[function(require,module,exports){
9052
+ },{}],88:[function(require,module,exports){
9000
9053
  "use strict";
9001
9054
  Object.defineProperty(exports, "__esModule", { value: true });
9002
9055
  exports.Enquanto = void 0;
@@ -9017,7 +9070,7 @@ class Enquanto extends declaracao_1.Declaracao {
9017
9070
  }
9018
9071
  exports.Enquanto = Enquanto;
9019
9072
 
9020
- },{"./declaracao":86}],88:[function(require,module,exports){
9073
+ },{"./declaracao":87}],89:[function(require,module,exports){
9021
9074
  "use strict";
9022
9075
  Object.defineProperty(exports, "__esModule", { value: true });
9023
9076
  exports.Escolha = void 0;
@@ -9042,7 +9095,7 @@ class Escolha extends declaracao_1.Declaracao {
9042
9095
  }
9043
9096
  exports.Escolha = Escolha;
9044
9097
 
9045
- },{"./declaracao":86}],89:[function(require,module,exports){
9098
+ },{"./declaracao":87}],90:[function(require,module,exports){
9046
9099
  "use strict";
9047
9100
  Object.defineProperty(exports, "__esModule", { value: true });
9048
9101
  exports.EscrevaMesmaLinha = void 0;
@@ -9061,7 +9114,7 @@ class EscrevaMesmaLinha extends declaracao_1.Declaracao {
9061
9114
  }
9062
9115
  exports.EscrevaMesmaLinha = EscrevaMesmaLinha;
9063
9116
 
9064
- },{"./declaracao":86}],90:[function(require,module,exports){
9117
+ },{"./declaracao":87}],91:[function(require,module,exports){
9065
9118
  "use strict";
9066
9119
  Object.defineProperty(exports, "__esModule", { value: true });
9067
9120
  exports.Escreva = void 0;
@@ -9080,7 +9133,7 @@ class Escreva extends declaracao_1.Declaracao {
9080
9133
  }
9081
9134
  exports.Escreva = Escreva;
9082
9135
 
9083
- },{"./declaracao":86}],91:[function(require,module,exports){
9136
+ },{"./declaracao":87}],92:[function(require,module,exports){
9084
9137
  "use strict";
9085
9138
  Object.defineProperty(exports, "__esModule", { value: true });
9086
9139
  exports.Expressao = void 0;
@@ -9099,7 +9152,7 @@ class Expressao extends declaracao_1.Declaracao {
9099
9152
  }
9100
9153
  exports.Expressao = Expressao;
9101
9154
 
9102
- },{"./declaracao":86}],92:[function(require,module,exports){
9155
+ },{"./declaracao":87}],93:[function(require,module,exports){
9103
9156
  "use strict";
9104
9157
  Object.defineProperty(exports, "__esModule", { value: true });
9105
9158
  exports.Falhar = void 0;
@@ -9119,7 +9172,7 @@ class Falhar extends declaracao_1.Declaracao {
9119
9172
  }
9120
9173
  exports.Falhar = Falhar;
9121
9174
 
9122
- },{"./declaracao":86}],93:[function(require,module,exports){
9175
+ },{"./declaracao":87}],94:[function(require,module,exports){
9123
9176
  "use strict";
9124
9177
  Object.defineProperty(exports, "__esModule", { value: true });
9125
9178
  exports.Fazer = void 0;
@@ -9140,7 +9193,7 @@ class Fazer extends declaracao_1.Declaracao {
9140
9193
  }
9141
9194
  exports.Fazer = Fazer;
9142
9195
 
9143
- },{"./declaracao":86}],94:[function(require,module,exports){
9196
+ },{"./declaracao":87}],95:[function(require,module,exports){
9144
9197
  "use strict";
9145
9198
  Object.defineProperty(exports, "__esModule", { value: true });
9146
9199
  exports.FuncaoDeclaracao = void 0;
@@ -9168,7 +9221,7 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
9168
9221
  }
9169
9222
  exports.FuncaoDeclaracao = FuncaoDeclaracao;
9170
9223
 
9171
- },{"../geracao-identificadores":113,"./declaracao":86}],95:[function(require,module,exports){
9224
+ },{"../geracao-identificadores":114,"./declaracao":87}],96:[function(require,module,exports){
9172
9225
  "use strict";
9173
9226
  Object.defineProperty(exports, "__esModule", { value: true });
9174
9227
  exports.Importar = void 0;
@@ -9194,7 +9247,7 @@ class Importar extends declaracao_1.Declaracao {
9194
9247
  }
9195
9248
  exports.Importar = Importar;
9196
9249
 
9197
- },{"./declaracao":86}],96:[function(require,module,exports){
9250
+ },{"./declaracao":87}],97:[function(require,module,exports){
9198
9251
  "use strict";
9199
9252
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
9200
9253
  if (k2 === undefined) k2 = k;
@@ -9241,7 +9294,7 @@ __exportStar(require("./tente"), exports);
9241
9294
  __exportStar(require("./var"), exports);
9242
9295
  __exportStar(require("./var-multiplo"), exports);
9243
9296
 
9244
- },{"./bloco":79,"./cabecalho-programa":80,"./classe":81,"./comentario":82,"./const":84,"./const-multiplo":83,"./continua":85,"./declaracao":86,"./enquanto":87,"./escolha":88,"./escreva":90,"./escreva-mesma-linha":89,"./expressao":91,"./falhar":92,"./fazer":93,"./funcao":94,"./importar":95,"./inicio-algoritmo":97,"./para":99,"./para-cada":98,"./propriedade-classe":100,"./retorna":101,"./se":102,"./sustar":103,"./tendo-como":104,"./tente":105,"./var":107,"./var-multiplo":106}],97:[function(require,module,exports){
9297
+ },{"./bloco":80,"./cabecalho-programa":81,"./classe":82,"./comentario":83,"./const":85,"./const-multiplo":84,"./continua":86,"./declaracao":87,"./enquanto":88,"./escolha":89,"./escreva":91,"./escreva-mesma-linha":90,"./expressao":92,"./falhar":93,"./fazer":94,"./funcao":95,"./importar":96,"./inicio-algoritmo":98,"./para":100,"./para-cada":99,"./propriedade-classe":101,"./retorna":102,"./se":103,"./sustar":104,"./tendo-como":105,"./tente":106,"./var":108,"./var-multiplo":107}],98:[function(require,module,exports){
9245
9298
  "use strict";
9246
9299
  Object.defineProperty(exports, "__esModule", { value: true });
9247
9300
  exports.InicioAlgoritmo = void 0;
@@ -9261,7 +9314,7 @@ class InicioAlgoritmo extends declaracao_1.Declaracao {
9261
9314
  }
9262
9315
  exports.InicioAlgoritmo = InicioAlgoritmo;
9263
9316
 
9264
- },{"./declaracao":86}],98:[function(require,module,exports){
9317
+ },{"./declaracao":87}],99:[function(require,module,exports){
9265
9318
  "use strict";
9266
9319
  Object.defineProperty(exports, "__esModule", { value: true });
9267
9320
  exports.ParaCada = void 0;
@@ -9284,7 +9337,7 @@ class ParaCada extends declaracao_1.Declaracao {
9284
9337
  }
9285
9338
  exports.ParaCada = ParaCada;
9286
9339
 
9287
- },{"./declaracao":86}],99:[function(require,module,exports){
9340
+ },{"./declaracao":87}],100:[function(require,module,exports){
9288
9341
  "use strict";
9289
9342
  Object.defineProperty(exports, "__esModule", { value: true });
9290
9343
  exports.Para = void 0;
@@ -9321,7 +9374,7 @@ class Para extends declaracao_1.Declaracao {
9321
9374
  }
9322
9375
  exports.Para = Para;
9323
9376
 
9324
- },{"./declaracao":86}],100:[function(require,module,exports){
9377
+ },{"./declaracao":87}],101:[function(require,module,exports){
9325
9378
  "use strict";
9326
9379
  Object.defineProperty(exports, "__esModule", { value: true });
9327
9380
  exports.PropriedadeClasse = void 0;
@@ -9342,7 +9395,7 @@ class PropriedadeClasse extends declaracao_1.Declaracao {
9342
9395
  }
9343
9396
  exports.PropriedadeClasse = PropriedadeClasse;
9344
9397
 
9345
- },{"./declaracao":86}],101:[function(require,module,exports){
9398
+ },{"./declaracao":87}],102:[function(require,module,exports){
9346
9399
  "use strict";
9347
9400
  Object.defineProperty(exports, "__esModule", { value: true });
9348
9401
  exports.Retorna = void 0;
@@ -9368,7 +9421,7 @@ class Retorna extends declaracao_1.Declaracao {
9368
9421
  }
9369
9422
  exports.Retorna = Retorna;
9370
9423
 
9371
- },{"./declaracao":86}],102:[function(require,module,exports){
9424
+ },{"./declaracao":87}],103:[function(require,module,exports){
9372
9425
  "use strict";
9373
9426
  Object.defineProperty(exports, "__esModule", { value: true });
9374
9427
  exports.Se = void 0;
@@ -9391,7 +9444,7 @@ class Se extends declaracao_1.Declaracao {
9391
9444
  }
9392
9445
  exports.Se = Se;
9393
9446
 
9394
- },{"./declaracao":86}],103:[function(require,module,exports){
9447
+ },{"./declaracao":87}],104:[function(require,module,exports){
9395
9448
  "use strict";
9396
9449
  Object.defineProperty(exports, "__esModule", { value: true });
9397
9450
  exports.Sustar = void 0;
@@ -9409,7 +9462,7 @@ class Sustar extends declaracao_1.Declaracao {
9409
9462
  }
9410
9463
  exports.Sustar = Sustar;
9411
9464
 
9412
- },{"./declaracao":86}],104:[function(require,module,exports){
9465
+ },{"./declaracao":87}],105:[function(require,module,exports){
9413
9466
  "use strict";
9414
9467
  Object.defineProperty(exports, "__esModule", { value: true });
9415
9468
  exports.TendoComo = void 0;
@@ -9436,7 +9489,7 @@ class TendoComo extends declaracao_1.Declaracao {
9436
9489
  }
9437
9490
  exports.TendoComo = TendoComo;
9438
9491
 
9439
- },{"./declaracao":86}],105:[function(require,module,exports){
9492
+ },{"./declaracao":87}],106:[function(require,module,exports){
9440
9493
  "use strict";
9441
9494
  Object.defineProperty(exports, "__esModule", { value: true });
9442
9495
  exports.Tente = void 0;
@@ -9462,7 +9515,7 @@ class Tente extends declaracao_1.Declaracao {
9462
9515
  }
9463
9516
  exports.Tente = Tente;
9464
9517
 
9465
- },{"./declaracao":86}],106:[function(require,module,exports){
9518
+ },{"./declaracao":87}],107:[function(require,module,exports){
9466
9519
  "use strict";
9467
9520
  Object.defineProperty(exports, "__esModule", { value: true });
9468
9521
  exports.VarMultiplo = void 0;
@@ -9488,7 +9541,7 @@ class VarMultiplo extends declaracao_1.Declaracao {
9488
9541
  }
9489
9542
  exports.VarMultiplo = VarMultiplo;
9490
9543
 
9491
- },{"./declaracao":86}],107:[function(require,module,exports){
9544
+ },{"./declaracao":87}],108:[function(require,module,exports){
9492
9545
  "use strict";
9493
9546
  Object.defineProperty(exports, "__esModule", { value: true });
9494
9547
  exports.Var = void 0;
@@ -9520,7 +9573,7 @@ class Var extends declaracao_1.Declaracao {
9520
9573
  }
9521
9574
  exports.Var = Var;
9522
9575
 
9523
- },{"./declaracao":86}],108:[function(require,module,exports){
9576
+ },{"./declaracao":87}],109:[function(require,module,exports){
9524
9577
  "use strict";
9525
9578
  Object.defineProperty(exports, "__esModule", { value: true });
9526
9579
  exports.ErroEmTempoDeExecucao = void 0;
@@ -9535,7 +9588,7 @@ class ErroEmTempoDeExecucao extends Error {
9535
9588
  }
9536
9589
  exports.ErroEmTempoDeExecucao = ErroEmTempoDeExecucao;
9537
9590
 
9538
- },{}],109:[function(require,module,exports){
9591
+ },{}],110:[function(require,module,exports){
9539
9592
  "use strict";
9540
9593
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
9541
9594
  if (k2 === undefined) k2 = k;
@@ -9554,7 +9607,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
9554
9607
  Object.defineProperty(exports, "__esModule", { value: true });
9555
9608
  __exportStar(require("./erro-em-tempo-de-execucao"), exports);
9556
9609
 
9557
- },{"./erro-em-tempo-de-execucao":108}],110:[function(require,module,exports){
9610
+ },{"./erro-em-tempo-de-execucao":109}],111:[function(require,module,exports){
9558
9611
  "use strict";
9559
9612
  var __importDefault = (this && this.__importDefault) || function (mod) {
9560
9613
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -10286,7 +10339,7 @@ class FormatadorDelegua {
10286
10339
  }
10287
10340
  exports.FormatadorDelegua = FormatadorDelegua;
10288
10341
 
10289
- },{"../construtos":52,"../tipos-de-simbolos/delegua":185}],111:[function(require,module,exports){
10342
+ },{"../construtos":52,"../tipos-de-simbolos/delegua":187}],112:[function(require,module,exports){
10290
10343
  "use strict";
10291
10344
  Object.defineProperty(exports, "__esModule", { value: true });
10292
10345
  exports.FormatadorPitugues = void 0;
@@ -10522,7 +10575,7 @@ class FormatadorPitugues {
10522
10575
  }
10523
10576
  exports.FormatadorPitugues = FormatadorPitugues;
10524
10577
 
10525
- },{}],112:[function(require,module,exports){
10578
+ },{}],113:[function(require,module,exports){
10526
10579
  "use strict";
10527
10580
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10528
10581
  if (k2 === undefined) k2 = k;
@@ -10542,7 +10595,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
10542
10595
  __exportStar(require("./formatador-delegua"), exports);
10543
10596
  __exportStar(require("./formatador-pitugues"), exports);
10544
10597
 
10545
- },{"./formatador-delegua":110,"./formatador-pitugues":111}],113:[function(require,module,exports){
10598
+ },{"./formatador-delegua":111,"./formatador-pitugues":112}],114:[function(require,module,exports){
10546
10599
  "use strict";
10547
10600
  Object.defineProperty(exports, "__esModule", { value: true });
10548
10601
  exports.cyrb53 = cyrb53;
@@ -10586,7 +10639,7 @@ function uuidv4() {
10586
10639
  });
10587
10640
  }
10588
10641
 
10589
- },{}],114:[function(require,module,exports){
10642
+ },{}],115:[function(require,module,exports){
10590
10643
  "use strict";
10591
10644
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10592
10645
  if (k2 === undefined) k2 = k;
@@ -10613,7 +10666,7 @@ __exportStar(require("./interpretador"), exports);
10613
10666
  __exportStar(require("./lexador"), exports);
10614
10667
  __exportStar(require("./tradutores"), exports);
10615
10668
 
10616
- },{"./avaliador-sintatico":12,"./construtos":52,"./declaracoes":96,"./formatadores":112,"./geracao-identificadores":113,"./interfaces":122,"./interpretador":154,"./lexador":172,"./tradutores":192}],115:[function(require,module,exports){
10669
+ },{"./avaliador-sintatico":12,"./construtos":52,"./declaracoes":97,"./formatadores":113,"./geracao-identificadores":114,"./interfaces":123,"./interpretador":156,"./lexador":174,"./tradutores":194}],116:[function(require,module,exports){
10617
10670
  "use strict";
10618
10671
  var __importDefault = (this && this.__importDefault) || function (mod) {
10619
10672
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -10740,7 +10793,7 @@ function tipoInferenciaParaTipoDadosElementar(tipoInferencia) {
10740
10793
  }
10741
10794
  }
10742
10795
 
10743
- },{"./tipos-de-dados/delegua":180,"./tipos-de-dados/primitivos":182,"./tipos-de-simbolos/delegua":185}],116:[function(require,module,exports){
10796
+ },{"./tipos-de-dados/delegua":182,"./tipos-de-dados/primitivos":184,"./tipos-de-simbolos/delegua":187}],117:[function(require,module,exports){
10744
10797
  "use strict";
10745
10798
  Object.defineProperty(exports, "__esModule", { value: true });
10746
10799
  exports.InformacaoElementoSintatico = void 0;
@@ -10759,15 +10812,15 @@ class InformacaoElementoSintatico {
10759
10812
  }
10760
10813
  exports.InformacaoElementoSintatico = InformacaoElementoSintatico;
10761
10814
 
10762
- },{}],117:[function(require,module,exports){
10815
+ },{}],118:[function(require,module,exports){
10763
10816
  "use strict";
10764
10817
  Object.defineProperty(exports, "__esModule", { value: true });
10765
10818
 
10766
- },{}],118:[function(require,module,exports){
10819
+ },{}],119:[function(require,module,exports){
10767
10820
  "use strict";
10768
10821
  Object.defineProperty(exports, "__esModule", { value: true });
10769
10822
 
10770
- },{}],119:[function(require,module,exports){
10823
+ },{}],120:[function(require,module,exports){
10771
10824
  "use strict";
10772
10825
  Object.defineProperty(exports, "__esModule", { value: true });
10773
10826
  exports.DiagnosticoSeveridade = void 0;
@@ -10779,7 +10832,7 @@ var DiagnosticoSeveridade;
10779
10832
  DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
10780
10833
  })(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
10781
10834
 
10782
- },{}],120:[function(require,module,exports){
10835
+ },{}],121:[function(require,module,exports){
10783
10836
  "use strict";
10784
10837
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10785
10838
  if (k2 === undefined) k2 = k;
@@ -10798,11 +10851,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10798
10851
  Object.defineProperty(exports, "__esModule", { value: true });
10799
10852
  __exportStar(require("./diagnostico-analisador-semantico"), exports);
10800
10853
 
10801
- },{"./diagnostico-analisador-semantico":119}],121:[function(require,module,exports){
10854
+ },{"./diagnostico-analisador-semantico":120}],122:[function(require,module,exports){
10802
10855
  "use strict";
10803
10856
  Object.defineProperty(exports, "__esModule", { value: true });
10804
10857
 
10805
- },{}],122:[function(require,module,exports){
10858
+ },{}],123:[function(require,module,exports){
10806
10859
  "use strict";
10807
10860
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10808
10861
  if (k2 === undefined) k2 = k;
@@ -10839,11 +10892,7 @@ __exportStar(require("./construtos"), exports);
10839
10892
  __exportStar(require("./erros"), exports);
10840
10893
  __exportStar(require("./retornos"), exports);
10841
10894
 
10842
- },{"./avaliador-sintatico-interface":117,"./construtos":118,"./erros":120,"./formatador-comum-interface":121,"./interpretador-com-depuracao-interface":123,"./interpretador-interface":124,"./lexador-interface":125,"./parametro-interface":126,"./pilha-interface":127,"./primitiva-interface":128,"./resolvedor-interface":129,"./resultado-parcial-interpretador-interface":130,"./retornos":131,"./retornos/retorno-execucao-interface":133,"./simbolo-interface":136,"./tradutor-interface":137,"./variavel-interface":138,"./visitante-comum-interface":139,"./visitante-delegua-interface":140}],123:[function(require,module,exports){
10843
- "use strict";
10844
- Object.defineProperty(exports, "__esModule", { value: true });
10845
-
10846
- },{}],124:[function(require,module,exports){
10895
+ },{"./avaliador-sintatico-interface":118,"./construtos":119,"./erros":121,"./formatador-comum-interface":122,"./interpretador-com-depuracao-interface":124,"./interpretador-interface":125,"./lexador-interface":126,"./parametro-interface":127,"./pilha-interface":128,"./primitiva-interface":129,"./resolvedor-interface":130,"./resultado-parcial-interpretador-interface":131,"./retornos":132,"./retornos/retorno-execucao-interface":134,"./simbolo-interface":137,"./tradutor-interface":138,"./variavel-interface":139,"./visitante-comum-interface":140,"./visitante-delegua-interface":141}],124:[function(require,module,exports){
10847
10896
  "use strict";
10848
10897
  Object.defineProperty(exports, "__esModule", { value: true });
10849
10898
 
@@ -10873,6 +10922,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
10873
10922
 
10874
10923
  },{}],131:[function(require,module,exports){
10875
10924
  "use strict";
10925
+ Object.defineProperty(exports, "__esModule", { value: true });
10926
+
10927
+ },{}],132:[function(require,module,exports){
10928
+ "use strict";
10876
10929
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10877
10930
  if (k2 === undefined) k2 = k;
10878
10931
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -10893,11 +10946,7 @@ __exportStar(require("./retorno-execucao-interface"), exports);
10893
10946
  __exportStar(require("./retorno-interpretador-interface"), exports);
10894
10947
  __exportStar(require("./retorno-lexador"), exports);
10895
10948
 
10896
- },{"./retorno-avaliador-sintatico":132,"./retorno-execucao-interface":133,"./retorno-interpretador-interface":134,"./retorno-lexador":135}],132:[function(require,module,exports){
10897
- "use strict";
10898
- Object.defineProperty(exports, "__esModule", { value: true });
10899
-
10900
- },{}],133:[function(require,module,exports){
10949
+ },{"./retorno-avaliador-sintatico":133,"./retorno-execucao-interface":134,"./retorno-interpretador-interface":135,"./retorno-lexador":136}],133:[function(require,module,exports){
10901
10950
  "use strict";
10902
10951
  Object.defineProperty(exports, "__esModule", { value: true });
10903
10952
 
@@ -10931,6 +10980,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
10931
10980
 
10932
10981
  },{}],141:[function(require,module,exports){
10933
10982
  "use strict";
10983
+ Object.defineProperty(exports, "__esModule", { value: true });
10984
+
10985
+ },{}],142:[function(require,module,exports){
10986
+ "use strict";
10934
10987
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10935
10988
  if (k2 === undefined) k2 = k;
10936
10989
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -10994,7 +11047,7 @@ function carregarBibliotecasGlobais(pilhaEscoposExecucao) {
10994
11047
  pilhaEscoposExecucao.definirVariavel('tupla', new funcao_padrao_1.FuncaoPadrao(1, bibliotecaGlobal.tupla));
10995
11048
  }
10996
11049
 
10997
- },{"../bibliotecas/biblioteca-global":20,"./estruturas/funcao-padrao":147}],142:[function(require,module,exports){
11050
+ },{"../bibliotecas/biblioteca-global":20,"./estruturas/funcao-padrao":149}],143:[function(require,module,exports){
10998
11051
  "use strict";
10999
11052
  Object.defineProperty(exports, "__esModule", { value: true });
11000
11053
  exports.EspacoMemoria = void 0;
@@ -11019,7 +11072,7 @@ class EspacoMemoria {
11019
11072
  }
11020
11073
  exports.EspacoMemoria = EspacoMemoria;
11021
11074
 
11022
- },{}],143:[function(require,module,exports){
11075
+ },{}],144:[function(require,module,exports){
11023
11076
  "use strict";
11024
11077
  Object.defineProperty(exports, "__esModule", { value: true });
11025
11078
  exports.Chamavel = void 0;
@@ -11033,7 +11086,28 @@ class Chamavel {
11033
11086
  }
11034
11087
  exports.Chamavel = Chamavel;
11035
11088
 
11036
- },{}],144:[function(require,module,exports){
11089
+ },{}],145:[function(require,module,exports){
11090
+ "use strict";
11091
+ Object.defineProperty(exports, "__esModule", { value: true });
11092
+ exports.ClasseDeModulo = void 0;
11093
+ const chamavel_1 = require("./chamavel");
11094
+ /**
11095
+ * Uma classe de módulo não é muito diferente de uma `ClassePadrao`, com o adicional
11096
+ * de ter documentações extras para métodos e propriedades.
11097
+ */
11098
+ class ClasseDeModulo extends chamavel_1.Chamavel {
11099
+ constructor(nome, modulo, implementacao, metodos, propriedades) {
11100
+ super();
11101
+ this.nome = nome;
11102
+ this.modulo = modulo;
11103
+ this.implementacao = implementacao;
11104
+ this.metodos = metodos;
11105
+ this.propriedades = propriedades;
11106
+ }
11107
+ }
11108
+ exports.ClasseDeModulo = ClasseDeModulo;
11109
+
11110
+ },{"./chamavel":144}],146:[function(require,module,exports){
11037
11111
  "use strict";
11038
11112
  Object.defineProperty(exports, "__esModule", { value: true });
11039
11113
  exports.ClassePadrao = void 0;
@@ -11074,7 +11148,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
11074
11148
  }
11075
11149
  exports.ClassePadrao = ClassePadrao;
11076
11150
 
11077
- },{"./chamavel":143}],145:[function(require,module,exports){
11151
+ },{"./chamavel":144}],147:[function(require,module,exports){
11078
11152
  "use strict";
11079
11153
  Object.defineProperty(exports, "__esModule", { value: true });
11080
11154
  exports.DeleguaFuncao = void 0;
@@ -11219,7 +11293,7 @@ class DeleguaFuncao extends chamavel_1.Chamavel {
11219
11293
  }
11220
11294
  exports.DeleguaFuncao = DeleguaFuncao;
11221
11295
 
11222
- },{"../../declaracoes":96,"../../quebras":179,"../espaco-memoria":142,"./chamavel":143}],146:[function(require,module,exports){
11296
+ },{"../../declaracoes":97,"../../quebras":181,"../espaco-memoria":143,"./chamavel":144}],148:[function(require,module,exports){
11223
11297
  "use strict";
11224
11298
  Object.defineProperty(exports, "__esModule", { value: true });
11225
11299
  exports.DescritorTipoClasse = void 0;
@@ -11300,7 +11374,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
11300
11374
  }
11301
11375
  exports.DescritorTipoClasse = DescritorTipoClasse;
11302
11376
 
11303
- },{"../../excecoes":109,"./chamavel":143,"./objeto-delegua-classe":151}],147:[function(require,module,exports){
11377
+ },{"../../excecoes":110,"./chamavel":144,"./objeto-delegua-classe":153}],149:[function(require,module,exports){
11304
11378
  "use strict";
11305
11379
  Object.defineProperty(exports, "__esModule", { value: true });
11306
11380
  exports.FuncaoPadrao = void 0;
@@ -11337,7 +11411,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
11337
11411
  }
11338
11412
  exports.FuncaoPadrao = FuncaoPadrao;
11339
11413
 
11340
- },{"./chamavel":143}],148:[function(require,module,exports){
11414
+ },{"./chamavel":144}],150:[function(require,module,exports){
11341
11415
  "use strict";
11342
11416
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
11343
11417
  if (k2 === undefined) k2 = k;
@@ -11355,6 +11429,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
11355
11429
  };
11356
11430
  Object.defineProperty(exports, "__esModule", { value: true });
11357
11431
  __exportStar(require("./chamavel"), exports);
11432
+ __exportStar(require("./classe-de-modulo"), exports);
11358
11433
  __exportStar(require("./classe-padrao"), exports);
11359
11434
  __exportStar(require("./descritor-tipo-classe"), exports);
11360
11435
  __exportStar(require("./funcao-padrao"), exports);
@@ -11365,7 +11440,7 @@ __exportStar(require("./objeto-delegua-classe"), exports);
11365
11440
  __exportStar(require("./objeto-padrao"), exports);
11366
11441
  __exportStar(require("./referencia-montao"), exports);
11367
11442
 
11368
- },{"./chamavel":143,"./classe-padrao":144,"./delegua-funcao":145,"./descritor-tipo-classe":146,"./funcao-padrao":147,"./metodo-primitiva":149,"./modulo":150,"./objeto-delegua-classe":151,"./objeto-padrao":152,"./referencia-montao":153}],149:[function(require,module,exports){
11443
+ },{"./chamavel":144,"./classe-de-modulo":145,"./classe-padrao":146,"./delegua-funcao":147,"./descritor-tipo-classe":148,"./funcao-padrao":149,"./metodo-primitiva":151,"./modulo":152,"./objeto-delegua-classe":153,"./objeto-padrao":154,"./referencia-montao":155}],151:[function(require,module,exports){
11369
11444
  "use strict";
11370
11445
  Object.defineProperty(exports, "__esModule", { value: true });
11371
11446
  exports.MetodoPrimitiva = void 0;
@@ -11408,7 +11483,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
11408
11483
  }
11409
11484
  exports.MetodoPrimitiva = MetodoPrimitiva;
11410
11485
 
11411
- },{"./chamavel":143}],150:[function(require,module,exports){
11486
+ },{"./chamavel":144}],152:[function(require,module,exports){
11412
11487
  "use strict";
11413
11488
  Object.defineProperty(exports, "__esModule", { value: true });
11414
11489
  exports.DeleguaModulo = void 0;
@@ -11434,7 +11509,7 @@ class DeleguaModulo {
11434
11509
  }
11435
11510
  exports.DeleguaModulo = DeleguaModulo;
11436
11511
 
11437
- },{}],151:[function(require,module,exports){
11512
+ },{}],153:[function(require,module,exports){
11438
11513
  "use strict";
11439
11514
  Object.defineProperty(exports, "__esModule", { value: true });
11440
11515
  exports.ObjetoDeleguaClasse = void 0;
@@ -11502,7 +11577,7 @@ class ObjetoDeleguaClasse {
11502
11577
  }
11503
11578
  exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
11504
11579
 
11505
- },{"../../excecoes":109}],152:[function(require,module,exports){
11580
+ },{"../../excecoes":110}],154:[function(require,module,exports){
11506
11581
  "use strict";
11507
11582
  Object.defineProperty(exports, "__esModule", { value: true });
11508
11583
  exports.ObjetoPadrao = void 0;
@@ -11536,7 +11611,7 @@ class ObjetoPadrao {
11536
11611
  }
11537
11612
  exports.ObjetoPadrao = ObjetoPadrao;
11538
11613
 
11539
- },{}],153:[function(require,module,exports){
11614
+ },{}],155:[function(require,module,exports){
11540
11615
  "use strict";
11541
11616
  Object.defineProperty(exports, "__esModule", { value: true });
11542
11617
  exports.ReferenciaMontao = void 0;
@@ -11561,7 +11636,7 @@ class ReferenciaMontao {
11561
11636
  }
11562
11637
  exports.ReferenciaMontao = ReferenciaMontao;
11563
11638
 
11564
- },{}],154:[function(require,module,exports){
11639
+ },{}],156:[function(require,module,exports){
11565
11640
  "use strict";
11566
11641
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
11567
11642
  if (k2 === undefined) k2 = k;
@@ -11581,7 +11656,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
11581
11656
  __exportStar(require("./interpretador"), exports);
11582
11657
  __exportStar(require("./interpretador-base"), exports);
11583
11658
 
11584
- },{"./interpretador":156,"./interpretador-base":155}],155:[function(require,module,exports){
11659
+ },{"./interpretador":158,"./interpretador-base":157}],157:[function(require,module,exports){
11585
11660
  (function (process){(function (){
11586
11661
  "use strict";
11587
11662
  var __importDefault = (this && this.__importDefault) || function (mod) {
@@ -13114,7 +13189,7 @@ class InterpretadorBase {
13114
13189
  exports.InterpretadorBase = InterpretadorBase;
13115
13190
 
13116
13191
  }).call(this)}).call(this,require('_process'))
13117
- },{"../avaliador-sintatico":12,"../bibliotecas/primitivas-dicionario":21,"../construtos":52,"../excecoes":109,"../inferenciador":115,"../lexador":172,"../quebras":179,"../tipos-de-dados/delegua":180,"../tipos-de-dados/primitivos":182,"../tipos-de-simbolos/delegua":185,"./comum":141,"./espaco-memoria":142,"./estruturas":148,"./estruturas/metodo-primitiva":149,"./pilha-escopos-execucao":158,"_process":419,"browser-process-hrtime":365}],156:[function(require,module,exports){
13192
+ },{"../avaliador-sintatico":12,"../bibliotecas/primitivas-dicionario":21,"../construtos":52,"../excecoes":110,"../inferenciador":116,"../lexador":174,"../quebras":181,"../tipos-de-dados/delegua":182,"../tipos-de-dados/primitivos":184,"../tipos-de-simbolos/delegua":187,"./comum":142,"./espaco-memoria":143,"./estruturas":150,"./estruturas/metodo-primitiva":151,"./pilha-escopos-execucao":160,"_process":421,"browser-process-hrtime":367}],158:[function(require,module,exports){
13118
13193
  "use strict";
13119
13194
  var __importDefault = (this && this.__importDefault) || function (mod) {
13120
13195
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -13136,7 +13211,7 @@ const primitivas_vetor_1 = __importDefault(require("../bibliotecas/primitivas-ve
13136
13211
  const primitivos_1 = __importDefault(require("../tipos-de-dados/primitivos"));
13137
13212
  const delegua_1 = __importDefault(require("../tipos-de-dados/delegua"));
13138
13213
  /**
13139
- * O interpretador de Delégua.
13214
+ * O interpretador de Delégua. Usado também por Pituguês.
13140
13215
  */
13141
13216
  class Interpretador extends interpretador_base_1.InterpretadorBase {
13142
13217
  constructor(diretorioBase, performance = false, funcaoDeRetorno = null, funcaoDeRetornoMesmaLinha = null) {
@@ -13925,6 +14000,9 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
13925
14000
  const resultadoCompreensaoResolvido = resultadoCompreensao.valorRetornado.filter(r => r !== null).map(r => this.resolverValor(r));
13926
14001
  return resultadoCompreensaoResolvido;
13927
14002
  }
14003
+ visitarExpressaoPara(expressao) {
14004
+ return this.logicaComumExecucaoPara(expressao, true);
14005
+ }
13928
14006
  visitarExpressaoParaCada(expressao) {
13929
14007
  return this.logicaComumExecucaoParaCada(expressao, true);
13930
14008
  }
@@ -13949,9 +14027,6 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
13949
14027
  }
13950
14028
  return retornoQuebra;
13951
14029
  }
13952
- visitarExpressaoPara(expressao) {
13953
- return this.logicaComumExecucaoPara(expressao, true);
13954
- }
13955
14030
  /**
13956
14031
  * Para Delégua e Pituguês, o separador é apenas um elemento de sintaxe.
13957
14032
  * Não há qualquer avaliação a ser feita.
@@ -13960,6 +14035,14 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
13960
14035
  async visitarExpressaoSeparador(expressao) {
13961
14036
  return Promise.resolve(null);
13962
14037
  }
14038
+ async visitarExpressaoSeTernario(expressao) {
14039
+ const avaliacaoCondicao = await this.avaliar(expressao.condicao);
14040
+ const valorAvaliacaoCondicao = this.resolverValor(avaliacaoCondicao);
14041
+ if (valorAvaliacaoCondicao) {
14042
+ return this.avaliar(expressao.expressaoSe);
14043
+ }
14044
+ return this.avaliar(expressao.expressaoSenao);
14045
+ }
13963
14046
  async visitarExpressaoTipoDe(expressao) {
13964
14047
  let valorTipoDe = expressao.valor;
13965
14048
  switch (valorTipoDe.constructor) {
@@ -14079,7 +14162,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
14079
14162
  }
14080
14163
  exports.Interpretador = Interpretador;
14081
14164
 
14082
- },{"../bibliotecas/primitivas-dicionario":21,"../bibliotecas/primitivas-numero":22,"../bibliotecas/primitivas-texto":23,"../bibliotecas/primitivas-vetor":24,"../construtos":52,"../declaracoes":96,"../excecoes":109,"../inferenciador":115,"../quebras":179,"../tipos-de-dados/delegua":180,"../tipos-de-dados/primitivos":182,"./estruturas":148,"./interpretador-base":155,"./montao":157}],157:[function(require,module,exports){
14165
+ },{"../bibliotecas/primitivas-dicionario":21,"../bibliotecas/primitivas-numero":22,"../bibliotecas/primitivas-texto":23,"../bibliotecas/primitivas-vetor":24,"../construtos":52,"../declaracoes":97,"../excecoes":110,"../inferenciador":116,"../quebras":181,"../tipos-de-dados/delegua":182,"../tipos-de-dados/primitivos":184,"./estruturas":150,"./interpretador-base":157,"./montao":159}],159:[function(require,module,exports){
14083
14166
  "use strict";
14084
14167
  Object.defineProperty(exports, "__esModule", { value: true });
14085
14168
  exports.Montao = void 0;
@@ -14136,7 +14219,7 @@ class Montao {
14136
14219
  }
14137
14220
  exports.Montao = Montao;
14138
14221
 
14139
- },{"../excecoes":109,"../geracao-identificadores":113}],158:[function(require,module,exports){
14222
+ },{"../excecoes":110,"../geracao-identificadores":114}],160:[function(require,module,exports){
14140
14223
  "use strict";
14141
14224
  var __importDefault = (this && this.__importDefault) || function (mod) {
14142
14225
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14424,7 +14507,7 @@ class PilhaEscoposExecucao {
14424
14507
  }
14425
14508
  exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
14426
14509
 
14427
- },{"../excecoes":109,"../inferenciador":115,"../lexador":172,"../tipos-de-dados/delegua":180,"./estruturas":148}],159:[function(require,module,exports){
14510
+ },{"../excecoes":110,"../inferenciador":116,"../lexador":174,"../tipos-de-dados/delegua":182,"./estruturas":150}],161:[function(require,module,exports){
14428
14511
  "use strict";
14429
14512
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
14430
14513
  if (k2 === undefined) k2 = k;
@@ -14448,7 +14531,7 @@ __exportStar(require("./lexador-guarani"), exports);
14448
14531
  __exportStar(require("./lexador-portugol-ipt"), exports);
14449
14532
  __exportStar(require("./lexador-tenda"), exports);
14450
14533
 
14451
- },{"./lexador-calango":160,"./lexador-egua-classico":161,"./lexador-guarani":162,"./lexador-pitugues":163,"./lexador-portugol-ipt":164,"./lexador-tenda":165}],160:[function(require,module,exports){
14534
+ },{"./lexador-calango":162,"./lexador-egua-classico":163,"./lexador-guarani":164,"./lexador-pitugues":165,"./lexador-portugol-ipt":166,"./lexador-tenda":167}],162:[function(require,module,exports){
14452
14535
  "use strict";
14453
14536
  var __importDefault = (this && this.__importDefault) || function (mod) {
14454
14537
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14681,7 +14764,7 @@ class LexadorCalango {
14681
14764
  }
14682
14765
  exports.LexadorCalango = LexadorCalango;
14683
14766
 
14684
- },{"../../tipos-de-simbolos/calango":183,"../simbolo":178,"./palavras-reservadas/calango":166}],161:[function(require,module,exports){
14767
+ },{"../../tipos-de-simbolos/calango":185,"../simbolo":180,"./palavras-reservadas/calango":168}],163:[function(require,module,exports){
14685
14768
  "use strict";
14686
14769
  var __importDefault = (this && this.__importDefault) || function (mod) {
14687
14770
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14971,7 +15054,7 @@ class LexadorEguaClassico {
14971
15054
  }
14972
15055
  exports.LexadorEguaClassico = LexadorEguaClassico;
14973
15056
 
14974
- },{"../../tipos-de-simbolos/egua-classico":186,"../simbolo":178,"./palavras-reservadas/egua-classico":167}],162:[function(require,module,exports){
15057
+ },{"../../tipos-de-simbolos/egua-classico":188,"../simbolo":180,"./palavras-reservadas/egua-classico":169}],164:[function(require,module,exports){
14975
15058
  "use strict";
14976
15059
  var __importDefault = (this && this.__importDefault) || function (mod) {
14977
15060
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15090,7 +15173,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
15090
15173
  }
15091
15174
  exports.LexadorGuarani = LexadorGuarani;
15092
15175
 
15093
- },{"../../tipos-de-simbolos/guarani":187,"../lexador-base":174,"./palavras-reservadas/guarani":168}],163:[function(require,module,exports){
15176
+ },{"../../tipos-de-simbolos/guarani":189,"../lexador-base":176,"./palavras-reservadas/guarani":170}],165:[function(require,module,exports){
15094
15177
  "use strict";
15095
15178
  var __importDefault = (this && this.__importDefault) || function (mod) {
15096
15179
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15508,7 +15591,7 @@ class LexadorPitugues {
15508
15591
  }
15509
15592
  exports.LexadorPitugues = LexadorPitugues;
15510
15593
 
15511
- },{"../../tipos-de-simbolos/pitugues":189,"../simbolo":178,"./palavras-reservadas/pitugues":169,"browser-process-hrtime":365}],164:[function(require,module,exports){
15594
+ },{"../../tipos-de-simbolos/pitugues":191,"../simbolo":180,"./palavras-reservadas/pitugues":171,"browser-process-hrtime":367}],166:[function(require,module,exports){
15512
15595
  "use strict";
15513
15596
  var __importDefault = (this && this.__importDefault) || function (mod) {
15514
15597
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15760,7 +15843,7 @@ class LexadorPortugolIpt {
15760
15843
  }
15761
15844
  exports.LexadorPortugolIpt = LexadorPortugolIpt;
15762
15845
 
15763
- },{"../../tipos-de-simbolos/portugol-ipt":190,"../simbolo":178,"./palavras-reservadas/portugol-ipt":170}],165:[function(require,module,exports){
15846
+ },{"../../tipos-de-simbolos/portugol-ipt":192,"../simbolo":180,"./palavras-reservadas/portugol-ipt":172}],167:[function(require,module,exports){
15764
15847
  "use strict";
15765
15848
  var __importDefault = (this && this.__importDefault) || function (mod) {
15766
15849
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16151,7 +16234,7 @@ class LexadorTenda {
16151
16234
  }
16152
16235
  exports.LexadorTenda = LexadorTenda;
16153
16236
 
16154
- },{"../../tipos-de-simbolos/tenda":191,"../simbolo":178,"./palavras-reservadas/tenda":171,"browser-process-hrtime":365}],166:[function(require,module,exports){
16237
+ },{"../../tipos-de-simbolos/tenda":193,"../simbolo":180,"./palavras-reservadas/tenda":173,"browser-process-hrtime":367}],168:[function(require,module,exports){
16155
16238
  "use strict";
16156
16239
  var __importDefault = (this && this.__importDefault) || function (mod) {
16157
16240
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16172,7 +16255,7 @@ exports.default = {
16172
16255
  fimSe: calango_1.default.FIM_SE,
16173
16256
  };
16174
16257
 
16175
- },{"../../../tipos-de-simbolos/calango":183}],167:[function(require,module,exports){
16258
+ },{"../../../tipos-de-simbolos/calango":185}],169:[function(require,module,exports){
16176
16259
  "use strict";
16177
16260
  var __importDefault = (this && this.__importDefault) || function (mod) {
16178
16261
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16213,7 +16296,7 @@ exports.palavrasReservadas = {
16213
16296
  verdadeiro: egua_classico_1.default.VERDADEIRO,
16214
16297
  };
16215
16298
 
16216
- },{"../../../tipos-de-simbolos/egua-classico":186}],168:[function(require,module,exports){
16299
+ },{"../../../tipos-de-simbolos/egua-classico":188}],170:[function(require,module,exports){
16217
16300
  "use strict";
16218
16301
  var __importDefault = (this && this.__importDefault) || function (mod) {
16219
16302
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16225,7 +16308,7 @@ exports.palavrasReservadas = {
16225
16308
  hai: guarani_1.default.HAI,
16226
16309
  };
16227
16310
 
16228
- },{"../../../tipos-de-simbolos/guarani":187}],169:[function(require,module,exports){
16311
+ },{"../../../tipos-de-simbolos/guarani":189}],171:[function(require,module,exports){
16229
16312
  "use strict";
16230
16313
  var __importDefault = (this && this.__importDefault) || function (mod) {
16231
16314
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16285,7 +16368,7 @@ exports.palavrasReservadasMicroGramatica = {
16285
16368
  verdadeiro: pitugues_1.default.VERDADEIRO,
16286
16369
  };
16287
16370
 
16288
- },{"../../../tipos-de-simbolos/pitugues":189}],170:[function(require,module,exports){
16371
+ },{"../../../tipos-de-simbolos/pitugues":191}],172:[function(require,module,exports){
16289
16372
  "use strict";
16290
16373
  var __importDefault = (this && this.__importDefault) || function (mod) {
16291
16374
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16307,7 +16390,7 @@ exports.palavrasReservadas = {
16307
16390
  senão: portugol_ipt_1.default.SENAO,
16308
16391
  };
16309
16392
 
16310
- },{"../../../tipos-de-simbolos/portugol-ipt":190}],171:[function(require,module,exports){
16393
+ },{"../../../tipos-de-simbolos/portugol-ipt":192}],173:[function(require,module,exports){
16311
16394
  "use strict";
16312
16395
  var __importDefault = (this && this.__importDefault) || function (mod) {
16313
16396
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16365,7 +16448,7 @@ exports.palavrasReservadas = {
16365
16448
  Texto: tenda_1.default.BIBLIOTECA_GLOBAL,
16366
16449
  };
16367
16450
 
16368
- },{"../../../tipos-de-simbolos/tenda":191}],172:[function(require,module,exports){
16451
+ },{"../../../tipos-de-simbolos/tenda":193}],174:[function(require,module,exports){
16369
16452
  "use strict";
16370
16453
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
16371
16454
  if (k2 === undefined) k2 = k;
@@ -16388,7 +16471,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
16388
16471
  __exportStar(require("./micro-lexador"), exports);
16389
16472
  __exportStar(require("./simbolo"), exports);
16390
16473
 
16391
- },{"./dialetos":159,"./lexador":175,"./lexador-base-linha-unica":173,"./micro-lexador":176,"./simbolo":178}],173:[function(require,module,exports){
16474
+ },{"./dialetos":161,"./lexador":177,"./lexador-base-linha-unica":175,"./micro-lexador":178,"./simbolo":180}],175:[function(require,module,exports){
16392
16475
  "use strict";
16393
16476
  Object.defineProperty(exports, "__esModule", { value: true });
16394
16477
  exports.LexadorBaseLinhaUnica = void 0;
@@ -16472,7 +16555,7 @@ class LexadorBaseLinhaUnica {
16472
16555
  }
16473
16556
  exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
16474
16557
 
16475
- },{"./simbolo":178}],174:[function(require,module,exports){
16558
+ },{"./simbolo":180}],176:[function(require,module,exports){
16476
16559
  "use strict";
16477
16560
  Object.defineProperty(exports, "__esModule", { value: true });
16478
16561
  exports.LexadorBase = void 0;
@@ -16586,7 +16669,7 @@ class LexadorBase {
16586
16669
  }
16587
16670
  exports.LexadorBase = LexadorBase;
16588
16671
 
16589
- },{"./simbolo":178}],175:[function(require,module,exports){
16672
+ },{"./simbolo":180}],177:[function(require,module,exports){
16590
16673
  "use strict";
16591
16674
  var __importDefault = (this && this.__importDefault) || function (mod) {
16592
16675
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -17057,7 +17140,7 @@ class Lexador {
17057
17140
  }
17058
17141
  exports.Lexador = Lexador;
17059
17142
 
17060
- },{"../tipos-de-simbolos/delegua":185,"./palavras-reservadas":177,"./simbolo":178,"browser-process-hrtime":365}],176:[function(require,module,exports){
17143
+ },{"../tipos-de-simbolos/delegua":187,"./palavras-reservadas":179,"./simbolo":180,"browser-process-hrtime":367}],178:[function(require,module,exports){
17061
17144
  "use strict";
17062
17145
  var __importDefault = (this && this.__importDefault) || function (mod) {
17063
17146
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -17290,7 +17373,7 @@ class MicroLexador {
17290
17373
  }
17291
17374
  exports.MicroLexador = MicroLexador;
17292
17375
 
17293
- },{"../tipos-de-simbolos/microgramaticas/delegua":188,"./palavras-reservadas":177,"./simbolo":178}],177:[function(require,module,exports){
17376
+ },{"../tipos-de-simbolos/microgramaticas/delegua":190,"./palavras-reservadas":179,"./simbolo":180}],179:[function(require,module,exports){
17294
17377
  "use strict";
17295
17378
  var __importDefault = (this && this.__importDefault) || function (mod) {
17296
17379
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -17356,7 +17439,7 @@ exports.palavrasReservadasMicroGramatica = {
17356
17439
  verdadeiro: delegua_1.default.VERDADEIRO,
17357
17440
  };
17358
17441
 
17359
- },{"../tipos-de-simbolos/delegua":185}],178:[function(require,module,exports){
17442
+ },{"../tipos-de-simbolos/delegua":187}],180:[function(require,module,exports){
17360
17443
  "use strict";
17361
17444
  Object.defineProperty(exports, "__esModule", { value: true });
17362
17445
  exports.Simbolo = void 0;
@@ -17374,7 +17457,7 @@ class Simbolo {
17374
17457
  }
17375
17458
  exports.Simbolo = Simbolo;
17376
17459
 
17377
- },{}],179:[function(require,module,exports){
17460
+ },{}],181:[function(require,module,exports){
17378
17461
  "use strict";
17379
17462
  Object.defineProperty(exports, "__esModule", { value: true });
17380
17463
  exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
@@ -17399,7 +17482,7 @@ class ContinuarQuebra extends Quebra {
17399
17482
  }
17400
17483
  exports.ContinuarQuebra = ContinuarQuebra;
17401
17484
 
17402
- },{}],180:[function(require,module,exports){
17485
+ },{}],182:[function(require,module,exports){
17403
17486
  "use strict";
17404
17487
  Object.defineProperty(exports, "__esModule", { value: true });
17405
17488
  exports.default = {
@@ -17429,7 +17512,7 @@ exports.default = {
17429
17512
  VETOR_TEXTO: 'texto[]',
17430
17513
  };
17431
17514
 
17432
- },{}],181:[function(require,module,exports){
17515
+ },{}],183:[function(require,module,exports){
17433
17516
  "use strict";
17434
17517
  Object.defineProperty(exports, "__esModule", { value: true });
17435
17518
  exports.default = {
@@ -17459,7 +17542,7 @@ exports.default = {
17459
17542
  VETOR_TEXTO: 'texto[]',
17460
17543
  };
17461
17544
 
17462
- },{}],182:[function(require,module,exports){
17545
+ },{}],184:[function(require,module,exports){
17463
17546
  "use strict";
17464
17547
  Object.defineProperty(exports, "__esModule", { value: true });
17465
17548
  exports.default = {
@@ -17478,7 +17561,7 @@ exports.default = {
17478
17561
  TEXTO: 'string',
17479
17562
  };
17480
17563
 
17481
- },{}],183:[function(require,module,exports){
17564
+ },{}],185:[function(require,module,exports){
17482
17565
  "use strict";
17483
17566
  Object.defineProperty(exports, "__esModule", { value: true });
17484
17567
  exports.default = {
@@ -17522,7 +17605,7 @@ exports.default = {
17522
17605
  VIRGULA: 'VIRGULA',
17523
17606
  };
17524
17607
 
17525
- },{}],184:[function(require,module,exports){
17608
+ },{}],186:[function(require,module,exports){
17526
17609
  "use strict";
17527
17610
  Object.defineProperty(exports, "__esModule", { value: true });
17528
17611
  exports.default = {
@@ -17548,7 +17631,7 @@ exports.default = {
17548
17631
  VIRGULA: 'VIRGULA',
17549
17632
  };
17550
17633
 
17551
- },{}],185:[function(require,module,exports){
17634
+ },{}],187:[function(require,module,exports){
17552
17635
  "use strict";
17553
17636
  Object.defineProperty(exports, "__esModule", { value: true });
17554
17637
  exports.default = {
@@ -17647,7 +17730,7 @@ exports.default = {
17647
17730
  VIRGULA: 'VIRGULA',
17648
17731
  };
17649
17732
 
17650
- },{}],186:[function(require,module,exports){
17733
+ },{}],188:[function(require,module,exports){
17651
17734
  "use strict";
17652
17735
  Object.defineProperty(exports, "__esModule", { value: true });
17653
17736
  exports.default = {
@@ -17725,7 +17808,7 @@ exports.default = {
17725
17808
  VIRGULA: 'VIRGULA',
17726
17809
  };
17727
17810
 
17728
- },{}],187:[function(require,module,exports){
17811
+ },{}],189:[function(require,module,exports){
17729
17812
  "use strict";
17730
17813
  Object.defineProperty(exports, "__esModule", { value: true });
17731
17814
  exports.default = {
@@ -17742,7 +17825,7 @@ exports.default = {
17742
17825
  VIRGULA: 'VIRGULA',
17743
17826
  };
17744
17827
 
17745
- },{}],188:[function(require,module,exports){
17828
+ },{}],190:[function(require,module,exports){
17746
17829
  "use strict";
17747
17830
  Object.defineProperty(exports, "__esModule", { value: true });
17748
17831
  exports.default = {
@@ -17793,7 +17876,7 @@ exports.default = {
17793
17876
  VIRGULA: 'VIRGULA',
17794
17877
  };
17795
17878
 
17796
- },{}],189:[function(require,module,exports){
17879
+ },{}],191:[function(require,module,exports){
17797
17880
  "use strict";
17798
17881
  Object.defineProperty(exports, "__esModule", { value: true });
17799
17882
  exports.default = {
@@ -17877,7 +17960,7 @@ exports.default = {
17877
17960
  VIRGULA: 'VIRGULA',
17878
17961
  };
17879
17962
 
17880
- },{}],190:[function(require,module,exports){
17963
+ },{}],192:[function(require,module,exports){
17881
17964
  "use strict";
17882
17965
  Object.defineProperty(exports, "__esModule", { value: true });
17883
17966
  exports.default = {
@@ -17916,7 +17999,7 @@ exports.default = {
17916
17999
  VIRGULA: 'VIRGULA',
17917
18000
  };
17918
18001
 
17919
- },{}],191:[function(require,module,exports){
18002
+ },{}],193:[function(require,module,exports){
17920
18003
  "use strict";
17921
18004
  Object.defineProperty(exports, "__esModule", { value: true });
17922
18005
  // Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
@@ -18011,7 +18094,7 @@ exports.default = {
18011
18094
  VIRGULA: 'VIRGULA',
18012
18095
  };
18013
18096
 
18014
- },{}],192:[function(require,module,exports){
18097
+ },{}],194:[function(require,module,exports){
18015
18098
  "use strict";
18016
18099
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
18017
18100
  if (k2 === undefined) k2 = k;
@@ -18038,7 +18121,7 @@ __exportStar(require("./tradutor-reverso-javascript"), exports);
18038
18121
  __exportStar(require("./tradutor-reverso-python"), exports);
18039
18122
  __exportStar(require("./tradutor-reverso-tenda"), exports);
18040
18123
 
18041
- },{"./tradutor-assemblyscript":195,"./tradutor-calango":196,"./tradutor-javascript":197,"./tradutor-mermaidjs":198,"./tradutor-portugol-ipt":199,"./tradutor-python":200,"./tradutor-reverso-javascript":201,"./tradutor-reverso-python":202,"./tradutor-reverso-tenda":203}],193:[function(require,module,exports){
18124
+ },{"./tradutor-assemblyscript":197,"./tradutor-calango":198,"./tradutor-javascript":199,"./tradutor-mermaidjs":200,"./tradutor-portugol-ipt":201,"./tradutor-python":202,"./tradutor-reverso-javascript":203,"./tradutor-reverso-python":204,"./tradutor-reverso-tenda":205}],195:[function(require,module,exports){
18042
18125
  "use strict";
18043
18126
  // Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
18044
18127
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -19278,7 +19361,7 @@ __decorate([
19278
19361
  Decorators_1.Override
19279
19362
  ], Python3Lexer.prototype, "nextToken", null);
19280
19363
 
19281
- },{"./python3-parser":194,"antlr4ts/CommonToken":213,"antlr4ts/Decorators":217,"antlr4ts/Lexer":225,"antlr4ts/Token":242,"antlr4ts/VocabularyImpl":248,"antlr4ts/atn/ATNDeserializer":254,"antlr4ts/atn/LexerATNSimulator":275,"antlr4ts/misc/Utils":336}],194:[function(require,module,exports){
19364
+ },{"./python3-parser":196,"antlr4ts/CommonToken":215,"antlr4ts/Decorators":219,"antlr4ts/Lexer":227,"antlr4ts/Token":244,"antlr4ts/VocabularyImpl":250,"antlr4ts/atn/ATNDeserializer":256,"antlr4ts/atn/LexerATNSimulator":277,"antlr4ts/misc/Utils":338}],196:[function(require,module,exports){
19282
19365
  "use strict";
19283
19366
  // Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
19284
19367
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -30525,7 +30608,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
30525
30608
  }
30526
30609
  exports.Yield_argContext = Yield_argContext;
30527
30610
 
30528
- },{"antlr4ts/FailedPredicateException":221,"antlr4ts/NoViableAltException":229,"antlr4ts/Parser":230,"antlr4ts/ParserRuleContext":233,"antlr4ts/RecognitionException":236,"antlr4ts/Token":242,"antlr4ts/VocabularyImpl":248,"antlr4ts/atn/ATN":250,"antlr4ts/atn/ATNDeserializer":254,"antlr4ts/atn/ParserATNSimulator":291,"antlr4ts/misc/Utils":336}],195:[function(require,module,exports){
30611
+ },{"antlr4ts/FailedPredicateException":223,"antlr4ts/NoViableAltException":231,"antlr4ts/Parser":232,"antlr4ts/ParserRuleContext":235,"antlr4ts/RecognitionException":238,"antlr4ts/Token":244,"antlr4ts/VocabularyImpl":250,"antlr4ts/atn/ATN":252,"antlr4ts/atn/ATNDeserializer":256,"antlr4ts/atn/ParserATNSimulator":293,"antlr4ts/misc/Utils":338}],197:[function(require,module,exports){
30529
30612
  "use strict";
30530
30613
  var __importDefault = (this && this.__importDefault) || function (mod) {
30531
30614
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -31160,7 +31243,7 @@ class TradutorAssemblyScript {
31160
31243
  }
31161
31244
  exports.TradutorAssemblyScript = TradutorAssemblyScript;
31162
31245
 
31163
- },{"../construtos":52,"../declaracoes":96,"../tipos-de-simbolos/delegua":185}],196:[function(require,module,exports){
31246
+ },{"../construtos":52,"../declaracoes":97,"../tipos-de-simbolos/delegua":187}],198:[function(require,module,exports){
31164
31247
  "use strict";
31165
31248
  Object.defineProperty(exports, "__esModule", { value: true });
31166
31249
  exports.TradutorCalango = void 0;
@@ -31222,7 +31305,7 @@ class TradutorCalango {
31222
31305
  }
31223
31306
  exports.TradutorCalango = TradutorCalango;
31224
31307
 
31225
- },{"../avaliador-sintatico/dialetos/avaliador-sintatico-calango":4,"../lexador/dialetos":159}],197:[function(require,module,exports){
31308
+ },{"../avaliador-sintatico/dialetos/avaliador-sintatico-calango":4,"../lexador/dialetos":161}],199:[function(require,module,exports){
31226
31309
  "use strict";
31227
31310
  var __importDefault = (this && this.__importDefault) || function (mod) {
31228
31311
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -31262,6 +31345,7 @@ class TradutorJavaScript {
31262
31345
  Logico: this.traduzirExpressaoLogica.bind(this),
31263
31346
  ReferenciaFuncao: this.traduzirExpressaoReferenciaFuncao.bind(this),
31264
31347
  Separador: this.traduzirConstrutoSeparador.bind(this),
31348
+ SeTernario: this.traduzirConstrutoSeTernario.bind(this),
31265
31349
  TipoDe: this.traduzirConstrutoTipoDe.bind(this),
31266
31350
  Unario: this.traduzirConstrutoUnario.bind(this),
31267
31351
  Variavel: this.traduzirConstrutoVariavel.bind(this),
@@ -31907,6 +31991,15 @@ class TradutorJavaScript {
31907
31991
  traduzirConstrutoSeparador(separador) {
31908
31992
  return `${separador.conteudo} `;
31909
31993
  }
31994
+ traduzirConstrutoSeTernario(seTernario) {
31995
+ let resultado = '';
31996
+ resultado += this.dicionarioConstrutos[seTernario.condicao.constructor.name](seTernario.condicao);
31997
+ resultado += ' ? ';
31998
+ resultado += this.dicionarioConstrutos[seTernario.expressaoSe.constructor.name](seTernario.expressaoSe);
31999
+ resultado += ' : ';
32000
+ resultado += this.dicionarioConstrutos[seTernario.expressaoSenao.constructor.name](seTernario.expressaoSenao);
32001
+ return resultado;
32002
+ }
31910
32003
  traduzirConstrutoTipoDe(tipoDe) {
31911
32004
  let resultado = 'typeof ';
31912
32005
  if (!tipoDe.valor)
@@ -31965,7 +32058,7 @@ class TradutorJavaScript {
31965
32058
  }
31966
32059
  exports.TradutorJavaScript = TradutorJavaScript;
31967
32060
 
31968
- },{"../construtos":52,"../declaracoes":96,"../tipos-de-simbolos/delegua":185}],198:[function(require,module,exports){
32061
+ },{"../construtos":52,"../declaracoes":97,"../tipos-de-simbolos/delegua":187}],200:[function(require,module,exports){
31969
32062
  "use strict";
31970
32063
  var __importDefault = (this && this.__importDefault) || function (mod) {
31971
32064
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -32419,7 +32512,7 @@ class TradutorMermaidJs {
32419
32512
  }
32420
32513
  exports.TradutorMermaidJs = TradutorMermaidJs;
32421
32514
 
32422
- },{"../tipos-de-simbolos/delegua":185}],199:[function(require,module,exports){
32515
+ },{"../tipos-de-simbolos/delegua":187}],201:[function(require,module,exports){
32423
32516
  "use strict";
32424
32517
  Object.defineProperty(exports, "__esModule", { value: true });
32425
32518
  exports.TradutorPortugolIpt = void 0;
@@ -32481,7 +32574,7 @@ class TradutorPortugolIpt {
32481
32574
  }
32482
32575
  exports.TradutorPortugolIpt = TradutorPortugolIpt;
32483
32576
 
32484
- },{"../avaliador-sintatico/dialetos":9,"../lexador/dialetos":159}],200:[function(require,module,exports){
32577
+ },{"../avaliador-sintatico/dialetos":9,"../lexador/dialetos":161}],202:[function(require,module,exports){
32485
32578
  "use strict";
32486
32579
  var __importDefault = (this && this.__importDefault) || function (mod) {
32487
32580
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -32513,6 +32606,7 @@ class TradutorPython {
32513
32606
  Logico: this.traduzirConstrutoLogico.bind(this),
32514
32607
  ReferenciaFuncao: this.traduzirConstrutoReferenciaFuncao.bind(this),
32515
32608
  Separador: this.traduzirConstrutoSeparador.bind(this),
32609
+ SeTernario: this.traduzirConstrutoSeTernario.bind(this),
32516
32610
  Unario: this.traduzirConstrutoUnario.bind(this),
32517
32611
  Variavel: this.traduzirConstrutoVariavel.bind(this),
32518
32612
  Vetor: this.traduzirConstrutoVetor.bind(this),
@@ -32836,6 +32930,12 @@ class TradutorPython {
32836
32930
  traduzirConstrutoSeparador(separador) {
32837
32931
  return `${separador.conteudo} `;
32838
32932
  }
32933
+ traduzirConstrutoSeTernario(seTernario) {
32934
+ const condicao = this.dicionarioConstrutos[seTernario.condicao.constructor.name](seTernario.condicao);
32935
+ const expressaoSe = this.dicionarioConstrutos[seTernario.expressaoSe.constructor.name](seTernario.expressaoSe);
32936
+ const expressaoSenao = this.dicionarioConstrutos[seTernario.expressaoSenao.constructor.name](seTernario.expressaoSenao);
32937
+ return `${expressaoSe} if ${condicao} else ${expressaoSenao}`;
32938
+ }
32839
32939
  traduzirConstrutoUnario(unario) {
32840
32940
  const operador = this.traduzirSimboloOperador(unario.operador);
32841
32941
  const operando = this.dicionarioConstrutos[unario.operando.constructor.name](unario.operando);
@@ -33123,7 +33223,7 @@ class TradutorPython {
33123
33223
  }
33124
33224
  exports.TradutorPython = TradutorPython;
33125
33225
 
33126
- },{"../construtos":52,"../declaracoes":96,"../tipos-de-simbolos/delegua":185}],201:[function(require,module,exports){
33226
+ },{"../construtos":52,"../declaracoes":97,"../tipos-de-simbolos/delegua":187}],203:[function(require,module,exports){
33127
33227
  "use strict";
33128
33228
  Object.defineProperty(exports, "__esModule", { value: true });
33129
33229
  exports.TradutorReversoJavaScript = void 0;
@@ -33520,7 +33620,7 @@ class TradutorReversoJavaScript {
33520
33620
  }
33521
33621
  exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
33522
33622
 
33523
- },{}],202:[function(require,module,exports){
33623
+ },{}],204:[function(require,module,exports){
33524
33624
  "use strict";
33525
33625
  Object.defineProperty(exports, "__esModule", { value: true });
33526
33626
  exports.TradutorReversoPython = void 0;
@@ -33593,7 +33693,7 @@ class TradutorReversoPython {
33593
33693
  }
33594
33694
  exports.TradutorReversoPython = TradutorReversoPython;
33595
33695
 
33596
- },{"./python/python3-lexer":193,"./python/python3-parser":194,"antlr4ts":319,"antlr4ts/tree/ParseTreeWalker":338}],203:[function(require,module,exports){
33696
+ },{"./python/python3-lexer":195,"./python/python3-parser":196,"antlr4ts":321,"antlr4ts/tree/ParseTreeWalker":340}],205:[function(require,module,exports){
33597
33697
  "use strict";
33598
33698
  var __importDefault = (this && this.__importDefault) || function (mod) {
33599
33699
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -34187,7 +34287,7 @@ class TradutorReversoTenda {
34187
34287
  }
34188
34288
  exports.TradutorReversoTenda = TradutorReversoTenda;
34189
34289
 
34190
- },{"../construtos":52,"../tipos-de-simbolos/tenda":191}],204:[function(require,module,exports){
34290
+ },{"../construtos":52,"../tipos-de-simbolos/tenda":193}],206:[function(require,module,exports){
34191
34291
  "use strict";
34192
34292
  /*!
34193
34293
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34195,7 +34295,7 @@ exports.TradutorReversoTenda = TradutorReversoTenda;
34195
34295
  */
34196
34296
  Object.defineProperty(exports, "__esModule", { value: true });
34197
34297
 
34198
- },{}],205:[function(require,module,exports){
34298
+ },{}],207:[function(require,module,exports){
34199
34299
  "use strict";
34200
34300
  /*!
34201
34301
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34203,7 +34303,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
34203
34303
  */
34204
34304
  Object.defineProperty(exports, "__esModule", { value: true });
34205
34305
 
34206
- },{}],206:[function(require,module,exports){
34306
+ },{}],208:[function(require,module,exports){
34207
34307
  "use strict";
34208
34308
  /*!
34209
34309
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34365,7 +34465,7 @@ __decorate([
34365
34465
  ], ANTLRInputStream.prototype, "toString", null);
34366
34466
  exports.ANTLRInputStream = ANTLRInputStream;
34367
34467
 
34368
- },{"./Decorators":217,"./IntStream":223,"assert":360}],207:[function(require,module,exports){
34468
+ },{"./Decorators":219,"./IntStream":225,"assert":362}],209:[function(require,module,exports){
34369
34469
  "use strict";
34370
34470
  /*!
34371
34471
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34448,7 +34548,7 @@ __decorate([
34448
34548
  ], BailErrorStrategy.prototype, "sync", null);
34449
34549
  exports.BailErrorStrategy = BailErrorStrategy;
34450
34550
 
34451
- },{"./Decorators":217,"./DefaultErrorStrategy":218,"./InputMismatchException":222,"./misc/ParseCancellationException":334}],208:[function(require,module,exports){
34551
+ },{"./Decorators":219,"./DefaultErrorStrategy":220,"./InputMismatchException":224,"./misc/ParseCancellationException":336}],210:[function(require,module,exports){
34452
34552
  "use strict";
34453
34553
  /*!
34454
34554
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34938,7 +35038,7 @@ BufferedTokenStream = __decorate([
34938
35038
  ], BufferedTokenStream);
34939
35039
  exports.BufferedTokenStream = BufferedTokenStream;
34940
35040
 
34941
- },{"./CommonToken":213,"./Decorators":217,"./Lexer":225,"./Token":242,"./misc/Interval":329,"assert":360}],209:[function(require,module,exports){
35041
+ },{"./CommonToken":215,"./Decorators":219,"./Lexer":227,"./Token":244,"./misc/Interval":331,"assert":362}],211:[function(require,module,exports){
34942
35042
  "use strict";
34943
35043
  /*!
34944
35044
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34946,7 +35046,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
34946
35046
  */
34947
35047
  Object.defineProperty(exports, "__esModule", { value: true });
34948
35048
 
34949
- },{}],210:[function(require,module,exports){
35049
+ },{}],212:[function(require,module,exports){
34950
35050
  "use strict";
34951
35051
  /*!
34952
35052
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35080,7 +35180,7 @@ var CharStreams;
35080
35180
  // }
35081
35181
  })(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
35082
35182
 
35083
- },{"./CodePointBuffer":211,"./CodePointCharStream":212,"./IntStream":223}],211:[function(require,module,exports){
35183
+ },{"./CodePointBuffer":213,"./CodePointCharStream":214,"./IntStream":225}],213:[function(require,module,exports){
35084
35184
  "use strict";
35085
35185
  /*!
35086
35186
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35315,7 +35415,7 @@ exports.CodePointBuffer = CodePointBuffer;
35315
35415
  CodePointBuffer.Builder = Builder;
35316
35416
  })(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
35317
35417
 
35318
- },{"./misc/Character":325,"assert":360}],212:[function(require,module,exports){
35418
+ },{"./misc/Character":327,"assert":362}],214:[function(require,module,exports){
35319
35419
  "use strict";
35320
35420
  /*!
35321
35421
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35465,7 +35565,7 @@ __decorate([
35465
35565
  ], CodePointCharStream.prototype, "getText", null);
35466
35566
  exports.CodePointCharStream = CodePointCharStream;
35467
35567
 
35468
- },{"./Decorators":217,"./IntStream":223,"./misc/Interval":329,"assert":360}],213:[function(require,module,exports){
35568
+ },{"./Decorators":219,"./IntStream":225,"./misc/Interval":331,"assert":362}],215:[function(require,module,exports){
35469
35569
  "use strict";
35470
35570
  /*!
35471
35571
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35695,7 +35795,7 @@ CommonToken = __decorate([
35695
35795
  ], CommonToken);
35696
35796
  exports.CommonToken = CommonToken;
35697
35797
 
35698
- },{"./Decorators":217,"./Token":242,"./misc/Interval":329}],214:[function(require,module,exports){
35798
+ },{"./Decorators":219,"./Token":244,"./misc/Interval":331}],216:[function(require,module,exports){
35699
35799
  "use strict";
35700
35800
  /*!
35701
35801
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35759,7 +35859,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
35759
35859
  CommonTokenFactory.DEFAULT = new CommonTokenFactory();
35760
35860
  })(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
35761
35861
 
35762
- },{"./CommonToken":213,"./Decorators":217,"./misc/Interval":329}],215:[function(require,module,exports){
35862
+ },{"./CommonToken":215,"./Decorators":219,"./misc/Interval":331}],217:[function(require,module,exports){
35763
35863
  "use strict";
35764
35864
  /*!
35765
35865
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35886,7 +35986,7 @@ CommonTokenStream = __decorate([
35886
35986
  ], CommonTokenStream);
35887
35987
  exports.CommonTokenStream = CommonTokenStream;
35888
35988
 
35889
- },{"./BufferedTokenStream":208,"./Decorators":217,"./Token":242}],216:[function(require,module,exports){
35989
+ },{"./BufferedTokenStream":210,"./Decorators":219,"./Token":244}],218:[function(require,module,exports){
35890
35990
  "use strict";
35891
35991
  /*!
35892
35992
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35920,7 +36020,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
35920
36020
  */
35921
36021
  ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
35922
36022
 
35923
- },{}],217:[function(require,module,exports){
36023
+ },{}],219:[function(require,module,exports){
35924
36024
  "use strict";
35925
36025
  /*!
35926
36026
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35947,7 +36047,7 @@ function SuppressWarnings(options) {
35947
36047
  }
35948
36048
  exports.SuppressWarnings = SuppressWarnings;
35949
36049
 
35950
- },{}],218:[function(require,module,exports){
36050
+ },{}],220:[function(require,module,exports){
35951
36051
  "use strict";
35952
36052
  /*!
35953
36053
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36761,7 +36861,7 @@ __decorate([
36761
36861
  ], DefaultErrorStrategy.prototype, "consumeUntil", null);
36762
36862
  exports.DefaultErrorStrategy = DefaultErrorStrategy;
36763
36863
 
36764
- },{"./Decorators":217,"./FailedPredicateException":221,"./InputMismatchException":222,"./NoViableAltException":229,"./Token":242,"./atn/ATNState":256,"./atn/ATNStateType":257,"./atn/PredictionContext":297,"./misc/IntervalSet":330}],219:[function(require,module,exports){
36864
+ },{"./Decorators":219,"./FailedPredicateException":223,"./InputMismatchException":224,"./NoViableAltException":231,"./Token":244,"./atn/ATNState":258,"./atn/ATNStateType":259,"./atn/PredictionContext":299,"./misc/IntervalSet":332}],221:[function(require,module,exports){
36765
36865
  "use strict";
36766
36866
  /*!
36767
36867
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36837,7 +36937,7 @@ var Dependents;
36837
36937
  Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
36838
36938
  })(Dependents = exports.Dependents || (exports.Dependents = {}));
36839
36939
 
36840
- },{}],220:[function(require,module,exports){
36940
+ },{}],222:[function(require,module,exports){
36841
36941
  "use strict";
36842
36942
  /*!
36843
36943
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36985,7 +37085,7 @@ __decorate([
36985
37085
  ], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
36986
37086
  exports.DiagnosticErrorListener = DiagnosticErrorListener;
36987
37087
 
36988
- },{"./Decorators":217,"./misc/BitSet":324,"./misc/Interval":329}],221:[function(require,module,exports){
37088
+ },{"./Decorators":219,"./misc/BitSet":326,"./misc/Interval":331}],223:[function(require,module,exports){
36989
37089
  "use strict";
36990
37090
  /*!
36991
37091
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37050,7 +37150,7 @@ FailedPredicateException = __decorate([
37050
37150
  ], FailedPredicateException);
37051
37151
  exports.FailedPredicateException = FailedPredicateException;
37052
37152
 
37053
- },{"./Decorators":217,"./RecognitionException":236,"./atn/PredicateTransition":296}],222:[function(require,module,exports){
37153
+ },{"./Decorators":219,"./RecognitionException":238,"./atn/PredicateTransition":298}],224:[function(require,module,exports){
37054
37154
  "use strict";
37055
37155
  /*!
37056
37156
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37090,7 +37190,7 @@ InputMismatchException = __decorate([
37090
37190
  ], InputMismatchException);
37091
37191
  exports.InputMismatchException = InputMismatchException;
37092
37192
 
37093
- },{"./Decorators":217,"./RecognitionException":236}],223:[function(require,module,exports){
37193
+ },{"./Decorators":219,"./RecognitionException":238}],225:[function(require,module,exports){
37094
37194
  "use strict";
37095
37195
  /*!
37096
37196
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37113,7 +37213,7 @@ var IntStream;
37113
37213
  IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
37114
37214
  })(IntStream = exports.IntStream || (exports.IntStream = {}));
37115
37215
 
37116
- },{}],224:[function(require,module,exports){
37216
+ },{}],226:[function(require,module,exports){
37117
37217
  "use strict";
37118
37218
  /*!
37119
37219
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37160,7 +37260,7 @@ __decorate([
37160
37260
  ], InterpreterRuleContext.prototype, "ruleIndex", null);
37161
37261
  exports.InterpreterRuleContext = InterpreterRuleContext;
37162
37262
 
37163
- },{"./Decorators":217,"./ParserRuleContext":233}],225:[function(require,module,exports){
37263
+ },{"./Decorators":219,"./ParserRuleContext":235}],227:[function(require,module,exports){
37164
37264
  "use strict";
37165
37265
  /*!
37166
37266
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37496,7 +37596,7 @@ __decorate([
37496
37596
  ], Lexer.prototype, "charPositionInLine", null);
37497
37597
  exports.Lexer = Lexer;
37498
37598
 
37499
- },{"./CommonTokenFactory":214,"./Decorators":217,"./IntStream":223,"./LexerNoViableAltException":227,"./Recognizer":237,"./Token":242,"./atn/LexerATNSimulator":275,"./misc/IntegerStack":328,"./misc/Interval":329}],226:[function(require,module,exports){
37599
+ },{"./CommonTokenFactory":216,"./Decorators":219,"./IntStream":225,"./LexerNoViableAltException":229,"./Recognizer":239,"./Token":244,"./atn/LexerATNSimulator":277,"./misc/IntegerStack":330,"./misc/Interval":331}],228:[function(require,module,exports){
37500
37600
  "use strict";
37501
37601
  /*!
37502
37602
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37576,7 +37676,7 @@ LexerInterpreter = __decorate([
37576
37676
  ], LexerInterpreter);
37577
37677
  exports.LexerInterpreter = LexerInterpreter;
37578
37678
 
37579
- },{"./Decorators":217,"./Lexer":225,"./atn/LexerATNSimulator":275}],227:[function(require,module,exports){
37679
+ },{"./Decorators":219,"./Lexer":227,"./atn/LexerATNSimulator":277}],229:[function(require,module,exports){
37580
37680
  "use strict";
37581
37681
  /*!
37582
37682
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37633,7 +37733,7 @@ LexerNoViableAltException = __decorate([
37633
37733
  ], LexerNoViableAltException);
37634
37734
  exports.LexerNoViableAltException = LexerNoViableAltException;
37635
37735
 
37636
- },{"./Decorators":217,"./RecognitionException":236,"./misc/Interval":329,"./misc/Utils":336}],228:[function(require,module,exports){
37736
+ },{"./Decorators":219,"./RecognitionException":238,"./misc/Interval":331,"./misc/Utils":338}],230:[function(require,module,exports){
37637
37737
  "use strict";
37638
37738
  /*!
37639
37739
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37843,7 +37943,7 @@ ListTokenSource = __decorate([
37843
37943
  ], ListTokenSource);
37844
37944
  exports.ListTokenSource = ListTokenSource;
37845
37945
 
37846
- },{"./CommonTokenFactory":214,"./Decorators":217,"./Token":242}],229:[function(require,module,exports){
37946
+ },{"./CommonTokenFactory":216,"./Decorators":219,"./Token":244}],231:[function(require,module,exports){
37847
37947
  "use strict";
37848
37948
  /*!
37849
37949
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37898,7 +37998,7 @@ __decorate([
37898
37998
  ], NoViableAltException.prototype, "_startToken", void 0);
37899
37999
  exports.NoViableAltException = NoViableAltException;
37900
38000
 
37901
- },{"./Decorators":217,"./Parser":230,"./RecognitionException":236}],230:[function(require,module,exports){
38001
+ },{"./Decorators":219,"./Parser":232,"./RecognitionException":238}],232:[function(require,module,exports){
37902
38002
  (function (process){(function (){
37903
38003
  "use strict";
37904
38004
  /*!
@@ -38744,7 +38844,7 @@ __decorate([
38744
38844
  exports.Parser = Parser;
38745
38845
 
38746
38846
  }).call(this)}).call(this,require('_process'))
38747
- },{"./Decorators":217,"./DefaultErrorStrategy":218,"./Lexer":225,"./ProxyParserErrorListener":235,"./Recognizer":237,"./Token":242,"./atn/ATNDeserializationOptions":253,"./atn/ATNDeserializer":254,"./atn/ParseInfo":290,"./atn/ParserATNSimulator":291,"./atn/ProfilingATNSimulator":300,"./misc/IntegerStack":328,"./misc/Utils":336,"./tree/ErrorNode":337,"./tree/TerminalNode":340,"./tree/pattern/ParseTreePatternMatcher":345,"_process":419}],231:[function(require,module,exports){
38847
+ },{"./Decorators":219,"./DefaultErrorStrategy":220,"./Lexer":227,"./ProxyParserErrorListener":237,"./Recognizer":239,"./Token":244,"./atn/ATNDeserializationOptions":255,"./atn/ATNDeserializer":256,"./atn/ParseInfo":292,"./atn/ParserATNSimulator":293,"./atn/ProfilingATNSimulator":302,"./misc/IntegerStack":330,"./misc/Utils":338,"./tree/ErrorNode":339,"./tree/TerminalNode":342,"./tree/pattern/ParseTreePatternMatcher":347,"_process":421}],233:[function(require,module,exports){
38748
38848
  "use strict";
38749
38849
  /*!
38750
38850
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38752,7 +38852,7 @@ exports.Parser = Parser;
38752
38852
  */
38753
38853
  Object.defineProperty(exports, "__esModule", { value: true });
38754
38854
 
38755
- },{}],232:[function(require,module,exports){
38855
+ },{}],234:[function(require,module,exports){
38756
38856
  "use strict";
38757
38857
  /*!
38758
38858
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39160,7 +39260,7 @@ ParserInterpreter = __decorate([
39160
39260
  ], ParserInterpreter);
39161
39261
  exports.ParserInterpreter = ParserInterpreter;
39162
39262
 
39163
- },{"./Decorators":217,"./FailedPredicateException":221,"./InputMismatchException":222,"./InterpreterRuleContext":224,"./Parser":230,"./RecognitionException":236,"./Token":242,"./atn/ATNState":256,"./atn/ATNStateType":257,"./atn/LoopEndState":287,"./atn/ParserATNSimulator":291,"./atn/StarLoopEntryState":309,"./misc/BitSet":324}],233:[function(require,module,exports){
39263
+ },{"./Decorators":219,"./FailedPredicateException":223,"./InputMismatchException":224,"./InterpreterRuleContext":226,"./Parser":232,"./RecognitionException":238,"./Token":244,"./atn/ATNState":258,"./atn/ATNStateType":259,"./atn/LoopEndState":289,"./atn/ParserATNSimulator":293,"./atn/StarLoopEntryState":311,"./misc/BitSet":326}],235:[function(require,module,exports){
39164
39264
  "use strict";
39165
39265
  /*!
39166
39266
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39461,7 +39561,7 @@ __decorate([
39461
39561
  ], ParserRuleContext.prototype, "sourceInterval", null);
39462
39562
  exports.ParserRuleContext = ParserRuleContext;
39463
39563
 
39464
- },{"./Decorators":217,"./RuleContext":238,"./misc/Interval":329,"./tree/ErrorNode":337,"./tree/TerminalNode":340}],234:[function(require,module,exports){
39564
+ },{"./Decorators":219,"./RuleContext":240,"./misc/Interval":331,"./tree/ErrorNode":339,"./tree/TerminalNode":342}],236:[function(require,module,exports){
39465
39565
  "use strict";
39466
39566
  /*!
39467
39567
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39511,7 +39611,7 @@ __decorate([
39511
39611
  ], ProxyErrorListener.prototype, "syntaxError", null);
39512
39612
  exports.ProxyErrorListener = ProxyErrorListener;
39513
39613
 
39514
- },{"./Decorators":217}],235:[function(require,module,exports){
39614
+ },{"./Decorators":219}],237:[function(require,module,exports){
39515
39615
  "use strict";
39516
39616
  /*!
39517
39617
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39570,7 +39670,7 @@ __decorate([
39570
39670
  ], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
39571
39671
  exports.ProxyParserErrorListener = ProxyParserErrorListener;
39572
39672
 
39573
- },{"./Decorators":217,"./ProxyErrorListener":234}],236:[function(require,module,exports){
39673
+ },{"./Decorators":219,"./ProxyErrorListener":236}],238:[function(require,module,exports){
39574
39674
  "use strict";
39575
39675
  /*!
39576
39676
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39675,7 +39775,7 @@ class RecognitionException extends Error {
39675
39775
  }
39676
39776
  exports.RecognitionException = RecognitionException;
39677
39777
 
39678
- },{}],237:[function(require,module,exports){
39778
+ },{}],239:[function(require,module,exports){
39679
39779
  "use strict";
39680
39780
  /*!
39681
39781
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39894,7 +39994,7 @@ __decorate([
39894
39994
  ], Recognizer.prototype, "getErrorListeners", null);
39895
39995
  exports.Recognizer = Recognizer;
39896
39996
 
39897
- },{"./ConsoleErrorListener":216,"./Decorators":217,"./ProxyErrorListener":234,"./Token":242,"./misc/Utils":336}],238:[function(require,module,exports){
39997
+ },{"./ConsoleErrorListener":218,"./Decorators":219,"./ProxyErrorListener":236,"./Token":244,"./misc/Utils":338}],240:[function(require,module,exports){
39898
39998
  "use strict";
39899
39999
  /*!
39900
40000
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40111,7 +40211,7 @@ __decorate([
40111
40211
  ], RuleContext.prototype, "toStringTree", null);
40112
40212
  exports.RuleContext = RuleContext;
40113
40213
 
40114
- },{"./Decorators":217,"./ParserRuleContext":233,"./Recognizer":237,"./atn/ATN":250,"./misc/Interval":329,"./tree/RuleNode":339,"./tree/Trees":341}],239:[function(require,module,exports){
40214
+ },{"./Decorators":219,"./ParserRuleContext":235,"./Recognizer":239,"./atn/ATN":252,"./misc/Interval":331,"./tree/RuleNode":341,"./tree/Trees":343}],241:[function(require,module,exports){
40115
40215
  "use strict";
40116
40216
  /*!
40117
40217
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40162,7 +40262,7 @@ __decorate([
40162
40262
  ], RuleContextWithAltNum.prototype, "altNumber", null);
40163
40263
  exports.RuleContextWithAltNum = RuleContextWithAltNum;
40164
40264
 
40165
- },{"./Decorators":217,"./ParserRuleContext":233,"./atn/ATN":250}],240:[function(require,module,exports){
40265
+ },{"./Decorators":219,"./ParserRuleContext":235,"./atn/ATN":252}],242:[function(require,module,exports){
40166
40266
  "use strict";
40167
40267
  /*!
40168
40268
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40185,7 +40285,7 @@ function RuleDependency(dependency) {
40185
40285
  }
40186
40286
  exports.RuleDependency = RuleDependency;
40187
40287
 
40188
- },{}],241:[function(require,module,exports){
40288
+ },{}],243:[function(require,module,exports){
40189
40289
  "use strict";
40190
40290
  /*!
40191
40291
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40204,7 +40304,7 @@ function RuleVersion(version) {
40204
40304
  }
40205
40305
  exports.RuleVersion = RuleVersion;
40206
40306
 
40207
- },{}],242:[function(require,module,exports){
40307
+ },{}],244:[function(require,module,exports){
40208
40308
  "use strict";
40209
40309
  /*!
40210
40310
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40244,7 +40344,7 @@ var Token;
40244
40344
  Token.MIN_USER_CHANNEL_VALUE = 2;
40245
40345
  })(Token = exports.Token || (exports.Token = {}));
40246
40346
 
40247
- },{"./IntStream":223}],243:[function(require,module,exports){
40347
+ },{"./IntStream":225}],245:[function(require,module,exports){
40248
40348
  "use strict";
40249
40349
  /*!
40250
40350
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40252,7 +40352,7 @@ var Token;
40252
40352
  */
40253
40353
  Object.defineProperty(exports, "__esModule", { value: true });
40254
40354
 
40255
- },{}],244:[function(require,module,exports){
40355
+ },{}],246:[function(require,module,exports){
40256
40356
  "use strict";
40257
40357
  /*!
40258
40358
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40260,7 +40360,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
40260
40360
  */
40261
40361
  Object.defineProperty(exports, "__esModule", { value: true });
40262
40362
 
40263
- },{}],245:[function(require,module,exports){
40363
+ },{}],247:[function(require,module,exports){
40264
40364
  "use strict";
40265
40365
  /*!
40266
40366
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40268,7 +40368,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
40268
40368
  */
40269
40369
  Object.defineProperty(exports, "__esModule", { value: true });
40270
40370
 
40271
- },{}],246:[function(require,module,exports){
40371
+ },{}],248:[function(require,module,exports){
40272
40372
  "use strict";
40273
40373
  /*!
40274
40374
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40776,7 +40876,7 @@ __decorate([
40776
40876
  Decorators_1.Override
40777
40877
  ], ReplaceOp.prototype, "toString", null);
40778
40878
 
40779
- },{"./Decorators":217,"./Token":242,"./misc/Interval":329}],247:[function(require,module,exports){
40879
+ },{"./Decorators":219,"./Token":244,"./misc/Interval":331}],249:[function(require,module,exports){
40780
40880
  "use strict";
40781
40881
  /*!
40782
40882
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40784,7 +40884,7 @@ __decorate([
40784
40884
  */
40785
40885
  Object.defineProperty(exports, "__esModule", { value: true });
40786
40886
 
40787
- },{}],248:[function(require,module,exports){
40887
+ },{}],250:[function(require,module,exports){
40788
40888
  "use strict";
40789
40889
  /*!
40790
40890
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40904,7 +41004,7 @@ __decorate([
40904
41004
  ], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
40905
41005
  exports.VocabularyImpl = VocabularyImpl;
40906
41006
 
40907
- },{"./Decorators":217,"./Token":242}],249:[function(require,module,exports){
41007
+ },{"./Decorators":219,"./Token":244}],251:[function(require,module,exports){
40908
41008
  "use strict";
40909
41009
  /*!
40910
41010
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40912,7 +41012,7 @@ exports.VocabularyImpl = VocabularyImpl;
40912
41012
  */
40913
41013
  Object.defineProperty(exports, "__esModule", { value: true });
40914
41014
 
40915
- },{}],250:[function(require,module,exports){
41015
+ },{}],252:[function(require,module,exports){
40916
41016
  "use strict";
40917
41017
  /*!
40918
41018
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41134,7 +41234,7 @@ exports.ATN = ATN;
41134
41234
  })(ATN = exports.ATN || (exports.ATN = {}));
41135
41235
  exports.ATN = ATN;
41136
41236
 
41137
- },{"../Decorators":217,"../Token":242,"../dfa/DFA":315,"../misc/Array2DHashMap":320,"../misc/IntervalSet":330,"../misc/ObjectEqualityComparator":333,"./InvalidState":273,"./LL1Analyzer":274,"./PredictionContext":297,"assert":360}],251:[function(require,module,exports){
41237
+ },{"../Decorators":219,"../Token":244,"../dfa/DFA":317,"../misc/Array2DHashMap":322,"../misc/IntervalSet":332,"../misc/ObjectEqualityComparator":335,"./InvalidState":275,"./LL1Analyzer":276,"./PredictionContext":299,"assert":362}],253:[function(require,module,exports){
41138
41238
  "use strict";
41139
41239
  /*!
41140
41240
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41659,7 +41759,7 @@ ActionSemanticContextATNConfig = __decorate([
41659
41759
  __param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
41660
41760
  ], ActionSemanticContextATNConfig);
41661
41761
 
41662
- },{"../Decorators":217,"../misc/Array2DHashMap":320,"../misc/MurmurHash":332,"../misc/ObjectEqualityComparator":333,"./DecisionState":270,"./PredictionContext":297,"./SemanticContext":305,"assert":360}],252:[function(require,module,exports){
41762
+ },{"../Decorators":219,"../misc/Array2DHashMap":322,"../misc/MurmurHash":334,"../misc/ObjectEqualityComparator":335,"./DecisionState":272,"./PredictionContext":299,"./SemanticContext":307,"assert":362}],254:[function(require,module,exports){
41663
41763
  "use strict";
41664
41764
  /*!
41665
41765
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42106,7 +42206,7 @@ __decorate([
42106
42206
  ], ATNConfigSet.prototype, "hashCode", null);
42107
42207
  exports.ATNConfigSet = ATNConfigSet;
42108
42208
 
42109
- },{"../Decorators":217,"../misc/Array2DHashMap":320,"../misc/Array2DHashSet":321,"../misc/ArrayEqualityComparator":322,"../misc/BitSet":324,"../misc/ObjectEqualityComparator":333,"../misc/Utils":336,"./ATN":250,"./ATNConfig":251,"./PredictionContext":297,"./PredictionContextCache":298,"./SemanticContext":305,"assert":360}],253:[function(require,module,exports){
42209
+ },{"../Decorators":219,"../misc/Array2DHashMap":322,"../misc/Array2DHashSet":323,"../misc/ArrayEqualityComparator":324,"../misc/BitSet":326,"../misc/ObjectEqualityComparator":335,"../misc/Utils":338,"./ATN":252,"./ATNConfig":253,"./PredictionContext":299,"./PredictionContextCache":300,"./SemanticContext":307,"assert":362}],255:[function(require,module,exports){
42110
42210
  "use strict";
42111
42211
  /*!
42112
42212
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42185,7 +42285,7 @@ __decorate([
42185
42285
  ], ATNDeserializationOptions, "defaultOptions", null);
42186
42286
  exports.ATNDeserializationOptions = ATNDeserializationOptions;
42187
42287
 
42188
- },{"../Decorators":217}],254:[function(require,module,exports){
42288
+ },{"../Decorators":219}],256:[function(require,module,exports){
42189
42289
  "use strict";
42190
42290
  /*!
42191
42291
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43272,7 +43372,7 @@ __decorate([
43272
43372
  ], ATNDeserializer.prototype, "edgeFactory", null);
43273
43373
  exports.ATNDeserializer = ATNDeserializer;
43274
43374
 
43275
- },{"../Decorators":217,"../Token":242,"../dfa/DFA":315,"../misc/Array2DHashSet":321,"../misc/BitSet":324,"../misc/IntervalSet":330,"../misc/UUID":335,"./ATN":250,"./ATNDeserializationOptions":253,"./ATNStateType":257,"./ActionTransition":259,"./AtomTransition":261,"./BasicBlockStartState":262,"./BasicState":263,"./BlockEndState":264,"./BlockStartState":265,"./DecisionState":270,"./EpsilonTransition":271,"./InvalidState":273,"./LexerChannelAction":277,"./LexerCustomAction":278,"./LexerModeAction":280,"./LexerMoreAction":281,"./LexerPopModeAction":282,"./LexerPushModeAction":283,"./LexerSkipAction":284,"./LexerTypeAction":285,"./LoopEndState":287,"./NotSetTransition":288,"./ParserATNSimulator":291,"./PlusBlockStartState":292,"./PlusLoopbackState":293,"./PrecedencePredicateTransition":294,"./PredicateTransition":296,"./RangeTransition":301,"./RuleStartState":302,"./RuleStopState":303,"./RuleTransition":304,"./SetTransition":306,"./StarBlockStartState":308,"./StarLoopEntryState":309,"./StarLoopbackState":310,"./TokensStartState":311,"./WildcardTransition":313}],255:[function(require,module,exports){
43375
+ },{"../Decorators":219,"../Token":244,"../dfa/DFA":317,"../misc/Array2DHashSet":323,"../misc/BitSet":326,"../misc/IntervalSet":332,"../misc/UUID":337,"./ATN":252,"./ATNDeserializationOptions":255,"./ATNStateType":259,"./ActionTransition":261,"./AtomTransition":263,"./BasicBlockStartState":264,"./BasicState":265,"./BlockEndState":266,"./BlockStartState":267,"./DecisionState":272,"./EpsilonTransition":273,"./InvalidState":275,"./LexerChannelAction":279,"./LexerCustomAction":280,"./LexerModeAction":282,"./LexerMoreAction":283,"./LexerPopModeAction":284,"./LexerPushModeAction":285,"./LexerSkipAction":286,"./LexerTypeAction":287,"./LoopEndState":289,"./NotSetTransition":290,"./ParserATNSimulator":293,"./PlusBlockStartState":294,"./PlusLoopbackState":295,"./PrecedencePredicateTransition":296,"./PredicateTransition":298,"./RangeTransition":303,"./RuleStartState":304,"./RuleStopState":305,"./RuleTransition":306,"./SetTransition":308,"./StarBlockStartState":310,"./StarLoopEntryState":311,"./StarLoopbackState":312,"./TokensStartState":313,"./WildcardTransition":315}],257:[function(require,module,exports){
43276
43376
  "use strict";
43277
43377
  /*!
43278
43378
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43336,7 +43436,7 @@ exports.ATNSimulator = ATNSimulator;
43336
43436
  })(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
43337
43437
  exports.ATNSimulator = ATNSimulator;
43338
43438
 
43339
- },{"../Decorators":217,"../dfa/DFAState":317,"./ATNConfigSet":252,"./PredictionContext":297}],256:[function(require,module,exports){
43439
+ },{"../Decorators":219,"../dfa/DFAState":319,"./ATNConfigSet":254,"./PredictionContext":299}],258:[function(require,module,exports){
43340
43440
  "use strict";
43341
43441
  /*!
43342
43442
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43523,7 +43623,7 @@ exports.ATNState = ATNState;
43523
43623
  ATNState.INVALID_STATE_NUMBER = -1;
43524
43624
  })(ATNState = exports.ATNState || (exports.ATNState = {}));
43525
43625
 
43526
- },{"../Decorators":217}],257:[function(require,module,exports){
43626
+ },{"../Decorators":219}],259:[function(require,module,exports){
43527
43627
  "use strict";
43528
43628
  /*!
43529
43629
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43549,7 +43649,7 @@ var ATNStateType;
43549
43649
  ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
43550
43650
  })(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
43551
43651
 
43552
- },{}],258:[function(require,module,exports){
43652
+ },{}],260:[function(require,module,exports){
43553
43653
  "use strict";
43554
43654
  /*!
43555
43655
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43569,7 +43669,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
43569
43669
  }
43570
43670
  exports.AbstractPredicateTransition = AbstractPredicateTransition;
43571
43671
 
43572
- },{"./Transition":312}],259:[function(require,module,exports){
43672
+ },{"./Transition":314}],261:[function(require,module,exports){
43573
43673
  "use strict";
43574
43674
  /*!
43575
43675
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43625,7 +43725,7 @@ ActionTransition = __decorate([
43625
43725
  ], ActionTransition);
43626
43726
  exports.ActionTransition = ActionTransition;
43627
43727
 
43628
- },{"../Decorators":217,"./Transition":312}],260:[function(require,module,exports){
43728
+ },{"../Decorators":219,"./Transition":314}],262:[function(require,module,exports){
43629
43729
  "use strict";
43630
43730
  /*!
43631
43731
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43712,7 +43812,7 @@ AmbiguityInfo = __decorate([
43712
43812
  ], AmbiguityInfo);
43713
43813
  exports.AmbiguityInfo = AmbiguityInfo;
43714
43814
 
43715
- },{"../Decorators":217,"./DecisionEventInfo":268}],261:[function(require,module,exports){
43815
+ },{"../Decorators":219,"./DecisionEventInfo":270}],263:[function(require,module,exports){
43716
43816
  "use strict";
43717
43817
  /*!
43718
43818
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43770,7 +43870,7 @@ AtomTransition = __decorate([
43770
43870
  ], AtomTransition);
43771
43871
  exports.AtomTransition = AtomTransition;
43772
43872
 
43773
- },{"../Decorators":217,"../misc/IntervalSet":330,"./Transition":312}],262:[function(require,module,exports){
43873
+ },{"../Decorators":219,"../misc/IntervalSet":332,"./Transition":314}],264:[function(require,module,exports){
43774
43874
  "use strict";
43775
43875
  /*!
43776
43876
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43802,7 +43902,7 @@ __decorate([
43802
43902
  ], BasicBlockStartState.prototype, "stateType", null);
43803
43903
  exports.BasicBlockStartState = BasicBlockStartState;
43804
43904
 
43805
- },{"../Decorators":217,"./ATNStateType":257,"./BlockStartState":265}],263:[function(require,module,exports){
43905
+ },{"../Decorators":219,"./ATNStateType":259,"./BlockStartState":267}],265:[function(require,module,exports){
43806
43906
  "use strict";
43807
43907
  /*!
43808
43908
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43834,7 +43934,7 @@ __decorate([
43834
43934
  ], BasicState.prototype, "stateType", null);
43835
43935
  exports.BasicState = BasicState;
43836
43936
 
43837
- },{"../Decorators":217,"./ATNState":256,"./ATNStateType":257}],264:[function(require,module,exports){
43937
+ },{"../Decorators":219,"./ATNState":258,"./ATNStateType":259}],266:[function(require,module,exports){
43838
43938
  "use strict";
43839
43939
  /*!
43840
43940
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43863,7 +43963,7 @@ __decorate([
43863
43963
  ], BlockEndState.prototype, "stateType", null);
43864
43964
  exports.BlockEndState = BlockEndState;
43865
43965
 
43866
- },{"../Decorators":217,"./ATNState":256,"./ATNStateType":257}],265:[function(require,module,exports){
43966
+ },{"../Decorators":219,"./ATNState":258,"./ATNStateType":259}],267:[function(require,module,exports){
43867
43967
  "use strict";
43868
43968
  /*!
43869
43969
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43877,7 +43977,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
43877
43977
  }
43878
43978
  exports.BlockStartState = BlockStartState;
43879
43979
 
43880
- },{"./DecisionState":270}],266:[function(require,module,exports){
43980
+ },{"./DecisionState":272}],268:[function(require,module,exports){
43881
43981
  "use strict";
43882
43982
  /*!
43883
43983
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43947,7 +44047,7 @@ __decorate([
43947
44047
  ], ConflictInfo.prototype, "hashCode", null);
43948
44048
  exports.ConflictInfo = ConflictInfo;
43949
44049
 
43950
- },{"../Decorators":217,"../misc/Utils":336}],267:[function(require,module,exports){
44050
+ },{"../Decorators":219,"../misc/Utils":338}],269:[function(require,module,exports){
43951
44051
  "use strict";
43952
44052
  /*!
43953
44053
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44007,7 +44107,7 @@ ContextSensitivityInfo = __decorate([
44007
44107
  ], ContextSensitivityInfo);
44008
44108
  exports.ContextSensitivityInfo = ContextSensitivityInfo;
44009
44109
 
44010
- },{"../Decorators":217,"./DecisionEventInfo":268}],268:[function(require,module,exports){
44110
+ },{"../Decorators":219,"./DecisionEventInfo":270}],270:[function(require,module,exports){
44011
44111
  "use strict";
44012
44112
  /*!
44013
44113
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44059,7 +44159,7 @@ DecisionEventInfo = __decorate([
44059
44159
  ], DecisionEventInfo);
44060
44160
  exports.DecisionEventInfo = DecisionEventInfo;
44061
44161
 
44062
- },{"../Decorators":217}],269:[function(require,module,exports){
44162
+ },{"../Decorators":219}],271:[function(require,module,exports){
44063
44163
  "use strict";
44064
44164
  /*!
44065
44165
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44272,7 +44372,7 @@ __decorate([
44272
44372
  ], DecisionInfo.prototype, "toString", null);
44273
44373
  exports.DecisionInfo = DecisionInfo;
44274
44374
 
44275
- },{"../Decorators":217}],270:[function(require,module,exports){
44375
+ },{"../Decorators":219}],272:[function(require,module,exports){
44276
44376
  "use strict";
44277
44377
  /*!
44278
44378
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44292,7 +44392,7 @@ class DecisionState extends ATNState_1.ATNState {
44292
44392
  }
44293
44393
  exports.DecisionState = DecisionState;
44294
44394
 
44295
- },{"./ATNState":256}],271:[function(require,module,exports){
44395
+ },{"./ATNState":258}],273:[function(require,module,exports){
44296
44396
  "use strict";
44297
44397
  /*!
44298
44398
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44358,7 +44458,7 @@ EpsilonTransition = __decorate([
44358
44458
  ], EpsilonTransition);
44359
44459
  exports.EpsilonTransition = EpsilonTransition;
44360
44460
 
44361
- },{"../Decorators":217,"./Transition":312}],272:[function(require,module,exports){
44461
+ },{"../Decorators":219,"./Transition":314}],274:[function(require,module,exports){
44362
44462
  "use strict";
44363
44463
  /*!
44364
44464
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44411,7 +44511,7 @@ ErrorInfo = __decorate([
44411
44511
  ], ErrorInfo);
44412
44512
  exports.ErrorInfo = ErrorInfo;
44413
44513
 
44414
- },{"../Decorators":217,"./DecisionEventInfo":268}],273:[function(require,module,exports){
44514
+ },{"../Decorators":219,"./DecisionEventInfo":270}],275:[function(require,module,exports){
44415
44515
  "use strict";
44416
44516
  /*!
44417
44517
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44442,7 +44542,7 @@ __decorate([
44442
44542
  ], InvalidState.prototype, "stateType", null);
44443
44543
  exports.InvalidState = InvalidState;
44444
44544
 
44445
- },{"../Decorators":217,"./ATNStateType":257,"./BasicState":263}],274:[function(require,module,exports){
44545
+ },{"../Decorators":219,"./ATNStateType":259,"./BasicState":265}],276:[function(require,module,exports){
44446
44546
  "use strict";
44447
44547
  /*!
44448
44548
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44664,7 +44764,7 @@ LL1Analyzer = __decorate([
44664
44764
  ], LL1Analyzer);
44665
44765
  exports.LL1Analyzer = LL1Analyzer;
44666
44766
 
44667
- },{"../Decorators":217,"../Token":242,"../misc/Array2DHashSet":321,"../misc/BitSet":324,"../misc/IntervalSet":330,"../misc/ObjectEqualityComparator":333,"./ATNConfig":251,"./AbstractPredicateTransition":258,"./NotSetTransition":288,"./PredictionContext":297,"./RuleStopState":303,"./RuleTransition":304,"./WildcardTransition":313}],275:[function(require,module,exports){
44767
+ },{"../Decorators":219,"../Token":244,"../misc/Array2DHashSet":323,"../misc/BitSet":326,"../misc/IntervalSet":332,"../misc/ObjectEqualityComparator":335,"./ATNConfig":253,"./AbstractPredicateTransition":260,"./NotSetTransition":290,"./PredictionContext":299,"./RuleStopState":305,"./RuleTransition":306,"./WildcardTransition":315}],277:[function(require,module,exports){
44668
44768
  "use strict";
44669
44769
  /*!
44670
44770
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45381,7 +45481,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
45381
45481
  })(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
45382
45482
  exports.LexerATNSimulator = LexerATNSimulator;
45383
45483
 
45384
- },{"../Decorators":217,"../IntStream":223,"../Lexer":225,"../LexerNoViableAltException":227,"../Token":242,"../dfa/AcceptStateInfo":314,"../dfa/DFAState":317,"../misc/Interval":329,"./ATN":250,"./ATNConfig":251,"./ATNConfigSet":252,"./ATNSimulator":255,"./LexerActionExecutor":276,"./OrderedATNConfigSet":289,"./PredictionContext":297,"./RuleStopState":303,"assert":360}],276:[function(require,module,exports){
45484
+ },{"../Decorators":219,"../IntStream":225,"../Lexer":227,"../LexerNoViableAltException":229,"../Token":244,"../dfa/AcceptStateInfo":316,"../dfa/DFAState":319,"../misc/Interval":331,"./ATN":252,"./ATNConfig":253,"./ATNConfigSet":254,"./ATNSimulator":257,"./LexerActionExecutor":278,"./OrderedATNConfigSet":291,"./PredictionContext":299,"./RuleStopState":305,"assert":362}],278:[function(require,module,exports){
45385
45485
  "use strict";
45386
45486
  /*!
45387
45487
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45582,7 +45682,7 @@ LexerActionExecutor = __decorate([
45582
45682
  ], LexerActionExecutor);
45583
45683
  exports.LexerActionExecutor = LexerActionExecutor;
45584
45684
 
45585
- },{"../Decorators":217,"../misc/ArrayEqualityComparator":322,"../misc/MurmurHash":332,"./LexerIndexedCustomAction":279}],277:[function(require,module,exports){
45685
+ },{"../Decorators":219,"../misc/ArrayEqualityComparator":324,"../misc/MurmurHash":334,"./LexerIndexedCustomAction":281}],279:[function(require,module,exports){
45586
45686
  "use strict";
45587
45687
  /*!
45588
45688
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45687,7 +45787,7 @@ __decorate([
45687
45787
  ], LexerChannelAction.prototype, "toString", null);
45688
45788
  exports.LexerChannelAction = LexerChannelAction;
45689
45789
 
45690
- },{"../Decorators":217,"../misc/MurmurHash":332}],278:[function(require,module,exports){
45790
+ },{"../Decorators":219,"../misc/MurmurHash":334}],280:[function(require,module,exports){
45691
45791
  "use strict";
45692
45792
  /*!
45693
45793
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45816,7 +45916,7 @@ __decorate([
45816
45916
  ], LexerCustomAction.prototype, "equals", null);
45817
45917
  exports.LexerCustomAction = LexerCustomAction;
45818
45918
 
45819
- },{"../Decorators":217,"../misc/MurmurHash":332}],279:[function(require,module,exports){
45919
+ },{"../Decorators":219,"../misc/MurmurHash":334}],281:[function(require,module,exports){
45820
45920
  "use strict";
45821
45921
  /*!
45822
45922
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45951,7 +46051,7 @@ LexerIndexedCustomAction = __decorate([
45951
46051
  ], LexerIndexedCustomAction);
45952
46052
  exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
45953
46053
 
45954
- },{"../Decorators":217,"../misc/MurmurHash":332}],280:[function(require,module,exports){
46054
+ },{"../Decorators":219,"../misc/MurmurHash":334}],282:[function(require,module,exports){
45955
46055
  "use strict";
45956
46056
  /*!
45957
46057
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46056,7 +46156,7 @@ __decorate([
46056
46156
  ], LexerModeAction.prototype, "toString", null);
46057
46157
  exports.LexerModeAction = LexerModeAction;
46058
46158
 
46059
- },{"../Decorators":217,"../misc/MurmurHash":332}],281:[function(require,module,exports){
46159
+ },{"../Decorators":219,"../misc/MurmurHash":334}],283:[function(require,module,exports){
46060
46160
  "use strict";
46061
46161
  /*!
46062
46162
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46152,7 +46252,7 @@ exports.LexerMoreAction = LexerMoreAction;
46152
46252
  LexerMoreAction.INSTANCE = new LexerMoreAction();
46153
46253
  })(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
46154
46254
 
46155
- },{"../Decorators":217,"../misc/MurmurHash":332}],282:[function(require,module,exports){
46255
+ },{"../Decorators":219,"../misc/MurmurHash":334}],284:[function(require,module,exports){
46156
46256
  "use strict";
46157
46257
  /*!
46158
46258
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46248,7 +46348,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
46248
46348
  LexerPopModeAction.INSTANCE = new LexerPopModeAction();
46249
46349
  })(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
46250
46350
 
46251
- },{"../Decorators":217,"../misc/MurmurHash":332}],283:[function(require,module,exports){
46351
+ },{"../Decorators":219,"../misc/MurmurHash":334}],285:[function(require,module,exports){
46252
46352
  "use strict";
46253
46353
  /*!
46254
46354
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46353,7 +46453,7 @@ __decorate([
46353
46453
  ], LexerPushModeAction.prototype, "toString", null);
46354
46454
  exports.LexerPushModeAction = LexerPushModeAction;
46355
46455
 
46356
- },{"../Decorators":217,"../misc/MurmurHash":332}],284:[function(require,module,exports){
46456
+ },{"../Decorators":219,"../misc/MurmurHash":334}],286:[function(require,module,exports){
46357
46457
  "use strict";
46358
46458
  /*!
46359
46459
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46449,7 +46549,7 @@ exports.LexerSkipAction = LexerSkipAction;
46449
46549
  LexerSkipAction.INSTANCE = new LexerSkipAction();
46450
46550
  })(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
46451
46551
 
46452
- },{"../Decorators":217,"../misc/MurmurHash":332}],285:[function(require,module,exports){
46552
+ },{"../Decorators":219,"../misc/MurmurHash":334}],287:[function(require,module,exports){
46453
46553
  "use strict";
46454
46554
  /*!
46455
46555
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46553,7 +46653,7 @@ __decorate([
46553
46653
  ], LexerTypeAction.prototype, "toString", null);
46554
46654
  exports.LexerTypeAction = LexerTypeAction;
46555
46655
 
46556
- },{"../Decorators":217,"../misc/MurmurHash":332}],286:[function(require,module,exports){
46656
+ },{"../Decorators":219,"../misc/MurmurHash":334}],288:[function(require,module,exports){
46557
46657
  "use strict";
46558
46658
  /*!
46559
46659
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46605,7 +46705,7 @@ LookaheadEventInfo = __decorate([
46605
46705
  ], LookaheadEventInfo);
46606
46706
  exports.LookaheadEventInfo = LookaheadEventInfo;
46607
46707
 
46608
- },{"../Decorators":217,"./DecisionEventInfo":268}],287:[function(require,module,exports){
46708
+ },{"../Decorators":219,"./DecisionEventInfo":270}],289:[function(require,module,exports){
46609
46709
  "use strict";
46610
46710
  /*!
46611
46711
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46634,7 +46734,7 @@ __decorate([
46634
46734
  ], LoopEndState.prototype, "stateType", null);
46635
46735
  exports.LoopEndState = LoopEndState;
46636
46736
 
46637
- },{"../Decorators":217,"./ATNState":256,"./ATNStateType":257}],288:[function(require,module,exports){
46737
+ },{"../Decorators":219,"./ATNState":258,"./ATNStateType":259}],290:[function(require,module,exports){
46638
46738
  "use strict";
46639
46739
  /*!
46640
46740
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46683,7 +46783,7 @@ NotSetTransition = __decorate([
46683
46783
  ], NotSetTransition);
46684
46784
  exports.NotSetTransition = NotSetTransition;
46685
46785
 
46686
- },{"../Decorators":217,"./SetTransition":306}],289:[function(require,module,exports){
46786
+ },{"../Decorators":219,"./SetTransition":308}],291:[function(require,module,exports){
46687
46787
  "use strict";
46688
46788
  /*!
46689
46789
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46738,7 +46838,7 @@ __decorate([
46738
46838
  ], OrderedATNConfigSet.prototype, "canMerge", null);
46739
46839
  exports.OrderedATNConfigSet = OrderedATNConfigSet;
46740
46840
 
46741
- },{"../Decorators":217,"./ATNConfigSet":252}],290:[function(require,module,exports){
46841
+ },{"../Decorators":219,"./ATNConfigSet":254}],292:[function(require,module,exports){
46742
46842
  "use strict";
46743
46843
  /*!
46744
46844
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46900,7 +47000,7 @@ ParseInfo = __decorate([
46900
47000
  ], ParseInfo);
46901
47001
  exports.ParseInfo = ParseInfo;
46902
47002
 
46903
- },{"../Decorators":217}],291:[function(require,module,exports){
47003
+ },{"../Decorators":219}],293:[function(require,module,exports){
46904
47004
  "use strict";
46905
47005
  /*!
46906
47006
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49173,7 +49273,7 @@ ParserATNSimulator = __decorate([
49173
49273
  ], ParserATNSimulator);
49174
49274
  exports.ParserATNSimulator = ParserATNSimulator;
49175
49275
 
49176
- },{"../Decorators":217,"../IntStream":223,"../NoViableAltException":229,"../ParserRuleContext":233,"../Token":242,"../VocabularyImpl":248,"../dfa/AcceptStateInfo":314,"../dfa/DFAState":317,"../misc/Array2DHashSet":321,"../misc/Arrays":323,"../misc/BitSet":324,"../misc/IntegerList":327,"../misc/Interval":329,"../misc/ObjectEqualityComparator":333,"./ATN":250,"./ATNConfig":251,"./ATNConfigSet":252,"./ATNSimulator":255,"./ATNStateType":257,"./ActionTransition":259,"./AtomTransition":261,"./ConflictInfo":266,"./DecisionState":270,"./NotSetTransition":288,"./PredictionContext":297,"./PredictionContextCache":298,"./PredictionMode":299,"./RuleStopState":303,"./RuleTransition":304,"./SemanticContext":305,"./SetTransition":306,"./SimulatorState":307,"assert":360}],292:[function(require,module,exports){
49276
+ },{"../Decorators":219,"../IntStream":225,"../NoViableAltException":231,"../ParserRuleContext":235,"../Token":244,"../VocabularyImpl":250,"../dfa/AcceptStateInfo":316,"../dfa/DFAState":319,"../misc/Array2DHashSet":323,"../misc/Arrays":325,"../misc/BitSet":326,"../misc/IntegerList":329,"../misc/Interval":331,"../misc/ObjectEqualityComparator":335,"./ATN":252,"./ATNConfig":253,"./ATNConfigSet":254,"./ATNSimulator":257,"./ATNStateType":259,"./ActionTransition":261,"./AtomTransition":263,"./ConflictInfo":268,"./DecisionState":272,"./NotSetTransition":290,"./PredictionContext":299,"./PredictionContextCache":300,"./PredictionMode":301,"./RuleStopState":305,"./RuleTransition":306,"./SemanticContext":307,"./SetTransition":308,"./SimulatorState":309,"assert":362}],294:[function(require,module,exports){
49177
49277
  "use strict";
49178
49278
  /*!
49179
49279
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49206,7 +49306,7 @@ __decorate([
49206
49306
  ], PlusBlockStartState.prototype, "stateType", null);
49207
49307
  exports.PlusBlockStartState = PlusBlockStartState;
49208
49308
 
49209
- },{"../Decorators":217,"./ATNStateType":257,"./BlockStartState":265}],293:[function(require,module,exports){
49309
+ },{"../Decorators":219,"./ATNStateType":259,"./BlockStartState":267}],295:[function(require,module,exports){
49210
49310
  "use strict";
49211
49311
  /*!
49212
49312
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49237,7 +49337,7 @@ __decorate([
49237
49337
  ], PlusLoopbackState.prototype, "stateType", null);
49238
49338
  exports.PlusLoopbackState = PlusLoopbackState;
49239
49339
 
49240
- },{"../Decorators":217,"./ATNStateType":257,"./DecisionState":270}],294:[function(require,module,exports){
49340
+ },{"../Decorators":219,"./ATNStateType":259,"./DecisionState":272}],296:[function(require,module,exports){
49241
49341
  "use strict";
49242
49342
  /*!
49243
49343
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49300,7 +49400,7 @@ PrecedencePredicateTransition = __decorate([
49300
49400
  ], PrecedencePredicateTransition);
49301
49401
  exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
49302
49402
 
49303
- },{"../Decorators":217,"./AbstractPredicateTransition":258,"./SemanticContext":305}],295:[function(require,module,exports){
49403
+ },{"../Decorators":219,"./AbstractPredicateTransition":260,"./SemanticContext":307}],297:[function(require,module,exports){
49304
49404
  "use strict";
49305
49405
  /*!
49306
49406
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49363,7 +49463,7 @@ PredicateEvalInfo = __decorate([
49363
49463
  ], PredicateEvalInfo);
49364
49464
  exports.PredicateEvalInfo = PredicateEvalInfo;
49365
49465
 
49366
- },{"../Decorators":217,"./DecisionEventInfo":268}],296:[function(require,module,exports){
49466
+ },{"../Decorators":219,"./DecisionEventInfo":270}],298:[function(require,module,exports){
49367
49467
  "use strict";
49368
49468
  /*!
49369
49469
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49429,7 +49529,7 @@ PredicateTransition = __decorate([
49429
49529
  ], PredicateTransition);
49430
49530
  exports.PredicateTransition = PredicateTransition;
49431
49531
 
49432
- },{"../Decorators":217,"./AbstractPredicateTransition":258,"./SemanticContext":305}],297:[function(require,module,exports){
49532
+ },{"../Decorators":219,"./AbstractPredicateTransition":260,"./SemanticContext":307}],299:[function(require,module,exports){
49433
49533
  "use strict";
49434
49534
  /*!
49435
49535
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50120,7 +50220,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
50120
50220
  PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
50121
50221
  })(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
50122
50222
 
50123
- },{"../Decorators":217,"../misc/Array2DHashMap":320,"../misc/Array2DHashSet":321,"../misc/Arrays":323,"../misc/MurmurHash":332,"./PredictionContextCache":298,"assert":360}],298:[function(require,module,exports){
50223
+ },{"../Decorators":219,"../misc/Array2DHashMap":322,"../misc/Array2DHashSet":323,"../misc/Arrays":325,"../misc/MurmurHash":334,"./PredictionContextCache":300,"assert":362}],300:[function(require,module,exports){
50124
50224
  "use strict";
50125
50225
  /*!
50126
50226
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50261,7 +50361,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
50261
50361
  PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
50262
50362
  })(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
50263
50363
 
50264
- },{"../Decorators":217,"../misc/Array2DHashMap":320,"../misc/ObjectEqualityComparator":333,"./PredictionContext":297,"assert":360}],299:[function(require,module,exports){
50364
+ },{"../Decorators":219,"../misc/Array2DHashMap":322,"../misc/ObjectEqualityComparator":335,"./PredictionContext":299,"assert":362}],301:[function(require,module,exports){
50265
50365
  "use strict";
50266
50366
  /*!
50267
50367
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50422,7 +50522,7 @@ var PredictionMode;
50422
50522
  PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
50423
50523
  })(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
50424
50524
 
50425
- },{"../Decorators":217,"../misc/Array2DHashMap":320,"../misc/MurmurHash":332,"./RuleStopState":303}],300:[function(require,module,exports){
50525
+ },{"../Decorators":219,"../misc/Array2DHashMap":322,"../misc/MurmurHash":334,"./RuleStopState":305}],302:[function(require,module,exports){
50426
50526
  (function (process){(function (){
50427
50527
  "use strict";
50428
50528
  /*!
@@ -50691,7 +50791,7 @@ __decorate([
50691
50791
  exports.ProfilingATNSimulator = ProfilingATNSimulator;
50692
50792
 
50693
50793
  }).call(this)}).call(this,require('_process'))
50694
- },{"../Decorators":217,"./ATN":250,"./ATNSimulator":255,"./AmbiguityInfo":260,"./ContextSensitivityInfo":267,"./DecisionInfo":269,"./ErrorInfo":272,"./LookaheadEventInfo":286,"./ParserATNSimulator":291,"./PredicateEvalInfo":295,"./SemanticContext":305,"./SimulatorState":307,"_process":419}],301:[function(require,module,exports){
50794
+ },{"../Decorators":219,"./ATN":252,"./ATNSimulator":257,"./AmbiguityInfo":262,"./ContextSensitivityInfo":269,"./DecisionInfo":271,"./ErrorInfo":274,"./LookaheadEventInfo":288,"./ParserATNSimulator":293,"./PredicateEvalInfo":297,"./SemanticContext":307,"./SimulatorState":309,"_process":421}],303:[function(require,module,exports){
50695
50795
  "use strict";
50696
50796
  /*!
50697
50797
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50749,7 +50849,7 @@ RangeTransition = __decorate([
50749
50849
  ], RangeTransition);
50750
50850
  exports.RangeTransition = RangeTransition;
50751
50851
 
50752
- },{"../Decorators":217,"../misc/IntervalSet":330,"./Transition":312}],302:[function(require,module,exports){
50852
+ },{"../Decorators":219,"../misc/IntervalSet":332,"./Transition":314}],304:[function(require,module,exports){
50753
50853
  "use strict";
50754
50854
  /*!
50755
50855
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50782,7 +50882,7 @@ __decorate([
50782
50882
  ], RuleStartState.prototype, "stateType", null);
50783
50883
  exports.RuleStartState = RuleStartState;
50784
50884
 
50785
- },{"../Decorators":217,"./ATNState":256,"./ATNStateType":257}],303:[function(require,module,exports){
50885
+ },{"../Decorators":219,"./ATNState":258,"./ATNStateType":259}],305:[function(require,module,exports){
50786
50886
  "use strict";
50787
50887
  /*!
50788
50888
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50821,7 +50921,7 @@ __decorate([
50821
50921
  ], RuleStopState.prototype, "stateType", null);
50822
50922
  exports.RuleStopState = RuleStopState;
50823
50923
 
50824
- },{"../Decorators":217,"./ATNState":256,"./ATNStateType":257}],304:[function(require,module,exports){
50924
+ },{"../Decorators":219,"./ATNState":258,"./ATNStateType":259}],306:[function(require,module,exports){
50825
50925
  "use strict";
50826
50926
  /*!
50827
50927
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50877,7 +50977,7 @@ RuleTransition = __decorate([
50877
50977
  ], RuleTransition);
50878
50978
  exports.RuleTransition = RuleTransition;
50879
50979
 
50880
- },{"../Decorators":217,"./Transition":312}],305:[function(require,module,exports){
50980
+ },{"../Decorators":219,"./Transition":314}],307:[function(require,module,exports){
50881
50981
  "use strict";
50882
50982
  /*!
50883
50983
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51357,7 +51457,7 @@ exports.SemanticContext = SemanticContext;
51357
51457
  SemanticContext.OR = OR;
51358
51458
  })(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
51359
51459
 
51360
- },{"../Decorators":217,"../misc/Array2DHashSet":321,"../misc/ArrayEqualityComparator":322,"../misc/MurmurHash":332,"../misc/ObjectEqualityComparator":333,"../misc/Utils":336}],306:[function(require,module,exports){
51460
+ },{"../Decorators":219,"../misc/Array2DHashSet":323,"../misc/ArrayEqualityComparator":324,"../misc/MurmurHash":334,"../misc/ObjectEqualityComparator":335,"../misc/Utils":338}],308:[function(require,module,exports){
51361
51461
  "use strict";
51362
51462
  /*!
51363
51463
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51423,7 +51523,7 @@ SetTransition = __decorate([
51423
51523
  ], SetTransition);
51424
51524
  exports.SetTransition = SetTransition;
51425
51525
 
51426
- },{"../Decorators":217,"../Token":242,"../misc/IntervalSet":330,"./Transition":312}],307:[function(require,module,exports){
51526
+ },{"../Decorators":219,"../Token":244,"../misc/IntervalSet":332,"./Transition":314}],309:[function(require,module,exports){
51427
51527
  "use strict";
51428
51528
  /*!
51429
51529
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51459,7 +51559,7 @@ SimulatorState = __decorate([
51459
51559
  ], SimulatorState);
51460
51560
  exports.SimulatorState = SimulatorState;
51461
51561
 
51462
- },{"../Decorators":217,"../ParserRuleContext":233}],308:[function(require,module,exports){
51562
+ },{"../Decorators":219,"../ParserRuleContext":235}],310:[function(require,module,exports){
51463
51563
  "use strict";
51464
51564
  /*!
51465
51565
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51487,7 +51587,7 @@ __decorate([
51487
51587
  ], StarBlockStartState.prototype, "stateType", null);
51488
51588
  exports.StarBlockStartState = StarBlockStartState;
51489
51589
 
51490
- },{"../Decorators":217,"./ATNStateType":257,"./BlockStartState":265}],309:[function(require,module,exports){
51590
+ },{"../Decorators":219,"./ATNStateType":259,"./BlockStartState":267}],311:[function(require,module,exports){
51491
51591
  "use strict";
51492
51592
  /*!
51493
51593
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51544,7 +51644,7 @@ __decorate([
51544
51644
  ], StarLoopEntryState.prototype, "stateType", null);
51545
51645
  exports.StarLoopEntryState = StarLoopEntryState;
51546
51646
 
51547
- },{"../Decorators":217,"../misc/BitSet":324,"./ATNStateType":257,"./DecisionState":270}],310:[function(require,module,exports){
51647
+ },{"../Decorators":219,"../misc/BitSet":326,"./ATNStateType":259,"./DecisionState":272}],312:[function(require,module,exports){
51548
51648
  "use strict";
51549
51649
  /*!
51550
51650
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51575,7 +51675,7 @@ __decorate([
51575
51675
  ], StarLoopbackState.prototype, "stateType", null);
51576
51676
  exports.StarLoopbackState = StarLoopbackState;
51577
51677
 
51578
- },{"../Decorators":217,"./ATNState":256,"./ATNStateType":257}],311:[function(require,module,exports){
51678
+ },{"../Decorators":219,"./ATNState":258,"./ATNStateType":259}],313:[function(require,module,exports){
51579
51679
  "use strict";
51580
51680
  /*!
51581
51681
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51604,7 +51704,7 @@ __decorate([
51604
51704
  ], TokensStartState.prototype, "stateType", null);
51605
51705
  exports.TokensStartState = TokensStartState;
51606
51706
 
51607
- },{"../Decorators":217,"./ATNStateType":257,"./DecisionState":270}],312:[function(require,module,exports){
51707
+ },{"../Decorators":219,"./ATNStateType":259,"./DecisionState":272}],314:[function(require,module,exports){
51608
51708
  "use strict";
51609
51709
  /*!
51610
51710
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51678,7 +51778,7 @@ Transition = __decorate([
51678
51778
  ], Transition);
51679
51779
  exports.Transition = Transition;
51680
51780
 
51681
- },{"../Decorators":217}],313:[function(require,module,exports){
51781
+ },{"../Decorators":219}],315:[function(require,module,exports){
51682
51782
  "use strict";
51683
51783
  /*!
51684
51784
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51726,7 +51826,7 @@ WildcardTransition = __decorate([
51726
51826
  ], WildcardTransition);
51727
51827
  exports.WildcardTransition = WildcardTransition;
51728
51828
 
51729
- },{"../Decorators":217,"./Transition":312}],314:[function(require,module,exports){
51829
+ },{"../Decorators":219,"./Transition":314}],316:[function(require,module,exports){
51730
51830
  "use strict";
51731
51831
  /*!
51732
51832
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51768,7 +51868,7 @@ class AcceptStateInfo {
51768
51868
  }
51769
51869
  exports.AcceptStateInfo = AcceptStateInfo;
51770
51870
 
51771
- },{}],315:[function(require,module,exports){
51871
+ },{}],317:[function(require,module,exports){
51772
51872
  "use strict";
51773
51873
  /*!
51774
51874
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51943,7 +52043,7 @@ DFA = __decorate([
51943
52043
  ], DFA);
51944
52044
  exports.DFA = DFA;
51945
52045
 
51946
- },{"../Decorators":217,"../VocabularyImpl":248,"../atn/ATNConfigSet":252,"../atn/StarLoopEntryState":309,"../misc/Array2DHashSet":321,"../misc/ObjectEqualityComparator":333,"./DFASerializer":316,"./DFAState":317,"./LexerDFASerializer":318}],316:[function(require,module,exports){
52046
+ },{"../Decorators":219,"../VocabularyImpl":250,"../atn/ATNConfigSet":254,"../atn/StarLoopEntryState":311,"../misc/Array2DHashSet":323,"../misc/ObjectEqualityComparator":335,"./DFASerializer":318,"./DFAState":319,"./LexerDFASerializer":320}],318:[function(require,module,exports){
51947
52047
  "use strict";
51948
52048
  /*!
51949
52049
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52085,7 +52185,7 @@ __decorate([
52085
52185
  ], DFASerializer.prototype, "toString", null);
52086
52186
  exports.DFASerializer = DFASerializer;
52087
52187
 
52088
- },{"../Decorators":217,"../Recognizer":237,"../VocabularyImpl":248,"../atn/ATNSimulator":255,"../atn/PredictionContext":297}],317:[function(require,module,exports){
52188
+ },{"../Decorators":219,"../Recognizer":239,"../VocabularyImpl":250,"../atn/ATNSimulator":257,"../atn/PredictionContext":299}],319:[function(require,module,exports){
52089
52189
  "use strict";
52090
52190
  /*!
52091
52191
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52316,7 +52416,7 @@ exports.DFAState = DFAState;
52316
52416
  DFAState.PredPrediction = PredPrediction;
52317
52417
  })(DFAState = exports.DFAState || (exports.DFAState = {}));
52318
52418
 
52319
- },{"../Decorators":217,"../atn/ATN":250,"../atn/PredictionContext":297,"../misc/BitSet":324,"../misc/MurmurHash":332,"assert":360}],318:[function(require,module,exports){
52419
+ },{"../Decorators":219,"../atn/ATN":252,"../atn/PredictionContext":299,"../misc/BitSet":326,"../misc/MurmurHash":334,"assert":362}],320:[function(require,module,exports){
52320
52420
  "use strict";
52321
52421
  /*!
52322
52422
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52353,7 +52453,7 @@ LexerDFASerializer = __decorate([
52353
52453
  ], LexerDFASerializer);
52354
52454
  exports.LexerDFASerializer = LexerDFASerializer;
52355
52455
 
52356
- },{"../Decorators":217,"../VocabularyImpl":248,"./DFASerializer":316}],319:[function(require,module,exports){
52456
+ },{"../Decorators":219,"../VocabularyImpl":250,"./DFASerializer":318}],321:[function(require,module,exports){
52357
52457
  "use strict";
52358
52458
  /*!
52359
52459
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52419,7 +52519,7 @@ __exportStar(require("./Vocabulary"), exports);
52419
52519
  __exportStar(require("./VocabularyImpl"), exports);
52420
52520
  __exportStar(require("./WritableToken"), exports);
52421
52521
 
52422
- },{"./ANTLRErrorListener":204,"./ANTLRErrorStrategy":205,"./ANTLRInputStream":206,"./BailErrorStrategy":207,"./BufferedTokenStream":208,"./CharStream":209,"./CharStreams":210,"./CodePointBuffer":211,"./CodePointCharStream":212,"./CommonToken":213,"./CommonTokenFactory":214,"./CommonTokenStream":215,"./ConsoleErrorListener":216,"./DefaultErrorStrategy":218,"./Dependents":219,"./DiagnosticErrorListener":220,"./FailedPredicateException":221,"./InputMismatchException":222,"./IntStream":223,"./InterpreterRuleContext":224,"./Lexer":225,"./LexerInterpreter":226,"./LexerNoViableAltException":227,"./ListTokenSource":228,"./NoViableAltException":229,"./Parser":230,"./ParserErrorListener":231,"./ParserInterpreter":232,"./ParserRuleContext":233,"./ProxyErrorListener":234,"./ProxyParserErrorListener":235,"./RecognitionException":236,"./Recognizer":237,"./RuleContext":238,"./RuleContextWithAltNum":239,"./RuleDependency":240,"./RuleVersion":241,"./Token":242,"./TokenFactory":243,"./TokenSource":244,"./TokenStream":245,"./TokenStreamRewriter":246,"./Vocabulary":247,"./VocabularyImpl":248,"./WritableToken":249}],320:[function(require,module,exports){
52522
+ },{"./ANTLRErrorListener":206,"./ANTLRErrorStrategy":207,"./ANTLRInputStream":208,"./BailErrorStrategy":209,"./BufferedTokenStream":210,"./CharStream":211,"./CharStreams":212,"./CodePointBuffer":213,"./CodePointCharStream":214,"./CommonToken":215,"./CommonTokenFactory":216,"./CommonTokenStream":217,"./ConsoleErrorListener":218,"./DefaultErrorStrategy":220,"./Dependents":221,"./DiagnosticErrorListener":222,"./FailedPredicateException":223,"./InputMismatchException":224,"./IntStream":225,"./InterpreterRuleContext":226,"./Lexer":227,"./LexerInterpreter":228,"./LexerNoViableAltException":229,"./ListTokenSource":230,"./NoViableAltException":231,"./Parser":232,"./ParserErrorListener":233,"./ParserInterpreter":234,"./ParserRuleContext":235,"./ProxyErrorListener":236,"./ProxyParserErrorListener":237,"./RecognitionException":238,"./Recognizer":239,"./RuleContext":240,"./RuleContextWithAltNum":241,"./RuleDependency":242,"./RuleVersion":243,"./Token":244,"./TokenFactory":245,"./TokenSource":246,"./TokenStream":247,"./TokenStreamRewriter":248,"./Vocabulary":249,"./VocabularyImpl":250,"./WritableToken":251}],322:[function(require,module,exports){
52423
52523
  "use strict";
52424
52524
  /*!
52425
52525
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52502,7 +52602,7 @@ class Array2DHashMap {
52502
52602
  }
52503
52603
  exports.Array2DHashMap = Array2DHashMap;
52504
52604
 
52505
- },{"./Array2DHashSet":321}],321:[function(require,module,exports){
52605
+ },{"./Array2DHashSet":323}],323:[function(require,module,exports){
52506
52606
  "use strict";
52507
52607
  /*!
52508
52608
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52869,7 +52969,7 @@ __decorate([
52869
52969
  ], Array2DHashSet.prototype, "createBuckets", null);
52870
52970
  exports.Array2DHashSet = Array2DHashSet;
52871
52971
 
52872
- },{"../Decorators":217,"./DefaultEqualityComparator":326,"./MurmurHash":332,"assert":360}],322:[function(require,module,exports){
52972
+ },{"../Decorators":219,"./DefaultEqualityComparator":328,"./MurmurHash":334,"assert":362}],324:[function(require,module,exports){
52873
52973
  "use strict";
52874
52974
  /*!
52875
52975
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52941,7 +53041,7 @@ __decorate([
52941
53041
  ], ArrayEqualityComparator.prototype, "equals", null);
52942
53042
  exports.ArrayEqualityComparator = ArrayEqualityComparator;
52943
53043
 
52944
- },{"../Decorators":217,"./MurmurHash":332,"./ObjectEqualityComparator":333}],323:[function(require,module,exports){
53044
+ },{"../Decorators":219,"./MurmurHash":334,"./ObjectEqualityComparator":335}],325:[function(require,module,exports){
52945
53045
  "use strict";
52946
53046
  /*!
52947
53047
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53011,7 +53111,7 @@ var Arrays;
53011
53111
  Arrays.toString = toString;
53012
53112
  })(Arrays = exports.Arrays || (exports.Arrays = {}));
53013
53113
 
53014
- },{}],324:[function(require,module,exports){
53114
+ },{}],326:[function(require,module,exports){
53015
53115
  "use strict";
53016
53116
  /*!
53017
53117
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53683,7 +53783,7 @@ class BitSetIterator {
53683
53783
  [Symbol.iterator]() { return this; }
53684
53784
  }
53685
53785
 
53686
- },{"./MurmurHash":332,"util":424}],325:[function(require,module,exports){
53786
+ },{"./MurmurHash":334,"util":426}],327:[function(require,module,exports){
53687
53787
  "use strict";
53688
53788
  /*!
53689
53789
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53704,7 +53804,7 @@ function isSupplementaryCodePoint(ch) {
53704
53804
  }
53705
53805
  exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
53706
53806
 
53707
- },{}],326:[function(require,module,exports){
53807
+ },{}],328:[function(require,module,exports){
53708
53808
  "use strict";
53709
53809
  /*!
53710
53810
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53775,7 +53875,7 @@ __decorate([
53775
53875
  ], DefaultEqualityComparator.prototype, "equals", null);
53776
53876
  exports.DefaultEqualityComparator = DefaultEqualityComparator;
53777
53877
 
53778
- },{"../Decorators":217,"./MurmurHash":332,"./ObjectEqualityComparator":333}],327:[function(require,module,exports){
53878
+ },{"../Decorators":219,"./MurmurHash":334,"./ObjectEqualityComparator":335}],329:[function(require,module,exports){
53779
53879
  "use strict";
53780
53880
  /*!
53781
53881
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54069,7 +54169,7 @@ __decorate([
54069
54169
  ], IntegerList.prototype, "toString", null);
54070
54170
  exports.IntegerList = IntegerList;
54071
54171
 
54072
- },{"../Decorators":217,"./Arrays":323}],328:[function(require,module,exports){
54172
+ },{"../Decorators":219,"./Arrays":325}],330:[function(require,module,exports){
54073
54173
  "use strict";
54074
54174
  /*!
54075
54175
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54099,7 +54199,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
54099
54199
  }
54100
54200
  exports.IntegerStack = IntegerStack;
54101
54201
 
54102
- },{"./IntegerList":327}],329:[function(require,module,exports){
54202
+ },{"./IntegerList":329}],331:[function(require,module,exports){
54103
54203
  "use strict";
54104
54204
  /*!
54105
54205
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54242,7 +54342,7 @@ __decorate([
54242
54342
  ], Interval.prototype, "toString", null);
54243
54343
  exports.Interval = Interval;
54244
54344
 
54245
- },{"../Decorators":217}],330:[function(require,module,exports){
54345
+ },{"../Decorators":219}],332:[function(require,module,exports){
54246
54346
  "use strict";
54247
54347
  /*!
54248
54348
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54888,7 +54988,7 @@ __decorate([
54888
54988
  ], IntervalSet, "subtract", null);
54889
54989
  exports.IntervalSet = IntervalSet;
54890
54990
 
54891
- },{"../Decorators":217,"../Lexer":225,"../Token":242,"./ArrayEqualityComparator":322,"./IntegerList":327,"./Interval":329,"./MurmurHash":332}],331:[function(require,module,exports){
54991
+ },{"../Decorators":219,"../Lexer":227,"../Token":244,"./ArrayEqualityComparator":324,"./IntegerList":329,"./Interval":331,"./MurmurHash":334}],333:[function(require,module,exports){
54892
54992
  "use strict";
54893
54993
  /*!
54894
54994
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54921,7 +55021,7 @@ class MultiMap extends Map {
54921
55021
  }
54922
55022
  exports.MultiMap = MultiMap;
54923
55023
 
54924
- },{}],332:[function(require,module,exports){
55024
+ },{}],334:[function(require,module,exports){
54925
55025
  "use strict";
54926
55026
  /*!
54927
55027
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55036,7 +55136,7 @@ var MurmurHash;
55036
55136
  }
55037
55137
  })(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
55038
55138
 
55039
- },{}],333:[function(require,module,exports){
55139
+ },{}],335:[function(require,module,exports){
55040
55140
  "use strict";
55041
55141
  /*!
55042
55142
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55095,7 +55195,7 @@ __decorate([
55095
55195
  ], ObjectEqualityComparator.prototype, "equals", null);
55096
55196
  exports.ObjectEqualityComparator = ObjectEqualityComparator;
55097
55197
 
55098
- },{"../Decorators":217}],334:[function(require,module,exports){
55198
+ },{"../Decorators":219}],336:[function(require,module,exports){
55099
55199
  "use strict";
55100
55200
  /*!
55101
55201
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55124,7 +55224,7 @@ class ParseCancellationException extends Error {
55124
55224
  }
55125
55225
  exports.ParseCancellationException = ParseCancellationException;
55126
55226
 
55127
- },{}],335:[function(require,module,exports){
55227
+ },{}],337:[function(require,module,exports){
55128
55228
  "use strict";
55129
55229
  /*!
55130
55230
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55178,7 +55278,7 @@ class UUID {
55178
55278
  }
55179
55279
  exports.UUID = UUID;
55180
55280
 
55181
- },{"./MurmurHash":332}],336:[function(require,module,exports){
55281
+ },{"./MurmurHash":334}],338:[function(require,module,exports){
55182
55282
  "use strict";
55183
55283
  /*!
55184
55284
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55353,7 +55453,7 @@ exports.toCharArray = toCharArray;
55353
55453
  // return s;
55354
55454
  // }
55355
55455
 
55356
- },{}],337:[function(require,module,exports){
55456
+ },{}],339:[function(require,module,exports){
55357
55457
  "use strict";
55358
55458
  /*!
55359
55459
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55389,7 +55489,7 @@ __decorate([
55389
55489
  ], ErrorNode.prototype, "accept", null);
55390
55490
  exports.ErrorNode = ErrorNode;
55391
55491
 
55392
- },{"../Decorators":217,"./TerminalNode":340}],338:[function(require,module,exports){
55492
+ },{"../Decorators":219,"./TerminalNode":342}],340:[function(require,module,exports){
55393
55493
  "use strict";
55394
55494
  /*!
55395
55495
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55494,7 +55594,7 @@ exports.ParseTreeWalker = ParseTreeWalker;
55494
55594
  ParseTreeWalker.DEFAULT = new ParseTreeWalker();
55495
55595
  })(ParseTreeWalker = exports.ParseTreeWalker || (exports.ParseTreeWalker = {}));
55496
55596
 
55497
- },{"./ErrorNode":337,"./RuleNode":339,"./TerminalNode":340}],339:[function(require,module,exports){
55597
+ },{"./ErrorNode":339,"./RuleNode":341,"./TerminalNode":342}],341:[function(require,module,exports){
55498
55598
  "use strict";
55499
55599
  /*!
55500
55600
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55506,7 +55606,7 @@ class RuleNode {
55506
55606
  }
55507
55607
  exports.RuleNode = RuleNode;
55508
55608
 
55509
- },{}],340:[function(require,module,exports){
55609
+ },{}],342:[function(require,module,exports){
55510
55610
  "use strict";
55511
55611
  /*!
55512
55612
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55598,7 +55698,7 @@ __decorate([
55598
55698
  ], TerminalNode.prototype, "toString", null);
55599
55699
  exports.TerminalNode = TerminalNode;
55600
55700
 
55601
- },{"../Decorators":217,"../Token":242,"../misc/Interval":329}],341:[function(require,module,exports){
55701
+ },{"../Decorators":219,"../Token":244,"../misc/Interval":331}],343:[function(require,module,exports){
55602
55702
  "use strict";
55603
55703
  /*!
55604
55704
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55842,7 +55942,7 @@ __decorate([
55842
55942
  ], Trees, "getRootOfSubtreeEnclosingRegion", null);
55843
55943
  exports.Trees = Trees;
55844
55944
 
55845
- },{"../CommonToken":213,"../Decorators":217,"../Parser":230,"../ParserRuleContext":233,"../Token":242,"../atn/ATN":250,"../misc/Utils":336,"./ErrorNode":337,"./RuleNode":339,"./TerminalNode":340}],342:[function(require,module,exports){
55945
+ },{"../CommonToken":215,"../Decorators":219,"../Parser":232,"../ParserRuleContext":235,"../Token":244,"../atn/ATN":252,"../misc/Utils":338,"./ErrorNode":339,"./RuleNode":341,"./TerminalNode":342}],344:[function(require,module,exports){
55846
55946
  "use strict";
55847
55947
  /*!
55848
55948
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55866,7 +55966,7 @@ class Chunk {
55866
55966
  }
55867
55967
  exports.Chunk = Chunk;
55868
55968
 
55869
- },{}],343:[function(require,module,exports){
55969
+ },{}],345:[function(require,module,exports){
55870
55970
  "use strict";
55871
55971
  /*!
55872
55972
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56046,7 +56146,7 @@ ParseTreeMatch = __decorate([
56046
56146
  ], ParseTreeMatch);
56047
56147
  exports.ParseTreeMatch = ParseTreeMatch;
56048
56148
 
56049
- },{"../../Decorators":217}],344:[function(require,module,exports){
56149
+ },{"../../Decorators":219}],346:[function(require,module,exports){
56050
56150
  "use strict";
56051
56151
  /*!
56052
56152
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56204,7 +56304,7 @@ ParseTreePattern = __decorate([
56204
56304
  ], ParseTreePattern);
56205
56305
  exports.ParseTreePattern = ParseTreePattern;
56206
56306
 
56207
- },{"../../Decorators":217,"../xpath/XPath":350}],345:[function(require,module,exports){
56307
+ },{"../../Decorators":219,"../xpath/XPath":352}],347:[function(require,module,exports){
56208
56308
  "use strict";
56209
56309
  /*!
56210
56310
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56682,7 +56782,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
56682
56782
  ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
56683
56783
  })(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
56684
56784
 
56685
- },{"../../BailErrorStrategy":207,"../../CharStreams":210,"../../CommonTokenStream":215,"../../Decorators":217,"../../ListTokenSource":228,"../../ParserInterpreter":232,"../../ParserRuleContext":233,"../../RecognitionException":236,"../../Token":242,"../../misc/MultiMap":331,"../../misc/ParseCancellationException":334,"../RuleNode":339,"../TerminalNode":340,"./ParseTreeMatch":343,"./ParseTreePattern":344,"./RuleTagToken":346,"./TagChunk":347,"./TextChunk":348,"./TokenTagToken":349}],346:[function(require,module,exports){
56785
+ },{"../../BailErrorStrategy":209,"../../CharStreams":212,"../../CommonTokenStream":217,"../../Decorators":219,"../../ListTokenSource":230,"../../ParserInterpreter":234,"../../ParserRuleContext":235,"../../RecognitionException":238,"../../Token":244,"../../misc/MultiMap":333,"../../misc/ParseCancellationException":336,"../RuleNode":341,"../TerminalNode":342,"./ParseTreeMatch":345,"./ParseTreePattern":346,"./RuleTagToken":348,"./TagChunk":349,"./TextChunk":350,"./TokenTagToken":351}],348:[function(require,module,exports){
56686
56786
  "use strict";
56687
56787
  /*!
56688
56788
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56880,7 +56980,7 @@ RuleTagToken = __decorate([
56880
56980
  ], RuleTagToken);
56881
56981
  exports.RuleTagToken = RuleTagToken;
56882
56982
 
56883
- },{"../../Decorators":217,"../../Token":242}],347:[function(require,module,exports){
56983
+ },{"../../Decorators":219,"../../Token":244}],349:[function(require,module,exports){
56884
56984
  "use strict";
56885
56985
  /*!
56886
56986
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56967,7 +57067,7 @@ __decorate([
56967
57067
  ], TagChunk.prototype, "toString", null);
56968
57068
  exports.TagChunk = TagChunk;
56969
57069
 
56970
- },{"../../Decorators":217,"./Chunk":342}],348:[function(require,module,exports){
57070
+ },{"../../Decorators":219,"./Chunk":344}],350:[function(require,module,exports){
56971
57071
  "use strict";
56972
57072
  /*!
56973
57073
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57037,7 +57137,7 @@ TextChunk = __decorate([
57037
57137
  ], TextChunk);
57038
57138
  exports.TextChunk = TextChunk;
57039
57139
 
57040
- },{"../../Decorators":217,"./Chunk":342}],349:[function(require,module,exports){
57140
+ },{"../../Decorators":219,"./Chunk":344}],351:[function(require,module,exports){
57041
57141
  "use strict";
57042
57142
  /*!
57043
57143
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57132,7 +57232,7 @@ TokenTagToken = __decorate([
57132
57232
  ], TokenTagToken);
57133
57233
  exports.TokenTagToken = TokenTagToken;
57134
57234
 
57135
- },{"../../CommonToken":213,"../../Decorators":217}],350:[function(require,module,exports){
57235
+ },{"../../CommonToken":215,"../../Decorators":219}],352:[function(require,module,exports){
57136
57236
  "use strict";
57137
57237
  /*!
57138
57238
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57329,7 +57429,7 @@ exports.XPath = XPath;
57329
57429
  XPath.WILDCARD = "*"; // word not operator/separator
57330
57430
  XPath.NOT = "!"; // word for invert operator
57331
57431
 
57332
- },{"../../CharStreams":210,"../../CommonTokenStream":215,"../../LexerNoViableAltException":227,"../../ParserRuleContext":233,"../../Token":242,"./XPathLexer":352,"./XPathLexerErrorListener":353,"./XPathRuleAnywhereElement":354,"./XPathRuleElement":355,"./XPathTokenAnywhereElement":356,"./XPathTokenElement":357,"./XPathWildcardAnywhereElement":358,"./XPathWildcardElement":359}],351:[function(require,module,exports){
57432
+ },{"../../CharStreams":212,"../../CommonTokenStream":217,"../../LexerNoViableAltException":229,"../../ParserRuleContext":235,"../../Token":244,"./XPathLexer":354,"./XPathLexerErrorListener":355,"./XPathRuleAnywhereElement":356,"./XPathRuleElement":357,"./XPathTokenAnywhereElement":358,"./XPathTokenElement":359,"./XPathWildcardAnywhereElement":360,"./XPathWildcardElement":361}],353:[function(require,module,exports){
57333
57433
  "use strict";
57334
57434
  /*!
57335
57435
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57364,7 +57464,7 @@ __decorate([
57364
57464
  ], XPathElement.prototype, "toString", null);
57365
57465
  exports.XPathElement = XPathElement;
57366
57466
 
57367
- },{"../../Decorators":217}],352:[function(require,module,exports){
57467
+ },{"../../Decorators":219}],354:[function(require,module,exports){
57368
57468
  "use strict";
57369
57469
  // Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
57370
57470
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -57839,7 +57939,7 @@ XPathLexer._serializedATN = Utils.join([
57839
57939
  XPathLexer._serializedATNSegment1,
57840
57940
  ], "");
57841
57941
 
57842
- },{"../../Lexer":225,"../../VocabularyImpl":248,"../../atn/ATNDeserializer":254,"../../atn/LexerATNSimulator":275,"../../misc/Utils":336}],353:[function(require,module,exports){
57942
+ },{"../../Lexer":227,"../../VocabularyImpl":250,"../../atn/ATNDeserializer":256,"../../atn/LexerATNSimulator":277,"../../misc/Utils":338}],355:[function(require,module,exports){
57843
57943
  "use strict";
57844
57944
  /*!
57845
57945
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57864,7 +57964,7 @@ __decorate([
57864
57964
  ], XPathLexerErrorListener.prototype, "syntaxError", null);
57865
57965
  exports.XPathLexerErrorListener = XPathLexerErrorListener;
57866
57966
 
57867
- },{"../../Decorators":217}],354:[function(require,module,exports){
57967
+ },{"../../Decorators":219}],356:[function(require,module,exports){
57868
57968
  "use strict";
57869
57969
  /*!
57870
57970
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57898,7 +57998,7 @@ __decorate([
57898
57998
  ], XPathRuleAnywhereElement.prototype, "evaluate", null);
57899
57999
  exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
57900
58000
 
57901
- },{"../../Decorators":217,"../Trees":341,"./XPathElement":351}],355:[function(require,module,exports){
58001
+ },{"../../Decorators":219,"../Trees":343,"./XPathElement":353}],357:[function(require,module,exports){
57902
58002
  "use strict";
57903
58003
  /*!
57904
58004
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57941,7 +58041,7 @@ __decorate([
57941
58041
  ], XPathRuleElement.prototype, "evaluate", null);
57942
58042
  exports.XPathRuleElement = XPathRuleElement;
57943
58043
 
57944
- },{"../../Decorators":217,"../../ParserRuleContext":233,"../Trees":341,"./XPathElement":351}],356:[function(require,module,exports){
58044
+ },{"../../Decorators":219,"../../ParserRuleContext":235,"../Trees":343,"./XPathElement":353}],358:[function(require,module,exports){
57945
58045
  "use strict";
57946
58046
  /*!
57947
58047
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57973,7 +58073,7 @@ __decorate([
57973
58073
  ], XPathTokenAnywhereElement.prototype, "evaluate", null);
57974
58074
  exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
57975
58075
 
57976
- },{"../../Decorators":217,"../Trees":341,"./XPathElement":351}],357:[function(require,module,exports){
58076
+ },{"../../Decorators":219,"../Trees":343,"./XPathElement":353}],359:[function(require,module,exports){
57977
58077
  "use strict";
57978
58078
  /*!
57979
58079
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -58016,7 +58116,7 @@ __decorate([
58016
58116
  ], XPathTokenElement.prototype, "evaluate", null);
58017
58117
  exports.XPathTokenElement = XPathTokenElement;
58018
58118
 
58019
- },{"../../Decorators":217,"../TerminalNode":340,"../Trees":341,"./XPathElement":351}],358:[function(require,module,exports){
58119
+ },{"../../Decorators":219,"../TerminalNode":342,"../Trees":343,"./XPathElement":353}],360:[function(require,module,exports){
58020
58120
  "use strict";
58021
58121
  /*!
58022
58122
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -58052,7 +58152,7 @@ __decorate([
58052
58152
  ], XPathWildcardAnywhereElement.prototype, "evaluate", null);
58053
58153
  exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
58054
58154
 
58055
- },{"../../Decorators":217,"../Trees":341,"./XPath":350,"./XPathElement":351}],359:[function(require,module,exports){
58155
+ },{"../../Decorators":219,"../Trees":343,"./XPath":352,"./XPathElement":353}],361:[function(require,module,exports){
58056
58156
  "use strict";
58057
58157
  /*!
58058
58158
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -58092,7 +58192,7 @@ __decorate([
58092
58192
  ], XPathWildcardElement.prototype, "evaluate", null);
58093
58193
  exports.XPathWildcardElement = XPathWildcardElement;
58094
58194
 
58095
- },{"../../Decorators":217,"../Trees":341,"./XPath":350,"./XPathElement":351}],360:[function(require,module,exports){
58195
+ },{"../../Decorators":219,"../Trees":343,"./XPath":352,"./XPathElement":353}],362:[function(require,module,exports){
58096
58196
  (function (global){(function (){
58097
58197
  'use strict';
58098
58198
 
@@ -58602,7 +58702,7 @@ var objectKeys = Object.keys || function (obj) {
58602
58702
  };
58603
58703
 
58604
58704
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
58605
- },{"object.assign/polyfill":417,"util/":363}],361:[function(require,module,exports){
58705
+ },{"object.assign/polyfill":419,"util/":365}],363:[function(require,module,exports){
58606
58706
  if (typeof Object.create === 'function') {
58607
58707
  // implementation from standard node.js 'util' module
58608
58708
  module.exports = function inherits(ctor, superCtor) {
@@ -58627,14 +58727,14 @@ if (typeof Object.create === 'function') {
58627
58727
  }
58628
58728
  }
58629
58729
 
58630
- },{}],362:[function(require,module,exports){
58730
+ },{}],364:[function(require,module,exports){
58631
58731
  module.exports = function isBuffer(arg) {
58632
58732
  return arg && typeof arg === 'object'
58633
58733
  && typeof arg.copy === 'function'
58634
58734
  && typeof arg.fill === 'function'
58635
58735
  && typeof arg.readUInt8 === 'function';
58636
58736
  }
58637
- },{}],363:[function(require,module,exports){
58737
+ },{}],365:[function(require,module,exports){
58638
58738
  (function (process,global){(function (){
58639
58739
  // Copyright Joyent, Inc. and other Node contributors.
58640
58740
  //
@@ -59224,7 +59324,7 @@ function hasOwnProperty(obj, prop) {
59224
59324
  }
59225
59325
 
59226
59326
  }).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
59227
- },{"./support/isBuffer":362,"_process":419,"inherits":361}],364:[function(require,module,exports){
59327
+ },{"./support/isBuffer":364,"_process":421,"inherits":363}],366:[function(require,module,exports){
59228
59328
  (function (global){(function (){
59229
59329
  'use strict';
59230
59330
 
@@ -59245,7 +59345,7 @@ module.exports = function availableTypedArrays() {
59245
59345
  };
59246
59346
 
59247
59347
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
59248
- },{"possible-typed-array-names":418}],365:[function(require,module,exports){
59348
+ },{"possible-typed-array-names":420}],367:[function(require,module,exports){
59249
59349
  (function (process,global){(function (){
59250
59350
  module.exports = process.hrtime || hrtime
59251
59351
 
@@ -59276,7 +59376,7 @@ function hrtime(previousTimestamp){
59276
59376
  return [seconds,nanoseconds]
59277
59377
  }
59278
59378
  }).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
59279
- },{"_process":419}],366:[function(require,module,exports){
59379
+ },{"_process":421}],368:[function(require,module,exports){
59280
59380
  'use strict';
59281
59381
 
59282
59382
  var bind = require('function-bind');
@@ -59288,7 +59388,7 @@ var $reflectApply = require('./reflectApply');
59288
59388
  /** @type {import('./actualApply')} */
59289
59389
  module.exports = $reflectApply || bind.call($call, $apply);
59290
59390
 
59291
- },{"./functionApply":368,"./functionCall":369,"./reflectApply":371,"function-bind":387}],367:[function(require,module,exports){
59391
+ },{"./functionApply":370,"./functionCall":371,"./reflectApply":373,"function-bind":389}],369:[function(require,module,exports){
59292
59392
  'use strict';
59293
59393
 
59294
59394
  var bind = require('function-bind');
@@ -59300,19 +59400,19 @@ module.exports = function applyBind() {
59300
59400
  return actualApply(bind, $apply, arguments);
59301
59401
  };
59302
59402
 
59303
- },{"./actualApply":366,"./functionApply":368,"function-bind":387}],368:[function(require,module,exports){
59403
+ },{"./actualApply":368,"./functionApply":370,"function-bind":389}],370:[function(require,module,exports){
59304
59404
  'use strict';
59305
59405
 
59306
59406
  /** @type {import('./functionApply')} */
59307
59407
  module.exports = Function.prototype.apply;
59308
59408
 
59309
- },{}],369:[function(require,module,exports){
59409
+ },{}],371:[function(require,module,exports){
59310
59410
  'use strict';
59311
59411
 
59312
59412
  /** @type {import('./functionCall')} */
59313
59413
  module.exports = Function.prototype.call;
59314
59414
 
59315
- },{}],370:[function(require,module,exports){
59415
+ },{}],372:[function(require,module,exports){
59316
59416
  'use strict';
59317
59417
 
59318
59418
  var bind = require('function-bind');
@@ -59329,13 +59429,13 @@ module.exports = function callBindBasic(args) {
59329
59429
  return $actualApply(bind, $call, args);
59330
59430
  };
59331
59431
 
59332
- },{"./actualApply":366,"./functionCall":369,"es-errors/type":382,"function-bind":387}],371:[function(require,module,exports){
59432
+ },{"./actualApply":368,"./functionCall":371,"es-errors/type":384,"function-bind":389}],373:[function(require,module,exports){
59333
59433
  'use strict';
59334
59434
 
59335
59435
  /** @type {import('./reflectApply')} */
59336
59436
  module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
59337
59437
 
59338
- },{}],372:[function(require,module,exports){
59438
+ },{}],374:[function(require,module,exports){
59339
59439
  'use strict';
59340
59440
 
59341
59441
  var setFunctionLength = require('set-function-length');
@@ -59361,7 +59461,7 @@ if ($defineProperty) {
59361
59461
  module.exports.apply = applyBind;
59362
59462
  }
59363
59463
 
59364
- },{"call-bind-apply-helpers":370,"call-bind-apply-helpers/applyBind":367,"es-define-property":376,"set-function-length":421}],373:[function(require,module,exports){
59464
+ },{"call-bind-apply-helpers":372,"call-bind-apply-helpers/applyBind":369,"es-define-property":378,"set-function-length":423}],375:[function(require,module,exports){
59365
59465
  'use strict';
59366
59466
 
59367
59467
  var GetIntrinsic = require('get-intrinsic');
@@ -59382,7 +59482,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
59382
59482
  return intrinsic;
59383
59483
  };
59384
59484
 
59385
- },{"call-bind-apply-helpers":370,"get-intrinsic":388}],374:[function(require,module,exports){
59485
+ },{"call-bind-apply-helpers":372,"get-intrinsic":390}],376:[function(require,module,exports){
59386
59486
  'use strict';
59387
59487
 
59388
59488
  var $defineProperty = require('es-define-property');
@@ -59440,7 +59540,7 @@ module.exports = function defineDataProperty(
59440
59540
  }
59441
59541
  };
59442
59542
 
59443
- },{"es-define-property":376,"es-errors/syntax":381,"es-errors/type":382,"gopd":393}],375:[function(require,module,exports){
59543
+ },{"es-define-property":378,"es-errors/syntax":383,"es-errors/type":384,"gopd":395}],377:[function(require,module,exports){
59444
59544
  'use strict';
59445
59545
 
59446
59546
  var callBind = require('call-bind-apply-helpers');
@@ -59472,7 +59572,7 @@ module.exports = desc && typeof desc.get === 'function'
59472
59572
  }
59473
59573
  : false;
59474
59574
 
59475
- },{"call-bind-apply-helpers":370,"gopd":393}],376:[function(require,module,exports){
59575
+ },{"call-bind-apply-helpers":372,"gopd":395}],378:[function(require,module,exports){
59476
59576
  'use strict';
59477
59577
 
59478
59578
  /** @type {import('.')} */
@@ -59488,55 +59588,55 @@ if ($defineProperty) {
59488
59588
 
59489
59589
  module.exports = $defineProperty;
59490
59590
 
59491
- },{}],377:[function(require,module,exports){
59591
+ },{}],379:[function(require,module,exports){
59492
59592
  'use strict';
59493
59593
 
59494
59594
  /** @type {import('./eval')} */
59495
59595
  module.exports = EvalError;
59496
59596
 
59497
- },{}],378:[function(require,module,exports){
59597
+ },{}],380:[function(require,module,exports){
59498
59598
  'use strict';
59499
59599
 
59500
59600
  /** @type {import('.')} */
59501
59601
  module.exports = Error;
59502
59602
 
59503
- },{}],379:[function(require,module,exports){
59603
+ },{}],381:[function(require,module,exports){
59504
59604
  'use strict';
59505
59605
 
59506
59606
  /** @type {import('./range')} */
59507
59607
  module.exports = RangeError;
59508
59608
 
59509
- },{}],380:[function(require,module,exports){
59609
+ },{}],382:[function(require,module,exports){
59510
59610
  'use strict';
59511
59611
 
59512
59612
  /** @type {import('./ref')} */
59513
59613
  module.exports = ReferenceError;
59514
59614
 
59515
- },{}],381:[function(require,module,exports){
59615
+ },{}],383:[function(require,module,exports){
59516
59616
  'use strict';
59517
59617
 
59518
59618
  /** @type {import('./syntax')} */
59519
59619
  module.exports = SyntaxError;
59520
59620
 
59521
- },{}],382:[function(require,module,exports){
59621
+ },{}],384:[function(require,module,exports){
59522
59622
  'use strict';
59523
59623
 
59524
59624
  /** @type {import('./type')} */
59525
59625
  module.exports = TypeError;
59526
59626
 
59527
- },{}],383:[function(require,module,exports){
59627
+ },{}],385:[function(require,module,exports){
59528
59628
  'use strict';
59529
59629
 
59530
59630
  /** @type {import('./uri')} */
59531
59631
  module.exports = URIError;
59532
59632
 
59533
- },{}],384:[function(require,module,exports){
59633
+ },{}],386:[function(require,module,exports){
59534
59634
  'use strict';
59535
59635
 
59536
59636
  /** @type {import('.')} */
59537
59637
  module.exports = Object;
59538
59638
 
59539
- },{}],385:[function(require,module,exports){
59639
+ },{}],387:[function(require,module,exports){
59540
59640
  'use strict';
59541
59641
 
59542
59642
  var isCallable = require('is-callable');
@@ -59607,7 +59707,7 @@ module.exports = function forEach(list, iterator, thisArg) {
59607
59707
  }
59608
59708
  };
59609
59709
 
59610
- },{"is-callable":401}],386:[function(require,module,exports){
59710
+ },{"is-callable":403}],388:[function(require,module,exports){
59611
59711
  'use strict';
59612
59712
 
59613
59713
  /* eslint no-invalid-this: 1 */
@@ -59693,14 +59793,14 @@ module.exports = function bind(that) {
59693
59793
  return bound;
59694
59794
  };
59695
59795
 
59696
- },{}],387:[function(require,module,exports){
59796
+ },{}],389:[function(require,module,exports){
59697
59797
  'use strict';
59698
59798
 
59699
59799
  var implementation = require('./implementation');
59700
59800
 
59701
59801
  module.exports = Function.prototype.bind || implementation;
59702
59802
 
59703
- },{"./implementation":386}],388:[function(require,module,exports){
59803
+ },{"./implementation":388}],390:[function(require,module,exports){
59704
59804
  'use strict';
59705
59805
 
59706
59806
  var undefined;
@@ -60080,7 +60180,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
60080
60180
  return value;
60081
60181
  };
60082
60182
 
60083
- },{"call-bind-apply-helpers/functionApply":368,"call-bind-apply-helpers/functionCall":369,"es-define-property":376,"es-errors":378,"es-errors/eval":377,"es-errors/range":379,"es-errors/ref":380,"es-errors/syntax":381,"es-errors/type":382,"es-errors/uri":383,"es-object-atoms":384,"function-bind":387,"get-proto":391,"get-proto/Object.getPrototypeOf":389,"get-proto/Reflect.getPrototypeOf":390,"gopd":393,"has-symbols":395,"hasown":398,"math-intrinsics/abs":405,"math-intrinsics/floor":406,"math-intrinsics/max":408,"math-intrinsics/min":409,"math-intrinsics/pow":410,"math-intrinsics/round":411,"math-intrinsics/sign":412}],389:[function(require,module,exports){
60183
+ },{"call-bind-apply-helpers/functionApply":370,"call-bind-apply-helpers/functionCall":371,"es-define-property":378,"es-errors":380,"es-errors/eval":379,"es-errors/range":381,"es-errors/ref":382,"es-errors/syntax":383,"es-errors/type":384,"es-errors/uri":385,"es-object-atoms":386,"function-bind":389,"get-proto":393,"get-proto/Object.getPrototypeOf":391,"get-proto/Reflect.getPrototypeOf":392,"gopd":395,"has-symbols":397,"hasown":400,"math-intrinsics/abs":407,"math-intrinsics/floor":408,"math-intrinsics/max":410,"math-intrinsics/min":411,"math-intrinsics/pow":412,"math-intrinsics/round":413,"math-intrinsics/sign":414}],391:[function(require,module,exports){
60084
60184
  'use strict';
60085
60185
 
60086
60186
  var $Object = require('es-object-atoms');
@@ -60088,13 +60188,13 @@ var $Object = require('es-object-atoms');
60088
60188
  /** @type {import('./Object.getPrototypeOf')} */
60089
60189
  module.exports = $Object.getPrototypeOf || null;
60090
60190
 
60091
- },{"es-object-atoms":384}],390:[function(require,module,exports){
60191
+ },{"es-object-atoms":386}],392:[function(require,module,exports){
60092
60192
  'use strict';
60093
60193
 
60094
60194
  /** @type {import('./Reflect.getPrototypeOf')} */
60095
60195
  module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
60096
60196
 
60097
- },{}],391:[function(require,module,exports){
60197
+ },{}],393:[function(require,module,exports){
60098
60198
  'use strict';
60099
60199
 
60100
60200
  var reflectGetProto = require('./Reflect.getPrototypeOf');
@@ -60123,13 +60223,13 @@ module.exports = reflectGetProto
60123
60223
  }
60124
60224
  : null;
60125
60225
 
60126
- },{"./Object.getPrototypeOf":389,"./Reflect.getPrototypeOf":390,"dunder-proto/get":375}],392:[function(require,module,exports){
60226
+ },{"./Object.getPrototypeOf":391,"./Reflect.getPrototypeOf":392,"dunder-proto/get":377}],394:[function(require,module,exports){
60127
60227
  'use strict';
60128
60228
 
60129
60229
  /** @type {import('./gOPD')} */
60130
60230
  module.exports = Object.getOwnPropertyDescriptor;
60131
60231
 
60132
- },{}],393:[function(require,module,exports){
60232
+ },{}],395:[function(require,module,exports){
60133
60233
  'use strict';
60134
60234
 
60135
60235
  /** @type {import('.')} */
@@ -60146,7 +60246,7 @@ if ($gOPD) {
60146
60246
 
60147
60247
  module.exports = $gOPD;
60148
60248
 
60149
- },{"./gOPD":392}],394:[function(require,module,exports){
60249
+ },{"./gOPD":394}],396:[function(require,module,exports){
60150
60250
  'use strict';
60151
60251
 
60152
60252
  var $defineProperty = require('es-define-property');
@@ -60170,7 +60270,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
60170
60270
 
60171
60271
  module.exports = hasPropertyDescriptors;
60172
60272
 
60173
- },{"es-define-property":376}],395:[function(require,module,exports){
60273
+ },{"es-define-property":378}],397:[function(require,module,exports){
60174
60274
  'use strict';
60175
60275
 
60176
60276
  var origSymbol = typeof Symbol !== 'undefined' && Symbol;
@@ -60186,7 +60286,7 @@ module.exports = function hasNativeSymbols() {
60186
60286
  return hasSymbolSham();
60187
60287
  };
60188
60288
 
60189
- },{"./shams":396}],396:[function(require,module,exports){
60289
+ },{"./shams":398}],398:[function(require,module,exports){
60190
60290
  'use strict';
60191
60291
 
60192
60292
  /** @type {import('./shams')} */
@@ -60233,7 +60333,7 @@ module.exports = function hasSymbols() {
60233
60333
  return true;
60234
60334
  };
60235
60335
 
60236
- },{}],397:[function(require,module,exports){
60336
+ },{}],399:[function(require,module,exports){
60237
60337
  'use strict';
60238
60338
 
60239
60339
  var hasSymbols = require('has-symbols/shams');
@@ -60243,7 +60343,7 @@ module.exports = function hasToStringTagShams() {
60243
60343
  return hasSymbols() && !!Symbol.toStringTag;
60244
60344
  };
60245
60345
 
60246
- },{"has-symbols/shams":396}],398:[function(require,module,exports){
60346
+ },{"has-symbols/shams":398}],400:[function(require,module,exports){
60247
60347
  'use strict';
60248
60348
 
60249
60349
  var call = Function.prototype.call;
@@ -60253,7 +60353,7 @@ var bind = require('function-bind');
60253
60353
  /** @type {import('.')} */
60254
60354
  module.exports = bind.call(call, $hasOwn);
60255
60355
 
60256
- },{"function-bind":387}],399:[function(require,module,exports){
60356
+ },{"function-bind":389}],401:[function(require,module,exports){
60257
60357
  if (typeof Object.create === 'function') {
60258
60358
  // implementation from standard node.js 'util' module
60259
60359
  module.exports = function inherits(ctor, superCtor) {
@@ -60282,7 +60382,7 @@ if (typeof Object.create === 'function') {
60282
60382
  }
60283
60383
  }
60284
60384
 
60285
- },{}],400:[function(require,module,exports){
60385
+ },{}],402:[function(require,module,exports){
60286
60386
  'use strict';
60287
60387
 
60288
60388
  var hasToStringTag = require('has-tostringtag/shams')();
@@ -60328,7 +60428,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
60328
60428
  /** @type {import('.')} */
60329
60429
  module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
60330
60430
 
60331
- },{"call-bound":373,"has-tostringtag/shams":397}],401:[function(require,module,exports){
60431
+ },{"call-bound":375,"has-tostringtag/shams":399}],403:[function(require,module,exports){
60332
60432
  'use strict';
60333
60433
 
60334
60434
  var fnToStr = Function.prototype.toString;
@@ -60431,7 +60531,7 @@ module.exports = reflectApply
60431
60531
  return tryFunctionObject(value);
60432
60532
  };
60433
60533
 
60434
- },{}],402:[function(require,module,exports){
60534
+ },{}],404:[function(require,module,exports){
60435
60535
  'use strict';
60436
60536
 
60437
60537
  var callBound = require('call-bound');
@@ -60480,7 +60580,7 @@ module.exports = function isGeneratorFunction(fn) {
60480
60580
  return getProto(fn) === GeneratorFunction;
60481
60581
  };
60482
60582
 
60483
- },{"call-bound":373,"get-proto":391,"has-tostringtag/shams":397,"safe-regex-test":420}],403:[function(require,module,exports){
60583
+ },{"call-bound":375,"get-proto":393,"has-tostringtag/shams":399,"safe-regex-test":422}],405:[function(require,module,exports){
60484
60584
  'use strict';
60485
60585
 
60486
60586
  var callBound = require('call-bound');
@@ -60551,7 +60651,7 @@ if (hasToStringTag) {
60551
60651
 
60552
60652
  module.exports = fn;
60553
60653
 
60554
- },{"call-bound":373,"gopd":393,"has-tostringtag/shams":397,"hasown":398}],404:[function(require,module,exports){
60654
+ },{"call-bound":375,"gopd":395,"has-tostringtag/shams":399,"hasown":400}],406:[function(require,module,exports){
60555
60655
  'use strict';
60556
60656
 
60557
60657
  var whichTypedArray = require('which-typed-array');
@@ -60561,19 +60661,19 @@ module.exports = function isTypedArray(value) {
60561
60661
  return !!whichTypedArray(value);
60562
60662
  };
60563
60663
 
60564
- },{"which-typed-array":425}],405:[function(require,module,exports){
60664
+ },{"which-typed-array":427}],407:[function(require,module,exports){
60565
60665
  'use strict';
60566
60666
 
60567
60667
  /** @type {import('./abs')} */
60568
60668
  module.exports = Math.abs;
60569
60669
 
60570
- },{}],406:[function(require,module,exports){
60670
+ },{}],408:[function(require,module,exports){
60571
60671
  'use strict';
60572
60672
 
60573
60673
  /** @type {import('./floor')} */
60574
60674
  module.exports = Math.floor;
60575
60675
 
60576
- },{}],407:[function(require,module,exports){
60676
+ },{}],409:[function(require,module,exports){
60577
60677
  'use strict';
60578
60678
 
60579
60679
  /** @type {import('./isNaN')} */
@@ -60581,31 +60681,31 @@ module.exports = Number.isNaN || function isNaN(a) {
60581
60681
  return a !== a;
60582
60682
  };
60583
60683
 
60584
- },{}],408:[function(require,module,exports){
60684
+ },{}],410:[function(require,module,exports){
60585
60685
  'use strict';
60586
60686
 
60587
60687
  /** @type {import('./max')} */
60588
60688
  module.exports = Math.max;
60589
60689
 
60590
- },{}],409:[function(require,module,exports){
60690
+ },{}],411:[function(require,module,exports){
60591
60691
  'use strict';
60592
60692
 
60593
60693
  /** @type {import('./min')} */
60594
60694
  module.exports = Math.min;
60595
60695
 
60596
- },{}],410:[function(require,module,exports){
60696
+ },{}],412:[function(require,module,exports){
60597
60697
  'use strict';
60598
60698
 
60599
60699
  /** @type {import('./pow')} */
60600
60700
  module.exports = Math.pow;
60601
60701
 
60602
- },{}],411:[function(require,module,exports){
60702
+ },{}],413:[function(require,module,exports){
60603
60703
  'use strict';
60604
60704
 
60605
60705
  /** @type {import('./round')} */
60606
60706
  module.exports = Math.round;
60607
60707
 
60608
- },{}],412:[function(require,module,exports){
60708
+ },{}],414:[function(require,module,exports){
60609
60709
  'use strict';
60610
60710
 
60611
60711
  var $isNaN = require('./isNaN');
@@ -60618,7 +60718,7 @@ module.exports = function sign(number) {
60618
60718
  return number < 0 ? -1 : +1;
60619
60719
  };
60620
60720
 
60621
- },{"./isNaN":407}],413:[function(require,module,exports){
60721
+ },{"./isNaN":409}],415:[function(require,module,exports){
60622
60722
  'use strict';
60623
60723
 
60624
60724
  var keysShim;
@@ -60742,7 +60842,7 @@ if (!Object.keys) {
60742
60842
  }
60743
60843
  module.exports = keysShim;
60744
60844
 
60745
- },{"./isArguments":415}],414:[function(require,module,exports){
60845
+ },{"./isArguments":417}],416:[function(require,module,exports){
60746
60846
  'use strict';
60747
60847
 
60748
60848
  var slice = Array.prototype.slice;
@@ -60776,7 +60876,7 @@ keysShim.shim = function shimObjectKeys() {
60776
60876
 
60777
60877
  module.exports = keysShim;
60778
60878
 
60779
- },{"./implementation":413,"./isArguments":415}],415:[function(require,module,exports){
60879
+ },{"./implementation":415,"./isArguments":417}],417:[function(require,module,exports){
60780
60880
  'use strict';
60781
60881
 
60782
60882
  var toStr = Object.prototype.toString;
@@ -60795,7 +60895,7 @@ module.exports = function isArguments(value) {
60795
60895
  return isArgs;
60796
60896
  };
60797
60897
 
60798
- },{}],416:[function(require,module,exports){
60898
+ },{}],418:[function(require,module,exports){
60799
60899
  'use strict';
60800
60900
 
60801
60901
  // modified from https://github.com/es-shims/es6-shim
@@ -60843,7 +60943,7 @@ module.exports = function assign(target, source1) {
60843
60943
  return to; // step 4
60844
60944
  };
60845
60945
 
60846
- },{"call-bound":373,"es-object-atoms":384,"has-symbols/shams":396,"object-keys":414}],417:[function(require,module,exports){
60946
+ },{"call-bound":375,"es-object-atoms":386,"has-symbols/shams":398,"object-keys":416}],419:[function(require,module,exports){
60847
60947
  'use strict';
60848
60948
 
60849
60949
  var implementation = require('./implementation');
@@ -60900,7 +61000,7 @@ module.exports = function getPolyfill() {
60900
61000
  return Object.assign;
60901
61001
  };
60902
61002
 
60903
- },{"./implementation":416}],418:[function(require,module,exports){
61003
+ },{"./implementation":418}],420:[function(require,module,exports){
60904
61004
  'use strict';
60905
61005
 
60906
61006
  /** @type {import('.')} */
@@ -60919,7 +61019,7 @@ module.exports = [
60919
61019
  'BigUint64Array'
60920
61020
  ];
60921
61021
 
60922
- },{}],419:[function(require,module,exports){
61022
+ },{}],421:[function(require,module,exports){
60923
61023
  // shim for using process in browser
60924
61024
  var process = module.exports = {};
60925
61025
 
@@ -61105,7 +61205,7 @@ process.chdir = function (dir) {
61105
61205
  };
61106
61206
  process.umask = function() { return 0; };
61107
61207
 
61108
- },{}],420:[function(require,module,exports){
61208
+ },{}],422:[function(require,module,exports){
61109
61209
  'use strict';
61110
61210
 
61111
61211
  var callBound = require('call-bound');
@@ -61124,7 +61224,7 @@ module.exports = function regexTester(regex) {
61124
61224
  };
61125
61225
  };
61126
61226
 
61127
- },{"call-bound":373,"es-errors/type":382,"is-regex":403}],421:[function(require,module,exports){
61227
+ },{"call-bound":375,"es-errors/type":384,"is-regex":405}],423:[function(require,module,exports){
61128
61228
  'use strict';
61129
61229
 
61130
61230
  var GetIntrinsic = require('get-intrinsic');
@@ -61168,9 +61268,9 @@ module.exports = function setFunctionLength(fn, length) {
61168
61268
  return fn;
61169
61269
  };
61170
61270
 
61171
- },{"define-data-property":374,"es-errors/type":382,"get-intrinsic":388,"gopd":393,"has-property-descriptors":394}],422:[function(require,module,exports){
61172
- arguments[4][362][0].apply(exports,arguments)
61173
- },{"dup":362}],423:[function(require,module,exports){
61271
+ },{"define-data-property":376,"es-errors/type":384,"get-intrinsic":390,"gopd":395,"has-property-descriptors":396}],424:[function(require,module,exports){
61272
+ arguments[4][364][0].apply(exports,arguments)
61273
+ },{"dup":364}],425:[function(require,module,exports){
61174
61274
  // Currently in sync with Node.js lib/internal/util/types.js
61175
61275
  // https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
61176
61276
 
@@ -61506,7 +61606,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
61506
61606
  });
61507
61607
  });
61508
61608
 
61509
- },{"is-arguments":400,"is-generator-function":402,"is-typed-array":404,"which-typed-array":425}],424:[function(require,module,exports){
61609
+ },{"is-arguments":402,"is-generator-function":404,"is-typed-array":406,"which-typed-array":427}],426:[function(require,module,exports){
61510
61610
  (function (process){(function (){
61511
61611
  // Copyright Joyent, Inc. and other Node contributors.
61512
61612
  //
@@ -62225,7 +62325,7 @@ function callbackify(original) {
62225
62325
  exports.callbackify = callbackify;
62226
62326
 
62227
62327
  }).call(this)}).call(this,require('_process'))
62228
- },{"./support/isBuffer":422,"./support/types":423,"_process":419,"inherits":399}],425:[function(require,module,exports){
62328
+ },{"./support/isBuffer":424,"./support/types":425,"_process":421,"inherits":401}],427:[function(require,module,exports){
62229
62329
  (function (global){(function (){
62230
62330
  'use strict';
62231
62331
 
@@ -62346,5 +62446,5 @@ module.exports = function whichTypedArray(value) {
62346
62446
  };
62347
62447
 
62348
62448
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
62349
- },{"available-typed-arrays":364,"call-bind":372,"call-bound":373,"for-each":385,"get-proto":391,"gopd":393,"has-tostringtag/shams":397}]},{},[114])(114)
62449
+ },{"available-typed-arrays":366,"call-bind":374,"call-bound":375,"for-each":387,"get-proto":393,"gopd":395,"has-tostringtag/shams":399}]},{},[115])(115)
62350
62450
  });