@designliquido/delegua 0.54.7 → 0.55.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 (49) 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 +2 -1
  7. package/avaliador-sintatico/avaliador-sintatico.d.ts.map +1 -1
  8. package/avaliador-sintatico/avaliador-sintatico.js +49 -5
  9. package/avaliador-sintatico/avaliador-sintatico.js.map +1 -1
  10. package/bin/package.json +1 -1
  11. package/construtos/importar-como-construto.d.ts +18 -0
  12. package/construtos/importar-como-construto.d.ts.map +1 -0
  13. package/construtos/importar-como-construto.js +22 -0
  14. package/construtos/importar-como-construto.js.map +1 -0
  15. package/construtos/index.d.ts +1 -0
  16. package/construtos/index.d.ts.map +1 -1
  17. package/construtos/index.js +1 -0
  18. package/construtos/index.js.map +1 -1
  19. package/declaracoes/importar.d.ts +8 -6
  20. package/declaracoes/importar.d.ts.map +1 -1
  21. package/declaracoes/importar.js +3 -1
  22. package/declaracoes/importar.js.map +1 -1
  23. package/formatadores/formatador-delegua.d.ts.map +1 -1
  24. package/formatadores/formatador-delegua.js +7 -1
  25. package/formatadores/formatador-delegua.js.map +1 -1
  26. package/interfaces/visitante-comum-interface.d.ts +1 -2
  27. package/interfaces/visitante-comum-interface.d.ts.map +1 -1
  28. package/interfaces/visitante-delegua-interface.d.ts +4 -3
  29. package/interfaces/visitante-delegua-interface.d.ts.map +1 -1
  30. package/interpretador/interpretador.d.ts +2 -1
  31. package/interpretador/interpretador.d.ts.map +1 -1
  32. package/interpretador/interpretador.js +11 -0
  33. package/interpretador/interpretador.js.map +1 -1
  34. package/lexador/lexador.js +1 -1
  35. package/lexador/lexador.js.map +1 -1
  36. package/lexador/palavras-reservadas.d.ts +1 -0
  37. package/lexador/palavras-reservadas.d.ts.map +1 -1
  38. package/lexador/palavras-reservadas.js +1 -0
  39. package/lexador/palavras-reservadas.js.map +1 -1
  40. package/package.json +1 -1
  41. package/tipos-de-simbolos/delegua.d.ts +1 -0
  42. package/tipos-de-simbolos/delegua.d.ts.map +1 -1
  43. package/tipos-de-simbolos/delegua.js +1 -0
  44. package/tipos-de-simbolos/delegua.js.map +1 -1
  45. package/tradutores/tradutor-javascript.d.ts +13 -11
  46. package/tradutores/tradutor-javascript.d.ts.map +1 -1
  47. package/tradutores/tradutor-javascript.js +25 -26
  48. package/tradutores/tradutor-javascript.js.map +1 -1
  49. package/umd/delegua.js +505 -420
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":51,"../declaracoes":95,"../tipos-de-simbolos/comum":183,"./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);
@@ -1176,10 +1179,45 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
1176
1179
  * @returns {Importar} Uma declaração `Importar`.
1177
1180
  */
1178
1181
  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);
1182
+ let identificadorDeTudo = null;
1183
+ const elementosImportacao = [];
1184
+ switch (this.simbolos[this.atual].tipo) {
1185
+ case delegua_2.default.TUDO:
1186
+ this.avancarEDevolverAnterior();
1187
+ this.consumir(delegua_2.default.COMO, "Esperado 'como' após 'tudo' em declaração de importação.");
1188
+ identificadorDeTudo = this.consumir(delegua_2.default.IDENTIFICADOR, "Esperado identificador após 'como' em declaração de importação de 'tudo'.");
1189
+ break;
1190
+ case delegua_2.default.CHAVE_ESQUERDA:
1191
+ this.avancarEDevolverAnterior();
1192
+ do {
1193
+ const identificadorImportacao = this.consumir(delegua_2.default.IDENTIFICADOR, "Esperado identificador de elemento a ser importado.");
1194
+ elementosImportacao.push(identificadorImportacao);
1195
+ } while (this.verificarSeSimboloAtualEIgualA(delegua_2.default.VIRGULA));
1196
+ this.consumir(delegua_2.default.CHAVE_DIREITA, "Esperado '}' após lista de elementos a serem importados.");
1197
+ break;
1198
+ default:
1199
+ throw this.erro(this.simbolos[this.atual], "Esperado ou palavra reservada 'tudo' ou abertura de chaves após palavra reservada 'importar'.");
1200
+ }
1201
+ this.consumir(delegua_2.default.DE, "Esperado 'de' após identificador em declaração de importação de 'tudo'.");
1202
+ let construtoCaminhoModulo;
1203
+ switch (this.simbolos[this.atual].tipo) {
1204
+ case delegua_2.default.TEXTO:
1205
+ const simboloCaminhoModulo = this.avancarEDevolverAnterior();
1206
+ construtoCaminhoModulo = new construtos_1.Literal(simboloCaminhoModulo.hashArquivo, Number(simboloCaminhoModulo.linha), simboloCaminhoModulo.literal);
1207
+ break;
1208
+ case delegua_2.default.IDENTIFICADOR:
1209
+ const identificadorModulo = this.avancarEDevolverAnterior();
1210
+ construtoCaminhoModulo = new construtos_1.Literal(identificadorModulo.hashArquivo, Number(identificadorModulo.linha), identificadorModulo.lexema);
1211
+ break;
1212
+ }
1213
+ const importar = new declaracoes_1.Importar(construtoCaminhoModulo);
1214
+ if (identificadorDeTudo !== null) {
1215
+ importar.simboloTudo = identificadorDeTudo;
1216
+ }
1217
+ else {
1218
+ importar.elementosImportacao = elementosImportacao;
1219
+ }
1220
+ return importar;
1183
1221
  }
1184
1222
  declaracaoPara() {
1185
1223
  try {
@@ -1452,6 +1490,9 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
1452
1490
  case delegua_2.default.FAZER:
1453
1491
  const simboloFazer = this.avancarEDevolverAnterior();
1454
1492
  return this.declaracaoFazer(simboloFazer);
1493
+ case delegua_2.default.IMPORTAR:
1494
+ this.avancarEDevolverAnterior();
1495
+ return this.declaracaoImportar();
1455
1496
  case delegua_2.default.LINHA_COMENTARIO:
1456
1497
  return this.declaracaoComentarioMultilinha();
1457
1498
  case delegua_2.default.PARA:
@@ -2090,7 +2131,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
2090
2131
  }
2091
2132
  exports.AvaliadorSintatico = AvaliadorSintatico;
2092
2133
 
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){
2134
+ },{"../bibliotecas/primitivas-dicionario":21,"../bibliotecas/primitivas-numero":22,"../bibliotecas/primitivas-texto":23,"../bibliotecas/primitivas-vetor":24,"../construtos":51,"../construtos/tuplas":67,"../declaracoes":95,"../inferenciador":114,"../informacao-elemento-sintatico":115,"../tipos-de-dados/delegua":179,"../tipos-de-simbolos/delegua":184,"./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":364}],3:[function(require,module,exports){
2094
2135
  "use strict";
2095
2136
  Object.defineProperty(exports, "__esModule", { value: true });
2096
2137
  exports.buscarRetornos = buscarRetornos;
@@ -2190,7 +2231,7 @@ function registrarPrimitiva(primitivasConhecidas, tipo, catalogoPrimitivas) {
2190
2231
  }
2191
2232
  }
2192
2233
 
2193
- },{"../informacao-elemento-sintatico":114}],4:[function(require,module,exports){
2234
+ },{"../informacao-elemento-sintatico":115}],4:[function(require,module,exports){
2194
2235
  "use strict";
2195
2236
  var __importDefault = (this && this.__importDefault) || function (mod) {
2196
2237
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -2416,7 +2457,7 @@ class AvaliadorSintaticoCalango extends avaliador_sintatico_base_1.AvaliadorSint
2416
2457
  }
2417
2458
  exports.AvaliadorSintaticoCalango = AvaliadorSintaticoCalango;
2418
2459
 
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){
2460
+ },{"../../construtos":51,"../../declaracoes":95,"../../informacao-elemento-sintatico":115,"../../tipos-de-simbolos/calango":182,"../avaliador-sintatico-base":1,"../informacao-escopo":13,"../pilha-escopos":17}],5:[function(require,module,exports){
2420
2461
  "use strict";
2421
2462
  var __importDefault = (this && this.__importDefault) || function (mod) {
2422
2463
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -3071,7 +3112,7 @@ class AvaliadorSintaticoEguaClassico {
3071
3112
  }
3072
3113
  exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
3073
3114
 
3074
- },{"../../construtos":50,"../../declaracoes":94,"../../tipos-de-simbolos/egua-classico":184,"../erro-avaliador-sintatico":11}],6:[function(require,module,exports){
3115
+ },{"../../construtos":51,"../../declaracoes":95,"../../tipos-de-simbolos/egua-classico":185,"../erro-avaliador-sintatico":11}],6:[function(require,module,exports){
3075
3116
  "use strict";
3076
3117
  var __importDefault = (this && this.__importDefault) || function (mod) {
3077
3118
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -4153,7 +4194,7 @@ class AvaliadorSintaticoPitugues {
4153
4194
  }
4154
4195
  exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
4155
4196
 
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){
4197
+ },{"../../bibliotecas/primitivas-dicionario":21,"../../bibliotecas/primitivas-numero":22,"../../bibliotecas/primitivas-texto":23,"../../bibliotecas/primitivas-vetor":24,"../../construtos":51,"../../construtos/lista-compreensao":54,"../../declaracoes":95,"../../inferenciador":114,"../../informacao-elemento-sintatico":115,"../../lexador":171,"../../tipos-de-dados/dialetos/pitugues":180,"../../tipos-de-simbolos/pitugues":188,"../comum":3,"../erro-avaliador-sintatico":11,"../informacao-escopo":13,"../pilha-escopos":17,"browser-process-hrtime":364}],7:[function(require,module,exports){
4157
4198
  "use strict";
4158
4199
  var __importDefault = (this && this.__importDefault) || function (mod) {
4159
4200
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -4327,7 +4368,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
4327
4368
  }
4328
4369
  exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
4329
4370
 
4330
- },{"../../construtos":50,"../../declaracoes":94,"../../tipos-de-simbolos/portugol-ipt":188,"../avaliador-sintatico-base":1}],8:[function(require,module,exports){
4371
+ },{"../../construtos":51,"../../declaracoes":95,"../../tipos-de-simbolos/portugol-ipt":189,"../avaliador-sintatico-base":1}],8:[function(require,module,exports){
4331
4372
  "use strict";
4332
4373
  var __importDefault = (this && this.__importDefault) || function (mod) {
4333
4374
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -5315,7 +5356,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
5315
5356
  }
5316
5357
  exports.AvaliadorSintaticoTenda = AvaliadorSintaticoTenda;
5317
5358
 
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){
5359
+ },{"../../bibliotecas/primitivas-dicionario":21,"../../bibliotecas/primitivas-numero":22,"../../bibliotecas/primitivas-texto":23,"../../bibliotecas/primitivas-vetor":24,"../../construtos":51,"../../construtos/tuplas":67,"../../declaracoes":95,"../../inferenciador":114,"../../informacao-elemento-sintatico":115,"../../lexador/simbolo":177,"../../tipos-de-dados/delegua":179,"../../tipos-de-simbolos/tenda":190,"../avaliador-sintatico-base":1,"./../erro-avaliador-sintatico":11,"./../informacao-escopo":13,"./../pilha-escopos":17,"browser-process-hrtime":364}],9:[function(require,module,exports){
5319
5360
  "use strict";
5320
5361
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5321
5362
  if (k2 === undefined) k2 = k;
@@ -5520,7 +5561,7 @@ class MicroAvaliadorSintaticoBase {
5520
5561
  }
5521
5562
  exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
5522
5563
 
5523
- },{"../construtos":50,"../tipos-de-simbolos/comum":182,"./erro-avaliador-sintatico":11}],15:[function(require,module,exports){
5564
+ },{"../construtos":51,"../tipos-de-simbolos/comum":183,"./erro-avaliador-sintatico":11}],15:[function(require,module,exports){
5524
5565
  "use strict";
5525
5566
  var __importDefault = (this && this.__importDefault) || function (mod) {
5526
5567
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -5722,7 +5763,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
5722
5763
  }
5723
5764
  exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
5724
5765
 
5725
- },{"../construtos":50,"../tipos-de-simbolos/microgramaticas/delegua":186,"./micro-avaliador-sintatico-base":14}],16:[function(require,module,exports){
5766
+ },{"../construtos":51,"../tipos-de-simbolos/microgramaticas/delegua":187,"./micro-avaliador-sintatico-base":14}],16:[function(require,module,exports){
5726
5767
  "use strict";
5727
5768
  Object.defineProperty(exports, "__esModule", { value: true });
5728
5769
  exports.MontaoTipos = void 0;
@@ -5773,7 +5814,7 @@ class MontaoTipos {
5773
5814
  }
5774
5815
  exports.MontaoTipos = MontaoTipos;
5775
5816
 
5776
- },{"../geracao-identificadores":111,"./erro-avaliador-sintatico":11}],17:[function(require,module,exports){
5817
+ },{"../geracao-identificadores":112,"./erro-avaliador-sintatico":11}],17:[function(require,module,exports){
5777
5818
  "use strict";
5778
5819
  Object.defineProperty(exports, "__esModule", { value: true });
5779
5820
  exports.PilhaEscopos = void 0;
@@ -6553,7 +6594,7 @@ async function tupla(interpretador, vetor) {
6553
6594
  }
6554
6595
  }
6555
6596
 
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){
6597
+ },{"../construtos":51,"../excecoes":108,"../interpretador/estruturas":147,"../interpretador/estruturas/descritor-tipo-classe":145,"../interpretador/estruturas/funcao-padrao":146,"../interpretador/estruturas/objeto-delegua-classe":150,"../quebras":178}],21:[function(require,module,exports){
6557
6598
  "use strict";
6558
6599
  Object.defineProperty(exports, "__esModule", { value: true });
6559
6600
  const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
@@ -6610,7 +6651,7 @@ exports.default = {
6610
6651
  },
6611
6652
  };
6612
6653
 
6613
- },{"../informacao-elemento-sintatico":114}],22:[function(require,module,exports){
6654
+ },{"../informacao-elemento-sintatico":115}],22:[function(require,module,exports){
6614
6655
  "use strict";
6615
6656
  Object.defineProperty(exports, "__esModule", { value: true });
6616
6657
  const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
@@ -6695,7 +6736,7 @@ exports.default = {
6695
6736
  },
6696
6737
  };
6697
6738
 
6698
- },{"../informacao-elemento-sintatico":114}],23:[function(require,module,exports){
6739
+ },{"../informacao-elemento-sintatico":115}],23:[function(require,module,exports){
6699
6740
  "use strict";
6700
6741
  Object.defineProperty(exports, "__esModule", { value: true });
6701
6742
  const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
@@ -6927,7 +6968,7 @@ exports.default = {
6927
6968
  },
6928
6969
  };
6929
6970
 
6930
- },{"../informacao-elemento-sintatico":114}],24:[function(require,module,exports){
6971
+ },{"../informacao-elemento-sintatico":115}],24:[function(require,module,exports){
6931
6972
  "use strict";
6932
6973
  Object.defineProperty(exports, "__esModule", { value: true });
6933
6974
  const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
@@ -7274,7 +7315,7 @@ exports.default = {
7274
7315
  },
7275
7316
  };
7276
7317
 
7277
- },{"../informacao-elemento-sintatico":114}],25:[function(require,module,exports){
7318
+ },{"../informacao-elemento-sintatico":115}],25:[function(require,module,exports){
7278
7319
  "use strict";
7279
7320
  Object.defineProperty(exports, "__esModule", { value: true });
7280
7321
  exports.AcessoElementoMatriz = void 0;
@@ -7624,7 +7665,7 @@ class Chamada {
7624
7665
  }
7625
7666
  exports.Chamada = Chamada;
7626
7667
 
7627
- },{"../geracao-identificadores":111}],37:[function(require,module,exports){
7668
+ },{"../geracao-identificadores":112}],37:[function(require,module,exports){
7628
7669
  "use strict";
7629
7670
  Object.defineProperty(exports, "__esModule", { value: true });
7630
7671
  exports.ComentarioComoConstruto = void 0;
@@ -7905,6 +7946,29 @@ exports.FuncaoConstruto = FuncaoConstruto;
7905
7946
 
7906
7947
  },{}],50:[function(require,module,exports){
7907
7948
  "use strict";
7949
+ Object.defineProperty(exports, "__esModule", { value: true });
7950
+ exports.ImportarComoConstruto = void 0;
7951
+ /**
7952
+ * Expressão usada para importação resolvida em tempo de execução.
7953
+ * Implementa a primeira forma de importação, também conhecida como importação dinâmica.
7954
+ */
7955
+ class ImportarComoConstruto {
7956
+ constructor(caminho) {
7957
+ this.hashArquivo = caminho.hashArquivo;
7958
+ this.linha = caminho.linha;
7959
+ this.caminho = caminho;
7960
+ }
7961
+ async aceitar(visitante) {
7962
+ return await visitante.visitarExpressaoImportar(this);
7963
+ }
7964
+ paraTexto() {
7965
+ return `<importar-como-construto caminho=${this.caminho.valor} />`;
7966
+ }
7967
+ }
7968
+ exports.ImportarComoConstruto = ImportarComoConstruto;
7969
+
7970
+ },{}],51:[function(require,module,exports){
7971
+ "use strict";
7908
7972
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7909
7973
  if (k2 === undefined) k2 = k;
7910
7974
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -7945,6 +8009,7 @@ __exportStar(require("./fazer-como-construto"), exports);
7945
8009
  __exportStar(require("./fim-para"), exports);
7946
8010
  __exportStar(require("./formatacao-escrita"), exports);
7947
8011
  __exportStar(require("./funcao"), exports);
8012
+ __exportStar(require("./importar-como-construto"), exports);
7948
8013
  __exportStar(require("./isto"), exports);
7949
8014
  __exportStar(require("./leia"), exports);
7950
8015
  __exportStar(require("./lista-compreensao"), exports);
@@ -7963,7 +8028,7 @@ __exportStar(require("./unario"), exports);
7963
8028
  __exportStar(require("./variavel"), exports);
7964
8029
  __exportStar(require("./vetor"), exports);
7965
8030
 
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){
8031
+ },{"./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,"./importar-como-construto":50,"./isto":52,"./leia":53,"./lista-compreensao":54,"./literal":55,"./logico":56,"./para-cada-como-construto":57,"./para-como-construto":58,"./referencia-biblioteca-global":59,"./referencia-funcao":60,"./separador":61,"./super":62,"./tipo-de":63,"./tupla":64,"./tuplas":67,"./unario":75,"./variavel":76,"./vetor":77}],52:[function(require,module,exports){
7967
8032
  "use strict";
7968
8033
  Object.defineProperty(exports, "__esModule", { value: true });
7969
8034
  exports.Isto = void 0;
@@ -7982,7 +8047,7 @@ class Isto {
7982
8047
  }
7983
8048
  exports.Isto = Isto;
7984
8049
 
7985
- },{}],52:[function(require,module,exports){
8050
+ },{}],53:[function(require,module,exports){
7986
8051
  "use strict";
7987
8052
  Object.defineProperty(exports, "__esModule", { value: true });
7988
8053
  exports.Leia = void 0;
@@ -8008,7 +8073,7 @@ class Leia {
8008
8073
  }
8009
8074
  exports.Leia = Leia;
8010
8075
 
8011
- },{"../geracao-identificadores":111}],53:[function(require,module,exports){
8076
+ },{"../geracao-identificadores":112}],54:[function(require,module,exports){
8012
8077
  "use strict";
8013
8078
  Object.defineProperty(exports, "__esModule", { value: true });
8014
8079
  exports.ListaCompreensao = void 0;
@@ -8030,7 +8095,7 @@ class ListaCompreensao {
8030
8095
  }
8031
8096
  exports.ListaCompreensao = ListaCompreensao;
8032
8097
 
8033
- },{}],54:[function(require,module,exports){
8098
+ },{}],55:[function(require,module,exports){
8034
8099
  "use strict";
8035
8100
  Object.defineProperty(exports, "__esModule", { value: true });
8036
8101
  exports.Literal = void 0;
@@ -8050,7 +8115,7 @@ class Literal {
8050
8115
  }
8051
8116
  exports.Literal = Literal;
8052
8117
 
8053
- },{}],55:[function(require,module,exports){
8118
+ },{}],56:[function(require,module,exports){
8054
8119
  "use strict";
8055
8120
  Object.defineProperty(exports, "__esModule", { value: true });
8056
8121
  exports.Logico = void 0;
@@ -8073,7 +8138,7 @@ class Logico {
8073
8138
  }
8074
8139
  exports.Logico = Logico;
8075
8140
 
8076
- },{}],56:[function(require,module,exports){
8141
+ },{}],57:[function(require,module,exports){
8077
8142
  "use strict";
8078
8143
  Object.defineProperty(exports, "__esModule", { value: true });
8079
8144
  exports.ParaCadaComoConstruto = void 0;
@@ -8095,7 +8160,7 @@ class ParaCadaComoConstruto {
8095
8160
  }
8096
8161
  exports.ParaCadaComoConstruto = ParaCadaComoConstruto;
8097
8162
 
8098
- },{}],57:[function(require,module,exports){
8163
+ },{}],58:[function(require,module,exports){
8099
8164
  "use strict";
8100
8165
  Object.defineProperty(exports, "__esModule", { value: true });
8101
8166
  exports.ParaComoConstruto = void 0;
@@ -8120,7 +8185,7 @@ class ParaComoConstruto {
8120
8185
  }
8121
8186
  exports.ParaComoConstruto = ParaComoConstruto;
8122
8187
 
8123
- },{}],58:[function(require,module,exports){
8188
+ },{}],59:[function(require,module,exports){
8124
8189
  "use strict";
8125
8190
  Object.defineProperty(exports, "__esModule", { value: true });
8126
8191
  exports.ReferenciaBibliotecaGlobal = void 0;
@@ -8143,7 +8208,7 @@ class ReferenciaBibliotecaGlobal {
8143
8208
  }
8144
8209
  exports.ReferenciaBibliotecaGlobal = ReferenciaBibliotecaGlobal;
8145
8210
 
8146
- },{}],59:[function(require,module,exports){
8211
+ },{}],60:[function(require,module,exports){
8147
8212
  "use strict";
8148
8213
  Object.defineProperty(exports, "__esModule", { value: true });
8149
8214
  exports.ReferenciaFuncao = void 0;
@@ -8164,7 +8229,7 @@ class ReferenciaFuncao {
8164
8229
  }
8165
8230
  exports.ReferenciaFuncao = ReferenciaFuncao;
8166
8231
 
8167
- },{}],60:[function(require,module,exports){
8232
+ },{}],61:[function(require,module,exports){
8168
8233
  "use strict";
8169
8234
  Object.defineProperty(exports, "__esModule", { value: true });
8170
8235
  exports.Separador = void 0;
@@ -8183,7 +8248,7 @@ class Separador {
8183
8248
  }
8184
8249
  exports.Separador = Separador;
8185
8250
 
8186
- },{}],61:[function(require,module,exports){
8251
+ },{}],62:[function(require,module,exports){
8187
8252
  "use strict";
8188
8253
  Object.defineProperty(exports, "__esModule", { value: true });
8189
8254
  exports.Super = void 0;
@@ -8203,7 +8268,7 @@ class Super {
8203
8268
  }
8204
8269
  exports.Super = Super;
8205
8270
 
8206
- },{}],62:[function(require,module,exports){
8271
+ },{}],63:[function(require,module,exports){
8207
8272
  "use strict";
8208
8273
  Object.defineProperty(exports, "__esModule", { value: true });
8209
8274
  exports.TipoDe = void 0;
@@ -8227,7 +8292,7 @@ class TipoDe {
8227
8292
  }
8228
8293
  exports.TipoDe = TipoDe;
8229
8294
 
8230
- },{}],63:[function(require,module,exports){
8295
+ },{}],64:[function(require,module,exports){
8231
8296
  "use strict";
8232
8297
  Object.defineProperty(exports, "__esModule", { value: true });
8233
8298
  exports.Tupla = void 0;
@@ -8238,7 +8303,7 @@ class Tupla {
8238
8303
  }
8239
8304
  exports.Tupla = Tupla;
8240
8305
 
8241
- },{}],64:[function(require,module,exports){
8306
+ },{}],65:[function(require,module,exports){
8242
8307
  "use strict";
8243
8308
  Object.defineProperty(exports, "__esModule", { value: true });
8244
8309
  exports.Deceto = void 0;
@@ -8286,7 +8351,7 @@ class Deceto extends tupla_1.Tupla {
8286
8351
  }
8287
8352
  exports.Deceto = Deceto;
8288
8353
 
8289
- },{"../tupla":63}],65:[function(require,module,exports){
8354
+ },{"../tupla":64}],66:[function(require,module,exports){
8290
8355
  "use strict";
8291
8356
  Object.defineProperty(exports, "__esModule", { value: true });
8292
8357
  exports.Dupla = void 0;
@@ -8305,7 +8370,7 @@ class Dupla extends tupla_1.Tupla {
8305
8370
  }
8306
8371
  exports.Dupla = Dupla;
8307
8372
 
8308
- },{"../tupla":63}],66:[function(require,module,exports){
8373
+ },{"../tupla":64}],67:[function(require,module,exports){
8309
8374
  "use strict";
8310
8375
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
8311
8376
  if (k2 === undefined) k2 = k;
@@ -8373,7 +8438,7 @@ class SeletorTuplas {
8373
8438
  }
8374
8439
  exports.SeletorTuplas = SeletorTuplas;
8375
8440
 
8376
- },{"./deceto":64,"./dupla":65,"./noneto":67,"./octeto":68,"./quarteto":69,"./quinteto":70,"./septeto":71,"./sexteto":72,"./trio":73}],67:[function(require,module,exports){
8441
+ },{"./deceto":65,"./dupla":66,"./noneto":68,"./octeto":69,"./quarteto":70,"./quinteto":71,"./septeto":72,"./sexteto":73,"./trio":74}],68:[function(require,module,exports){
8377
8442
  "use strict";
8378
8443
  Object.defineProperty(exports, "__esModule", { value: true });
8379
8444
  exports.Noneto = void 0;
@@ -8412,7 +8477,7 @@ class Noneto extends tupla_1.Tupla {
8412
8477
  }
8413
8478
  exports.Noneto = Noneto;
8414
8479
 
8415
- },{"../tupla":63}],68:[function(require,module,exports){
8480
+ },{"../tupla":64}],69:[function(require,module,exports){
8416
8481
  "use strict";
8417
8482
  Object.defineProperty(exports, "__esModule", { value: true });
8418
8483
  exports.Octeto = void 0;
@@ -8449,7 +8514,7 @@ class Octeto extends tupla_1.Tupla {
8449
8514
  }
8450
8515
  exports.Octeto = Octeto;
8451
8516
 
8452
- },{"../tupla":63}],69:[function(require,module,exports){
8517
+ },{"../tupla":64}],70:[function(require,module,exports){
8453
8518
  "use strict";
8454
8519
  Object.defineProperty(exports, "__esModule", { value: true });
8455
8520
  exports.Quarteto = void 0;
@@ -8472,7 +8537,7 @@ class Quarteto extends tupla_1.Tupla {
8472
8537
  }
8473
8538
  exports.Quarteto = Quarteto;
8474
8539
 
8475
- },{"../tupla":63}],70:[function(require,module,exports){
8540
+ },{"../tupla":64}],71:[function(require,module,exports){
8476
8541
  "use strict";
8477
8542
  Object.defineProperty(exports, "__esModule", { value: true });
8478
8543
  exports.Quinteto = void 0;
@@ -8497,7 +8562,7 @@ class Quinteto extends tupla_1.Tupla {
8497
8562
  }
8498
8563
  exports.Quinteto = Quinteto;
8499
8564
 
8500
- },{"../tupla":63}],71:[function(require,module,exports){
8565
+ },{"../tupla":64}],72:[function(require,module,exports){
8501
8566
  "use strict";
8502
8567
  Object.defineProperty(exports, "__esModule", { value: true });
8503
8568
  exports.Septeto = void 0;
@@ -8532,7 +8597,7 @@ class Septeto extends tupla_1.Tupla {
8532
8597
  }
8533
8598
  exports.Septeto = Septeto;
8534
8599
 
8535
- },{"../tupla":63}],72:[function(require,module,exports){
8600
+ },{"../tupla":64}],73:[function(require,module,exports){
8536
8601
  "use strict";
8537
8602
  Object.defineProperty(exports, "__esModule", { value: true });
8538
8603
  exports.Sexteto = void 0;
@@ -8559,7 +8624,7 @@ class Sexteto extends tupla_1.Tupla {
8559
8624
  }
8560
8625
  exports.Sexteto = Sexteto;
8561
8626
 
8562
- },{"../tupla":63}],73:[function(require,module,exports){
8627
+ },{"../tupla":64}],74:[function(require,module,exports){
8563
8628
  "use strict";
8564
8629
  Object.defineProperty(exports, "__esModule", { value: true });
8565
8630
  exports.Trio = void 0;
@@ -8580,7 +8645,7 @@ class Trio extends tupla_1.Tupla {
8580
8645
  }
8581
8646
  exports.Trio = Trio;
8582
8647
 
8583
- },{"../tupla":63}],74:[function(require,module,exports){
8648
+ },{"../tupla":64}],75:[function(require,module,exports){
8584
8649
  "use strict";
8585
8650
  Object.defineProperty(exports, "__esModule", { value: true });
8586
8651
  exports.Unario = void 0;
@@ -8601,7 +8666,7 @@ class Unario {
8601
8666
  }
8602
8667
  exports.Unario = Unario;
8603
8668
 
8604
- },{}],75:[function(require,module,exports){
8669
+ },{}],76:[function(require,module,exports){
8605
8670
  "use strict";
8606
8671
  Object.defineProperty(exports, "__esModule", { value: true });
8607
8672
  exports.Variavel = void 0;
@@ -8621,7 +8686,7 @@ class Variavel {
8621
8686
  }
8622
8687
  exports.Variavel = Variavel;
8623
8688
 
8624
- },{}],76:[function(require,module,exports){
8689
+ },{}],77:[function(require,module,exports){
8625
8690
  "use strict";
8626
8691
  Object.defineProperty(exports, "__esModule", { value: true });
8627
8692
  exports.Vetor = void 0;
@@ -8647,7 +8712,7 @@ class Vetor {
8647
8712
  }
8648
8713
  exports.Vetor = Vetor;
8649
8714
 
8650
- },{}],77:[function(require,module,exports){
8715
+ },{}],78:[function(require,module,exports){
8651
8716
  "use strict";
8652
8717
  Object.defineProperty(exports, "__esModule", { value: true });
8653
8718
  exports.Bloco = void 0;
@@ -8673,7 +8738,7 @@ class Bloco extends declaracao_1.Declaracao {
8673
8738
  }
8674
8739
  exports.Bloco = Bloco;
8675
8740
 
8676
- },{"./declaracao":84}],78:[function(require,module,exports){
8741
+ },{"./declaracao":85}],79:[function(require,module,exports){
8677
8742
  "use strict";
8678
8743
  Object.defineProperty(exports, "__esModule", { value: true });
8679
8744
  exports.CabecalhoPrograma = void 0;
@@ -8695,7 +8760,7 @@ class CabecalhoPrograma extends declaracao_1.Declaracao {
8695
8760
  }
8696
8761
  exports.CabecalhoPrograma = CabecalhoPrograma;
8697
8762
 
8698
- },{"./declaracao":84}],79:[function(require,module,exports){
8763
+ },{"./declaracao":85}],80:[function(require,module,exports){
8699
8764
  "use strict";
8700
8765
  Object.defineProperty(exports, "__esModule", { value: true });
8701
8766
  exports.Classe = void 0;
@@ -8730,7 +8795,7 @@ class Classe extends declaracao_1.Declaracao {
8730
8795
  }
8731
8796
  exports.Classe = Classe;
8732
8797
 
8733
- },{"./declaracao":84}],80:[function(require,module,exports){
8798
+ },{"./declaracao":85}],81:[function(require,module,exports){
8734
8799
  "use strict";
8735
8800
  Object.defineProperty(exports, "__esModule", { value: true });
8736
8801
  exports.Comentario = void 0;
@@ -8755,7 +8820,7 @@ class Comentario extends declaracao_1.Declaracao {
8755
8820
  }
8756
8821
  exports.Comentario = Comentario;
8757
8822
 
8758
- },{"./declaracao":84}],81:[function(require,module,exports){
8823
+ },{"./declaracao":85}],82:[function(require,module,exports){
8759
8824
  "use strict";
8760
8825
  Object.defineProperty(exports, "__esModule", { value: true });
8761
8826
  exports.ConstMultiplo = void 0;
@@ -8780,7 +8845,7 @@ class ConstMultiplo extends declaracao_1.Declaracao {
8780
8845
  }
8781
8846
  exports.ConstMultiplo = ConstMultiplo;
8782
8847
 
8783
- },{"./declaracao":84}],82:[function(require,module,exports){
8848
+ },{"./declaracao":85}],83:[function(require,module,exports){
8784
8849
  "use strict";
8785
8850
  Object.defineProperty(exports, "__esModule", { value: true });
8786
8851
  exports.Const = void 0;
@@ -8810,7 +8875,7 @@ class Const extends declaracao_1.Declaracao {
8810
8875
  }
8811
8876
  exports.Const = Const;
8812
8877
 
8813
- },{"./declaracao":84}],83:[function(require,module,exports){
8878
+ },{"./declaracao":85}],84:[function(require,module,exports){
8814
8879
  "use strict";
8815
8880
  Object.defineProperty(exports, "__esModule", { value: true });
8816
8881
  exports.Continua = void 0;
@@ -8828,7 +8893,7 @@ class Continua extends declaracao_1.Declaracao {
8828
8893
  }
8829
8894
  exports.Continua = Continua;
8830
8895
 
8831
- },{"./declaracao":84}],84:[function(require,module,exports){
8896
+ },{"./declaracao":85}],85:[function(require,module,exports){
8832
8897
  "use strict";
8833
8898
  Object.defineProperty(exports, "__esModule", { value: true });
8834
8899
  exports.Declaracao = void 0;
@@ -8851,7 +8916,7 @@ class Declaracao {
8851
8916
  }
8852
8917
  exports.Declaracao = Declaracao;
8853
8918
 
8854
- },{}],85:[function(require,module,exports){
8919
+ },{}],86:[function(require,module,exports){
8855
8920
  "use strict";
8856
8921
  Object.defineProperty(exports, "__esModule", { value: true });
8857
8922
  exports.Enquanto = void 0;
@@ -8872,7 +8937,7 @@ class Enquanto extends declaracao_1.Declaracao {
8872
8937
  }
8873
8938
  exports.Enquanto = Enquanto;
8874
8939
 
8875
- },{"./declaracao":84}],86:[function(require,module,exports){
8940
+ },{"./declaracao":85}],87:[function(require,module,exports){
8876
8941
  "use strict";
8877
8942
  Object.defineProperty(exports, "__esModule", { value: true });
8878
8943
  exports.Escolha = void 0;
@@ -8897,7 +8962,7 @@ class Escolha extends declaracao_1.Declaracao {
8897
8962
  }
8898
8963
  exports.Escolha = Escolha;
8899
8964
 
8900
- },{"./declaracao":84}],87:[function(require,module,exports){
8965
+ },{"./declaracao":85}],88:[function(require,module,exports){
8901
8966
  "use strict";
8902
8967
  Object.defineProperty(exports, "__esModule", { value: true });
8903
8968
  exports.EscrevaMesmaLinha = void 0;
@@ -8916,7 +8981,7 @@ class EscrevaMesmaLinha extends declaracao_1.Declaracao {
8916
8981
  }
8917
8982
  exports.EscrevaMesmaLinha = EscrevaMesmaLinha;
8918
8983
 
8919
- },{"./declaracao":84}],88:[function(require,module,exports){
8984
+ },{"./declaracao":85}],89:[function(require,module,exports){
8920
8985
  "use strict";
8921
8986
  Object.defineProperty(exports, "__esModule", { value: true });
8922
8987
  exports.Escreva = void 0;
@@ -8935,7 +9000,7 @@ class Escreva extends declaracao_1.Declaracao {
8935
9000
  }
8936
9001
  exports.Escreva = Escreva;
8937
9002
 
8938
- },{"./declaracao":84}],89:[function(require,module,exports){
9003
+ },{"./declaracao":85}],90:[function(require,module,exports){
8939
9004
  "use strict";
8940
9005
  Object.defineProperty(exports, "__esModule", { value: true });
8941
9006
  exports.Expressao = void 0;
@@ -8954,7 +9019,7 @@ class Expressao extends declaracao_1.Declaracao {
8954
9019
  }
8955
9020
  exports.Expressao = Expressao;
8956
9021
 
8957
- },{"./declaracao":84}],90:[function(require,module,exports){
9022
+ },{"./declaracao":85}],91:[function(require,module,exports){
8958
9023
  "use strict";
8959
9024
  Object.defineProperty(exports, "__esModule", { value: true });
8960
9025
  exports.Falhar = void 0;
@@ -8974,7 +9039,7 @@ class Falhar extends declaracao_1.Declaracao {
8974
9039
  }
8975
9040
  exports.Falhar = Falhar;
8976
9041
 
8977
- },{"./declaracao":84}],91:[function(require,module,exports){
9042
+ },{"./declaracao":85}],92:[function(require,module,exports){
8978
9043
  "use strict";
8979
9044
  Object.defineProperty(exports, "__esModule", { value: true });
8980
9045
  exports.Fazer = void 0;
@@ -8995,7 +9060,7 @@ class Fazer extends declaracao_1.Declaracao {
8995
9060
  }
8996
9061
  exports.Fazer = Fazer;
8997
9062
 
8998
- },{"./declaracao":84}],92:[function(require,module,exports){
9063
+ },{"./declaracao":85}],93:[function(require,module,exports){
8999
9064
  "use strict";
9000
9065
  Object.defineProperty(exports, "__esModule", { value: true });
9001
9066
  exports.FuncaoDeclaracao = void 0;
@@ -9023,19 +9088,21 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
9023
9088
  }
9024
9089
  exports.FuncaoDeclaracao = FuncaoDeclaracao;
9025
9090
 
9026
- },{"../geracao-identificadores":111,"./declaracao":84}],93:[function(require,module,exports){
9091
+ },{"../geracao-identificadores":112,"./declaracao":85}],94:[function(require,module,exports){
9027
9092
  "use strict";
9028
9093
  Object.defineProperty(exports, "__esModule", { value: true });
9029
9094
  exports.Importar = void 0;
9030
9095
  const declaracao_1 = require("./declaracao");
9031
9096
  /**
9032
- * Declaração usada para importação resolvida em tempo de execução.
9097
+ * Declaração usada para segunda forma de importação.
9033
9098
  * Para Delégua, a partir da versão 0.40.0, importações de módulos resolvem
9034
9099
  * no avaliador sintático, já que alguma resolução de tipo é necessária.
9035
9100
  */
9036
9101
  class Importar extends declaracao_1.Declaracao {
9037
9102
  constructor(caminho) {
9038
9103
  super(caminho.linha, caminho.hashArquivo);
9104
+ this.simboloTudo = null;
9105
+ this.elementosImportacao = [];
9039
9106
  this.caminho = caminho;
9040
9107
  }
9041
9108
  async aceitar(visitante) {
@@ -9047,7 +9114,7 @@ class Importar extends declaracao_1.Declaracao {
9047
9114
  }
9048
9115
  exports.Importar = Importar;
9049
9116
 
9050
- },{"./declaracao":84}],94:[function(require,module,exports){
9117
+ },{"./declaracao":85}],95:[function(require,module,exports){
9051
9118
  "use strict";
9052
9119
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
9053
9120
  if (k2 === undefined) k2 = k;
@@ -9094,7 +9161,7 @@ __exportStar(require("./tente"), exports);
9094
9161
  __exportStar(require("./var"), exports);
9095
9162
  __exportStar(require("./var-multiplo"), exports);
9096
9163
 
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){
9164
+ },{"./bloco":78,"./cabecalho-programa":79,"./classe":80,"./comentario":81,"./const":83,"./const-multiplo":82,"./continua":84,"./declaracao":85,"./enquanto":86,"./escolha":87,"./escreva":89,"./escreva-mesma-linha":88,"./expressao":90,"./falhar":91,"./fazer":92,"./funcao":93,"./importar":94,"./inicio-algoritmo":96,"./para":98,"./para-cada":97,"./propriedade-classe":99,"./retorna":100,"./se":101,"./sustar":102,"./tendo-como":103,"./tente":104,"./var":106,"./var-multiplo":105}],96:[function(require,module,exports){
9098
9165
  "use strict";
9099
9166
  Object.defineProperty(exports, "__esModule", { value: true });
9100
9167
  exports.InicioAlgoritmo = void 0;
@@ -9114,7 +9181,7 @@ class InicioAlgoritmo extends declaracao_1.Declaracao {
9114
9181
  }
9115
9182
  exports.InicioAlgoritmo = InicioAlgoritmo;
9116
9183
 
9117
- },{"./declaracao":84}],96:[function(require,module,exports){
9184
+ },{"./declaracao":85}],97:[function(require,module,exports){
9118
9185
  "use strict";
9119
9186
  Object.defineProperty(exports, "__esModule", { value: true });
9120
9187
  exports.ParaCada = void 0;
@@ -9137,7 +9204,7 @@ class ParaCada extends declaracao_1.Declaracao {
9137
9204
  }
9138
9205
  exports.ParaCada = ParaCada;
9139
9206
 
9140
- },{"./declaracao":84}],97:[function(require,module,exports){
9207
+ },{"./declaracao":85}],98:[function(require,module,exports){
9141
9208
  "use strict";
9142
9209
  Object.defineProperty(exports, "__esModule", { value: true });
9143
9210
  exports.Para = void 0;
@@ -9174,7 +9241,7 @@ class Para extends declaracao_1.Declaracao {
9174
9241
  }
9175
9242
  exports.Para = Para;
9176
9243
 
9177
- },{"./declaracao":84}],98:[function(require,module,exports){
9244
+ },{"./declaracao":85}],99:[function(require,module,exports){
9178
9245
  "use strict";
9179
9246
  Object.defineProperty(exports, "__esModule", { value: true });
9180
9247
  exports.PropriedadeClasse = void 0;
@@ -9195,7 +9262,7 @@ class PropriedadeClasse extends declaracao_1.Declaracao {
9195
9262
  }
9196
9263
  exports.PropriedadeClasse = PropriedadeClasse;
9197
9264
 
9198
- },{"./declaracao":84}],99:[function(require,module,exports){
9265
+ },{"./declaracao":85}],100:[function(require,module,exports){
9199
9266
  "use strict";
9200
9267
  Object.defineProperty(exports, "__esModule", { value: true });
9201
9268
  exports.Retorna = void 0;
@@ -9221,7 +9288,7 @@ class Retorna extends declaracao_1.Declaracao {
9221
9288
  }
9222
9289
  exports.Retorna = Retorna;
9223
9290
 
9224
- },{"./declaracao":84}],100:[function(require,module,exports){
9291
+ },{"./declaracao":85}],101:[function(require,module,exports){
9225
9292
  "use strict";
9226
9293
  Object.defineProperty(exports, "__esModule", { value: true });
9227
9294
  exports.Se = void 0;
@@ -9244,7 +9311,7 @@ class Se extends declaracao_1.Declaracao {
9244
9311
  }
9245
9312
  exports.Se = Se;
9246
9313
 
9247
- },{"./declaracao":84}],101:[function(require,module,exports){
9314
+ },{"./declaracao":85}],102:[function(require,module,exports){
9248
9315
  "use strict";
9249
9316
  Object.defineProperty(exports, "__esModule", { value: true });
9250
9317
  exports.Sustar = void 0;
@@ -9262,7 +9329,7 @@ class Sustar extends declaracao_1.Declaracao {
9262
9329
  }
9263
9330
  exports.Sustar = Sustar;
9264
9331
 
9265
- },{"./declaracao":84}],102:[function(require,module,exports){
9332
+ },{"./declaracao":85}],103:[function(require,module,exports){
9266
9333
  "use strict";
9267
9334
  Object.defineProperty(exports, "__esModule", { value: true });
9268
9335
  exports.TendoComo = void 0;
@@ -9289,7 +9356,7 @@ class TendoComo extends declaracao_1.Declaracao {
9289
9356
  }
9290
9357
  exports.TendoComo = TendoComo;
9291
9358
 
9292
- },{"./declaracao":84}],103:[function(require,module,exports){
9359
+ },{"./declaracao":85}],104:[function(require,module,exports){
9293
9360
  "use strict";
9294
9361
  Object.defineProperty(exports, "__esModule", { value: true });
9295
9362
  exports.Tente = void 0;
@@ -9315,7 +9382,7 @@ class Tente extends declaracao_1.Declaracao {
9315
9382
  }
9316
9383
  exports.Tente = Tente;
9317
9384
 
9318
- },{"./declaracao":84}],104:[function(require,module,exports){
9385
+ },{"./declaracao":85}],105:[function(require,module,exports){
9319
9386
  "use strict";
9320
9387
  Object.defineProperty(exports, "__esModule", { value: true });
9321
9388
  exports.VarMultiplo = void 0;
@@ -9341,7 +9408,7 @@ class VarMultiplo extends declaracao_1.Declaracao {
9341
9408
  }
9342
9409
  exports.VarMultiplo = VarMultiplo;
9343
9410
 
9344
- },{"./declaracao":84}],105:[function(require,module,exports){
9411
+ },{"./declaracao":85}],106:[function(require,module,exports){
9345
9412
  "use strict";
9346
9413
  Object.defineProperty(exports, "__esModule", { value: true });
9347
9414
  exports.Var = void 0;
@@ -9373,7 +9440,7 @@ class Var extends declaracao_1.Declaracao {
9373
9440
  }
9374
9441
  exports.Var = Var;
9375
9442
 
9376
- },{"./declaracao":84}],106:[function(require,module,exports){
9443
+ },{"./declaracao":85}],107:[function(require,module,exports){
9377
9444
  "use strict";
9378
9445
  Object.defineProperty(exports, "__esModule", { value: true });
9379
9446
  exports.ErroEmTempoDeExecucao = void 0;
@@ -9388,7 +9455,7 @@ class ErroEmTempoDeExecucao extends Error {
9388
9455
  }
9389
9456
  exports.ErroEmTempoDeExecucao = ErroEmTempoDeExecucao;
9390
9457
 
9391
- },{}],107:[function(require,module,exports){
9458
+ },{}],108:[function(require,module,exports){
9392
9459
  "use strict";
9393
9460
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
9394
9461
  if (k2 === undefined) k2 = k;
@@ -9407,7 +9474,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
9407
9474
  Object.defineProperty(exports, "__esModule", { value: true });
9408
9475
  __exportStar(require("./erro-em-tempo-de-execucao"), exports);
9409
9476
 
9410
- },{"./erro-em-tempo-de-execucao":106}],108:[function(require,module,exports){
9477
+ },{"./erro-em-tempo-de-execucao":107}],109:[function(require,module,exports){
9411
9478
  "use strict";
9412
9479
  var __importDefault = (this && this.__importDefault) || function (mod) {
9413
9480
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -9898,7 +9965,13 @@ class FormatadorDelegua {
9898
9965
  }
9899
9966
  visitarExpressaoLiteral(expressao) {
9900
9967
  if (typeof expressao.valor === 'string') {
9901
- this.codigoFormatado += `'${expressao.valor}'`;
9968
+ const valorStr = expressao.valor
9969
+ .replace(/\\/g, '\\\\')
9970
+ .replace(/\r/g, '\\r')
9971
+ .replace(/\n/g, '\\n')
9972
+ .replace(/\t/g, '\\t')
9973
+ .replace(/'/g, "\\'");
9974
+ this.codigoFormatado += `'${valorStr}'`;
9902
9975
  return;
9903
9976
  }
9904
9977
  if (['logico', 'lógico'].includes(expressao.tipo)) {
@@ -10133,7 +10206,7 @@ class FormatadorDelegua {
10133
10206
  }
10134
10207
  exports.FormatadorDelegua = FormatadorDelegua;
10135
10208
 
10136
- },{"../construtos":50,"../tipos-de-simbolos/delegua":183}],109:[function(require,module,exports){
10209
+ },{"../construtos":51,"../tipos-de-simbolos/delegua":184}],110:[function(require,module,exports){
10137
10210
  "use strict";
10138
10211
  Object.defineProperty(exports, "__esModule", { value: true });
10139
10212
  exports.FormatadorPitugues = void 0;
@@ -10369,7 +10442,7 @@ class FormatadorPitugues {
10369
10442
  }
10370
10443
  exports.FormatadorPitugues = FormatadorPitugues;
10371
10444
 
10372
- },{}],110:[function(require,module,exports){
10445
+ },{}],111:[function(require,module,exports){
10373
10446
  "use strict";
10374
10447
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10375
10448
  if (k2 === undefined) k2 = k;
@@ -10389,7 +10462,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
10389
10462
  __exportStar(require("./formatador-delegua"), exports);
10390
10463
  __exportStar(require("./formatador-pitugues"), exports);
10391
10464
 
10392
- },{"./formatador-delegua":108,"./formatador-pitugues":109}],111:[function(require,module,exports){
10465
+ },{"./formatador-delegua":109,"./formatador-pitugues":110}],112:[function(require,module,exports){
10393
10466
  "use strict";
10394
10467
  Object.defineProperty(exports, "__esModule", { value: true });
10395
10468
  exports.cyrb53 = cyrb53;
@@ -10433,7 +10506,7 @@ function uuidv4() {
10433
10506
  });
10434
10507
  }
10435
10508
 
10436
- },{}],112:[function(require,module,exports){
10509
+ },{}],113:[function(require,module,exports){
10437
10510
  "use strict";
10438
10511
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10439
10512
  if (k2 === undefined) k2 = k;
@@ -10460,7 +10533,7 @@ __exportStar(require("./interpretador"), exports);
10460
10533
  __exportStar(require("./lexador"), exports);
10461
10534
  __exportStar(require("./tradutores"), exports);
10462
10535
 
10463
- },{"./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){
10536
+ },{"./avaliador-sintatico":12,"./construtos":51,"./declaracoes":95,"./formatadores":111,"./geracao-identificadores":112,"./interfaces":121,"./interpretador":153,"./lexador":171,"./tradutores":191}],114:[function(require,module,exports){
10464
10537
  "use strict";
10465
10538
  var __importDefault = (this && this.__importDefault) || function (mod) {
10466
10539
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -10587,7 +10660,7 @@ function tipoInferenciaParaTipoDadosElementar(tipoInferencia) {
10587
10660
  }
10588
10661
  }
10589
10662
 
10590
- },{"./tipos-de-dados/delegua":178,"./tipos-de-dados/primitivos":180,"./tipos-de-simbolos/delegua":183}],114:[function(require,module,exports){
10663
+ },{"./tipos-de-dados/delegua":179,"./tipos-de-dados/primitivos":181,"./tipos-de-simbolos/delegua":184}],115:[function(require,module,exports){
10591
10664
  "use strict";
10592
10665
  Object.defineProperty(exports, "__esModule", { value: true });
10593
10666
  exports.InformacaoElementoSintatico = void 0;
@@ -10606,15 +10679,15 @@ class InformacaoElementoSintatico {
10606
10679
  }
10607
10680
  exports.InformacaoElementoSintatico = InformacaoElementoSintatico;
10608
10681
 
10609
- },{}],115:[function(require,module,exports){
10682
+ },{}],116:[function(require,module,exports){
10610
10683
  "use strict";
10611
10684
  Object.defineProperty(exports, "__esModule", { value: true });
10612
10685
 
10613
- },{}],116:[function(require,module,exports){
10686
+ },{}],117:[function(require,module,exports){
10614
10687
  "use strict";
10615
10688
  Object.defineProperty(exports, "__esModule", { value: true });
10616
10689
 
10617
- },{}],117:[function(require,module,exports){
10690
+ },{}],118:[function(require,module,exports){
10618
10691
  "use strict";
10619
10692
  Object.defineProperty(exports, "__esModule", { value: true });
10620
10693
  exports.DiagnosticoSeveridade = void 0;
@@ -10626,7 +10699,7 @@ var DiagnosticoSeveridade;
10626
10699
  DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
10627
10700
  })(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
10628
10701
 
10629
- },{}],118:[function(require,module,exports){
10702
+ },{}],119:[function(require,module,exports){
10630
10703
  "use strict";
10631
10704
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10632
10705
  if (k2 === undefined) k2 = k;
@@ -10645,11 +10718,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10645
10718
  Object.defineProperty(exports, "__esModule", { value: true });
10646
10719
  __exportStar(require("./diagnostico-analisador-semantico"), exports);
10647
10720
 
10648
- },{"./diagnostico-analisador-semantico":117}],119:[function(require,module,exports){
10721
+ },{"./diagnostico-analisador-semantico":118}],120:[function(require,module,exports){
10649
10722
  "use strict";
10650
10723
  Object.defineProperty(exports, "__esModule", { value: true });
10651
10724
 
10652
- },{}],120:[function(require,module,exports){
10725
+ },{}],121:[function(require,module,exports){
10653
10726
  "use strict";
10654
10727
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10655
10728
  if (k2 === undefined) k2 = k;
@@ -10686,11 +10759,7 @@ __exportStar(require("./construtos"), exports);
10686
10759
  __exportStar(require("./erros"), exports);
10687
10760
  __exportStar(require("./retornos"), exports);
10688
10761
 
10689
- },{"./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){
10690
- "use strict";
10691
- Object.defineProperty(exports, "__esModule", { value: true });
10692
-
10693
- },{}],122:[function(require,module,exports){
10762
+ },{"./avaliador-sintatico-interface":116,"./construtos":117,"./erros":119,"./formatador-comum-interface":120,"./interpretador-com-depuracao-interface":122,"./interpretador-interface":123,"./lexador-interface":124,"./parametro-interface":125,"./pilha-interface":126,"./primitiva-interface":127,"./resolvedor-interface":128,"./resultado-parcial-interpretador-interface":129,"./retornos":130,"./retornos/retorno-execucao-interface":132,"./simbolo-interface":135,"./tradutor-interface":136,"./variavel-interface":137,"./visitante-comum-interface":138,"./visitante-delegua-interface":139}],122:[function(require,module,exports){
10694
10763
  "use strict";
10695
10764
  Object.defineProperty(exports, "__esModule", { value: true });
10696
10765
 
@@ -10720,6 +10789,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
10720
10789
 
10721
10790
  },{}],129:[function(require,module,exports){
10722
10791
  "use strict";
10792
+ Object.defineProperty(exports, "__esModule", { value: true });
10793
+
10794
+ },{}],130:[function(require,module,exports){
10795
+ "use strict";
10723
10796
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10724
10797
  if (k2 === undefined) k2 = k;
10725
10798
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -10740,11 +10813,7 @@ __exportStar(require("./retorno-execucao-interface"), exports);
10740
10813
  __exportStar(require("./retorno-interpretador-interface"), exports);
10741
10814
  __exportStar(require("./retorno-lexador"), exports);
10742
10815
 
10743
- },{"./retorno-avaliador-sintatico":130,"./retorno-execucao-interface":131,"./retorno-interpretador-interface":132,"./retorno-lexador":133}],130:[function(require,module,exports){
10744
- "use strict";
10745
- Object.defineProperty(exports, "__esModule", { value: true });
10746
-
10747
- },{}],131:[function(require,module,exports){
10816
+ },{"./retorno-avaliador-sintatico":131,"./retorno-execucao-interface":132,"./retorno-interpretador-interface":133,"./retorno-lexador":134}],131:[function(require,module,exports){
10748
10817
  "use strict";
10749
10818
  Object.defineProperty(exports, "__esModule", { value: true });
10750
10819
 
@@ -10778,6 +10847,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
10778
10847
 
10779
10848
  },{}],139:[function(require,module,exports){
10780
10849
  "use strict";
10850
+ Object.defineProperty(exports, "__esModule", { value: true });
10851
+
10852
+ },{}],140:[function(require,module,exports){
10853
+ "use strict";
10781
10854
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10782
10855
  if (k2 === undefined) k2 = k;
10783
10856
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -10841,7 +10914,7 @@ function carregarBibliotecasGlobais(pilhaEscoposExecucao) {
10841
10914
  pilhaEscoposExecucao.definirVariavel('tupla', new funcao_padrao_1.FuncaoPadrao(1, bibliotecaGlobal.tupla));
10842
10915
  }
10843
10916
 
10844
- },{"../bibliotecas/biblioteca-global":20,"./estruturas/funcao-padrao":145}],140:[function(require,module,exports){
10917
+ },{"../bibliotecas/biblioteca-global":20,"./estruturas/funcao-padrao":146}],141:[function(require,module,exports){
10845
10918
  "use strict";
10846
10919
  Object.defineProperty(exports, "__esModule", { value: true });
10847
10920
  exports.EspacoMemoria = void 0;
@@ -10866,7 +10939,7 @@ class EspacoMemoria {
10866
10939
  }
10867
10940
  exports.EspacoMemoria = EspacoMemoria;
10868
10941
 
10869
- },{}],141:[function(require,module,exports){
10942
+ },{}],142:[function(require,module,exports){
10870
10943
  "use strict";
10871
10944
  Object.defineProperty(exports, "__esModule", { value: true });
10872
10945
  exports.Chamavel = void 0;
@@ -10880,7 +10953,7 @@ class Chamavel {
10880
10953
  }
10881
10954
  exports.Chamavel = Chamavel;
10882
10955
 
10883
- },{}],142:[function(require,module,exports){
10956
+ },{}],143:[function(require,module,exports){
10884
10957
  "use strict";
10885
10958
  Object.defineProperty(exports, "__esModule", { value: true });
10886
10959
  exports.ClassePadrao = void 0;
@@ -10921,7 +10994,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
10921
10994
  }
10922
10995
  exports.ClassePadrao = ClassePadrao;
10923
10996
 
10924
- },{"./chamavel":141}],143:[function(require,module,exports){
10997
+ },{"./chamavel":142}],144:[function(require,module,exports){
10925
10998
  "use strict";
10926
10999
  Object.defineProperty(exports, "__esModule", { value: true });
10927
11000
  exports.DeleguaFuncao = void 0;
@@ -11066,7 +11139,7 @@ class DeleguaFuncao extends chamavel_1.Chamavel {
11066
11139
  }
11067
11140
  exports.DeleguaFuncao = DeleguaFuncao;
11068
11141
 
11069
- },{"../../declaracoes":94,"../../quebras":177,"../espaco-memoria":140,"./chamavel":141}],144:[function(require,module,exports){
11142
+ },{"../../declaracoes":95,"../../quebras":178,"../espaco-memoria":141,"./chamavel":142}],145:[function(require,module,exports){
11070
11143
  "use strict";
11071
11144
  Object.defineProperty(exports, "__esModule", { value: true });
11072
11145
  exports.DescritorTipoClasse = void 0;
@@ -11147,7 +11220,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
11147
11220
  }
11148
11221
  exports.DescritorTipoClasse = DescritorTipoClasse;
11149
11222
 
11150
- },{"../../excecoes":107,"./chamavel":141,"./objeto-delegua-classe":149}],145:[function(require,module,exports){
11223
+ },{"../../excecoes":108,"./chamavel":142,"./objeto-delegua-classe":150}],146:[function(require,module,exports){
11151
11224
  "use strict";
11152
11225
  Object.defineProperty(exports, "__esModule", { value: true });
11153
11226
  exports.FuncaoPadrao = void 0;
@@ -11184,7 +11257,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
11184
11257
  }
11185
11258
  exports.FuncaoPadrao = FuncaoPadrao;
11186
11259
 
11187
- },{"./chamavel":141}],146:[function(require,module,exports){
11260
+ },{"./chamavel":142}],147:[function(require,module,exports){
11188
11261
  "use strict";
11189
11262
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
11190
11263
  if (k2 === undefined) k2 = k;
@@ -11212,7 +11285,7 @@ __exportStar(require("./objeto-delegua-classe"), exports);
11212
11285
  __exportStar(require("./objeto-padrao"), exports);
11213
11286
  __exportStar(require("./referencia-montao"), exports);
11214
11287
 
11215
- },{"./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){
11288
+ },{"./chamavel":142,"./classe-padrao":143,"./delegua-funcao":144,"./descritor-tipo-classe":145,"./funcao-padrao":146,"./metodo-primitiva":148,"./modulo":149,"./objeto-delegua-classe":150,"./objeto-padrao":151,"./referencia-montao":152}],148:[function(require,module,exports){
11216
11289
  "use strict";
11217
11290
  Object.defineProperty(exports, "__esModule", { value: true });
11218
11291
  exports.MetodoPrimitiva = void 0;
@@ -11255,7 +11328,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
11255
11328
  }
11256
11329
  exports.MetodoPrimitiva = MetodoPrimitiva;
11257
11330
 
11258
- },{"./chamavel":141}],148:[function(require,module,exports){
11331
+ },{"./chamavel":142}],149:[function(require,module,exports){
11259
11332
  "use strict";
11260
11333
  Object.defineProperty(exports, "__esModule", { value: true });
11261
11334
  exports.DeleguaModulo = void 0;
@@ -11281,7 +11354,7 @@ class DeleguaModulo {
11281
11354
  }
11282
11355
  exports.DeleguaModulo = DeleguaModulo;
11283
11356
 
11284
- },{}],149:[function(require,module,exports){
11357
+ },{}],150:[function(require,module,exports){
11285
11358
  "use strict";
11286
11359
  Object.defineProperty(exports, "__esModule", { value: true });
11287
11360
  exports.ObjetoDeleguaClasse = void 0;
@@ -11349,7 +11422,7 @@ class ObjetoDeleguaClasse {
11349
11422
  }
11350
11423
  exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
11351
11424
 
11352
- },{"../../excecoes":107}],150:[function(require,module,exports){
11425
+ },{"../../excecoes":108}],151:[function(require,module,exports){
11353
11426
  "use strict";
11354
11427
  Object.defineProperty(exports, "__esModule", { value: true });
11355
11428
  exports.ObjetoPadrao = void 0;
@@ -11383,7 +11456,7 @@ class ObjetoPadrao {
11383
11456
  }
11384
11457
  exports.ObjetoPadrao = ObjetoPadrao;
11385
11458
 
11386
- },{}],151:[function(require,module,exports){
11459
+ },{}],152:[function(require,module,exports){
11387
11460
  "use strict";
11388
11461
  Object.defineProperty(exports, "__esModule", { value: true });
11389
11462
  exports.ReferenciaMontao = void 0;
@@ -11408,7 +11481,7 @@ class ReferenciaMontao {
11408
11481
  }
11409
11482
  exports.ReferenciaMontao = ReferenciaMontao;
11410
11483
 
11411
- },{}],152:[function(require,module,exports){
11484
+ },{}],153:[function(require,module,exports){
11412
11485
  "use strict";
11413
11486
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
11414
11487
  if (k2 === undefined) k2 = k;
@@ -11428,7 +11501,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
11428
11501
  __exportStar(require("./interpretador"), exports);
11429
11502
  __exportStar(require("./interpretador-base"), exports);
11430
11503
 
11431
- },{"./interpretador":154,"./interpretador-base":153}],153:[function(require,module,exports){
11504
+ },{"./interpretador":155,"./interpretador-base":154}],154:[function(require,module,exports){
11432
11505
  (function (process){(function (){
11433
11506
  "use strict";
11434
11507
  var __importDefault = (this && this.__importDefault) || function (mod) {
@@ -12961,7 +13034,7 @@ class InterpretadorBase {
12961
13034
  exports.InterpretadorBase = InterpretadorBase;
12962
13035
 
12963
13036
  }).call(this)}).call(this,require('_process'))
12964
- },{"../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){
13037
+ },{"../avaliador-sintatico":12,"../bibliotecas/primitivas-dicionario":21,"../construtos":51,"../excecoes":108,"../inferenciador":114,"../lexador":171,"../quebras":178,"../tipos-de-dados/delegua":179,"../tipos-de-dados/primitivos":181,"../tipos-de-simbolos/delegua":184,"./comum":140,"./espaco-memoria":141,"./estruturas":147,"./estruturas/metodo-primitiva":148,"./pilha-escopos-execucao":157,"_process":418,"browser-process-hrtime":364}],155:[function(require,module,exports){
12965
13038
  "use strict";
12966
13039
  var __importDefault = (this && this.__importDefault) || function (mod) {
12967
13040
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -13483,6 +13556,14 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
13483
13556
  }
13484
13557
  return objeto[expressao.simbolo.lexema];
13485
13558
  }
13559
+ // String do JavaScript, ou seja, primitiva de texto.
13560
+ if (objeto.constructor === String) {
13561
+ if (!(expressao.simbolo.lexema in primitivas_texto_1.default)) {
13562
+ throw new excecoes_1.ErroEmTempoDeExecucao(expressao.simbolo, `Método de primitiva '${expressao.simbolo.lexema}' não existe para o tipo texto.`);
13563
+ }
13564
+ const metodoDePrimitivaTexto = primitivas_texto_1.default[expressao.simbolo.lexema].implementacao;
13565
+ return new estruturas_1.MetodoPrimitiva(nomeObjeto, objeto, metodoDePrimitivaTexto);
13566
+ }
13486
13567
  // A partir daqui, presume-se que o objeto é uma das estruturas
13487
13568
  // de Delégua.
13488
13569
  if (objeto instanceof estruturas_1.DeleguaModulo) {
@@ -13741,6 +13822,9 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
13741
13822
  visitarExpressaoFazer(expressao) {
13742
13823
  return this.logicaComumExecucaoFazer(expressao, true);
13743
13824
  }
13825
+ visitarExpressaoImportar(expressao) {
13826
+ throw new Error('Importações não são suportadas neste interpretador.');
13827
+ }
13744
13828
  async visitarExpressaoListaCompreensao(listaCompreensao) {
13745
13829
  const vetorVariavelIteracao = await this.avaliar(listaCompreensao.referenciaVariavelIteracao);
13746
13830
  let valorVetorVariavelIteracao = this.resolverValor(vetorVariavelIteracao);
@@ -13905,7 +13989,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
13905
13989
  }
13906
13990
  exports.Interpretador = Interpretador;
13907
13991
 
13908
- },{"../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){
13992
+ },{"../bibliotecas/primitivas-dicionario":21,"../bibliotecas/primitivas-numero":22,"../bibliotecas/primitivas-texto":23,"../bibliotecas/primitivas-vetor":24,"../construtos":51,"../declaracoes":95,"../excecoes":108,"../inferenciador":114,"../quebras":178,"../tipos-de-dados/delegua":179,"../tipos-de-dados/primitivos":181,"./estruturas":147,"./interpretador-base":154,"./montao":156}],156:[function(require,module,exports){
13909
13993
  "use strict";
13910
13994
  Object.defineProperty(exports, "__esModule", { value: true });
13911
13995
  exports.Montao = void 0;
@@ -13962,7 +14046,7 @@ class Montao {
13962
14046
  }
13963
14047
  exports.Montao = Montao;
13964
14048
 
13965
- },{"../excecoes":107,"../geracao-identificadores":111}],156:[function(require,module,exports){
14049
+ },{"../excecoes":108,"../geracao-identificadores":112}],157:[function(require,module,exports){
13966
14050
  "use strict";
13967
14051
  var __importDefault = (this && this.__importDefault) || function (mod) {
13968
14052
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14250,7 +14334,7 @@ class PilhaEscoposExecucao {
14250
14334
  }
14251
14335
  exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
14252
14336
 
14253
- },{"../excecoes":107,"../inferenciador":113,"../lexador":170,"../tipos-de-dados/delegua":178,"./estruturas":146}],157:[function(require,module,exports){
14337
+ },{"../excecoes":108,"../inferenciador":114,"../lexador":171,"../tipos-de-dados/delegua":179,"./estruturas":147}],158:[function(require,module,exports){
14254
14338
  "use strict";
14255
14339
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
14256
14340
  if (k2 === undefined) k2 = k;
@@ -14274,7 +14358,7 @@ __exportStar(require("./lexador-guarani"), exports);
14274
14358
  __exportStar(require("./lexador-portugol-ipt"), exports);
14275
14359
  __exportStar(require("./lexador-tenda"), exports);
14276
14360
 
14277
- },{"./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){
14361
+ },{"./lexador-calango":159,"./lexador-egua-classico":160,"./lexador-guarani":161,"./lexador-pitugues":162,"./lexador-portugol-ipt":163,"./lexador-tenda":164}],159:[function(require,module,exports){
14278
14362
  "use strict";
14279
14363
  var __importDefault = (this && this.__importDefault) || function (mod) {
14280
14364
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14507,7 +14591,7 @@ class LexadorCalango {
14507
14591
  }
14508
14592
  exports.LexadorCalango = LexadorCalango;
14509
14593
 
14510
- },{"../../tipos-de-simbolos/calango":181,"../simbolo":176,"./palavras-reservadas/calango":164}],159:[function(require,module,exports){
14594
+ },{"../../tipos-de-simbolos/calango":182,"../simbolo":177,"./palavras-reservadas/calango":165}],160:[function(require,module,exports){
14511
14595
  "use strict";
14512
14596
  var __importDefault = (this && this.__importDefault) || function (mod) {
14513
14597
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14797,7 +14881,7 @@ class LexadorEguaClassico {
14797
14881
  }
14798
14882
  exports.LexadorEguaClassico = LexadorEguaClassico;
14799
14883
 
14800
- },{"../../tipos-de-simbolos/egua-classico":184,"../simbolo":176,"./palavras-reservadas/egua-classico":165}],160:[function(require,module,exports){
14884
+ },{"../../tipos-de-simbolos/egua-classico":185,"../simbolo":177,"./palavras-reservadas/egua-classico":166}],161:[function(require,module,exports){
14801
14885
  "use strict";
14802
14886
  var __importDefault = (this && this.__importDefault) || function (mod) {
14803
14887
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14916,7 +15000,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
14916
15000
  }
14917
15001
  exports.LexadorGuarani = LexadorGuarani;
14918
15002
 
14919
- },{"../../tipos-de-simbolos/guarani":185,"../lexador-base":172,"./palavras-reservadas/guarani":166}],161:[function(require,module,exports){
15003
+ },{"../../tipos-de-simbolos/guarani":186,"../lexador-base":173,"./palavras-reservadas/guarani":167}],162:[function(require,module,exports){
14920
15004
  "use strict";
14921
15005
  var __importDefault = (this && this.__importDefault) || function (mod) {
14922
15006
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15334,7 +15418,7 @@ class LexadorPitugues {
15334
15418
  }
15335
15419
  exports.LexadorPitugues = LexadorPitugues;
15336
15420
 
15337
- },{"../../tipos-de-simbolos/pitugues":187,"../simbolo":176,"./palavras-reservadas/pitugues":167,"browser-process-hrtime":363}],162:[function(require,module,exports){
15421
+ },{"../../tipos-de-simbolos/pitugues":188,"../simbolo":177,"./palavras-reservadas/pitugues":168,"browser-process-hrtime":364}],163:[function(require,module,exports){
15338
15422
  "use strict";
15339
15423
  var __importDefault = (this && this.__importDefault) || function (mod) {
15340
15424
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15586,7 +15670,7 @@ class LexadorPortugolIpt {
15586
15670
  }
15587
15671
  exports.LexadorPortugolIpt = LexadorPortugolIpt;
15588
15672
 
15589
- },{"../../tipos-de-simbolos/portugol-ipt":188,"../simbolo":176,"./palavras-reservadas/portugol-ipt":168}],163:[function(require,module,exports){
15673
+ },{"../../tipos-de-simbolos/portugol-ipt":189,"../simbolo":177,"./palavras-reservadas/portugol-ipt":169}],164:[function(require,module,exports){
15590
15674
  "use strict";
15591
15675
  var __importDefault = (this && this.__importDefault) || function (mod) {
15592
15676
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15977,7 +16061,7 @@ class LexadorTenda {
15977
16061
  }
15978
16062
  exports.LexadorTenda = LexadorTenda;
15979
16063
 
15980
- },{"../../tipos-de-simbolos/tenda":189,"../simbolo":176,"./palavras-reservadas/tenda":169,"browser-process-hrtime":363}],164:[function(require,module,exports){
16064
+ },{"../../tipos-de-simbolos/tenda":190,"../simbolo":177,"./palavras-reservadas/tenda":170,"browser-process-hrtime":364}],165:[function(require,module,exports){
15981
16065
  "use strict";
15982
16066
  var __importDefault = (this && this.__importDefault) || function (mod) {
15983
16067
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -15998,7 +16082,7 @@ exports.default = {
15998
16082
  fimSe: calango_1.default.FIM_SE,
15999
16083
  };
16000
16084
 
16001
- },{"../../../tipos-de-simbolos/calango":181}],165:[function(require,module,exports){
16085
+ },{"../../../tipos-de-simbolos/calango":182}],166:[function(require,module,exports){
16002
16086
  "use strict";
16003
16087
  var __importDefault = (this && this.__importDefault) || function (mod) {
16004
16088
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16039,7 +16123,7 @@ exports.palavrasReservadas = {
16039
16123
  verdadeiro: egua_classico_1.default.VERDADEIRO,
16040
16124
  };
16041
16125
 
16042
- },{"../../../tipos-de-simbolos/egua-classico":184}],166:[function(require,module,exports){
16126
+ },{"../../../tipos-de-simbolos/egua-classico":185}],167:[function(require,module,exports){
16043
16127
  "use strict";
16044
16128
  var __importDefault = (this && this.__importDefault) || function (mod) {
16045
16129
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16051,7 +16135,7 @@ exports.palavrasReservadas = {
16051
16135
  hai: guarani_1.default.HAI,
16052
16136
  };
16053
16137
 
16054
- },{"../../../tipos-de-simbolos/guarani":185}],167:[function(require,module,exports){
16138
+ },{"../../../tipos-de-simbolos/guarani":186}],168:[function(require,module,exports){
16055
16139
  "use strict";
16056
16140
  var __importDefault = (this && this.__importDefault) || function (mod) {
16057
16141
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16111,7 +16195,7 @@ exports.palavrasReservadasMicroGramatica = {
16111
16195
  verdadeiro: pitugues_1.default.VERDADEIRO,
16112
16196
  };
16113
16197
 
16114
- },{"../../../tipos-de-simbolos/pitugues":187}],168:[function(require,module,exports){
16198
+ },{"../../../tipos-de-simbolos/pitugues":188}],169:[function(require,module,exports){
16115
16199
  "use strict";
16116
16200
  var __importDefault = (this && this.__importDefault) || function (mod) {
16117
16201
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16133,7 +16217,7 @@ exports.palavrasReservadas = {
16133
16217
  senão: portugol_ipt_1.default.SENAO,
16134
16218
  };
16135
16219
 
16136
- },{"../../../tipos-de-simbolos/portugol-ipt":188}],169:[function(require,module,exports){
16220
+ },{"../../../tipos-de-simbolos/portugol-ipt":189}],170:[function(require,module,exports){
16137
16221
  "use strict";
16138
16222
  var __importDefault = (this && this.__importDefault) || function (mod) {
16139
16223
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16191,7 +16275,7 @@ exports.palavrasReservadas = {
16191
16275
  Texto: tenda_1.default.BIBLIOTECA_GLOBAL,
16192
16276
  };
16193
16277
 
16194
- },{"../../../tipos-de-simbolos/tenda":189}],170:[function(require,module,exports){
16278
+ },{"../../../tipos-de-simbolos/tenda":190}],171:[function(require,module,exports){
16195
16279
  "use strict";
16196
16280
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
16197
16281
  if (k2 === undefined) k2 = k;
@@ -16214,7 +16298,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
16214
16298
  __exportStar(require("./micro-lexador"), exports);
16215
16299
  __exportStar(require("./simbolo"), exports);
16216
16300
 
16217
- },{"./dialetos":157,"./lexador":173,"./lexador-base-linha-unica":171,"./micro-lexador":174,"./simbolo":176}],171:[function(require,module,exports){
16301
+ },{"./dialetos":158,"./lexador":174,"./lexador-base-linha-unica":172,"./micro-lexador":175,"./simbolo":177}],172:[function(require,module,exports){
16218
16302
  "use strict";
16219
16303
  Object.defineProperty(exports, "__esModule", { value: true });
16220
16304
  exports.LexadorBaseLinhaUnica = void 0;
@@ -16298,7 +16382,7 @@ class LexadorBaseLinhaUnica {
16298
16382
  }
16299
16383
  exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
16300
16384
 
16301
- },{"./simbolo":176}],172:[function(require,module,exports){
16385
+ },{"./simbolo":177}],173:[function(require,module,exports){
16302
16386
  "use strict";
16303
16387
  Object.defineProperty(exports, "__esModule", { value: true });
16304
16388
  exports.LexadorBase = void 0;
@@ -16412,7 +16496,7 @@ class LexadorBase {
16412
16496
  }
16413
16497
  exports.LexadorBase = LexadorBase;
16414
16498
 
16415
- },{"./simbolo":176}],173:[function(require,module,exports){
16499
+ },{"./simbolo":177}],174:[function(require,module,exports){
16416
16500
  "use strict";
16417
16501
  var __importDefault = (this && this.__importDefault) || function (mod) {
16418
16502
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -16555,7 +16639,7 @@ class Lexador {
16555
16639
  const caractere = this.simboloAtual();
16556
16640
  if (caractere === delimitador) {
16557
16641
  this.avancar();
16558
- this.adicionarSimbolo(delegua_1.default.TEXTO, textoCompleto);
16642
+ this.adicionarSimbolo(delegua_1.default.TEXTO, textoCompleto.replace(/\\n/g, '\n'));
16559
16643
  return;
16560
16644
  }
16561
16645
  if (caractere === '\0' && this.eUltimaLinha()) {
@@ -16873,7 +16957,7 @@ class Lexador {
16873
16957
  }
16874
16958
  exports.Lexador = Lexador;
16875
16959
 
16876
- },{"../tipos-de-simbolos/delegua":183,"./palavras-reservadas":175,"./simbolo":176,"browser-process-hrtime":363}],174:[function(require,module,exports){
16960
+ },{"../tipos-de-simbolos/delegua":184,"./palavras-reservadas":176,"./simbolo":177,"browser-process-hrtime":364}],175:[function(require,module,exports){
16877
16961
  "use strict";
16878
16962
  var __importDefault = (this && this.__importDefault) || function (mod) {
16879
16963
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -17096,7 +17180,7 @@ class MicroLexador {
17096
17180
  }
17097
17181
  exports.MicroLexador = MicroLexador;
17098
17182
 
17099
- },{"../tipos-de-simbolos/microgramaticas/delegua":186,"./palavras-reservadas":175,"./simbolo":176}],175:[function(require,module,exports){
17183
+ },{"../tipos-de-simbolos/microgramaticas/delegua":187,"./palavras-reservadas":176,"./simbolo":177}],176:[function(require,module,exports){
17100
17184
  "use strict";
17101
17185
  var __importDefault = (this && this.__importDefault) || function (mod) {
17102
17186
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -17147,6 +17231,7 @@ exports.palavrasReservadas = {
17147
17231
  tendo: delegua_1.default.TENDO,
17148
17232
  tente: delegua_1.default.TENTE,
17149
17233
  tipo: delegua_1.default.TIPO,
17234
+ tudo: delegua_1.default.TUDO,
17150
17235
  var: delegua_1.default.VARIAVEL,
17151
17236
  variavel: delegua_1.default.VARIAVEL,
17152
17237
  variável: delegua_1.default.VARIAVEL,
@@ -17161,7 +17246,7 @@ exports.palavrasReservadasMicroGramatica = {
17161
17246
  verdadeiro: delegua_1.default.VERDADEIRO,
17162
17247
  };
17163
17248
 
17164
- },{"../tipos-de-simbolos/delegua":183}],176:[function(require,module,exports){
17249
+ },{"../tipos-de-simbolos/delegua":184}],177:[function(require,module,exports){
17165
17250
  "use strict";
17166
17251
  Object.defineProperty(exports, "__esModule", { value: true });
17167
17252
  exports.Simbolo = void 0;
@@ -17179,7 +17264,7 @@ class Simbolo {
17179
17264
  }
17180
17265
  exports.Simbolo = Simbolo;
17181
17266
 
17182
- },{}],177:[function(require,module,exports){
17267
+ },{}],178:[function(require,module,exports){
17183
17268
  "use strict";
17184
17269
  Object.defineProperty(exports, "__esModule", { value: true });
17185
17270
  exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
@@ -17204,7 +17289,7 @@ class ContinuarQuebra extends Quebra {
17204
17289
  }
17205
17290
  exports.ContinuarQuebra = ContinuarQuebra;
17206
17291
 
17207
- },{}],178:[function(require,module,exports){
17292
+ },{}],179:[function(require,module,exports){
17208
17293
  "use strict";
17209
17294
  Object.defineProperty(exports, "__esModule", { value: true });
17210
17295
  exports.default = {
@@ -17234,7 +17319,7 @@ exports.default = {
17234
17319
  VETOR_TEXTO: 'texto[]',
17235
17320
  };
17236
17321
 
17237
- },{}],179:[function(require,module,exports){
17322
+ },{}],180:[function(require,module,exports){
17238
17323
  "use strict";
17239
17324
  Object.defineProperty(exports, "__esModule", { value: true });
17240
17325
  exports.default = {
@@ -17264,7 +17349,7 @@ exports.default = {
17264
17349
  VETOR_TEXTO: 'texto[]',
17265
17350
  };
17266
17351
 
17267
- },{}],180:[function(require,module,exports){
17352
+ },{}],181:[function(require,module,exports){
17268
17353
  "use strict";
17269
17354
  Object.defineProperty(exports, "__esModule", { value: true });
17270
17355
  exports.default = {
@@ -17283,7 +17368,7 @@ exports.default = {
17283
17368
  TEXTO: 'string',
17284
17369
  };
17285
17370
 
17286
- },{}],181:[function(require,module,exports){
17371
+ },{}],182:[function(require,module,exports){
17287
17372
  "use strict";
17288
17373
  Object.defineProperty(exports, "__esModule", { value: true });
17289
17374
  exports.default = {
@@ -17327,7 +17412,7 @@ exports.default = {
17327
17412
  VIRGULA: 'VIRGULA',
17328
17413
  };
17329
17414
 
17330
- },{}],182:[function(require,module,exports){
17415
+ },{}],183:[function(require,module,exports){
17331
17416
  "use strict";
17332
17417
  Object.defineProperty(exports, "__esModule", { value: true });
17333
17418
  exports.default = {
@@ -17353,7 +17438,7 @@ exports.default = {
17353
17438
  VIRGULA: 'VIRGULA',
17354
17439
  };
17355
17440
 
17356
- },{}],183:[function(require,module,exports){
17441
+ },{}],184:[function(require,module,exports){
17357
17442
  "use strict";
17358
17443
  Object.defineProperty(exports, "__esModule", { value: true });
17359
17444
  exports.default = {
@@ -17444,12 +17529,13 @@ exports.default = {
17444
17529
  TENTE: 'TENTE',
17445
17530
  TEXTO: 'TEXTO',
17446
17531
  TIPO: 'TIPO',
17532
+ TUDO: 'TUDO',
17447
17533
  VARIAVEL: 'VARIAVEL',
17448
17534
  VERDADEIRO: 'VERDADEIRO',
17449
17535
  VIRGULA: 'VIRGULA',
17450
17536
  };
17451
17537
 
17452
- },{}],184:[function(require,module,exports){
17538
+ },{}],185:[function(require,module,exports){
17453
17539
  "use strict";
17454
17540
  Object.defineProperty(exports, "__esModule", { value: true });
17455
17541
  exports.default = {
@@ -17527,7 +17613,7 @@ exports.default = {
17527
17613
  VIRGULA: 'VIRGULA',
17528
17614
  };
17529
17615
 
17530
- },{}],185:[function(require,module,exports){
17616
+ },{}],186:[function(require,module,exports){
17531
17617
  "use strict";
17532
17618
  Object.defineProperty(exports, "__esModule", { value: true });
17533
17619
  exports.default = {
@@ -17544,7 +17630,7 @@ exports.default = {
17544
17630
  VIRGULA: 'VIRGULA',
17545
17631
  };
17546
17632
 
17547
- },{}],186:[function(require,module,exports){
17633
+ },{}],187:[function(require,module,exports){
17548
17634
  "use strict";
17549
17635
  Object.defineProperty(exports, "__esModule", { value: true });
17550
17636
  exports.default = {
@@ -17593,7 +17679,7 @@ exports.default = {
17593
17679
  VIRGULA: 'VIRGULA',
17594
17680
  };
17595
17681
 
17596
- },{}],187:[function(require,module,exports){
17682
+ },{}],188:[function(require,module,exports){
17597
17683
  "use strict";
17598
17684
  Object.defineProperty(exports, "__esModule", { value: true });
17599
17685
  exports.default = {
@@ -17677,7 +17763,7 @@ exports.default = {
17677
17763
  VIRGULA: 'VIRGULA',
17678
17764
  };
17679
17765
 
17680
- },{}],188:[function(require,module,exports){
17766
+ },{}],189:[function(require,module,exports){
17681
17767
  "use strict";
17682
17768
  Object.defineProperty(exports, "__esModule", { value: true });
17683
17769
  exports.default = {
@@ -17716,7 +17802,7 @@ exports.default = {
17716
17802
  VIRGULA: 'VIRGULA',
17717
17803
  };
17718
17804
 
17719
- },{}],189:[function(require,module,exports){
17805
+ },{}],190:[function(require,module,exports){
17720
17806
  "use strict";
17721
17807
  Object.defineProperty(exports, "__esModule", { value: true });
17722
17808
  // Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
@@ -17811,7 +17897,7 @@ exports.default = {
17811
17897
  VIRGULA: 'VIRGULA',
17812
17898
  };
17813
17899
 
17814
- },{}],190:[function(require,module,exports){
17900
+ },{}],191:[function(require,module,exports){
17815
17901
  "use strict";
17816
17902
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
17817
17903
  if (k2 === undefined) k2 = k;
@@ -17838,7 +17924,7 @@ __exportStar(require("./tradutor-reverso-javascript"), exports);
17838
17924
  __exportStar(require("./tradutor-reverso-python"), exports);
17839
17925
  __exportStar(require("./tradutor-reverso-tenda"), exports);
17840
17926
 
17841
- },{"./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){
17927
+ },{"./tradutor-assemblyscript":194,"./tradutor-calango":195,"./tradutor-javascript":196,"./tradutor-mermaidjs":197,"./tradutor-portugol-ipt":198,"./tradutor-python":199,"./tradutor-reverso-javascript":200,"./tradutor-reverso-python":201,"./tradutor-reverso-tenda":202}],192:[function(require,module,exports){
17842
17928
  "use strict";
17843
17929
  // Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
17844
17930
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -19078,7 +19164,7 @@ __decorate([
19078
19164
  Decorators_1.Override
19079
19165
  ], Python3Lexer.prototype, "nextToken", null);
19080
19166
 
19081
- },{"./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){
19167
+ },{"./python3-parser":193,"antlr4ts/CommonToken":212,"antlr4ts/Decorators":216,"antlr4ts/Lexer":224,"antlr4ts/Token":241,"antlr4ts/VocabularyImpl":247,"antlr4ts/atn/ATNDeserializer":253,"antlr4ts/atn/LexerATNSimulator":274,"antlr4ts/misc/Utils":335}],193:[function(require,module,exports){
19082
19168
  "use strict";
19083
19169
  // Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
19084
19170
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -30325,7 +30411,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
30325
30411
  }
30326
30412
  exports.Yield_argContext = Yield_argContext;
30327
30413
 
30328
- },{"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){
30414
+ },{"antlr4ts/FailedPredicateException":220,"antlr4ts/NoViableAltException":228,"antlr4ts/Parser":229,"antlr4ts/ParserRuleContext":232,"antlr4ts/RecognitionException":235,"antlr4ts/Token":241,"antlr4ts/VocabularyImpl":247,"antlr4ts/atn/ATN":249,"antlr4ts/atn/ATNDeserializer":253,"antlr4ts/atn/ParserATNSimulator":290,"antlr4ts/misc/Utils":335}],194:[function(require,module,exports){
30329
30415
  "use strict";
30330
30416
  var __importDefault = (this && this.__importDefault) || function (mod) {
30331
30417
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -30960,7 +31046,7 @@ class TradutorAssemblyScript {
30960
31046
  }
30961
31047
  exports.TradutorAssemblyScript = TradutorAssemblyScript;
30962
31048
 
30963
- },{"../construtos":50,"../declaracoes":94,"../tipos-de-simbolos/delegua":183}],194:[function(require,module,exports){
31049
+ },{"../construtos":51,"../declaracoes":95,"../tipos-de-simbolos/delegua":184}],195:[function(require,module,exports){
30964
31050
  "use strict";
30965
31051
  Object.defineProperty(exports, "__esModule", { value: true });
30966
31052
  exports.TradutorCalango = void 0;
@@ -31022,7 +31108,7 @@ class TradutorCalango {
31022
31108
  }
31023
31109
  exports.TradutorCalango = TradutorCalango;
31024
31110
 
31025
- },{"../avaliador-sintatico/dialetos/avaliador-sintatico-calango":4,"../lexador/dialetos":157}],195:[function(require,module,exports){
31111
+ },{"../avaliador-sintatico/dialetos/avaliador-sintatico-calango":4,"../lexador/dialetos":158}],196:[function(require,module,exports){
31026
31112
  "use strict";
31027
31113
  var __importDefault = (this && this.__importDefault) || function (mod) {
31028
31114
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -31041,13 +31127,13 @@ class TradutorJavaScript {
31041
31127
  constructor() {
31042
31128
  this.indentacao = 0;
31043
31129
  this.dicionarioConstrutos = {
31044
- AcessoIndiceVariavel: this.traduzirConstrutoAcessoIndiceVariavel.bind(this),
31045
- AcessoMetodo: this.traduzirConstrutoAcessoMetodo.bind(this),
31046
- AcessoMetodoOuPropriedade: this.traduzirConstrutoAcessoMetodoOuPropriedade.bind(this),
31047
- AcessoPropriedade: this.traduzirConstrutoAcessoPropriedade.bind(this),
31130
+ AcessoIndiceVariavel: this.traduzirExpressaoAcessoIndiceVariavel.bind(this),
31131
+ AcessoMetodo: this.traduzirExpressaoAcessoMetodo.bind(this),
31132
+ AcessoMetodoOuPropriedade: this.traduzirExpressaoAcessoMetodoOuPropriedade.bind(this),
31133
+ AcessoPropriedade: this.traduzirExpressaoAcessoPropriedade.bind(this),
31048
31134
  Agrupamento: this.traduzirConstrutoAgrupamento.bind(this),
31049
- ArgumentoReferenciaFuncao: this.traduzirConstrutoArgumentoReferenciaFuncao.bind(this),
31050
- AtribuicaoPorIndice: this.traduzirConstrutoAtribuicaoPorIndice.bind(this),
31135
+ ArgumentoReferenciaFuncao: this.traduzirExpressaoArgumentoReferenciaFuncao.bind(this),
31136
+ AtribuicaoPorIndice: this.traduzirExpressaoAtribuicaoPorIndice.bind(this),
31051
31137
  Atribuir: this.traduzirConstrutoAtribuir.bind(this),
31052
31138
  Binario: this.traduzirConstrutoBinario.bind(this),
31053
31139
  ComentarioComoConstruto: this.traduzirDeclaracaoComentario.bind(this),
@@ -31055,11 +31141,12 @@ class TradutorJavaScript {
31055
31141
  DefinirValor: this.traduzirConstrutoDefinirValor.bind(this),
31056
31142
  Dicionario: this.traduzirConstrutoDicionario.bind(this),
31057
31143
  FuncaoConstruto: this.traduzirFuncaoConstruto.bind(this),
31144
+ ImportarComoConstruto: this.traduzirExpressaoImportar.bind(this),
31058
31145
  Isto: () => 'this',
31059
- Leia: this.traduzirConstrutoLeia.bind(this),
31146
+ Leia: this.traduzirExpressaoLeia.bind(this),
31060
31147
  Literal: this.traduzirConstrutoLiteral.bind(this),
31061
- Logico: this.traduzirConstrutoLogico.bind(this),
31062
- ReferenciaFuncao: this.traduzirConstrutoReferenciaFuncao.bind(this),
31148
+ Logico: this.traduzirExpressaoLogica.bind(this),
31149
+ ReferenciaFuncao: this.traduzirExpressaoReferenciaFuncao.bind(this),
31063
31150
  Separador: this.traduzirConstrutoSeparador.bind(this),
31064
31151
  TipoDe: this.traduzirConstrutoTipoDe.bind(this),
31065
31152
  Unario: this.traduzirConstrutoUnario.bind(this),
@@ -31445,7 +31532,7 @@ class TradutorJavaScript {
31445
31532
  traduzirDeclaracaoImportar(declaracaoImportar) {
31446
31533
  return `'importar() não é suportado por este padrão de JavaScript'`;
31447
31534
  }
31448
- traduzirConstrutoLeia(declaracaoLeia) {
31535
+ traduzirExpressaoLeia(declaracaoLeia) {
31449
31536
  return `'leia() não é suportado por este padrão de JavaScript.'`;
31450
31537
  }
31451
31538
  traduzirDeclaracaoParaCada(declaracaoParaCada) {
@@ -31565,12 +31652,7 @@ class TradutorJavaScript {
31565
31652
  resultado += ';';
31566
31653
  else {
31567
31654
  resultado += ' = ';
31568
- if (this.dicionarioConstrutos[declaracaoVar.inicializador.constructor.name]) {
31569
- resultado += this.dicionarioConstrutos[declaracaoVar.inicializador.constructor.name](declaracaoVar.inicializador);
31570
- }
31571
- else {
31572
- resultado += this.dicionarioDeclaracoes[declaracaoVar.inicializador.constructor.name](declaracaoVar.inicializador);
31573
- }
31655
+ resultado += this.dicionarioConstrutos[declaracaoVar.inicializador.constructor.name](declaracaoVar.inicializador);
31574
31656
  if (adicionarPontoEVirgula)
31575
31657
  resultado += ';';
31576
31658
  }
@@ -31580,7 +31662,7 @@ class TradutorJavaScript {
31580
31662
  traduzirFuncaoAnonimaParaLambda(argumento) {
31581
31663
  return '';
31582
31664
  }
31583
- traduzirAcessoMetodoVetor(objeto, nomeMetodo, argumentos) {
31665
+ traduzirExpressaoAcessoMetodoVetor(objeto, nomeMetodo, argumentos) {
31584
31666
  const objetoResolvido = this.dicionarioConstrutos[objeto.constructor.name](objeto);
31585
31667
  const argumentosResolvidos = [];
31586
31668
  for (const argumento of argumentos) {
@@ -31617,7 +31699,7 @@ class TradutorJavaScript {
31617
31699
  return `len(${objetoResolvido})`;
31618
31700
  }
31619
31701
  }
31620
- traduzirConstrutoAcessoMetodo(acessoMetodo, argumentos) {
31702
+ traduzirExpressaoAcessoMetodo(acessoMetodo, argumentos) {
31621
31703
  switch (acessoMetodo.objeto.constructor.name) {
31622
31704
  case 'Isto':
31623
31705
  return `this.${acessoMetodo.nomeMetodo}`;
@@ -31625,20 +31707,20 @@ class TradutorJavaScript {
31625
31707
  let objetoVariavel = acessoMetodo.objeto;
31626
31708
  return this.traduzirFuncaoOuMetodo(acessoMetodo.nomeMetodo, objetoVariavel.simbolo.lexema, argumentos);
31627
31709
  case 'Vetor':
31628
- return this.traduzirAcessoMetodoVetor(acessoMetodo.objeto, acessoMetodo.nomeMetodo, argumentos);
31710
+ return this.traduzirExpressaoAcessoMetodoVetor(acessoMetodo.objeto, acessoMetodo.nomeMetodo, argumentos);
31629
31711
  default:
31630
31712
  const objetoResolvido = this.dicionarioConstrutos[acessoMetodo.objeto.constructor.name](acessoMetodo.objeto);
31631
31713
  return `${objetoResolvido}.${acessoMetodo.nomeMetodo}`;
31632
31714
  }
31633
31715
  }
31634
- traduzirConstrutoAcessoMetodoOuPropriedade(acessoMetodo, argumentos) {
31716
+ traduzirExpressaoAcessoMetodoOuPropriedade(acessoMetodo, argumentos) {
31635
31717
  if (acessoMetodo.objeto instanceof construtos_1.Variavel) {
31636
31718
  let objetoVariavel = acessoMetodo.objeto;
31637
31719
  return `${this.traduzirFuncaoOuMetodo(acessoMetodo.simbolo.lexema, objetoVariavel.simbolo.lexema, argumentos)}`;
31638
31720
  }
31639
31721
  return `this.${acessoMetodo.simbolo.lexema}`;
31640
31722
  }
31641
- traduzirConstrutoAcessoPropriedade(acessoMetodo, argumentos) {
31723
+ traduzirExpressaoAcessoPropriedade(acessoMetodo, argumentos) {
31642
31724
  if (acessoMetodo.objeto instanceof construtos_1.Variavel) {
31643
31725
  let objetoVariavel = acessoMetodo.objeto;
31644
31726
  return `${this.traduzirFuncaoOuMetodo(objetoVariavel.simbolo.lexema, acessoMetodo.nomePropriedade, argumentos)}`;
@@ -31657,14 +31739,14 @@ class TradutorJavaScript {
31657
31739
  resultado += this.logicaComumBlocoEscopo(funcaoConstruto.corpo);
31658
31740
  return resultado;
31659
31741
  }
31660
- traduzirConstrutoLogico(logico) {
31742
+ traduzirExpressaoLogica(logico) {
31661
31743
  let direita = this.dicionarioConstrutos[logico.direita.constructor.name](logico.direita);
31662
31744
  let operador = this.traduzirSimboloOperador(logico.operador);
31663
31745
  let esquerda = this.dicionarioConstrutos[logico.esquerda.constructor.name](logico.esquerda);
31664
31746
  return `${direita} ${operador} ${esquerda}`;
31665
31747
  }
31666
31748
  // TODO: Eliminar o soft cast para `any`.
31667
- traduzirConstrutoAtribuicaoPorIndice(AtribuicaoPorIndice) {
31749
+ traduzirExpressaoAtribuicaoPorIndice(AtribuicaoPorIndice) {
31668
31750
  var _a, _b;
31669
31751
  let resultado = '';
31670
31752
  resultado += AtribuicaoPorIndice.objeto.simbolo.lexema + '[';
@@ -31679,13 +31761,13 @@ class TradutorJavaScript {
31679
31761
  }
31680
31762
  return resultado;
31681
31763
  }
31682
- traduzirConstrutoAcessoIndiceVariavel(acessoIndiceVariavel) {
31764
+ traduzirExpressaoAcessoIndiceVariavel(acessoIndiceVariavel) {
31683
31765
  let resultado = '';
31684
31766
  resultado += this.dicionarioConstrutos[acessoIndiceVariavel.entidadeChamada.constructor.name](acessoIndiceVariavel.entidadeChamada);
31685
31767
  resultado += `[${this.dicionarioConstrutos[acessoIndiceVariavel.indice.constructor.name](acessoIndiceVariavel.indice)}]`;
31686
31768
  return resultado;
31687
31769
  }
31688
- traduzirConstrutoArgumentoReferenciaFuncao(argumentoReferenciaFuncao, argumentos) {
31770
+ traduzirExpressaoArgumentoReferenciaFuncao(argumentoReferenciaFuncao, argumentos) {
31689
31771
  const argumentosResolvidos = [];
31690
31772
  for (const argumento of argumentos) {
31691
31773
  const argumentoResolvido = this.dicionarioConstrutos[argumento.constructor.name](argumento);
@@ -31695,7 +31777,10 @@ class TradutorJavaScript {
31695
31777
  textoArgumentos = textoArgumentos.slice(0, -2);
31696
31778
  return `${argumentoReferenciaFuncao.simboloFuncao.lexema}(${textoArgumentos})`;
31697
31779
  }
31698
- traduzirConstrutoReferenciaFuncao(referenciaFuncao, argumentos) {
31780
+ traduzirExpressaoImportar(_) {
31781
+ return `'importar() não é suportado por este padrão de JavaScript'`;
31782
+ }
31783
+ traduzirExpressaoReferenciaFuncao(referenciaFuncao, argumentos) {
31699
31784
  const argumentosResolvidos = [];
31700
31785
  for (const argumento of argumentos) {
31701
31786
  const argumentoResolvido = this.dicionarioConstrutos[argumento.constructor.name](argumento);
@@ -31766,7 +31851,7 @@ class TradutorJavaScript {
31766
31851
  }
31767
31852
  exports.TradutorJavaScript = TradutorJavaScript;
31768
31853
 
31769
- },{"../construtos":50,"../declaracoes":94,"../tipos-de-simbolos/delegua":183}],196:[function(require,module,exports){
31854
+ },{"../construtos":51,"../declaracoes":95,"../tipos-de-simbolos/delegua":184}],197:[function(require,module,exports){
31770
31855
  "use strict";
31771
31856
  var __importDefault = (this && this.__importDefault) || function (mod) {
31772
31857
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -32220,7 +32305,7 @@ class TradutorMermaidJs {
32220
32305
  }
32221
32306
  exports.TradutorMermaidJs = TradutorMermaidJs;
32222
32307
 
32223
- },{"../tipos-de-simbolos/delegua":183}],197:[function(require,module,exports){
32308
+ },{"../tipos-de-simbolos/delegua":184}],198:[function(require,module,exports){
32224
32309
  "use strict";
32225
32310
  Object.defineProperty(exports, "__esModule", { value: true });
32226
32311
  exports.TradutorPortugolIpt = void 0;
@@ -32282,7 +32367,7 @@ class TradutorPortugolIpt {
32282
32367
  }
32283
32368
  exports.TradutorPortugolIpt = TradutorPortugolIpt;
32284
32369
 
32285
- },{"../avaliador-sintatico/dialetos":9,"../lexador/dialetos":157}],198:[function(require,module,exports){
32370
+ },{"../avaliador-sintatico/dialetos":9,"../lexador/dialetos":158}],199:[function(require,module,exports){
32286
32371
  "use strict";
32287
32372
  var __importDefault = (this && this.__importDefault) || function (mod) {
32288
32373
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -32924,7 +33009,7 @@ class TradutorPython {
32924
33009
  }
32925
33010
  exports.TradutorPython = TradutorPython;
32926
33011
 
32927
- },{"../construtos":50,"../declaracoes":94,"../tipos-de-simbolos/delegua":183}],199:[function(require,module,exports){
33012
+ },{"../construtos":51,"../declaracoes":95,"../tipos-de-simbolos/delegua":184}],200:[function(require,module,exports){
32928
33013
  "use strict";
32929
33014
  Object.defineProperty(exports, "__esModule", { value: true });
32930
33015
  exports.TradutorReversoJavaScript = void 0;
@@ -33321,7 +33406,7 @@ class TradutorReversoJavaScript {
33321
33406
  }
33322
33407
  exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
33323
33408
 
33324
- },{}],200:[function(require,module,exports){
33409
+ },{}],201:[function(require,module,exports){
33325
33410
  "use strict";
33326
33411
  Object.defineProperty(exports, "__esModule", { value: true });
33327
33412
  exports.TradutorReversoPython = void 0;
@@ -33394,7 +33479,7 @@ class TradutorReversoPython {
33394
33479
  }
33395
33480
  exports.TradutorReversoPython = TradutorReversoPython;
33396
33481
 
33397
- },{"./python/python3-lexer":191,"./python/python3-parser":192,"antlr4ts":317,"antlr4ts/tree/ParseTreeWalker":336}],201:[function(require,module,exports){
33482
+ },{"./python/python3-lexer":192,"./python/python3-parser":193,"antlr4ts":318,"antlr4ts/tree/ParseTreeWalker":337}],202:[function(require,module,exports){
33398
33483
  "use strict";
33399
33484
  var __importDefault = (this && this.__importDefault) || function (mod) {
33400
33485
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -33988,7 +34073,7 @@ class TradutorReversoTenda {
33988
34073
  }
33989
34074
  exports.TradutorReversoTenda = TradutorReversoTenda;
33990
34075
 
33991
- },{"../construtos":50,"../tipos-de-simbolos/tenda":189}],202:[function(require,module,exports){
34076
+ },{"../construtos":51,"../tipos-de-simbolos/tenda":190}],203:[function(require,module,exports){
33992
34077
  "use strict";
33993
34078
  /*!
33994
34079
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33996,7 +34081,7 @@ exports.TradutorReversoTenda = TradutorReversoTenda;
33996
34081
  */
33997
34082
  Object.defineProperty(exports, "__esModule", { value: true });
33998
34083
 
33999
- },{}],203:[function(require,module,exports){
34084
+ },{}],204:[function(require,module,exports){
34000
34085
  "use strict";
34001
34086
  /*!
34002
34087
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34004,7 +34089,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
34004
34089
  */
34005
34090
  Object.defineProperty(exports, "__esModule", { value: true });
34006
34091
 
34007
- },{}],204:[function(require,module,exports){
34092
+ },{}],205:[function(require,module,exports){
34008
34093
  "use strict";
34009
34094
  /*!
34010
34095
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34166,7 +34251,7 @@ __decorate([
34166
34251
  ], ANTLRInputStream.prototype, "toString", null);
34167
34252
  exports.ANTLRInputStream = ANTLRInputStream;
34168
34253
 
34169
- },{"./Decorators":215,"./IntStream":221,"assert":358}],205:[function(require,module,exports){
34254
+ },{"./Decorators":216,"./IntStream":222,"assert":359}],206:[function(require,module,exports){
34170
34255
  "use strict";
34171
34256
  /*!
34172
34257
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34249,7 +34334,7 @@ __decorate([
34249
34334
  ], BailErrorStrategy.prototype, "sync", null);
34250
34335
  exports.BailErrorStrategy = BailErrorStrategy;
34251
34336
 
34252
- },{"./Decorators":215,"./DefaultErrorStrategy":216,"./InputMismatchException":220,"./misc/ParseCancellationException":332}],206:[function(require,module,exports){
34337
+ },{"./Decorators":216,"./DefaultErrorStrategy":217,"./InputMismatchException":221,"./misc/ParseCancellationException":333}],207:[function(require,module,exports){
34253
34338
  "use strict";
34254
34339
  /*!
34255
34340
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34739,7 +34824,7 @@ BufferedTokenStream = __decorate([
34739
34824
  ], BufferedTokenStream);
34740
34825
  exports.BufferedTokenStream = BufferedTokenStream;
34741
34826
 
34742
- },{"./CommonToken":211,"./Decorators":215,"./Lexer":223,"./Token":240,"./misc/Interval":327,"assert":358}],207:[function(require,module,exports){
34827
+ },{"./CommonToken":212,"./Decorators":216,"./Lexer":224,"./Token":241,"./misc/Interval":328,"assert":359}],208:[function(require,module,exports){
34743
34828
  "use strict";
34744
34829
  /*!
34745
34830
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34747,7 +34832,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
34747
34832
  */
34748
34833
  Object.defineProperty(exports, "__esModule", { value: true });
34749
34834
 
34750
- },{}],208:[function(require,module,exports){
34835
+ },{}],209:[function(require,module,exports){
34751
34836
  "use strict";
34752
34837
  /*!
34753
34838
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34881,7 +34966,7 @@ var CharStreams;
34881
34966
  // }
34882
34967
  })(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
34883
34968
 
34884
- },{"./CodePointBuffer":209,"./CodePointCharStream":210,"./IntStream":221}],209:[function(require,module,exports){
34969
+ },{"./CodePointBuffer":210,"./CodePointCharStream":211,"./IntStream":222}],210:[function(require,module,exports){
34885
34970
  "use strict";
34886
34971
  /*!
34887
34972
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35116,7 +35201,7 @@ exports.CodePointBuffer = CodePointBuffer;
35116
35201
  CodePointBuffer.Builder = Builder;
35117
35202
  })(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
35118
35203
 
35119
- },{"./misc/Character":323,"assert":358}],210:[function(require,module,exports){
35204
+ },{"./misc/Character":324,"assert":359}],211:[function(require,module,exports){
35120
35205
  "use strict";
35121
35206
  /*!
35122
35207
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35266,7 +35351,7 @@ __decorate([
35266
35351
  ], CodePointCharStream.prototype, "getText", null);
35267
35352
  exports.CodePointCharStream = CodePointCharStream;
35268
35353
 
35269
- },{"./Decorators":215,"./IntStream":221,"./misc/Interval":327,"assert":358}],211:[function(require,module,exports){
35354
+ },{"./Decorators":216,"./IntStream":222,"./misc/Interval":328,"assert":359}],212:[function(require,module,exports){
35270
35355
  "use strict";
35271
35356
  /*!
35272
35357
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35496,7 +35581,7 @@ CommonToken = __decorate([
35496
35581
  ], CommonToken);
35497
35582
  exports.CommonToken = CommonToken;
35498
35583
 
35499
- },{"./Decorators":215,"./Token":240,"./misc/Interval":327}],212:[function(require,module,exports){
35584
+ },{"./Decorators":216,"./Token":241,"./misc/Interval":328}],213:[function(require,module,exports){
35500
35585
  "use strict";
35501
35586
  /*!
35502
35587
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35560,7 +35645,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
35560
35645
  CommonTokenFactory.DEFAULT = new CommonTokenFactory();
35561
35646
  })(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
35562
35647
 
35563
- },{"./CommonToken":211,"./Decorators":215,"./misc/Interval":327}],213:[function(require,module,exports){
35648
+ },{"./CommonToken":212,"./Decorators":216,"./misc/Interval":328}],214:[function(require,module,exports){
35564
35649
  "use strict";
35565
35650
  /*!
35566
35651
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35687,7 +35772,7 @@ CommonTokenStream = __decorate([
35687
35772
  ], CommonTokenStream);
35688
35773
  exports.CommonTokenStream = CommonTokenStream;
35689
35774
 
35690
- },{"./BufferedTokenStream":206,"./Decorators":215,"./Token":240}],214:[function(require,module,exports){
35775
+ },{"./BufferedTokenStream":207,"./Decorators":216,"./Token":241}],215:[function(require,module,exports){
35691
35776
  "use strict";
35692
35777
  /*!
35693
35778
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35721,7 +35806,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
35721
35806
  */
35722
35807
  ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
35723
35808
 
35724
- },{}],215:[function(require,module,exports){
35809
+ },{}],216:[function(require,module,exports){
35725
35810
  "use strict";
35726
35811
  /*!
35727
35812
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35748,7 +35833,7 @@ function SuppressWarnings(options) {
35748
35833
  }
35749
35834
  exports.SuppressWarnings = SuppressWarnings;
35750
35835
 
35751
- },{}],216:[function(require,module,exports){
35836
+ },{}],217:[function(require,module,exports){
35752
35837
  "use strict";
35753
35838
  /*!
35754
35839
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36562,7 +36647,7 @@ __decorate([
36562
36647
  ], DefaultErrorStrategy.prototype, "consumeUntil", null);
36563
36648
  exports.DefaultErrorStrategy = DefaultErrorStrategy;
36564
36649
 
36565
- },{"./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){
36650
+ },{"./Decorators":216,"./FailedPredicateException":220,"./InputMismatchException":221,"./NoViableAltException":228,"./Token":241,"./atn/ATNState":255,"./atn/ATNStateType":256,"./atn/PredictionContext":296,"./misc/IntervalSet":329}],218:[function(require,module,exports){
36566
36651
  "use strict";
36567
36652
  /*!
36568
36653
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36638,7 +36723,7 @@ var Dependents;
36638
36723
  Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
36639
36724
  })(Dependents = exports.Dependents || (exports.Dependents = {}));
36640
36725
 
36641
- },{}],218:[function(require,module,exports){
36726
+ },{}],219:[function(require,module,exports){
36642
36727
  "use strict";
36643
36728
  /*!
36644
36729
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36786,7 +36871,7 @@ __decorate([
36786
36871
  ], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
36787
36872
  exports.DiagnosticErrorListener = DiagnosticErrorListener;
36788
36873
 
36789
- },{"./Decorators":215,"./misc/BitSet":322,"./misc/Interval":327}],219:[function(require,module,exports){
36874
+ },{"./Decorators":216,"./misc/BitSet":323,"./misc/Interval":328}],220:[function(require,module,exports){
36790
36875
  "use strict";
36791
36876
  /*!
36792
36877
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36851,7 +36936,7 @@ FailedPredicateException = __decorate([
36851
36936
  ], FailedPredicateException);
36852
36937
  exports.FailedPredicateException = FailedPredicateException;
36853
36938
 
36854
- },{"./Decorators":215,"./RecognitionException":234,"./atn/PredicateTransition":294}],220:[function(require,module,exports){
36939
+ },{"./Decorators":216,"./RecognitionException":235,"./atn/PredicateTransition":295}],221:[function(require,module,exports){
36855
36940
  "use strict";
36856
36941
  /*!
36857
36942
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36891,7 +36976,7 @@ InputMismatchException = __decorate([
36891
36976
  ], InputMismatchException);
36892
36977
  exports.InputMismatchException = InputMismatchException;
36893
36978
 
36894
- },{"./Decorators":215,"./RecognitionException":234}],221:[function(require,module,exports){
36979
+ },{"./Decorators":216,"./RecognitionException":235}],222:[function(require,module,exports){
36895
36980
  "use strict";
36896
36981
  /*!
36897
36982
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36914,7 +36999,7 @@ var IntStream;
36914
36999
  IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
36915
37000
  })(IntStream = exports.IntStream || (exports.IntStream = {}));
36916
37001
 
36917
- },{}],222:[function(require,module,exports){
37002
+ },{}],223:[function(require,module,exports){
36918
37003
  "use strict";
36919
37004
  /*!
36920
37005
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36961,7 +37046,7 @@ __decorate([
36961
37046
  ], InterpreterRuleContext.prototype, "ruleIndex", null);
36962
37047
  exports.InterpreterRuleContext = InterpreterRuleContext;
36963
37048
 
36964
- },{"./Decorators":215,"./ParserRuleContext":231}],223:[function(require,module,exports){
37049
+ },{"./Decorators":216,"./ParserRuleContext":232}],224:[function(require,module,exports){
36965
37050
  "use strict";
36966
37051
  /*!
36967
37052
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37297,7 +37382,7 @@ __decorate([
37297
37382
  ], Lexer.prototype, "charPositionInLine", null);
37298
37383
  exports.Lexer = Lexer;
37299
37384
 
37300
- },{"./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){
37385
+ },{"./CommonTokenFactory":213,"./Decorators":216,"./IntStream":222,"./LexerNoViableAltException":226,"./Recognizer":236,"./Token":241,"./atn/LexerATNSimulator":274,"./misc/IntegerStack":327,"./misc/Interval":328}],225:[function(require,module,exports){
37301
37386
  "use strict";
37302
37387
  /*!
37303
37388
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37377,7 +37462,7 @@ LexerInterpreter = __decorate([
37377
37462
  ], LexerInterpreter);
37378
37463
  exports.LexerInterpreter = LexerInterpreter;
37379
37464
 
37380
- },{"./Decorators":215,"./Lexer":223,"./atn/LexerATNSimulator":273}],225:[function(require,module,exports){
37465
+ },{"./Decorators":216,"./Lexer":224,"./atn/LexerATNSimulator":274}],226:[function(require,module,exports){
37381
37466
  "use strict";
37382
37467
  /*!
37383
37468
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37434,7 +37519,7 @@ LexerNoViableAltException = __decorate([
37434
37519
  ], LexerNoViableAltException);
37435
37520
  exports.LexerNoViableAltException = LexerNoViableAltException;
37436
37521
 
37437
- },{"./Decorators":215,"./RecognitionException":234,"./misc/Interval":327,"./misc/Utils":334}],226:[function(require,module,exports){
37522
+ },{"./Decorators":216,"./RecognitionException":235,"./misc/Interval":328,"./misc/Utils":335}],227:[function(require,module,exports){
37438
37523
  "use strict";
37439
37524
  /*!
37440
37525
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37644,7 +37729,7 @@ ListTokenSource = __decorate([
37644
37729
  ], ListTokenSource);
37645
37730
  exports.ListTokenSource = ListTokenSource;
37646
37731
 
37647
- },{"./CommonTokenFactory":212,"./Decorators":215,"./Token":240}],227:[function(require,module,exports){
37732
+ },{"./CommonTokenFactory":213,"./Decorators":216,"./Token":241}],228:[function(require,module,exports){
37648
37733
  "use strict";
37649
37734
  /*!
37650
37735
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37699,7 +37784,7 @@ __decorate([
37699
37784
  ], NoViableAltException.prototype, "_startToken", void 0);
37700
37785
  exports.NoViableAltException = NoViableAltException;
37701
37786
 
37702
- },{"./Decorators":215,"./Parser":228,"./RecognitionException":234}],228:[function(require,module,exports){
37787
+ },{"./Decorators":216,"./Parser":229,"./RecognitionException":235}],229:[function(require,module,exports){
37703
37788
  (function (process){(function (){
37704
37789
  "use strict";
37705
37790
  /*!
@@ -38545,7 +38630,7 @@ __decorate([
38545
38630
  exports.Parser = Parser;
38546
38631
 
38547
38632
  }).call(this)}).call(this,require('_process'))
38548
- },{"./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){
38633
+ },{"./Decorators":216,"./DefaultErrorStrategy":217,"./Lexer":224,"./ProxyParserErrorListener":234,"./Recognizer":236,"./Token":241,"./atn/ATNDeserializationOptions":252,"./atn/ATNDeserializer":253,"./atn/ParseInfo":289,"./atn/ParserATNSimulator":290,"./atn/ProfilingATNSimulator":299,"./misc/IntegerStack":327,"./misc/Utils":335,"./tree/ErrorNode":336,"./tree/TerminalNode":339,"./tree/pattern/ParseTreePatternMatcher":344,"_process":418}],230:[function(require,module,exports){
38549
38634
  "use strict";
38550
38635
  /*!
38551
38636
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38553,7 +38638,7 @@ exports.Parser = Parser;
38553
38638
  */
38554
38639
  Object.defineProperty(exports, "__esModule", { value: true });
38555
38640
 
38556
- },{}],230:[function(require,module,exports){
38641
+ },{}],231:[function(require,module,exports){
38557
38642
  "use strict";
38558
38643
  /*!
38559
38644
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38961,7 +39046,7 @@ ParserInterpreter = __decorate([
38961
39046
  ], ParserInterpreter);
38962
39047
  exports.ParserInterpreter = ParserInterpreter;
38963
39048
 
38964
- },{"./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){
39049
+ },{"./Decorators":216,"./FailedPredicateException":220,"./InputMismatchException":221,"./InterpreterRuleContext":223,"./Parser":229,"./RecognitionException":235,"./Token":241,"./atn/ATNState":255,"./atn/ATNStateType":256,"./atn/LoopEndState":286,"./atn/ParserATNSimulator":290,"./atn/StarLoopEntryState":308,"./misc/BitSet":323}],232:[function(require,module,exports){
38965
39050
  "use strict";
38966
39051
  /*!
38967
39052
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39262,7 +39347,7 @@ __decorate([
39262
39347
  ], ParserRuleContext.prototype, "sourceInterval", null);
39263
39348
  exports.ParserRuleContext = ParserRuleContext;
39264
39349
 
39265
- },{"./Decorators":215,"./RuleContext":236,"./misc/Interval":327,"./tree/ErrorNode":335,"./tree/TerminalNode":338}],232:[function(require,module,exports){
39350
+ },{"./Decorators":216,"./RuleContext":237,"./misc/Interval":328,"./tree/ErrorNode":336,"./tree/TerminalNode":339}],233:[function(require,module,exports){
39266
39351
  "use strict";
39267
39352
  /*!
39268
39353
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39312,7 +39397,7 @@ __decorate([
39312
39397
  ], ProxyErrorListener.prototype, "syntaxError", null);
39313
39398
  exports.ProxyErrorListener = ProxyErrorListener;
39314
39399
 
39315
- },{"./Decorators":215}],233:[function(require,module,exports){
39400
+ },{"./Decorators":216}],234:[function(require,module,exports){
39316
39401
  "use strict";
39317
39402
  /*!
39318
39403
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39371,7 +39456,7 @@ __decorate([
39371
39456
  ], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
39372
39457
  exports.ProxyParserErrorListener = ProxyParserErrorListener;
39373
39458
 
39374
- },{"./Decorators":215,"./ProxyErrorListener":232}],234:[function(require,module,exports){
39459
+ },{"./Decorators":216,"./ProxyErrorListener":233}],235:[function(require,module,exports){
39375
39460
  "use strict";
39376
39461
  /*!
39377
39462
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39476,7 +39561,7 @@ class RecognitionException extends Error {
39476
39561
  }
39477
39562
  exports.RecognitionException = RecognitionException;
39478
39563
 
39479
- },{}],235:[function(require,module,exports){
39564
+ },{}],236:[function(require,module,exports){
39480
39565
  "use strict";
39481
39566
  /*!
39482
39567
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39695,7 +39780,7 @@ __decorate([
39695
39780
  ], Recognizer.prototype, "getErrorListeners", null);
39696
39781
  exports.Recognizer = Recognizer;
39697
39782
 
39698
- },{"./ConsoleErrorListener":214,"./Decorators":215,"./ProxyErrorListener":232,"./Token":240,"./misc/Utils":334}],236:[function(require,module,exports){
39783
+ },{"./ConsoleErrorListener":215,"./Decorators":216,"./ProxyErrorListener":233,"./Token":241,"./misc/Utils":335}],237:[function(require,module,exports){
39699
39784
  "use strict";
39700
39785
  /*!
39701
39786
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39912,7 +39997,7 @@ __decorate([
39912
39997
  ], RuleContext.prototype, "toStringTree", null);
39913
39998
  exports.RuleContext = RuleContext;
39914
39999
 
39915
- },{"./Decorators":215,"./ParserRuleContext":231,"./Recognizer":235,"./atn/ATN":248,"./misc/Interval":327,"./tree/RuleNode":337,"./tree/Trees":339}],237:[function(require,module,exports){
40000
+ },{"./Decorators":216,"./ParserRuleContext":232,"./Recognizer":236,"./atn/ATN":249,"./misc/Interval":328,"./tree/RuleNode":338,"./tree/Trees":340}],238:[function(require,module,exports){
39916
40001
  "use strict";
39917
40002
  /*!
39918
40003
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39963,7 +40048,7 @@ __decorate([
39963
40048
  ], RuleContextWithAltNum.prototype, "altNumber", null);
39964
40049
  exports.RuleContextWithAltNum = RuleContextWithAltNum;
39965
40050
 
39966
- },{"./Decorators":215,"./ParserRuleContext":231,"./atn/ATN":248}],238:[function(require,module,exports){
40051
+ },{"./Decorators":216,"./ParserRuleContext":232,"./atn/ATN":249}],239:[function(require,module,exports){
39967
40052
  "use strict";
39968
40053
  /*!
39969
40054
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39986,7 +40071,7 @@ function RuleDependency(dependency) {
39986
40071
  }
39987
40072
  exports.RuleDependency = RuleDependency;
39988
40073
 
39989
- },{}],239:[function(require,module,exports){
40074
+ },{}],240:[function(require,module,exports){
39990
40075
  "use strict";
39991
40076
  /*!
39992
40077
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40005,7 +40090,7 @@ function RuleVersion(version) {
40005
40090
  }
40006
40091
  exports.RuleVersion = RuleVersion;
40007
40092
 
40008
- },{}],240:[function(require,module,exports){
40093
+ },{}],241:[function(require,module,exports){
40009
40094
  "use strict";
40010
40095
  /*!
40011
40096
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40045,7 +40130,7 @@ var Token;
40045
40130
  Token.MIN_USER_CHANNEL_VALUE = 2;
40046
40131
  })(Token = exports.Token || (exports.Token = {}));
40047
40132
 
40048
- },{"./IntStream":221}],241:[function(require,module,exports){
40133
+ },{"./IntStream":222}],242:[function(require,module,exports){
40049
40134
  "use strict";
40050
40135
  /*!
40051
40136
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40053,7 +40138,7 @@ var Token;
40053
40138
  */
40054
40139
  Object.defineProperty(exports, "__esModule", { value: true });
40055
40140
 
40056
- },{}],242:[function(require,module,exports){
40141
+ },{}],243:[function(require,module,exports){
40057
40142
  "use strict";
40058
40143
  /*!
40059
40144
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40061,7 +40146,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
40061
40146
  */
40062
40147
  Object.defineProperty(exports, "__esModule", { value: true });
40063
40148
 
40064
- },{}],243:[function(require,module,exports){
40149
+ },{}],244:[function(require,module,exports){
40065
40150
  "use strict";
40066
40151
  /*!
40067
40152
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40069,7 +40154,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
40069
40154
  */
40070
40155
  Object.defineProperty(exports, "__esModule", { value: true });
40071
40156
 
40072
- },{}],244:[function(require,module,exports){
40157
+ },{}],245:[function(require,module,exports){
40073
40158
  "use strict";
40074
40159
  /*!
40075
40160
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40577,7 +40662,7 @@ __decorate([
40577
40662
  Decorators_1.Override
40578
40663
  ], ReplaceOp.prototype, "toString", null);
40579
40664
 
40580
- },{"./Decorators":215,"./Token":240,"./misc/Interval":327}],245:[function(require,module,exports){
40665
+ },{"./Decorators":216,"./Token":241,"./misc/Interval":328}],246:[function(require,module,exports){
40581
40666
  "use strict";
40582
40667
  /*!
40583
40668
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40585,7 +40670,7 @@ __decorate([
40585
40670
  */
40586
40671
  Object.defineProperty(exports, "__esModule", { value: true });
40587
40672
 
40588
- },{}],246:[function(require,module,exports){
40673
+ },{}],247:[function(require,module,exports){
40589
40674
  "use strict";
40590
40675
  /*!
40591
40676
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40705,7 +40790,7 @@ __decorate([
40705
40790
  ], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
40706
40791
  exports.VocabularyImpl = VocabularyImpl;
40707
40792
 
40708
- },{"./Decorators":215,"./Token":240}],247:[function(require,module,exports){
40793
+ },{"./Decorators":216,"./Token":241}],248:[function(require,module,exports){
40709
40794
  "use strict";
40710
40795
  /*!
40711
40796
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40713,7 +40798,7 @@ exports.VocabularyImpl = VocabularyImpl;
40713
40798
  */
40714
40799
  Object.defineProperty(exports, "__esModule", { value: true });
40715
40800
 
40716
- },{}],248:[function(require,module,exports){
40801
+ },{}],249:[function(require,module,exports){
40717
40802
  "use strict";
40718
40803
  /*!
40719
40804
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40935,7 +41020,7 @@ exports.ATN = ATN;
40935
41020
  })(ATN = exports.ATN || (exports.ATN = {}));
40936
41021
  exports.ATN = ATN;
40937
41022
 
40938
- },{"../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){
41023
+ },{"../Decorators":216,"../Token":241,"../dfa/DFA":314,"../misc/Array2DHashMap":319,"../misc/IntervalSet":329,"../misc/ObjectEqualityComparator":332,"./InvalidState":272,"./LL1Analyzer":273,"./PredictionContext":296,"assert":359}],250:[function(require,module,exports){
40939
41024
  "use strict";
40940
41025
  /*!
40941
41026
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41460,7 +41545,7 @@ ActionSemanticContextATNConfig = __decorate([
41460
41545
  __param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
41461
41546
  ], ActionSemanticContextATNConfig);
41462
41547
 
41463
- },{"../Decorators":215,"../misc/Array2DHashMap":318,"../misc/MurmurHash":330,"../misc/ObjectEqualityComparator":331,"./DecisionState":268,"./PredictionContext":295,"./SemanticContext":303,"assert":358}],250:[function(require,module,exports){
41548
+ },{"../Decorators":216,"../misc/Array2DHashMap":319,"../misc/MurmurHash":331,"../misc/ObjectEqualityComparator":332,"./DecisionState":269,"./PredictionContext":296,"./SemanticContext":304,"assert":359}],251:[function(require,module,exports){
41464
41549
  "use strict";
41465
41550
  /*!
41466
41551
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41907,7 +41992,7 @@ __decorate([
41907
41992
  ], ATNConfigSet.prototype, "hashCode", null);
41908
41993
  exports.ATNConfigSet = ATNConfigSet;
41909
41994
 
41910
- },{"../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){
41995
+ },{"../Decorators":216,"../misc/Array2DHashMap":319,"../misc/Array2DHashSet":320,"../misc/ArrayEqualityComparator":321,"../misc/BitSet":323,"../misc/ObjectEqualityComparator":332,"../misc/Utils":335,"./ATN":249,"./ATNConfig":250,"./PredictionContext":296,"./PredictionContextCache":297,"./SemanticContext":304,"assert":359}],252:[function(require,module,exports){
41911
41996
  "use strict";
41912
41997
  /*!
41913
41998
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41986,7 +42071,7 @@ __decorate([
41986
42071
  ], ATNDeserializationOptions, "defaultOptions", null);
41987
42072
  exports.ATNDeserializationOptions = ATNDeserializationOptions;
41988
42073
 
41989
- },{"../Decorators":215}],252:[function(require,module,exports){
42074
+ },{"../Decorators":216}],253:[function(require,module,exports){
41990
42075
  "use strict";
41991
42076
  /*!
41992
42077
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43073,7 +43158,7 @@ __decorate([
43073
43158
  ], ATNDeserializer.prototype, "edgeFactory", null);
43074
43159
  exports.ATNDeserializer = ATNDeserializer;
43075
43160
 
43076
- },{"../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){
43161
+ },{"../Decorators":216,"../Token":241,"../dfa/DFA":314,"../misc/Array2DHashSet":320,"../misc/BitSet":323,"../misc/IntervalSet":329,"../misc/UUID":334,"./ATN":249,"./ATNDeserializationOptions":252,"./ATNStateType":256,"./ActionTransition":258,"./AtomTransition":260,"./BasicBlockStartState":261,"./BasicState":262,"./BlockEndState":263,"./BlockStartState":264,"./DecisionState":269,"./EpsilonTransition":270,"./InvalidState":272,"./LexerChannelAction":276,"./LexerCustomAction":277,"./LexerModeAction":279,"./LexerMoreAction":280,"./LexerPopModeAction":281,"./LexerPushModeAction":282,"./LexerSkipAction":283,"./LexerTypeAction":284,"./LoopEndState":286,"./NotSetTransition":287,"./ParserATNSimulator":290,"./PlusBlockStartState":291,"./PlusLoopbackState":292,"./PrecedencePredicateTransition":293,"./PredicateTransition":295,"./RangeTransition":300,"./RuleStartState":301,"./RuleStopState":302,"./RuleTransition":303,"./SetTransition":305,"./StarBlockStartState":307,"./StarLoopEntryState":308,"./StarLoopbackState":309,"./TokensStartState":310,"./WildcardTransition":312}],254:[function(require,module,exports){
43077
43162
  "use strict";
43078
43163
  /*!
43079
43164
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43137,7 +43222,7 @@ exports.ATNSimulator = ATNSimulator;
43137
43222
  })(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
43138
43223
  exports.ATNSimulator = ATNSimulator;
43139
43224
 
43140
- },{"../Decorators":215,"../dfa/DFAState":315,"./ATNConfigSet":250,"./PredictionContext":295}],254:[function(require,module,exports){
43225
+ },{"../Decorators":216,"../dfa/DFAState":316,"./ATNConfigSet":251,"./PredictionContext":296}],255:[function(require,module,exports){
43141
43226
  "use strict";
43142
43227
  /*!
43143
43228
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43324,7 +43409,7 @@ exports.ATNState = ATNState;
43324
43409
  ATNState.INVALID_STATE_NUMBER = -1;
43325
43410
  })(ATNState = exports.ATNState || (exports.ATNState = {}));
43326
43411
 
43327
- },{"../Decorators":215}],255:[function(require,module,exports){
43412
+ },{"../Decorators":216}],256:[function(require,module,exports){
43328
43413
  "use strict";
43329
43414
  /*!
43330
43415
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43350,7 +43435,7 @@ var ATNStateType;
43350
43435
  ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
43351
43436
  })(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
43352
43437
 
43353
- },{}],256:[function(require,module,exports){
43438
+ },{}],257:[function(require,module,exports){
43354
43439
  "use strict";
43355
43440
  /*!
43356
43441
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43370,7 +43455,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
43370
43455
  }
43371
43456
  exports.AbstractPredicateTransition = AbstractPredicateTransition;
43372
43457
 
43373
- },{"./Transition":310}],257:[function(require,module,exports){
43458
+ },{"./Transition":311}],258:[function(require,module,exports){
43374
43459
  "use strict";
43375
43460
  /*!
43376
43461
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43426,7 +43511,7 @@ ActionTransition = __decorate([
43426
43511
  ], ActionTransition);
43427
43512
  exports.ActionTransition = ActionTransition;
43428
43513
 
43429
- },{"../Decorators":215,"./Transition":310}],258:[function(require,module,exports){
43514
+ },{"../Decorators":216,"./Transition":311}],259:[function(require,module,exports){
43430
43515
  "use strict";
43431
43516
  /*!
43432
43517
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43513,7 +43598,7 @@ AmbiguityInfo = __decorate([
43513
43598
  ], AmbiguityInfo);
43514
43599
  exports.AmbiguityInfo = AmbiguityInfo;
43515
43600
 
43516
- },{"../Decorators":215,"./DecisionEventInfo":266}],259:[function(require,module,exports){
43601
+ },{"../Decorators":216,"./DecisionEventInfo":267}],260:[function(require,module,exports){
43517
43602
  "use strict";
43518
43603
  /*!
43519
43604
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43571,7 +43656,7 @@ AtomTransition = __decorate([
43571
43656
  ], AtomTransition);
43572
43657
  exports.AtomTransition = AtomTransition;
43573
43658
 
43574
- },{"../Decorators":215,"../misc/IntervalSet":328,"./Transition":310}],260:[function(require,module,exports){
43659
+ },{"../Decorators":216,"../misc/IntervalSet":329,"./Transition":311}],261:[function(require,module,exports){
43575
43660
  "use strict";
43576
43661
  /*!
43577
43662
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43603,7 +43688,7 @@ __decorate([
43603
43688
  ], BasicBlockStartState.prototype, "stateType", null);
43604
43689
  exports.BasicBlockStartState = BasicBlockStartState;
43605
43690
 
43606
- },{"../Decorators":215,"./ATNStateType":255,"./BlockStartState":263}],261:[function(require,module,exports){
43691
+ },{"../Decorators":216,"./ATNStateType":256,"./BlockStartState":264}],262:[function(require,module,exports){
43607
43692
  "use strict";
43608
43693
  /*!
43609
43694
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43635,7 +43720,7 @@ __decorate([
43635
43720
  ], BasicState.prototype, "stateType", null);
43636
43721
  exports.BasicState = BasicState;
43637
43722
 
43638
- },{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],262:[function(require,module,exports){
43723
+ },{"../Decorators":216,"./ATNState":255,"./ATNStateType":256}],263:[function(require,module,exports){
43639
43724
  "use strict";
43640
43725
  /*!
43641
43726
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43664,7 +43749,7 @@ __decorate([
43664
43749
  ], BlockEndState.prototype, "stateType", null);
43665
43750
  exports.BlockEndState = BlockEndState;
43666
43751
 
43667
- },{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],263:[function(require,module,exports){
43752
+ },{"../Decorators":216,"./ATNState":255,"./ATNStateType":256}],264:[function(require,module,exports){
43668
43753
  "use strict";
43669
43754
  /*!
43670
43755
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43678,7 +43763,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
43678
43763
  }
43679
43764
  exports.BlockStartState = BlockStartState;
43680
43765
 
43681
- },{"./DecisionState":268}],264:[function(require,module,exports){
43766
+ },{"./DecisionState":269}],265:[function(require,module,exports){
43682
43767
  "use strict";
43683
43768
  /*!
43684
43769
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43748,7 +43833,7 @@ __decorate([
43748
43833
  ], ConflictInfo.prototype, "hashCode", null);
43749
43834
  exports.ConflictInfo = ConflictInfo;
43750
43835
 
43751
- },{"../Decorators":215,"../misc/Utils":334}],265:[function(require,module,exports){
43836
+ },{"../Decorators":216,"../misc/Utils":335}],266:[function(require,module,exports){
43752
43837
  "use strict";
43753
43838
  /*!
43754
43839
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43808,7 +43893,7 @@ ContextSensitivityInfo = __decorate([
43808
43893
  ], ContextSensitivityInfo);
43809
43894
  exports.ContextSensitivityInfo = ContextSensitivityInfo;
43810
43895
 
43811
- },{"../Decorators":215,"./DecisionEventInfo":266}],266:[function(require,module,exports){
43896
+ },{"../Decorators":216,"./DecisionEventInfo":267}],267:[function(require,module,exports){
43812
43897
  "use strict";
43813
43898
  /*!
43814
43899
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43860,7 +43945,7 @@ DecisionEventInfo = __decorate([
43860
43945
  ], DecisionEventInfo);
43861
43946
  exports.DecisionEventInfo = DecisionEventInfo;
43862
43947
 
43863
- },{"../Decorators":215}],267:[function(require,module,exports){
43948
+ },{"../Decorators":216}],268:[function(require,module,exports){
43864
43949
  "use strict";
43865
43950
  /*!
43866
43951
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44073,7 +44158,7 @@ __decorate([
44073
44158
  ], DecisionInfo.prototype, "toString", null);
44074
44159
  exports.DecisionInfo = DecisionInfo;
44075
44160
 
44076
- },{"../Decorators":215}],268:[function(require,module,exports){
44161
+ },{"../Decorators":216}],269:[function(require,module,exports){
44077
44162
  "use strict";
44078
44163
  /*!
44079
44164
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44093,7 +44178,7 @@ class DecisionState extends ATNState_1.ATNState {
44093
44178
  }
44094
44179
  exports.DecisionState = DecisionState;
44095
44180
 
44096
- },{"./ATNState":254}],269:[function(require,module,exports){
44181
+ },{"./ATNState":255}],270:[function(require,module,exports){
44097
44182
  "use strict";
44098
44183
  /*!
44099
44184
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44159,7 +44244,7 @@ EpsilonTransition = __decorate([
44159
44244
  ], EpsilonTransition);
44160
44245
  exports.EpsilonTransition = EpsilonTransition;
44161
44246
 
44162
- },{"../Decorators":215,"./Transition":310}],270:[function(require,module,exports){
44247
+ },{"../Decorators":216,"./Transition":311}],271:[function(require,module,exports){
44163
44248
  "use strict";
44164
44249
  /*!
44165
44250
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44212,7 +44297,7 @@ ErrorInfo = __decorate([
44212
44297
  ], ErrorInfo);
44213
44298
  exports.ErrorInfo = ErrorInfo;
44214
44299
 
44215
- },{"../Decorators":215,"./DecisionEventInfo":266}],271:[function(require,module,exports){
44300
+ },{"../Decorators":216,"./DecisionEventInfo":267}],272:[function(require,module,exports){
44216
44301
  "use strict";
44217
44302
  /*!
44218
44303
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44243,7 +44328,7 @@ __decorate([
44243
44328
  ], InvalidState.prototype, "stateType", null);
44244
44329
  exports.InvalidState = InvalidState;
44245
44330
 
44246
- },{"../Decorators":215,"./ATNStateType":255,"./BasicState":261}],272:[function(require,module,exports){
44331
+ },{"../Decorators":216,"./ATNStateType":256,"./BasicState":262}],273:[function(require,module,exports){
44247
44332
  "use strict";
44248
44333
  /*!
44249
44334
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -44465,7 +44550,7 @@ LL1Analyzer = __decorate([
44465
44550
  ], LL1Analyzer);
44466
44551
  exports.LL1Analyzer = LL1Analyzer;
44467
44552
 
44468
- },{"../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){
44553
+ },{"../Decorators":216,"../Token":241,"../misc/Array2DHashSet":320,"../misc/BitSet":323,"../misc/IntervalSet":329,"../misc/ObjectEqualityComparator":332,"./ATNConfig":250,"./AbstractPredicateTransition":257,"./NotSetTransition":287,"./PredictionContext":296,"./RuleStopState":302,"./RuleTransition":303,"./WildcardTransition":312}],274:[function(require,module,exports){
44469
44554
  "use strict";
44470
44555
  /*!
44471
44556
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45182,7 +45267,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
45182
45267
  })(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
45183
45268
  exports.LexerATNSimulator = LexerATNSimulator;
45184
45269
 
45185
- },{"../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){
45270
+ },{"../Decorators":216,"../IntStream":222,"../Lexer":224,"../LexerNoViableAltException":226,"../Token":241,"../dfa/AcceptStateInfo":313,"../dfa/DFAState":316,"../misc/Interval":328,"./ATN":249,"./ATNConfig":250,"./ATNConfigSet":251,"./ATNSimulator":254,"./LexerActionExecutor":275,"./OrderedATNConfigSet":288,"./PredictionContext":296,"./RuleStopState":302,"assert":359}],275:[function(require,module,exports){
45186
45271
  "use strict";
45187
45272
  /*!
45188
45273
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45383,7 +45468,7 @@ LexerActionExecutor = __decorate([
45383
45468
  ], LexerActionExecutor);
45384
45469
  exports.LexerActionExecutor = LexerActionExecutor;
45385
45470
 
45386
- },{"../Decorators":215,"../misc/ArrayEqualityComparator":320,"../misc/MurmurHash":330,"./LexerIndexedCustomAction":277}],275:[function(require,module,exports){
45471
+ },{"../Decorators":216,"../misc/ArrayEqualityComparator":321,"../misc/MurmurHash":331,"./LexerIndexedCustomAction":278}],276:[function(require,module,exports){
45387
45472
  "use strict";
45388
45473
  /*!
45389
45474
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45488,7 +45573,7 @@ __decorate([
45488
45573
  ], LexerChannelAction.prototype, "toString", null);
45489
45574
  exports.LexerChannelAction = LexerChannelAction;
45490
45575
 
45491
- },{"../Decorators":215,"../misc/MurmurHash":330}],276:[function(require,module,exports){
45576
+ },{"../Decorators":216,"../misc/MurmurHash":331}],277:[function(require,module,exports){
45492
45577
  "use strict";
45493
45578
  /*!
45494
45579
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45617,7 +45702,7 @@ __decorate([
45617
45702
  ], LexerCustomAction.prototype, "equals", null);
45618
45703
  exports.LexerCustomAction = LexerCustomAction;
45619
45704
 
45620
- },{"../Decorators":215,"../misc/MurmurHash":330}],277:[function(require,module,exports){
45705
+ },{"../Decorators":216,"../misc/MurmurHash":331}],278:[function(require,module,exports){
45621
45706
  "use strict";
45622
45707
  /*!
45623
45708
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45752,7 +45837,7 @@ LexerIndexedCustomAction = __decorate([
45752
45837
  ], LexerIndexedCustomAction);
45753
45838
  exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
45754
45839
 
45755
- },{"../Decorators":215,"../misc/MurmurHash":330}],278:[function(require,module,exports){
45840
+ },{"../Decorators":216,"../misc/MurmurHash":331}],279:[function(require,module,exports){
45756
45841
  "use strict";
45757
45842
  /*!
45758
45843
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45857,7 +45942,7 @@ __decorate([
45857
45942
  ], LexerModeAction.prototype, "toString", null);
45858
45943
  exports.LexerModeAction = LexerModeAction;
45859
45944
 
45860
- },{"../Decorators":215,"../misc/MurmurHash":330}],279:[function(require,module,exports){
45945
+ },{"../Decorators":216,"../misc/MurmurHash":331}],280:[function(require,module,exports){
45861
45946
  "use strict";
45862
45947
  /*!
45863
45948
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45953,7 +46038,7 @@ exports.LexerMoreAction = LexerMoreAction;
45953
46038
  LexerMoreAction.INSTANCE = new LexerMoreAction();
45954
46039
  })(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
45955
46040
 
45956
- },{"../Decorators":215,"../misc/MurmurHash":330}],280:[function(require,module,exports){
46041
+ },{"../Decorators":216,"../misc/MurmurHash":331}],281:[function(require,module,exports){
45957
46042
  "use strict";
45958
46043
  /*!
45959
46044
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46049,7 +46134,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
46049
46134
  LexerPopModeAction.INSTANCE = new LexerPopModeAction();
46050
46135
  })(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
46051
46136
 
46052
- },{"../Decorators":215,"../misc/MurmurHash":330}],281:[function(require,module,exports){
46137
+ },{"../Decorators":216,"../misc/MurmurHash":331}],282:[function(require,module,exports){
46053
46138
  "use strict";
46054
46139
  /*!
46055
46140
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46154,7 +46239,7 @@ __decorate([
46154
46239
  ], LexerPushModeAction.prototype, "toString", null);
46155
46240
  exports.LexerPushModeAction = LexerPushModeAction;
46156
46241
 
46157
- },{"../Decorators":215,"../misc/MurmurHash":330}],282:[function(require,module,exports){
46242
+ },{"../Decorators":216,"../misc/MurmurHash":331}],283:[function(require,module,exports){
46158
46243
  "use strict";
46159
46244
  /*!
46160
46245
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46250,7 +46335,7 @@ exports.LexerSkipAction = LexerSkipAction;
46250
46335
  LexerSkipAction.INSTANCE = new LexerSkipAction();
46251
46336
  })(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
46252
46337
 
46253
- },{"../Decorators":215,"../misc/MurmurHash":330}],283:[function(require,module,exports){
46338
+ },{"../Decorators":216,"../misc/MurmurHash":331}],284:[function(require,module,exports){
46254
46339
  "use strict";
46255
46340
  /*!
46256
46341
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46354,7 +46439,7 @@ __decorate([
46354
46439
  ], LexerTypeAction.prototype, "toString", null);
46355
46440
  exports.LexerTypeAction = LexerTypeAction;
46356
46441
 
46357
- },{"../Decorators":215,"../misc/MurmurHash":330}],284:[function(require,module,exports){
46442
+ },{"../Decorators":216,"../misc/MurmurHash":331}],285:[function(require,module,exports){
46358
46443
  "use strict";
46359
46444
  /*!
46360
46445
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46406,7 +46491,7 @@ LookaheadEventInfo = __decorate([
46406
46491
  ], LookaheadEventInfo);
46407
46492
  exports.LookaheadEventInfo = LookaheadEventInfo;
46408
46493
 
46409
- },{"../Decorators":215,"./DecisionEventInfo":266}],285:[function(require,module,exports){
46494
+ },{"../Decorators":216,"./DecisionEventInfo":267}],286:[function(require,module,exports){
46410
46495
  "use strict";
46411
46496
  /*!
46412
46497
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46435,7 +46520,7 @@ __decorate([
46435
46520
  ], LoopEndState.prototype, "stateType", null);
46436
46521
  exports.LoopEndState = LoopEndState;
46437
46522
 
46438
- },{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],286:[function(require,module,exports){
46523
+ },{"../Decorators":216,"./ATNState":255,"./ATNStateType":256}],287:[function(require,module,exports){
46439
46524
  "use strict";
46440
46525
  /*!
46441
46526
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46484,7 +46569,7 @@ NotSetTransition = __decorate([
46484
46569
  ], NotSetTransition);
46485
46570
  exports.NotSetTransition = NotSetTransition;
46486
46571
 
46487
- },{"../Decorators":215,"./SetTransition":304}],287:[function(require,module,exports){
46572
+ },{"../Decorators":216,"./SetTransition":305}],288:[function(require,module,exports){
46488
46573
  "use strict";
46489
46574
  /*!
46490
46575
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46539,7 +46624,7 @@ __decorate([
46539
46624
  ], OrderedATNConfigSet.prototype, "canMerge", null);
46540
46625
  exports.OrderedATNConfigSet = OrderedATNConfigSet;
46541
46626
 
46542
- },{"../Decorators":215,"./ATNConfigSet":250}],288:[function(require,module,exports){
46627
+ },{"../Decorators":216,"./ATNConfigSet":251}],289:[function(require,module,exports){
46543
46628
  "use strict";
46544
46629
  /*!
46545
46630
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46701,7 +46786,7 @@ ParseInfo = __decorate([
46701
46786
  ], ParseInfo);
46702
46787
  exports.ParseInfo = ParseInfo;
46703
46788
 
46704
- },{"../Decorators":215}],289:[function(require,module,exports){
46789
+ },{"../Decorators":216}],290:[function(require,module,exports){
46705
46790
  "use strict";
46706
46791
  /*!
46707
46792
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48974,7 +49059,7 @@ ParserATNSimulator = __decorate([
48974
49059
  ], ParserATNSimulator);
48975
49060
  exports.ParserATNSimulator = ParserATNSimulator;
48976
49061
 
48977
- },{"../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){
49062
+ },{"../Decorators":216,"../IntStream":222,"../NoViableAltException":228,"../ParserRuleContext":232,"../Token":241,"../VocabularyImpl":247,"../dfa/AcceptStateInfo":313,"../dfa/DFAState":316,"../misc/Array2DHashSet":320,"../misc/Arrays":322,"../misc/BitSet":323,"../misc/IntegerList":326,"../misc/Interval":328,"../misc/ObjectEqualityComparator":332,"./ATN":249,"./ATNConfig":250,"./ATNConfigSet":251,"./ATNSimulator":254,"./ATNStateType":256,"./ActionTransition":258,"./AtomTransition":260,"./ConflictInfo":265,"./DecisionState":269,"./NotSetTransition":287,"./PredictionContext":296,"./PredictionContextCache":297,"./PredictionMode":298,"./RuleStopState":302,"./RuleTransition":303,"./SemanticContext":304,"./SetTransition":305,"./SimulatorState":306,"assert":359}],291:[function(require,module,exports){
48978
49063
  "use strict";
48979
49064
  /*!
48980
49065
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49007,7 +49092,7 @@ __decorate([
49007
49092
  ], PlusBlockStartState.prototype, "stateType", null);
49008
49093
  exports.PlusBlockStartState = PlusBlockStartState;
49009
49094
 
49010
- },{"../Decorators":215,"./ATNStateType":255,"./BlockStartState":263}],291:[function(require,module,exports){
49095
+ },{"../Decorators":216,"./ATNStateType":256,"./BlockStartState":264}],292:[function(require,module,exports){
49011
49096
  "use strict";
49012
49097
  /*!
49013
49098
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49038,7 +49123,7 @@ __decorate([
49038
49123
  ], PlusLoopbackState.prototype, "stateType", null);
49039
49124
  exports.PlusLoopbackState = PlusLoopbackState;
49040
49125
 
49041
- },{"../Decorators":215,"./ATNStateType":255,"./DecisionState":268}],292:[function(require,module,exports){
49126
+ },{"../Decorators":216,"./ATNStateType":256,"./DecisionState":269}],293:[function(require,module,exports){
49042
49127
  "use strict";
49043
49128
  /*!
49044
49129
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49101,7 +49186,7 @@ PrecedencePredicateTransition = __decorate([
49101
49186
  ], PrecedencePredicateTransition);
49102
49187
  exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
49103
49188
 
49104
- },{"../Decorators":215,"./AbstractPredicateTransition":256,"./SemanticContext":303}],293:[function(require,module,exports){
49189
+ },{"../Decorators":216,"./AbstractPredicateTransition":257,"./SemanticContext":304}],294:[function(require,module,exports){
49105
49190
  "use strict";
49106
49191
  /*!
49107
49192
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49164,7 +49249,7 @@ PredicateEvalInfo = __decorate([
49164
49249
  ], PredicateEvalInfo);
49165
49250
  exports.PredicateEvalInfo = PredicateEvalInfo;
49166
49251
 
49167
- },{"../Decorators":215,"./DecisionEventInfo":266}],294:[function(require,module,exports){
49252
+ },{"../Decorators":216,"./DecisionEventInfo":267}],295:[function(require,module,exports){
49168
49253
  "use strict";
49169
49254
  /*!
49170
49255
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49230,7 +49315,7 @@ PredicateTransition = __decorate([
49230
49315
  ], PredicateTransition);
49231
49316
  exports.PredicateTransition = PredicateTransition;
49232
49317
 
49233
- },{"../Decorators":215,"./AbstractPredicateTransition":256,"./SemanticContext":303}],295:[function(require,module,exports){
49318
+ },{"../Decorators":216,"./AbstractPredicateTransition":257,"./SemanticContext":304}],296:[function(require,module,exports){
49234
49319
  "use strict";
49235
49320
  /*!
49236
49321
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49921,7 +50006,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
49921
50006
  PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
49922
50007
  })(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
49923
50008
 
49924
- },{"../Decorators":215,"../misc/Array2DHashMap":318,"../misc/Array2DHashSet":319,"../misc/Arrays":321,"../misc/MurmurHash":330,"./PredictionContextCache":296,"assert":358}],296:[function(require,module,exports){
50009
+ },{"../Decorators":216,"../misc/Array2DHashMap":319,"../misc/Array2DHashSet":320,"../misc/Arrays":322,"../misc/MurmurHash":331,"./PredictionContextCache":297,"assert":359}],297:[function(require,module,exports){
49925
50010
  "use strict";
49926
50011
  /*!
49927
50012
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50062,7 +50147,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
50062
50147
  PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
50063
50148
  })(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
50064
50149
 
50065
- },{"../Decorators":215,"../misc/Array2DHashMap":318,"../misc/ObjectEqualityComparator":331,"./PredictionContext":295,"assert":358}],297:[function(require,module,exports){
50150
+ },{"../Decorators":216,"../misc/Array2DHashMap":319,"../misc/ObjectEqualityComparator":332,"./PredictionContext":296,"assert":359}],298:[function(require,module,exports){
50066
50151
  "use strict";
50067
50152
  /*!
50068
50153
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50223,7 +50308,7 @@ var PredictionMode;
50223
50308
  PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
50224
50309
  })(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
50225
50310
 
50226
- },{"../Decorators":215,"../misc/Array2DHashMap":318,"../misc/MurmurHash":330,"./RuleStopState":301}],298:[function(require,module,exports){
50311
+ },{"../Decorators":216,"../misc/Array2DHashMap":319,"../misc/MurmurHash":331,"./RuleStopState":302}],299:[function(require,module,exports){
50227
50312
  (function (process){(function (){
50228
50313
  "use strict";
50229
50314
  /*!
@@ -50492,7 +50577,7 @@ __decorate([
50492
50577
  exports.ProfilingATNSimulator = ProfilingATNSimulator;
50493
50578
 
50494
50579
  }).call(this)}).call(this,require('_process'))
50495
- },{"../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){
50580
+ },{"../Decorators":216,"./ATN":249,"./ATNSimulator":254,"./AmbiguityInfo":259,"./ContextSensitivityInfo":266,"./DecisionInfo":268,"./ErrorInfo":271,"./LookaheadEventInfo":285,"./ParserATNSimulator":290,"./PredicateEvalInfo":294,"./SemanticContext":304,"./SimulatorState":306,"_process":418}],300:[function(require,module,exports){
50496
50581
  "use strict";
50497
50582
  /*!
50498
50583
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50550,7 +50635,7 @@ RangeTransition = __decorate([
50550
50635
  ], RangeTransition);
50551
50636
  exports.RangeTransition = RangeTransition;
50552
50637
 
50553
- },{"../Decorators":215,"../misc/IntervalSet":328,"./Transition":310}],300:[function(require,module,exports){
50638
+ },{"../Decorators":216,"../misc/IntervalSet":329,"./Transition":311}],301:[function(require,module,exports){
50554
50639
  "use strict";
50555
50640
  /*!
50556
50641
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50583,7 +50668,7 @@ __decorate([
50583
50668
  ], RuleStartState.prototype, "stateType", null);
50584
50669
  exports.RuleStartState = RuleStartState;
50585
50670
 
50586
- },{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],301:[function(require,module,exports){
50671
+ },{"../Decorators":216,"./ATNState":255,"./ATNStateType":256}],302:[function(require,module,exports){
50587
50672
  "use strict";
50588
50673
  /*!
50589
50674
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50622,7 +50707,7 @@ __decorate([
50622
50707
  ], RuleStopState.prototype, "stateType", null);
50623
50708
  exports.RuleStopState = RuleStopState;
50624
50709
 
50625
- },{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],302:[function(require,module,exports){
50710
+ },{"../Decorators":216,"./ATNState":255,"./ATNStateType":256}],303:[function(require,module,exports){
50626
50711
  "use strict";
50627
50712
  /*!
50628
50713
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50678,7 +50763,7 @@ RuleTransition = __decorate([
50678
50763
  ], RuleTransition);
50679
50764
  exports.RuleTransition = RuleTransition;
50680
50765
 
50681
- },{"../Decorators":215,"./Transition":310}],303:[function(require,module,exports){
50766
+ },{"../Decorators":216,"./Transition":311}],304:[function(require,module,exports){
50682
50767
  "use strict";
50683
50768
  /*!
50684
50769
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51158,7 +51243,7 @@ exports.SemanticContext = SemanticContext;
51158
51243
  SemanticContext.OR = OR;
51159
51244
  })(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
51160
51245
 
51161
- },{"../Decorators":215,"../misc/Array2DHashSet":319,"../misc/ArrayEqualityComparator":320,"../misc/MurmurHash":330,"../misc/ObjectEqualityComparator":331,"../misc/Utils":334}],304:[function(require,module,exports){
51246
+ },{"../Decorators":216,"../misc/Array2DHashSet":320,"../misc/ArrayEqualityComparator":321,"../misc/MurmurHash":331,"../misc/ObjectEqualityComparator":332,"../misc/Utils":335}],305:[function(require,module,exports){
51162
51247
  "use strict";
51163
51248
  /*!
51164
51249
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51224,7 +51309,7 @@ SetTransition = __decorate([
51224
51309
  ], SetTransition);
51225
51310
  exports.SetTransition = SetTransition;
51226
51311
 
51227
- },{"../Decorators":215,"../Token":240,"../misc/IntervalSet":328,"./Transition":310}],305:[function(require,module,exports){
51312
+ },{"../Decorators":216,"../Token":241,"../misc/IntervalSet":329,"./Transition":311}],306:[function(require,module,exports){
51228
51313
  "use strict";
51229
51314
  /*!
51230
51315
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51260,7 +51345,7 @@ SimulatorState = __decorate([
51260
51345
  ], SimulatorState);
51261
51346
  exports.SimulatorState = SimulatorState;
51262
51347
 
51263
- },{"../Decorators":215,"../ParserRuleContext":231}],306:[function(require,module,exports){
51348
+ },{"../Decorators":216,"../ParserRuleContext":232}],307:[function(require,module,exports){
51264
51349
  "use strict";
51265
51350
  /*!
51266
51351
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51288,7 +51373,7 @@ __decorate([
51288
51373
  ], StarBlockStartState.prototype, "stateType", null);
51289
51374
  exports.StarBlockStartState = StarBlockStartState;
51290
51375
 
51291
- },{"../Decorators":215,"./ATNStateType":255,"./BlockStartState":263}],307:[function(require,module,exports){
51376
+ },{"../Decorators":216,"./ATNStateType":256,"./BlockStartState":264}],308:[function(require,module,exports){
51292
51377
  "use strict";
51293
51378
  /*!
51294
51379
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51345,7 +51430,7 @@ __decorate([
51345
51430
  ], StarLoopEntryState.prototype, "stateType", null);
51346
51431
  exports.StarLoopEntryState = StarLoopEntryState;
51347
51432
 
51348
- },{"../Decorators":215,"../misc/BitSet":322,"./ATNStateType":255,"./DecisionState":268}],308:[function(require,module,exports){
51433
+ },{"../Decorators":216,"../misc/BitSet":323,"./ATNStateType":256,"./DecisionState":269}],309:[function(require,module,exports){
51349
51434
  "use strict";
51350
51435
  /*!
51351
51436
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51376,7 +51461,7 @@ __decorate([
51376
51461
  ], StarLoopbackState.prototype, "stateType", null);
51377
51462
  exports.StarLoopbackState = StarLoopbackState;
51378
51463
 
51379
- },{"../Decorators":215,"./ATNState":254,"./ATNStateType":255}],309:[function(require,module,exports){
51464
+ },{"../Decorators":216,"./ATNState":255,"./ATNStateType":256}],310:[function(require,module,exports){
51380
51465
  "use strict";
51381
51466
  /*!
51382
51467
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51405,7 +51490,7 @@ __decorate([
51405
51490
  ], TokensStartState.prototype, "stateType", null);
51406
51491
  exports.TokensStartState = TokensStartState;
51407
51492
 
51408
- },{"../Decorators":215,"./ATNStateType":255,"./DecisionState":268}],310:[function(require,module,exports){
51493
+ },{"../Decorators":216,"./ATNStateType":256,"./DecisionState":269}],311:[function(require,module,exports){
51409
51494
  "use strict";
51410
51495
  /*!
51411
51496
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51479,7 +51564,7 @@ Transition = __decorate([
51479
51564
  ], Transition);
51480
51565
  exports.Transition = Transition;
51481
51566
 
51482
- },{"../Decorators":215}],311:[function(require,module,exports){
51567
+ },{"../Decorators":216}],312:[function(require,module,exports){
51483
51568
  "use strict";
51484
51569
  /*!
51485
51570
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51527,7 +51612,7 @@ WildcardTransition = __decorate([
51527
51612
  ], WildcardTransition);
51528
51613
  exports.WildcardTransition = WildcardTransition;
51529
51614
 
51530
- },{"../Decorators":215,"./Transition":310}],312:[function(require,module,exports){
51615
+ },{"../Decorators":216,"./Transition":311}],313:[function(require,module,exports){
51531
51616
  "use strict";
51532
51617
  /*!
51533
51618
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51569,7 +51654,7 @@ class AcceptStateInfo {
51569
51654
  }
51570
51655
  exports.AcceptStateInfo = AcceptStateInfo;
51571
51656
 
51572
- },{}],313:[function(require,module,exports){
51657
+ },{}],314:[function(require,module,exports){
51573
51658
  "use strict";
51574
51659
  /*!
51575
51660
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51744,7 +51829,7 @@ DFA = __decorate([
51744
51829
  ], DFA);
51745
51830
  exports.DFA = DFA;
51746
51831
 
51747
- },{"../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){
51832
+ },{"../Decorators":216,"../VocabularyImpl":247,"../atn/ATNConfigSet":251,"../atn/StarLoopEntryState":308,"../misc/Array2DHashSet":320,"../misc/ObjectEqualityComparator":332,"./DFASerializer":315,"./DFAState":316,"./LexerDFASerializer":317}],315:[function(require,module,exports){
51748
51833
  "use strict";
51749
51834
  /*!
51750
51835
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51886,7 +51971,7 @@ __decorate([
51886
51971
  ], DFASerializer.prototype, "toString", null);
51887
51972
  exports.DFASerializer = DFASerializer;
51888
51973
 
51889
- },{"../Decorators":215,"../Recognizer":235,"../VocabularyImpl":246,"../atn/ATNSimulator":253,"../atn/PredictionContext":295}],315:[function(require,module,exports){
51974
+ },{"../Decorators":216,"../Recognizer":236,"../VocabularyImpl":247,"../atn/ATNSimulator":254,"../atn/PredictionContext":296}],316:[function(require,module,exports){
51890
51975
  "use strict";
51891
51976
  /*!
51892
51977
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52117,7 +52202,7 @@ exports.DFAState = DFAState;
52117
52202
  DFAState.PredPrediction = PredPrediction;
52118
52203
  })(DFAState = exports.DFAState || (exports.DFAState = {}));
52119
52204
 
52120
- },{"../Decorators":215,"../atn/ATN":248,"../atn/PredictionContext":295,"../misc/BitSet":322,"../misc/MurmurHash":330,"assert":358}],316:[function(require,module,exports){
52205
+ },{"../Decorators":216,"../atn/ATN":249,"../atn/PredictionContext":296,"../misc/BitSet":323,"../misc/MurmurHash":331,"assert":359}],317:[function(require,module,exports){
52121
52206
  "use strict";
52122
52207
  /*!
52123
52208
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52154,7 +52239,7 @@ LexerDFASerializer = __decorate([
52154
52239
  ], LexerDFASerializer);
52155
52240
  exports.LexerDFASerializer = LexerDFASerializer;
52156
52241
 
52157
- },{"../Decorators":215,"../VocabularyImpl":246,"./DFASerializer":314}],317:[function(require,module,exports){
52242
+ },{"../Decorators":216,"../VocabularyImpl":247,"./DFASerializer":315}],318:[function(require,module,exports){
52158
52243
  "use strict";
52159
52244
  /*!
52160
52245
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52220,7 +52305,7 @@ __exportStar(require("./Vocabulary"), exports);
52220
52305
  __exportStar(require("./VocabularyImpl"), exports);
52221
52306
  __exportStar(require("./WritableToken"), exports);
52222
52307
 
52223
- },{"./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){
52308
+ },{"./ANTLRErrorListener":203,"./ANTLRErrorStrategy":204,"./ANTLRInputStream":205,"./BailErrorStrategy":206,"./BufferedTokenStream":207,"./CharStream":208,"./CharStreams":209,"./CodePointBuffer":210,"./CodePointCharStream":211,"./CommonToken":212,"./CommonTokenFactory":213,"./CommonTokenStream":214,"./ConsoleErrorListener":215,"./DefaultErrorStrategy":217,"./Dependents":218,"./DiagnosticErrorListener":219,"./FailedPredicateException":220,"./InputMismatchException":221,"./IntStream":222,"./InterpreterRuleContext":223,"./Lexer":224,"./LexerInterpreter":225,"./LexerNoViableAltException":226,"./ListTokenSource":227,"./NoViableAltException":228,"./Parser":229,"./ParserErrorListener":230,"./ParserInterpreter":231,"./ParserRuleContext":232,"./ProxyErrorListener":233,"./ProxyParserErrorListener":234,"./RecognitionException":235,"./Recognizer":236,"./RuleContext":237,"./RuleContextWithAltNum":238,"./RuleDependency":239,"./RuleVersion":240,"./Token":241,"./TokenFactory":242,"./TokenSource":243,"./TokenStream":244,"./TokenStreamRewriter":245,"./Vocabulary":246,"./VocabularyImpl":247,"./WritableToken":248}],319:[function(require,module,exports){
52224
52309
  "use strict";
52225
52310
  /*!
52226
52311
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52303,7 +52388,7 @@ class Array2DHashMap {
52303
52388
  }
52304
52389
  exports.Array2DHashMap = Array2DHashMap;
52305
52390
 
52306
- },{"./Array2DHashSet":319}],319:[function(require,module,exports){
52391
+ },{"./Array2DHashSet":320}],320:[function(require,module,exports){
52307
52392
  "use strict";
52308
52393
  /*!
52309
52394
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52670,7 +52755,7 @@ __decorate([
52670
52755
  ], Array2DHashSet.prototype, "createBuckets", null);
52671
52756
  exports.Array2DHashSet = Array2DHashSet;
52672
52757
 
52673
- },{"../Decorators":215,"./DefaultEqualityComparator":324,"./MurmurHash":330,"assert":358}],320:[function(require,module,exports){
52758
+ },{"../Decorators":216,"./DefaultEqualityComparator":325,"./MurmurHash":331,"assert":359}],321:[function(require,module,exports){
52674
52759
  "use strict";
52675
52760
  /*!
52676
52761
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52742,7 +52827,7 @@ __decorate([
52742
52827
  ], ArrayEqualityComparator.prototype, "equals", null);
52743
52828
  exports.ArrayEqualityComparator = ArrayEqualityComparator;
52744
52829
 
52745
- },{"../Decorators":215,"./MurmurHash":330,"./ObjectEqualityComparator":331}],321:[function(require,module,exports){
52830
+ },{"../Decorators":216,"./MurmurHash":331,"./ObjectEqualityComparator":332}],322:[function(require,module,exports){
52746
52831
  "use strict";
52747
52832
  /*!
52748
52833
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52812,7 +52897,7 @@ var Arrays;
52812
52897
  Arrays.toString = toString;
52813
52898
  })(Arrays = exports.Arrays || (exports.Arrays = {}));
52814
52899
 
52815
- },{}],322:[function(require,module,exports){
52900
+ },{}],323:[function(require,module,exports){
52816
52901
  "use strict";
52817
52902
  /*!
52818
52903
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53484,7 +53569,7 @@ class BitSetIterator {
53484
53569
  [Symbol.iterator]() { return this; }
53485
53570
  }
53486
53571
 
53487
- },{"./MurmurHash":330,"util":422}],323:[function(require,module,exports){
53572
+ },{"./MurmurHash":331,"util":423}],324:[function(require,module,exports){
53488
53573
  "use strict";
53489
53574
  /*!
53490
53575
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53505,7 +53590,7 @@ function isSupplementaryCodePoint(ch) {
53505
53590
  }
53506
53591
  exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
53507
53592
 
53508
- },{}],324:[function(require,module,exports){
53593
+ },{}],325:[function(require,module,exports){
53509
53594
  "use strict";
53510
53595
  /*!
53511
53596
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53576,7 +53661,7 @@ __decorate([
53576
53661
  ], DefaultEqualityComparator.prototype, "equals", null);
53577
53662
  exports.DefaultEqualityComparator = DefaultEqualityComparator;
53578
53663
 
53579
- },{"../Decorators":215,"./MurmurHash":330,"./ObjectEqualityComparator":331}],325:[function(require,module,exports){
53664
+ },{"../Decorators":216,"./MurmurHash":331,"./ObjectEqualityComparator":332}],326:[function(require,module,exports){
53580
53665
  "use strict";
53581
53666
  /*!
53582
53667
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53870,7 +53955,7 @@ __decorate([
53870
53955
  ], IntegerList.prototype, "toString", null);
53871
53956
  exports.IntegerList = IntegerList;
53872
53957
 
53873
- },{"../Decorators":215,"./Arrays":321}],326:[function(require,module,exports){
53958
+ },{"../Decorators":216,"./Arrays":322}],327:[function(require,module,exports){
53874
53959
  "use strict";
53875
53960
  /*!
53876
53961
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53900,7 +53985,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
53900
53985
  }
53901
53986
  exports.IntegerStack = IntegerStack;
53902
53987
 
53903
- },{"./IntegerList":325}],327:[function(require,module,exports){
53988
+ },{"./IntegerList":326}],328:[function(require,module,exports){
53904
53989
  "use strict";
53905
53990
  /*!
53906
53991
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54043,7 +54128,7 @@ __decorate([
54043
54128
  ], Interval.prototype, "toString", null);
54044
54129
  exports.Interval = Interval;
54045
54130
 
54046
- },{"../Decorators":215}],328:[function(require,module,exports){
54131
+ },{"../Decorators":216}],329:[function(require,module,exports){
54047
54132
  "use strict";
54048
54133
  /*!
54049
54134
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54689,7 +54774,7 @@ __decorate([
54689
54774
  ], IntervalSet, "subtract", null);
54690
54775
  exports.IntervalSet = IntervalSet;
54691
54776
 
54692
- },{"../Decorators":215,"../Lexer":223,"../Token":240,"./ArrayEqualityComparator":320,"./IntegerList":325,"./Interval":327,"./MurmurHash":330}],329:[function(require,module,exports){
54777
+ },{"../Decorators":216,"../Lexer":224,"../Token":241,"./ArrayEqualityComparator":321,"./IntegerList":326,"./Interval":328,"./MurmurHash":331}],330:[function(require,module,exports){
54693
54778
  "use strict";
54694
54779
  /*!
54695
54780
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54722,7 +54807,7 @@ class MultiMap extends Map {
54722
54807
  }
54723
54808
  exports.MultiMap = MultiMap;
54724
54809
 
54725
- },{}],330:[function(require,module,exports){
54810
+ },{}],331:[function(require,module,exports){
54726
54811
  "use strict";
54727
54812
  /*!
54728
54813
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54837,7 +54922,7 @@ var MurmurHash;
54837
54922
  }
54838
54923
  })(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
54839
54924
 
54840
- },{}],331:[function(require,module,exports){
54925
+ },{}],332:[function(require,module,exports){
54841
54926
  "use strict";
54842
54927
  /*!
54843
54928
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54896,7 +54981,7 @@ __decorate([
54896
54981
  ], ObjectEqualityComparator.prototype, "equals", null);
54897
54982
  exports.ObjectEqualityComparator = ObjectEqualityComparator;
54898
54983
 
54899
- },{"../Decorators":215}],332:[function(require,module,exports){
54984
+ },{"../Decorators":216}],333:[function(require,module,exports){
54900
54985
  "use strict";
54901
54986
  /*!
54902
54987
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54925,7 +55010,7 @@ class ParseCancellationException extends Error {
54925
55010
  }
54926
55011
  exports.ParseCancellationException = ParseCancellationException;
54927
55012
 
54928
- },{}],333:[function(require,module,exports){
55013
+ },{}],334:[function(require,module,exports){
54929
55014
  "use strict";
54930
55015
  /*!
54931
55016
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54979,7 +55064,7 @@ class UUID {
54979
55064
  }
54980
55065
  exports.UUID = UUID;
54981
55066
 
54982
- },{"./MurmurHash":330}],334:[function(require,module,exports){
55067
+ },{"./MurmurHash":331}],335:[function(require,module,exports){
54983
55068
  "use strict";
54984
55069
  /*!
54985
55070
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55154,7 +55239,7 @@ exports.toCharArray = toCharArray;
55154
55239
  // return s;
55155
55240
  // }
55156
55241
 
55157
- },{}],335:[function(require,module,exports){
55242
+ },{}],336:[function(require,module,exports){
55158
55243
  "use strict";
55159
55244
  /*!
55160
55245
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55190,7 +55275,7 @@ __decorate([
55190
55275
  ], ErrorNode.prototype, "accept", null);
55191
55276
  exports.ErrorNode = ErrorNode;
55192
55277
 
55193
- },{"../Decorators":215,"./TerminalNode":338}],336:[function(require,module,exports){
55278
+ },{"../Decorators":216,"./TerminalNode":339}],337:[function(require,module,exports){
55194
55279
  "use strict";
55195
55280
  /*!
55196
55281
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55295,7 +55380,7 @@ exports.ParseTreeWalker = ParseTreeWalker;
55295
55380
  ParseTreeWalker.DEFAULT = new ParseTreeWalker();
55296
55381
  })(ParseTreeWalker = exports.ParseTreeWalker || (exports.ParseTreeWalker = {}));
55297
55382
 
55298
- },{"./ErrorNode":335,"./RuleNode":337,"./TerminalNode":338}],337:[function(require,module,exports){
55383
+ },{"./ErrorNode":336,"./RuleNode":338,"./TerminalNode":339}],338:[function(require,module,exports){
55299
55384
  "use strict";
55300
55385
  /*!
55301
55386
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55307,7 +55392,7 @@ class RuleNode {
55307
55392
  }
55308
55393
  exports.RuleNode = RuleNode;
55309
55394
 
55310
- },{}],338:[function(require,module,exports){
55395
+ },{}],339:[function(require,module,exports){
55311
55396
  "use strict";
55312
55397
  /*!
55313
55398
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55399,7 +55484,7 @@ __decorate([
55399
55484
  ], TerminalNode.prototype, "toString", null);
55400
55485
  exports.TerminalNode = TerminalNode;
55401
55486
 
55402
- },{"../Decorators":215,"../Token":240,"../misc/Interval":327}],339:[function(require,module,exports){
55487
+ },{"../Decorators":216,"../Token":241,"../misc/Interval":328}],340:[function(require,module,exports){
55403
55488
  "use strict";
55404
55489
  /*!
55405
55490
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55643,7 +55728,7 @@ __decorate([
55643
55728
  ], Trees, "getRootOfSubtreeEnclosingRegion", null);
55644
55729
  exports.Trees = Trees;
55645
55730
 
55646
- },{"../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){
55731
+ },{"../CommonToken":212,"../Decorators":216,"../Parser":229,"../ParserRuleContext":232,"../Token":241,"../atn/ATN":249,"../misc/Utils":335,"./ErrorNode":336,"./RuleNode":338,"./TerminalNode":339}],341:[function(require,module,exports){
55647
55732
  "use strict";
55648
55733
  /*!
55649
55734
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55667,7 +55752,7 @@ class Chunk {
55667
55752
  }
55668
55753
  exports.Chunk = Chunk;
55669
55754
 
55670
- },{}],341:[function(require,module,exports){
55755
+ },{}],342:[function(require,module,exports){
55671
55756
  "use strict";
55672
55757
  /*!
55673
55758
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -55847,7 +55932,7 @@ ParseTreeMatch = __decorate([
55847
55932
  ], ParseTreeMatch);
55848
55933
  exports.ParseTreeMatch = ParseTreeMatch;
55849
55934
 
55850
- },{"../../Decorators":215}],342:[function(require,module,exports){
55935
+ },{"../../Decorators":216}],343:[function(require,module,exports){
55851
55936
  "use strict";
55852
55937
  /*!
55853
55938
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56005,7 +56090,7 @@ ParseTreePattern = __decorate([
56005
56090
  ], ParseTreePattern);
56006
56091
  exports.ParseTreePattern = ParseTreePattern;
56007
56092
 
56008
- },{"../../Decorators":215,"../xpath/XPath":348}],343:[function(require,module,exports){
56093
+ },{"../../Decorators":216,"../xpath/XPath":349}],344:[function(require,module,exports){
56009
56094
  "use strict";
56010
56095
  /*!
56011
56096
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56483,7 +56568,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
56483
56568
  ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
56484
56569
  })(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
56485
56570
 
56486
- },{"../../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){
56571
+ },{"../../BailErrorStrategy":206,"../../CharStreams":209,"../../CommonTokenStream":214,"../../Decorators":216,"../../ListTokenSource":227,"../../ParserInterpreter":231,"../../ParserRuleContext":232,"../../RecognitionException":235,"../../Token":241,"../../misc/MultiMap":330,"../../misc/ParseCancellationException":333,"../RuleNode":338,"../TerminalNode":339,"./ParseTreeMatch":342,"./ParseTreePattern":343,"./RuleTagToken":345,"./TagChunk":346,"./TextChunk":347,"./TokenTagToken":348}],345:[function(require,module,exports){
56487
56572
  "use strict";
56488
56573
  /*!
56489
56574
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56681,7 +56766,7 @@ RuleTagToken = __decorate([
56681
56766
  ], RuleTagToken);
56682
56767
  exports.RuleTagToken = RuleTagToken;
56683
56768
 
56684
- },{"../../Decorators":215,"../../Token":240}],345:[function(require,module,exports){
56769
+ },{"../../Decorators":216,"../../Token":241}],346:[function(require,module,exports){
56685
56770
  "use strict";
56686
56771
  /*!
56687
56772
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56768,7 +56853,7 @@ __decorate([
56768
56853
  ], TagChunk.prototype, "toString", null);
56769
56854
  exports.TagChunk = TagChunk;
56770
56855
 
56771
- },{"../../Decorators":215,"./Chunk":340}],346:[function(require,module,exports){
56856
+ },{"../../Decorators":216,"./Chunk":341}],347:[function(require,module,exports){
56772
56857
  "use strict";
56773
56858
  /*!
56774
56859
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56838,7 +56923,7 @@ TextChunk = __decorate([
56838
56923
  ], TextChunk);
56839
56924
  exports.TextChunk = TextChunk;
56840
56925
 
56841
- },{"../../Decorators":215,"./Chunk":340}],347:[function(require,module,exports){
56926
+ },{"../../Decorators":216,"./Chunk":341}],348:[function(require,module,exports){
56842
56927
  "use strict";
56843
56928
  /*!
56844
56929
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -56933,7 +57018,7 @@ TokenTagToken = __decorate([
56933
57018
  ], TokenTagToken);
56934
57019
  exports.TokenTagToken = TokenTagToken;
56935
57020
 
56936
- },{"../../CommonToken":211,"../../Decorators":215}],348:[function(require,module,exports){
57021
+ },{"../../CommonToken":212,"../../Decorators":216}],349:[function(require,module,exports){
56937
57022
  "use strict";
56938
57023
  /*!
56939
57024
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57130,7 +57215,7 @@ exports.XPath = XPath;
57130
57215
  XPath.WILDCARD = "*"; // word not operator/separator
57131
57216
  XPath.NOT = "!"; // word for invert operator
57132
57217
 
57133
- },{"../../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){
57218
+ },{"../../CharStreams":209,"../../CommonTokenStream":214,"../../LexerNoViableAltException":226,"../../ParserRuleContext":232,"../../Token":241,"./XPathLexer":351,"./XPathLexerErrorListener":352,"./XPathRuleAnywhereElement":353,"./XPathRuleElement":354,"./XPathTokenAnywhereElement":355,"./XPathTokenElement":356,"./XPathWildcardAnywhereElement":357,"./XPathWildcardElement":358}],350:[function(require,module,exports){
57134
57219
  "use strict";
57135
57220
  /*!
57136
57221
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57165,7 +57250,7 @@ __decorate([
57165
57250
  ], XPathElement.prototype, "toString", null);
57166
57251
  exports.XPathElement = XPathElement;
57167
57252
 
57168
- },{"../../Decorators":215}],350:[function(require,module,exports){
57253
+ },{"../../Decorators":216}],351:[function(require,module,exports){
57169
57254
  "use strict";
57170
57255
  // Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
57171
57256
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -57640,7 +57725,7 @@ XPathLexer._serializedATN = Utils.join([
57640
57725
  XPathLexer._serializedATNSegment1,
57641
57726
  ], "");
57642
57727
 
57643
- },{"../../Lexer":223,"../../VocabularyImpl":246,"../../atn/ATNDeserializer":252,"../../atn/LexerATNSimulator":273,"../../misc/Utils":334}],351:[function(require,module,exports){
57728
+ },{"../../Lexer":224,"../../VocabularyImpl":247,"../../atn/ATNDeserializer":253,"../../atn/LexerATNSimulator":274,"../../misc/Utils":335}],352:[function(require,module,exports){
57644
57729
  "use strict";
57645
57730
  /*!
57646
57731
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57665,7 +57750,7 @@ __decorate([
57665
57750
  ], XPathLexerErrorListener.prototype, "syntaxError", null);
57666
57751
  exports.XPathLexerErrorListener = XPathLexerErrorListener;
57667
57752
 
57668
- },{"../../Decorators":215}],352:[function(require,module,exports){
57753
+ },{"../../Decorators":216}],353:[function(require,module,exports){
57669
57754
  "use strict";
57670
57755
  /*!
57671
57756
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57699,7 +57784,7 @@ __decorate([
57699
57784
  ], XPathRuleAnywhereElement.prototype, "evaluate", null);
57700
57785
  exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
57701
57786
 
57702
- },{"../../Decorators":215,"../Trees":339,"./XPathElement":349}],353:[function(require,module,exports){
57787
+ },{"../../Decorators":216,"../Trees":340,"./XPathElement":350}],354:[function(require,module,exports){
57703
57788
  "use strict";
57704
57789
  /*!
57705
57790
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57742,7 +57827,7 @@ __decorate([
57742
57827
  ], XPathRuleElement.prototype, "evaluate", null);
57743
57828
  exports.XPathRuleElement = XPathRuleElement;
57744
57829
 
57745
- },{"../../Decorators":215,"../../ParserRuleContext":231,"../Trees":339,"./XPathElement":349}],354:[function(require,module,exports){
57830
+ },{"../../Decorators":216,"../../ParserRuleContext":232,"../Trees":340,"./XPathElement":350}],355:[function(require,module,exports){
57746
57831
  "use strict";
57747
57832
  /*!
57748
57833
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57774,7 +57859,7 @@ __decorate([
57774
57859
  ], XPathTokenAnywhereElement.prototype, "evaluate", null);
57775
57860
  exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
57776
57861
 
57777
- },{"../../Decorators":215,"../Trees":339,"./XPathElement":349}],355:[function(require,module,exports){
57862
+ },{"../../Decorators":216,"../Trees":340,"./XPathElement":350}],356:[function(require,module,exports){
57778
57863
  "use strict";
57779
57864
  /*!
57780
57865
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57817,7 +57902,7 @@ __decorate([
57817
57902
  ], XPathTokenElement.prototype, "evaluate", null);
57818
57903
  exports.XPathTokenElement = XPathTokenElement;
57819
57904
 
57820
- },{"../../Decorators":215,"../TerminalNode":338,"../Trees":339,"./XPathElement":349}],356:[function(require,module,exports){
57905
+ },{"../../Decorators":216,"../TerminalNode":339,"../Trees":340,"./XPathElement":350}],357:[function(require,module,exports){
57821
57906
  "use strict";
57822
57907
  /*!
57823
57908
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57853,7 +57938,7 @@ __decorate([
57853
57938
  ], XPathWildcardAnywhereElement.prototype, "evaluate", null);
57854
57939
  exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
57855
57940
 
57856
- },{"../../Decorators":215,"../Trees":339,"./XPath":348,"./XPathElement":349}],357:[function(require,module,exports){
57941
+ },{"../../Decorators":216,"../Trees":340,"./XPath":349,"./XPathElement":350}],358:[function(require,module,exports){
57857
57942
  "use strict";
57858
57943
  /*!
57859
57944
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -57893,7 +57978,7 @@ __decorate([
57893
57978
  ], XPathWildcardElement.prototype, "evaluate", null);
57894
57979
  exports.XPathWildcardElement = XPathWildcardElement;
57895
57980
 
57896
- },{"../../Decorators":215,"../Trees":339,"./XPath":348,"./XPathElement":349}],358:[function(require,module,exports){
57981
+ },{"../../Decorators":216,"../Trees":340,"./XPath":349,"./XPathElement":350}],359:[function(require,module,exports){
57897
57982
  (function (global){(function (){
57898
57983
  'use strict';
57899
57984
 
@@ -58403,7 +58488,7 @@ var objectKeys = Object.keys || function (obj) {
58403
58488
  };
58404
58489
 
58405
58490
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
58406
- },{"object.assign/polyfill":415,"util/":361}],359:[function(require,module,exports){
58491
+ },{"object.assign/polyfill":416,"util/":362}],360:[function(require,module,exports){
58407
58492
  if (typeof Object.create === 'function') {
58408
58493
  // implementation from standard node.js 'util' module
58409
58494
  module.exports = function inherits(ctor, superCtor) {
@@ -58428,14 +58513,14 @@ if (typeof Object.create === 'function') {
58428
58513
  }
58429
58514
  }
58430
58515
 
58431
- },{}],360:[function(require,module,exports){
58516
+ },{}],361:[function(require,module,exports){
58432
58517
  module.exports = function isBuffer(arg) {
58433
58518
  return arg && typeof arg === 'object'
58434
58519
  && typeof arg.copy === 'function'
58435
58520
  && typeof arg.fill === 'function'
58436
58521
  && typeof arg.readUInt8 === 'function';
58437
58522
  }
58438
- },{}],361:[function(require,module,exports){
58523
+ },{}],362:[function(require,module,exports){
58439
58524
  (function (process,global){(function (){
58440
58525
  // Copyright Joyent, Inc. and other Node contributors.
58441
58526
  //
@@ -59025,7 +59110,7 @@ function hasOwnProperty(obj, prop) {
59025
59110
  }
59026
59111
 
59027
59112
  }).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
59028
- },{"./support/isBuffer":360,"_process":417,"inherits":359}],362:[function(require,module,exports){
59113
+ },{"./support/isBuffer":361,"_process":418,"inherits":360}],363:[function(require,module,exports){
59029
59114
  (function (global){(function (){
59030
59115
  'use strict';
59031
59116
 
@@ -59046,7 +59131,7 @@ module.exports = function availableTypedArrays() {
59046
59131
  };
59047
59132
 
59048
59133
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
59049
- },{"possible-typed-array-names":416}],363:[function(require,module,exports){
59134
+ },{"possible-typed-array-names":417}],364:[function(require,module,exports){
59050
59135
  (function (process,global){(function (){
59051
59136
  module.exports = process.hrtime || hrtime
59052
59137
 
@@ -59077,7 +59162,7 @@ function hrtime(previousTimestamp){
59077
59162
  return [seconds,nanoseconds]
59078
59163
  }
59079
59164
  }).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
59080
- },{"_process":417}],364:[function(require,module,exports){
59165
+ },{"_process":418}],365:[function(require,module,exports){
59081
59166
  'use strict';
59082
59167
 
59083
59168
  var bind = require('function-bind');
@@ -59089,7 +59174,7 @@ var $reflectApply = require('./reflectApply');
59089
59174
  /** @type {import('./actualApply')} */
59090
59175
  module.exports = $reflectApply || bind.call($call, $apply);
59091
59176
 
59092
- },{"./functionApply":366,"./functionCall":367,"./reflectApply":369,"function-bind":385}],365:[function(require,module,exports){
59177
+ },{"./functionApply":367,"./functionCall":368,"./reflectApply":370,"function-bind":386}],366:[function(require,module,exports){
59093
59178
  'use strict';
59094
59179
 
59095
59180
  var bind = require('function-bind');
@@ -59101,19 +59186,19 @@ module.exports = function applyBind() {
59101
59186
  return actualApply(bind, $apply, arguments);
59102
59187
  };
59103
59188
 
59104
- },{"./actualApply":364,"./functionApply":366,"function-bind":385}],366:[function(require,module,exports){
59189
+ },{"./actualApply":365,"./functionApply":367,"function-bind":386}],367:[function(require,module,exports){
59105
59190
  'use strict';
59106
59191
 
59107
59192
  /** @type {import('./functionApply')} */
59108
59193
  module.exports = Function.prototype.apply;
59109
59194
 
59110
- },{}],367:[function(require,module,exports){
59195
+ },{}],368:[function(require,module,exports){
59111
59196
  'use strict';
59112
59197
 
59113
59198
  /** @type {import('./functionCall')} */
59114
59199
  module.exports = Function.prototype.call;
59115
59200
 
59116
- },{}],368:[function(require,module,exports){
59201
+ },{}],369:[function(require,module,exports){
59117
59202
  'use strict';
59118
59203
 
59119
59204
  var bind = require('function-bind');
@@ -59130,13 +59215,13 @@ module.exports = function callBindBasic(args) {
59130
59215
  return $actualApply(bind, $call, args);
59131
59216
  };
59132
59217
 
59133
- },{"./actualApply":364,"./functionCall":367,"es-errors/type":380,"function-bind":385}],369:[function(require,module,exports){
59218
+ },{"./actualApply":365,"./functionCall":368,"es-errors/type":381,"function-bind":386}],370:[function(require,module,exports){
59134
59219
  'use strict';
59135
59220
 
59136
59221
  /** @type {import('./reflectApply')} */
59137
59222
  module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
59138
59223
 
59139
- },{}],370:[function(require,module,exports){
59224
+ },{}],371:[function(require,module,exports){
59140
59225
  'use strict';
59141
59226
 
59142
59227
  var setFunctionLength = require('set-function-length');
@@ -59162,7 +59247,7 @@ if ($defineProperty) {
59162
59247
  module.exports.apply = applyBind;
59163
59248
  }
59164
59249
 
59165
- },{"call-bind-apply-helpers":368,"call-bind-apply-helpers/applyBind":365,"es-define-property":374,"set-function-length":419}],371:[function(require,module,exports){
59250
+ },{"call-bind-apply-helpers":369,"call-bind-apply-helpers/applyBind":366,"es-define-property":375,"set-function-length":420}],372:[function(require,module,exports){
59166
59251
  'use strict';
59167
59252
 
59168
59253
  var GetIntrinsic = require('get-intrinsic');
@@ -59183,7 +59268,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
59183
59268
  return intrinsic;
59184
59269
  };
59185
59270
 
59186
- },{"call-bind-apply-helpers":368,"get-intrinsic":386}],372:[function(require,module,exports){
59271
+ },{"call-bind-apply-helpers":369,"get-intrinsic":387}],373:[function(require,module,exports){
59187
59272
  'use strict';
59188
59273
 
59189
59274
  var $defineProperty = require('es-define-property');
@@ -59241,7 +59326,7 @@ module.exports = function defineDataProperty(
59241
59326
  }
59242
59327
  };
59243
59328
 
59244
- },{"es-define-property":374,"es-errors/syntax":379,"es-errors/type":380,"gopd":391}],373:[function(require,module,exports){
59329
+ },{"es-define-property":375,"es-errors/syntax":380,"es-errors/type":381,"gopd":392}],374:[function(require,module,exports){
59245
59330
  'use strict';
59246
59331
 
59247
59332
  var callBind = require('call-bind-apply-helpers');
@@ -59273,7 +59358,7 @@ module.exports = desc && typeof desc.get === 'function'
59273
59358
  }
59274
59359
  : false;
59275
59360
 
59276
- },{"call-bind-apply-helpers":368,"gopd":391}],374:[function(require,module,exports){
59361
+ },{"call-bind-apply-helpers":369,"gopd":392}],375:[function(require,module,exports){
59277
59362
  'use strict';
59278
59363
 
59279
59364
  /** @type {import('.')} */
@@ -59289,55 +59374,55 @@ if ($defineProperty) {
59289
59374
 
59290
59375
  module.exports = $defineProperty;
59291
59376
 
59292
- },{}],375:[function(require,module,exports){
59377
+ },{}],376:[function(require,module,exports){
59293
59378
  'use strict';
59294
59379
 
59295
59380
  /** @type {import('./eval')} */
59296
59381
  module.exports = EvalError;
59297
59382
 
59298
- },{}],376:[function(require,module,exports){
59383
+ },{}],377:[function(require,module,exports){
59299
59384
  'use strict';
59300
59385
 
59301
59386
  /** @type {import('.')} */
59302
59387
  module.exports = Error;
59303
59388
 
59304
- },{}],377:[function(require,module,exports){
59389
+ },{}],378:[function(require,module,exports){
59305
59390
  'use strict';
59306
59391
 
59307
59392
  /** @type {import('./range')} */
59308
59393
  module.exports = RangeError;
59309
59394
 
59310
- },{}],378:[function(require,module,exports){
59395
+ },{}],379:[function(require,module,exports){
59311
59396
  'use strict';
59312
59397
 
59313
59398
  /** @type {import('./ref')} */
59314
59399
  module.exports = ReferenceError;
59315
59400
 
59316
- },{}],379:[function(require,module,exports){
59401
+ },{}],380:[function(require,module,exports){
59317
59402
  'use strict';
59318
59403
 
59319
59404
  /** @type {import('./syntax')} */
59320
59405
  module.exports = SyntaxError;
59321
59406
 
59322
- },{}],380:[function(require,module,exports){
59407
+ },{}],381:[function(require,module,exports){
59323
59408
  'use strict';
59324
59409
 
59325
59410
  /** @type {import('./type')} */
59326
59411
  module.exports = TypeError;
59327
59412
 
59328
- },{}],381:[function(require,module,exports){
59413
+ },{}],382:[function(require,module,exports){
59329
59414
  'use strict';
59330
59415
 
59331
59416
  /** @type {import('./uri')} */
59332
59417
  module.exports = URIError;
59333
59418
 
59334
- },{}],382:[function(require,module,exports){
59419
+ },{}],383:[function(require,module,exports){
59335
59420
  'use strict';
59336
59421
 
59337
59422
  /** @type {import('.')} */
59338
59423
  module.exports = Object;
59339
59424
 
59340
- },{}],383:[function(require,module,exports){
59425
+ },{}],384:[function(require,module,exports){
59341
59426
  'use strict';
59342
59427
 
59343
59428
  var isCallable = require('is-callable');
@@ -59408,7 +59493,7 @@ module.exports = function forEach(list, iterator, thisArg) {
59408
59493
  }
59409
59494
  };
59410
59495
 
59411
- },{"is-callable":399}],384:[function(require,module,exports){
59496
+ },{"is-callable":400}],385:[function(require,module,exports){
59412
59497
  'use strict';
59413
59498
 
59414
59499
  /* eslint no-invalid-this: 1 */
@@ -59494,14 +59579,14 @@ module.exports = function bind(that) {
59494
59579
  return bound;
59495
59580
  };
59496
59581
 
59497
- },{}],385:[function(require,module,exports){
59582
+ },{}],386:[function(require,module,exports){
59498
59583
  'use strict';
59499
59584
 
59500
59585
  var implementation = require('./implementation');
59501
59586
 
59502
59587
  module.exports = Function.prototype.bind || implementation;
59503
59588
 
59504
- },{"./implementation":384}],386:[function(require,module,exports){
59589
+ },{"./implementation":385}],387:[function(require,module,exports){
59505
59590
  'use strict';
59506
59591
 
59507
59592
  var undefined;
@@ -59881,7 +59966,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
59881
59966
  return value;
59882
59967
  };
59883
59968
 
59884
- },{"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){
59969
+ },{"call-bind-apply-helpers/functionApply":367,"call-bind-apply-helpers/functionCall":368,"es-define-property":375,"es-errors":377,"es-errors/eval":376,"es-errors/range":378,"es-errors/ref":379,"es-errors/syntax":380,"es-errors/type":381,"es-errors/uri":382,"es-object-atoms":383,"function-bind":386,"get-proto":390,"get-proto/Object.getPrototypeOf":388,"get-proto/Reflect.getPrototypeOf":389,"gopd":392,"has-symbols":394,"hasown":397,"math-intrinsics/abs":404,"math-intrinsics/floor":405,"math-intrinsics/max":407,"math-intrinsics/min":408,"math-intrinsics/pow":409,"math-intrinsics/round":410,"math-intrinsics/sign":411}],388:[function(require,module,exports){
59885
59970
  'use strict';
59886
59971
 
59887
59972
  var $Object = require('es-object-atoms');
@@ -59889,13 +59974,13 @@ var $Object = require('es-object-atoms');
59889
59974
  /** @type {import('./Object.getPrototypeOf')} */
59890
59975
  module.exports = $Object.getPrototypeOf || null;
59891
59976
 
59892
- },{"es-object-atoms":382}],388:[function(require,module,exports){
59977
+ },{"es-object-atoms":383}],389:[function(require,module,exports){
59893
59978
  'use strict';
59894
59979
 
59895
59980
  /** @type {import('./Reflect.getPrototypeOf')} */
59896
59981
  module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
59897
59982
 
59898
- },{}],389:[function(require,module,exports){
59983
+ },{}],390:[function(require,module,exports){
59899
59984
  'use strict';
59900
59985
 
59901
59986
  var reflectGetProto = require('./Reflect.getPrototypeOf');
@@ -59924,13 +60009,13 @@ module.exports = reflectGetProto
59924
60009
  }
59925
60010
  : null;
59926
60011
 
59927
- },{"./Object.getPrototypeOf":387,"./Reflect.getPrototypeOf":388,"dunder-proto/get":373}],390:[function(require,module,exports){
60012
+ },{"./Object.getPrototypeOf":388,"./Reflect.getPrototypeOf":389,"dunder-proto/get":374}],391:[function(require,module,exports){
59928
60013
  'use strict';
59929
60014
 
59930
60015
  /** @type {import('./gOPD')} */
59931
60016
  module.exports = Object.getOwnPropertyDescriptor;
59932
60017
 
59933
- },{}],391:[function(require,module,exports){
60018
+ },{}],392:[function(require,module,exports){
59934
60019
  'use strict';
59935
60020
 
59936
60021
  /** @type {import('.')} */
@@ -59947,7 +60032,7 @@ if ($gOPD) {
59947
60032
 
59948
60033
  module.exports = $gOPD;
59949
60034
 
59950
- },{"./gOPD":390}],392:[function(require,module,exports){
60035
+ },{"./gOPD":391}],393:[function(require,module,exports){
59951
60036
  'use strict';
59952
60037
 
59953
60038
  var $defineProperty = require('es-define-property');
@@ -59971,7 +60056,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
59971
60056
 
59972
60057
  module.exports = hasPropertyDescriptors;
59973
60058
 
59974
- },{"es-define-property":374}],393:[function(require,module,exports){
60059
+ },{"es-define-property":375}],394:[function(require,module,exports){
59975
60060
  'use strict';
59976
60061
 
59977
60062
  var origSymbol = typeof Symbol !== 'undefined' && Symbol;
@@ -59987,7 +60072,7 @@ module.exports = function hasNativeSymbols() {
59987
60072
  return hasSymbolSham();
59988
60073
  };
59989
60074
 
59990
- },{"./shams":394}],394:[function(require,module,exports){
60075
+ },{"./shams":395}],395:[function(require,module,exports){
59991
60076
  'use strict';
59992
60077
 
59993
60078
  /** @type {import('./shams')} */
@@ -60034,7 +60119,7 @@ module.exports = function hasSymbols() {
60034
60119
  return true;
60035
60120
  };
60036
60121
 
60037
- },{}],395:[function(require,module,exports){
60122
+ },{}],396:[function(require,module,exports){
60038
60123
  'use strict';
60039
60124
 
60040
60125
  var hasSymbols = require('has-symbols/shams');
@@ -60044,7 +60129,7 @@ module.exports = function hasToStringTagShams() {
60044
60129
  return hasSymbols() && !!Symbol.toStringTag;
60045
60130
  };
60046
60131
 
60047
- },{"has-symbols/shams":394}],396:[function(require,module,exports){
60132
+ },{"has-symbols/shams":395}],397:[function(require,module,exports){
60048
60133
  'use strict';
60049
60134
 
60050
60135
  var call = Function.prototype.call;
@@ -60054,7 +60139,7 @@ var bind = require('function-bind');
60054
60139
  /** @type {import('.')} */
60055
60140
  module.exports = bind.call(call, $hasOwn);
60056
60141
 
60057
- },{"function-bind":385}],397:[function(require,module,exports){
60142
+ },{"function-bind":386}],398:[function(require,module,exports){
60058
60143
  if (typeof Object.create === 'function') {
60059
60144
  // implementation from standard node.js 'util' module
60060
60145
  module.exports = function inherits(ctor, superCtor) {
@@ -60083,7 +60168,7 @@ if (typeof Object.create === 'function') {
60083
60168
  }
60084
60169
  }
60085
60170
 
60086
- },{}],398:[function(require,module,exports){
60171
+ },{}],399:[function(require,module,exports){
60087
60172
  'use strict';
60088
60173
 
60089
60174
  var hasToStringTag = require('has-tostringtag/shams')();
@@ -60129,7 +60214,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
60129
60214
  /** @type {import('.')} */
60130
60215
  module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
60131
60216
 
60132
- },{"call-bound":371,"has-tostringtag/shams":395}],399:[function(require,module,exports){
60217
+ },{"call-bound":372,"has-tostringtag/shams":396}],400:[function(require,module,exports){
60133
60218
  'use strict';
60134
60219
 
60135
60220
  var fnToStr = Function.prototype.toString;
@@ -60232,7 +60317,7 @@ module.exports = reflectApply
60232
60317
  return tryFunctionObject(value);
60233
60318
  };
60234
60319
 
60235
- },{}],400:[function(require,module,exports){
60320
+ },{}],401:[function(require,module,exports){
60236
60321
  'use strict';
60237
60322
 
60238
60323
  var callBound = require('call-bound');
@@ -60281,7 +60366,7 @@ module.exports = function isGeneratorFunction(fn) {
60281
60366
  return getProto(fn) === GeneratorFunction;
60282
60367
  };
60283
60368
 
60284
- },{"call-bound":371,"get-proto":389,"has-tostringtag/shams":395,"safe-regex-test":418}],401:[function(require,module,exports){
60369
+ },{"call-bound":372,"get-proto":390,"has-tostringtag/shams":396,"safe-regex-test":419}],402:[function(require,module,exports){
60285
60370
  'use strict';
60286
60371
 
60287
60372
  var callBound = require('call-bound');
@@ -60352,7 +60437,7 @@ if (hasToStringTag) {
60352
60437
 
60353
60438
  module.exports = fn;
60354
60439
 
60355
- },{"call-bound":371,"gopd":391,"has-tostringtag/shams":395,"hasown":396}],402:[function(require,module,exports){
60440
+ },{"call-bound":372,"gopd":392,"has-tostringtag/shams":396,"hasown":397}],403:[function(require,module,exports){
60356
60441
  'use strict';
60357
60442
 
60358
60443
  var whichTypedArray = require('which-typed-array');
@@ -60362,19 +60447,19 @@ module.exports = function isTypedArray(value) {
60362
60447
  return !!whichTypedArray(value);
60363
60448
  };
60364
60449
 
60365
- },{"which-typed-array":423}],403:[function(require,module,exports){
60450
+ },{"which-typed-array":424}],404:[function(require,module,exports){
60366
60451
  'use strict';
60367
60452
 
60368
60453
  /** @type {import('./abs')} */
60369
60454
  module.exports = Math.abs;
60370
60455
 
60371
- },{}],404:[function(require,module,exports){
60456
+ },{}],405:[function(require,module,exports){
60372
60457
  'use strict';
60373
60458
 
60374
60459
  /** @type {import('./floor')} */
60375
60460
  module.exports = Math.floor;
60376
60461
 
60377
- },{}],405:[function(require,module,exports){
60462
+ },{}],406:[function(require,module,exports){
60378
60463
  'use strict';
60379
60464
 
60380
60465
  /** @type {import('./isNaN')} */
@@ -60382,31 +60467,31 @@ module.exports = Number.isNaN || function isNaN(a) {
60382
60467
  return a !== a;
60383
60468
  };
60384
60469
 
60385
- },{}],406:[function(require,module,exports){
60470
+ },{}],407:[function(require,module,exports){
60386
60471
  'use strict';
60387
60472
 
60388
60473
  /** @type {import('./max')} */
60389
60474
  module.exports = Math.max;
60390
60475
 
60391
- },{}],407:[function(require,module,exports){
60476
+ },{}],408:[function(require,module,exports){
60392
60477
  'use strict';
60393
60478
 
60394
60479
  /** @type {import('./min')} */
60395
60480
  module.exports = Math.min;
60396
60481
 
60397
- },{}],408:[function(require,module,exports){
60482
+ },{}],409:[function(require,module,exports){
60398
60483
  'use strict';
60399
60484
 
60400
60485
  /** @type {import('./pow')} */
60401
60486
  module.exports = Math.pow;
60402
60487
 
60403
- },{}],409:[function(require,module,exports){
60488
+ },{}],410:[function(require,module,exports){
60404
60489
  'use strict';
60405
60490
 
60406
60491
  /** @type {import('./round')} */
60407
60492
  module.exports = Math.round;
60408
60493
 
60409
- },{}],410:[function(require,module,exports){
60494
+ },{}],411:[function(require,module,exports){
60410
60495
  'use strict';
60411
60496
 
60412
60497
  var $isNaN = require('./isNaN');
@@ -60419,7 +60504,7 @@ module.exports = function sign(number) {
60419
60504
  return number < 0 ? -1 : +1;
60420
60505
  };
60421
60506
 
60422
- },{"./isNaN":405}],411:[function(require,module,exports){
60507
+ },{"./isNaN":406}],412:[function(require,module,exports){
60423
60508
  'use strict';
60424
60509
 
60425
60510
  var keysShim;
@@ -60543,7 +60628,7 @@ if (!Object.keys) {
60543
60628
  }
60544
60629
  module.exports = keysShim;
60545
60630
 
60546
- },{"./isArguments":413}],412:[function(require,module,exports){
60631
+ },{"./isArguments":414}],413:[function(require,module,exports){
60547
60632
  'use strict';
60548
60633
 
60549
60634
  var slice = Array.prototype.slice;
@@ -60577,7 +60662,7 @@ keysShim.shim = function shimObjectKeys() {
60577
60662
 
60578
60663
  module.exports = keysShim;
60579
60664
 
60580
- },{"./implementation":411,"./isArguments":413}],413:[function(require,module,exports){
60665
+ },{"./implementation":412,"./isArguments":414}],414:[function(require,module,exports){
60581
60666
  'use strict';
60582
60667
 
60583
60668
  var toStr = Object.prototype.toString;
@@ -60596,7 +60681,7 @@ module.exports = function isArguments(value) {
60596
60681
  return isArgs;
60597
60682
  };
60598
60683
 
60599
- },{}],414:[function(require,module,exports){
60684
+ },{}],415:[function(require,module,exports){
60600
60685
  'use strict';
60601
60686
 
60602
60687
  // modified from https://github.com/es-shims/es6-shim
@@ -60644,7 +60729,7 @@ module.exports = function assign(target, source1) {
60644
60729
  return to; // step 4
60645
60730
  };
60646
60731
 
60647
- },{"call-bound":371,"es-object-atoms":382,"has-symbols/shams":394,"object-keys":412}],415:[function(require,module,exports){
60732
+ },{"call-bound":372,"es-object-atoms":383,"has-symbols/shams":395,"object-keys":413}],416:[function(require,module,exports){
60648
60733
  'use strict';
60649
60734
 
60650
60735
  var implementation = require('./implementation');
@@ -60701,7 +60786,7 @@ module.exports = function getPolyfill() {
60701
60786
  return Object.assign;
60702
60787
  };
60703
60788
 
60704
- },{"./implementation":414}],416:[function(require,module,exports){
60789
+ },{"./implementation":415}],417:[function(require,module,exports){
60705
60790
  'use strict';
60706
60791
 
60707
60792
  /** @type {import('.')} */
@@ -60720,7 +60805,7 @@ module.exports = [
60720
60805
  'BigUint64Array'
60721
60806
  ];
60722
60807
 
60723
- },{}],417:[function(require,module,exports){
60808
+ },{}],418:[function(require,module,exports){
60724
60809
  // shim for using process in browser
60725
60810
  var process = module.exports = {};
60726
60811
 
@@ -60906,7 +60991,7 @@ process.chdir = function (dir) {
60906
60991
  };
60907
60992
  process.umask = function() { return 0; };
60908
60993
 
60909
- },{}],418:[function(require,module,exports){
60994
+ },{}],419:[function(require,module,exports){
60910
60995
  'use strict';
60911
60996
 
60912
60997
  var callBound = require('call-bound');
@@ -60925,7 +61010,7 @@ module.exports = function regexTester(regex) {
60925
61010
  };
60926
61011
  };
60927
61012
 
60928
- },{"call-bound":371,"es-errors/type":380,"is-regex":401}],419:[function(require,module,exports){
61013
+ },{"call-bound":372,"es-errors/type":381,"is-regex":402}],420:[function(require,module,exports){
60929
61014
  'use strict';
60930
61015
 
60931
61016
  var GetIntrinsic = require('get-intrinsic');
@@ -60969,9 +61054,9 @@ module.exports = function setFunctionLength(fn, length) {
60969
61054
  return fn;
60970
61055
  };
60971
61056
 
60972
- },{"define-data-property":372,"es-errors/type":380,"get-intrinsic":386,"gopd":391,"has-property-descriptors":392}],420:[function(require,module,exports){
60973
- arguments[4][360][0].apply(exports,arguments)
60974
- },{"dup":360}],421:[function(require,module,exports){
61057
+ },{"define-data-property":373,"es-errors/type":381,"get-intrinsic":387,"gopd":392,"has-property-descriptors":393}],421:[function(require,module,exports){
61058
+ arguments[4][361][0].apply(exports,arguments)
61059
+ },{"dup":361}],422:[function(require,module,exports){
60975
61060
  // Currently in sync with Node.js lib/internal/util/types.js
60976
61061
  // https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
60977
61062
 
@@ -61307,7 +61392,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
61307
61392
  });
61308
61393
  });
61309
61394
 
61310
- },{"is-arguments":398,"is-generator-function":400,"is-typed-array":402,"which-typed-array":423}],422:[function(require,module,exports){
61395
+ },{"is-arguments":399,"is-generator-function":401,"is-typed-array":403,"which-typed-array":424}],423:[function(require,module,exports){
61311
61396
  (function (process){(function (){
61312
61397
  // Copyright Joyent, Inc. and other Node contributors.
61313
61398
  //
@@ -62026,7 +62111,7 @@ function callbackify(original) {
62026
62111
  exports.callbackify = callbackify;
62027
62112
 
62028
62113
  }).call(this)}).call(this,require('_process'))
62029
- },{"./support/isBuffer":420,"./support/types":421,"_process":417,"inherits":397}],423:[function(require,module,exports){
62114
+ },{"./support/isBuffer":421,"./support/types":422,"_process":418,"inherits":398}],424:[function(require,module,exports){
62030
62115
  (function (global){(function (){
62031
62116
  'use strict';
62032
62117
 
@@ -62147,5 +62232,5 @@ module.exports = function whichTypedArray(value) {
62147
62232
  };
62148
62233
 
62149
62234
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
62150
- },{"available-typed-arrays":362,"call-bind":370,"call-bound":371,"for-each":383,"get-proto":389,"gopd":391,"has-tostringtag/shams":395}]},{},[112])(112)
62235
+ },{"available-typed-arrays":363,"call-bind":371,"call-bound":372,"for-each":384,"get-proto":390,"gopd":392,"has-tostringtag/shams":396}]},{},[113])(113)
62151
62236
  });