@designliquido/delegua 0.54.8 → 0.56.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 (65) hide show
  1. package/README.md +7 -0
  2. package/avaliador-sintatico/avaliador-sintatico-base.d.ts +1 -2
  3. package/avaliador-sintatico/avaliador-sintatico-base.d.ts.map +1 -1
  4. package/avaliador-sintatico/avaliador-sintatico-base.js +0 -3
  5. package/avaliador-sintatico/avaliador-sintatico-base.js.map +1 -1
  6. package/avaliador-sintatico/avaliador-sintatico.d.ts +4 -1
  7. package/avaliador-sintatico/avaliador-sintatico.d.ts.map +1 -1
  8. package/avaliador-sintatico/avaliador-sintatico.js +66 -5
  9. package/avaliador-sintatico/avaliador-sintatico.js.map +1 -1
  10. package/avaliador-sintatico/micro-avaliador-sintatico.d.ts +2 -0
  11. package/avaliador-sintatico/micro-avaliador-sintatico.d.ts.map +1 -1
  12. package/avaliador-sintatico/micro-avaliador-sintatico.js +17 -0
  13. package/avaliador-sintatico/micro-avaliador-sintatico.js.map +1 -1
  14. package/bibliotecas/primitivas-texto.d.ts.map +1 -1
  15. package/bibliotecas/primitivas-texto.js +23 -0
  16. package/bibliotecas/primitivas-texto.js.map +1 -1
  17. package/bin/package.json +1 -1
  18. package/construtos/elvis.d.ts +12 -0
  19. package/construtos/elvis.d.ts.map +1 -0
  20. package/construtos/elvis.js +21 -0
  21. package/construtos/elvis.js.map +1 -0
  22. package/construtos/importar-como-construto.d.ts +18 -0
  23. package/construtos/importar-como-construto.d.ts.map +1 -0
  24. package/construtos/importar-como-construto.js +22 -0
  25. package/construtos/importar-como-construto.js.map +1 -0
  26. package/construtos/index.d.ts +2 -0
  27. package/construtos/index.d.ts.map +1 -1
  28. package/construtos/index.js +2 -0
  29. package/construtos/index.js.map +1 -1
  30. package/declaracoes/importar.d.ts +8 -6
  31. package/declaracoes/importar.d.ts.map +1 -1
  32. package/declaracoes/importar.js +3 -1
  33. package/declaracoes/importar.js.map +1 -1
  34. package/interfaces/visitante-comum-interface.d.ts +1 -2
  35. package/interfaces/visitante-comum-interface.d.ts.map +1 -1
  36. package/interfaces/visitante-delegua-interface.d.ts +5 -3
  37. package/interfaces/visitante-delegua-interface.d.ts.map +1 -1
  38. package/interpretador/interpretador.d.ts +3 -1
  39. package/interpretador/interpretador.d.ts.map +1 -1
  40. package/interpretador/interpretador.js +13 -0
  41. package/interpretador/interpretador.js.map +1 -1
  42. package/lexador/lexador.d.ts.map +1 -1
  43. package/lexador/lexador.js +10 -0
  44. package/lexador/lexador.js.map +1 -1
  45. package/lexador/micro-lexador.d.ts.map +1 -1
  46. package/lexador/micro-lexador.js +10 -0
  47. package/lexador/micro-lexador.js.map +1 -1
  48. package/lexador/palavras-reservadas.d.ts +1 -0
  49. package/lexador/palavras-reservadas.d.ts.map +1 -1
  50. package/lexador/palavras-reservadas.js +1 -0
  51. package/lexador/palavras-reservadas.js.map +1 -1
  52. package/package.json +1 -1
  53. package/tipos-de-simbolos/delegua.d.ts +3 -0
  54. package/tipos-de-simbolos/delegua.d.ts.map +1 -1
  55. package/tipos-de-simbolos/delegua.js +3 -0
  56. package/tipos-de-simbolos/delegua.js.map +1 -1
  57. package/tipos-de-simbolos/microgramaticas/delegua.d.ts +2 -0
  58. package/tipos-de-simbolos/microgramaticas/delegua.d.ts.map +1 -1
  59. package/tipos-de-simbolos/microgramaticas/delegua.js +2 -0
  60. package/tipos-de-simbolos/microgramaticas/delegua.js.map +1 -1
  61. package/tradutores/tradutor-javascript.d.ts +13 -11
  62. package/tradutores/tradutor-javascript.d.ts.map +1 -1
  63. package/tradutores/tradutor-javascript.js +25 -26
  64. package/tradutores/tradutor-javascript.js.map +1 -1
  65. package/umd/delegua.js +617 -432
package/umd/delegua.js CHANGED
@@ -217,9 +217,6 @@ class AvaliadorSintaticoBase {
217
217
  declaracaoExpressao(simboloAnterior) {
218
218
  throw new Error('Método não implementado.');
219
219
  }
220
- declaracaoImportar() {
221
- throw new Error('Método não implementado.');
222
- }
223
220
  declaracaoRetorna() {
224
221
  throw new Error('Método não implementado.');
225
222
  }
@@ -238,7 +235,7 @@ class AvaliadorSintaticoBase {
238
235
  }
239
236
  exports.AvaliadorSintaticoBase = AvaliadorSintaticoBase;
240
237
 
241
- },{"../construtos":50,"../declaracoes":94,"../tipos-de-simbolos/comum":182,"./erro-avaliador-sintatico":11}],2:[function(require,module,exports){
238
+ },{"../construtos":52,"../declaracoes":96,"../tipos-de-simbolos/comum":184,"./erro-avaliador-sintatico":11}],2:[function(require,module,exports){
242
239
  "use strict";
243
240
  var __importDefault = (this && this.__importDefault) || function (mod) {
244
241
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -379,6 +376,12 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
379
376
  }
380
377
  return new construtos_1.Dicionario(this.hashArquivo, Number(simboloChaveEsquerda.linha), chaves, valores);
381
378
  }
379
+ construtoImportar() {
380
+ this.consumir(delegua_2.default.PARENTESE_ESQUERDO, "Esperado '(' após declaração.");
381
+ const caminho = this.expressao();
382
+ this.consumir(delegua_2.default.PARENTESE_DIREITO, "Esperado ')' após declaração.");
383
+ return new construtos_1.ImportarComoConstruto(caminho);
384
+ }
382
385
  construtoTupla() {
383
386
  const expressao = this.expressao();
384
387
  const argumentos = [expressao];
@@ -546,7 +549,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
546
549
  return new construtos_1.Variavel(this.hashArquivo, simboloIdentificador, tipoOperando || 'qualquer');
547
550
  case delegua_2.default.IMPORTAR:
548
551
  this.avancarEDevolverAnterior();
549
- return this.declaracaoImportar();
552
+ return this.construtoImportar();
550
553
  case delegua_2.default.ISTO:
551
554
  this.avancarEDevolverAnterior();
552
555
  return new construtos_1.Isto(this.hashArquivo, Number(simboloAtual.linha), simboloAtual);
@@ -856,6 +859,23 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
856
859
  }
857
860
  return this.chamar();
858
861
  }
862
+ elvis() {
863
+ let expressao = this.unario();
864
+ if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.ELVIS)) {
865
+ const direito = this.unario();
866
+ return new construtos_1.Elvis(this.hashArquivo, expressao, direito);
867
+ }
868
+ return expressao;
869
+ }
870
+ exponenciacao() {
871
+ let expressao = this.elvis();
872
+ while (this.verificarSeSimboloAtualEIgualA(delegua_2.default.EXPONENCIACAO)) {
873
+ const operador = this.simbolos[this.atual - 1];
874
+ const direito = this.unario();
875
+ expressao = new construtos_1.Binario(this.hashArquivo, expressao, operador, direito);
876
+ }
877
+ return expressao;
878
+ }
859
879
  multiplicar() {
860
880
  let expressao = this.exponenciacao();
861
881
  while (this.verificarSeSimboloAtualEIgualA(delegua_2.default.DIVISAO, delegua_2.default.DIVISAO_IGUAL, delegua_2.default.DIVISAO_INTEIRA, delegua_2.default.DIVISAO_INTEIRA_IGUAL, delegua_2.default.MODULO, delegua_2.default.MODULO_IGUAL, delegua_2.default.MULTIPLICACAO, delegua_2.default.MULTIPLICACAO_IGUAL)) {
@@ -1176,10 +1196,45 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
1176
1196
  * @returns {Importar} Uma declaração `Importar`.
1177
1197
  */
1178
1198
  declaracaoImportar() {
1179
- this.consumir(delegua_2.default.PARENTESE_ESQUERDO, "Esperado '(' após declaração.");
1180
- const caminho = this.expressao();
1181
- this.consumir(delegua_2.default.PARENTESE_DIREITO, "Esperado ')' após declaração.");
1182
- return new declaracoes_1.Importar(caminho);
1199
+ let identificadorDeTudo = null;
1200
+ const elementosImportacao = [];
1201
+ switch (this.simbolos[this.atual].tipo) {
1202
+ case delegua_2.default.TUDO:
1203
+ this.avancarEDevolverAnterior();
1204
+ this.consumir(delegua_2.default.COMO, "Esperado 'como' após 'tudo' em declaração de importação.");
1205
+ identificadorDeTudo = this.consumir(delegua_2.default.IDENTIFICADOR, "Esperado identificador após 'como' em declaração de importação de 'tudo'.");
1206
+ break;
1207
+ case delegua_2.default.CHAVE_ESQUERDA:
1208
+ this.avancarEDevolverAnterior();
1209
+ do {
1210
+ const identificadorImportacao = this.consumir(delegua_2.default.IDENTIFICADOR, "Esperado identificador de elemento a ser importado.");
1211
+ elementosImportacao.push(identificadorImportacao);
1212
+ } while (this.verificarSeSimboloAtualEIgualA(delegua_2.default.VIRGULA));
1213
+ this.consumir(delegua_2.default.CHAVE_DIREITA, "Esperado '}' após lista de elementos a serem importados.");
1214
+ break;
1215
+ default:
1216
+ throw this.erro(this.simbolos[this.atual], "Esperado ou palavra reservada 'tudo' ou abertura de chaves após palavra reservada 'importar'.");
1217
+ }
1218
+ this.consumir(delegua_2.default.DE, "Esperado 'de' após identificador em declaração de importação de 'tudo'.");
1219
+ let construtoCaminhoModulo;
1220
+ switch (this.simbolos[this.atual].tipo) {
1221
+ case delegua_2.default.TEXTO:
1222
+ const simboloCaminhoModulo = this.avancarEDevolverAnterior();
1223
+ construtoCaminhoModulo = new construtos_1.Literal(simboloCaminhoModulo.hashArquivo, Number(simboloCaminhoModulo.linha), simboloCaminhoModulo.literal);
1224
+ break;
1225
+ case delegua_2.default.IDENTIFICADOR:
1226
+ const identificadorModulo = this.avancarEDevolverAnterior();
1227
+ construtoCaminhoModulo = new construtos_1.Literal(identificadorModulo.hashArquivo, Number(identificadorModulo.linha), identificadorModulo.lexema);
1228
+ break;
1229
+ }
1230
+ const importar = new declaracoes_1.Importar(construtoCaminhoModulo);
1231
+ if (identificadorDeTudo !== null) {
1232
+ importar.simboloTudo = identificadorDeTudo;
1233
+ }
1234
+ else {
1235
+ importar.elementosImportacao = elementosImportacao;
1236
+ }
1237
+ return importar;
1183
1238
  }
1184
1239
  declaracaoPara() {
1185
1240
  try {
@@ -1452,6 +1507,9 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
1452
1507
  case delegua_2.default.FAZER:
1453
1508
  const simboloFazer = this.avancarEDevolverAnterior();
1454
1509
  return this.declaracaoFazer(simboloFazer);
1510
+ case delegua_2.default.IMPORTAR:
1511
+ this.avancarEDevolverAnterior();
1512
+ return this.declaracaoImportar();
1455
1513
  case delegua_2.default.LINHA_COMENTARIO:
1456
1514
  return this.declaracaoComentarioMultilinha();
1457
1515
  case delegua_2.default.PARA:
@@ -2090,7 +2148,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
2090
2148
  }
2091
2149
  exports.AvaliadorSintatico = AvaliadorSintatico;
2092
2150
 
2093
- },{"../bibliotecas/primitivas-dicionario":21,"../bibliotecas/primitivas-numero":22,"../bibliotecas/primitivas-texto":23,"../bibliotecas/primitivas-vetor":24,"../construtos":50,"../construtos/tuplas":66,"../declaracoes":94,"../inferenciador":113,"../informacao-elemento-sintatico":114,"../tipos-de-dados/delegua":178,"../tipos-de-simbolos/delegua":183,"./avaliador-sintatico-base":1,"./comum":3,"./elemento-montao-tipos":10,"./erro-avaliador-sintatico":11,"./informacao-escopo":13,"./montao-tipos":16,"./pilha-escopos":17,"browser-process-hrtime":363}],3:[function(require,module,exports){
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){
2094
2152
  "use strict";
2095
2153
  Object.defineProperty(exports, "__esModule", { value: true });
2096
2154
  exports.buscarRetornos = buscarRetornos;
@@ -2190,7 +2248,7 @@ function registrarPrimitiva(primitivasConhecidas, tipo, catalogoPrimitivas) {
2190
2248
  }
2191
2249
  }
2192
2250
 
2193
- },{"../informacao-elemento-sintatico":114}],4:[function(require,module,exports){
2251
+ },{"../informacao-elemento-sintatico":116}],4:[function(require,module,exports){
2194
2252
  "use strict";
2195
2253
  var __importDefault = (this && this.__importDefault) || function (mod) {
2196
2254
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -2416,7 +2474,7 @@ class AvaliadorSintaticoCalango extends avaliador_sintatico_base_1.AvaliadorSint
2416
2474
  }
2417
2475
  exports.AvaliadorSintaticoCalango = AvaliadorSintaticoCalango;
2418
2476
 
2419
- },{"../../construtos":50,"../../declaracoes":94,"../../informacao-elemento-sintatico":114,"../../tipos-de-simbolos/calango":181,"../avaliador-sintatico-base":1,"../informacao-escopo":13,"../pilha-escopos":17}],5:[function(require,module,exports){
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){
2420
2478
  "use strict";
2421
2479
  var __importDefault = (this && this.__importDefault) || function (mod) {
2422
2480
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -3071,7 +3129,7 @@ class AvaliadorSintaticoEguaClassico {
3071
3129
  }
3072
3130
  exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
3073
3131
 
3074
- },{"../../construtos":50,"../../declaracoes":94,"../../tipos-de-simbolos/egua-classico":184,"../erro-avaliador-sintatico":11}],6:[function(require,module,exports){
3132
+ },{"../../construtos":52,"../../declaracoes":96,"../../tipos-de-simbolos/egua-classico":186,"../erro-avaliador-sintatico":11}],6:[function(require,module,exports){
3075
3133
  "use strict";
3076
3134
  var __importDefault = (this && this.__importDefault) || function (mod) {
3077
3135
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -4153,7 +4211,7 @@ class AvaliadorSintaticoPitugues {
4153
4211
  }
4154
4212
  exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
4155
4213
 
4156
- },{"../../bibliotecas/primitivas-dicionario":21,"../../bibliotecas/primitivas-numero":22,"../../bibliotecas/primitivas-texto":23,"../../bibliotecas/primitivas-vetor":24,"../../construtos":50,"../../construtos/lista-compreensao":53,"../../declaracoes":94,"../../inferenciador":113,"../../informacao-elemento-sintatico":114,"../../lexador":170,"../../tipos-de-dados/dialetos/pitugues":179,"../../tipos-de-simbolos/pitugues":187,"../comum":3,"../erro-avaliador-sintatico":11,"../informacao-escopo":13,"../pilha-escopos":17,"browser-process-hrtime":363}],7:[function(require,module,exports){
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){
4157
4215
  "use strict";
4158
4216
  var __importDefault = (this && this.__importDefault) || function (mod) {
4159
4217
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -4327,7 +4385,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
4327
4385
  }
4328
4386
  exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
4329
4387
 
4330
- },{"../../construtos":50,"../../declaracoes":94,"../../tipos-de-simbolos/portugol-ipt":188,"../avaliador-sintatico-base":1}],8:[function(require,module,exports){
4388
+ },{"../../construtos":52,"../../declaracoes":96,"../../tipos-de-simbolos/portugol-ipt":190,"../avaliador-sintatico-base":1}],8:[function(require,module,exports){
4331
4389
  "use strict";
4332
4390
  var __importDefault = (this && this.__importDefault) || function (mod) {
4333
4391
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -5315,7 +5373,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
5315
5373
  }
5316
5374
  exports.AvaliadorSintaticoTenda = AvaliadorSintaticoTenda;
5317
5375
 
5318
- },{"../../bibliotecas/primitivas-dicionario":21,"../../bibliotecas/primitivas-numero":22,"../../bibliotecas/primitivas-texto":23,"../../bibliotecas/primitivas-vetor":24,"../../construtos":50,"../../construtos/tuplas":66,"../../declaracoes":94,"../../inferenciador":113,"../../informacao-elemento-sintatico":114,"../../lexador/simbolo":176,"../../tipos-de-dados/delegua":178,"../../tipos-de-simbolos/tenda":189,"../avaliador-sintatico-base":1,"./../erro-avaliador-sintatico":11,"./../informacao-escopo":13,"./../pilha-escopos":17,"browser-process-hrtime":363}],9:[function(require,module,exports){
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){
5319
5377
  "use strict";
5320
5378
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5321
5379
  if (k2 === undefined) k2 = k;
@@ -5520,7 +5578,7 @@ class MicroAvaliadorSintaticoBase {
5520
5578
  }
5521
5579
  exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
5522
5580
 
5523
- },{"../construtos":50,"../tipos-de-simbolos/comum":182,"./erro-avaliador-sintatico":11}],15:[function(require,module,exports){
5581
+ },{"../construtos":52,"../tipos-de-simbolos/comum":184,"./erro-avaliador-sintatico":11}],15:[function(require,module,exports){
5524
5582
  "use strict";
5525
5583
  var __importDefault = (this && this.__importDefault) || function (mod) {
5526
5584
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -5651,6 +5709,23 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
5651
5709
  }
5652
5710
  return this.chamar();
5653
5711
  }
5712
+ elvis() {
5713
+ let expressao = this.unario();
5714
+ if (this.verificarSeSimboloAtualEIgualA(delegua_1.default.ELVIS)) {
5715
+ const direito = this.unario();
5716
+ return new construtos_1.Elvis(-1, expressao, direito);
5717
+ }
5718
+ return expressao;
5719
+ }
5720
+ exponenciacao() {
5721
+ let expressao = this.elvis();
5722
+ while (this.verificarSeSimboloAtualEIgualA(delegua_1.default.EXPONENCIACAO)) {
5723
+ const operador = this.simbolos[this.atual - 1];
5724
+ const direito = this.unario();
5725
+ expressao = new construtos_1.Binario(-1, expressao, operador, direito);
5726
+ }
5727
+ return expressao;
5728
+ }
5654
5729
  bitShift() {
5655
5730
  let expressao = this.adicaoOuSubtracao();
5656
5731
  while (this.verificarSeSimboloAtualEIgualA(delegua_1.default.MENOR_MENOR, delegua_1.default.MAIOR_MAIOR)) {
@@ -5722,7 +5797,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
5722
5797
  }
5723
5798
  exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
5724
5799
 
5725
- },{"../construtos":50,"../tipos-de-simbolos/microgramaticas/delegua":186,"./micro-avaliador-sintatico-base":14}],16:[function(require,module,exports){
5800
+ },{"../construtos":52,"../tipos-de-simbolos/microgramaticas/delegua":188,"./micro-avaliador-sintatico-base":14}],16:[function(require,module,exports){
5726
5801
  "use strict";
5727
5802
  Object.defineProperty(exports, "__esModule", { value: true });
5728
5803
  exports.MontaoTipos = void 0;
@@ -5773,7 +5848,7 @@ class MontaoTipos {
5773
5848
  }
5774
5849
  exports.MontaoTipos = MontaoTipos;
5775
5850
 
5776
- },{"../geracao-identificadores":111,"./erro-avaliador-sintatico":11}],17:[function(require,module,exports){
5851
+ },{"../geracao-identificadores":113,"./erro-avaliador-sintatico":11}],17:[function(require,module,exports){
5777
5852
  "use strict";
5778
5853
  Object.defineProperty(exports, "__esModule", { value: true });
5779
5854
  exports.PilhaEscopos = void 0;
@@ -6553,7 +6628,7 @@ async function tupla(interpretador, vetor) {
6553
6628
  }
6554
6629
  }
6555
6630
 
6556
- },{"../construtos":50,"../excecoes":107,"../interpretador/estruturas":146,"../interpretador/estruturas/descritor-tipo-classe":144,"../interpretador/estruturas/funcao-padrao":145,"../interpretador/estruturas/objeto-delegua-classe":149,"../quebras":177}],21:[function(require,module,exports){
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){
6557
6632
  "use strict";
6558
6633
  Object.defineProperty(exports, "__esModule", { value: true });
6559
6634
  const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
@@ -6610,7 +6685,7 @@ exports.default = {
6610
6685
  },
6611
6686
  };
6612
6687
 
6613
- },{"../informacao-elemento-sintatico":114}],22:[function(require,module,exports){
6688
+ },{"../informacao-elemento-sintatico":116}],22:[function(require,module,exports){
6614
6689
  "use strict";
6615
6690
  Object.defineProperty(exports, "__esModule", { value: true });
6616
6691
  const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
@@ -6695,7 +6770,7 @@ exports.default = {
6695
6770
  },
6696
6771
  };
6697
6772
 
6698
- },{"../informacao-elemento-sintatico":114}],23:[function(require,module,exports){
6773
+ },{"../informacao-elemento-sintatico":116}],23:[function(require,module,exports){
6699
6774
  "use strict";
6700
6775
  Object.defineProperty(exports, "__esModule", { value: true });
6701
6776
  const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
@@ -6776,6 +6851,29 @@ exports.default = {
6776
6851
  '\n\n ### Formas de uso \n',
6777
6852
  exemploCodigo: "texto.dividir('<delimitador (, ; ' ')>')",
6778
6853
  },
6854
+ encontrar: {
6855
+ tipoRetorno: 'inteiro',
6856
+ argumentos: [
6857
+ new informacao_elemento_sintatico_1.InformacaoElementoSintatico('subtexto', 'texto', true, [], 'O texto que deve ser buscado.'),
6858
+ new informacao_elemento_sintatico_1.InformacaoElementoSintatico('indiceInicio', 'número', false, [], '(Opcional) O índice opcional para iniciar a busca.'),
6859
+ ],
6860
+ implementacao: (interpretador, nomePrimitiva, texto, subtexto, indiceInicio) => {
6861
+ if (indiceInicio !== undefined) {
6862
+ return Promise.resolve(texto.indexOf(subtexto, indiceInicio));
6863
+ }
6864
+ return Promise.resolve(texto.indexOf(subtexto));
6865
+ },
6866
+ assinaturaFormato: 'texto.encontrar(subtexto: texto, indiceInicio?: número)',
6867
+ documentacao: '# `texto.encontrar(subtexto, indiceInicio)` \n \n' +
6868
+ 'Retorna o índice inicial de um subtexto. Retorna -1 caso não encontre.' +
6869
+ '\n\n ## Exemplo de Código\n' +
6870
+ '\n\n```delegua\nvar t = "um dois três"\n' +
6871
+ 't.encontrar("dois") // 3\n' +
6872
+ 't.encontrar("quatro") // -1\n' +
6873
+ 't.encontrar("dois", 4) // -1\n```' +
6874
+ '\n\n ### Formas de uso \n',
6875
+ exemploCodigo: 'texto.encontre(subtexto, indiceInicio?)',
6876
+ },
6779
6877
  fatiar: {
6780
6878
  tipoRetorno: 'texto',
6781
6879
  argumentos: [
@@ -6927,7 +7025,7 @@ exports.default = {
6927
7025
  },
6928
7026
  };
6929
7027
 
6930
- },{"../informacao-elemento-sintatico":114}],24:[function(require,module,exports){
7028
+ },{"../informacao-elemento-sintatico":116}],24:[function(require,module,exports){
6931
7029
  "use strict";
6932
7030
  Object.defineProperty(exports, "__esModule", { value: true });
6933
7031
  const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
@@ -7274,7 +7372,7 @@ exports.default = {
7274
7372
  },
7275
7373
  };
7276
7374
 
7277
- },{"../informacao-elemento-sintatico":114}],25:[function(require,module,exports){
7375
+ },{"../informacao-elemento-sintatico":116}],25:[function(require,module,exports){
7278
7376
  "use strict";
7279
7377
  Object.defineProperty(exports, "__esModule", { value: true });
7280
7378
  exports.AcessoElementoMatriz = void 0;
@@ -7624,7 +7722,7 @@ class Chamada {
7624
7722
  }
7625
7723
  exports.Chamada = Chamada;
7626
7724
 
7627
- },{"../geracao-identificadores":111}],37:[function(require,module,exports){
7725
+ },{"../geracao-identificadores":113}],37:[function(require,module,exports){
7628
7726
  "use strict";
7629
7727
  Object.defineProperty(exports, "__esModule", { value: true });
7630
7728
  exports.ComentarioComoConstruto = void 0;
@@ -7767,6 +7865,28 @@ exports.Dicionario = Dicionario;
7767
7865
  },{}],44:[function(require,module,exports){
7768
7866
  "use strict";
7769
7867
  Object.defineProperty(exports, "__esModule", { value: true });
7868
+ exports.Elvis = void 0;
7869
+ class Elvis {
7870
+ constructor(hashArquivo, esquerda, direita) {
7871
+ this.linha = esquerda.linha;
7872
+ this.hashArquivo = hashArquivo;
7873
+ this.esquerda = esquerda;
7874
+ this.direita = direita;
7875
+ }
7876
+ async aceitar(visitante) {
7877
+ return await visitante.visitarExpressaoElvis(this);
7878
+ }
7879
+ paraTexto() {
7880
+ return (`<elvis esquerda=${this.esquerda.paraTexto()} ` +
7881
+ `direita=${this.direita.paraTexto()} ` +
7882
+ `/>`);
7883
+ }
7884
+ }
7885
+ exports.Elvis = Elvis;
7886
+
7887
+ },{}],45:[function(require,module,exports){
7888
+ "use strict";
7889
+ Object.defineProperty(exports, "__esModule", { value: true });
7770
7890
  exports.EnquantoComoConstruto = void 0;
7771
7891
  class EnquantoComoConstruto {
7772
7892
  constructor(condicao, corpo) {
@@ -7784,7 +7904,7 @@ class EnquantoComoConstruto {
7784
7904
  }
7785
7905
  exports.EnquantoComoConstruto = EnquantoComoConstruto;
7786
7906
 
7787
- },{}],45:[function(require,module,exports){
7907
+ },{}],46:[function(require,module,exports){
7788
7908
  "use strict";
7789
7909
  Object.defineProperty(exports, "__esModule", { value: true });
7790
7910
  exports.ExpressaoRegular = void 0;
@@ -7804,7 +7924,7 @@ class ExpressaoRegular {
7804
7924
  }
7805
7925
  exports.ExpressaoRegular = ExpressaoRegular;
7806
7926
 
7807
- },{}],46:[function(require,module,exports){
7927
+ },{}],47:[function(require,module,exports){
7808
7928
  "use strict";
7809
7929
  Object.defineProperty(exports, "__esModule", { value: true });
7810
7930
  exports.FazerComoConstruto = void 0;
@@ -7824,7 +7944,7 @@ class FazerComoConstruto {
7824
7944
  }
7825
7945
  exports.FazerComoConstruto = FazerComoConstruto;
7826
7946
 
7827
- },{}],47:[function(require,module,exports){
7947
+ },{}],48:[function(require,module,exports){
7828
7948
  "use strict";
7829
7949
  Object.defineProperty(exports, "__esModule", { value: true });
7830
7950
  exports.FimPara = void 0;
@@ -7854,7 +7974,7 @@ class FimPara {
7854
7974
  }
7855
7975
  exports.FimPara = FimPara;
7856
7976
 
7857
- },{}],48:[function(require,module,exports){
7977
+ },{}],49:[function(require,module,exports){
7858
7978
  "use strict";
7859
7979
  Object.defineProperty(exports, "__esModule", { value: true });
7860
7980
  exports.FormatacaoEscrita = void 0;
@@ -7880,7 +8000,7 @@ class FormatacaoEscrita {
7880
8000
  }
7881
8001
  exports.FormatacaoEscrita = FormatacaoEscrita;
7882
8002
 
7883
- },{}],49:[function(require,module,exports){
8003
+ },{}],50:[function(require,module,exports){
7884
8004
  "use strict";
7885
8005
  Object.defineProperty(exports, "__esModule", { value: true });
7886
8006
  exports.FuncaoConstruto = void 0;
@@ -7903,7 +8023,30 @@ class FuncaoConstruto {
7903
8023
  }
7904
8024
  exports.FuncaoConstruto = FuncaoConstruto;
7905
8025
 
7906
- },{}],50:[function(require,module,exports){
8026
+ },{}],51:[function(require,module,exports){
8027
+ "use strict";
8028
+ Object.defineProperty(exports, "__esModule", { value: true });
8029
+ exports.ImportarComoConstruto = void 0;
8030
+ /**
8031
+ * Expressão usada para importação resolvida em tempo de execução.
8032
+ * Implementa a primeira forma de importação, também conhecida como importação dinâmica.
8033
+ */
8034
+ class ImportarComoConstruto {
8035
+ constructor(caminho) {
8036
+ this.hashArquivo = caminho.hashArquivo;
8037
+ this.linha = caminho.linha;
8038
+ this.caminho = caminho;
8039
+ }
8040
+ async aceitar(visitante) {
8041
+ return await visitante.visitarExpressaoImportar(this);
8042
+ }
8043
+ paraTexto() {
8044
+ return `<importar-como-construto caminho=${this.caminho.valor} />`;
8045
+ }
8046
+ }
8047
+ exports.ImportarComoConstruto = ImportarComoConstruto;
8048
+
8049
+ },{}],52:[function(require,module,exports){
7907
8050
  "use strict";
7908
8051
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7909
8052
  if (k2 === undefined) k2 = k;
@@ -7939,12 +8082,14 @@ __exportStar(require("./construto"), exports);
7939
8082
  __exportStar(require("./decorador"), exports);
7940
8083
  __exportStar(require("./definir-valor"), exports);
7941
8084
  __exportStar(require("./dicionario"), exports);
8085
+ __exportStar(require("./elvis"), exports);
7942
8086
  __exportStar(require("./enquanto-como-construto"), exports);
7943
8087
  __exportStar(require("./expressao-regular"), exports);
7944
8088
  __exportStar(require("./fazer-como-construto"), exports);
7945
8089
  __exportStar(require("./fim-para"), exports);
7946
8090
  __exportStar(require("./formatacao-escrita"), exports);
7947
8091
  __exportStar(require("./funcao"), exports);
8092
+ __exportStar(require("./importar-como-construto"), exports);
7948
8093
  __exportStar(require("./isto"), exports);
7949
8094
  __exportStar(require("./leia"), exports);
7950
8095
  __exportStar(require("./lista-compreensao"), exports);
@@ -7963,7 +8108,7 @@ __exportStar(require("./unario"), exports);
7963
8108
  __exportStar(require("./variavel"), exports);
7964
8109
  __exportStar(require("./vetor"), exports);
7965
8110
 
7966
- },{"./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,"./enquanto-como-construto":44,"./expressao-regular":45,"./fazer-como-construto":46,"./fim-para":47,"./formatacao-escrita":48,"./funcao":49,"./isto":51,"./leia":52,"./lista-compreensao":53,"./literal":54,"./logico":55,"./para-cada-como-construto":56,"./para-como-construto":57,"./referencia-biblioteca-global":58,"./referencia-funcao":59,"./separador":60,"./super":61,"./tipo-de":62,"./tupla":63,"./tuplas":66,"./unario":74,"./variavel":75,"./vetor":76}],51:[function(require,module,exports){
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){
7967
8112
  "use strict";
7968
8113
  Object.defineProperty(exports, "__esModule", { value: true });
7969
8114
  exports.Isto = void 0;
@@ -7982,7 +8127,7 @@ class Isto {
7982
8127
  }
7983
8128
  exports.Isto = Isto;
7984
8129
 
7985
- },{}],52:[function(require,module,exports){
8130
+ },{}],54:[function(require,module,exports){
7986
8131
  "use strict";
7987
8132
  Object.defineProperty(exports, "__esModule", { value: true });
7988
8133
  exports.Leia = void 0;
@@ -8008,7 +8153,7 @@ class Leia {
8008
8153
  }
8009
8154
  exports.Leia = Leia;
8010
8155
 
8011
- },{"../geracao-identificadores":111}],53:[function(require,module,exports){
8156
+ },{"../geracao-identificadores":113}],55:[function(require,module,exports){
8012
8157
  "use strict";
8013
8158
  Object.defineProperty(exports, "__esModule", { value: true });
8014
8159
  exports.ListaCompreensao = void 0;
@@ -8030,7 +8175,7 @@ class ListaCompreensao {
8030
8175
  }
8031
8176
  exports.ListaCompreensao = ListaCompreensao;
8032
8177
 
8033
- },{}],54:[function(require,module,exports){
8178
+ },{}],56:[function(require,module,exports){
8034
8179
  "use strict";
8035
8180
  Object.defineProperty(exports, "__esModule", { value: true });
8036
8181
  exports.Literal = void 0;
@@ -8050,7 +8195,7 @@ class Literal {
8050
8195
  }
8051
8196
  exports.Literal = Literal;
8052
8197
 
8053
- },{}],55:[function(require,module,exports){
8198
+ },{}],57:[function(require,module,exports){
8054
8199
  "use strict";
8055
8200
  Object.defineProperty(exports, "__esModule", { value: true });
8056
8201
  exports.Logico = void 0;
@@ -8073,7 +8218,7 @@ class Logico {
8073
8218
  }
8074
8219
  exports.Logico = Logico;
8075
8220
 
8076
- },{}],56:[function(require,module,exports){
8221
+ },{}],58:[function(require,module,exports){
8077
8222
  "use strict";
8078
8223
  Object.defineProperty(exports, "__esModule", { value: true });
8079
8224
  exports.ParaCadaComoConstruto = void 0;
@@ -8095,7 +8240,7 @@ class ParaCadaComoConstruto {
8095
8240
  }
8096
8241
  exports.ParaCadaComoConstruto = ParaCadaComoConstruto;
8097
8242
 
8098
- },{}],57:[function(require,module,exports){
8243
+ },{}],59:[function(require,module,exports){
8099
8244
  "use strict";
8100
8245
  Object.defineProperty(exports, "__esModule", { value: true });
8101
8246
  exports.ParaComoConstruto = void 0;
@@ -8120,7 +8265,7 @@ class ParaComoConstruto {
8120
8265
  }
8121
8266
  exports.ParaComoConstruto = ParaComoConstruto;
8122
8267
 
8123
- },{}],58:[function(require,module,exports){
8268
+ },{}],60:[function(require,module,exports){
8124
8269
  "use strict";
8125
8270
  Object.defineProperty(exports, "__esModule", { value: true });
8126
8271
  exports.ReferenciaBibliotecaGlobal = void 0;
@@ -8143,7 +8288,7 @@ class ReferenciaBibliotecaGlobal {
8143
8288
  }
8144
8289
  exports.ReferenciaBibliotecaGlobal = ReferenciaBibliotecaGlobal;
8145
8290
 
8146
- },{}],59:[function(require,module,exports){
8291
+ },{}],61:[function(require,module,exports){
8147
8292
  "use strict";
8148
8293
  Object.defineProperty(exports, "__esModule", { value: true });
8149
8294
  exports.ReferenciaFuncao = void 0;
@@ -8164,7 +8309,7 @@ class ReferenciaFuncao {
8164
8309
  }
8165
8310
  exports.ReferenciaFuncao = ReferenciaFuncao;
8166
8311
 
8167
- },{}],60:[function(require,module,exports){
8312
+ },{}],62:[function(require,module,exports){
8168
8313
  "use strict";
8169
8314
  Object.defineProperty(exports, "__esModule", { value: true });
8170
8315
  exports.Separador = void 0;
@@ -8183,7 +8328,7 @@ class Separador {
8183
8328
  }
8184
8329
  exports.Separador = Separador;
8185
8330
 
8186
- },{}],61:[function(require,module,exports){
8331
+ },{}],63:[function(require,module,exports){
8187
8332
  "use strict";
8188
8333
  Object.defineProperty(exports, "__esModule", { value: true });
8189
8334
  exports.Super = void 0;
@@ -8203,7 +8348,7 @@ class Super {
8203
8348
  }
8204
8349
  exports.Super = Super;
8205
8350
 
8206
- },{}],62:[function(require,module,exports){
8351
+ },{}],64:[function(require,module,exports){
8207
8352
  "use strict";
8208
8353
  Object.defineProperty(exports, "__esModule", { value: true });
8209
8354
  exports.TipoDe = void 0;
@@ -8227,7 +8372,7 @@ class TipoDe {
8227
8372
  }
8228
8373
  exports.TipoDe = TipoDe;
8229
8374
 
8230
- },{}],63:[function(require,module,exports){
8375
+ },{}],65:[function(require,module,exports){
8231
8376
  "use strict";
8232
8377
  Object.defineProperty(exports, "__esModule", { value: true });
8233
8378
  exports.Tupla = void 0;
@@ -8238,7 +8383,7 @@ class Tupla {
8238
8383
  }
8239
8384
  exports.Tupla = Tupla;
8240
8385
 
8241
- },{}],64:[function(require,module,exports){
8386
+ },{}],66:[function(require,module,exports){
8242
8387
  "use strict";
8243
8388
  Object.defineProperty(exports, "__esModule", { value: true });
8244
8389
  exports.Deceto = void 0;
@@ -8286,7 +8431,7 @@ class Deceto extends tupla_1.Tupla {
8286
8431
  }
8287
8432
  exports.Deceto = Deceto;
8288
8433
 
8289
- },{"../tupla":63}],65:[function(require,module,exports){
8434
+ },{"../tupla":65}],67:[function(require,module,exports){
8290
8435
  "use strict";
8291
8436
  Object.defineProperty(exports, "__esModule", { value: true });
8292
8437
  exports.Dupla = void 0;
@@ -8305,7 +8450,7 @@ class Dupla extends tupla_1.Tupla {
8305
8450
  }
8306
8451
  exports.Dupla = Dupla;
8307
8452
 
8308
- },{"../tupla":63}],66:[function(require,module,exports){
8453
+ },{"../tupla":65}],68:[function(require,module,exports){
8309
8454
  "use strict";
8310
8455
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
8311
8456
  if (k2 === undefined) k2 = k;
@@ -8373,7 +8518,7 @@ class SeletorTuplas {
8373
8518
  }
8374
8519
  exports.SeletorTuplas = SeletorTuplas;
8375
8520
 
8376
- },{"./deceto":64,"./dupla":65,"./noneto":67,"./octeto":68,"./quarteto":69,"./quinteto":70,"./septeto":71,"./sexteto":72,"./trio":73}],67:[function(require,module,exports){
8521
+ },{"./deceto":66,"./dupla":67,"./noneto":69,"./octeto":70,"./quarteto":71,"./quinteto":72,"./septeto":73,"./sexteto":74,"./trio":75}],69:[function(require,module,exports){
8377
8522
  "use strict";
8378
8523
  Object.defineProperty(exports, "__esModule", { value: true });
8379
8524
  exports.Noneto = void 0;
@@ -8412,7 +8557,7 @@ class Noneto extends tupla_1.Tupla {
8412
8557
  }
8413
8558
  exports.Noneto = Noneto;
8414
8559
 
8415
- },{"../tupla":63}],68:[function(require,module,exports){
8560
+ },{"../tupla":65}],70:[function(require,module,exports){
8416
8561
  "use strict";
8417
8562
  Object.defineProperty(exports, "__esModule", { value: true });
8418
8563
  exports.Octeto = void 0;
@@ -8449,7 +8594,7 @@ class Octeto extends tupla_1.Tupla {
8449
8594
  }
8450
8595
  exports.Octeto = Octeto;
8451
8596
 
8452
- },{"../tupla":63}],69:[function(require,module,exports){
8597
+ },{"../tupla":65}],71:[function(require,module,exports){
8453
8598
  "use strict";
8454
8599
  Object.defineProperty(exports, "__esModule", { value: true });
8455
8600
  exports.Quarteto = void 0;
@@ -8472,7 +8617,7 @@ class Quarteto extends tupla_1.Tupla {
8472
8617
  }
8473
8618
  exports.Quarteto = Quarteto;
8474
8619
 
8475
- },{"../tupla":63}],70:[function(require,module,exports){
8620
+ },{"../tupla":65}],72:[function(require,module,exports){
8476
8621
  "use strict";
8477
8622
  Object.defineProperty(exports, "__esModule", { value: true });
8478
8623
  exports.Quinteto = void 0;
@@ -8497,7 +8642,7 @@ class Quinteto extends tupla_1.Tupla {
8497
8642
  }
8498
8643
  exports.Quinteto = Quinteto;
8499
8644
 
8500
- },{"../tupla":63}],71:[function(require,module,exports){
8645
+ },{"../tupla":65}],73:[function(require,module,exports){
8501
8646
  "use strict";
8502
8647
  Object.defineProperty(exports, "__esModule", { value: true });
8503
8648
  exports.Septeto = void 0;
@@ -8532,7 +8677,7 @@ class Septeto extends tupla_1.Tupla {
8532
8677
  }
8533
8678
  exports.Septeto = Septeto;
8534
8679
 
8535
- },{"../tupla":63}],72:[function(require,module,exports){
8680
+ },{"../tupla":65}],74:[function(require,module,exports){
8536
8681
  "use strict";
8537
8682
  Object.defineProperty(exports, "__esModule", { value: true });
8538
8683
  exports.Sexteto = void 0;
@@ -8559,7 +8704,7 @@ class Sexteto extends tupla_1.Tupla {
8559
8704
  }
8560
8705
  exports.Sexteto = Sexteto;
8561
8706
 
8562
- },{"../tupla":63}],73:[function(require,module,exports){
8707
+ },{"../tupla":65}],75:[function(require,module,exports){
8563
8708
  "use strict";
8564
8709
  Object.defineProperty(exports, "__esModule", { value: true });
8565
8710
  exports.Trio = void 0;
@@ -8580,7 +8725,7 @@ class Trio extends tupla_1.Tupla {
8580
8725
  }
8581
8726
  exports.Trio = Trio;
8582
8727
 
8583
- },{"../tupla":63}],74:[function(require,module,exports){
8728
+ },{"../tupla":65}],76:[function(require,module,exports){
8584
8729
  "use strict";
8585
8730
  Object.defineProperty(exports, "__esModule", { value: true });
8586
8731
  exports.Unario = void 0;
@@ -8601,7 +8746,7 @@ class Unario {
8601
8746
  }
8602
8747
  exports.Unario = Unario;
8603
8748
 
8604
- },{}],75:[function(require,module,exports){
8749
+ },{}],77:[function(require,module,exports){
8605
8750
  "use strict";
8606
8751
  Object.defineProperty(exports, "__esModule", { value: true });
8607
8752
  exports.Variavel = void 0;
@@ -8621,7 +8766,7 @@ class Variavel {
8621
8766
  }
8622
8767
  exports.Variavel = Variavel;
8623
8768
 
8624
- },{}],76:[function(require,module,exports){
8769
+ },{}],78:[function(require,module,exports){
8625
8770
  "use strict";
8626
8771
  Object.defineProperty(exports, "__esModule", { value: true });
8627
8772
  exports.Vetor = void 0;
@@ -8647,7 +8792,7 @@ class Vetor {
8647
8792
  }
8648
8793
  exports.Vetor = Vetor;
8649
8794
 
8650
- },{}],77:[function(require,module,exports){
8795
+ },{}],79:[function(require,module,exports){
8651
8796
  "use strict";
8652
8797
  Object.defineProperty(exports, "__esModule", { value: true });
8653
8798
  exports.Bloco = void 0;
@@ -8673,7 +8818,7 @@ class Bloco extends declaracao_1.Declaracao {
8673
8818
  }
8674
8819
  exports.Bloco = Bloco;
8675
8820
 
8676
- },{"./declaracao":84}],78:[function(require,module,exports){
8821
+ },{"./declaracao":86}],80:[function(require,module,exports){
8677
8822
  "use strict";
8678
8823
  Object.defineProperty(exports, "__esModule", { value: true });
8679
8824
  exports.CabecalhoPrograma = void 0;
@@ -8695,7 +8840,7 @@ class CabecalhoPrograma extends declaracao_1.Declaracao {
8695
8840
  }
8696
8841
  exports.CabecalhoPrograma = CabecalhoPrograma;
8697
8842
 
8698
- },{"./declaracao":84}],79:[function(require,module,exports){
8843
+ },{"./declaracao":86}],81:[function(require,module,exports){
8699
8844
  "use strict";
8700
8845
  Object.defineProperty(exports, "__esModule", { value: true });
8701
8846
  exports.Classe = void 0;
@@ -8730,7 +8875,7 @@ class Classe extends declaracao_1.Declaracao {
8730
8875
  }
8731
8876
  exports.Classe = Classe;
8732
8877
 
8733
- },{"./declaracao":84}],80:[function(require,module,exports){
8878
+ },{"./declaracao":86}],82:[function(require,module,exports){
8734
8879
  "use strict";
8735
8880
  Object.defineProperty(exports, "__esModule", { value: true });
8736
8881
  exports.Comentario = void 0;
@@ -8755,7 +8900,7 @@ class Comentario extends declaracao_1.Declaracao {
8755
8900
  }
8756
8901
  exports.Comentario = Comentario;
8757
8902
 
8758
- },{"./declaracao":84}],81:[function(require,module,exports){
8903
+ },{"./declaracao":86}],83:[function(require,module,exports){
8759
8904
  "use strict";
8760
8905
  Object.defineProperty(exports, "__esModule", { value: true });
8761
8906
  exports.ConstMultiplo = void 0;
@@ -8780,7 +8925,7 @@ class ConstMultiplo extends declaracao_1.Declaracao {
8780
8925
  }
8781
8926
  exports.ConstMultiplo = ConstMultiplo;
8782
8927
 
8783
- },{"./declaracao":84}],82:[function(require,module,exports){
8928
+ },{"./declaracao":86}],84:[function(require,module,exports){
8784
8929
  "use strict";
8785
8930
  Object.defineProperty(exports, "__esModule", { value: true });
8786
8931
  exports.Const = void 0;
@@ -8810,7 +8955,7 @@ class Const extends declaracao_1.Declaracao {
8810
8955
  }
8811
8956
  exports.Const = Const;
8812
8957
 
8813
- },{"./declaracao":84}],83:[function(require,module,exports){
8958
+ },{"./declaracao":86}],85:[function(require,module,exports){
8814
8959
  "use strict";
8815
8960
  Object.defineProperty(exports, "__esModule", { value: true });
8816
8961
  exports.Continua = void 0;
@@ -8828,7 +8973,7 @@ class Continua extends declaracao_1.Declaracao {
8828
8973
  }
8829
8974
  exports.Continua = Continua;
8830
8975
 
8831
- },{"./declaracao":84}],84:[function(require,module,exports){
8976
+ },{"./declaracao":86}],86:[function(require,module,exports){
8832
8977
  "use strict";
8833
8978
  Object.defineProperty(exports, "__esModule", { value: true });
8834
8979
  exports.Declaracao = void 0;
@@ -8851,7 +8996,7 @@ class Declaracao {
8851
8996
  }
8852
8997
  exports.Declaracao = Declaracao;
8853
8998
 
8854
- },{}],85:[function(require,module,exports){
8999
+ },{}],87:[function(require,module,exports){
8855
9000
  "use strict";
8856
9001
  Object.defineProperty(exports, "__esModule", { value: true });
8857
9002
  exports.Enquanto = void 0;
@@ -8872,7 +9017,7 @@ class Enquanto extends declaracao_1.Declaracao {
8872
9017
  }
8873
9018
  exports.Enquanto = Enquanto;
8874
9019
 
8875
- },{"./declaracao":84}],86:[function(require,module,exports){
9020
+ },{"./declaracao":86}],88:[function(require,module,exports){
8876
9021
  "use strict";
8877
9022
  Object.defineProperty(exports, "__esModule", { value: true });
8878
9023
  exports.Escolha = void 0;
@@ -8897,7 +9042,7 @@ class Escolha extends declaracao_1.Declaracao {
8897
9042
  }
8898
9043
  exports.Escolha = Escolha;
8899
9044
 
8900
- },{"./declaracao":84}],87:[function(require,module,exports){
9045
+ },{"./declaracao":86}],89:[function(require,module,exports){
8901
9046
  "use strict";
8902
9047
  Object.defineProperty(exports, "__esModule", { value: true });
8903
9048
  exports.EscrevaMesmaLinha = void 0;
@@ -8916,7 +9061,7 @@ class EscrevaMesmaLinha extends declaracao_1.Declaracao {
8916
9061
  }
8917
9062
  exports.EscrevaMesmaLinha = EscrevaMesmaLinha;
8918
9063
 
8919
- },{"./declaracao":84}],88:[function(require,module,exports){
9064
+ },{"./declaracao":86}],90:[function(require,module,exports){
8920
9065
  "use strict";
8921
9066
  Object.defineProperty(exports, "__esModule", { value: true });
8922
9067
  exports.Escreva = void 0;
@@ -8935,7 +9080,7 @@ class Escreva extends declaracao_1.Declaracao {
8935
9080
  }
8936
9081
  exports.Escreva = Escreva;
8937
9082
 
8938
- },{"./declaracao":84}],89:[function(require,module,exports){
9083
+ },{"./declaracao":86}],91:[function(require,module,exports){
8939
9084
  "use strict";
8940
9085
  Object.defineProperty(exports, "__esModule", { value: true });
8941
9086
  exports.Expressao = void 0;
@@ -8954,7 +9099,7 @@ class Expressao extends declaracao_1.Declaracao {
8954
9099
  }
8955
9100
  exports.Expressao = Expressao;
8956
9101
 
8957
- },{"./declaracao":84}],90:[function(require,module,exports){
9102
+ },{"./declaracao":86}],92:[function(require,module,exports){
8958
9103
  "use strict";
8959
9104
  Object.defineProperty(exports, "__esModule", { value: true });
8960
9105
  exports.Falhar = void 0;
@@ -8974,7 +9119,7 @@ class Falhar extends declaracao_1.Declaracao {
8974
9119
  }
8975
9120
  exports.Falhar = Falhar;
8976
9121
 
8977
- },{"./declaracao":84}],91:[function(require,module,exports){
9122
+ },{"./declaracao":86}],93:[function(require,module,exports){
8978
9123
  "use strict";
8979
9124
  Object.defineProperty(exports, "__esModule", { value: true });
8980
9125
  exports.Fazer = void 0;
@@ -8995,7 +9140,7 @@ class Fazer extends declaracao_1.Declaracao {
8995
9140
  }
8996
9141
  exports.Fazer = Fazer;
8997
9142
 
8998
- },{"./declaracao":84}],92:[function(require,module,exports){
9143
+ },{"./declaracao":86}],94:[function(require,module,exports){
8999
9144
  "use strict";
9000
9145
  Object.defineProperty(exports, "__esModule", { value: true });
9001
9146
  exports.FuncaoDeclaracao = void 0;
@@ -9023,19 +9168,21 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
9023
9168
  }
9024
9169
  exports.FuncaoDeclaracao = FuncaoDeclaracao;
9025
9170
 
9026
- },{"../geracao-identificadores":111,"./declaracao":84}],93:[function(require,module,exports){
9171
+ },{"../geracao-identificadores":113,"./declaracao":86}],95:[function(require,module,exports){
9027
9172
  "use strict";
9028
9173
  Object.defineProperty(exports, "__esModule", { value: true });
9029
9174
  exports.Importar = void 0;
9030
9175
  const declaracao_1 = require("./declaracao");
9031
9176
  /**
9032
- * Declaração usada para importação resolvida em tempo de execução.
9177
+ * Declaração usada para segunda forma de importação.
9033
9178
  * Para Delégua, a partir da versão 0.40.0, importações de módulos resolvem
9034
9179
  * no avaliador sintático, já que alguma resolução de tipo é necessária.
9035
9180
  */
9036
9181
  class Importar extends declaracao_1.Declaracao {
9037
9182
  constructor(caminho) {
9038
9183
  super(caminho.linha, caminho.hashArquivo);
9184
+ this.simboloTudo = null;
9185
+ this.elementosImportacao = [];
9039
9186
  this.caminho = caminho;
9040
9187
  }
9041
9188
  async aceitar(visitante) {
@@ -9047,7 +9194,7 @@ class Importar extends declaracao_1.Declaracao {
9047
9194
  }
9048
9195
  exports.Importar = Importar;
9049
9196
 
9050
- },{"./declaracao":84}],94:[function(require,module,exports){
9197
+ },{"./declaracao":86}],96:[function(require,module,exports){
9051
9198
  "use strict";
9052
9199
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
9053
9200
  if (k2 === undefined) k2 = k;
@@ -9094,7 +9241,7 @@ __exportStar(require("./tente"), exports);
9094
9241
  __exportStar(require("./var"), exports);
9095
9242
  __exportStar(require("./var-multiplo"), exports);
9096
9243
 
9097
- },{"./bloco":77,"./cabecalho-programa":78,"./classe":79,"./comentario":80,"./const":82,"./const-multiplo":81,"./continua":83,"./declaracao":84,"./enquanto":85,"./escolha":86,"./escreva":88,"./escreva-mesma-linha":87,"./expressao":89,"./falhar":90,"./fazer":91,"./funcao":92,"./importar":93,"./inicio-algoritmo":95,"./para":97,"./para-cada":96,"./propriedade-classe":98,"./retorna":99,"./se":100,"./sustar":101,"./tendo-como":102,"./tente":103,"./var":105,"./var-multiplo":104}],95:[function(require,module,exports){
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){
9098
9245
  "use strict";
9099
9246
  Object.defineProperty(exports, "__esModule", { value: true });
9100
9247
  exports.InicioAlgoritmo = void 0;
@@ -9114,7 +9261,7 @@ class InicioAlgoritmo extends declaracao_1.Declaracao {
9114
9261
  }
9115
9262
  exports.InicioAlgoritmo = InicioAlgoritmo;
9116
9263
 
9117
- },{"./declaracao":84}],96:[function(require,module,exports){
9264
+ },{"./declaracao":86}],98:[function(require,module,exports){
9118
9265
  "use strict";
9119
9266
  Object.defineProperty(exports, "__esModule", { value: true });
9120
9267
  exports.ParaCada = void 0;
@@ -9137,7 +9284,7 @@ class ParaCada extends declaracao_1.Declaracao {
9137
9284
  }
9138
9285
  exports.ParaCada = ParaCada;
9139
9286
 
9140
- },{"./declaracao":84}],97:[function(require,module,exports){
9287
+ },{"./declaracao":86}],99:[function(require,module,exports){
9141
9288
  "use strict";
9142
9289
  Object.defineProperty(exports, "__esModule", { value: true });
9143
9290
  exports.Para = void 0;
@@ -9174,7 +9321,7 @@ class Para extends declaracao_1.Declaracao {
9174
9321
  }
9175
9322
  exports.Para = Para;
9176
9323
 
9177
- },{"./declaracao":84}],98:[function(require,module,exports){
9324
+ },{"./declaracao":86}],100:[function(require,module,exports){
9178
9325
  "use strict";
9179
9326
  Object.defineProperty(exports, "__esModule", { value: true });
9180
9327
  exports.PropriedadeClasse = void 0;
@@ -9195,7 +9342,7 @@ class PropriedadeClasse extends declaracao_1.Declaracao {
9195
9342
  }
9196
9343
  exports.PropriedadeClasse = PropriedadeClasse;
9197
9344
 
9198
- },{"./declaracao":84}],99:[function(require,module,exports){
9345
+ },{"./declaracao":86}],101:[function(require,module,exports){
9199
9346
  "use strict";
9200
9347
  Object.defineProperty(exports, "__esModule", { value: true });
9201
9348
  exports.Retorna = void 0;
@@ -9221,7 +9368,7 @@ class Retorna extends declaracao_1.Declaracao {
9221
9368
  }
9222
9369
  exports.Retorna = Retorna;
9223
9370
 
9224
- },{"./declaracao":84}],100:[function(require,module,exports){
9371
+ },{"./declaracao":86}],102:[function(require,module,exports){
9225
9372
  "use strict";
9226
9373
  Object.defineProperty(exports, "__esModule", { value: true });
9227
9374
  exports.Se = void 0;
@@ -9244,7 +9391,7 @@ class Se extends declaracao_1.Declaracao {
9244
9391
  }
9245
9392
  exports.Se = Se;
9246
9393
 
9247
- },{"./declaracao":84}],101:[function(require,module,exports){
9394
+ },{"./declaracao":86}],103:[function(require,module,exports){
9248
9395
  "use strict";
9249
9396
  Object.defineProperty(exports, "__esModule", { value: true });
9250
9397
  exports.Sustar = void 0;
@@ -9262,7 +9409,7 @@ class Sustar extends declaracao_1.Declaracao {
9262
9409
  }
9263
9410
  exports.Sustar = Sustar;
9264
9411
 
9265
- },{"./declaracao":84}],102:[function(require,module,exports){
9412
+ },{"./declaracao":86}],104:[function(require,module,exports){
9266
9413
  "use strict";
9267
9414
  Object.defineProperty(exports, "__esModule", { value: true });
9268
9415
  exports.TendoComo = void 0;
@@ -9289,7 +9436,7 @@ class TendoComo extends declaracao_1.Declaracao {
9289
9436
  }
9290
9437
  exports.TendoComo = TendoComo;
9291
9438
 
9292
- },{"./declaracao":84}],103:[function(require,module,exports){
9439
+ },{"./declaracao":86}],105:[function(require,module,exports){
9293
9440
  "use strict";
9294
9441
  Object.defineProperty(exports, "__esModule", { value: true });
9295
9442
  exports.Tente = void 0;
@@ -9315,7 +9462,7 @@ class Tente extends declaracao_1.Declaracao {
9315
9462
  }
9316
9463
  exports.Tente = Tente;
9317
9464
 
9318
- },{"./declaracao":84}],104:[function(require,module,exports){
9465
+ },{"./declaracao":86}],106:[function(require,module,exports){
9319
9466
  "use strict";
9320
9467
  Object.defineProperty(exports, "__esModule", { value: true });
9321
9468
  exports.VarMultiplo = void 0;
@@ -9341,7 +9488,7 @@ class VarMultiplo extends declaracao_1.Declaracao {
9341
9488
  }
9342
9489
  exports.VarMultiplo = VarMultiplo;
9343
9490
 
9344
- },{"./declaracao":84}],105:[function(require,module,exports){
9491
+ },{"./declaracao":86}],107:[function(require,module,exports){
9345
9492
  "use strict";
9346
9493
  Object.defineProperty(exports, "__esModule", { value: true });
9347
9494
  exports.Var = void 0;
@@ -9373,7 +9520,7 @@ class Var extends declaracao_1.Declaracao {
9373
9520
  }
9374
9521
  exports.Var = Var;
9375
9522
 
9376
- },{"./declaracao":84}],106:[function(require,module,exports){
9523
+ },{"./declaracao":86}],108:[function(require,module,exports){
9377
9524
  "use strict";
9378
9525
  Object.defineProperty(exports, "__esModule", { value: true });
9379
9526
  exports.ErroEmTempoDeExecucao = void 0;
@@ -9388,7 +9535,7 @@ class ErroEmTempoDeExecucao extends Error {
9388
9535
  }
9389
9536
  exports.ErroEmTempoDeExecucao = ErroEmTempoDeExecucao;
9390
9537
 
9391
- },{}],107:[function(require,module,exports){
9538
+ },{}],109:[function(require,module,exports){
9392
9539
  "use strict";
9393
9540
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
9394
9541
  if (k2 === undefined) k2 = k;
@@ -9407,7 +9554,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
9407
9554
  Object.defineProperty(exports, "__esModule", { value: true });
9408
9555
  __exportStar(require("./erro-em-tempo-de-execucao"), exports);
9409
9556
 
9410
- },{"./erro-em-tempo-de-execucao":106}],108:[function(require,module,exports){
9557
+ },{"./erro-em-tempo-de-execucao":108}],110:[function(require,module,exports){
9411
9558
  "use strict";
9412
9559
  var __importDefault = (this && this.__importDefault) || function (mod) {
9413
9560
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -10139,7 +10286,7 @@ class FormatadorDelegua {
10139
10286
  }
10140
10287
  exports.FormatadorDelegua = FormatadorDelegua;
10141
10288
 
10142
- },{"../construtos":50,"../tipos-de-simbolos/delegua":183}],109:[function(require,module,exports){
10289
+ },{"../construtos":52,"../tipos-de-simbolos/delegua":185}],111:[function(require,module,exports){
10143
10290
  "use strict";
10144
10291
  Object.defineProperty(exports, "__esModule", { value: true });
10145
10292
  exports.FormatadorPitugues = void 0;
@@ -10375,7 +10522,7 @@ class FormatadorPitugues {
10375
10522
  }
10376
10523
  exports.FormatadorPitugues = FormatadorPitugues;
10377
10524
 
10378
- },{}],110:[function(require,module,exports){
10525
+ },{}],112:[function(require,module,exports){
10379
10526
  "use strict";
10380
10527
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10381
10528
  if (k2 === undefined) k2 = k;
@@ -10395,7 +10542,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
10395
10542
  __exportStar(require("./formatador-delegua"), exports);
10396
10543
  __exportStar(require("./formatador-pitugues"), exports);
10397
10544
 
10398
- },{"./formatador-delegua":108,"./formatador-pitugues":109}],111:[function(require,module,exports){
10545
+ },{"./formatador-delegua":110,"./formatador-pitugues":111}],113:[function(require,module,exports){
10399
10546
  "use strict";
10400
10547
  Object.defineProperty(exports, "__esModule", { value: true });
10401
10548
  exports.cyrb53 = cyrb53;
@@ -10439,7 +10586,7 @@ function uuidv4() {
10439
10586
  });
10440
10587
  }
10441
10588
 
10442
- },{}],112:[function(require,module,exports){
10589
+ },{}],114:[function(require,module,exports){
10443
10590
  "use strict";
10444
10591
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10445
10592
  if (k2 === undefined) k2 = k;
@@ -10466,7 +10613,7 @@ __exportStar(require("./interpretador"), exports);
10466
10613
  __exportStar(require("./lexador"), exports);
10467
10614
  __exportStar(require("./tradutores"), exports);
10468
10615
 
10469
- },{"./avaliador-sintatico":12,"./construtos":50,"./declaracoes":94,"./formatadores":110,"./geracao-identificadores":111,"./interfaces":120,"./interpretador":152,"./lexador":170,"./tradutores":190}],113:[function(require,module,exports){
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){
10470
10617
  "use strict";
10471
10618
  var __importDefault = (this && this.__importDefault) || function (mod) {
10472
10619
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -10593,7 +10740,7 @@ function tipoInferenciaParaTipoDadosElementar(tipoInferencia) {
10593
10740
  }
10594
10741
  }
10595
10742
 
10596
- },{"./tipos-de-dados/delegua":178,"./tipos-de-dados/primitivos":180,"./tipos-de-simbolos/delegua":183}],114:[function(require,module,exports){
10743
+ },{"./tipos-de-dados/delegua":180,"./tipos-de-dados/primitivos":182,"./tipos-de-simbolos/delegua":185}],116:[function(require,module,exports){
10597
10744
  "use strict";
10598
10745
  Object.defineProperty(exports, "__esModule", { value: true });
10599
10746
  exports.InformacaoElementoSintatico = void 0;
@@ -10612,15 +10759,15 @@ class InformacaoElementoSintatico {
10612
10759
  }
10613
10760
  exports.InformacaoElementoSintatico = InformacaoElementoSintatico;
10614
10761
 
10615
- },{}],115:[function(require,module,exports){
10762
+ },{}],117:[function(require,module,exports){
10616
10763
  "use strict";
10617
10764
  Object.defineProperty(exports, "__esModule", { value: true });
10618
10765
 
10619
- },{}],116:[function(require,module,exports){
10766
+ },{}],118:[function(require,module,exports){
10620
10767
  "use strict";
10621
10768
  Object.defineProperty(exports, "__esModule", { value: true });
10622
10769
 
10623
- },{}],117:[function(require,module,exports){
10770
+ },{}],119:[function(require,module,exports){
10624
10771
  "use strict";
10625
10772
  Object.defineProperty(exports, "__esModule", { value: true });
10626
10773
  exports.DiagnosticoSeveridade = void 0;
@@ -10632,7 +10779,7 @@ var DiagnosticoSeveridade;
10632
10779
  DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
10633
10780
  })(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
10634
10781
 
10635
- },{}],118:[function(require,module,exports){
10782
+ },{}],120:[function(require,module,exports){
10636
10783
  "use strict";
10637
10784
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10638
10785
  if (k2 === undefined) k2 = k;
@@ -10651,11 +10798,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10651
10798
  Object.defineProperty(exports, "__esModule", { value: true });
10652
10799
  __exportStar(require("./diagnostico-analisador-semantico"), exports);
10653
10800
 
10654
- },{"./diagnostico-analisador-semantico":117}],119:[function(require,module,exports){
10801
+ },{"./diagnostico-analisador-semantico":119}],121:[function(require,module,exports){
10655
10802
  "use strict";
10656
10803
  Object.defineProperty(exports, "__esModule", { value: true });
10657
10804
 
10658
- },{}],120:[function(require,module,exports){
10805
+ },{}],122:[function(require,module,exports){
10659
10806
  "use strict";
10660
10807
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10661
10808
  if (k2 === undefined) k2 = k;
@@ -10692,15 +10839,7 @@ __exportStar(require("./construtos"), exports);
10692
10839
  __exportStar(require("./erros"), exports);
10693
10840
  __exportStar(require("./retornos"), exports);
10694
10841
 
10695
- },{"./avaliador-sintatico-interface":115,"./construtos":116,"./erros":118,"./formatador-comum-interface":119,"./interpretador-com-depuracao-interface":121,"./interpretador-interface":122,"./lexador-interface":123,"./parametro-interface":124,"./pilha-interface":125,"./primitiva-interface":126,"./resolvedor-interface":127,"./resultado-parcial-interpretador-interface":128,"./retornos":129,"./retornos/retorno-execucao-interface":131,"./simbolo-interface":134,"./tradutor-interface":135,"./variavel-interface":136,"./visitante-comum-interface":137,"./visitante-delegua-interface":138}],121:[function(require,module,exports){
10696
- "use strict";
10697
- Object.defineProperty(exports, "__esModule", { value: true });
10698
-
10699
- },{}],122:[function(require,module,exports){
10700
- "use strict";
10701
- Object.defineProperty(exports, "__esModule", { value: true });
10702
-
10703
- },{}],123:[function(require,module,exports){
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){
10704
10843
  "use strict";
10705
10844
  Object.defineProperty(exports, "__esModule", { value: true });
10706
10845
 
@@ -10726,6 +10865,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
10726
10865
 
10727
10866
  },{}],129:[function(require,module,exports){
10728
10867
  "use strict";
10868
+ Object.defineProperty(exports, "__esModule", { value: true });
10869
+
10870
+ },{}],130:[function(require,module,exports){
10871
+ "use strict";
10872
+ Object.defineProperty(exports, "__esModule", { value: true });
10873
+
10874
+ },{}],131:[function(require,module,exports){
10875
+ "use strict";
10729
10876
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10730
10877
  if (k2 === undefined) k2 = k;
10731
10878
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -10746,15 +10893,7 @@ __exportStar(require("./retorno-execucao-interface"), exports);
10746
10893
  __exportStar(require("./retorno-interpretador-interface"), exports);
10747
10894
  __exportStar(require("./retorno-lexador"), exports);
10748
10895
 
10749
- },{"./retorno-avaliador-sintatico":130,"./retorno-execucao-interface":131,"./retorno-interpretador-interface":132,"./retorno-lexador":133}],130:[function(require,module,exports){
10750
- "use strict";
10751
- Object.defineProperty(exports, "__esModule", { value: true });
10752
-
10753
- },{}],131:[function(require,module,exports){
10754
- "use strict";
10755
- Object.defineProperty(exports, "__esModule", { value: true });
10756
-
10757
- },{}],132:[function(require,module,exports){
10896
+ },{"./retorno-avaliador-sintatico":132,"./retorno-execucao-interface":133,"./retorno-interpretador-interface":134,"./retorno-lexador":135}],132:[function(require,module,exports){
10758
10897
  "use strict";
10759
10898
  Object.defineProperty(exports, "__esModule", { value: true });
10760
10899
 
@@ -10784,6 +10923,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
10784
10923
 
10785
10924
  },{}],139:[function(require,module,exports){
10786
10925
  "use strict";
10926
+ Object.defineProperty(exports, "__esModule", { value: true });
10927
+
10928
+ },{}],140:[function(require,module,exports){
10929
+ "use strict";
10930
+ Object.defineProperty(exports, "__esModule", { value: true });
10931
+
10932
+ },{}],141:[function(require,module,exports){
10933
+ "use strict";
10787
10934
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10788
10935
  if (k2 === undefined) k2 = k;
10789
10936
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -10847,7 +10994,7 @@ function carregarBibliotecasGlobais(pilhaEscoposExecucao) {
10847
10994
  pilhaEscoposExecucao.definirVariavel('tupla', new funcao_padrao_1.FuncaoPadrao(1, bibliotecaGlobal.tupla));
10848
10995
  }
10849
10996
 
10850
- },{"../bibliotecas/biblioteca-global":20,"./estruturas/funcao-padrao":145}],140:[function(require,module,exports){
10997
+ },{"../bibliotecas/biblioteca-global":20,"./estruturas/funcao-padrao":147}],142:[function(require,module,exports){
10851
10998
  "use strict";
10852
10999
  Object.defineProperty(exports, "__esModule", { value: true });
10853
11000
  exports.EspacoMemoria = void 0;
@@ -10872,7 +11019,7 @@ class EspacoMemoria {
10872
11019
  }
10873
11020
  exports.EspacoMemoria = EspacoMemoria;
10874
11021
 
10875
- },{}],141:[function(require,module,exports){
11022
+ },{}],143:[function(require,module,exports){
10876
11023
  "use strict";
10877
11024
  Object.defineProperty(exports, "__esModule", { value: true });
10878
11025
  exports.Chamavel = void 0;
@@ -10886,7 +11033,7 @@ class Chamavel {
10886
11033
  }
10887
11034
  exports.Chamavel = Chamavel;
10888
11035
 
10889
- },{}],142:[function(require,module,exports){
11036
+ },{}],144:[function(require,module,exports){
10890
11037
  "use strict";
10891
11038
  Object.defineProperty(exports, "__esModule", { value: true });
10892
11039
  exports.ClassePadrao = void 0;
@@ -10927,7 +11074,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
10927
11074
  }
10928
11075
  exports.ClassePadrao = ClassePadrao;
10929
11076
 
10930
- },{"./chamavel":141}],143:[function(require,module,exports){
11077
+ },{"./chamavel":143}],145:[function(require,module,exports){
10931
11078
  "use strict";
10932
11079
  Object.defineProperty(exports, "__esModule", { value: true });
10933
11080
  exports.DeleguaFuncao = void 0;
@@ -11072,7 +11219,7 @@ class DeleguaFuncao extends chamavel_1.Chamavel {
11072
11219
  }
11073
11220
  exports.DeleguaFuncao = DeleguaFuncao;
11074
11221
 
11075
- },{"../../declaracoes":94,"../../quebras":177,"../espaco-memoria":140,"./chamavel":141}],144:[function(require,module,exports){
11222
+ },{"../../declaracoes":96,"../../quebras":179,"../espaco-memoria":142,"./chamavel":143}],146:[function(require,module,exports){
11076
11223
  "use strict";
11077
11224
  Object.defineProperty(exports, "__esModule", { value: true });
11078
11225
  exports.DescritorTipoClasse = void 0;
@@ -11153,7 +11300,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
11153
11300
  }
11154
11301
  exports.DescritorTipoClasse = DescritorTipoClasse;
11155
11302
 
11156
- },{"../../excecoes":107,"./chamavel":141,"./objeto-delegua-classe":149}],145:[function(require,module,exports){
11303
+ },{"../../excecoes":109,"./chamavel":143,"./objeto-delegua-classe":151}],147:[function(require,module,exports){
11157
11304
  "use strict";
11158
11305
  Object.defineProperty(exports, "__esModule", { value: true });
11159
11306
  exports.FuncaoPadrao = void 0;
@@ -11190,7 +11337,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
11190
11337
  }
11191
11338
  exports.FuncaoPadrao = FuncaoPadrao;
11192
11339
 
11193
- },{"./chamavel":141}],146:[function(require,module,exports){
11340
+ },{"./chamavel":143}],148:[function(require,module,exports){
11194
11341
  "use strict";
11195
11342
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
11196
11343
  if (k2 === undefined) k2 = k;
@@ -11218,7 +11365,7 @@ __exportStar(require("./objeto-delegua-classe"), exports);
11218
11365
  __exportStar(require("./objeto-padrao"), exports);
11219
11366
  __exportStar(require("./referencia-montao"), exports);
11220
11367
 
11221
- },{"./chamavel":141,"./classe-padrao":142,"./delegua-funcao":143,"./descritor-tipo-classe":144,"./funcao-padrao":145,"./metodo-primitiva":147,"./modulo":148,"./objeto-delegua-classe":149,"./objeto-padrao":150,"./referencia-montao":151}],147:[function(require,module,exports){
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){
11222
11369
  "use strict";
11223
11370
  Object.defineProperty(exports, "__esModule", { value: true });
11224
11371
  exports.MetodoPrimitiva = void 0;
@@ -11261,7 +11408,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
11261
11408
  }
11262
11409
  exports.MetodoPrimitiva = MetodoPrimitiva;
11263
11410
 
11264
- },{"./chamavel":141}],148:[function(require,module,exports){
11411
+ },{"./chamavel":143}],150:[function(require,module,exports){
11265
11412
  "use strict";
11266
11413
  Object.defineProperty(exports, "__esModule", { value: true });
11267
11414
  exports.DeleguaModulo = void 0;
@@ -11287,7 +11434,7 @@ class DeleguaModulo {
11287
11434
  }
11288
11435
  exports.DeleguaModulo = DeleguaModulo;
11289
11436
 
11290
- },{}],149:[function(require,module,exports){
11437
+ },{}],151:[function(require,module,exports){
11291
11438
  "use strict";
11292
11439
  Object.defineProperty(exports, "__esModule", { value: true });
11293
11440
  exports.ObjetoDeleguaClasse = void 0;
@@ -11355,7 +11502,7 @@ class ObjetoDeleguaClasse {
11355
11502
  }
11356
11503
  exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
11357
11504
 
11358
- },{"../../excecoes":107}],150:[function(require,module,exports){
11505
+ },{"../../excecoes":109}],152:[function(require,module,exports){
11359
11506
  "use strict";
11360
11507
  Object.defineProperty(exports, "__esModule", { value: true });
11361
11508
  exports.ObjetoPadrao = void 0;
@@ -11389,7 +11536,7 @@ class ObjetoPadrao {
11389
11536
  }
11390
11537
  exports.ObjetoPadrao = ObjetoPadrao;
11391
11538
 
11392
- },{}],151:[function(require,module,exports){
11539
+ },{}],153:[function(require,module,exports){
11393
11540
  "use strict";
11394
11541
  Object.defineProperty(exports, "__esModule", { value: true });
11395
11542
  exports.ReferenciaMontao = void 0;
@@ -11414,7 +11561,7 @@ class ReferenciaMontao {
11414
11561
  }
11415
11562
  exports.ReferenciaMontao = ReferenciaMontao;
11416
11563
 
11417
- },{}],152:[function(require,module,exports){
11564
+ },{}],154:[function(require,module,exports){
11418
11565
  "use strict";
11419
11566
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
11420
11567
  if (k2 === undefined) k2 = k;
@@ -11434,7 +11581,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
11434
11581
  __exportStar(require("./interpretador"), exports);
11435
11582
  __exportStar(require("./interpretador-base"), exports);
11436
11583
 
11437
- },{"./interpretador":154,"./interpretador-base":153}],153:[function(require,module,exports){
11584
+ },{"./interpretador":156,"./interpretador-base":155}],155:[function(require,module,exports){
11438
11585
  (function (process){(function (){
11439
11586
  "use strict";
11440
11587
  var __importDefault = (this && this.__importDefault) || function (mod) {
@@ -12967,7 +13114,7 @@ class InterpretadorBase {
12967
13114
  exports.InterpretadorBase = InterpretadorBase;
12968
13115
 
12969
13116
  }).call(this)}).call(this,require('_process'))
12970
- },{"../avaliador-sintatico":12,"../bibliotecas/primitivas-dicionario":21,"../construtos":50,"../excecoes":107,"../inferenciador":113,"../lexador":170,"../quebras":177,"../tipos-de-dados/delegua":178,"../tipos-de-dados/primitivos":180,"../tipos-de-simbolos/delegua":183,"./comum":139,"./espaco-memoria":140,"./estruturas":146,"./estruturas/metodo-primitiva":147,"./pilha-escopos-execucao":156,"_process":417,"browser-process-hrtime":363}],154:[function(require,module,exports){
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){
12971
13118
  "use strict";
12972
13119
  var __importDefault = (this && this.__importDefault) || function (mod) {
12973
13120
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -13749,12 +13896,25 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
13749
13896
  this.pilhaEscoposExecucao.registrarReferenciaMontao(enderecoDicionarioMontao);
13750
13897
  return new estruturas_1.ReferenciaMontao(enderecoDicionarioMontao);
13751
13898
  }
13899
+ async visitarExpressaoElvis(expressao) {
13900
+ const esquerda = await this.avaliar(expressao.esquerda);
13901
+ const direita = await this.avaliar(expressao.direita);
13902
+ const valorEsquerdo = this.resolverValor(esquerda);
13903
+ const valorDireito = this.resolverValor(direita);
13904
+ if (valorEsquerdo === null || valorEsquerdo === undefined) {
13905
+ return valorDireito;
13906
+ }
13907
+ return valorEsquerdo;
13908
+ }
13752
13909
  visitarExpressaoEnquanto(expressao) {
13753
13910
  return this.logicaComumExecucaoEnquanto(expressao, true);
13754
13911
  }
13755
13912
  visitarExpressaoFazer(expressao) {
13756
13913
  return this.logicaComumExecucaoFazer(expressao, true);
13757
13914
  }
13915
+ visitarExpressaoImportar(expressao) {
13916
+ throw new Error('Importações não são suportadas neste interpretador.');
13917
+ }
13758
13918
  async visitarExpressaoListaCompreensao(listaCompreensao) {
13759
13919
  const vetorVariavelIteracao = await this.avaliar(listaCompreensao.referenciaVariavelIteracao);
13760
13920
  let valorVetorVariavelIteracao = this.resolverValor(vetorVariavelIteracao);
@@ -13919,7 +14079,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
13919
14079
  }
13920
14080
  exports.Interpretador = Interpretador;
13921
14081
 
13922
- },{"../bibliotecas/primitivas-dicionario":21,"../bibliotecas/primitivas-numero":22,"../bibliotecas/primitivas-texto":23,"../bibliotecas/primitivas-vetor":24,"../construtos":50,"../declaracoes":94,"../excecoes":107,"../inferenciador":113,"../quebras":177,"../tipos-de-dados/delegua":178,"../tipos-de-dados/primitivos":180,"./estruturas":146,"./interpretador-base":153,"./montao":155}],155:[function(require,module,exports){
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){
13923
14083
  "use strict";
13924
14084
  Object.defineProperty(exports, "__esModule", { value: true });
13925
14085
  exports.Montao = void 0;
@@ -13976,7 +14136,7 @@ class Montao {
13976
14136
  }
13977
14137
  exports.Montao = Montao;
13978
14138
 
13979
- },{"../excecoes":107,"../geracao-identificadores":111}],156:[function(require,module,exports){
14139
+ },{"../excecoes":109,"../geracao-identificadores":113}],158:[function(require,module,exports){
13980
14140
  "use strict";
13981
14141
  var __importDefault = (this && this.__importDefault) || function (mod) {
13982
14142
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14264,7 +14424,7 @@ class PilhaEscoposExecucao {
14264
14424
  }
14265
14425
  exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
14266
14426
 
14267
- },{"../excecoes":107,"../inferenciador":113,"../lexador":170,"../tipos-de-dados/delegua":178,"./estruturas":146}],157:[function(require,module,exports){
14427
+ },{"../excecoes":109,"../inferenciador":115,"../lexador":172,"../tipos-de-dados/delegua":180,"./estruturas":148}],159:[function(require,module,exports){
14268
14428
  "use strict";
14269
14429
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
14270
14430
  if (k2 === undefined) k2 = k;
@@ -14288,7 +14448,7 @@ __exportStar(require("./lexador-guarani"), exports);
14288
14448
  __exportStar(require("./lexador-portugol-ipt"), exports);
14289
14449
  __exportStar(require("./lexador-tenda"), exports);
14290
14450
 
14291
- },{"./lexador-calango":158,"./lexador-egua-classico":159,"./lexador-guarani":160,"./lexador-pitugues":161,"./lexador-portugol-ipt":162,"./lexador-tenda":163}],158:[function(require,module,exports){
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){
14292
14452
  "use strict";
14293
14453
  var __importDefault = (this && this.__importDefault) || function (mod) {
14294
14454
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14521,7 +14681,7 @@ class LexadorCalango {
14521
14681
  }
14522
14682
  exports.LexadorCalango = LexadorCalango;
14523
14683
 
14524
- },{"../../tipos-de-simbolos/calango":181,"../simbolo":176,"./palavras-reservadas/calango":164}],159:[function(require,module,exports){
14684
+ },{"../../tipos-de-simbolos/calango":183,"../simbolo":178,"./palavras-reservadas/calango":166}],161:[function(require,module,exports){
14525
14685
  "use strict";
14526
14686
  var __importDefault = (this && this.__importDefault) || function (mod) {
14527
14687
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14811,7 +14971,7 @@ class LexadorEguaClassico {
14811
14971
  }
14812
14972
  exports.LexadorEguaClassico = LexadorEguaClassico;
14813
14973
 
14814
- },{"../../tipos-de-simbolos/egua-classico":184,"../simbolo":176,"./palavras-reservadas/egua-classico":165}],160:[function(require,module,exports){
14974
+ },{"../../tipos-de-simbolos/egua-classico":186,"../simbolo":178,"./palavras-reservadas/egua-classico":167}],162:[function(require,module,exports){
14815
14975
  "use strict";
14816
14976
  var __importDefault = (this && this.__importDefault) || function (mod) {
14817
14977
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14930,7 +15090,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
14930
15090
  }
14931
15091
  exports.LexadorGuarani = LexadorGuarani;
14932
15092
 
14933
- },{"../../tipos-de-simbolos/guarani":185,"../lexador-base":172,"./palavras-reservadas/guarani":166}],161:[function(require,module,exports){
15093
+ },{"../../tipos-de-simbolos/guarani":187,"../lexador-base":174,"./palavras-reservadas/guarani":168}],163:[function(require,module,exports){
14934
15094
  "use strict";
14935
15095
  var __importDefault = (this && this.__importDefault) || function (mod) {
14936
15096
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15348,7 +15508,7 @@ class LexadorPitugues {
15348
15508
  }
15349
15509
  exports.LexadorPitugues = LexadorPitugues;
15350
15510
 
15351
- },{"../../tipos-de-simbolos/pitugues":187,"../simbolo":176,"./palavras-reservadas/pitugues":167,"browser-process-hrtime":363}],162:[function(require,module,exports){
15511
+ },{"../../tipos-de-simbolos/pitugues":189,"../simbolo":178,"./palavras-reservadas/pitugues":169,"browser-process-hrtime":365}],164:[function(require,module,exports){
15352
15512
  "use strict";
15353
15513
  var __importDefault = (this && this.__importDefault) || function (mod) {
15354
15514
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15600,7 +15760,7 @@ class LexadorPortugolIpt {
15600
15760
  }
15601
15761
  exports.LexadorPortugolIpt = LexadorPortugolIpt;
15602
15762
 
15603
- },{"../../tipos-de-simbolos/portugol-ipt":188,"../simbolo":176,"./palavras-reservadas/portugol-ipt":168}],163:[function(require,module,exports){
15763
+ },{"../../tipos-de-simbolos/portugol-ipt":190,"../simbolo":178,"./palavras-reservadas/portugol-ipt":170}],165:[function(require,module,exports){
15604
15764
  "use strict";
15605
15765
  var __importDefault = (this && this.__importDefault) || function (mod) {
15606
15766
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15991,7 +16151,7 @@ class LexadorTenda {
15991
16151
  }
15992
16152
  exports.LexadorTenda = LexadorTenda;
15993
16153
 
15994
- },{"../../tipos-de-simbolos/tenda":189,"../simbolo":176,"./palavras-reservadas/tenda":169,"browser-process-hrtime":363}],164:[function(require,module,exports){
16154
+ },{"../../tipos-de-simbolos/tenda":191,"../simbolo":178,"./palavras-reservadas/tenda":171,"browser-process-hrtime":365}],166:[function(require,module,exports){
15995
16155
  "use strict";
15996
16156
  var __importDefault = (this && this.__importDefault) || function (mod) {
15997
16157
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16012,7 +16172,7 @@ exports.default = {
16012
16172
  fimSe: calango_1.default.FIM_SE,
16013
16173
  };
16014
16174
 
16015
- },{"../../../tipos-de-simbolos/calango":181}],165:[function(require,module,exports){
16175
+ },{"../../../tipos-de-simbolos/calango":183}],167:[function(require,module,exports){
16016
16176
  "use strict";
16017
16177
  var __importDefault = (this && this.__importDefault) || function (mod) {
16018
16178
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16053,7 +16213,7 @@ exports.palavrasReservadas = {
16053
16213
  verdadeiro: egua_classico_1.default.VERDADEIRO,
16054
16214
  };
16055
16215
 
16056
- },{"../../../tipos-de-simbolos/egua-classico":184}],166:[function(require,module,exports){
16216
+ },{"../../../tipos-de-simbolos/egua-classico":186}],168:[function(require,module,exports){
16057
16217
  "use strict";
16058
16218
  var __importDefault = (this && this.__importDefault) || function (mod) {
16059
16219
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16065,7 +16225,7 @@ exports.palavrasReservadas = {
16065
16225
  hai: guarani_1.default.HAI,
16066
16226
  };
16067
16227
 
16068
- },{"../../../tipos-de-simbolos/guarani":185}],167:[function(require,module,exports){
16228
+ },{"../../../tipos-de-simbolos/guarani":187}],169:[function(require,module,exports){
16069
16229
  "use strict";
16070
16230
  var __importDefault = (this && this.__importDefault) || function (mod) {
16071
16231
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16125,7 +16285,7 @@ exports.palavrasReservadasMicroGramatica = {
16125
16285
  verdadeiro: pitugues_1.default.VERDADEIRO,
16126
16286
  };
16127
16287
 
16128
- },{"../../../tipos-de-simbolos/pitugues":187}],168:[function(require,module,exports){
16288
+ },{"../../../tipos-de-simbolos/pitugues":189}],170:[function(require,module,exports){
16129
16289
  "use strict";
16130
16290
  var __importDefault = (this && this.__importDefault) || function (mod) {
16131
16291
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16147,7 +16307,7 @@ exports.palavrasReservadas = {
16147
16307
  senão: portugol_ipt_1.default.SENAO,
16148
16308
  };
16149
16309
 
16150
- },{"../../../tipos-de-simbolos/portugol-ipt":188}],169:[function(require,module,exports){
16310
+ },{"../../../tipos-de-simbolos/portugol-ipt":190}],171:[function(require,module,exports){
16151
16311
  "use strict";
16152
16312
  var __importDefault = (this && this.__importDefault) || function (mod) {
16153
16313
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16205,7 +16365,7 @@ exports.palavrasReservadas = {
16205
16365
  Texto: tenda_1.default.BIBLIOTECA_GLOBAL,
16206
16366
  };
16207
16367
 
16208
- },{"../../../tipos-de-simbolos/tenda":189}],170:[function(require,module,exports){
16368
+ },{"../../../tipos-de-simbolos/tenda":191}],172:[function(require,module,exports){
16209
16369
  "use strict";
16210
16370
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
16211
16371
  if (k2 === undefined) k2 = k;
@@ -16228,7 +16388,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
16228
16388
  __exportStar(require("./micro-lexador"), exports);
16229
16389
  __exportStar(require("./simbolo"), exports);
16230
16390
 
16231
- },{"./dialetos":157,"./lexador":173,"./lexador-base-linha-unica":171,"./micro-lexador":174,"./simbolo":176}],171:[function(require,module,exports){
16391
+ },{"./dialetos":159,"./lexador":175,"./lexador-base-linha-unica":173,"./micro-lexador":176,"./simbolo":178}],173:[function(require,module,exports){
16232
16392
  "use strict";
16233
16393
  Object.defineProperty(exports, "__esModule", { value: true });
16234
16394
  exports.LexadorBaseLinhaUnica = void 0;
@@ -16312,7 +16472,7 @@ class LexadorBaseLinhaUnica {
16312
16472
  }
16313
16473
  exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
16314
16474
 
16315
- },{"./simbolo":176}],172:[function(require,module,exports){
16475
+ },{"./simbolo":178}],174:[function(require,module,exports){
16316
16476
  "use strict";
16317
16477
  Object.defineProperty(exports, "__esModule", { value: true });
16318
16478
  exports.LexadorBase = void 0;
@@ -16426,7 +16586,7 @@ class LexadorBase {
16426
16586
  }
16427
16587
  exports.LexadorBase = LexadorBase;
16428
16588
 
16429
- },{"./simbolo":176}],173:[function(require,module,exports){
16589
+ },{"./simbolo":178}],175:[function(require,module,exports){
16430
16590
  "use strict";
16431
16591
  var __importDefault = (this && this.__importDefault) || function (mod) {
16432
16592
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16821,6 +16981,16 @@ class Lexador {
16821
16981
  break;
16822
16982
  }
16823
16983
  break;
16984
+ case '?':
16985
+ this.avancar();
16986
+ if (this.simboloAtual() === ':') {
16987
+ this.adicionarSimbolo(delegua_1.default.ELVIS, '?:');
16988
+ this.avancar();
16989
+ }
16990
+ else {
16991
+ this.adicionarSimbolo(delegua_1.default.INTERROGACAO);
16992
+ }
16993
+ break;
16824
16994
  // Esta sessão ignora espaços em branco (ou similares) na tokenização.
16825
16995
  case ' ':
16826
16996
  case '\0':
@@ -16887,7 +17057,7 @@ class Lexador {
16887
17057
  }
16888
17058
  exports.Lexador = Lexador;
16889
17059
 
16890
- },{"../tipos-de-simbolos/delegua":183,"./palavras-reservadas":175,"./simbolo":176,"browser-process-hrtime":363}],174:[function(require,module,exports){
17060
+ },{"../tipos-de-simbolos/delegua":185,"./palavras-reservadas":177,"./simbolo":178,"browser-process-hrtime":365}],176:[function(require,module,exports){
16891
17061
  "use strict";
16892
17062
  var __importDefault = (this && this.__importDefault) || function (mod) {
16893
17063
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -17053,6 +17223,16 @@ class MicroLexador {
17053
17223
  this.atual++;
17054
17224
  this.adicionarSimbolo(delegua_1.default.DIVISAO_INTEIRA);
17055
17225
  break;
17226
+ case '?':
17227
+ this.atual++;
17228
+ if (this.codigo[this.atual] === ':') {
17229
+ this.adicionarSimbolo(delegua_1.default.ELVIS, '?:');
17230
+ this.atual++;
17231
+ }
17232
+ else {
17233
+ this.adicionarSimbolo(delegua_1.default.INTERROGACAO);
17234
+ }
17235
+ break;
17056
17236
  case ' ':
17057
17237
  case '\0':
17058
17238
  case '\r':
@@ -17110,7 +17290,7 @@ class MicroLexador {
17110
17290
  }
17111
17291
  exports.MicroLexador = MicroLexador;
17112
17292
 
17113
- },{"../tipos-de-simbolos/microgramaticas/delegua":186,"./palavras-reservadas":175,"./simbolo":176}],175:[function(require,module,exports){
17293
+ },{"../tipos-de-simbolos/microgramaticas/delegua":188,"./palavras-reservadas":177,"./simbolo":178}],177:[function(require,module,exports){
17114
17294
  "use strict";
17115
17295
  var __importDefault = (this && this.__importDefault) || function (mod) {
17116
17296
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -17161,6 +17341,7 @@ exports.palavrasReservadas = {
17161
17341
  tendo: delegua_1.default.TENDO,
17162
17342
  tente: delegua_1.default.TENTE,
17163
17343
  tipo: delegua_1.default.TIPO,
17344
+ tudo: delegua_1.default.TUDO,
17164
17345
  var: delegua_1.default.VARIAVEL,
17165
17346
  variavel: delegua_1.default.VARIAVEL,
17166
17347
  variável: delegua_1.default.VARIAVEL,
@@ -17175,7 +17356,7 @@ exports.palavrasReservadasMicroGramatica = {
17175
17356
  verdadeiro: delegua_1.default.VERDADEIRO,
17176
17357
  };
17177
17358
 
17178
- },{"../tipos-de-simbolos/delegua":183}],176:[function(require,module,exports){
17359
+ },{"../tipos-de-simbolos/delegua":185}],178:[function(require,module,exports){
17179
17360
  "use strict";
17180
17361
  Object.defineProperty(exports, "__esModule", { value: true });
17181
17362
  exports.Simbolo = void 0;
@@ -17193,7 +17374,7 @@ class Simbolo {
17193
17374
  }
17194
17375
  exports.Simbolo = Simbolo;
17195
17376
 
17196
- },{}],177:[function(require,module,exports){
17377
+ },{}],179:[function(require,module,exports){
17197
17378
  "use strict";
17198
17379
  Object.defineProperty(exports, "__esModule", { value: true });
17199
17380
  exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
@@ -17218,7 +17399,7 @@ class ContinuarQuebra extends Quebra {
17218
17399
  }
17219
17400
  exports.ContinuarQuebra = ContinuarQuebra;
17220
17401
 
17221
- },{}],178:[function(require,module,exports){
17402
+ },{}],180:[function(require,module,exports){
17222
17403
  "use strict";
17223
17404
  Object.defineProperty(exports, "__esModule", { value: true });
17224
17405
  exports.default = {
@@ -17248,7 +17429,7 @@ exports.default = {
17248
17429
  VETOR_TEXTO: 'texto[]',
17249
17430
  };
17250
17431
 
17251
- },{}],179:[function(require,module,exports){
17432
+ },{}],181:[function(require,module,exports){
17252
17433
  "use strict";
17253
17434
  Object.defineProperty(exports, "__esModule", { value: true });
17254
17435
  exports.default = {
@@ -17278,7 +17459,7 @@ exports.default = {
17278
17459
  VETOR_TEXTO: 'texto[]',
17279
17460
  };
17280
17461
 
17281
- },{}],180:[function(require,module,exports){
17462
+ },{}],182:[function(require,module,exports){
17282
17463
  "use strict";
17283
17464
  Object.defineProperty(exports, "__esModule", { value: true });
17284
17465
  exports.default = {
@@ -17297,7 +17478,7 @@ exports.default = {
17297
17478
  TEXTO: 'string',
17298
17479
  };
17299
17480
 
17300
- },{}],181:[function(require,module,exports){
17481
+ },{}],183:[function(require,module,exports){
17301
17482
  "use strict";
17302
17483
  Object.defineProperty(exports, "__esModule", { value: true });
17303
17484
  exports.default = {
@@ -17341,7 +17522,7 @@ exports.default = {
17341
17522
  VIRGULA: 'VIRGULA',
17342
17523
  };
17343
17524
 
17344
- },{}],182:[function(require,module,exports){
17525
+ },{}],184:[function(require,module,exports){
17345
17526
  "use strict";
17346
17527
  Object.defineProperty(exports, "__esModule", { value: true });
17347
17528
  exports.default = {
@@ -17367,7 +17548,7 @@ exports.default = {
17367
17548
  VIRGULA: 'VIRGULA',
17368
17549
  };
17369
17550
 
17370
- },{}],183:[function(require,module,exports){
17551
+ },{}],185:[function(require,module,exports){
17371
17552
  "use strict";
17372
17553
  Object.defineProperty(exports, "__esModule", { value: true });
17373
17554
  exports.default = {
@@ -17398,6 +17579,7 @@ exports.default = {
17398
17579
  DIVISAO_INTEIRA_IGUAL: 'DIVISAO_INTEIRA_IGUAL',
17399
17580
  DOIS_PONTOS: 'DOIS_PONTOS',
17400
17581
  E: 'E',
17582
+ ELVIS: 'ELVIS',
17401
17583
  EM: 'EM',
17402
17584
  ENQUANTO: 'ENQUANTO',
17403
17585
  EOF: 'EOF',
@@ -17417,6 +17599,7 @@ exports.default = {
17417
17599
  IGUAL_IGUAL: 'IGUAL_IGUAL',
17418
17600
  IMPORTAR: 'IMPORTAR',
17419
17601
  INCREMENTAR: 'INCREMENTAR',
17602
+ INTERROGACAO: 'INTERROGACAO',
17420
17603
  ISTO: 'ISTO',
17421
17604
  LEIA: 'LEIA',
17422
17605
  LINHA_COMENTARIO: 'LINHA_COMENTARIO',
@@ -17458,12 +17641,13 @@ exports.default = {
17458
17641
  TENTE: 'TENTE',
17459
17642
  TEXTO: 'TEXTO',
17460
17643
  TIPO: 'TIPO',
17644
+ TUDO: 'TUDO',
17461
17645
  VARIAVEL: 'VARIAVEL',
17462
17646
  VERDADEIRO: 'VERDADEIRO',
17463
17647
  VIRGULA: 'VIRGULA',
17464
17648
  };
17465
17649
 
17466
- },{}],184:[function(require,module,exports){
17650
+ },{}],186:[function(require,module,exports){
17467
17651
  "use strict";
17468
17652
  Object.defineProperty(exports, "__esModule", { value: true });
17469
17653
  exports.default = {
@@ -17541,7 +17725,7 @@ exports.default = {
17541
17725
  VIRGULA: 'VIRGULA',
17542
17726
  };
17543
17727
 
17544
- },{}],185:[function(require,module,exports){
17728
+ },{}],187:[function(require,module,exports){
17545
17729
  "use strict";
17546
17730
  Object.defineProperty(exports, "__esModule", { value: true });
17547
17731
  exports.default = {
@@ -17558,7 +17742,7 @@ exports.default = {
17558
17742
  VIRGULA: 'VIRGULA',
17559
17743
  };
17560
17744
 
17561
- },{}],186:[function(require,module,exports){
17745
+ },{}],188:[function(require,module,exports){
17562
17746
  "use strict";
17563
17747
  Object.defineProperty(exports, "__esModule", { value: true });
17564
17748
  exports.default = {
@@ -17577,6 +17761,7 @@ exports.default = {
17577
17761
  DIVISAO_INTEIRA: 'DIVISAO_INTEIRA',
17578
17762
  DOIS_PONTOS: 'DOIS_PONTOS',
17579
17763
  E: 'E',
17764
+ ELVIS: 'ELVIS',
17580
17765
  EM: 'EM',
17581
17766
  EOF: 'EOF',
17582
17767
  EXPONENCIACAO: 'EXPONENCIACAO',
@@ -17585,6 +17770,7 @@ exports.default = {
17585
17770
  IGUAL: 'IGUAL',
17586
17771
  IGUAL_IGUAL: 'IGUAL_IGUAL',
17587
17772
  INCREMENTAR: 'INCREMENTAR',
17773
+ INTERROGACAO: 'INTERROGACAO',
17588
17774
  MAIOR: 'MAIOR',
17589
17775
  MAIOR_IGUAL: 'MAIOR_IGUAL',
17590
17776
  MAIOR_MAIOR: 'MAIOR_MAIOR',
@@ -17607,7 +17793,7 @@ exports.default = {
17607
17793
  VIRGULA: 'VIRGULA',
17608
17794
  };
17609
17795
 
17610
- },{}],187:[function(require,module,exports){
17796
+ },{}],189:[function(require,module,exports){
17611
17797
  "use strict";
17612
17798
  Object.defineProperty(exports, "__esModule", { value: true });
17613
17799
  exports.default = {
@@ -17691,7 +17877,7 @@ exports.default = {
17691
17877
  VIRGULA: 'VIRGULA',
17692
17878
  };
17693
17879
 
17694
- },{}],188:[function(require,module,exports){
17880
+ },{}],190:[function(require,module,exports){
17695
17881
  "use strict";
17696
17882
  Object.defineProperty(exports, "__esModule", { value: true });
17697
17883
  exports.default = {
@@ -17730,7 +17916,7 @@ exports.default = {
17730
17916
  VIRGULA: 'VIRGULA',
17731
17917
  };
17732
17918
 
17733
- },{}],189:[function(require,module,exports){
17919
+ },{}],191:[function(require,module,exports){
17734
17920
  "use strict";
17735
17921
  Object.defineProperty(exports, "__esModule", { value: true });
17736
17922
  // Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
@@ -17825,7 +18011,7 @@ exports.default = {
17825
18011
  VIRGULA: 'VIRGULA',
17826
18012
  };
17827
18013
 
17828
- },{}],190:[function(require,module,exports){
18014
+ },{}],192:[function(require,module,exports){
17829
18015
  "use strict";
17830
18016
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
17831
18017
  if (k2 === undefined) k2 = k;
@@ -17852,7 +18038,7 @@ __exportStar(require("./tradutor-reverso-javascript"), exports);
17852
18038
  __exportStar(require("./tradutor-reverso-python"), exports);
17853
18039
  __exportStar(require("./tradutor-reverso-tenda"), exports);
17854
18040
 
17855
- },{"./tradutor-assemblyscript":193,"./tradutor-calango":194,"./tradutor-javascript":195,"./tradutor-mermaidjs":196,"./tradutor-portugol-ipt":197,"./tradutor-python":198,"./tradutor-reverso-javascript":199,"./tradutor-reverso-python":200,"./tradutor-reverso-tenda":201}],191:[function(require,module,exports){
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){
17856
18042
  "use strict";
17857
18043
  // Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
17858
18044
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -19092,7 +19278,7 @@ __decorate([
19092
19278
  Decorators_1.Override
19093
19279
  ], Python3Lexer.prototype, "nextToken", null);
19094
19280
 
19095
- },{"./python3-parser":192,"antlr4ts/CommonToken":211,"antlr4ts/Decorators":215,"antlr4ts/Lexer":223,"antlr4ts/Token":240,"antlr4ts/VocabularyImpl":246,"antlr4ts/atn/ATNDeserializer":252,"antlr4ts/atn/LexerATNSimulator":273,"antlr4ts/misc/Utils":334}],192:[function(require,module,exports){
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){
19096
19282
  "use strict";
19097
19283
  // Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
19098
19284
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -30339,7 +30525,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
30339
30525
  }
30340
30526
  exports.Yield_argContext = Yield_argContext;
30341
30527
 
30342
- },{"antlr4ts/FailedPredicateException":219,"antlr4ts/NoViableAltException":227,"antlr4ts/Parser":228,"antlr4ts/ParserRuleContext":231,"antlr4ts/RecognitionException":234,"antlr4ts/Token":240,"antlr4ts/VocabularyImpl":246,"antlr4ts/atn/ATN":248,"antlr4ts/atn/ATNDeserializer":252,"antlr4ts/atn/ParserATNSimulator":289,"antlr4ts/misc/Utils":334}],193:[function(require,module,exports){
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){
30343
30529
  "use strict";
30344
30530
  var __importDefault = (this && this.__importDefault) || function (mod) {
30345
30531
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -30974,7 +31160,7 @@ class TradutorAssemblyScript {
30974
31160
  }
30975
31161
  exports.TradutorAssemblyScript = TradutorAssemblyScript;
30976
31162
 
30977
- },{"../construtos":50,"../declaracoes":94,"../tipos-de-simbolos/delegua":183}],194:[function(require,module,exports){
31163
+ },{"../construtos":52,"../declaracoes":96,"../tipos-de-simbolos/delegua":185}],196:[function(require,module,exports){
30978
31164
  "use strict";
30979
31165
  Object.defineProperty(exports, "__esModule", { value: true });
30980
31166
  exports.TradutorCalango = void 0;
@@ -31036,7 +31222,7 @@ class TradutorCalango {
31036
31222
  }
31037
31223
  exports.TradutorCalango = TradutorCalango;
31038
31224
 
31039
- },{"../avaliador-sintatico/dialetos/avaliador-sintatico-calango":4,"../lexador/dialetos":157}],195:[function(require,module,exports){
31225
+ },{"../avaliador-sintatico/dialetos/avaliador-sintatico-calango":4,"../lexador/dialetos":159}],197:[function(require,module,exports){
31040
31226
  "use strict";
31041
31227
  var __importDefault = (this && this.__importDefault) || function (mod) {
31042
31228
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -31055,13 +31241,13 @@ class TradutorJavaScript {
31055
31241
  constructor() {
31056
31242
  this.indentacao = 0;
31057
31243
  this.dicionarioConstrutos = {
31058
- AcessoIndiceVariavel: this.traduzirConstrutoAcessoIndiceVariavel.bind(this),
31059
- AcessoMetodo: this.traduzirConstrutoAcessoMetodo.bind(this),
31060
- AcessoMetodoOuPropriedade: this.traduzirConstrutoAcessoMetodoOuPropriedade.bind(this),
31061
- AcessoPropriedade: this.traduzirConstrutoAcessoPropriedade.bind(this),
31244
+ AcessoIndiceVariavel: this.traduzirExpressaoAcessoIndiceVariavel.bind(this),
31245
+ AcessoMetodo: this.traduzirExpressaoAcessoMetodo.bind(this),
31246
+ AcessoMetodoOuPropriedade: this.traduzirExpressaoAcessoMetodoOuPropriedade.bind(this),
31247
+ AcessoPropriedade: this.traduzirExpressaoAcessoPropriedade.bind(this),
31062
31248
  Agrupamento: this.traduzirConstrutoAgrupamento.bind(this),
31063
- ArgumentoReferenciaFuncao: this.traduzirConstrutoArgumentoReferenciaFuncao.bind(this),
31064
- AtribuicaoPorIndice: this.traduzirConstrutoAtribuicaoPorIndice.bind(this),
31249
+ ArgumentoReferenciaFuncao: this.traduzirExpressaoArgumentoReferenciaFuncao.bind(this),
31250
+ AtribuicaoPorIndice: this.traduzirExpressaoAtribuicaoPorIndice.bind(this),
31065
31251
  Atribuir: this.traduzirConstrutoAtribuir.bind(this),
31066
31252
  Binario: this.traduzirConstrutoBinario.bind(this),
31067
31253
  ComentarioComoConstruto: this.traduzirDeclaracaoComentario.bind(this),
@@ -31069,11 +31255,12 @@ class TradutorJavaScript {
31069
31255
  DefinirValor: this.traduzirConstrutoDefinirValor.bind(this),
31070
31256
  Dicionario: this.traduzirConstrutoDicionario.bind(this),
31071
31257
  FuncaoConstruto: this.traduzirFuncaoConstruto.bind(this),
31258
+ ImportarComoConstruto: this.traduzirExpressaoImportar.bind(this),
31072
31259
  Isto: () => 'this',
31073
- Leia: this.traduzirConstrutoLeia.bind(this),
31260
+ Leia: this.traduzirExpressaoLeia.bind(this),
31074
31261
  Literal: this.traduzirConstrutoLiteral.bind(this),
31075
- Logico: this.traduzirConstrutoLogico.bind(this),
31076
- ReferenciaFuncao: this.traduzirConstrutoReferenciaFuncao.bind(this),
31262
+ Logico: this.traduzirExpressaoLogica.bind(this),
31263
+ ReferenciaFuncao: this.traduzirExpressaoReferenciaFuncao.bind(this),
31077
31264
  Separador: this.traduzirConstrutoSeparador.bind(this),
31078
31265
  TipoDe: this.traduzirConstrutoTipoDe.bind(this),
31079
31266
  Unario: this.traduzirConstrutoUnario.bind(this),
@@ -31459,7 +31646,7 @@ class TradutorJavaScript {
31459
31646
  traduzirDeclaracaoImportar(declaracaoImportar) {
31460
31647
  return `'importar() não é suportado por este padrão de JavaScript'`;
31461
31648
  }
31462
- traduzirConstrutoLeia(declaracaoLeia) {
31649
+ traduzirExpressaoLeia(declaracaoLeia) {
31463
31650
  return `'leia() não é suportado por este padrão de JavaScript.'`;
31464
31651
  }
31465
31652
  traduzirDeclaracaoParaCada(declaracaoParaCada) {
@@ -31579,12 +31766,7 @@ class TradutorJavaScript {
31579
31766
  resultado += ';';
31580
31767
  else {
31581
31768
  resultado += ' = ';
31582
- if (this.dicionarioConstrutos[declaracaoVar.inicializador.constructor.name]) {
31583
- resultado += this.dicionarioConstrutos[declaracaoVar.inicializador.constructor.name](declaracaoVar.inicializador);
31584
- }
31585
- else {
31586
- resultado += this.dicionarioDeclaracoes[declaracaoVar.inicializador.constructor.name](declaracaoVar.inicializador);
31587
- }
31769
+ resultado += this.dicionarioConstrutos[declaracaoVar.inicializador.constructor.name](declaracaoVar.inicializador);
31588
31770
  if (adicionarPontoEVirgula)
31589
31771
  resultado += ';';
31590
31772
  }
@@ -31594,7 +31776,7 @@ class TradutorJavaScript {
31594
31776
  traduzirFuncaoAnonimaParaLambda(argumento) {
31595
31777
  return '';
31596
31778
  }
31597
- traduzirAcessoMetodoVetor(objeto, nomeMetodo, argumentos) {
31779
+ traduzirExpressaoAcessoMetodoVetor(objeto, nomeMetodo, argumentos) {
31598
31780
  const objetoResolvido = this.dicionarioConstrutos[objeto.constructor.name](objeto);
31599
31781
  const argumentosResolvidos = [];
31600
31782
  for (const argumento of argumentos) {
@@ -31631,7 +31813,7 @@ class TradutorJavaScript {
31631
31813
  return `len(${objetoResolvido})`;
31632
31814
  }
31633
31815
  }
31634
- traduzirConstrutoAcessoMetodo(acessoMetodo, argumentos) {
31816
+ traduzirExpressaoAcessoMetodo(acessoMetodo, argumentos) {
31635
31817
  switch (acessoMetodo.objeto.constructor.name) {
31636
31818
  case 'Isto':
31637
31819
  return `this.${acessoMetodo.nomeMetodo}`;
@@ -31639,20 +31821,20 @@ class TradutorJavaScript {
31639
31821
  let objetoVariavel = acessoMetodo.objeto;
31640
31822
  return this.traduzirFuncaoOuMetodo(acessoMetodo.nomeMetodo, objetoVariavel.simbolo.lexema, argumentos);
31641
31823
  case 'Vetor':
31642
- return this.traduzirAcessoMetodoVetor(acessoMetodo.objeto, acessoMetodo.nomeMetodo, argumentos);
31824
+ return this.traduzirExpressaoAcessoMetodoVetor(acessoMetodo.objeto, acessoMetodo.nomeMetodo, argumentos);
31643
31825
  default:
31644
31826
  const objetoResolvido = this.dicionarioConstrutos[acessoMetodo.objeto.constructor.name](acessoMetodo.objeto);
31645
31827
  return `${objetoResolvido}.${acessoMetodo.nomeMetodo}`;
31646
31828
  }
31647
31829
  }
31648
- traduzirConstrutoAcessoMetodoOuPropriedade(acessoMetodo, argumentos) {
31830
+ traduzirExpressaoAcessoMetodoOuPropriedade(acessoMetodo, argumentos) {
31649
31831
  if (acessoMetodo.objeto instanceof construtos_1.Variavel) {
31650
31832
  let objetoVariavel = acessoMetodo.objeto;
31651
31833
  return `${this.traduzirFuncaoOuMetodo(acessoMetodo.simbolo.lexema, objetoVariavel.simbolo.lexema, argumentos)}`;
31652
31834
  }
31653
31835
  return `this.${acessoMetodo.simbolo.lexema}`;
31654
31836
  }
31655
- traduzirConstrutoAcessoPropriedade(acessoMetodo, argumentos) {
31837
+ traduzirExpressaoAcessoPropriedade(acessoMetodo, argumentos) {
31656
31838
  if (acessoMetodo.objeto instanceof construtos_1.Variavel) {
31657
31839
  let objetoVariavel = acessoMetodo.objeto;
31658
31840
  return `${this.traduzirFuncaoOuMetodo(objetoVariavel.simbolo.lexema, acessoMetodo.nomePropriedade, argumentos)}`;
@@ -31671,14 +31853,14 @@ class TradutorJavaScript {
31671
31853
  resultado += this.logicaComumBlocoEscopo(funcaoConstruto.corpo);
31672
31854
  return resultado;
31673
31855
  }
31674
- traduzirConstrutoLogico(logico) {
31856
+ traduzirExpressaoLogica(logico) {
31675
31857
  let direita = this.dicionarioConstrutos[logico.direita.constructor.name](logico.direita);
31676
31858
  let operador = this.traduzirSimboloOperador(logico.operador);
31677
31859
  let esquerda = this.dicionarioConstrutos[logico.esquerda.constructor.name](logico.esquerda);
31678
31860
  return `${direita} ${operador} ${esquerda}`;
31679
31861
  }
31680
31862
  // TODO: Eliminar o soft cast para `any`.
31681
- traduzirConstrutoAtribuicaoPorIndice(AtribuicaoPorIndice) {
31863
+ traduzirExpressaoAtribuicaoPorIndice(AtribuicaoPorIndice) {
31682
31864
  var _a, _b;
31683
31865
  let resultado = '';
31684
31866
  resultado += AtribuicaoPorIndice.objeto.simbolo.lexema + '[';
@@ -31693,13 +31875,13 @@ class TradutorJavaScript {
31693
31875
  }
31694
31876
  return resultado;
31695
31877
  }
31696
- traduzirConstrutoAcessoIndiceVariavel(acessoIndiceVariavel) {
31878
+ traduzirExpressaoAcessoIndiceVariavel(acessoIndiceVariavel) {
31697
31879
  let resultado = '';
31698
31880
  resultado += this.dicionarioConstrutos[acessoIndiceVariavel.entidadeChamada.constructor.name](acessoIndiceVariavel.entidadeChamada);
31699
31881
  resultado += `[${this.dicionarioConstrutos[acessoIndiceVariavel.indice.constructor.name](acessoIndiceVariavel.indice)}]`;
31700
31882
  return resultado;
31701
31883
  }
31702
- traduzirConstrutoArgumentoReferenciaFuncao(argumentoReferenciaFuncao, argumentos) {
31884
+ traduzirExpressaoArgumentoReferenciaFuncao(argumentoReferenciaFuncao, argumentos) {
31703
31885
  const argumentosResolvidos = [];
31704
31886
  for (const argumento of argumentos) {
31705
31887
  const argumentoResolvido = this.dicionarioConstrutos[argumento.constructor.name](argumento);
@@ -31709,7 +31891,10 @@ class TradutorJavaScript {
31709
31891
  textoArgumentos = textoArgumentos.slice(0, -2);
31710
31892
  return `${argumentoReferenciaFuncao.simboloFuncao.lexema}(${textoArgumentos})`;
31711
31893
  }
31712
- traduzirConstrutoReferenciaFuncao(referenciaFuncao, argumentos) {
31894
+ traduzirExpressaoImportar(_) {
31895
+ return `'importar() não é suportado por este padrão de JavaScript'`;
31896
+ }
31897
+ traduzirExpressaoReferenciaFuncao(referenciaFuncao, argumentos) {
31713
31898
  const argumentosResolvidos = [];
31714
31899
  for (const argumento of argumentos) {
31715
31900
  const argumentoResolvido = this.dicionarioConstrutos[argumento.constructor.name](argumento);
@@ -31780,7 +31965,7 @@ class TradutorJavaScript {
31780
31965
  }
31781
31966
  exports.TradutorJavaScript = TradutorJavaScript;
31782
31967
 
31783
- },{"../construtos":50,"../declaracoes":94,"../tipos-de-simbolos/delegua":183}],196:[function(require,module,exports){
31968
+ },{"../construtos":52,"../declaracoes":96,"../tipos-de-simbolos/delegua":185}],198:[function(require,module,exports){
31784
31969
  "use strict";
31785
31970
  var __importDefault = (this && this.__importDefault) || function (mod) {
31786
31971
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -32234,7 +32419,7 @@ class TradutorMermaidJs {
32234
32419
  }
32235
32420
  exports.TradutorMermaidJs = TradutorMermaidJs;
32236
32421
 
32237
- },{"../tipos-de-simbolos/delegua":183}],197:[function(require,module,exports){
32422
+ },{"../tipos-de-simbolos/delegua":185}],199:[function(require,module,exports){
32238
32423
  "use strict";
32239
32424
  Object.defineProperty(exports, "__esModule", { value: true });
32240
32425
  exports.TradutorPortugolIpt = void 0;
@@ -32296,7 +32481,7 @@ class TradutorPortugolIpt {
32296
32481
  }
32297
32482
  exports.TradutorPortugolIpt = TradutorPortugolIpt;
32298
32483
 
32299
- },{"../avaliador-sintatico/dialetos":9,"../lexador/dialetos":157}],198:[function(require,module,exports){
32484
+ },{"../avaliador-sintatico/dialetos":9,"../lexador/dialetos":159}],200:[function(require,module,exports){
32300
32485
  "use strict";
32301
32486
  var __importDefault = (this && this.__importDefault) || function (mod) {
32302
32487
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -32938,7 +33123,7 @@ class TradutorPython {
32938
33123
  }
32939
33124
  exports.TradutorPython = TradutorPython;
32940
33125
 
32941
- },{"../construtos":50,"../declaracoes":94,"../tipos-de-simbolos/delegua":183}],199:[function(require,module,exports){
33126
+ },{"../construtos":52,"../declaracoes":96,"../tipos-de-simbolos/delegua":185}],201:[function(require,module,exports){
32942
33127
  "use strict";
32943
33128
  Object.defineProperty(exports, "__esModule", { value: true });
32944
33129
  exports.TradutorReversoJavaScript = void 0;
@@ -33335,7 +33520,7 @@ class TradutorReversoJavaScript {
33335
33520
  }
33336
33521
  exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
33337
33522
 
33338
- },{}],200:[function(require,module,exports){
33523
+ },{}],202:[function(require,module,exports){
33339
33524
  "use strict";
33340
33525
  Object.defineProperty(exports, "__esModule", { value: true });
33341
33526
  exports.TradutorReversoPython = void 0;
@@ -33408,7 +33593,7 @@ class TradutorReversoPython {
33408
33593
  }
33409
33594
  exports.TradutorReversoPython = TradutorReversoPython;
33410
33595
 
33411
- },{"./python/python3-lexer":191,"./python/python3-parser":192,"antlr4ts":317,"antlr4ts/tree/ParseTreeWalker":336}],201:[function(require,module,exports){
33596
+ },{"./python/python3-lexer":193,"./python/python3-parser":194,"antlr4ts":319,"antlr4ts/tree/ParseTreeWalker":338}],203:[function(require,module,exports){
33412
33597
  "use strict";
33413
33598
  var __importDefault = (this && this.__importDefault) || function (mod) {
33414
33599
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -34002,7 +34187,7 @@ class TradutorReversoTenda {
34002
34187
  }
34003
34188
  exports.TradutorReversoTenda = TradutorReversoTenda;
34004
34189
 
34005
- },{"../construtos":50,"../tipos-de-simbolos/tenda":189}],202:[function(require,module,exports){
34190
+ },{"../construtos":52,"../tipos-de-simbolos/tenda":191}],204:[function(require,module,exports){
34006
34191
  "use strict";
34007
34192
  /*!
34008
34193
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34010,7 +34195,7 @@ exports.TradutorReversoTenda = TradutorReversoTenda;
34010
34195
  */
34011
34196
  Object.defineProperty(exports, "__esModule", { value: true });
34012
34197
 
34013
- },{}],203:[function(require,module,exports){
34198
+ },{}],205:[function(require,module,exports){
34014
34199
  "use strict";
34015
34200
  /*!
34016
34201
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34018,7 +34203,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
34018
34203
  */
34019
34204
  Object.defineProperty(exports, "__esModule", { value: true });
34020
34205
 
34021
- },{}],204:[function(require,module,exports){
34206
+ },{}],206:[function(require,module,exports){
34022
34207
  "use strict";
34023
34208
  /*!
34024
34209
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34180,7 +34365,7 @@ __decorate([
34180
34365
  ], ANTLRInputStream.prototype, "toString", null);
34181
34366
  exports.ANTLRInputStream = ANTLRInputStream;
34182
34367
 
34183
- },{"./Decorators":215,"./IntStream":221,"assert":358}],205:[function(require,module,exports){
34368
+ },{"./Decorators":217,"./IntStream":223,"assert":360}],207:[function(require,module,exports){
34184
34369
  "use strict";
34185
34370
  /*!
34186
34371
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34263,7 +34448,7 @@ __decorate([
34263
34448
  ], BailErrorStrategy.prototype, "sync", null);
34264
34449
  exports.BailErrorStrategy = BailErrorStrategy;
34265
34450
 
34266
- },{"./Decorators":215,"./DefaultErrorStrategy":216,"./InputMismatchException":220,"./misc/ParseCancellationException":332}],206:[function(require,module,exports){
34451
+ },{"./Decorators":217,"./DefaultErrorStrategy":218,"./InputMismatchException":222,"./misc/ParseCancellationException":334}],208:[function(require,module,exports){
34267
34452
  "use strict";
34268
34453
  /*!
34269
34454
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34753,7 +34938,7 @@ BufferedTokenStream = __decorate([
34753
34938
  ], BufferedTokenStream);
34754
34939
  exports.BufferedTokenStream = BufferedTokenStream;
34755
34940
 
34756
- },{"./CommonToken":211,"./Decorators":215,"./Lexer":223,"./Token":240,"./misc/Interval":327,"assert":358}],207:[function(require,module,exports){
34941
+ },{"./CommonToken":213,"./Decorators":217,"./Lexer":225,"./Token":242,"./misc/Interval":329,"assert":360}],209:[function(require,module,exports){
34757
34942
  "use strict";
34758
34943
  /*!
34759
34944
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34761,7 +34946,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
34761
34946
  */
34762
34947
  Object.defineProperty(exports, "__esModule", { value: true });
34763
34948
 
34764
- },{}],208:[function(require,module,exports){
34949
+ },{}],210:[function(require,module,exports){
34765
34950
  "use strict";
34766
34951
  /*!
34767
34952
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34895,7 +35080,7 @@ var CharStreams;
34895
35080
  // }
34896
35081
  })(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
34897
35082
 
34898
- },{"./CodePointBuffer":209,"./CodePointCharStream":210,"./IntStream":221}],209:[function(require,module,exports){
35083
+ },{"./CodePointBuffer":211,"./CodePointCharStream":212,"./IntStream":223}],211:[function(require,module,exports){
34899
35084
  "use strict";
34900
35085
  /*!
34901
35086
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35130,7 +35315,7 @@ exports.CodePointBuffer = CodePointBuffer;
35130
35315
  CodePointBuffer.Builder = Builder;
35131
35316
  })(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
35132
35317
 
35133
- },{"./misc/Character":323,"assert":358}],210:[function(require,module,exports){
35318
+ },{"./misc/Character":325,"assert":360}],212:[function(require,module,exports){
35134
35319
  "use strict";
35135
35320
  /*!
35136
35321
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35280,7 +35465,7 @@ __decorate([
35280
35465
  ], CodePointCharStream.prototype, "getText", null);
35281
35466
  exports.CodePointCharStream = CodePointCharStream;
35282
35467
 
35283
- },{"./Decorators":215,"./IntStream":221,"./misc/Interval":327,"assert":358}],211:[function(require,module,exports){
35468
+ },{"./Decorators":217,"./IntStream":223,"./misc/Interval":329,"assert":360}],213:[function(require,module,exports){
35284
35469
  "use strict";
35285
35470
  /*!
35286
35471
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35510,7 +35695,7 @@ CommonToken = __decorate([
35510
35695
  ], CommonToken);
35511
35696
  exports.CommonToken = CommonToken;
35512
35697
 
35513
- },{"./Decorators":215,"./Token":240,"./misc/Interval":327}],212:[function(require,module,exports){
35698
+ },{"./Decorators":217,"./Token":242,"./misc/Interval":329}],214:[function(require,module,exports){
35514
35699
  "use strict";
35515
35700
  /*!
35516
35701
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35574,7 +35759,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
35574
35759
  CommonTokenFactory.DEFAULT = new CommonTokenFactory();
35575
35760
  })(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
35576
35761
 
35577
- },{"./CommonToken":211,"./Decorators":215,"./misc/Interval":327}],213:[function(require,module,exports){
35762
+ },{"./CommonToken":213,"./Decorators":217,"./misc/Interval":329}],215:[function(require,module,exports){
35578
35763
  "use strict";
35579
35764
  /*!
35580
35765
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35701,7 +35886,7 @@ CommonTokenStream = __decorate([
35701
35886
  ], CommonTokenStream);
35702
35887
  exports.CommonTokenStream = CommonTokenStream;
35703
35888
 
35704
- },{"./BufferedTokenStream":206,"./Decorators":215,"./Token":240}],214:[function(require,module,exports){
35889
+ },{"./BufferedTokenStream":208,"./Decorators":217,"./Token":242}],216:[function(require,module,exports){
35705
35890
  "use strict";
35706
35891
  /*!
35707
35892
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35735,7 +35920,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
35735
35920
  */
35736
35921
  ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
35737
35922
 
35738
- },{}],215:[function(require,module,exports){
35923
+ },{}],217:[function(require,module,exports){
35739
35924
  "use strict";
35740
35925
  /*!
35741
35926
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35762,7 +35947,7 @@ function SuppressWarnings(options) {
35762
35947
  }
35763
35948
  exports.SuppressWarnings = SuppressWarnings;
35764
35949
 
35765
- },{}],216:[function(require,module,exports){
35950
+ },{}],218:[function(require,module,exports){
35766
35951
  "use strict";
35767
35952
  /*!
35768
35953
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36576,7 +36761,7 @@ __decorate([
36576
36761
  ], DefaultErrorStrategy.prototype, "consumeUntil", null);
36577
36762
  exports.DefaultErrorStrategy = DefaultErrorStrategy;
36578
36763
 
36579
- },{"./Decorators":215,"./FailedPredicateException":219,"./InputMismatchException":220,"./NoViableAltException":227,"./Token":240,"./atn/ATNState":254,"./atn/ATNStateType":255,"./atn/PredictionContext":295,"./misc/IntervalSet":328}],217:[function(require,module,exports){
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){
36580
36765
  "use strict";
36581
36766
  /*!
36582
36767
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36652,7 +36837,7 @@ var Dependents;
36652
36837
  Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
36653
36838
  })(Dependents = exports.Dependents || (exports.Dependents = {}));
36654
36839
 
36655
- },{}],218:[function(require,module,exports){
36840
+ },{}],220:[function(require,module,exports){
36656
36841
  "use strict";
36657
36842
  /*!
36658
36843
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36800,7 +36985,7 @@ __decorate([
36800
36985
  ], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
36801
36986
  exports.DiagnosticErrorListener = DiagnosticErrorListener;
36802
36987
 
36803
- },{"./Decorators":215,"./misc/BitSet":322,"./misc/Interval":327}],219:[function(require,module,exports){
36988
+ },{"./Decorators":217,"./misc/BitSet":324,"./misc/Interval":329}],221:[function(require,module,exports){
36804
36989
  "use strict";
36805
36990
  /*!
36806
36991
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36865,7 +37050,7 @@ FailedPredicateException = __decorate([
36865
37050
  ], FailedPredicateException);
36866
37051
  exports.FailedPredicateException = FailedPredicateException;
36867
37052
 
36868
- },{"./Decorators":215,"./RecognitionException":234,"./atn/PredicateTransition":294}],220:[function(require,module,exports){
37053
+ },{"./Decorators":217,"./RecognitionException":236,"./atn/PredicateTransition":296}],222:[function(require,module,exports){
36869
37054
  "use strict";
36870
37055
  /*!
36871
37056
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36905,7 +37090,7 @@ InputMismatchException = __decorate([
36905
37090
  ], InputMismatchException);
36906
37091
  exports.InputMismatchException = InputMismatchException;
36907
37092
 
36908
- },{"./Decorators":215,"./RecognitionException":234}],221:[function(require,module,exports){
37093
+ },{"./Decorators":217,"./RecognitionException":236}],223:[function(require,module,exports){
36909
37094
  "use strict";
36910
37095
  /*!
36911
37096
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36928,7 +37113,7 @@ var IntStream;
36928
37113
  IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
36929
37114
  })(IntStream = exports.IntStream || (exports.IntStream = {}));
36930
37115
 
36931
- },{}],222:[function(require,module,exports){
37116
+ },{}],224:[function(require,module,exports){
36932
37117
  "use strict";
36933
37118
  /*!
36934
37119
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36975,7 +37160,7 @@ __decorate([
36975
37160
  ], InterpreterRuleContext.prototype, "ruleIndex", null);
36976
37161
  exports.InterpreterRuleContext = InterpreterRuleContext;
36977
37162
 
36978
- },{"./Decorators":215,"./ParserRuleContext":231}],223:[function(require,module,exports){
37163
+ },{"./Decorators":217,"./ParserRuleContext":233}],225:[function(require,module,exports){
36979
37164
  "use strict";
36980
37165
  /*!
36981
37166
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37311,7 +37496,7 @@ __decorate([
37311
37496
  ], Lexer.prototype, "charPositionInLine", null);
37312
37497
  exports.Lexer = Lexer;
37313
37498
 
37314
- },{"./CommonTokenFactory":212,"./Decorators":215,"./IntStream":221,"./LexerNoViableAltException":225,"./Recognizer":235,"./Token":240,"./atn/LexerATNSimulator":273,"./misc/IntegerStack":326,"./misc/Interval":327}],224:[function(require,module,exports){
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){
37315
37500
  "use strict";
37316
37501
  /*!
37317
37502
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37391,7 +37576,7 @@ LexerInterpreter = __decorate([
37391
37576
  ], LexerInterpreter);
37392
37577
  exports.LexerInterpreter = LexerInterpreter;
37393
37578
 
37394
- },{"./Decorators":215,"./Lexer":223,"./atn/LexerATNSimulator":273}],225:[function(require,module,exports){
37579
+ },{"./Decorators":217,"./Lexer":225,"./atn/LexerATNSimulator":275}],227:[function(require,module,exports){
37395
37580
  "use strict";
37396
37581
  /*!
37397
37582
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37448,7 +37633,7 @@ LexerNoViableAltException = __decorate([
37448
37633
  ], LexerNoViableAltException);
37449
37634
  exports.LexerNoViableAltException = LexerNoViableAltException;
37450
37635
 
37451
- },{"./Decorators":215,"./RecognitionException":234,"./misc/Interval":327,"./misc/Utils":334}],226:[function(require,module,exports){
37636
+ },{"./Decorators":217,"./RecognitionException":236,"./misc/Interval":329,"./misc/Utils":336}],228:[function(require,module,exports){
37452
37637
  "use strict";
37453
37638
  /*!
37454
37639
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37658,7 +37843,7 @@ ListTokenSource = __decorate([
37658
37843
  ], ListTokenSource);
37659
37844
  exports.ListTokenSource = ListTokenSource;
37660
37845
 
37661
- },{"./CommonTokenFactory":212,"./Decorators":215,"./Token":240}],227:[function(require,module,exports){
37846
+ },{"./CommonTokenFactory":214,"./Decorators":217,"./Token":242}],229:[function(require,module,exports){
37662
37847
  "use strict";
37663
37848
  /*!
37664
37849
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37713,7 +37898,7 @@ __decorate([
37713
37898
  ], NoViableAltException.prototype, "_startToken", void 0);
37714
37899
  exports.NoViableAltException = NoViableAltException;
37715
37900
 
37716
- },{"./Decorators":215,"./Parser":228,"./RecognitionException":234}],228:[function(require,module,exports){
37901
+ },{"./Decorators":217,"./Parser":230,"./RecognitionException":236}],230:[function(require,module,exports){
37717
37902
  (function (process){(function (){
37718
37903
  "use strict";
37719
37904
  /*!
@@ -38559,7 +38744,7 @@ __decorate([
38559
38744
  exports.Parser = Parser;
38560
38745
 
38561
38746
  }).call(this)}).call(this,require('_process'))
38562
- },{"./Decorators":215,"./DefaultErrorStrategy":216,"./Lexer":223,"./ProxyParserErrorListener":233,"./Recognizer":235,"./Token":240,"./atn/ATNDeserializationOptions":251,"./atn/ATNDeserializer":252,"./atn/ParseInfo":288,"./atn/ParserATNSimulator":289,"./atn/ProfilingATNSimulator":298,"./misc/IntegerStack":326,"./misc/Utils":334,"./tree/ErrorNode":335,"./tree/TerminalNode":338,"./tree/pattern/ParseTreePatternMatcher":343,"_process":417}],229:[function(require,module,exports){
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){
38563
38748
  "use strict";
38564
38749
  /*!
38565
38750
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38567,7 +38752,7 @@ exports.Parser = Parser;
38567
38752
  */
38568
38753
  Object.defineProperty(exports, "__esModule", { value: true });
38569
38754
 
38570
- },{}],230:[function(require,module,exports){
38755
+ },{}],232:[function(require,module,exports){
38571
38756
  "use strict";
38572
38757
  /*!
38573
38758
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38975,7 +39160,7 @@ ParserInterpreter = __decorate([
38975
39160
  ], ParserInterpreter);
38976
39161
  exports.ParserInterpreter = ParserInterpreter;
38977
39162
 
38978
- },{"./Decorators":215,"./FailedPredicateException":219,"./InputMismatchException":220,"./InterpreterRuleContext":222,"./Parser":228,"./RecognitionException":234,"./Token":240,"./atn/ATNState":254,"./atn/ATNStateType":255,"./atn/LoopEndState":285,"./atn/ParserATNSimulator":289,"./atn/StarLoopEntryState":307,"./misc/BitSet":322}],231:[function(require,module,exports){
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){
38979
39164
  "use strict";
38980
39165
  /*!
38981
39166
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39276,7 +39461,7 @@ __decorate([
39276
39461
  ], ParserRuleContext.prototype, "sourceInterval", null);
39277
39462
  exports.ParserRuleContext = ParserRuleContext;
39278
39463
 
39279
- },{"./Decorators":215,"./RuleContext":236,"./misc/Interval":327,"./tree/ErrorNode":335,"./tree/TerminalNode":338}],232:[function(require,module,exports){
39464
+ },{"./Decorators":217,"./RuleContext":238,"./misc/Interval":329,"./tree/ErrorNode":337,"./tree/TerminalNode":340}],234:[function(require,module,exports){
39280
39465
  "use strict";
39281
39466
  /*!
39282
39467
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39326,7 +39511,7 @@ __decorate([
39326
39511
  ], ProxyErrorListener.prototype, "syntaxError", null);
39327
39512
  exports.ProxyErrorListener = ProxyErrorListener;
39328
39513
 
39329
- },{"./Decorators":215}],233:[function(require,module,exports){
39514
+ },{"./Decorators":217}],235:[function(require,module,exports){
39330
39515
  "use strict";
39331
39516
  /*!
39332
39517
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39385,7 +39570,7 @@ __decorate([
39385
39570
  ], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
39386
39571
  exports.ProxyParserErrorListener = ProxyParserErrorListener;
39387
39572
 
39388
- },{"./Decorators":215,"./ProxyErrorListener":232}],234:[function(require,module,exports){
39573
+ },{"./Decorators":217,"./ProxyErrorListener":234}],236:[function(require,module,exports){
39389
39574
  "use strict";
39390
39575
  /*!
39391
39576
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39490,7 +39675,7 @@ class RecognitionException extends Error {
39490
39675
  }
39491
39676
  exports.RecognitionException = RecognitionException;
39492
39677
 
39493
- },{}],235:[function(require,module,exports){
39678
+ },{}],237:[function(require,module,exports){
39494
39679
  "use strict";
39495
39680
  /*!
39496
39681
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39709,7 +39894,7 @@ __decorate([
39709
39894
  ], Recognizer.prototype, "getErrorListeners", null);
39710
39895
  exports.Recognizer = Recognizer;
39711
39896
 
39712
- },{"./ConsoleErrorListener":214,"./Decorators":215,"./ProxyErrorListener":232,"./Token":240,"./misc/Utils":334}],236:[function(require,module,exports){
39897
+ },{"./ConsoleErrorListener":216,"./Decorators":217,"./ProxyErrorListener":234,"./Token":242,"./misc/Utils":336}],238:[function(require,module,exports){
39713
39898
  "use strict";
39714
39899
  /*!
39715
39900
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39926,7 +40111,7 @@ __decorate([
39926
40111
  ], RuleContext.prototype, "toStringTree", null);
39927
40112
  exports.RuleContext = RuleContext;
39928
40113
 
39929
- },{"./Decorators":215,"./ParserRuleContext":231,"./Recognizer":235,"./atn/ATN":248,"./misc/Interval":327,"./tree/RuleNode":337,"./tree/Trees":339}],237:[function(require,module,exports){
40114
+ },{"./Decorators":217,"./ParserRuleContext":233,"./Recognizer":237,"./atn/ATN":250,"./misc/Interval":329,"./tree/RuleNode":339,"./tree/Trees":341}],239:[function(require,module,exports){
39930
40115
  "use strict";
39931
40116
  /*!
39932
40117
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39977,7 +40162,7 @@ __decorate([
39977
40162
  ], RuleContextWithAltNum.prototype, "altNumber", null);
39978
40163
  exports.RuleContextWithAltNum = RuleContextWithAltNum;
39979
40164
 
39980
- },{"./Decorators":215,"./ParserRuleContext":231,"./atn/ATN":248}],238:[function(require,module,exports){
40165
+ },{"./Decorators":217,"./ParserRuleContext":233,"./atn/ATN":250}],240:[function(require,module,exports){
39981
40166
  "use strict";
39982
40167
  /*!
39983
40168
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40000,7 +40185,7 @@ function RuleDependency(dependency) {
40000
40185
  }
40001
40186
  exports.RuleDependency = RuleDependency;
40002
40187
 
40003
- },{}],239:[function(require,module,exports){
40188
+ },{}],241:[function(require,module,exports){
40004
40189
  "use strict";
40005
40190
  /*!
40006
40191
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40019,7 +40204,7 @@ function RuleVersion(version) {
40019
40204
  }
40020
40205
  exports.RuleVersion = RuleVersion;
40021
40206
 
40022
- },{}],240:[function(require,module,exports){
40207
+ },{}],242:[function(require,module,exports){
40023
40208
  "use strict";
40024
40209
  /*!
40025
40210
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40059,7 +40244,7 @@ var Token;
40059
40244
  Token.MIN_USER_CHANNEL_VALUE = 2;
40060
40245
  })(Token = exports.Token || (exports.Token = {}));
40061
40246
 
40062
- },{"./IntStream":221}],241:[function(require,module,exports){
40247
+ },{"./IntStream":223}],243:[function(require,module,exports){
40063
40248
  "use strict";
40064
40249
  /*!
40065
40250
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40067,7 +40252,7 @@ var Token;
40067
40252
  */
40068
40253
  Object.defineProperty(exports, "__esModule", { value: true });
40069
40254
 
40070
- },{}],242:[function(require,module,exports){
40255
+ },{}],244:[function(require,module,exports){
40071
40256
  "use strict";
40072
40257
  /*!
40073
40258
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40075,7 +40260,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
40075
40260
  */
40076
40261
  Object.defineProperty(exports, "__esModule", { value: true });
40077
40262
 
40078
- },{}],243:[function(require,module,exports){
40263
+ },{}],245:[function(require,module,exports){
40079
40264
  "use strict";
40080
40265
  /*!
40081
40266
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40083,7 +40268,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
40083
40268
  */
40084
40269
  Object.defineProperty(exports, "__esModule", { value: true });
40085
40270
 
40086
- },{}],244:[function(require,module,exports){
40271
+ },{}],246:[function(require,module,exports){
40087
40272
  "use strict";
40088
40273
  /*!
40089
40274
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40591,7 +40776,7 @@ __decorate([
40591
40776
  Decorators_1.Override
40592
40777
  ], ReplaceOp.prototype, "toString", null);
40593
40778
 
40594
- },{"./Decorators":215,"./Token":240,"./misc/Interval":327}],245:[function(require,module,exports){
40779
+ },{"./Decorators":217,"./Token":242,"./misc/Interval":329}],247:[function(require,module,exports){
40595
40780
  "use strict";
40596
40781
  /*!
40597
40782
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40599,7 +40784,7 @@ __decorate([
40599
40784
  */
40600
40785
  Object.defineProperty(exports, "__esModule", { value: true });
40601
40786
 
40602
- },{}],246:[function(require,module,exports){
40787
+ },{}],248:[function(require,module,exports){
40603
40788
  "use strict";
40604
40789
  /*!
40605
40790
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40719,7 +40904,7 @@ __decorate([
40719
40904
  ], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
40720
40905
  exports.VocabularyImpl = VocabularyImpl;
40721
40906
 
40722
- },{"./Decorators":215,"./Token":240}],247:[function(require,module,exports){
40907
+ },{"./Decorators":217,"./Token":242}],249:[function(require,module,exports){
40723
40908
  "use strict";
40724
40909
  /*!
40725
40910
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40727,7 +40912,7 @@ exports.VocabularyImpl = VocabularyImpl;
40727
40912
  */
40728
40913
  Object.defineProperty(exports, "__esModule", { value: true });
40729
40914
 
40730
- },{}],248:[function(require,module,exports){
40915
+ },{}],250:[function(require,module,exports){
40731
40916
  "use strict";
40732
40917
  /*!
40733
40918
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40949,7 +41134,7 @@ exports.ATN = ATN;
40949
41134
  })(ATN = exports.ATN || (exports.ATN = {}));
40950
41135
  exports.ATN = ATN;
40951
41136
 
40952
- },{"../Decorators":215,"../Token":240,"../dfa/DFA":313,"../misc/Array2DHashMap":318,"../misc/IntervalSet":328,"../misc/ObjectEqualityComparator":331,"./InvalidState":271,"./LL1Analyzer":272,"./PredictionContext":295,"assert":358}],249:[function(require,module,exports){
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){
40953
41138
  "use strict";
40954
41139
  /*!
40955
41140
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41474,7 +41659,7 @@ ActionSemanticContextATNConfig = __decorate([
41474
41659
  __param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
41475
41660
  ], ActionSemanticContextATNConfig);
41476
41661
 
41477
- },{"../Decorators":215,"../misc/Array2DHashMap":318,"../misc/MurmurHash":330,"../misc/ObjectEqualityComparator":331,"./DecisionState":268,"./PredictionContext":295,"./SemanticContext":303,"assert":358}],250:[function(require,module,exports){
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){
41478
41663
  "use strict";
41479
41664
  /*!
41480
41665
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41921,7 +42106,7 @@ __decorate([
41921
42106
  ], ATNConfigSet.prototype, "hashCode", null);
41922
42107
  exports.ATNConfigSet = ATNConfigSet;
41923
42108
 
41924
- },{"../Decorators":215,"../misc/Array2DHashMap":318,"../misc/Array2DHashSet":319,"../misc/ArrayEqualityComparator":320,"../misc/BitSet":322,"../misc/ObjectEqualityComparator":331,"../misc/Utils":334,"./ATN":248,"./ATNConfig":249,"./PredictionContext":295,"./PredictionContextCache":296,"./SemanticContext":303,"assert":358}],251:[function(require,module,exports){
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){
41925
42110
  "use strict";
41926
42111
  /*!
41927
42112
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42000,7 +42185,7 @@ __decorate([
42000
42185
  ], ATNDeserializationOptions, "defaultOptions", null);
42001
42186
  exports.ATNDeserializationOptions = ATNDeserializationOptions;
42002
42187
 
42003
- },{"../Decorators":215}],252:[function(require,module,exports){
42188
+ },{"../Decorators":217}],254:[function(require,module,exports){
42004
42189
  "use strict";
42005
42190
  /*!
42006
42191
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43087,7 +43272,7 @@ __decorate([
43087
43272
  ], ATNDeserializer.prototype, "edgeFactory", null);
43088
43273
  exports.ATNDeserializer = ATNDeserializer;
43089
43274
 
43090
- },{"../Decorators":215,"../Token":240,"../dfa/DFA":313,"../misc/Array2DHashSet":319,"../misc/BitSet":322,"../misc/IntervalSet":328,"../misc/UUID":333,"./ATN":248,"./ATNDeserializationOptions":251,"./ATNStateType":255,"./ActionTransition":257,"./AtomTransition":259,"./BasicBlockStartState":260,"./BasicState":261,"./BlockEndState":262,"./BlockStartState":263,"./DecisionState":268,"./EpsilonTransition":269,"./InvalidState":271,"./LexerChannelAction":275,"./LexerCustomAction":276,"./LexerModeAction":278,"./LexerMoreAction":279,"./LexerPopModeAction":280,"./LexerPushModeAction":281,"./LexerSkipAction":282,"./LexerTypeAction":283,"./LoopEndState":285,"./NotSetTransition":286,"./ParserATNSimulator":289,"./PlusBlockStartState":290,"./PlusLoopbackState":291,"./PrecedencePredicateTransition":292,"./PredicateTransition":294,"./RangeTransition":299,"./RuleStartState":300,"./RuleStopState":301,"./RuleTransition":302,"./SetTransition":304,"./StarBlockStartState":306,"./StarLoopEntryState":307,"./StarLoopbackState":308,"./TokensStartState":309,"./WildcardTransition":311}],253:[function(require,module,exports){
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){
43091
43276
  "use strict";
43092
43277
  /*!
43093
43278
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43151,7 +43336,7 @@ exports.ATNSimulator = ATNSimulator;
43151
43336
  })(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
43152
43337
  exports.ATNSimulator = ATNSimulator;
43153
43338
 
43154
- },{"../Decorators":215,"../dfa/DFAState":315,"./ATNConfigSet":250,"./PredictionContext":295}],254:[function(require,module,exports){
43339
+ },{"../Decorators":217,"../dfa/DFAState":317,"./ATNConfigSet":252,"./PredictionContext":297}],256:[function(require,module,exports){
43155
43340
  "use strict";
43156
43341
  /*!
43157
43342
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43338,7 +43523,7 @@ exports.ATNState = ATNState;
43338
43523
  ATNState.INVALID_STATE_NUMBER = -1;
43339
43524
  })(ATNState = exports.ATNState || (exports.ATNState = {}));
43340
43525
 
43341
- },{"../Decorators":215}],255:[function(require,module,exports){
43526
+ },{"../Decorators":217}],257:[function(require,module,exports){
43342
43527
  "use strict";
43343
43528
  /*!
43344
43529
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43364,7 +43549,7 @@ var ATNStateType;
43364
43549
  ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
43365
43550
  })(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
43366
43551
 
43367
- },{}],256:[function(require,module,exports){
43552
+ },{}],258:[function(require,module,exports){
43368
43553
  "use strict";
43369
43554
  /*!
43370
43555
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43384,7 +43569,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
43384
43569
  }
43385
43570
  exports.AbstractPredicateTransition = AbstractPredicateTransition;
43386
43571
 
43387
- },{"./Transition":310}],257:[function(require,module,exports){
43572
+ },{"./Transition":312}],259:[function(require,module,exports){
43388
43573
  "use strict";
43389
43574
  /*!
43390
43575
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43440,7 +43625,7 @@ ActionTransition = __decorate([
43440
43625
  ], ActionTransition);
43441
43626
  exports.ActionTransition = ActionTransition;
43442
43627
 
43443
- },{"../Decorators":215,"./Transition":310}],258:[function(require,module,exports){
43628
+ },{"../Decorators":217,"./Transition":312}],260:[function(require,module,exports){
43444
43629
  "use strict";
43445
43630
  /*!
43446
43631
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43527,7 +43712,7 @@ AmbiguityInfo = __decorate([
43527
43712
  ], AmbiguityInfo);
43528
43713
  exports.AmbiguityInfo = AmbiguityInfo;
43529
43714
 
43530
- },{"../Decorators":215,"./DecisionEventInfo":266}],259:[function(require,module,exports){
43715
+ },{"../Decorators":217,"./DecisionEventInfo":268}],261:[function(require,module,exports){
43531
43716
  "use strict";
43532
43717
  /*!
43533
43718
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43585,7 +43770,7 @@ AtomTransition = __decorate([
43585
43770
  ], AtomTransition);
43586
43771
  exports.AtomTransition = AtomTransition;
43587
43772
 
43588
- },{"../Decorators":215,"../misc/IntervalSet":328,"./Transition":310}],260:[function(require,module,exports){
43773
+ },{"../Decorators":217,"../misc/IntervalSet":330,"./Transition":312}],262:[function(require,module,exports){
43589
43774
  "use strict";
43590
43775
  /*!
43591
43776
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43617,7 +43802,7 @@ __decorate([
43617
43802
  ], BasicBlockStartState.prototype, "stateType", null);
43618
43803
  exports.BasicBlockStartState = BasicBlockStartState;
43619
43804
 
43620
- },{"../Decorators":215,"./ATNStateType":255,"./BlockStartState":263}],261:[function(require,module,exports){
43805
+ },{"../Decorators":217,"./ATNStateType":257,"./BlockStartState":265}],263:[function(require,module,exports){
43621
43806
  "use strict";
43622
43807
  /*!
43623
43808
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43649,7 +43834,7 @@ __decorate([
43649
43834
  ], BasicState.prototype, "stateType", null);
43650
43835
  exports.BasicState = BasicState;
43651
43836
 
43652
- },{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],262:[function(require,module,exports){
43837
+ },{"../Decorators":217,"./ATNState":256,"./ATNStateType":257}],264:[function(require,module,exports){
43653
43838
  "use strict";
43654
43839
  /*!
43655
43840
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43678,7 +43863,7 @@ __decorate([
43678
43863
  ], BlockEndState.prototype, "stateType", null);
43679
43864
  exports.BlockEndState = BlockEndState;
43680
43865
 
43681
- },{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],263:[function(require,module,exports){
43866
+ },{"../Decorators":217,"./ATNState":256,"./ATNStateType":257}],265:[function(require,module,exports){
43682
43867
  "use strict";
43683
43868
  /*!
43684
43869
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43692,7 +43877,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
43692
43877
  }
43693
43878
  exports.BlockStartState = BlockStartState;
43694
43879
 
43695
- },{"./DecisionState":268}],264:[function(require,module,exports){
43880
+ },{"./DecisionState":270}],266:[function(require,module,exports){
43696
43881
  "use strict";
43697
43882
  /*!
43698
43883
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43762,7 +43947,7 @@ __decorate([
43762
43947
  ], ConflictInfo.prototype, "hashCode", null);
43763
43948
  exports.ConflictInfo = ConflictInfo;
43764
43949
 
43765
- },{"../Decorators":215,"../misc/Utils":334}],265:[function(require,module,exports){
43950
+ },{"../Decorators":217,"../misc/Utils":336}],267:[function(require,module,exports){
43766
43951
  "use strict";
43767
43952
  /*!
43768
43953
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43822,7 +44007,7 @@ ContextSensitivityInfo = __decorate([
43822
44007
  ], ContextSensitivityInfo);
43823
44008
  exports.ContextSensitivityInfo = ContextSensitivityInfo;
43824
44009
 
43825
- },{"../Decorators":215,"./DecisionEventInfo":266}],266:[function(require,module,exports){
44010
+ },{"../Decorators":217,"./DecisionEventInfo":268}],268:[function(require,module,exports){
43826
44011
  "use strict";
43827
44012
  /*!
43828
44013
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43874,7 +44059,7 @@ DecisionEventInfo = __decorate([
43874
44059
  ], DecisionEventInfo);
43875
44060
  exports.DecisionEventInfo = DecisionEventInfo;
43876
44061
 
43877
- },{"../Decorators":215}],267:[function(require,module,exports){
44062
+ },{"../Decorators":217}],269:[function(require,module,exports){
43878
44063
  "use strict";
43879
44064
  /*!
43880
44065
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44087,7 +44272,7 @@ __decorate([
44087
44272
  ], DecisionInfo.prototype, "toString", null);
44088
44273
  exports.DecisionInfo = DecisionInfo;
44089
44274
 
44090
- },{"../Decorators":215}],268:[function(require,module,exports){
44275
+ },{"../Decorators":217}],270:[function(require,module,exports){
44091
44276
  "use strict";
44092
44277
  /*!
44093
44278
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44107,7 +44292,7 @@ class DecisionState extends ATNState_1.ATNState {
44107
44292
  }
44108
44293
  exports.DecisionState = DecisionState;
44109
44294
 
44110
- },{"./ATNState":254}],269:[function(require,module,exports){
44295
+ },{"./ATNState":256}],271:[function(require,module,exports){
44111
44296
  "use strict";
44112
44297
  /*!
44113
44298
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44173,7 +44358,7 @@ EpsilonTransition = __decorate([
44173
44358
  ], EpsilonTransition);
44174
44359
  exports.EpsilonTransition = EpsilonTransition;
44175
44360
 
44176
- },{"../Decorators":215,"./Transition":310}],270:[function(require,module,exports){
44361
+ },{"../Decorators":217,"./Transition":312}],272:[function(require,module,exports){
44177
44362
  "use strict";
44178
44363
  /*!
44179
44364
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44226,7 +44411,7 @@ ErrorInfo = __decorate([
44226
44411
  ], ErrorInfo);
44227
44412
  exports.ErrorInfo = ErrorInfo;
44228
44413
 
44229
- },{"../Decorators":215,"./DecisionEventInfo":266}],271:[function(require,module,exports){
44414
+ },{"../Decorators":217,"./DecisionEventInfo":268}],273:[function(require,module,exports){
44230
44415
  "use strict";
44231
44416
  /*!
44232
44417
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44257,7 +44442,7 @@ __decorate([
44257
44442
  ], InvalidState.prototype, "stateType", null);
44258
44443
  exports.InvalidState = InvalidState;
44259
44444
 
44260
- },{"../Decorators":215,"./ATNStateType":255,"./BasicState":261}],272:[function(require,module,exports){
44445
+ },{"../Decorators":217,"./ATNStateType":257,"./BasicState":263}],274:[function(require,module,exports){
44261
44446
  "use strict";
44262
44447
  /*!
44263
44448
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44479,7 +44664,7 @@ LL1Analyzer = __decorate([
44479
44664
  ], LL1Analyzer);
44480
44665
  exports.LL1Analyzer = LL1Analyzer;
44481
44666
 
44482
- },{"../Decorators":215,"../Token":240,"../misc/Array2DHashSet":319,"../misc/BitSet":322,"../misc/IntervalSet":328,"../misc/ObjectEqualityComparator":331,"./ATNConfig":249,"./AbstractPredicateTransition":256,"./NotSetTransition":286,"./PredictionContext":295,"./RuleStopState":301,"./RuleTransition":302,"./WildcardTransition":311}],273:[function(require,module,exports){
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){
44483
44668
  "use strict";
44484
44669
  /*!
44485
44670
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45196,7 +45381,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
45196
45381
  })(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
45197
45382
  exports.LexerATNSimulator = LexerATNSimulator;
45198
45383
 
45199
- },{"../Decorators":215,"../IntStream":221,"../Lexer":223,"../LexerNoViableAltException":225,"../Token":240,"../dfa/AcceptStateInfo":312,"../dfa/DFAState":315,"../misc/Interval":327,"./ATN":248,"./ATNConfig":249,"./ATNConfigSet":250,"./ATNSimulator":253,"./LexerActionExecutor":274,"./OrderedATNConfigSet":287,"./PredictionContext":295,"./RuleStopState":301,"assert":358}],274:[function(require,module,exports){
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){
45200
45385
  "use strict";
45201
45386
  /*!
45202
45387
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45397,7 +45582,7 @@ LexerActionExecutor = __decorate([
45397
45582
  ], LexerActionExecutor);
45398
45583
  exports.LexerActionExecutor = LexerActionExecutor;
45399
45584
 
45400
- },{"../Decorators":215,"../misc/ArrayEqualityComparator":320,"../misc/MurmurHash":330,"./LexerIndexedCustomAction":277}],275:[function(require,module,exports){
45585
+ },{"../Decorators":217,"../misc/ArrayEqualityComparator":322,"../misc/MurmurHash":332,"./LexerIndexedCustomAction":279}],277:[function(require,module,exports){
45401
45586
  "use strict";
45402
45587
  /*!
45403
45588
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45502,7 +45687,7 @@ __decorate([
45502
45687
  ], LexerChannelAction.prototype, "toString", null);
45503
45688
  exports.LexerChannelAction = LexerChannelAction;
45504
45689
 
45505
- },{"../Decorators":215,"../misc/MurmurHash":330}],276:[function(require,module,exports){
45690
+ },{"../Decorators":217,"../misc/MurmurHash":332}],278:[function(require,module,exports){
45506
45691
  "use strict";
45507
45692
  /*!
45508
45693
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45631,7 +45816,7 @@ __decorate([
45631
45816
  ], LexerCustomAction.prototype, "equals", null);
45632
45817
  exports.LexerCustomAction = LexerCustomAction;
45633
45818
 
45634
- },{"../Decorators":215,"../misc/MurmurHash":330}],277:[function(require,module,exports){
45819
+ },{"../Decorators":217,"../misc/MurmurHash":332}],279:[function(require,module,exports){
45635
45820
  "use strict";
45636
45821
  /*!
45637
45822
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45766,7 +45951,7 @@ LexerIndexedCustomAction = __decorate([
45766
45951
  ], LexerIndexedCustomAction);
45767
45952
  exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
45768
45953
 
45769
- },{"../Decorators":215,"../misc/MurmurHash":330}],278:[function(require,module,exports){
45954
+ },{"../Decorators":217,"../misc/MurmurHash":332}],280:[function(require,module,exports){
45770
45955
  "use strict";
45771
45956
  /*!
45772
45957
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45871,7 +46056,7 @@ __decorate([
45871
46056
  ], LexerModeAction.prototype, "toString", null);
45872
46057
  exports.LexerModeAction = LexerModeAction;
45873
46058
 
45874
- },{"../Decorators":215,"../misc/MurmurHash":330}],279:[function(require,module,exports){
46059
+ },{"../Decorators":217,"../misc/MurmurHash":332}],281:[function(require,module,exports){
45875
46060
  "use strict";
45876
46061
  /*!
45877
46062
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45967,7 +46152,7 @@ exports.LexerMoreAction = LexerMoreAction;
45967
46152
  LexerMoreAction.INSTANCE = new LexerMoreAction();
45968
46153
  })(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
45969
46154
 
45970
- },{"../Decorators":215,"../misc/MurmurHash":330}],280:[function(require,module,exports){
46155
+ },{"../Decorators":217,"../misc/MurmurHash":332}],282:[function(require,module,exports){
45971
46156
  "use strict";
45972
46157
  /*!
45973
46158
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46063,7 +46248,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
46063
46248
  LexerPopModeAction.INSTANCE = new LexerPopModeAction();
46064
46249
  })(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
46065
46250
 
46066
- },{"../Decorators":215,"../misc/MurmurHash":330}],281:[function(require,module,exports){
46251
+ },{"../Decorators":217,"../misc/MurmurHash":332}],283:[function(require,module,exports){
46067
46252
  "use strict";
46068
46253
  /*!
46069
46254
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46168,7 +46353,7 @@ __decorate([
46168
46353
  ], LexerPushModeAction.prototype, "toString", null);
46169
46354
  exports.LexerPushModeAction = LexerPushModeAction;
46170
46355
 
46171
- },{"../Decorators":215,"../misc/MurmurHash":330}],282:[function(require,module,exports){
46356
+ },{"../Decorators":217,"../misc/MurmurHash":332}],284:[function(require,module,exports){
46172
46357
  "use strict";
46173
46358
  /*!
46174
46359
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46264,7 +46449,7 @@ exports.LexerSkipAction = LexerSkipAction;
46264
46449
  LexerSkipAction.INSTANCE = new LexerSkipAction();
46265
46450
  })(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
46266
46451
 
46267
- },{"../Decorators":215,"../misc/MurmurHash":330}],283:[function(require,module,exports){
46452
+ },{"../Decorators":217,"../misc/MurmurHash":332}],285:[function(require,module,exports){
46268
46453
  "use strict";
46269
46454
  /*!
46270
46455
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46368,7 +46553,7 @@ __decorate([
46368
46553
  ], LexerTypeAction.prototype, "toString", null);
46369
46554
  exports.LexerTypeAction = LexerTypeAction;
46370
46555
 
46371
- },{"../Decorators":215,"../misc/MurmurHash":330}],284:[function(require,module,exports){
46556
+ },{"../Decorators":217,"../misc/MurmurHash":332}],286:[function(require,module,exports){
46372
46557
  "use strict";
46373
46558
  /*!
46374
46559
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46420,7 +46605,7 @@ LookaheadEventInfo = __decorate([
46420
46605
  ], LookaheadEventInfo);
46421
46606
  exports.LookaheadEventInfo = LookaheadEventInfo;
46422
46607
 
46423
- },{"../Decorators":215,"./DecisionEventInfo":266}],285:[function(require,module,exports){
46608
+ },{"../Decorators":217,"./DecisionEventInfo":268}],287:[function(require,module,exports){
46424
46609
  "use strict";
46425
46610
  /*!
46426
46611
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46449,7 +46634,7 @@ __decorate([
46449
46634
  ], LoopEndState.prototype, "stateType", null);
46450
46635
  exports.LoopEndState = LoopEndState;
46451
46636
 
46452
- },{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],286:[function(require,module,exports){
46637
+ },{"../Decorators":217,"./ATNState":256,"./ATNStateType":257}],288:[function(require,module,exports){
46453
46638
  "use strict";
46454
46639
  /*!
46455
46640
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46498,7 +46683,7 @@ NotSetTransition = __decorate([
46498
46683
  ], NotSetTransition);
46499
46684
  exports.NotSetTransition = NotSetTransition;
46500
46685
 
46501
- },{"../Decorators":215,"./SetTransition":304}],287:[function(require,module,exports){
46686
+ },{"../Decorators":217,"./SetTransition":306}],289:[function(require,module,exports){
46502
46687
  "use strict";
46503
46688
  /*!
46504
46689
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46553,7 +46738,7 @@ __decorate([
46553
46738
  ], OrderedATNConfigSet.prototype, "canMerge", null);
46554
46739
  exports.OrderedATNConfigSet = OrderedATNConfigSet;
46555
46740
 
46556
- },{"../Decorators":215,"./ATNConfigSet":250}],288:[function(require,module,exports){
46741
+ },{"../Decorators":217,"./ATNConfigSet":252}],290:[function(require,module,exports){
46557
46742
  "use strict";
46558
46743
  /*!
46559
46744
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46715,7 +46900,7 @@ ParseInfo = __decorate([
46715
46900
  ], ParseInfo);
46716
46901
  exports.ParseInfo = ParseInfo;
46717
46902
 
46718
- },{"../Decorators":215}],289:[function(require,module,exports){
46903
+ },{"../Decorators":217}],291:[function(require,module,exports){
46719
46904
  "use strict";
46720
46905
  /*!
46721
46906
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48988,7 +49173,7 @@ ParserATNSimulator = __decorate([
48988
49173
  ], ParserATNSimulator);
48989
49174
  exports.ParserATNSimulator = ParserATNSimulator;
48990
49175
 
48991
- },{"../Decorators":215,"../IntStream":221,"../NoViableAltException":227,"../ParserRuleContext":231,"../Token":240,"../VocabularyImpl":246,"../dfa/AcceptStateInfo":312,"../dfa/DFAState":315,"../misc/Array2DHashSet":319,"../misc/Arrays":321,"../misc/BitSet":322,"../misc/IntegerList":325,"../misc/Interval":327,"../misc/ObjectEqualityComparator":331,"./ATN":248,"./ATNConfig":249,"./ATNConfigSet":250,"./ATNSimulator":253,"./ATNStateType":255,"./ActionTransition":257,"./AtomTransition":259,"./ConflictInfo":264,"./DecisionState":268,"./NotSetTransition":286,"./PredictionContext":295,"./PredictionContextCache":296,"./PredictionMode":297,"./RuleStopState":301,"./RuleTransition":302,"./SemanticContext":303,"./SetTransition":304,"./SimulatorState":305,"assert":358}],290:[function(require,module,exports){
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){
48992
49177
  "use strict";
48993
49178
  /*!
48994
49179
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49021,7 +49206,7 @@ __decorate([
49021
49206
  ], PlusBlockStartState.prototype, "stateType", null);
49022
49207
  exports.PlusBlockStartState = PlusBlockStartState;
49023
49208
 
49024
- },{"../Decorators":215,"./ATNStateType":255,"./BlockStartState":263}],291:[function(require,module,exports){
49209
+ },{"../Decorators":217,"./ATNStateType":257,"./BlockStartState":265}],293:[function(require,module,exports){
49025
49210
  "use strict";
49026
49211
  /*!
49027
49212
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49052,7 +49237,7 @@ __decorate([
49052
49237
  ], PlusLoopbackState.prototype, "stateType", null);
49053
49238
  exports.PlusLoopbackState = PlusLoopbackState;
49054
49239
 
49055
- },{"../Decorators":215,"./ATNStateType":255,"./DecisionState":268}],292:[function(require,module,exports){
49240
+ },{"../Decorators":217,"./ATNStateType":257,"./DecisionState":270}],294:[function(require,module,exports){
49056
49241
  "use strict";
49057
49242
  /*!
49058
49243
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49115,7 +49300,7 @@ PrecedencePredicateTransition = __decorate([
49115
49300
  ], PrecedencePredicateTransition);
49116
49301
  exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
49117
49302
 
49118
- },{"../Decorators":215,"./AbstractPredicateTransition":256,"./SemanticContext":303}],293:[function(require,module,exports){
49303
+ },{"../Decorators":217,"./AbstractPredicateTransition":258,"./SemanticContext":305}],295:[function(require,module,exports){
49119
49304
  "use strict";
49120
49305
  /*!
49121
49306
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49178,7 +49363,7 @@ PredicateEvalInfo = __decorate([
49178
49363
  ], PredicateEvalInfo);
49179
49364
  exports.PredicateEvalInfo = PredicateEvalInfo;
49180
49365
 
49181
- },{"../Decorators":215,"./DecisionEventInfo":266}],294:[function(require,module,exports){
49366
+ },{"../Decorators":217,"./DecisionEventInfo":268}],296:[function(require,module,exports){
49182
49367
  "use strict";
49183
49368
  /*!
49184
49369
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49244,7 +49429,7 @@ PredicateTransition = __decorate([
49244
49429
  ], PredicateTransition);
49245
49430
  exports.PredicateTransition = PredicateTransition;
49246
49431
 
49247
- },{"../Decorators":215,"./AbstractPredicateTransition":256,"./SemanticContext":303}],295:[function(require,module,exports){
49432
+ },{"../Decorators":217,"./AbstractPredicateTransition":258,"./SemanticContext":305}],297:[function(require,module,exports){
49248
49433
  "use strict";
49249
49434
  /*!
49250
49435
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49935,7 +50120,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
49935
50120
  PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
49936
50121
  })(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
49937
50122
 
49938
- },{"../Decorators":215,"../misc/Array2DHashMap":318,"../misc/Array2DHashSet":319,"../misc/Arrays":321,"../misc/MurmurHash":330,"./PredictionContextCache":296,"assert":358}],296:[function(require,module,exports){
50123
+ },{"../Decorators":217,"../misc/Array2DHashMap":320,"../misc/Array2DHashSet":321,"../misc/Arrays":323,"../misc/MurmurHash":332,"./PredictionContextCache":298,"assert":360}],298:[function(require,module,exports){
49939
50124
  "use strict";
49940
50125
  /*!
49941
50126
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50076,7 +50261,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
50076
50261
  PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
50077
50262
  })(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
50078
50263
 
50079
- },{"../Decorators":215,"../misc/Array2DHashMap":318,"../misc/ObjectEqualityComparator":331,"./PredictionContext":295,"assert":358}],297:[function(require,module,exports){
50264
+ },{"../Decorators":217,"../misc/Array2DHashMap":320,"../misc/ObjectEqualityComparator":333,"./PredictionContext":297,"assert":360}],299:[function(require,module,exports){
50080
50265
  "use strict";
50081
50266
  /*!
50082
50267
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50237,7 +50422,7 @@ var PredictionMode;
50237
50422
  PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
50238
50423
  })(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
50239
50424
 
50240
- },{"../Decorators":215,"../misc/Array2DHashMap":318,"../misc/MurmurHash":330,"./RuleStopState":301}],298:[function(require,module,exports){
50425
+ },{"../Decorators":217,"../misc/Array2DHashMap":320,"../misc/MurmurHash":332,"./RuleStopState":303}],300:[function(require,module,exports){
50241
50426
  (function (process){(function (){
50242
50427
  "use strict";
50243
50428
  /*!
@@ -50506,7 +50691,7 @@ __decorate([
50506
50691
  exports.ProfilingATNSimulator = ProfilingATNSimulator;
50507
50692
 
50508
50693
  }).call(this)}).call(this,require('_process'))
50509
- },{"../Decorators":215,"./ATN":248,"./ATNSimulator":253,"./AmbiguityInfo":258,"./ContextSensitivityInfo":265,"./DecisionInfo":267,"./ErrorInfo":270,"./LookaheadEventInfo":284,"./ParserATNSimulator":289,"./PredicateEvalInfo":293,"./SemanticContext":303,"./SimulatorState":305,"_process":417}],299:[function(require,module,exports){
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){
50510
50695
  "use strict";
50511
50696
  /*!
50512
50697
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50564,7 +50749,7 @@ RangeTransition = __decorate([
50564
50749
  ], RangeTransition);
50565
50750
  exports.RangeTransition = RangeTransition;
50566
50751
 
50567
- },{"../Decorators":215,"../misc/IntervalSet":328,"./Transition":310}],300:[function(require,module,exports){
50752
+ },{"../Decorators":217,"../misc/IntervalSet":330,"./Transition":312}],302:[function(require,module,exports){
50568
50753
  "use strict";
50569
50754
  /*!
50570
50755
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50597,7 +50782,7 @@ __decorate([
50597
50782
  ], RuleStartState.prototype, "stateType", null);
50598
50783
  exports.RuleStartState = RuleStartState;
50599
50784
 
50600
- },{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],301:[function(require,module,exports){
50785
+ },{"../Decorators":217,"./ATNState":256,"./ATNStateType":257}],303:[function(require,module,exports){
50601
50786
  "use strict";
50602
50787
  /*!
50603
50788
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50636,7 +50821,7 @@ __decorate([
50636
50821
  ], RuleStopState.prototype, "stateType", null);
50637
50822
  exports.RuleStopState = RuleStopState;
50638
50823
 
50639
- },{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],302:[function(require,module,exports){
50824
+ },{"../Decorators":217,"./ATNState":256,"./ATNStateType":257}],304:[function(require,module,exports){
50640
50825
  "use strict";
50641
50826
  /*!
50642
50827
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50692,7 +50877,7 @@ RuleTransition = __decorate([
50692
50877
  ], RuleTransition);
50693
50878
  exports.RuleTransition = RuleTransition;
50694
50879
 
50695
- },{"../Decorators":215,"./Transition":310}],303:[function(require,module,exports){
50880
+ },{"../Decorators":217,"./Transition":312}],305:[function(require,module,exports){
50696
50881
  "use strict";
50697
50882
  /*!
50698
50883
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51172,7 +51357,7 @@ exports.SemanticContext = SemanticContext;
51172
51357
  SemanticContext.OR = OR;
51173
51358
  })(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
51174
51359
 
51175
- },{"../Decorators":215,"../misc/Array2DHashSet":319,"../misc/ArrayEqualityComparator":320,"../misc/MurmurHash":330,"../misc/ObjectEqualityComparator":331,"../misc/Utils":334}],304:[function(require,module,exports){
51360
+ },{"../Decorators":217,"../misc/Array2DHashSet":321,"../misc/ArrayEqualityComparator":322,"../misc/MurmurHash":332,"../misc/ObjectEqualityComparator":333,"../misc/Utils":336}],306:[function(require,module,exports){
51176
51361
  "use strict";
51177
51362
  /*!
51178
51363
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51238,7 +51423,7 @@ SetTransition = __decorate([
51238
51423
  ], SetTransition);
51239
51424
  exports.SetTransition = SetTransition;
51240
51425
 
51241
- },{"../Decorators":215,"../Token":240,"../misc/IntervalSet":328,"./Transition":310}],305:[function(require,module,exports){
51426
+ },{"../Decorators":217,"../Token":242,"../misc/IntervalSet":330,"./Transition":312}],307:[function(require,module,exports){
51242
51427
  "use strict";
51243
51428
  /*!
51244
51429
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51274,7 +51459,7 @@ SimulatorState = __decorate([
51274
51459
  ], SimulatorState);
51275
51460
  exports.SimulatorState = SimulatorState;
51276
51461
 
51277
- },{"../Decorators":215,"../ParserRuleContext":231}],306:[function(require,module,exports){
51462
+ },{"../Decorators":217,"../ParserRuleContext":233}],308:[function(require,module,exports){
51278
51463
  "use strict";
51279
51464
  /*!
51280
51465
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51302,7 +51487,7 @@ __decorate([
51302
51487
  ], StarBlockStartState.prototype, "stateType", null);
51303
51488
  exports.StarBlockStartState = StarBlockStartState;
51304
51489
 
51305
- },{"../Decorators":215,"./ATNStateType":255,"./BlockStartState":263}],307:[function(require,module,exports){
51490
+ },{"../Decorators":217,"./ATNStateType":257,"./BlockStartState":265}],309:[function(require,module,exports){
51306
51491
  "use strict";
51307
51492
  /*!
51308
51493
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51359,7 +51544,7 @@ __decorate([
51359
51544
  ], StarLoopEntryState.prototype, "stateType", null);
51360
51545
  exports.StarLoopEntryState = StarLoopEntryState;
51361
51546
 
51362
- },{"../Decorators":215,"../misc/BitSet":322,"./ATNStateType":255,"./DecisionState":268}],308:[function(require,module,exports){
51547
+ },{"../Decorators":217,"../misc/BitSet":324,"./ATNStateType":257,"./DecisionState":270}],310:[function(require,module,exports){
51363
51548
  "use strict";
51364
51549
  /*!
51365
51550
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51390,7 +51575,7 @@ __decorate([
51390
51575
  ], StarLoopbackState.prototype, "stateType", null);
51391
51576
  exports.StarLoopbackState = StarLoopbackState;
51392
51577
 
51393
- },{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],309:[function(require,module,exports){
51578
+ },{"../Decorators":217,"./ATNState":256,"./ATNStateType":257}],311:[function(require,module,exports){
51394
51579
  "use strict";
51395
51580
  /*!
51396
51581
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51419,7 +51604,7 @@ __decorate([
51419
51604
  ], TokensStartState.prototype, "stateType", null);
51420
51605
  exports.TokensStartState = TokensStartState;
51421
51606
 
51422
- },{"../Decorators":215,"./ATNStateType":255,"./DecisionState":268}],310:[function(require,module,exports){
51607
+ },{"../Decorators":217,"./ATNStateType":257,"./DecisionState":270}],312:[function(require,module,exports){
51423
51608
  "use strict";
51424
51609
  /*!
51425
51610
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51493,7 +51678,7 @@ Transition = __decorate([
51493
51678
  ], Transition);
51494
51679
  exports.Transition = Transition;
51495
51680
 
51496
- },{"../Decorators":215}],311:[function(require,module,exports){
51681
+ },{"../Decorators":217}],313:[function(require,module,exports){
51497
51682
  "use strict";
51498
51683
  /*!
51499
51684
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51541,7 +51726,7 @@ WildcardTransition = __decorate([
51541
51726
  ], WildcardTransition);
51542
51727
  exports.WildcardTransition = WildcardTransition;
51543
51728
 
51544
- },{"../Decorators":215,"./Transition":310}],312:[function(require,module,exports){
51729
+ },{"../Decorators":217,"./Transition":312}],314:[function(require,module,exports){
51545
51730
  "use strict";
51546
51731
  /*!
51547
51732
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51583,7 +51768,7 @@ class AcceptStateInfo {
51583
51768
  }
51584
51769
  exports.AcceptStateInfo = AcceptStateInfo;
51585
51770
 
51586
- },{}],313:[function(require,module,exports){
51771
+ },{}],315:[function(require,module,exports){
51587
51772
  "use strict";
51588
51773
  /*!
51589
51774
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51758,7 +51943,7 @@ DFA = __decorate([
51758
51943
  ], DFA);
51759
51944
  exports.DFA = DFA;
51760
51945
 
51761
- },{"../Decorators":215,"../VocabularyImpl":246,"../atn/ATNConfigSet":250,"../atn/StarLoopEntryState":307,"../misc/Array2DHashSet":319,"../misc/ObjectEqualityComparator":331,"./DFASerializer":314,"./DFAState":315,"./LexerDFASerializer":316}],314:[function(require,module,exports){
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){
51762
51947
  "use strict";
51763
51948
  /*!
51764
51949
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51900,7 +52085,7 @@ __decorate([
51900
52085
  ], DFASerializer.prototype, "toString", null);
51901
52086
  exports.DFASerializer = DFASerializer;
51902
52087
 
51903
- },{"../Decorators":215,"../Recognizer":235,"../VocabularyImpl":246,"../atn/ATNSimulator":253,"../atn/PredictionContext":295}],315:[function(require,module,exports){
52088
+ },{"../Decorators":217,"../Recognizer":237,"../VocabularyImpl":248,"../atn/ATNSimulator":255,"../atn/PredictionContext":297}],317:[function(require,module,exports){
51904
52089
  "use strict";
51905
52090
  /*!
51906
52091
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52131,7 +52316,7 @@ exports.DFAState = DFAState;
52131
52316
  DFAState.PredPrediction = PredPrediction;
52132
52317
  })(DFAState = exports.DFAState || (exports.DFAState = {}));
52133
52318
 
52134
- },{"../Decorators":215,"../atn/ATN":248,"../atn/PredictionContext":295,"../misc/BitSet":322,"../misc/MurmurHash":330,"assert":358}],316:[function(require,module,exports){
52319
+ },{"../Decorators":217,"../atn/ATN":250,"../atn/PredictionContext":297,"../misc/BitSet":324,"../misc/MurmurHash":332,"assert":360}],318:[function(require,module,exports){
52135
52320
  "use strict";
52136
52321
  /*!
52137
52322
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52168,7 +52353,7 @@ LexerDFASerializer = __decorate([
52168
52353
  ], LexerDFASerializer);
52169
52354
  exports.LexerDFASerializer = LexerDFASerializer;
52170
52355
 
52171
- },{"../Decorators":215,"../VocabularyImpl":246,"./DFASerializer":314}],317:[function(require,module,exports){
52356
+ },{"../Decorators":217,"../VocabularyImpl":248,"./DFASerializer":316}],319:[function(require,module,exports){
52172
52357
  "use strict";
52173
52358
  /*!
52174
52359
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52234,7 +52419,7 @@ __exportStar(require("./Vocabulary"), exports);
52234
52419
  __exportStar(require("./VocabularyImpl"), exports);
52235
52420
  __exportStar(require("./WritableToken"), exports);
52236
52421
 
52237
- },{"./ANTLRErrorListener":202,"./ANTLRErrorStrategy":203,"./ANTLRInputStream":204,"./BailErrorStrategy":205,"./BufferedTokenStream":206,"./CharStream":207,"./CharStreams":208,"./CodePointBuffer":209,"./CodePointCharStream":210,"./CommonToken":211,"./CommonTokenFactory":212,"./CommonTokenStream":213,"./ConsoleErrorListener":214,"./DefaultErrorStrategy":216,"./Dependents":217,"./DiagnosticErrorListener":218,"./FailedPredicateException":219,"./InputMismatchException":220,"./IntStream":221,"./InterpreterRuleContext":222,"./Lexer":223,"./LexerInterpreter":224,"./LexerNoViableAltException":225,"./ListTokenSource":226,"./NoViableAltException":227,"./Parser":228,"./ParserErrorListener":229,"./ParserInterpreter":230,"./ParserRuleContext":231,"./ProxyErrorListener":232,"./ProxyParserErrorListener":233,"./RecognitionException":234,"./Recognizer":235,"./RuleContext":236,"./RuleContextWithAltNum":237,"./RuleDependency":238,"./RuleVersion":239,"./Token":240,"./TokenFactory":241,"./TokenSource":242,"./TokenStream":243,"./TokenStreamRewriter":244,"./Vocabulary":245,"./VocabularyImpl":246,"./WritableToken":247}],318:[function(require,module,exports){
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){
52238
52423
  "use strict";
52239
52424
  /*!
52240
52425
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52317,7 +52502,7 @@ class Array2DHashMap {
52317
52502
  }
52318
52503
  exports.Array2DHashMap = Array2DHashMap;
52319
52504
 
52320
- },{"./Array2DHashSet":319}],319:[function(require,module,exports){
52505
+ },{"./Array2DHashSet":321}],321:[function(require,module,exports){
52321
52506
  "use strict";
52322
52507
  /*!
52323
52508
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52684,7 +52869,7 @@ __decorate([
52684
52869
  ], Array2DHashSet.prototype, "createBuckets", null);
52685
52870
  exports.Array2DHashSet = Array2DHashSet;
52686
52871
 
52687
- },{"../Decorators":215,"./DefaultEqualityComparator":324,"./MurmurHash":330,"assert":358}],320:[function(require,module,exports){
52872
+ },{"../Decorators":217,"./DefaultEqualityComparator":326,"./MurmurHash":332,"assert":360}],322:[function(require,module,exports){
52688
52873
  "use strict";
52689
52874
  /*!
52690
52875
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52756,7 +52941,7 @@ __decorate([
52756
52941
  ], ArrayEqualityComparator.prototype, "equals", null);
52757
52942
  exports.ArrayEqualityComparator = ArrayEqualityComparator;
52758
52943
 
52759
- },{"../Decorators":215,"./MurmurHash":330,"./ObjectEqualityComparator":331}],321:[function(require,module,exports){
52944
+ },{"../Decorators":217,"./MurmurHash":332,"./ObjectEqualityComparator":333}],323:[function(require,module,exports){
52760
52945
  "use strict";
52761
52946
  /*!
52762
52947
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52826,7 +53011,7 @@ var Arrays;
52826
53011
  Arrays.toString = toString;
52827
53012
  })(Arrays = exports.Arrays || (exports.Arrays = {}));
52828
53013
 
52829
- },{}],322:[function(require,module,exports){
53014
+ },{}],324:[function(require,module,exports){
52830
53015
  "use strict";
52831
53016
  /*!
52832
53017
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53498,7 +53683,7 @@ class BitSetIterator {
53498
53683
  [Symbol.iterator]() { return this; }
53499
53684
  }
53500
53685
 
53501
- },{"./MurmurHash":330,"util":422}],323:[function(require,module,exports){
53686
+ },{"./MurmurHash":332,"util":424}],325:[function(require,module,exports){
53502
53687
  "use strict";
53503
53688
  /*!
53504
53689
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53519,7 +53704,7 @@ function isSupplementaryCodePoint(ch) {
53519
53704
  }
53520
53705
  exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
53521
53706
 
53522
- },{}],324:[function(require,module,exports){
53707
+ },{}],326:[function(require,module,exports){
53523
53708
  "use strict";
53524
53709
  /*!
53525
53710
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53590,7 +53775,7 @@ __decorate([
53590
53775
  ], DefaultEqualityComparator.prototype, "equals", null);
53591
53776
  exports.DefaultEqualityComparator = DefaultEqualityComparator;
53592
53777
 
53593
- },{"../Decorators":215,"./MurmurHash":330,"./ObjectEqualityComparator":331}],325:[function(require,module,exports){
53778
+ },{"../Decorators":217,"./MurmurHash":332,"./ObjectEqualityComparator":333}],327:[function(require,module,exports){
53594
53779
  "use strict";
53595
53780
  /*!
53596
53781
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53884,7 +54069,7 @@ __decorate([
53884
54069
  ], IntegerList.prototype, "toString", null);
53885
54070
  exports.IntegerList = IntegerList;
53886
54071
 
53887
- },{"../Decorators":215,"./Arrays":321}],326:[function(require,module,exports){
54072
+ },{"../Decorators":217,"./Arrays":323}],328:[function(require,module,exports){
53888
54073
  "use strict";
53889
54074
  /*!
53890
54075
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53914,7 +54099,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
53914
54099
  }
53915
54100
  exports.IntegerStack = IntegerStack;
53916
54101
 
53917
- },{"./IntegerList":325}],327:[function(require,module,exports){
54102
+ },{"./IntegerList":327}],329:[function(require,module,exports){
53918
54103
  "use strict";
53919
54104
  /*!
53920
54105
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54057,7 +54242,7 @@ __decorate([
54057
54242
  ], Interval.prototype, "toString", null);
54058
54243
  exports.Interval = Interval;
54059
54244
 
54060
- },{"../Decorators":215}],328:[function(require,module,exports){
54245
+ },{"../Decorators":217}],330:[function(require,module,exports){
54061
54246
  "use strict";
54062
54247
  /*!
54063
54248
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54703,7 +54888,7 @@ __decorate([
54703
54888
  ], IntervalSet, "subtract", null);
54704
54889
  exports.IntervalSet = IntervalSet;
54705
54890
 
54706
- },{"../Decorators":215,"../Lexer":223,"../Token":240,"./ArrayEqualityComparator":320,"./IntegerList":325,"./Interval":327,"./MurmurHash":330}],329:[function(require,module,exports){
54891
+ },{"../Decorators":217,"../Lexer":225,"../Token":242,"./ArrayEqualityComparator":322,"./IntegerList":327,"./Interval":329,"./MurmurHash":332}],331:[function(require,module,exports){
54707
54892
  "use strict";
54708
54893
  /*!
54709
54894
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54736,7 +54921,7 @@ class MultiMap extends Map {
54736
54921
  }
54737
54922
  exports.MultiMap = MultiMap;
54738
54923
 
54739
- },{}],330:[function(require,module,exports){
54924
+ },{}],332:[function(require,module,exports){
54740
54925
  "use strict";
54741
54926
  /*!
54742
54927
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54851,7 +55036,7 @@ var MurmurHash;
54851
55036
  }
54852
55037
  })(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
54853
55038
 
54854
- },{}],331:[function(require,module,exports){
55039
+ },{}],333:[function(require,module,exports){
54855
55040
  "use strict";
54856
55041
  /*!
54857
55042
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54910,7 +55095,7 @@ __decorate([
54910
55095
  ], ObjectEqualityComparator.prototype, "equals", null);
54911
55096
  exports.ObjectEqualityComparator = ObjectEqualityComparator;
54912
55097
 
54913
- },{"../Decorators":215}],332:[function(require,module,exports){
55098
+ },{"../Decorators":217}],334:[function(require,module,exports){
54914
55099
  "use strict";
54915
55100
  /*!
54916
55101
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54939,7 +55124,7 @@ class ParseCancellationException extends Error {
54939
55124
  }
54940
55125
  exports.ParseCancellationException = ParseCancellationException;
54941
55126
 
54942
- },{}],333:[function(require,module,exports){
55127
+ },{}],335:[function(require,module,exports){
54943
55128
  "use strict";
54944
55129
  /*!
54945
55130
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54993,7 +55178,7 @@ class UUID {
54993
55178
  }
54994
55179
  exports.UUID = UUID;
54995
55180
 
54996
- },{"./MurmurHash":330}],334:[function(require,module,exports){
55181
+ },{"./MurmurHash":332}],336:[function(require,module,exports){
54997
55182
  "use strict";
54998
55183
  /*!
54999
55184
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55168,7 +55353,7 @@ exports.toCharArray = toCharArray;
55168
55353
  // return s;
55169
55354
  // }
55170
55355
 
55171
- },{}],335:[function(require,module,exports){
55356
+ },{}],337:[function(require,module,exports){
55172
55357
  "use strict";
55173
55358
  /*!
55174
55359
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55204,7 +55389,7 @@ __decorate([
55204
55389
  ], ErrorNode.prototype, "accept", null);
55205
55390
  exports.ErrorNode = ErrorNode;
55206
55391
 
55207
- },{"../Decorators":215,"./TerminalNode":338}],336:[function(require,module,exports){
55392
+ },{"../Decorators":217,"./TerminalNode":340}],338:[function(require,module,exports){
55208
55393
  "use strict";
55209
55394
  /*!
55210
55395
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55309,7 +55494,7 @@ exports.ParseTreeWalker = ParseTreeWalker;
55309
55494
  ParseTreeWalker.DEFAULT = new ParseTreeWalker();
55310
55495
  })(ParseTreeWalker = exports.ParseTreeWalker || (exports.ParseTreeWalker = {}));
55311
55496
 
55312
- },{"./ErrorNode":335,"./RuleNode":337,"./TerminalNode":338}],337:[function(require,module,exports){
55497
+ },{"./ErrorNode":337,"./RuleNode":339,"./TerminalNode":340}],339:[function(require,module,exports){
55313
55498
  "use strict";
55314
55499
  /*!
55315
55500
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55321,7 +55506,7 @@ class RuleNode {
55321
55506
  }
55322
55507
  exports.RuleNode = RuleNode;
55323
55508
 
55324
- },{}],338:[function(require,module,exports){
55509
+ },{}],340:[function(require,module,exports){
55325
55510
  "use strict";
55326
55511
  /*!
55327
55512
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55413,7 +55598,7 @@ __decorate([
55413
55598
  ], TerminalNode.prototype, "toString", null);
55414
55599
  exports.TerminalNode = TerminalNode;
55415
55600
 
55416
- },{"../Decorators":215,"../Token":240,"../misc/Interval":327}],339:[function(require,module,exports){
55601
+ },{"../Decorators":217,"../Token":242,"../misc/Interval":329}],341:[function(require,module,exports){
55417
55602
  "use strict";
55418
55603
  /*!
55419
55604
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55657,7 +55842,7 @@ __decorate([
55657
55842
  ], Trees, "getRootOfSubtreeEnclosingRegion", null);
55658
55843
  exports.Trees = Trees;
55659
55844
 
55660
- },{"../CommonToken":211,"../Decorators":215,"../Parser":228,"../ParserRuleContext":231,"../Token":240,"../atn/ATN":248,"../misc/Utils":334,"./ErrorNode":335,"./RuleNode":337,"./TerminalNode":338}],340:[function(require,module,exports){
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){
55661
55846
  "use strict";
55662
55847
  /*!
55663
55848
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55681,7 +55866,7 @@ class Chunk {
55681
55866
  }
55682
55867
  exports.Chunk = Chunk;
55683
55868
 
55684
- },{}],341:[function(require,module,exports){
55869
+ },{}],343:[function(require,module,exports){
55685
55870
  "use strict";
55686
55871
  /*!
55687
55872
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55861,7 +56046,7 @@ ParseTreeMatch = __decorate([
55861
56046
  ], ParseTreeMatch);
55862
56047
  exports.ParseTreeMatch = ParseTreeMatch;
55863
56048
 
55864
- },{"../../Decorators":215}],342:[function(require,module,exports){
56049
+ },{"../../Decorators":217}],344:[function(require,module,exports){
55865
56050
  "use strict";
55866
56051
  /*!
55867
56052
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56019,7 +56204,7 @@ ParseTreePattern = __decorate([
56019
56204
  ], ParseTreePattern);
56020
56205
  exports.ParseTreePattern = ParseTreePattern;
56021
56206
 
56022
- },{"../../Decorators":215,"../xpath/XPath":348}],343:[function(require,module,exports){
56207
+ },{"../../Decorators":217,"../xpath/XPath":350}],345:[function(require,module,exports){
56023
56208
  "use strict";
56024
56209
  /*!
56025
56210
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56497,7 +56682,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
56497
56682
  ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
56498
56683
  })(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
56499
56684
 
56500
- },{"../../BailErrorStrategy":205,"../../CharStreams":208,"../../CommonTokenStream":213,"../../Decorators":215,"../../ListTokenSource":226,"../../ParserInterpreter":230,"../../ParserRuleContext":231,"../../RecognitionException":234,"../../Token":240,"../../misc/MultiMap":329,"../../misc/ParseCancellationException":332,"../RuleNode":337,"../TerminalNode":338,"./ParseTreeMatch":341,"./ParseTreePattern":342,"./RuleTagToken":344,"./TagChunk":345,"./TextChunk":346,"./TokenTagToken":347}],344:[function(require,module,exports){
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){
56501
56686
  "use strict";
56502
56687
  /*!
56503
56688
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56695,7 +56880,7 @@ RuleTagToken = __decorate([
56695
56880
  ], RuleTagToken);
56696
56881
  exports.RuleTagToken = RuleTagToken;
56697
56882
 
56698
- },{"../../Decorators":215,"../../Token":240}],345:[function(require,module,exports){
56883
+ },{"../../Decorators":217,"../../Token":242}],347:[function(require,module,exports){
56699
56884
  "use strict";
56700
56885
  /*!
56701
56886
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56782,7 +56967,7 @@ __decorate([
56782
56967
  ], TagChunk.prototype, "toString", null);
56783
56968
  exports.TagChunk = TagChunk;
56784
56969
 
56785
- },{"../../Decorators":215,"./Chunk":340}],346:[function(require,module,exports){
56970
+ },{"../../Decorators":217,"./Chunk":342}],348:[function(require,module,exports){
56786
56971
  "use strict";
56787
56972
  /*!
56788
56973
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56852,7 +57037,7 @@ TextChunk = __decorate([
56852
57037
  ], TextChunk);
56853
57038
  exports.TextChunk = TextChunk;
56854
57039
 
56855
- },{"../../Decorators":215,"./Chunk":340}],347:[function(require,module,exports){
57040
+ },{"../../Decorators":217,"./Chunk":342}],349:[function(require,module,exports){
56856
57041
  "use strict";
56857
57042
  /*!
56858
57043
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56947,7 +57132,7 @@ TokenTagToken = __decorate([
56947
57132
  ], TokenTagToken);
56948
57133
  exports.TokenTagToken = TokenTagToken;
56949
57134
 
56950
- },{"../../CommonToken":211,"../../Decorators":215}],348:[function(require,module,exports){
57135
+ },{"../../CommonToken":213,"../../Decorators":217}],350:[function(require,module,exports){
56951
57136
  "use strict";
56952
57137
  /*!
56953
57138
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57144,7 +57329,7 @@ exports.XPath = XPath;
57144
57329
  XPath.WILDCARD = "*"; // word not operator/separator
57145
57330
  XPath.NOT = "!"; // word for invert operator
57146
57331
 
57147
- },{"../../CharStreams":208,"../../CommonTokenStream":213,"../../LexerNoViableAltException":225,"../../ParserRuleContext":231,"../../Token":240,"./XPathLexer":350,"./XPathLexerErrorListener":351,"./XPathRuleAnywhereElement":352,"./XPathRuleElement":353,"./XPathTokenAnywhereElement":354,"./XPathTokenElement":355,"./XPathWildcardAnywhereElement":356,"./XPathWildcardElement":357}],349:[function(require,module,exports){
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){
57148
57333
  "use strict";
57149
57334
  /*!
57150
57335
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57179,7 +57364,7 @@ __decorate([
57179
57364
  ], XPathElement.prototype, "toString", null);
57180
57365
  exports.XPathElement = XPathElement;
57181
57366
 
57182
- },{"../../Decorators":215}],350:[function(require,module,exports){
57367
+ },{"../../Decorators":217}],352:[function(require,module,exports){
57183
57368
  "use strict";
57184
57369
  // Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
57185
57370
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -57654,7 +57839,7 @@ XPathLexer._serializedATN = Utils.join([
57654
57839
  XPathLexer._serializedATNSegment1,
57655
57840
  ], "");
57656
57841
 
57657
- },{"../../Lexer":223,"../../VocabularyImpl":246,"../../atn/ATNDeserializer":252,"../../atn/LexerATNSimulator":273,"../../misc/Utils":334}],351:[function(require,module,exports){
57842
+ },{"../../Lexer":225,"../../VocabularyImpl":248,"../../atn/ATNDeserializer":254,"../../atn/LexerATNSimulator":275,"../../misc/Utils":336}],353:[function(require,module,exports){
57658
57843
  "use strict";
57659
57844
  /*!
57660
57845
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57679,7 +57864,7 @@ __decorate([
57679
57864
  ], XPathLexerErrorListener.prototype, "syntaxError", null);
57680
57865
  exports.XPathLexerErrorListener = XPathLexerErrorListener;
57681
57866
 
57682
- },{"../../Decorators":215}],352:[function(require,module,exports){
57867
+ },{"../../Decorators":217}],354:[function(require,module,exports){
57683
57868
  "use strict";
57684
57869
  /*!
57685
57870
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57713,7 +57898,7 @@ __decorate([
57713
57898
  ], XPathRuleAnywhereElement.prototype, "evaluate", null);
57714
57899
  exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
57715
57900
 
57716
- },{"../../Decorators":215,"../Trees":339,"./XPathElement":349}],353:[function(require,module,exports){
57901
+ },{"../../Decorators":217,"../Trees":341,"./XPathElement":351}],355:[function(require,module,exports){
57717
57902
  "use strict";
57718
57903
  /*!
57719
57904
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57756,7 +57941,7 @@ __decorate([
57756
57941
  ], XPathRuleElement.prototype, "evaluate", null);
57757
57942
  exports.XPathRuleElement = XPathRuleElement;
57758
57943
 
57759
- },{"../../Decorators":215,"../../ParserRuleContext":231,"../Trees":339,"./XPathElement":349}],354:[function(require,module,exports){
57944
+ },{"../../Decorators":217,"../../ParserRuleContext":233,"../Trees":341,"./XPathElement":351}],356:[function(require,module,exports){
57760
57945
  "use strict";
57761
57946
  /*!
57762
57947
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57788,7 +57973,7 @@ __decorate([
57788
57973
  ], XPathTokenAnywhereElement.prototype, "evaluate", null);
57789
57974
  exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
57790
57975
 
57791
- },{"../../Decorators":215,"../Trees":339,"./XPathElement":349}],355:[function(require,module,exports){
57976
+ },{"../../Decorators":217,"../Trees":341,"./XPathElement":351}],357:[function(require,module,exports){
57792
57977
  "use strict";
57793
57978
  /*!
57794
57979
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57831,7 +58016,7 @@ __decorate([
57831
58016
  ], XPathTokenElement.prototype, "evaluate", null);
57832
58017
  exports.XPathTokenElement = XPathTokenElement;
57833
58018
 
57834
- },{"../../Decorators":215,"../TerminalNode":338,"../Trees":339,"./XPathElement":349}],356:[function(require,module,exports){
58019
+ },{"../../Decorators":217,"../TerminalNode":340,"../Trees":341,"./XPathElement":351}],358:[function(require,module,exports){
57835
58020
  "use strict";
57836
58021
  /*!
57837
58022
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57867,7 +58052,7 @@ __decorate([
57867
58052
  ], XPathWildcardAnywhereElement.prototype, "evaluate", null);
57868
58053
  exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
57869
58054
 
57870
- },{"../../Decorators":215,"../Trees":339,"./XPath":348,"./XPathElement":349}],357:[function(require,module,exports){
58055
+ },{"../../Decorators":217,"../Trees":341,"./XPath":350,"./XPathElement":351}],359:[function(require,module,exports){
57871
58056
  "use strict";
57872
58057
  /*!
57873
58058
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57907,7 +58092,7 @@ __decorate([
57907
58092
  ], XPathWildcardElement.prototype, "evaluate", null);
57908
58093
  exports.XPathWildcardElement = XPathWildcardElement;
57909
58094
 
57910
- },{"../../Decorators":215,"../Trees":339,"./XPath":348,"./XPathElement":349}],358:[function(require,module,exports){
58095
+ },{"../../Decorators":217,"../Trees":341,"./XPath":350,"./XPathElement":351}],360:[function(require,module,exports){
57911
58096
  (function (global){(function (){
57912
58097
  'use strict';
57913
58098
 
@@ -58417,7 +58602,7 @@ var objectKeys = Object.keys || function (obj) {
58417
58602
  };
58418
58603
 
58419
58604
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
58420
- },{"object.assign/polyfill":415,"util/":361}],359:[function(require,module,exports){
58605
+ },{"object.assign/polyfill":417,"util/":363}],361:[function(require,module,exports){
58421
58606
  if (typeof Object.create === 'function') {
58422
58607
  // implementation from standard node.js 'util' module
58423
58608
  module.exports = function inherits(ctor, superCtor) {
@@ -58442,14 +58627,14 @@ if (typeof Object.create === 'function') {
58442
58627
  }
58443
58628
  }
58444
58629
 
58445
- },{}],360:[function(require,module,exports){
58630
+ },{}],362:[function(require,module,exports){
58446
58631
  module.exports = function isBuffer(arg) {
58447
58632
  return arg && typeof arg === 'object'
58448
58633
  && typeof arg.copy === 'function'
58449
58634
  && typeof arg.fill === 'function'
58450
58635
  && typeof arg.readUInt8 === 'function';
58451
58636
  }
58452
- },{}],361:[function(require,module,exports){
58637
+ },{}],363:[function(require,module,exports){
58453
58638
  (function (process,global){(function (){
58454
58639
  // Copyright Joyent, Inc. and other Node contributors.
58455
58640
  //
@@ -59039,7 +59224,7 @@ function hasOwnProperty(obj, prop) {
59039
59224
  }
59040
59225
 
59041
59226
  }).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
59042
- },{"./support/isBuffer":360,"_process":417,"inherits":359}],362:[function(require,module,exports){
59227
+ },{"./support/isBuffer":362,"_process":419,"inherits":361}],364:[function(require,module,exports){
59043
59228
  (function (global){(function (){
59044
59229
  'use strict';
59045
59230
 
@@ -59060,7 +59245,7 @@ module.exports = function availableTypedArrays() {
59060
59245
  };
59061
59246
 
59062
59247
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
59063
- },{"possible-typed-array-names":416}],363:[function(require,module,exports){
59248
+ },{"possible-typed-array-names":418}],365:[function(require,module,exports){
59064
59249
  (function (process,global){(function (){
59065
59250
  module.exports = process.hrtime || hrtime
59066
59251
 
@@ -59091,7 +59276,7 @@ function hrtime(previousTimestamp){
59091
59276
  return [seconds,nanoseconds]
59092
59277
  }
59093
59278
  }).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
59094
- },{"_process":417}],364:[function(require,module,exports){
59279
+ },{"_process":419}],366:[function(require,module,exports){
59095
59280
  'use strict';
59096
59281
 
59097
59282
  var bind = require('function-bind');
@@ -59103,7 +59288,7 @@ var $reflectApply = require('./reflectApply');
59103
59288
  /** @type {import('./actualApply')} */
59104
59289
  module.exports = $reflectApply || bind.call($call, $apply);
59105
59290
 
59106
- },{"./functionApply":366,"./functionCall":367,"./reflectApply":369,"function-bind":385}],365:[function(require,module,exports){
59291
+ },{"./functionApply":368,"./functionCall":369,"./reflectApply":371,"function-bind":387}],367:[function(require,module,exports){
59107
59292
  'use strict';
59108
59293
 
59109
59294
  var bind = require('function-bind');
@@ -59115,19 +59300,19 @@ module.exports = function applyBind() {
59115
59300
  return actualApply(bind, $apply, arguments);
59116
59301
  };
59117
59302
 
59118
- },{"./actualApply":364,"./functionApply":366,"function-bind":385}],366:[function(require,module,exports){
59303
+ },{"./actualApply":366,"./functionApply":368,"function-bind":387}],368:[function(require,module,exports){
59119
59304
  'use strict';
59120
59305
 
59121
59306
  /** @type {import('./functionApply')} */
59122
59307
  module.exports = Function.prototype.apply;
59123
59308
 
59124
- },{}],367:[function(require,module,exports){
59309
+ },{}],369:[function(require,module,exports){
59125
59310
  'use strict';
59126
59311
 
59127
59312
  /** @type {import('./functionCall')} */
59128
59313
  module.exports = Function.prototype.call;
59129
59314
 
59130
- },{}],368:[function(require,module,exports){
59315
+ },{}],370:[function(require,module,exports){
59131
59316
  'use strict';
59132
59317
 
59133
59318
  var bind = require('function-bind');
@@ -59144,13 +59329,13 @@ module.exports = function callBindBasic(args) {
59144
59329
  return $actualApply(bind, $call, args);
59145
59330
  };
59146
59331
 
59147
- },{"./actualApply":364,"./functionCall":367,"es-errors/type":380,"function-bind":385}],369:[function(require,module,exports){
59332
+ },{"./actualApply":366,"./functionCall":369,"es-errors/type":382,"function-bind":387}],371:[function(require,module,exports){
59148
59333
  'use strict';
59149
59334
 
59150
59335
  /** @type {import('./reflectApply')} */
59151
59336
  module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
59152
59337
 
59153
- },{}],370:[function(require,module,exports){
59338
+ },{}],372:[function(require,module,exports){
59154
59339
  'use strict';
59155
59340
 
59156
59341
  var setFunctionLength = require('set-function-length');
@@ -59176,7 +59361,7 @@ if ($defineProperty) {
59176
59361
  module.exports.apply = applyBind;
59177
59362
  }
59178
59363
 
59179
- },{"call-bind-apply-helpers":368,"call-bind-apply-helpers/applyBind":365,"es-define-property":374,"set-function-length":419}],371:[function(require,module,exports){
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){
59180
59365
  'use strict';
59181
59366
 
59182
59367
  var GetIntrinsic = require('get-intrinsic');
@@ -59197,7 +59382,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
59197
59382
  return intrinsic;
59198
59383
  };
59199
59384
 
59200
- },{"call-bind-apply-helpers":368,"get-intrinsic":386}],372:[function(require,module,exports){
59385
+ },{"call-bind-apply-helpers":370,"get-intrinsic":388}],374:[function(require,module,exports){
59201
59386
  'use strict';
59202
59387
 
59203
59388
  var $defineProperty = require('es-define-property');
@@ -59255,7 +59440,7 @@ module.exports = function defineDataProperty(
59255
59440
  }
59256
59441
  };
59257
59442
 
59258
- },{"es-define-property":374,"es-errors/syntax":379,"es-errors/type":380,"gopd":391}],373:[function(require,module,exports){
59443
+ },{"es-define-property":376,"es-errors/syntax":381,"es-errors/type":382,"gopd":393}],375:[function(require,module,exports){
59259
59444
  'use strict';
59260
59445
 
59261
59446
  var callBind = require('call-bind-apply-helpers');
@@ -59287,7 +59472,7 @@ module.exports = desc && typeof desc.get === 'function'
59287
59472
  }
59288
59473
  : false;
59289
59474
 
59290
- },{"call-bind-apply-helpers":368,"gopd":391}],374:[function(require,module,exports){
59475
+ },{"call-bind-apply-helpers":370,"gopd":393}],376:[function(require,module,exports){
59291
59476
  'use strict';
59292
59477
 
59293
59478
  /** @type {import('.')} */
@@ -59303,55 +59488,55 @@ if ($defineProperty) {
59303
59488
 
59304
59489
  module.exports = $defineProperty;
59305
59490
 
59306
- },{}],375:[function(require,module,exports){
59491
+ },{}],377:[function(require,module,exports){
59307
59492
  'use strict';
59308
59493
 
59309
59494
  /** @type {import('./eval')} */
59310
59495
  module.exports = EvalError;
59311
59496
 
59312
- },{}],376:[function(require,module,exports){
59497
+ },{}],378:[function(require,module,exports){
59313
59498
  'use strict';
59314
59499
 
59315
59500
  /** @type {import('.')} */
59316
59501
  module.exports = Error;
59317
59502
 
59318
- },{}],377:[function(require,module,exports){
59503
+ },{}],379:[function(require,module,exports){
59319
59504
  'use strict';
59320
59505
 
59321
59506
  /** @type {import('./range')} */
59322
59507
  module.exports = RangeError;
59323
59508
 
59324
- },{}],378:[function(require,module,exports){
59509
+ },{}],380:[function(require,module,exports){
59325
59510
  'use strict';
59326
59511
 
59327
59512
  /** @type {import('./ref')} */
59328
59513
  module.exports = ReferenceError;
59329
59514
 
59330
- },{}],379:[function(require,module,exports){
59515
+ },{}],381:[function(require,module,exports){
59331
59516
  'use strict';
59332
59517
 
59333
59518
  /** @type {import('./syntax')} */
59334
59519
  module.exports = SyntaxError;
59335
59520
 
59336
- },{}],380:[function(require,module,exports){
59521
+ },{}],382:[function(require,module,exports){
59337
59522
  'use strict';
59338
59523
 
59339
59524
  /** @type {import('./type')} */
59340
59525
  module.exports = TypeError;
59341
59526
 
59342
- },{}],381:[function(require,module,exports){
59527
+ },{}],383:[function(require,module,exports){
59343
59528
  'use strict';
59344
59529
 
59345
59530
  /** @type {import('./uri')} */
59346
59531
  module.exports = URIError;
59347
59532
 
59348
- },{}],382:[function(require,module,exports){
59533
+ },{}],384:[function(require,module,exports){
59349
59534
  'use strict';
59350
59535
 
59351
59536
  /** @type {import('.')} */
59352
59537
  module.exports = Object;
59353
59538
 
59354
- },{}],383:[function(require,module,exports){
59539
+ },{}],385:[function(require,module,exports){
59355
59540
  'use strict';
59356
59541
 
59357
59542
  var isCallable = require('is-callable');
@@ -59422,7 +59607,7 @@ module.exports = function forEach(list, iterator, thisArg) {
59422
59607
  }
59423
59608
  };
59424
59609
 
59425
- },{"is-callable":399}],384:[function(require,module,exports){
59610
+ },{"is-callable":401}],386:[function(require,module,exports){
59426
59611
  'use strict';
59427
59612
 
59428
59613
  /* eslint no-invalid-this: 1 */
@@ -59508,14 +59693,14 @@ module.exports = function bind(that) {
59508
59693
  return bound;
59509
59694
  };
59510
59695
 
59511
- },{}],385:[function(require,module,exports){
59696
+ },{}],387:[function(require,module,exports){
59512
59697
  'use strict';
59513
59698
 
59514
59699
  var implementation = require('./implementation');
59515
59700
 
59516
59701
  module.exports = Function.prototype.bind || implementation;
59517
59702
 
59518
- },{"./implementation":384}],386:[function(require,module,exports){
59703
+ },{"./implementation":386}],388:[function(require,module,exports){
59519
59704
  'use strict';
59520
59705
 
59521
59706
  var undefined;
@@ -59895,7 +60080,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
59895
60080
  return value;
59896
60081
  };
59897
60082
 
59898
- },{"call-bind-apply-helpers/functionApply":366,"call-bind-apply-helpers/functionCall":367,"es-define-property":374,"es-errors":376,"es-errors/eval":375,"es-errors/range":377,"es-errors/ref":378,"es-errors/syntax":379,"es-errors/type":380,"es-errors/uri":381,"es-object-atoms":382,"function-bind":385,"get-proto":389,"get-proto/Object.getPrototypeOf":387,"get-proto/Reflect.getPrototypeOf":388,"gopd":391,"has-symbols":393,"hasown":396,"math-intrinsics/abs":403,"math-intrinsics/floor":404,"math-intrinsics/max":406,"math-intrinsics/min":407,"math-intrinsics/pow":408,"math-intrinsics/round":409,"math-intrinsics/sign":410}],387:[function(require,module,exports){
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){
59899
60084
  'use strict';
59900
60085
 
59901
60086
  var $Object = require('es-object-atoms');
@@ -59903,13 +60088,13 @@ var $Object = require('es-object-atoms');
59903
60088
  /** @type {import('./Object.getPrototypeOf')} */
59904
60089
  module.exports = $Object.getPrototypeOf || null;
59905
60090
 
59906
- },{"es-object-atoms":382}],388:[function(require,module,exports){
60091
+ },{"es-object-atoms":384}],390:[function(require,module,exports){
59907
60092
  'use strict';
59908
60093
 
59909
60094
  /** @type {import('./Reflect.getPrototypeOf')} */
59910
60095
  module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
59911
60096
 
59912
- },{}],389:[function(require,module,exports){
60097
+ },{}],391:[function(require,module,exports){
59913
60098
  'use strict';
59914
60099
 
59915
60100
  var reflectGetProto = require('./Reflect.getPrototypeOf');
@@ -59938,13 +60123,13 @@ module.exports = reflectGetProto
59938
60123
  }
59939
60124
  : null;
59940
60125
 
59941
- },{"./Object.getPrototypeOf":387,"./Reflect.getPrototypeOf":388,"dunder-proto/get":373}],390:[function(require,module,exports){
60126
+ },{"./Object.getPrototypeOf":389,"./Reflect.getPrototypeOf":390,"dunder-proto/get":375}],392:[function(require,module,exports){
59942
60127
  'use strict';
59943
60128
 
59944
60129
  /** @type {import('./gOPD')} */
59945
60130
  module.exports = Object.getOwnPropertyDescriptor;
59946
60131
 
59947
- },{}],391:[function(require,module,exports){
60132
+ },{}],393:[function(require,module,exports){
59948
60133
  'use strict';
59949
60134
 
59950
60135
  /** @type {import('.')} */
@@ -59961,7 +60146,7 @@ if ($gOPD) {
59961
60146
 
59962
60147
  module.exports = $gOPD;
59963
60148
 
59964
- },{"./gOPD":390}],392:[function(require,module,exports){
60149
+ },{"./gOPD":392}],394:[function(require,module,exports){
59965
60150
  'use strict';
59966
60151
 
59967
60152
  var $defineProperty = require('es-define-property');
@@ -59985,7 +60170,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
59985
60170
 
59986
60171
  module.exports = hasPropertyDescriptors;
59987
60172
 
59988
- },{"es-define-property":374}],393:[function(require,module,exports){
60173
+ },{"es-define-property":376}],395:[function(require,module,exports){
59989
60174
  'use strict';
59990
60175
 
59991
60176
  var origSymbol = typeof Symbol !== 'undefined' && Symbol;
@@ -60001,7 +60186,7 @@ module.exports = function hasNativeSymbols() {
60001
60186
  return hasSymbolSham();
60002
60187
  };
60003
60188
 
60004
- },{"./shams":394}],394:[function(require,module,exports){
60189
+ },{"./shams":396}],396:[function(require,module,exports){
60005
60190
  'use strict';
60006
60191
 
60007
60192
  /** @type {import('./shams')} */
@@ -60048,7 +60233,7 @@ module.exports = function hasSymbols() {
60048
60233
  return true;
60049
60234
  };
60050
60235
 
60051
- },{}],395:[function(require,module,exports){
60236
+ },{}],397:[function(require,module,exports){
60052
60237
  'use strict';
60053
60238
 
60054
60239
  var hasSymbols = require('has-symbols/shams');
@@ -60058,7 +60243,7 @@ module.exports = function hasToStringTagShams() {
60058
60243
  return hasSymbols() && !!Symbol.toStringTag;
60059
60244
  };
60060
60245
 
60061
- },{"has-symbols/shams":394}],396:[function(require,module,exports){
60246
+ },{"has-symbols/shams":396}],398:[function(require,module,exports){
60062
60247
  'use strict';
60063
60248
 
60064
60249
  var call = Function.prototype.call;
@@ -60068,7 +60253,7 @@ var bind = require('function-bind');
60068
60253
  /** @type {import('.')} */
60069
60254
  module.exports = bind.call(call, $hasOwn);
60070
60255
 
60071
- },{"function-bind":385}],397:[function(require,module,exports){
60256
+ },{"function-bind":387}],399:[function(require,module,exports){
60072
60257
  if (typeof Object.create === 'function') {
60073
60258
  // implementation from standard node.js 'util' module
60074
60259
  module.exports = function inherits(ctor, superCtor) {
@@ -60097,7 +60282,7 @@ if (typeof Object.create === 'function') {
60097
60282
  }
60098
60283
  }
60099
60284
 
60100
- },{}],398:[function(require,module,exports){
60285
+ },{}],400:[function(require,module,exports){
60101
60286
  'use strict';
60102
60287
 
60103
60288
  var hasToStringTag = require('has-tostringtag/shams')();
@@ -60143,7 +60328,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
60143
60328
  /** @type {import('.')} */
60144
60329
  module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
60145
60330
 
60146
- },{"call-bound":371,"has-tostringtag/shams":395}],399:[function(require,module,exports){
60331
+ },{"call-bound":373,"has-tostringtag/shams":397}],401:[function(require,module,exports){
60147
60332
  'use strict';
60148
60333
 
60149
60334
  var fnToStr = Function.prototype.toString;
@@ -60246,7 +60431,7 @@ module.exports = reflectApply
60246
60431
  return tryFunctionObject(value);
60247
60432
  };
60248
60433
 
60249
- },{}],400:[function(require,module,exports){
60434
+ },{}],402:[function(require,module,exports){
60250
60435
  'use strict';
60251
60436
 
60252
60437
  var callBound = require('call-bound');
@@ -60295,7 +60480,7 @@ module.exports = function isGeneratorFunction(fn) {
60295
60480
  return getProto(fn) === GeneratorFunction;
60296
60481
  };
60297
60482
 
60298
- },{"call-bound":371,"get-proto":389,"has-tostringtag/shams":395,"safe-regex-test":418}],401:[function(require,module,exports){
60483
+ },{"call-bound":373,"get-proto":391,"has-tostringtag/shams":397,"safe-regex-test":420}],403:[function(require,module,exports){
60299
60484
  'use strict';
60300
60485
 
60301
60486
  var callBound = require('call-bound');
@@ -60366,7 +60551,7 @@ if (hasToStringTag) {
60366
60551
 
60367
60552
  module.exports = fn;
60368
60553
 
60369
- },{"call-bound":371,"gopd":391,"has-tostringtag/shams":395,"hasown":396}],402:[function(require,module,exports){
60554
+ },{"call-bound":373,"gopd":393,"has-tostringtag/shams":397,"hasown":398}],404:[function(require,module,exports){
60370
60555
  'use strict';
60371
60556
 
60372
60557
  var whichTypedArray = require('which-typed-array');
@@ -60376,19 +60561,19 @@ module.exports = function isTypedArray(value) {
60376
60561
  return !!whichTypedArray(value);
60377
60562
  };
60378
60563
 
60379
- },{"which-typed-array":423}],403:[function(require,module,exports){
60564
+ },{"which-typed-array":425}],405:[function(require,module,exports){
60380
60565
  'use strict';
60381
60566
 
60382
60567
  /** @type {import('./abs')} */
60383
60568
  module.exports = Math.abs;
60384
60569
 
60385
- },{}],404:[function(require,module,exports){
60570
+ },{}],406:[function(require,module,exports){
60386
60571
  'use strict';
60387
60572
 
60388
60573
  /** @type {import('./floor')} */
60389
60574
  module.exports = Math.floor;
60390
60575
 
60391
- },{}],405:[function(require,module,exports){
60576
+ },{}],407:[function(require,module,exports){
60392
60577
  'use strict';
60393
60578
 
60394
60579
  /** @type {import('./isNaN')} */
@@ -60396,31 +60581,31 @@ module.exports = Number.isNaN || function isNaN(a) {
60396
60581
  return a !== a;
60397
60582
  };
60398
60583
 
60399
- },{}],406:[function(require,module,exports){
60584
+ },{}],408:[function(require,module,exports){
60400
60585
  'use strict';
60401
60586
 
60402
60587
  /** @type {import('./max')} */
60403
60588
  module.exports = Math.max;
60404
60589
 
60405
- },{}],407:[function(require,module,exports){
60590
+ },{}],409:[function(require,module,exports){
60406
60591
  'use strict';
60407
60592
 
60408
60593
  /** @type {import('./min')} */
60409
60594
  module.exports = Math.min;
60410
60595
 
60411
- },{}],408:[function(require,module,exports){
60596
+ },{}],410:[function(require,module,exports){
60412
60597
  'use strict';
60413
60598
 
60414
60599
  /** @type {import('./pow')} */
60415
60600
  module.exports = Math.pow;
60416
60601
 
60417
- },{}],409:[function(require,module,exports){
60602
+ },{}],411:[function(require,module,exports){
60418
60603
  'use strict';
60419
60604
 
60420
60605
  /** @type {import('./round')} */
60421
60606
  module.exports = Math.round;
60422
60607
 
60423
- },{}],410:[function(require,module,exports){
60608
+ },{}],412:[function(require,module,exports){
60424
60609
  'use strict';
60425
60610
 
60426
60611
  var $isNaN = require('./isNaN');
@@ -60433,7 +60618,7 @@ module.exports = function sign(number) {
60433
60618
  return number < 0 ? -1 : +1;
60434
60619
  };
60435
60620
 
60436
- },{"./isNaN":405}],411:[function(require,module,exports){
60621
+ },{"./isNaN":407}],413:[function(require,module,exports){
60437
60622
  'use strict';
60438
60623
 
60439
60624
  var keysShim;
@@ -60557,7 +60742,7 @@ if (!Object.keys) {
60557
60742
  }
60558
60743
  module.exports = keysShim;
60559
60744
 
60560
- },{"./isArguments":413}],412:[function(require,module,exports){
60745
+ },{"./isArguments":415}],414:[function(require,module,exports){
60561
60746
  'use strict';
60562
60747
 
60563
60748
  var slice = Array.prototype.slice;
@@ -60591,7 +60776,7 @@ keysShim.shim = function shimObjectKeys() {
60591
60776
 
60592
60777
  module.exports = keysShim;
60593
60778
 
60594
- },{"./implementation":411,"./isArguments":413}],413:[function(require,module,exports){
60779
+ },{"./implementation":413,"./isArguments":415}],415:[function(require,module,exports){
60595
60780
  'use strict';
60596
60781
 
60597
60782
  var toStr = Object.prototype.toString;
@@ -60610,7 +60795,7 @@ module.exports = function isArguments(value) {
60610
60795
  return isArgs;
60611
60796
  };
60612
60797
 
60613
- },{}],414:[function(require,module,exports){
60798
+ },{}],416:[function(require,module,exports){
60614
60799
  'use strict';
60615
60800
 
60616
60801
  // modified from https://github.com/es-shims/es6-shim
@@ -60658,7 +60843,7 @@ module.exports = function assign(target, source1) {
60658
60843
  return to; // step 4
60659
60844
  };
60660
60845
 
60661
- },{"call-bound":371,"es-object-atoms":382,"has-symbols/shams":394,"object-keys":412}],415:[function(require,module,exports){
60846
+ },{"call-bound":373,"es-object-atoms":384,"has-symbols/shams":396,"object-keys":414}],417:[function(require,module,exports){
60662
60847
  'use strict';
60663
60848
 
60664
60849
  var implementation = require('./implementation');
@@ -60715,7 +60900,7 @@ module.exports = function getPolyfill() {
60715
60900
  return Object.assign;
60716
60901
  };
60717
60902
 
60718
- },{"./implementation":414}],416:[function(require,module,exports){
60903
+ },{"./implementation":416}],418:[function(require,module,exports){
60719
60904
  'use strict';
60720
60905
 
60721
60906
  /** @type {import('.')} */
@@ -60734,7 +60919,7 @@ module.exports = [
60734
60919
  'BigUint64Array'
60735
60920
  ];
60736
60921
 
60737
- },{}],417:[function(require,module,exports){
60922
+ },{}],419:[function(require,module,exports){
60738
60923
  // shim for using process in browser
60739
60924
  var process = module.exports = {};
60740
60925
 
@@ -60920,7 +61105,7 @@ process.chdir = function (dir) {
60920
61105
  };
60921
61106
  process.umask = function() { return 0; };
60922
61107
 
60923
- },{}],418:[function(require,module,exports){
61108
+ },{}],420:[function(require,module,exports){
60924
61109
  'use strict';
60925
61110
 
60926
61111
  var callBound = require('call-bound');
@@ -60939,7 +61124,7 @@ module.exports = function regexTester(regex) {
60939
61124
  };
60940
61125
  };
60941
61126
 
60942
- },{"call-bound":371,"es-errors/type":380,"is-regex":401}],419:[function(require,module,exports){
61127
+ },{"call-bound":373,"es-errors/type":382,"is-regex":403}],421:[function(require,module,exports){
60943
61128
  'use strict';
60944
61129
 
60945
61130
  var GetIntrinsic = require('get-intrinsic');
@@ -60983,9 +61168,9 @@ module.exports = function setFunctionLength(fn, length) {
60983
61168
  return fn;
60984
61169
  };
60985
61170
 
60986
- },{"define-data-property":372,"es-errors/type":380,"get-intrinsic":386,"gopd":391,"has-property-descriptors":392}],420:[function(require,module,exports){
60987
- arguments[4][360][0].apply(exports,arguments)
60988
- },{"dup":360}],421:[function(require,module,exports){
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){
60989
61174
  // Currently in sync with Node.js lib/internal/util/types.js
60990
61175
  // https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
60991
61176
 
@@ -61321,7 +61506,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
61321
61506
  });
61322
61507
  });
61323
61508
 
61324
- },{"is-arguments":398,"is-generator-function":400,"is-typed-array":402,"which-typed-array":423}],422:[function(require,module,exports){
61509
+ },{"is-arguments":400,"is-generator-function":402,"is-typed-array":404,"which-typed-array":425}],424:[function(require,module,exports){
61325
61510
  (function (process){(function (){
61326
61511
  // Copyright Joyent, Inc. and other Node contributors.
61327
61512
  //
@@ -62040,7 +62225,7 @@ function callbackify(original) {
62040
62225
  exports.callbackify = callbackify;
62041
62226
 
62042
62227
  }).call(this)}).call(this,require('_process'))
62043
- },{"./support/isBuffer":420,"./support/types":421,"_process":417,"inherits":397}],423:[function(require,module,exports){
62228
+ },{"./support/isBuffer":422,"./support/types":423,"_process":419,"inherits":399}],425:[function(require,module,exports){
62044
62229
  (function (global){(function (){
62045
62230
  'use strict';
62046
62231
 
@@ -62161,5 +62346,5 @@ module.exports = function whichTypedArray(value) {
62161
62346
  };
62162
62347
 
62163
62348
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
62164
- },{"available-typed-arrays":362,"call-bind":370,"call-bound":371,"for-each":383,"get-proto":389,"gopd":391,"has-tostringtag/shams":395}]},{},[112])(112)
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)
62165
62350
  });