@designliquido/delegua 0.45.3 → 0.45.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/analisador-semantico/analisador-semantico.js +1 -1
  2. package/analisador-semantico/analisador-semantico.js.map +1 -1
  3. package/avaliador-sintatico/avaliador-sintatico.d.ts +10 -5
  4. package/avaliador-sintatico/avaliador-sintatico.d.ts.map +1 -1
  5. package/avaliador-sintatico/avaliador-sintatico.js +8 -3
  6. package/avaliador-sintatico/avaliador-sintatico.js.map +1 -1
  7. package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.d.ts +1 -1
  8. package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.d.ts.map +1 -1
  9. package/avaliador-sintatico/dialetos/avaliador-sintatico-tenda.d.ts.map +1 -1
  10. package/avaliador-sintatico/dialetos/avaliador-sintatico-tenda.js +3 -28
  11. package/avaliador-sintatico/dialetos/avaliador-sintatico-tenda.js.map +1 -1
  12. package/bin/package.json +1 -1
  13. package/construtos/funcao.d.ts +3 -2
  14. package/construtos/funcao.d.ts.map +1 -1
  15. package/construtos/funcao.js +3 -2
  16. package/construtos/funcao.js.map +1 -1
  17. package/construtos/index.d.ts +1 -0
  18. package/construtos/index.d.ts.map +1 -1
  19. package/construtos/index.js +1 -0
  20. package/construtos/index.js.map +1 -1
  21. package/construtos/referencia-biblioteca-global.d.ts +14 -0
  22. package/construtos/referencia-biblioteca-global.d.ts.map +1 -0
  23. package/construtos/referencia-biblioteca-global.js +19 -0
  24. package/construtos/referencia-biblioteca-global.js.map +1 -0
  25. package/interfaces/interpretador-com-depuracao-interface.d.ts +1 -0
  26. package/interfaces/interpretador-com-depuracao-interface.d.ts.map +1 -1
  27. package/interpretador/depuracao/comum.d.ts +11 -0
  28. package/interpretador/depuracao/comum.d.ts.map +1 -1
  29. package/interpretador/depuracao/comum.js +23 -19
  30. package/interpretador/depuracao/comum.js.map +1 -1
  31. package/interpretador/depuracao/interpretador-base-com-depuracao.d.ts +1 -0
  32. package/interpretador/depuracao/interpretador-base-com-depuracao.d.ts.map +1 -1
  33. package/interpretador/depuracao/interpretador-base-com-depuracao.js +3 -0
  34. package/interpretador/depuracao/interpretador-base-com-depuracao.js.map +1 -1
  35. package/interpretador/depuracao/interpretador-com-depuracao.d.ts +1 -0
  36. package/interpretador/depuracao/interpretador-com-depuracao.d.ts.map +1 -1
  37. package/interpretador/depuracao/interpretador-com-depuracao.js +3 -0
  38. package/interpretador/depuracao/interpretador-com-depuracao.js.map +1 -1
  39. package/interpretador/interpretador.d.ts.map +1 -1
  40. package/interpretador/interpretador.js +6 -4
  41. package/interpretador/interpretador.js.map +1 -1
  42. package/lexador/dialetos/lexador-tenda.d.ts.map +1 -1
  43. package/lexador/dialetos/lexador-tenda.js +3 -14
  44. package/lexador/dialetos/lexador-tenda.js.map +1 -1
  45. package/lexador/dialetos/palavras-reservadas/tenda.d.ts +8 -5
  46. package/lexador/dialetos/palavras-reservadas/tenda.d.ts.map +1 -1
  47. package/lexador/dialetos/palavras-reservadas/tenda.js +9 -5
  48. package/lexador/dialetos/palavras-reservadas/tenda.js.map +1 -1
  49. package/package.json +1 -1
  50. package/tipos-de-simbolos/tenda.d.ts +7 -15
  51. package/tipos-de-simbolos/tenda.d.ts.map +1 -1
  52. package/tipos-de-simbolos/tenda.js +7 -15
  53. package/tipos-de-simbolos/tenda.js.map +1 -1
  54. package/umd/delegua.js +428 -439
package/umd/delegua.js CHANGED
@@ -244,7 +244,7 @@ class AvaliadorSintaticoBase {
244
244
  }
245
245
  exports.AvaliadorSintaticoBase = AvaliadorSintaticoBase;
246
246
 
247
- },{"../construtos":44,"../declaracoes":84,"../tipos-de-simbolos/comum":167,"./erro-avaliador-sintatico":9}],2:[function(require,module,exports){
247
+ },{"../construtos":44,"../declaracoes":85,"../tipos-de-simbolos/comum":168,"./erro-avaliador-sintatico":9}],2:[function(require,module,exports){
248
248
  "use strict";
249
249
  var __importDefault = (this && this.__importDefault) || function (mod) {
250
250
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -276,8 +276,13 @@ const comum_1 = require("./comum");
276
276
  * Construtos não existem por si só: cada construto precisa estar dentro de uma declaração para ser
277
277
  * aceito pela próxima etapa, como tradução, interpretação, análise semântica, etc.
278
278
  *
279
- * Diferentemente de outros dialetos, em Delégua um construto normalmente retorna um tipo.
280
- * Por isso a separação deste avaliador sintático do avaliador sintático base.
279
+ * Este é o avaliador sintático de Delégua que, assim como todos os demais dialetos baseados
280
+ * neste núcleo, são uma derivação do avaliador sintático base. Aqui estão implementadas várias mecânicas
281
+ * a mais relacionadas a tipagem e registros de bibliotecas externas. Por exemplo, `tiposDeFerramentasExternas`
282
+ * é utilizada em [Liquido](https://github.com/DesignLiquido/liquido) para registro de tipos exclusivos
283
+ * de Liquido, como classes de requisição e resposta. `primitivasConhecidas` é utilizada aqui para
284
+ * registro de métodos relacionados a tipos, e também para as bibliotecas externas de Delégua registrarem
285
+ * suas respectivas resoluções de tipos.
281
286
  */
282
287
  class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBase {
283
288
  constructor(performance = false) {
@@ -1647,7 +1652,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
1647
1652
  tipoRetorno = 'vazio';
1648
1653
  }
1649
1654
  }
1650
- return new construtos_1.FuncaoConstruto(this.hashArquivo, Number(parenteseEsquerdo.linha), parametros, corpo, tipoRetorno);
1655
+ return new construtos_1.FuncaoConstruto(this.hashArquivo, Number(parenteseEsquerdo.linha), parametros, corpo, tipoRetorno, definicaoExplicitaDeTipo);
1651
1656
  }
1652
1657
  declaracaoDeClasse() {
1653
1658
  const simbolo = this.consumir(delegua_2.default.IDENTIFICADOR, 'Esperado nome da classe.');
@@ -1884,7 +1889,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
1884
1889
  }
1885
1890
  exports.AvaliadorSintatico = AvaliadorSintatico;
1886
1891
 
1887
- },{"../bibliotecas/primitivas-dicionario":18,"../bibliotecas/primitivas-numero":19,"../bibliotecas/primitivas-texto":20,"../bibliotecas/primitivas-vetor":21,"../construtos":44,"../construtos/tuplas":54,"../declaracoes":84,"../inferenciador":107,"../informacao-variavel-ou-constante":108,"../tipos-de-dados/delegua":165,"../tipos-de-simbolos/delegua":168,"./avaliador-sintatico-base":1,"./comum":3,"./erro-avaliador-sintatico":9,"./informacao-escopo":11,"./pilha-escopos":14,"browser-process-hrtime":347}],3:[function(require,module,exports){
1892
+ },{"../bibliotecas/primitivas-dicionario":18,"../bibliotecas/primitivas-numero":19,"../bibliotecas/primitivas-texto":20,"../bibliotecas/primitivas-vetor":21,"../construtos":44,"../construtos/tuplas":55,"../declaracoes":85,"../inferenciador":108,"../informacao-variavel-ou-constante":109,"../tipos-de-dados/delegua":166,"../tipos-de-simbolos/delegua":169,"./avaliador-sintatico-base":1,"./comum":3,"./erro-avaliador-sintatico":9,"./informacao-escopo":11,"./pilha-escopos":14,"browser-process-hrtime":348}],3:[function(require,module,exports){
1888
1893
  "use strict";
1889
1894
  Object.defineProperty(exports, "__esModule", { value: true });
1890
1895
  exports.registrarPrimitiva = registrarPrimitiva;
@@ -1896,7 +1901,7 @@ function registrarPrimitiva(primitivasConhecidas, tipo, catalogoPrimitivas) {
1896
1901
  }
1897
1902
  }
1898
1903
 
1899
- },{"../informacao-variavel-ou-constante":108}],4:[function(require,module,exports){
1904
+ },{"../informacao-variavel-ou-constante":109}],4:[function(require,module,exports){
1900
1905
  "use strict";
1901
1906
  var __importDefault = (this && this.__importDefault) || function (mod) {
1902
1907
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -2551,7 +2556,7 @@ class AvaliadorSintaticoEguaClassico {
2551
2556
  }
2552
2557
  exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
2553
2558
 
2554
- },{"../../construtos":44,"../../declaracoes":84,"../../tipos-de-simbolos/egua-classico":169,"../erro-avaliador-sintatico":9}],5:[function(require,module,exports){
2559
+ },{"../../construtos":44,"../../declaracoes":85,"../../tipos-de-simbolos/egua-classico":170,"../erro-avaliador-sintatico":9}],5:[function(require,module,exports){
2555
2560
  "use strict";
2556
2561
  var __importDefault = (this && this.__importDefault) || function (mod) {
2557
2562
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -3581,7 +3586,7 @@ class AvaliadorSintaticoPitugues {
3581
3586
  }
3582
3587
  exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
3583
3588
 
3584
- },{"../../bibliotecas/primitivas-dicionario":18,"../../bibliotecas/primitivas-numero":19,"../../bibliotecas/primitivas-texto":20,"../../bibliotecas/primitivas-vetor":21,"../../construtos":44,"../../declaracoes":84,"../../inferenciador":107,"../../informacao-variavel-ou-constante":108,"../../lexador":157,"../../tipos-de-simbolos/pitugues":172,"../comum":3,"../erro-avaliador-sintatico":9,"../informacao-escopo":11,"../pilha-escopos":14,"browser-process-hrtime":347}],6:[function(require,module,exports){
3589
+ },{"../../bibliotecas/primitivas-dicionario":18,"../../bibliotecas/primitivas-numero":19,"../../bibliotecas/primitivas-texto":20,"../../bibliotecas/primitivas-vetor":21,"../../construtos":44,"../../declaracoes":85,"../../inferenciador":108,"../../informacao-variavel-ou-constante":109,"../../lexador":158,"../../tipos-de-simbolos/pitugues":173,"../comum":3,"../erro-avaliador-sintatico":9,"../informacao-escopo":11,"../pilha-escopos":14,"browser-process-hrtime":348}],6:[function(require,module,exports){
3585
3590
  "use strict";
3586
3591
  var __importDefault = (this && this.__importDefault) || function (mod) {
3587
3592
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -3750,7 +3755,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
3750
3755
  }
3751
3756
  exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
3752
3757
 
3753
- },{"../../construtos":44,"../../declaracoes":84,"../../tipos-de-simbolos/portugol-ipt":173,"../avaliador-sintatico-base":1}],7:[function(require,module,exports){
3758
+ },{"../../construtos":44,"../../declaracoes":85,"../../tipos-de-simbolos/portugol-ipt":174,"../avaliador-sintatico-base":1}],7:[function(require,module,exports){
3754
3759
  "use strict";
3755
3760
  var __importDefault = (this && this.__importDefault) || function (mod) {
3756
3761
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -3936,7 +3941,6 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
3936
3941
  case tenda_1.default.FALSO:
3937
3942
  this.avancarEDevolverAnterior();
3938
3943
  return new construtos_1.Literal(this.hashArquivo, Number(simboloAtual.linha), false, 'lógico');
3939
- case tenda_1.default.FUNCAO:
3940
3944
  case tenda_1.default.FUNÇÃO:
3941
3945
  const simboloFuncao = this.avancarEDevolverAnterior();
3942
3946
  // Avançamos o parêntese esquerdo aqui, porque `corpoDaFuncao`
@@ -4173,7 +4177,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
4173
4177
  }
4174
4178
  multiplicar() {
4175
4179
  let expressao = this.exponenciacao();
4176
- while (this.verificarSeSimboloAtualEIgualA(tenda_1.default.DIVISAO, tenda_1.default.DIVISAO_IGUAL, tenda_1.default.DIVISAO_INTEIRA, tenda_1.default.DIVISAO_INTEIRA_IGUAL, tenda_1.default.MODULO, tenda_1.default.MODULO_IGUAL, tenda_1.default.MULTIPLICACAO, tenda_1.default.MULTIPLICACAO_IGUAL)) {
4180
+ while (this.verificarSeSimboloAtualEIgualA(tenda_1.default.DIVISAO, tenda_1.default.DIVISAO_INTEIRA, tenda_1.default.MODULO, tenda_1.default.MULTIPLICACAO)) {
4177
4181
  const operador = this.simbolos[this.atual - 1];
4178
4182
  const direito = this.exponenciacao();
4179
4183
  expressao = new construtos_1.Binario(this.hashArquivo, expressao, operador, direito);
@@ -4187,15 +4191,9 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
4187
4191
  */
4188
4192
  adicaoOuSubtracao() {
4189
4193
  let expressao = this.multiplicar();
4190
- while (this.verificarSeSimboloAtualEIgualA(tenda_1.default.SUBTRACAO, tenda_1.default.ADICAO, tenda_1.default.MENOS_IGUAL)) {
4194
+ while (this.verificarSeSimboloAtualEIgualA(tenda_1.default.SUBTRACAO, tenda_1.default.ADICAO)) {
4191
4195
  const operador = this.simbolos[this.atual - 1];
4192
4196
  const direito = this.multiplicar();
4193
- // const tipoInferido = inferirTipoParaBinario(expressao, operador, direito);
4194
- expressao = new construtos_1.Binario(this.hashArquivo, expressao, operador, direito);
4195
- }
4196
- if (this.verificarSeSimboloAtualEIgualA(tenda_1.default.MAIS_IGUAL)) {
4197
- const operador = this.simbolos[this.atual - 1];
4198
- const direito = this.atribuir();
4199
4197
  expressao = new construtos_1.Binario(this.hashArquivo, expressao, operador, direito);
4200
4198
  }
4201
4199
  return expressao;
@@ -4275,22 +4273,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
4275
4273
  */
4276
4274
  atribuir() {
4277
4275
  const expressao = this.ou();
4278
- if (expressao instanceof construtos_1.Binario &&
4279
- [
4280
- tenda_1.default.MAIS_IGUAL,
4281
- tenda_1.default.MENOS_IGUAL,
4282
- tenda_1.default.MULTIPLICACAO_IGUAL,
4283
- tenda_1.default.DIVISAO_IGUAL,
4284
- tenda_1.default.DIVISAO_INTEIRA_IGUAL,
4285
- tenda_1.default.MODULO_IGUAL,
4286
- ].includes(expressao.operador.tipo)) {
4287
- if (expressao.esquerda instanceof construtos_1.AcessoIndiceVariavel) {
4288
- const entidade = expressao.esquerda;
4289
- return new construtos_1.Atribuir(this.hashArquivo, entidade.entidadeChamada, expressao, entidade.indice, expressao.operador);
4290
- }
4291
- return new construtos_1.Atribuir(this.hashArquivo, expressao.esquerda, expressao, undefined, expressao.operador);
4292
- }
4293
- else if (this.verificarSeSimboloAtualEIgualA(tenda_1.default.IGUAL)) {
4276
+ if (this.verificarSeSimboloAtualEIgualA(tenda_1.default.IGUAL)) {
4294
4277
  const igual = this.simbolos[this.atual - 1];
4295
4278
  const valor = this.expressao();
4296
4279
  switch (expressao.constructor.name) {
@@ -4450,7 +4433,6 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
4450
4433
  tenda_1.default.CHAVE_ESQUERDA,
4451
4434
  tenda_1.default.COLCHETE_ESQUERDO,
4452
4435
  tenda_1.default.FALSO,
4453
- tenda_1.default.FUNCAO,
4454
4436
  tenda_1.default.FUNÇÃO,
4455
4437
  tenda_1.default.IDENTIFICADOR,
4456
4438
  tenda_1.default.ISTO,
@@ -4696,8 +4678,6 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
4696
4678
  while (!this.estaNoFinal()) {
4697
4679
  const tipoSimboloAtual = this.simbolos[this.atual - 1].tipo;
4698
4680
  switch (tipoSimboloAtual) {
4699
- case tenda_1.default.CLASSE:
4700
- case tenda_1.default.FUNCAO:
4701
4681
  case tenda_1.default.FUNÇÃO:
4702
4682
  case tenda_1.default.VARIAVEL:
4703
4683
  case tenda_1.default.PARA:
@@ -4838,7 +4818,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
4838
4818
  }
4839
4819
  exports.AvaliadorSintaticoTenda = AvaliadorSintaticoTenda;
4840
4820
 
4841
- },{"../../bibliotecas/primitivas-dicionario":18,"../../bibliotecas/primitivas-numero":19,"../../bibliotecas/primitivas-texto":20,"../../bibliotecas/primitivas-vetor":21,"../../construtos":44,"../../construtos/tuplas":54,"../../declaracoes":84,"../../inferenciador":107,"../../informacao-variavel-ou-constante":108,"../../lexador/simbolo":163,"../../tipos-de-dados/delegua":165,"../../tipos-de-simbolos/tenda":174,"../avaliador-sintatico-base":1,"./../erro-avaliador-sintatico":9,"./../informacao-escopo":11,"./../pilha-escopos":14,"browser-process-hrtime":347}],8:[function(require,module,exports){
4821
+ },{"../../bibliotecas/primitivas-dicionario":18,"../../bibliotecas/primitivas-numero":19,"../../bibliotecas/primitivas-texto":20,"../../bibliotecas/primitivas-vetor":21,"../../construtos":44,"../../construtos/tuplas":55,"../../declaracoes":85,"../../inferenciador":108,"../../informacao-variavel-ou-constante":109,"../../lexador/simbolo":164,"../../tipos-de-dados/delegua":166,"../../tipos-de-simbolos/tenda":175,"../avaliador-sintatico-base":1,"./../erro-avaliador-sintatico":9,"./../informacao-escopo":11,"./../pilha-escopos":14,"browser-process-hrtime":348}],8:[function(require,module,exports){
4842
4822
  "use strict";
4843
4823
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4844
4824
  if (k2 === undefined) k2 = k;
@@ -5031,7 +5011,7 @@ class MicroAvaliadorSintaticoBase {
5031
5011
  }
5032
5012
  exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
5033
5013
 
5034
- },{"../construtos":44,"../tipos-de-simbolos/comum":167,"./erro-avaliador-sintatico":9}],13:[function(require,module,exports){
5014
+ },{"../construtos":44,"../tipos-de-simbolos/comum":168,"./erro-avaliador-sintatico":9}],13:[function(require,module,exports){
5035
5015
  "use strict";
5036
5016
  var __importDefault = (this && this.__importDefault) || function (mod) {
5037
5017
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -5237,7 +5217,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
5237
5217
  }
5238
5218
  exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
5239
5219
 
5240
- },{"../construtos":44,"../tipos-de-simbolos/microgramaticas/delegua":171,"./micro-avaliador-sintatico-base":12}],14:[function(require,module,exports){
5220
+ },{"../construtos":44,"../tipos-de-simbolos/microgramaticas/delegua":172,"./micro-avaliador-sintatico-base":12}],14:[function(require,module,exports){
5241
5221
  "use strict";
5242
5222
  Object.defineProperty(exports, "__esModule", { value: true });
5243
5223
  exports.PilhaEscopos = void 0;
@@ -5865,7 +5845,7 @@ async function tupla(interpretador, vetor) {
5865
5845
  }
5866
5846
  }
5867
5847
 
5868
- },{"../construtos":44,"../excecoes":101,"../interpretador/estruturas":137,"../interpretador/estruturas/descritor-tipo-classe":135,"../interpretador/estruturas/funcao-padrao":136,"../interpretador/estruturas/objeto-delegua-classe":140}],18:[function(require,module,exports){
5848
+ },{"../construtos":44,"../excecoes":102,"../interpretador/estruturas":138,"../interpretador/estruturas/descritor-tipo-classe":136,"../interpretador/estruturas/funcao-padrao":137,"../interpretador/estruturas/objeto-delegua-classe":141}],18:[function(require,module,exports){
5869
5849
  "use strict";
5870
5850
  Object.defineProperty(exports, "__esModule", { value: true });
5871
5851
  exports.default = {
@@ -6001,7 +5981,7 @@ exports.default = {
6001
5981
  },
6002
5982
  };
6003
5983
 
6004
- },{"../informacao-variavel-ou-constante":108}],21:[function(require,module,exports){
5984
+ },{"../informacao-variavel-ou-constante":109}],21:[function(require,module,exports){
6005
5985
  "use strict";
6006
5986
  Object.defineProperty(exports, "__esModule", { value: true });
6007
5987
  const informacao_variavel_ou_constante_1 = require("../informacao-variavel-ou-constante");
@@ -6168,7 +6148,7 @@ exports.default = {
6168
6148
  },
6169
6149
  };
6170
6150
 
6171
- },{"../informacao-variavel-ou-constante":108}],22:[function(require,module,exports){
6151
+ },{"../informacao-variavel-ou-constante":109}],22:[function(require,module,exports){
6172
6152
  "use strict";
6173
6153
  Object.defineProperty(exports, "__esModule", { value: true });
6174
6154
  exports.AcessoElementoMatriz = void 0;
@@ -6460,7 +6440,7 @@ class Chamada {
6460
6440
  }
6461
6441
  exports.Chamada = Chamada;
6462
6442
 
6463
- },{"../geracao-identificadores":105}],34:[function(require,module,exports){
6443
+ },{"../geracao-identificadores":106}],34:[function(require,module,exports){
6464
6444
  "use strict";
6465
6445
  Object.defineProperty(exports, "__esModule", { value: true });
6466
6446
  exports.ComponenteLinguagem = void 0;
@@ -6632,12 +6612,13 @@ exports.FormatacaoEscrita = FormatacaoEscrita;
6632
6612
  Object.defineProperty(exports, "__esModule", { value: true });
6633
6613
  exports.FuncaoConstruto = void 0;
6634
6614
  class FuncaoConstruto {
6635
- constructor(hashArquivo, linha, parametros, corpo, tipoRetorno) {
6615
+ constructor(hashArquivo, linha, parametros, corpo, tipoRetorno, tipoExplicito) {
6636
6616
  this.linha = linha;
6637
6617
  this.hashArquivo = hashArquivo;
6638
6618
  this.parametros = parametros;
6639
- this.tipo = tipoRetorno;
6640
6619
  this.corpo = corpo;
6620
+ this.tipo = tipoRetorno;
6621
+ this.tipoExplicito = tipoExplicito || false;
6641
6622
  }
6642
6623
  async aceitar(visitante) {
6643
6624
  return Promise.resolve(visitante.visitarExpressaoFuncaoConstruto(this));
@@ -6688,6 +6669,7 @@ __exportStar(require("./isto"), exports);
6688
6669
  __exportStar(require("./leia"), exports);
6689
6670
  __exportStar(require("./literal"), exports);
6690
6671
  __exportStar(require("./logico"), exports);
6672
+ __exportStar(require("./referencia-biblioteca-global"), exports);
6691
6673
  __exportStar(require("./referencia-funcao"), exports);
6692
6674
  __exportStar(require("./super"), exports);
6693
6675
  __exportStar(require("./tipo-de"), exports);
@@ -6696,7 +6678,7 @@ __exportStar(require("./unario"), exports);
6696
6678
  __exportStar(require("./variavel"), exports);
6697
6679
  __exportStar(require("./vetor"), exports);
6698
6680
 
6699
- },{"./acesso-elemento-matriz":22,"./acesso-indice-variavel":23,"./acesso-metodo":25,"./acesso-metodo-ou-propriedade":24,"./acesso-propriedade":26,"./agrupamento":27,"./argumento-referencia-funcao":28,"./atribuicao-por-indice":29,"./atribuicao-por-indices-matriz":30,"./atribuir":31,"./binario":32,"./chamada":33,"./componente-linguagem":34,"./constante":35,"./construto":36,"./decorador":37,"./definir-valor":38,"./dicionario":39,"./expressao-regular":40,"./fim-para":41,"./formatacao-escrita":42,"./funcao":43,"./isto":45,"./leia":46,"./literal":47,"./logico":48,"./referencia-funcao":49,"./super":50,"./tipo-de":51,"./tuplas":54,"./unario":63,"./variavel":64,"./vetor":65}],45:[function(require,module,exports){
6681
+ },{"./acesso-elemento-matriz":22,"./acesso-indice-variavel":23,"./acesso-metodo":25,"./acesso-metodo-ou-propriedade":24,"./acesso-propriedade":26,"./agrupamento":27,"./argumento-referencia-funcao":28,"./atribuicao-por-indice":29,"./atribuicao-por-indices-matriz":30,"./atribuir":31,"./binario":32,"./chamada":33,"./componente-linguagem":34,"./constante":35,"./construto":36,"./decorador":37,"./definir-valor":38,"./dicionario":39,"./expressao-regular":40,"./fim-para":41,"./formatacao-escrita":42,"./funcao":43,"./isto":45,"./leia":46,"./literal":47,"./logico":48,"./referencia-biblioteca-global":49,"./referencia-funcao":50,"./super":51,"./tipo-de":52,"./tuplas":55,"./unario":64,"./variavel":65,"./vetor":66}],45:[function(require,module,exports){
6700
6682
  "use strict";
6701
6683
  Object.defineProperty(exports, "__esModule", { value: true });
6702
6684
  exports.Isto = void 0;
@@ -6735,7 +6717,7 @@ class Leia {
6735
6717
  }
6736
6718
  exports.Leia = Leia;
6737
6719
 
6738
- },{"../geracao-identificadores":105}],47:[function(require,module,exports){
6720
+ },{"../geracao-identificadores":106}],47:[function(require,module,exports){
6739
6721
  "use strict";
6740
6722
  Object.defineProperty(exports, "__esModule", { value: true });
6741
6723
  exports.Literal = void 0;
@@ -6773,6 +6755,26 @@ exports.Logico = Logico;
6773
6755
  },{}],49:[function(require,module,exports){
6774
6756
  "use strict";
6775
6757
  Object.defineProperty(exports, "__esModule", { value: true });
6758
+ exports.ReferenciaBibliotecaGlobal = void 0;
6759
+ /**
6760
+ * Um decorador é um construto especial que, em código, existe antes de uma declaração, e
6761
+ * na avaliação sintática, é colocado juntamente com a próxima declaração.
6762
+ */
6763
+ class ReferenciaBibliotecaGlobal {
6764
+ constructor(hashArquivo, linha, nome) {
6765
+ this.linha = linha;
6766
+ this.hashArquivo = hashArquivo;
6767
+ this.nome = nome;
6768
+ }
6769
+ async aceitar(visitante) {
6770
+ return Promise.reject(new Error('Este método não deveria ser chamado.'));
6771
+ }
6772
+ }
6773
+ exports.ReferenciaBibliotecaGlobal = ReferenciaBibliotecaGlobal;
6774
+
6775
+ },{}],50:[function(require,module,exports){
6776
+ "use strict";
6777
+ Object.defineProperty(exports, "__esModule", { value: true });
6776
6778
  exports.ReferenciaFuncao = void 0;
6777
6779
  class ReferenciaFuncao {
6778
6780
  constructor(hashArquivo, linha, simboloFuncao, tipo, idfuncao) {
@@ -6788,7 +6790,7 @@ class ReferenciaFuncao {
6788
6790
  }
6789
6791
  exports.ReferenciaFuncao = ReferenciaFuncao;
6790
6792
 
6791
- },{}],50:[function(require,module,exports){
6793
+ },{}],51:[function(require,module,exports){
6792
6794
  "use strict";
6793
6795
  Object.defineProperty(exports, "__esModule", { value: true });
6794
6796
  exports.Super = void 0;
@@ -6805,7 +6807,7 @@ class Super {
6805
6807
  }
6806
6808
  exports.Super = Super;
6807
6809
 
6808
- },{}],51:[function(require,module,exports){
6810
+ },{}],52:[function(require,module,exports){
6809
6811
  "use strict";
6810
6812
  Object.defineProperty(exports, "__esModule", { value: true });
6811
6813
  exports.TipoDe = void 0;
@@ -6826,7 +6828,7 @@ class TipoDe {
6826
6828
  }
6827
6829
  exports.TipoDe = TipoDe;
6828
6830
 
6829
- },{}],52:[function(require,module,exports){
6831
+ },{}],53:[function(require,module,exports){
6830
6832
  "use strict";
6831
6833
  Object.defineProperty(exports, "__esModule", { value: true });
6832
6834
  exports.Deceto = void 0;
@@ -6860,7 +6862,7 @@ class Deceto extends tupla_1.Tupla {
6860
6862
  }
6861
6863
  exports.Deceto = Deceto;
6862
6864
 
6863
- },{"./tupla":62}],53:[function(require,module,exports){
6865
+ },{"./tupla":63}],54:[function(require,module,exports){
6864
6866
  "use strict";
6865
6867
  Object.defineProperty(exports, "__esModule", { value: true });
6866
6868
  exports.Dupla = void 0;
@@ -6874,7 +6876,7 @@ class Dupla extends tupla_1.Tupla {
6874
6876
  }
6875
6877
  exports.Dupla = Dupla;
6876
6878
 
6877
- },{"./tupla":62}],54:[function(require,module,exports){
6879
+ },{"./tupla":63}],55:[function(require,module,exports){
6878
6880
  "use strict";
6879
6881
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6880
6882
  if (k2 === undefined) k2 = k;
@@ -6943,7 +6945,7 @@ class SeletorTuplas {
6943
6945
  }
6944
6946
  exports.SeletorTuplas = SeletorTuplas;
6945
6947
 
6946
- },{"./deceto":52,"./dupla":53,"./noneto":55,"./octeto":56,"./quarteto":57,"./quinteto":58,"./septeto":59,"./sexteto":60,"./trio":61,"./tupla":62}],55:[function(require,module,exports){
6948
+ },{"./deceto":53,"./dupla":54,"./noneto":56,"./octeto":57,"./quarteto":58,"./quinteto":59,"./septeto":60,"./sexteto":61,"./trio":62,"./tupla":63}],56:[function(require,module,exports){
6947
6949
  "use strict";
6948
6950
  Object.defineProperty(exports, "__esModule", { value: true });
6949
6951
  exports.Noneto = void 0;
@@ -6970,7 +6972,7 @@ class Noneto extends tupla_1.Tupla {
6970
6972
  }
6971
6973
  exports.Noneto = Noneto;
6972
6974
 
6973
- },{"./tupla":62}],56:[function(require,module,exports){
6975
+ },{"./tupla":63}],57:[function(require,module,exports){
6974
6976
  "use strict";
6975
6977
  Object.defineProperty(exports, "__esModule", { value: true });
6976
6978
  exports.Octeto = void 0;
@@ -6996,7 +6998,7 @@ class Octeto extends tupla_1.Tupla {
6996
6998
  }
6997
6999
  exports.Octeto = Octeto;
6998
7000
 
6999
- },{"./tupla":62}],57:[function(require,module,exports){
7001
+ },{"./tupla":63}],58:[function(require,module,exports){
7000
7002
  "use strict";
7001
7003
  Object.defineProperty(exports, "__esModule", { value: true });
7002
7004
  exports.Quarteto = void 0;
@@ -7012,7 +7014,7 @@ class Quarteto extends tupla_1.Tupla {
7012
7014
  }
7013
7015
  exports.Quarteto = Quarteto;
7014
7016
 
7015
- },{"./tupla":62}],58:[function(require,module,exports){
7017
+ },{"./tupla":63}],59:[function(require,module,exports){
7016
7018
  "use strict";
7017
7019
  Object.defineProperty(exports, "__esModule", { value: true });
7018
7020
  exports.Quinteto = void 0;
@@ -7029,7 +7031,7 @@ class Quinteto extends tupla_1.Tupla {
7029
7031
  }
7030
7032
  exports.Quinteto = Quinteto;
7031
7033
 
7032
- },{"./tupla":62}],59:[function(require,module,exports){
7034
+ },{"./tupla":63}],60:[function(require,module,exports){
7033
7035
  "use strict";
7034
7036
  Object.defineProperty(exports, "__esModule", { value: true });
7035
7037
  exports.Septeto = void 0;
@@ -7054,7 +7056,7 @@ class Septeto extends tupla_1.Tupla {
7054
7056
  }
7055
7057
  exports.Septeto = Septeto;
7056
7058
 
7057
- },{"./tupla":62}],60:[function(require,module,exports){
7059
+ },{"./tupla":63}],61:[function(require,module,exports){
7058
7060
  "use strict";
7059
7061
  Object.defineProperty(exports, "__esModule", { value: true });
7060
7062
  exports.Sexteto = void 0;
@@ -7072,7 +7074,7 @@ class Sexteto extends tupla_1.Tupla {
7072
7074
  }
7073
7075
  exports.Sexteto = Sexteto;
7074
7076
 
7075
- },{"./tupla":62}],61:[function(require,module,exports){
7077
+ },{"./tupla":63}],62:[function(require,module,exports){
7076
7078
  "use strict";
7077
7079
  Object.defineProperty(exports, "__esModule", { value: true });
7078
7080
  exports.Trio = void 0;
@@ -7087,7 +7089,7 @@ class Trio extends tupla_1.Tupla {
7087
7089
  }
7088
7090
  exports.Trio = Trio;
7089
7091
 
7090
- },{"./tupla":62}],62:[function(require,module,exports){
7092
+ },{"./tupla":63}],63:[function(require,module,exports){
7091
7093
  "use strict";
7092
7094
  Object.defineProperty(exports, "__esModule", { value: true });
7093
7095
  exports.Tupla = void 0;
@@ -7098,7 +7100,7 @@ class Tupla {
7098
7100
  }
7099
7101
  exports.Tupla = Tupla;
7100
7102
 
7101
- },{}],63:[function(require,module,exports){
7103
+ },{}],64:[function(require,module,exports){
7102
7104
  "use strict";
7103
7105
  Object.defineProperty(exports, "__esModule", { value: true });
7104
7106
  exports.Unario = void 0;
@@ -7116,7 +7118,7 @@ class Unario {
7116
7118
  }
7117
7119
  exports.Unario = Unario;
7118
7120
 
7119
- },{}],64:[function(require,module,exports){
7121
+ },{}],65:[function(require,module,exports){
7120
7122
  "use strict";
7121
7123
  Object.defineProperty(exports, "__esModule", { value: true });
7122
7124
  exports.Variavel = void 0;
@@ -7133,7 +7135,7 @@ class Variavel {
7133
7135
  }
7134
7136
  exports.Variavel = Variavel;
7135
7137
 
7136
- },{}],65:[function(require,module,exports){
7138
+ },{}],66:[function(require,module,exports){
7137
7139
  "use strict";
7138
7140
  Object.defineProperty(exports, "__esModule", { value: true });
7139
7141
  exports.Vetor = void 0;
@@ -7156,7 +7158,7 @@ class Vetor {
7156
7158
  }
7157
7159
  exports.Vetor = Vetor;
7158
7160
 
7159
- },{}],66:[function(require,module,exports){
7161
+ },{}],67:[function(require,module,exports){
7160
7162
  "use strict";
7161
7163
  Object.defineProperty(exports, "__esModule", { value: true });
7162
7164
  exports.Aleatorio = void 0;
@@ -7173,7 +7175,7 @@ class Aleatorio extends declaracao_1.Declaracao {
7173
7175
  }
7174
7176
  exports.Aleatorio = Aleatorio;
7175
7177
 
7176
- },{"./declaracao":74}],67:[function(require,module,exports){
7178
+ },{"./declaracao":75}],68:[function(require,module,exports){
7177
7179
  "use strict";
7178
7180
  Object.defineProperty(exports, "__esModule", { value: true });
7179
7181
  exports.Bloco = void 0;
@@ -7189,7 +7191,7 @@ class Bloco extends declaracao_1.Declaracao {
7189
7191
  }
7190
7192
  exports.Bloco = Bloco;
7191
7193
 
7192
- },{"./declaracao":74}],68:[function(require,module,exports){
7194
+ },{"./declaracao":75}],69:[function(require,module,exports){
7193
7195
  "use strict";
7194
7196
  Object.defineProperty(exports, "__esModule", { value: true });
7195
7197
  exports.CabecalhoPrograma = void 0;
@@ -7205,7 +7207,7 @@ class CabecalhoPrograma extends declaracao_1.Declaracao {
7205
7207
  }
7206
7208
  exports.CabecalhoPrograma = CabecalhoPrograma;
7207
7209
 
7208
- },{"./declaracao":74}],69:[function(require,module,exports){
7210
+ },{"./declaracao":75}],70:[function(require,module,exports){
7209
7211
  "use strict";
7210
7212
  Object.defineProperty(exports, "__esModule", { value: true });
7211
7213
  exports.Classe = void 0;
@@ -7225,7 +7227,7 @@ class Classe extends declaracao_1.Declaracao {
7225
7227
  }
7226
7228
  exports.Classe = Classe;
7227
7229
 
7228
- },{"./declaracao":74}],70:[function(require,module,exports){
7230
+ },{"./declaracao":75}],71:[function(require,module,exports){
7229
7231
  "use strict";
7230
7232
  Object.defineProperty(exports, "__esModule", { value: true });
7231
7233
  exports.Comentario = void 0;
@@ -7247,7 +7249,7 @@ class Comentario extends declaracao_1.Declaracao {
7247
7249
  }
7248
7250
  exports.Comentario = Comentario;
7249
7251
 
7250
- },{"./declaracao":74}],71:[function(require,module,exports){
7252
+ },{"./declaracao":75}],72:[function(require,module,exports){
7251
7253
  "use strict";
7252
7254
  Object.defineProperty(exports, "__esModule", { value: true });
7253
7255
  exports.ConstMultiplo = void 0;
@@ -7268,7 +7270,7 @@ class ConstMultiplo extends declaracao_1.Declaracao {
7268
7270
  }
7269
7271
  exports.ConstMultiplo = ConstMultiplo;
7270
7272
 
7271
- },{"./declaracao":74}],72:[function(require,module,exports){
7273
+ },{"./declaracao":75}],73:[function(require,module,exports){
7272
7274
  "use strict";
7273
7275
  Object.defineProperty(exports, "__esModule", { value: true });
7274
7276
  exports.Const = void 0;
@@ -7296,7 +7298,7 @@ class Const extends declaracao_1.Declaracao {
7296
7298
  }
7297
7299
  exports.Const = Const;
7298
7300
 
7299
- },{"./declaracao":74}],73:[function(require,module,exports){
7301
+ },{"./declaracao":75}],74:[function(require,module,exports){
7300
7302
  "use strict";
7301
7303
  Object.defineProperty(exports, "__esModule", { value: true });
7302
7304
  exports.Continua = void 0;
@@ -7311,7 +7313,7 @@ class Continua extends declaracao_1.Declaracao {
7311
7313
  }
7312
7314
  exports.Continua = Continua;
7313
7315
 
7314
- },{"./declaracao":74}],74:[function(require,module,exports){
7316
+ },{"./declaracao":75}],75:[function(require,module,exports){
7315
7317
  "use strict";
7316
7318
  Object.defineProperty(exports, "__esModule", { value: true });
7317
7319
  exports.Declaracao = void 0;
@@ -7331,7 +7333,7 @@ class Declaracao {
7331
7333
  }
7332
7334
  exports.Declaracao = Declaracao;
7333
7335
 
7334
- },{}],75:[function(require,module,exports){
7336
+ },{}],76:[function(require,module,exports){
7335
7337
  "use strict";
7336
7338
  Object.defineProperty(exports, "__esModule", { value: true });
7337
7339
  exports.Enquanto = void 0;
@@ -7348,7 +7350,7 @@ class Enquanto extends declaracao_1.Declaracao {
7348
7350
  }
7349
7351
  exports.Enquanto = Enquanto;
7350
7352
 
7351
- },{"./declaracao":74}],76:[function(require,module,exports){
7353
+ },{"./declaracao":75}],77:[function(require,module,exports){
7352
7354
  "use strict";
7353
7355
  Object.defineProperty(exports, "__esModule", { value: true });
7354
7356
  exports.Escolha = void 0;
@@ -7369,7 +7371,7 @@ class Escolha extends declaracao_1.Declaracao {
7369
7371
  }
7370
7372
  exports.Escolha = Escolha;
7371
7373
 
7372
- },{"./declaracao":74}],77:[function(require,module,exports){
7374
+ },{"./declaracao":75}],78:[function(require,module,exports){
7373
7375
  "use strict";
7374
7376
  Object.defineProperty(exports, "__esModule", { value: true });
7375
7377
  exports.EscrevaMesmaLinha = void 0;
@@ -7385,7 +7387,7 @@ class EscrevaMesmaLinha extends declaracao_1.Declaracao {
7385
7387
  }
7386
7388
  exports.EscrevaMesmaLinha = EscrevaMesmaLinha;
7387
7389
 
7388
- },{"./declaracao":74}],78:[function(require,module,exports){
7390
+ },{"./declaracao":75}],79:[function(require,module,exports){
7389
7391
  "use strict";
7390
7392
  Object.defineProperty(exports, "__esModule", { value: true });
7391
7393
  exports.Escreva = void 0;
@@ -7401,7 +7403,7 @@ class Escreva extends declaracao_1.Declaracao {
7401
7403
  }
7402
7404
  exports.Escreva = Escreva;
7403
7405
 
7404
- },{"./declaracao":74}],79:[function(require,module,exports){
7406
+ },{"./declaracao":75}],80:[function(require,module,exports){
7405
7407
  "use strict";
7406
7408
  Object.defineProperty(exports, "__esModule", { value: true });
7407
7409
  exports.Expressao = void 0;
@@ -7417,7 +7419,7 @@ class Expressao extends declaracao_1.Declaracao {
7417
7419
  }
7418
7420
  exports.Expressao = Expressao;
7419
7421
 
7420
- },{"./declaracao":74}],80:[function(require,module,exports){
7422
+ },{"./declaracao":75}],81:[function(require,module,exports){
7421
7423
  "use strict";
7422
7424
  Object.defineProperty(exports, "__esModule", { value: true });
7423
7425
  exports.Falhar = void 0;
@@ -7434,7 +7436,7 @@ class Falhar extends declaracao_1.Declaracao {
7434
7436
  }
7435
7437
  exports.Falhar = Falhar;
7436
7438
 
7437
- },{"./declaracao":74}],81:[function(require,module,exports){
7439
+ },{"./declaracao":75}],82:[function(require,module,exports){
7438
7440
  "use strict";
7439
7441
  Object.defineProperty(exports, "__esModule", { value: true });
7440
7442
  exports.Fazer = void 0;
@@ -7451,7 +7453,7 @@ class Fazer extends declaracao_1.Declaracao {
7451
7453
  }
7452
7454
  exports.Fazer = Fazer;
7453
7455
 
7454
- },{"./declaracao":74}],82:[function(require,module,exports){
7456
+ },{"./declaracao":75}],83:[function(require,module,exports){
7455
7457
  "use strict";
7456
7458
  Object.defineProperty(exports, "__esModule", { value: true });
7457
7459
  exports.FuncaoDeclaracao = void 0;
@@ -7475,7 +7477,7 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
7475
7477
  }
7476
7478
  exports.FuncaoDeclaracao = FuncaoDeclaracao;
7477
7479
 
7478
- },{"../geracao-identificadores":105,"./declaracao":74}],83:[function(require,module,exports){
7480
+ },{"../geracao-identificadores":106,"./declaracao":75}],84:[function(require,module,exports){
7479
7481
  "use strict";
7480
7482
  Object.defineProperty(exports, "__esModule", { value: true });
7481
7483
  exports.Importar = void 0;
@@ -7496,7 +7498,7 @@ class Importar extends declaracao_1.Declaracao {
7496
7498
  }
7497
7499
  exports.Importar = Importar;
7498
7500
 
7499
- },{"./declaracao":74}],84:[function(require,module,exports){
7501
+ },{"./declaracao":75}],85:[function(require,module,exports){
7500
7502
  "use strict";
7501
7503
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7502
7504
  if (k2 === undefined) k2 = k;
@@ -7544,7 +7546,7 @@ __exportStar(require("./tente"), exports);
7544
7546
  __exportStar(require("./var"), exports);
7545
7547
  __exportStar(require("./var-multiplo"), exports);
7546
7548
 
7547
- },{"./aleatorio":66,"./bloco":67,"./cabecalho-programa":68,"./classe":69,"./comentario":70,"./const":72,"./const-multiplo":71,"./continua":73,"./declaracao":74,"./enquanto":75,"./escolha":76,"./escreva":78,"./escreva-mesma-linha":77,"./expressao":79,"./falhar":80,"./fazer":81,"./funcao":82,"./importar":83,"./inicio-algoritmo":85,"./para":87,"./para-cada":86,"./propriedade-classe":88,"./retorna":89,"./se":90,"./sustar":91,"./tendo-como":92,"./tente":93,"./var":95,"./var-multiplo":94}],85:[function(require,module,exports){
7549
+ },{"./aleatorio":67,"./bloco":68,"./cabecalho-programa":69,"./classe":70,"./comentario":71,"./const":73,"./const-multiplo":72,"./continua":74,"./declaracao":75,"./enquanto":76,"./escolha":77,"./escreva":79,"./escreva-mesma-linha":78,"./expressao":80,"./falhar":81,"./fazer":82,"./funcao":83,"./importar":84,"./inicio-algoritmo":86,"./para":88,"./para-cada":87,"./propriedade-classe":89,"./retorna":90,"./se":91,"./sustar":92,"./tendo-como":93,"./tente":94,"./var":96,"./var-multiplo":95}],86:[function(require,module,exports){
7548
7550
  "use strict";
7549
7551
  Object.defineProperty(exports, "__esModule", { value: true });
7550
7552
  exports.InicioAlgoritmo = void 0;
@@ -7559,7 +7561,7 @@ class InicioAlgoritmo extends declaracao_1.Declaracao {
7559
7561
  }
7560
7562
  exports.InicioAlgoritmo = InicioAlgoritmo;
7561
7563
 
7562
- },{"./declaracao":74}],86:[function(require,module,exports){
7564
+ },{"./declaracao":75}],87:[function(require,module,exports){
7563
7565
  "use strict";
7564
7566
  Object.defineProperty(exports, "__esModule", { value: true });
7565
7567
  exports.ParaCada = void 0;
@@ -7578,7 +7580,7 @@ class ParaCada extends declaracao_1.Declaracao {
7578
7580
  }
7579
7581
  exports.ParaCada = ParaCada;
7580
7582
 
7581
- },{"./declaracao":74}],87:[function(require,module,exports){
7583
+ },{"./declaracao":75}],88:[function(require,module,exports){
7582
7584
  "use strict";
7583
7585
  Object.defineProperty(exports, "__esModule", { value: true });
7584
7586
  exports.Para = void 0;
@@ -7604,7 +7606,7 @@ class Para extends declaracao_1.Declaracao {
7604
7606
  }
7605
7607
  exports.Para = Para;
7606
7608
 
7607
- },{"./declaracao":74}],88:[function(require,module,exports){
7609
+ },{"./declaracao":75}],89:[function(require,module,exports){
7608
7610
  "use strict";
7609
7611
  Object.defineProperty(exports, "__esModule", { value: true });
7610
7612
  exports.PropriedadeClasse = void 0;
@@ -7622,7 +7624,7 @@ class PropriedadeClasse extends declaracao_1.Declaracao {
7622
7624
  }
7623
7625
  exports.PropriedadeClasse = PropriedadeClasse;
7624
7626
 
7625
- },{"./declaracao":74}],89:[function(require,module,exports){
7627
+ },{"./declaracao":75}],90:[function(require,module,exports){
7626
7628
  "use strict";
7627
7629
  Object.defineProperty(exports, "__esModule", { value: true });
7628
7630
  exports.Retorna = void 0;
@@ -7645,7 +7647,7 @@ class Retorna extends declaracao_1.Declaracao {
7645
7647
  }
7646
7648
  exports.Retorna = Retorna;
7647
7649
 
7648
- },{"./declaracao":74}],90:[function(require,module,exports){
7650
+ },{"./declaracao":75}],91:[function(require,module,exports){
7649
7651
  "use strict";
7650
7652
  Object.defineProperty(exports, "__esModule", { value: true });
7651
7653
  exports.Se = void 0;
@@ -7664,7 +7666,7 @@ class Se extends declaracao_1.Declaracao {
7664
7666
  }
7665
7667
  exports.Se = Se;
7666
7668
 
7667
- },{"./declaracao":74}],91:[function(require,module,exports){
7669
+ },{"./declaracao":75}],92:[function(require,module,exports){
7668
7670
  "use strict";
7669
7671
  Object.defineProperty(exports, "__esModule", { value: true });
7670
7672
  exports.Sustar = void 0;
@@ -7679,7 +7681,7 @@ class Sustar extends declaracao_1.Declaracao {
7679
7681
  }
7680
7682
  exports.Sustar = Sustar;
7681
7683
 
7682
- },{"./declaracao":74}],92:[function(require,module,exports){
7684
+ },{"./declaracao":75}],93:[function(require,module,exports){
7683
7685
  "use strict";
7684
7686
  Object.defineProperty(exports, "__esModule", { value: true });
7685
7687
  exports.TendoComo = void 0;
@@ -7702,7 +7704,7 @@ class TendoComo extends declaracao_1.Declaracao {
7702
7704
  }
7703
7705
  exports.TendoComo = TendoComo;
7704
7706
 
7705
- },{"./declaracao":74}],93:[function(require,module,exports){
7707
+ },{"./declaracao":75}],94:[function(require,module,exports){
7706
7708
  "use strict";
7707
7709
  Object.defineProperty(exports, "__esModule", { value: true });
7708
7710
  exports.Tente = void 0;
@@ -7724,7 +7726,7 @@ class Tente extends declaracao_1.Declaracao {
7724
7726
  }
7725
7727
  exports.Tente = Tente;
7726
7728
 
7727
- },{"./declaracao":74}],94:[function(require,module,exports){
7729
+ },{"./declaracao":75}],95:[function(require,module,exports){
7728
7730
  "use strict";
7729
7731
  Object.defineProperty(exports, "__esModule", { value: true });
7730
7732
  exports.VarMultiplo = void 0;
@@ -7746,7 +7748,7 @@ class VarMultiplo extends declaracao_1.Declaracao {
7746
7748
  }
7747
7749
  exports.VarMultiplo = VarMultiplo;
7748
7750
 
7749
- },{"./declaracao":74}],95:[function(require,module,exports){
7751
+ },{"./declaracao":75}],96:[function(require,module,exports){
7750
7752
  "use strict";
7751
7753
  Object.defineProperty(exports, "__esModule", { value: true });
7752
7754
  exports.Var = void 0;
@@ -7776,7 +7778,7 @@ class Var extends declaracao_1.Declaracao {
7776
7778
  }
7777
7779
  exports.Var = Var;
7778
7780
 
7779
- },{"./declaracao":74}],96:[function(require,module,exports){
7781
+ },{"./declaracao":75}],97:[function(require,module,exports){
7780
7782
  "use strict";
7781
7783
  Object.defineProperty(exports, "__esModule", { value: true });
7782
7784
  exports.default = cyrb53;
@@ -7800,7 +7802,7 @@ function cyrb53(nomeArquivo, semente = 0) {
7800
7802
  return 4294967296 * (2097151 & h2) + (h1 >>> 0);
7801
7803
  }
7802
7804
 
7803
- },{}],97:[function(require,module,exports){
7805
+ },{}],98:[function(require,module,exports){
7804
7806
  "use strict";
7805
7807
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7806
7808
  if (k2 === undefined) k2 = k;
@@ -7825,11 +7827,11 @@ var cyrb53_1 = require("./cyrb53");
7825
7827
  Object.defineProperty(exports, "cyrb53", { enumerable: true, get: function () { return __importDefault(cyrb53_1).default; } });
7826
7828
  __exportStar(require("./ponto-parada"), exports);
7827
7829
 
7828
- },{"./cyrb53":96,"./ponto-parada":98}],98:[function(require,module,exports){
7830
+ },{"./cyrb53":97,"./ponto-parada":99}],99:[function(require,module,exports){
7829
7831
  "use strict";
7830
7832
  Object.defineProperty(exports, "__esModule", { value: true });
7831
7833
 
7832
- },{}],99:[function(require,module,exports){
7834
+ },{}],100:[function(require,module,exports){
7833
7835
  "use strict";
7834
7836
  Object.defineProperty(exports, "__esModule", { value: true });
7835
7837
  exports.EspacoVariaveis = void 0;
@@ -7851,7 +7853,7 @@ class EspacoVariaveis {
7851
7853
  }
7852
7854
  exports.EspacoVariaveis = EspacoVariaveis;
7853
7855
 
7854
- },{}],100:[function(require,module,exports){
7856
+ },{}],101:[function(require,module,exports){
7855
7857
  "use strict";
7856
7858
  Object.defineProperty(exports, "__esModule", { value: true });
7857
7859
  exports.ErroEmTempoDeExecucao = void 0;
@@ -7866,7 +7868,7 @@ class ErroEmTempoDeExecucao extends Error {
7866
7868
  }
7867
7869
  exports.ErroEmTempoDeExecucao = ErroEmTempoDeExecucao;
7868
7870
 
7869
- },{}],101:[function(require,module,exports){
7871
+ },{}],102:[function(require,module,exports){
7870
7872
  "use strict";
7871
7873
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7872
7874
  if (k2 === undefined) k2 = k;
@@ -7885,7 +7887,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
7885
7887
  Object.defineProperty(exports, "__esModule", { value: true });
7886
7888
  __exportStar(require("./erro-em-tempo-de-execucao"), exports);
7887
7889
 
7888
- },{"./erro-em-tempo-de-execucao":100}],102:[function(require,module,exports){
7890
+ },{"./erro-em-tempo-de-execucao":101}],103:[function(require,module,exports){
7889
7891
  "use strict";
7890
7892
  var __importDefault = (this && this.__importDefault) || function (mod) {
7891
7893
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -8588,7 +8590,7 @@ class FormatadorDelegua {
8588
8590
  }
8589
8591
  exports.FormatadorDelegua = FormatadorDelegua;
8590
8592
 
8591
- },{"../construtos":44,"../tipos-de-simbolos/delegua":168}],103:[function(require,module,exports){
8593
+ },{"../construtos":44,"../tipos-de-simbolos/delegua":169}],104:[function(require,module,exports){
8592
8594
  "use strict";
8593
8595
  Object.defineProperty(exports, "__esModule", { value: true });
8594
8596
  exports.FormatadorPitugues = void 0;
@@ -8764,7 +8766,7 @@ class FormatadorPitugues {
8764
8766
  }
8765
8767
  exports.FormatadorPitugues = FormatadorPitugues;
8766
8768
 
8767
- },{}],104:[function(require,module,exports){
8769
+ },{}],105:[function(require,module,exports){
8768
8770
  "use strict";
8769
8771
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
8770
8772
  if (k2 === undefined) k2 = k;
@@ -8784,7 +8786,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
8784
8786
  __exportStar(require("./formatador-delegua"), exports);
8785
8787
  __exportStar(require("./formatador-pitugues"), exports);
8786
8788
 
8787
- },{"./formatador-delegua":102,"./formatador-pitugues":103}],105:[function(require,module,exports){
8789
+ },{"./formatador-delegua":103,"./formatador-pitugues":104}],106:[function(require,module,exports){
8788
8790
  "use strict";
8789
8791
  Object.defineProperty(exports, "__esModule", { value: true });
8790
8792
  exports.uuidv4 = uuidv4;
@@ -8808,7 +8810,7 @@ function uuidv4() {
8808
8810
  });
8809
8811
  }
8810
8812
 
8811
- },{}],106:[function(require,module,exports){
8813
+ },{}],107:[function(require,module,exports){
8812
8814
  "use strict";
8813
8815
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
8814
8816
  if (k2 === undefined) k2 = k;
@@ -8837,7 +8839,7 @@ __exportStar(require("./interpretador"), exports);
8837
8839
  __exportStar(require("./lexador"), exports);
8838
8840
  __exportStar(require("./tradutores"), exports);
8839
8841
 
8840
- },{"./avaliador-sintatico":10,"./construtos":44,"./declaracoes":84,"./depuracao":97,"./formatadores":104,"./interfaces":114,"./interpretador":142,"./lexador":157,"./tradutores":175}],107:[function(require,module,exports){
8842
+ },{"./avaliador-sintatico":10,"./construtos":44,"./declaracoes":85,"./depuracao":98,"./formatadores":105,"./interfaces":115,"./interpretador":143,"./lexador":158,"./tradutores":176}],108:[function(require,module,exports){
8841
8843
  "use strict";
8842
8844
  var __importDefault = (this && this.__importDefault) || function (mod) {
8843
8845
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -8964,7 +8966,7 @@ function tipoInferenciaParaTipoDadosElementar(tipoInferencia) {
8964
8966
  }
8965
8967
  }
8966
8968
 
8967
- },{"./tipos-de-dados/delegua":165,"./tipos-de-dados/primitivos":166,"./tipos-de-simbolos/delegua":168}],108:[function(require,module,exports){
8969
+ },{"./tipos-de-dados/delegua":166,"./tipos-de-dados/primitivos":167,"./tipos-de-simbolos/delegua":169}],109:[function(require,module,exports){
8968
8970
  "use strict";
8969
8971
  Object.defineProperty(exports, "__esModule", { value: true });
8970
8972
  exports.InformacaoVariavelOuConstante = void 0;
@@ -8981,15 +8983,15 @@ class InformacaoVariavelOuConstante {
8981
8983
  }
8982
8984
  exports.InformacaoVariavelOuConstante = InformacaoVariavelOuConstante;
8983
8985
 
8984
- },{}],109:[function(require,module,exports){
8986
+ },{}],110:[function(require,module,exports){
8985
8987
  "use strict";
8986
8988
  Object.defineProperty(exports, "__esModule", { value: true });
8987
8989
 
8988
- },{}],110:[function(require,module,exports){
8990
+ },{}],111:[function(require,module,exports){
8989
8991
  "use strict";
8990
8992
  Object.defineProperty(exports, "__esModule", { value: true });
8991
8993
 
8992
- },{}],111:[function(require,module,exports){
8994
+ },{}],112:[function(require,module,exports){
8993
8995
  "use strict";
8994
8996
  Object.defineProperty(exports, "__esModule", { value: true });
8995
8997
  exports.DiagnosticoSeveridade = void 0;
@@ -9001,7 +9003,7 @@ var DiagnosticoSeveridade;
9001
9003
  DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
9002
9004
  })(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
9003
9005
 
9004
- },{}],112:[function(require,module,exports){
9006
+ },{}],113:[function(require,module,exports){
9005
9007
  "use strict";
9006
9008
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
9007
9009
  if (k2 === undefined) k2 = k;
@@ -9020,11 +9022,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
9020
9022
  Object.defineProperty(exports, "__esModule", { value: true });
9021
9023
  __exportStar(require("./diagnostico-analisador-semantico"), exports);
9022
9024
 
9023
- },{"./diagnostico-analisador-semantico":111}],113:[function(require,module,exports){
9025
+ },{"./diagnostico-analisador-semantico":112}],114:[function(require,module,exports){
9024
9026
  "use strict";
9025
9027
  Object.defineProperty(exports, "__esModule", { value: true });
9026
9028
 
9027
- },{}],114:[function(require,module,exports){
9029
+ },{}],115:[function(require,module,exports){
9028
9030
  "use strict";
9029
9031
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
9030
9032
  if (k2 === undefined) k2 = k;
@@ -9059,11 +9061,7 @@ __exportStar(require("./construtos"), exports);
9059
9061
  __exportStar(require("./erros"), exports);
9060
9062
  __exportStar(require("./retornos"), exports);
9061
9063
 
9062
- },{"./avaliador-sintatico-interface":109,"./construtos":110,"./erros":112,"./formatador-comum-interface":113,"./interpretador-com-depuracao-interface":115,"./interpretador-interface":116,"./lexador-interface":117,"./parametro-interface":118,"./pilha-interface":119,"./primitiva-interface":120,"./resolvedor-interface":121,"./retornos":122,"./retornos/retorno-execucao-interface":124,"./simbolo-interface":127,"./tradutor-interface":128,"./variavel-interface":129,"./visitante-comum-interface":130}],115:[function(require,module,exports){
9063
- "use strict";
9064
- Object.defineProperty(exports, "__esModule", { value: true });
9065
-
9066
- },{}],116:[function(require,module,exports){
9064
+ },{"./avaliador-sintatico-interface":110,"./construtos":111,"./erros":113,"./formatador-comum-interface":114,"./interpretador-com-depuracao-interface":116,"./interpretador-interface":117,"./lexador-interface":118,"./parametro-interface":119,"./pilha-interface":120,"./primitiva-interface":121,"./resolvedor-interface":122,"./retornos":123,"./retornos/retorno-execucao-interface":125,"./simbolo-interface":128,"./tradutor-interface":129,"./variavel-interface":130,"./visitante-comum-interface":131}],116:[function(require,module,exports){
9067
9065
  "use strict";
9068
9066
  Object.defineProperty(exports, "__esModule", { value: true });
9069
9067
 
@@ -9089,6 +9087,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
9089
9087
 
9090
9088
  },{}],122:[function(require,module,exports){
9091
9089
  "use strict";
9090
+ Object.defineProperty(exports, "__esModule", { value: true });
9091
+
9092
+ },{}],123:[function(require,module,exports){
9093
+ "use strict";
9092
9094
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
9093
9095
  if (k2 === undefined) k2 = k;
9094
9096
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -9109,11 +9111,7 @@ __exportStar(require("./retorno-execucao-interface"), exports);
9109
9111
  __exportStar(require("./retorno-interpretador"), exports);
9110
9112
  __exportStar(require("./retorno-lexador"), exports);
9111
9113
 
9112
- },{"./retorno-avaliador-sintatico":123,"./retorno-execucao-interface":124,"./retorno-interpretador":125,"./retorno-lexador":126}],123:[function(require,module,exports){
9113
- "use strict";
9114
- Object.defineProperty(exports, "__esModule", { value: true });
9115
-
9116
- },{}],124:[function(require,module,exports){
9114
+ },{"./retorno-avaliador-sintatico":124,"./retorno-execucao-interface":125,"./retorno-interpretador":126,"./retorno-lexador":127}],124:[function(require,module,exports){
9117
9115
  "use strict";
9118
9116
  Object.defineProperty(exports, "__esModule", { value: true });
9119
9117
 
@@ -9143,6 +9141,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
9143
9141
 
9144
9142
  },{}],131:[function(require,module,exports){
9145
9143
  "use strict";
9144
+ Object.defineProperty(exports, "__esModule", { value: true });
9145
+
9146
+ },{}],132:[function(require,module,exports){
9147
+ "use strict";
9146
9148
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
9147
9149
  if (k2 === undefined) k2 = k;
9148
9150
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -9206,7 +9208,7 @@ function carregarBibliotecasGlobais(pilhaEscoposExecucao) {
9206
9208
  pilhaEscoposExecucao.definirVariavel('tupla', new funcao_padrao_1.FuncaoPadrao(1, bibliotecaGlobal.tupla));
9207
9209
  }
9208
9210
 
9209
- },{"../bibliotecas/biblioteca-global":17,"./estruturas/funcao-padrao":136}],132:[function(require,module,exports){
9211
+ },{"../bibliotecas/biblioteca-global":17,"./estruturas/funcao-padrao":137}],133:[function(require,module,exports){
9210
9212
  "use strict";
9211
9213
  Object.defineProperty(exports, "__esModule", { value: true });
9212
9214
  exports.Chamavel = void 0;
@@ -9220,7 +9222,7 @@ class Chamavel {
9220
9222
  }
9221
9223
  exports.Chamavel = Chamavel;
9222
9224
 
9223
- },{}],133:[function(require,module,exports){
9225
+ },{}],134:[function(require,module,exports){
9224
9226
  "use strict";
9225
9227
  Object.defineProperty(exports, "__esModule", { value: true });
9226
9228
  exports.ClassePadrao = void 0;
@@ -9261,7 +9263,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
9261
9263
  }
9262
9264
  exports.ClassePadrao = ClassePadrao;
9263
9265
 
9264
- },{"./chamavel":132}],134:[function(require,module,exports){
9266
+ },{"./chamavel":133}],135:[function(require,module,exports){
9265
9267
  "use strict";
9266
9268
  Object.defineProperty(exports, "__esModule", { value: true });
9267
9269
  exports.DeleguaFuncao = void 0;
@@ -9419,7 +9421,7 @@ class DeleguaFuncao extends chamavel_1.Chamavel {
9419
9421
  }
9420
9422
  exports.DeleguaFuncao = DeleguaFuncao;
9421
9423
 
9422
- },{"../../declaracoes":84,"../../espaco-variaveis":99,"../../inferenciador":107,"../../quebras":164,"./chamavel":132}],135:[function(require,module,exports){
9424
+ },{"../../declaracoes":85,"../../espaco-variaveis":100,"../../inferenciador":108,"../../quebras":165,"./chamavel":133}],136:[function(require,module,exports){
9423
9425
  "use strict";
9424
9426
  Object.defineProperty(exports, "__esModule", { value: true });
9425
9427
  exports.DescritorTipoClasse = void 0;
@@ -9500,7 +9502,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
9500
9502
  }
9501
9503
  exports.DescritorTipoClasse = DescritorTipoClasse;
9502
9504
 
9503
- },{"../../excecoes":101,"./chamavel":132,"./objeto-delegua-classe":140}],136:[function(require,module,exports){
9505
+ },{"../../excecoes":102,"./chamavel":133,"./objeto-delegua-classe":141}],137:[function(require,module,exports){
9504
9506
  "use strict";
9505
9507
  Object.defineProperty(exports, "__esModule", { value: true });
9506
9508
  exports.FuncaoPadrao = void 0;
@@ -9536,7 +9538,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
9536
9538
  }
9537
9539
  exports.FuncaoPadrao = FuncaoPadrao;
9538
9540
 
9539
- },{"./chamavel":132}],137:[function(require,module,exports){
9541
+ },{"./chamavel":133}],138:[function(require,module,exports){
9540
9542
  "use strict";
9541
9543
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
9542
9544
  if (k2 === undefined) k2 = k;
@@ -9563,7 +9565,7 @@ __exportStar(require("./modulo"), exports);
9563
9565
  __exportStar(require("./objeto-delegua-classe"), exports);
9564
9566
  __exportStar(require("./objeto-padrao"), exports);
9565
9567
 
9566
- },{"./chamavel":132,"./classe-padrao":133,"./delegua-funcao":134,"./descritor-tipo-classe":135,"./funcao-padrao":136,"./metodo-primitiva":138,"./modulo":139,"./objeto-delegua-classe":140,"./objeto-padrao":141}],138:[function(require,module,exports){
9568
+ },{"./chamavel":133,"./classe-padrao":134,"./delegua-funcao":135,"./descritor-tipo-classe":136,"./funcao-padrao":137,"./metodo-primitiva":139,"./modulo":140,"./objeto-delegua-classe":141,"./objeto-padrao":142}],139:[function(require,module,exports){
9567
9569
  "use strict";
9568
9570
  Object.defineProperty(exports, "__esModule", { value: true });
9569
9571
  exports.MetodoPrimitiva = void 0;
@@ -9605,7 +9607,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
9605
9607
  }
9606
9608
  exports.MetodoPrimitiva = MetodoPrimitiva;
9607
9609
 
9608
- },{"./chamavel":132}],139:[function(require,module,exports){
9610
+ },{"./chamavel":133}],140:[function(require,module,exports){
9609
9611
  "use strict";
9610
9612
  Object.defineProperty(exports, "__esModule", { value: true });
9611
9613
  exports.DeleguaModulo = void 0;
@@ -9631,7 +9633,7 @@ class DeleguaModulo {
9631
9633
  }
9632
9634
  exports.DeleguaModulo = DeleguaModulo;
9633
9635
 
9634
- },{}],140:[function(require,module,exports){
9636
+ },{}],141:[function(require,module,exports){
9635
9637
  "use strict";
9636
9638
  Object.defineProperty(exports, "__esModule", { value: true });
9637
9639
  exports.ObjetoDeleguaClasse = void 0;
@@ -9699,7 +9701,7 @@ class ObjetoDeleguaClasse {
9699
9701
  }
9700
9702
  exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
9701
9703
 
9702
- },{"../../excecoes":101}],141:[function(require,module,exports){
9704
+ },{"../../excecoes":102}],142:[function(require,module,exports){
9703
9705
  "use strict";
9704
9706
  Object.defineProperty(exports, "__esModule", { value: true });
9705
9707
  exports.ObjetoPadrao = void 0;
@@ -9733,7 +9735,7 @@ class ObjetoPadrao {
9733
9735
  }
9734
9736
  exports.ObjetoPadrao = ObjetoPadrao;
9735
9737
 
9736
- },{}],142:[function(require,module,exports){
9738
+ },{}],143:[function(require,module,exports){
9737
9739
  "use strict";
9738
9740
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
9739
9741
  if (k2 === undefined) k2 = k;
@@ -9753,7 +9755,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
9753
9755
  __exportStar(require("./interpretador"), exports);
9754
9756
  __exportStar(require("./interpretador-base"), exports);
9755
9757
 
9756
- },{"./interpretador":144,"./interpretador-base":143}],143:[function(require,module,exports){
9758
+ },{"./interpretador":145,"./interpretador-base":144}],144:[function(require,module,exports){
9757
9759
  (function (process){(function (){
9758
9760
  "use strict";
9759
9761
  var __importDefault = (this && this.__importDefault) || function (mod) {
@@ -11165,7 +11167,7 @@ class InterpretadorBase {
11165
11167
  exports.InterpretadorBase = InterpretadorBase;
11166
11168
 
11167
11169
  }).call(this)}).call(this,require('_process'))
11168
- },{"../avaliador-sintatico":10,"../bibliotecas/primitivas-dicionario":18,"../construtos":44,"../espaco-variaveis":99,"../excecoes":101,"../inferenciador":107,"../lexador":157,"../quebras":164,"../tipos-de-dados/delegua":165,"../tipos-de-dados/primitivos":166,"../tipos-de-simbolos/delegua":168,"./comum":131,"./estruturas":137,"./estruturas/metodo-primitiva":138,"./pilha-escopos-execucao":145,"_process":401,"browser-process-hrtime":347}],144:[function(require,module,exports){
11170
+ },{"../avaliador-sintatico":10,"../bibliotecas/primitivas-dicionario":18,"../construtos":44,"../espaco-variaveis":100,"../excecoes":102,"../inferenciador":108,"../lexador":158,"../quebras":165,"../tipos-de-dados/delegua":166,"../tipos-de-dados/primitivos":167,"../tipos-de-simbolos/delegua":169,"./comum":132,"./estruturas":138,"./estruturas/metodo-primitiva":139,"./pilha-escopos-execucao":146,"_process":402,"browser-process-hrtime":348}],145:[function(require,module,exports){
11169
11171
  "use strict";
11170
11172
  var __importDefault = (this && this.__importDefault) || function (mod) {
11171
11173
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -11404,16 +11406,18 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
11404
11406
  }
11405
11407
  async visitarExpressaoRetornar(declaracao) {
11406
11408
  let valor = null;
11407
- if (declaracao.valor !== null) {
11409
+ if (declaracao.valor !== null && declaracao.valor !== undefined) {
11408
11410
  valor = await this.avaliar(declaracao.valor);
11409
11411
  }
11410
11412
  const retornoQuebra = new quebras_1.RetornoQuebra(valor);
11411
11413
  // Se o retorno for uma função anônima, o escopo precisa ser preservado.
11412
11414
  // Como quebras matam o topo da pilha de escopos, precisamos dizer
11413
11415
  // para a finalização para copiar as variáveis para o escopo de baixo.
11414
- const construtorRetorno = retornoQuebra.valor.constructor.name.replaceAll('_', '');
11415
- if (construtorRetorno === 'DeleguaFuncao') {
11416
- retornoQuebra.preservarEscopo = true;
11416
+ if (retornoQuebra.valor) {
11417
+ const construtorRetorno = retornoQuebra.valor.constructor.name.replaceAll('_', '');
11418
+ if (construtorRetorno === 'DeleguaFuncao') {
11419
+ retornoQuebra.preservarEscopo = true;
11420
+ }
11417
11421
  }
11418
11422
  return retornoQuebra;
11419
11423
  }
@@ -11459,7 +11463,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
11459
11463
  }
11460
11464
  exports.Interpretador = Interpretador;
11461
11465
 
11462
- },{"../bibliotecas/primitivas-dicionario":18,"../bibliotecas/primitivas-numero":19,"../bibliotecas/primitivas-texto":20,"../bibliotecas/primitivas-vetor":21,"../excecoes":101,"../inferenciador":107,"../quebras":164,"../tipos-de-dados/delegua":165,"../tipos-de-dados/primitivos":166,"./estruturas":137,"./interpretador-base":143}],145:[function(require,module,exports){
11466
+ },{"../bibliotecas/primitivas-dicionario":18,"../bibliotecas/primitivas-numero":19,"../bibliotecas/primitivas-texto":20,"../bibliotecas/primitivas-vetor":21,"../excecoes":102,"../inferenciador":108,"../quebras":165,"../tipos-de-dados/delegua":166,"../tipos-de-dados/primitivos":167,"./estruturas":138,"./interpretador-base":144}],146:[function(require,module,exports){
11463
11467
  "use strict";
11464
11468
  var __importDefault = (this && this.__importDefault) || function (mod) {
11465
11469
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -11723,7 +11727,7 @@ class PilhaEscoposExecucao {
11723
11727
  }
11724
11728
  exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
11725
11729
 
11726
- },{"../excecoes":101,"../inferenciador":107,"../lexador":157,"../tipos-de-dados/delegua":165,"./estruturas":137}],146:[function(require,module,exports){
11730
+ },{"../excecoes":102,"../inferenciador":108,"../lexador":158,"../tipos-de-dados/delegua":166,"./estruturas":138}],147:[function(require,module,exports){
11727
11731
  "use strict";
11728
11732
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
11729
11733
  if (k2 === undefined) k2 = k;
@@ -11746,7 +11750,7 @@ __exportStar(require("./lexador-guarani"), exports);
11746
11750
  __exportStar(require("./lexador-portugol-ipt"), exports);
11747
11751
  __exportStar(require("./lexador-tenda"), exports);
11748
11752
 
11749
- },{"./lexador-egua-classico":147,"./lexador-guarani":148,"./lexador-pitugues":149,"./lexador-portugol-ipt":150,"./lexador-tenda":151}],147:[function(require,module,exports){
11753
+ },{"./lexador-egua-classico":148,"./lexador-guarani":149,"./lexador-pitugues":150,"./lexador-portugol-ipt":151,"./lexador-tenda":152}],148:[function(require,module,exports){
11750
11754
  "use strict";
11751
11755
  var __importDefault = (this && this.__importDefault) || function (mod) {
11752
11756
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -12036,7 +12040,7 @@ class LexadorEguaClassico {
12036
12040
  }
12037
12041
  exports.LexadorEguaClassico = LexadorEguaClassico;
12038
12042
 
12039
- },{"../../tipos-de-simbolos/egua-classico":169,"../simbolo":163,"./palavras-reservadas/egua-classico":152}],148:[function(require,module,exports){
12043
+ },{"../../tipos-de-simbolos/egua-classico":170,"../simbolo":164,"./palavras-reservadas/egua-classico":153}],149:[function(require,module,exports){
12040
12044
  "use strict";
12041
12045
  var __importDefault = (this && this.__importDefault) || function (mod) {
12042
12046
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -12155,7 +12159,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
12155
12159
  }
12156
12160
  exports.LexadorGuarani = LexadorGuarani;
12157
12161
 
12158
- },{"../../tipos-de-simbolos/guarani":170,"../lexador-base":159,"./palavras-reservadas/guarani":153}],149:[function(require,module,exports){
12162
+ },{"../../tipos-de-simbolos/guarani":171,"../lexador-base":160,"./palavras-reservadas/guarani":154}],150:[function(require,module,exports){
12159
12163
  "use strict";
12160
12164
  var __importDefault = (this && this.__importDefault) || function (mod) {
12161
12165
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -12558,7 +12562,7 @@ class LexadorPitugues {
12558
12562
  }
12559
12563
  exports.LexadorPitugues = LexadorPitugues;
12560
12564
 
12561
- },{"../../tipos-de-simbolos/pitugues":172,"../simbolo":163,"./palavras-reservadas/pitugues":154,"browser-process-hrtime":347}],150:[function(require,module,exports){
12565
+ },{"../../tipos-de-simbolos/pitugues":173,"../simbolo":164,"./palavras-reservadas/pitugues":155,"browser-process-hrtime":348}],151:[function(require,module,exports){
12562
12566
  "use strict";
12563
12567
  var __importDefault = (this && this.__importDefault) || function (mod) {
12564
12568
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -12799,7 +12803,7 @@ class LexadorPortugolIpt {
12799
12803
  }
12800
12804
  exports.LexadorPortugolIpt = LexadorPortugolIpt;
12801
12805
 
12802
- },{"../../tipos-de-simbolos/portugol-ipt":173,"../simbolo":163,"./palavras-reservadas/portugol-ipt":155}],151:[function(require,module,exports){
12806
+ },{"../../tipos-de-simbolos/portugol-ipt":174,"../simbolo":164,"./palavras-reservadas/portugol-ipt":156}],152:[function(require,module,exports){
12803
12807
  "use strict";
12804
12808
  var __importDefault = (this && this.__importDefault) || function (mod) {
12805
12809
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -13043,23 +13047,11 @@ class LexadorTenda {
13043
13047
  break;
13044
13048
  case '-':
13045
13049
  this.avancar();
13046
- if (this.simboloAtual() === '=') {
13047
- this.adicionarSimbolo(tenda_2.default.MENOS_IGUAL);
13048
- this.avancar();
13049
- }
13050
- else {
13051
- this.adicionarSimbolo(tenda_2.default.SUBTRACAO);
13052
- }
13050
+ this.adicionarSimbolo(tenda_2.default.SUBTRACAO);
13053
13051
  break;
13054
13052
  case '+':
13055
13053
  this.avancar();
13056
- if (this.simboloAtual() === '=') {
13057
- this.adicionarSimbolo(tenda_2.default.MAIS_IGUAL);
13058
- this.avancar();
13059
- }
13060
- else {
13061
- this.adicionarSimbolo(tenda_2.default.ADICAO);
13062
- }
13054
+ this.adicionarSimbolo(tenda_2.default.ADICAO);
13063
13055
  break;
13064
13056
  case '/':
13065
13057
  this.avancar();
@@ -13188,6 +13180,7 @@ class LexadorTenda {
13188
13180
  }
13189
13181
  if (this.performance) {
13190
13182
  const deltaMapeamento = (0, browser_process_hrtime_1.default)(inicioMapeamento);
13183
+ // eslint-disable-next-line no-undef
13191
13184
  console.log(`[Lexador] Tempo para mapeamento: ${deltaMapeamento[0] * 1e9 + deltaMapeamento[1]}ns`);
13192
13185
  }
13193
13186
  return {
@@ -13199,7 +13192,7 @@ class LexadorTenda {
13199
13192
  }
13200
13193
  exports.LexadorTenda = LexadorTenda;
13201
13194
 
13202
- },{"../../tipos-de-simbolos/tenda":174,"../simbolo":163,"./palavras-reservadas/tenda":156,"browser-process-hrtime":347}],152:[function(require,module,exports){
13195
+ },{"../../tipos-de-simbolos/tenda":175,"../simbolo":164,"./palavras-reservadas/tenda":157,"browser-process-hrtime":348}],153:[function(require,module,exports){
13203
13196
  "use strict";
13204
13197
  var __importDefault = (this && this.__importDefault) || function (mod) {
13205
13198
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -13240,7 +13233,7 @@ exports.palavrasReservadas = {
13240
13233
  verdadeiro: egua_classico_1.default.VERDADEIRO,
13241
13234
  };
13242
13235
 
13243
- },{"../../../tipos-de-simbolos/egua-classico":169}],153:[function(require,module,exports){
13236
+ },{"../../../tipos-de-simbolos/egua-classico":170}],154:[function(require,module,exports){
13244
13237
  "use strict";
13245
13238
  var __importDefault = (this && this.__importDefault) || function (mod) {
13246
13239
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -13252,7 +13245,7 @@ exports.palavrasReservadas = {
13252
13245
  hai: guarani_1.default.HAI,
13253
13246
  };
13254
13247
 
13255
- },{"../../../tipos-de-simbolos/guarani":170}],154:[function(require,module,exports){
13248
+ },{"../../../tipos-de-simbolos/guarani":171}],155:[function(require,module,exports){
13256
13249
  "use strict";
13257
13250
  var __importDefault = (this && this.__importDefault) || function (mod) {
13258
13251
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -13315,7 +13308,7 @@ exports.palavrasReservadasMicroGramatica = {
13315
13308
  verdadeiro: pitugues_1.default.VERDADEIRO,
13316
13309
  };
13317
13310
 
13318
- },{"../../../tipos-de-simbolos/pitugues":172}],155:[function(require,module,exports){
13311
+ },{"../../../tipos-de-simbolos/pitugues":173}],156:[function(require,module,exports){
13319
13312
  "use strict";
13320
13313
  var __importDefault = (this && this.__importDefault) || function (mod) {
13321
13314
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -13337,7 +13330,7 @@ exports.palavrasReservadas = {
13337
13330
  senão: portugol_ipt_1.default.SENAO,
13338
13331
  };
13339
13332
 
13340
- },{"../../../tipos-de-simbolos/portugol-ipt":173}],156:[function(require,module,exports){
13333
+ },{"../../../tipos-de-simbolos/portugol-ipt":174}],157:[function(require,module,exports){
13341
13334
  "use strict";
13342
13335
  var __importDefault = (this && this.__importDefault) || function (mod) {
13343
13336
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -13349,7 +13342,6 @@ exports.palavrasReservadas = {
13349
13342
  até: tenda_1.default.ATÉ,
13350
13343
  cada: tenda_1.default.CADA,
13351
13344
  caso: tenda_1.default.CASO,
13352
- classe: tenda_1.default.CLASSE,
13353
13345
  como: tenda_1.default.COMO,
13354
13346
  construtor: tenda_1.default.CONSTRUTOR,
13355
13347
  continua: tenda_1.default.CONTINUA,
@@ -13357,19 +13349,17 @@ exports.palavrasReservadas = {
13357
13349
  é: tenda_1.default.É,
13358
13350
  em: tenda_1.default.EM,
13359
13351
  então: tenda_1.default.ENTÃO,
13352
+ entrada: tenda_1.default.ENTRADA,
13360
13353
  enquanto: tenda_1.default.ENQUANTO,
13361
13354
  escolha: tenda_1.default.ESCOLHA,
13362
13355
  exiba: tenda_1.default.EXIBA,
13363
- falhar: tenda_1.default.FALHAR,
13364
13356
  falso: tenda_1.default.FALSO,
13365
13357
  faça: tenda_1.default.FAÇA,
13366
- fazer: tenda_1.default.FAZER,
13367
13358
  fim: tenda_1.default.FIM,
13368
13359
  finalmente: tenda_1.default.FINALMENTE,
13369
- fixo: tenda_1.default.CONSTANTE,
13370
13360
  função: tenda_1.default.FUNÇÃO,
13371
- herda: tenda_1.default.HERDA,
13372
13361
  importar: tenda_1.default.IMPORTAR,
13362
+ infinito: tenda_1.default.INFINITO,
13373
13363
  isto: tenda_1.default.ISTO,
13374
13364
  leia: tenda_1.default.LEIA,
13375
13365
  não: tenda_1.default.NÃO,
@@ -13389,9 +13379,16 @@ exports.palavrasReservadas = {
13389
13379
  tente: tenda_1.default.TENTE,
13390
13380
  tipo: tenda_1.default.TIPO,
13391
13381
  verdadeiro: tenda_1.default.VERDADEIRO,
13382
+ // Bibliotecas (precisa ser em maiúsculo)
13383
+ Data: tenda_1.default.BIBLIOTECA_GLOBAL,
13384
+ Lista: tenda_1.default.BIBLIOTECA_GLOBAL,
13385
+ Matemática: tenda_1.default.BIBLIOTECA_GLOBAL,
13386
+ NaN: tenda_1.default.NAN,
13387
+ Saída: tenda_1.default.BIBLIOTECA_GLOBAL,
13388
+ Texto: tenda_1.default.BIBLIOTECA_GLOBAL
13392
13389
  };
13393
13390
 
13394
- },{"../../../tipos-de-simbolos/tenda":174}],157:[function(require,module,exports){
13391
+ },{"../../../tipos-de-simbolos/tenda":175}],158:[function(require,module,exports){
13395
13392
  "use strict";
13396
13393
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
13397
13394
  if (k2 === undefined) k2 = k;
@@ -13414,7 +13411,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
13414
13411
  __exportStar(require("./micro-lexador"), exports);
13415
13412
  __exportStar(require("./simbolo"), exports);
13416
13413
 
13417
- },{"./dialetos":146,"./lexador":160,"./lexador-base-linha-unica":158,"./micro-lexador":161,"./simbolo":163}],158:[function(require,module,exports){
13414
+ },{"./dialetos":147,"./lexador":161,"./lexador-base-linha-unica":159,"./micro-lexador":162,"./simbolo":164}],159:[function(require,module,exports){
13418
13415
  "use strict";
13419
13416
  Object.defineProperty(exports, "__esModule", { value: true });
13420
13417
  exports.LexadorBaseLinhaUnica = void 0;
@@ -13498,7 +13495,7 @@ class LexadorBaseLinhaUnica {
13498
13495
  }
13499
13496
  exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
13500
13497
 
13501
- },{"./simbolo":163}],159:[function(require,module,exports){
13498
+ },{"./simbolo":164}],160:[function(require,module,exports){
13502
13499
  "use strict";
13503
13500
  Object.defineProperty(exports, "__esModule", { value: true });
13504
13501
  exports.LexadorBase = void 0;
@@ -13612,7 +13609,7 @@ class LexadorBase {
13612
13609
  }
13613
13610
  exports.LexadorBase = LexadorBase;
13614
13611
 
13615
- },{"./simbolo":163}],160:[function(require,module,exports){
13612
+ },{"./simbolo":164}],161:[function(require,module,exports){
13616
13613
  "use strict";
13617
13614
  var __importDefault = (this && this.__importDefault) || function (mod) {
13618
13615
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14072,7 +14069,7 @@ class Lexador {
14072
14069
  }
14073
14070
  exports.Lexador = Lexador;
14074
14071
 
14075
- },{"../tipos-de-simbolos/delegua":168,"./palavras-reservadas":162,"./simbolo":163,"browser-process-hrtime":347}],161:[function(require,module,exports){
14072
+ },{"../tipos-de-simbolos/delegua":169,"./palavras-reservadas":163,"./simbolo":164,"browser-process-hrtime":348}],162:[function(require,module,exports){
14076
14073
  "use strict";
14077
14074
  var __importDefault = (this && this.__importDefault) || function (mod) {
14078
14075
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14287,7 +14284,7 @@ class MicroLexador {
14287
14284
  }
14288
14285
  exports.MicroLexador = MicroLexador;
14289
14286
 
14290
- },{"../tipos-de-simbolos/microgramaticas/delegua":171,"./palavras-reservadas":162,"./simbolo":163}],162:[function(require,module,exports){
14287
+ },{"../tipos-de-simbolos/microgramaticas/delegua":172,"./palavras-reservadas":163,"./simbolo":164}],163:[function(require,module,exports){
14291
14288
  "use strict";
14292
14289
  var __importDefault = (this && this.__importDefault) || function (mod) {
14293
14290
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14350,7 +14347,7 @@ exports.palavrasReservadasMicroGramatica = {
14350
14347
  verdadeiro: delegua_1.default.VERDADEIRO,
14351
14348
  };
14352
14349
 
14353
- },{"../tipos-de-simbolos/delegua":168}],163:[function(require,module,exports){
14350
+ },{"../tipos-de-simbolos/delegua":169}],164:[function(require,module,exports){
14354
14351
  "use strict";
14355
14352
  Object.defineProperty(exports, "__esModule", { value: true });
14356
14353
  exports.Simbolo = void 0;
@@ -14368,7 +14365,7 @@ class Simbolo {
14368
14365
  }
14369
14366
  exports.Simbolo = Simbolo;
14370
14367
 
14371
- },{}],164:[function(require,module,exports){
14368
+ },{}],165:[function(require,module,exports){
14372
14369
  "use strict";
14373
14370
  Object.defineProperty(exports, "__esModule", { value: true });
14374
14371
  exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
@@ -14392,7 +14389,7 @@ class ContinuarQuebra extends Quebra {
14392
14389
  }
14393
14390
  exports.ContinuarQuebra = ContinuarQuebra;
14394
14391
 
14395
- },{}],165:[function(require,module,exports){
14392
+ },{}],166:[function(require,module,exports){
14396
14393
  "use strict";
14397
14394
  Object.defineProperty(exports, "__esModule", { value: true });
14398
14395
  exports.default = {
@@ -14422,7 +14419,7 @@ exports.default = {
14422
14419
  VETOR_TEXTO: 'texto[]',
14423
14420
  };
14424
14421
 
14425
- },{}],166:[function(require,module,exports){
14422
+ },{}],167:[function(require,module,exports){
14426
14423
  "use strict";
14427
14424
  Object.defineProperty(exports, "__esModule", { value: true });
14428
14425
  exports.default = {
@@ -14441,7 +14438,7 @@ exports.default = {
14441
14438
  TEXTO: 'string',
14442
14439
  };
14443
14440
 
14444
- },{}],167:[function(require,module,exports){
14441
+ },{}],168:[function(require,module,exports){
14445
14442
  "use strict";
14446
14443
  Object.defineProperty(exports, "__esModule", { value: true });
14447
14444
  exports.default = {
@@ -14467,7 +14464,7 @@ exports.default = {
14467
14464
  VIRGULA: 'VIRGULA',
14468
14465
  };
14469
14466
 
14470
- },{}],168:[function(require,module,exports){
14467
+ },{}],169:[function(require,module,exports){
14471
14468
  "use strict";
14472
14469
  Object.defineProperty(exports, "__esModule", { value: true });
14473
14470
  exports.default = {
@@ -14562,7 +14559,7 @@ exports.default = {
14562
14559
  VIRGULA: 'VIRGULA',
14563
14560
  };
14564
14561
 
14565
- },{}],169:[function(require,module,exports){
14562
+ },{}],170:[function(require,module,exports){
14566
14563
  "use strict";
14567
14564
  Object.defineProperty(exports, "__esModule", { value: true });
14568
14565
  exports.default = {
@@ -14640,7 +14637,7 @@ exports.default = {
14640
14637
  VIRGULA: 'VIRGULA',
14641
14638
  };
14642
14639
 
14643
- },{}],170:[function(require,module,exports){
14640
+ },{}],171:[function(require,module,exports){
14644
14641
  "use strict";
14645
14642
  Object.defineProperty(exports, "__esModule", { value: true });
14646
14643
  exports.default = {
@@ -14657,7 +14654,7 @@ exports.default = {
14657
14654
  VIRGULA: 'VIRGULA',
14658
14655
  };
14659
14656
 
14660
- },{}],171:[function(require,module,exports){
14657
+ },{}],172:[function(require,module,exports){
14661
14658
  "use strict";
14662
14659
  Object.defineProperty(exports, "__esModule", { value: true });
14663
14660
  exports.default = {
@@ -14706,7 +14703,7 @@ exports.default = {
14706
14703
  VIRGULA: 'VIRGULA',
14707
14704
  };
14708
14705
 
14709
- },{}],172:[function(require,module,exports){
14706
+ },{}],173:[function(require,module,exports){
14710
14707
  "use strict";
14711
14708
  Object.defineProperty(exports, "__esModule", { value: true });
14712
14709
  exports.default = {
@@ -14789,7 +14786,7 @@ exports.default = {
14789
14786
  VIRGULA: 'VIRGULA',
14790
14787
  };
14791
14788
 
14792
- },{}],173:[function(require,module,exports){
14789
+ },{}],174:[function(require,module,exports){
14793
14790
  "use strict";
14794
14791
  Object.defineProperty(exports, "__esModule", { value: true });
14795
14792
  exports.default = {
@@ -14828,14 +14825,14 @@ exports.default = {
14828
14825
  VIRGULA: 'VIRGULA',
14829
14826
  };
14830
14827
 
14831
- },{}],174:[function(require,module,exports){
14828
+ },{}],175:[function(require,module,exports){
14832
14829
  "use strict";
14833
14830
  Object.defineProperty(exports, "__esModule", { value: true });
14834
14831
  // Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
14835
14832
  exports.default = {
14836
14833
  ADICAO: 'ADICAO',
14837
- ARROBA: 'ARROBA',
14838
14834
  ATÉ: 'ATÉ',
14835
+ BIBLIOTECA_GLOBAL: 'BIBLIOTECA_GLOBAL',
14839
14836
  BIT_AND: 'BIT_AND',
14840
14837
  BIT_OR: 'BIT_OR',
14841
14838
  BIT_XOR: 'BIT_XOR',
@@ -14844,61 +14841,53 @@ exports.default = {
14844
14841
  CASO: 'CASO',
14845
14842
  CHAVE_DIREITA: 'CHAVE_DIREITA',
14846
14843
  CHAVE_ESQUERDA: 'CHAVE_ESQUERDA',
14847
- CLASSE: 'CLASSE',
14848
14844
  COLCHETE_DIREITO: 'COLCHETE_DIREITO',
14849
14845
  COLCHETE_ESQUERDO: 'COLCHETE_ESQUERDO',
14850
14846
  COMENTARIO: 'COMENTARIO',
14851
14847
  COMO: 'COMO',
14852
- CONSTANTE: 'CONSTANTE',
14853
14848
  CONSTRUTOR: 'CONSTRUTOR',
14854
14849
  CONTINUA: 'CONTINUA',
14855
14850
  DECREMENTAR: 'DECREMENTAR',
14856
14851
  DIFERENTE: 'DIFERENTE',
14857
14852
  DIVISAO: 'DIVISAO',
14858
- DIVISAO_IGUAL: 'DIVISAO_IGUAL',
14859
14853
  DIVISAO_INTEIRA: 'DIVISAO_INTEIRA',
14860
- DIVISAO_INTEIRA_IGUAL: 'DIVISAO_INTEIRA_IGUAL',
14861
14854
  DOIS_PONTOS: 'DOIS_PONTOS',
14862
14855
  E: 'E',
14863
14856
  É: 'É',
14864
14857
  EM: 'EM',
14865
- ENTÃO: 'ENTÃO',
14866
14858
  ENQUANTO: 'ENQUANTO',
14859
+ ENTÃO: 'ENTÃO',
14860
+ ENTRADA: 'ENTRADA',
14867
14861
  EOF: 'EOF',
14868
14862
  ESCOLHA: 'ESCOLHA',
14869
14863
  EXIBA: 'EXIBA',
14870
14864
  EXPONENCIACAO: 'EXPONENCIACAO',
14871
14865
  EXPRESSAO_REGULAR: 'EXPRESSAO_REGULAR',
14872
- FALHAR: 'FALHAR',
14873
14866
  FALSO: 'FALSO',
14874
14867
  FAÇA: 'FAÇA',
14875
- FAZER: 'FAZER',
14876
14868
  FIM: 'FIM',
14877
14869
  FINALMENTE: 'FINALMENTE',
14878
- FUNCAO: 'FUNCAO',
14879
14870
  FUNÇÃO: 'FUNÇÃO',
14880
- HERDA: 'HERDA',
14881
14871
  IDENTIFICADOR: 'IDENTIFICADOR',
14882
14872
  IGUAL: 'IGUAL',
14883
14873
  IGUAL_IGUAL: 'IGUAL_IGUAL',
14884
14874
  IMPORTAR: 'IMPORTAR',
14885
14875
  INCREMENTAR: 'INCREMENTAR',
14876
+ INFINITO: 'INFINITO',
14886
14877
  ISTO: 'ISTO',
14887
14878
  LEIA: 'LEIA',
14888
- LINHA_COMENTARIO: 'LINHA_COMENTARIO',
14879
+ LISTA: 'LISTA',
14889
14880
  MAIOR: 'MAIOR',
14890
14881
  MAIOR_IGUAL: 'MAIOR_IGUAL',
14891
14882
  MAIOR_MAIOR: 'MAIOR_MAIOR',
14892
- MAIS_IGUAL: 'MAIS_IGUAL',
14883
+ MATEMÁTICA: 'MATEMÁTICA',
14893
14884
  MENOR: 'MENOR',
14894
14885
  MENOR_IGUAL: 'MENOR_IGUAL',
14895
14886
  MENOR_MENOR: 'MENOR_MENOR',
14896
- MENOS_IGUAL: 'MENOS_IGUAL',
14897
14887
  MODULO: 'MODULO',
14898
- MODULO_IGUAL: 'MODULO_IGUAL',
14899
14888
  MULTIPLICACAO: 'MULTIPLICACAO',
14900
- MULTIPLICACAO_IGUAL: 'MULTIPLICACAO_IGUAL',
14901
14889
  NADA: 'NADA',
14890
+ NAN: 'NAN',
14902
14891
  NÃO: 'NÃO',
14903
14892
  NEGACAO: 'NEGACAO',
14904
14893
  NUMERO: 'NUMERO',
@@ -14931,7 +14920,7 @@ exports.default = {
14931
14920
  VIRGULA: 'VIRGULA',
14932
14921
  };
14933
14922
 
14934
- },{}],175:[function(require,module,exports){
14923
+ },{}],176:[function(require,module,exports){
14935
14924
  "use strict";
14936
14925
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
14937
14926
  if (k2 === undefined) k2 = k;
@@ -14957,7 +14946,7 @@ __exportStar(require("./tradutor-reverso-javascript"), exports);
14957
14946
  __exportStar(require("./tradutor-reverso-python"), exports);
14958
14947
  __exportStar(require("./tradutor-reverso-tenda"), exports);
14959
14948
 
14960
- },{"./tradutor-assemblyscript":178,"./tradutor-javascript":179,"./tradutor-mermaidjs":180,"./tradutor-portugol-ipt":181,"./tradutor-python":182,"./tradutor-reverso-javascript":183,"./tradutor-reverso-python":184,"./tradutor-reverso-tenda":185}],176:[function(require,module,exports){
14949
+ },{"./tradutor-assemblyscript":179,"./tradutor-javascript":180,"./tradutor-mermaidjs":181,"./tradutor-portugol-ipt":182,"./tradutor-python":183,"./tradutor-reverso-javascript":184,"./tradutor-reverso-python":185,"./tradutor-reverso-tenda":186}],177:[function(require,module,exports){
14961
14950
  "use strict";
14962
14951
  // Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
14963
14952
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -16197,7 +16186,7 @@ __decorate([
16197
16186
  Decorators_1.Override
16198
16187
  ], Python3Lexer.prototype, "nextToken", null);
16199
16188
 
16200
- },{"./python3-parser":177,"antlr4ts/CommonToken":195,"antlr4ts/Decorators":199,"antlr4ts/Lexer":207,"antlr4ts/Token":224,"antlr4ts/VocabularyImpl":230,"antlr4ts/atn/ATNDeserializer":236,"antlr4ts/atn/LexerATNSimulator":257,"antlr4ts/misc/Utils":318}],177:[function(require,module,exports){
16189
+ },{"./python3-parser":178,"antlr4ts/CommonToken":196,"antlr4ts/Decorators":200,"antlr4ts/Lexer":208,"antlr4ts/Token":225,"antlr4ts/VocabularyImpl":231,"antlr4ts/atn/ATNDeserializer":237,"antlr4ts/atn/LexerATNSimulator":258,"antlr4ts/misc/Utils":319}],178:[function(require,module,exports){
16201
16190
  "use strict";
16202
16191
  // Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
16203
16192
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -27444,7 +27433,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
27444
27433
  }
27445
27434
  exports.Yield_argContext = Yield_argContext;
27446
27435
 
27447
- },{"antlr4ts/FailedPredicateException":203,"antlr4ts/NoViableAltException":211,"antlr4ts/Parser":212,"antlr4ts/ParserRuleContext":215,"antlr4ts/RecognitionException":218,"antlr4ts/Token":224,"antlr4ts/VocabularyImpl":230,"antlr4ts/atn/ATN":232,"antlr4ts/atn/ATNDeserializer":236,"antlr4ts/atn/ParserATNSimulator":273,"antlr4ts/misc/Utils":318}],178:[function(require,module,exports){
27436
+ },{"antlr4ts/FailedPredicateException":204,"antlr4ts/NoViableAltException":212,"antlr4ts/Parser":213,"antlr4ts/ParserRuleContext":216,"antlr4ts/RecognitionException":219,"antlr4ts/Token":225,"antlr4ts/VocabularyImpl":231,"antlr4ts/atn/ATN":233,"antlr4ts/atn/ATNDeserializer":237,"antlr4ts/atn/ParserATNSimulator":274,"antlr4ts/misc/Utils":319}],179:[function(require,module,exports){
27448
27437
  "use strict";
27449
27438
  var __importDefault = (this && this.__importDefault) || function (mod) {
27450
27439
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -28078,7 +28067,7 @@ class TradutorAssemblyScript {
28078
28067
  }
28079
28068
  exports.TradutorAssemblyScript = TradutorAssemblyScript;
28080
28069
 
28081
- },{"../construtos":44,"../declaracoes":84,"../tipos-de-simbolos/delegua":168}],179:[function(require,module,exports){
28070
+ },{"../construtos":44,"../declaracoes":85,"../tipos-de-simbolos/delegua":169}],180:[function(require,module,exports){
28082
28071
  "use strict";
28083
28072
  var __importDefault = (this && this.__importDefault) || function (mod) {
28084
28073
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -28817,7 +28806,7 @@ class TradutorJavaScript {
28817
28806
  }
28818
28807
  exports.TradutorJavaScript = TradutorJavaScript;
28819
28808
 
28820
- },{"../construtos":44,"../declaracoes":84,"../tipos-de-simbolos/delegua":168}],180:[function(require,module,exports){
28809
+ },{"../construtos":44,"../declaracoes":85,"../tipos-de-simbolos/delegua":169}],181:[function(require,module,exports){
28821
28810
  "use strict";
28822
28811
  var __importDefault = (this && this.__importDefault) || function (mod) {
28823
28812
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -29268,7 +29257,7 @@ class TradutorMermaidJs {
29268
29257
  }
29269
29258
  exports.TradutorMermaidJs = TradutorMermaidJs;
29270
29259
 
29271
- },{"../tipos-de-simbolos/delegua":168}],181:[function(require,module,exports){
29260
+ },{"../tipos-de-simbolos/delegua":169}],182:[function(require,module,exports){
29272
29261
  "use strict";
29273
29262
  Object.defineProperty(exports, "__esModule", { value: true });
29274
29263
  exports.TradutorPortugolIpt = void 0;
@@ -29330,7 +29319,7 @@ class TradutorPortugolIpt {
29330
29319
  }
29331
29320
  exports.TradutorPortugolIpt = TradutorPortugolIpt;
29332
29321
 
29333
- },{"../avaliador-sintatico/dialetos":8,"../lexador/dialetos":146}],182:[function(require,module,exports){
29322
+ },{"../avaliador-sintatico/dialetos":8,"../lexador/dialetos":147}],183:[function(require,module,exports){
29334
29323
  "use strict";
29335
29324
  var __importDefault = (this && this.__importDefault) || function (mod) {
29336
29325
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -29970,7 +29959,7 @@ class TradutorPython {
29970
29959
  }
29971
29960
  exports.TradutorPython = TradutorPython;
29972
29961
 
29973
- },{"../construtos":44,"../declaracoes":84,"../tipos-de-simbolos/delegua":168}],183:[function(require,module,exports){
29962
+ },{"../construtos":44,"../declaracoes":85,"../tipos-de-simbolos/delegua":169}],184:[function(require,module,exports){
29974
29963
  "use strict";
29975
29964
  Object.defineProperty(exports, "__esModule", { value: true });
29976
29965
  exports.TradutorReversoJavaScript = void 0;
@@ -30365,7 +30354,7 @@ class TradutorReversoJavaScript {
30365
30354
  }
30366
30355
  exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
30367
30356
 
30368
- },{}],184:[function(require,module,exports){
30357
+ },{}],185:[function(require,module,exports){
30369
30358
  "use strict";
30370
30359
  Object.defineProperty(exports, "__esModule", { value: true });
30371
30360
  exports.TradutorReversoPython = void 0;
@@ -30438,7 +30427,7 @@ class TradutorReversoPython {
30438
30427
  }
30439
30428
  exports.TradutorReversoPython = TradutorReversoPython;
30440
30429
 
30441
- },{"./python/python3-lexer":176,"./python/python3-parser":177,"antlr4ts":301,"antlr4ts/tree/ParseTreeWalker":320}],185:[function(require,module,exports){
30430
+ },{"./python/python3-lexer":177,"./python/python3-parser":178,"antlr4ts":302,"antlr4ts/tree/ParseTreeWalker":321}],186:[function(require,module,exports){
30442
30431
  "use strict";
30443
30432
  var __importDefault = (this && this.__importDefault) || function (mod) {
30444
30433
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -31023,7 +31012,7 @@ class TradutorReversoTenda {
31023
31012
  }
31024
31013
  exports.TradutorReversoTenda = TradutorReversoTenda;
31025
31014
 
31026
- },{"../construtos":44,"../tipos-de-simbolos/tenda":174}],186:[function(require,module,exports){
31015
+ },{"../construtos":44,"../tipos-de-simbolos/tenda":175}],187:[function(require,module,exports){
31027
31016
  "use strict";
31028
31017
  /*!
31029
31018
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -31031,7 +31020,7 @@ exports.TradutorReversoTenda = TradutorReversoTenda;
31031
31020
  */
31032
31021
  Object.defineProperty(exports, "__esModule", { value: true });
31033
31022
 
31034
- },{}],187:[function(require,module,exports){
31023
+ },{}],188:[function(require,module,exports){
31035
31024
  "use strict";
31036
31025
  /*!
31037
31026
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -31039,7 +31028,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
31039
31028
  */
31040
31029
  Object.defineProperty(exports, "__esModule", { value: true });
31041
31030
 
31042
- },{}],188:[function(require,module,exports){
31031
+ },{}],189:[function(require,module,exports){
31043
31032
  "use strict";
31044
31033
  /*!
31045
31034
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -31201,7 +31190,7 @@ __decorate([
31201
31190
  ], ANTLRInputStream.prototype, "toString", null);
31202
31191
  exports.ANTLRInputStream = ANTLRInputStream;
31203
31192
 
31204
- },{"./Decorators":199,"./IntStream":205,"assert":342}],189:[function(require,module,exports){
31193
+ },{"./Decorators":200,"./IntStream":206,"assert":343}],190:[function(require,module,exports){
31205
31194
  "use strict";
31206
31195
  /*!
31207
31196
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -31284,7 +31273,7 @@ __decorate([
31284
31273
  ], BailErrorStrategy.prototype, "sync", null);
31285
31274
  exports.BailErrorStrategy = BailErrorStrategy;
31286
31275
 
31287
- },{"./Decorators":199,"./DefaultErrorStrategy":200,"./InputMismatchException":204,"./misc/ParseCancellationException":316}],190:[function(require,module,exports){
31276
+ },{"./Decorators":200,"./DefaultErrorStrategy":201,"./InputMismatchException":205,"./misc/ParseCancellationException":317}],191:[function(require,module,exports){
31288
31277
  "use strict";
31289
31278
  /*!
31290
31279
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -31774,7 +31763,7 @@ BufferedTokenStream = __decorate([
31774
31763
  ], BufferedTokenStream);
31775
31764
  exports.BufferedTokenStream = BufferedTokenStream;
31776
31765
 
31777
- },{"./CommonToken":195,"./Decorators":199,"./Lexer":207,"./Token":224,"./misc/Interval":311,"assert":342}],191:[function(require,module,exports){
31766
+ },{"./CommonToken":196,"./Decorators":200,"./Lexer":208,"./Token":225,"./misc/Interval":312,"assert":343}],192:[function(require,module,exports){
31778
31767
  "use strict";
31779
31768
  /*!
31780
31769
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -31782,7 +31771,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
31782
31771
  */
31783
31772
  Object.defineProperty(exports, "__esModule", { value: true });
31784
31773
 
31785
- },{}],192:[function(require,module,exports){
31774
+ },{}],193:[function(require,module,exports){
31786
31775
  "use strict";
31787
31776
  /*!
31788
31777
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -31916,7 +31905,7 @@ var CharStreams;
31916
31905
  // }
31917
31906
  })(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
31918
31907
 
31919
- },{"./CodePointBuffer":193,"./CodePointCharStream":194,"./IntStream":205}],193:[function(require,module,exports){
31908
+ },{"./CodePointBuffer":194,"./CodePointCharStream":195,"./IntStream":206}],194:[function(require,module,exports){
31920
31909
  "use strict";
31921
31910
  /*!
31922
31911
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32151,7 +32140,7 @@ exports.CodePointBuffer = CodePointBuffer;
32151
32140
  CodePointBuffer.Builder = Builder;
32152
32141
  })(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
32153
32142
 
32154
- },{"./misc/Character":307,"assert":342}],194:[function(require,module,exports){
32143
+ },{"./misc/Character":308,"assert":343}],195:[function(require,module,exports){
32155
32144
  "use strict";
32156
32145
  /*!
32157
32146
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32301,7 +32290,7 @@ __decorate([
32301
32290
  ], CodePointCharStream.prototype, "getText", null);
32302
32291
  exports.CodePointCharStream = CodePointCharStream;
32303
32292
 
32304
- },{"./Decorators":199,"./IntStream":205,"./misc/Interval":311,"assert":342}],195:[function(require,module,exports){
32293
+ },{"./Decorators":200,"./IntStream":206,"./misc/Interval":312,"assert":343}],196:[function(require,module,exports){
32305
32294
  "use strict";
32306
32295
  /*!
32307
32296
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32531,7 +32520,7 @@ CommonToken = __decorate([
32531
32520
  ], CommonToken);
32532
32521
  exports.CommonToken = CommonToken;
32533
32522
 
32534
- },{"./Decorators":199,"./Token":224,"./misc/Interval":311}],196:[function(require,module,exports){
32523
+ },{"./Decorators":200,"./Token":225,"./misc/Interval":312}],197:[function(require,module,exports){
32535
32524
  "use strict";
32536
32525
  /*!
32537
32526
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32595,7 +32584,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
32595
32584
  CommonTokenFactory.DEFAULT = new CommonTokenFactory();
32596
32585
  })(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
32597
32586
 
32598
- },{"./CommonToken":195,"./Decorators":199,"./misc/Interval":311}],197:[function(require,module,exports){
32587
+ },{"./CommonToken":196,"./Decorators":200,"./misc/Interval":312}],198:[function(require,module,exports){
32599
32588
  "use strict";
32600
32589
  /*!
32601
32590
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32722,7 +32711,7 @@ CommonTokenStream = __decorate([
32722
32711
  ], CommonTokenStream);
32723
32712
  exports.CommonTokenStream = CommonTokenStream;
32724
32713
 
32725
- },{"./BufferedTokenStream":190,"./Decorators":199,"./Token":224}],198:[function(require,module,exports){
32714
+ },{"./BufferedTokenStream":191,"./Decorators":200,"./Token":225}],199:[function(require,module,exports){
32726
32715
  "use strict";
32727
32716
  /*!
32728
32717
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32756,7 +32745,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
32756
32745
  */
32757
32746
  ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
32758
32747
 
32759
- },{}],199:[function(require,module,exports){
32748
+ },{}],200:[function(require,module,exports){
32760
32749
  "use strict";
32761
32750
  /*!
32762
32751
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32783,7 +32772,7 @@ function SuppressWarnings(options) {
32783
32772
  }
32784
32773
  exports.SuppressWarnings = SuppressWarnings;
32785
32774
 
32786
- },{}],200:[function(require,module,exports){
32775
+ },{}],201:[function(require,module,exports){
32787
32776
  "use strict";
32788
32777
  /*!
32789
32778
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33597,7 +33586,7 @@ __decorate([
33597
33586
  ], DefaultErrorStrategy.prototype, "consumeUntil", null);
33598
33587
  exports.DefaultErrorStrategy = DefaultErrorStrategy;
33599
33588
 
33600
- },{"./Decorators":199,"./FailedPredicateException":203,"./InputMismatchException":204,"./NoViableAltException":211,"./Token":224,"./atn/ATNState":238,"./atn/ATNStateType":239,"./atn/PredictionContext":279,"./misc/IntervalSet":312}],201:[function(require,module,exports){
33589
+ },{"./Decorators":200,"./FailedPredicateException":204,"./InputMismatchException":205,"./NoViableAltException":212,"./Token":225,"./atn/ATNState":239,"./atn/ATNStateType":240,"./atn/PredictionContext":280,"./misc/IntervalSet":313}],202:[function(require,module,exports){
33601
33590
  "use strict";
33602
33591
  /*!
33603
33592
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33673,7 +33662,7 @@ var Dependents;
33673
33662
  Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
33674
33663
  })(Dependents = exports.Dependents || (exports.Dependents = {}));
33675
33664
 
33676
- },{}],202:[function(require,module,exports){
33665
+ },{}],203:[function(require,module,exports){
33677
33666
  "use strict";
33678
33667
  /*!
33679
33668
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33821,7 +33810,7 @@ __decorate([
33821
33810
  ], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
33822
33811
  exports.DiagnosticErrorListener = DiagnosticErrorListener;
33823
33812
 
33824
- },{"./Decorators":199,"./misc/BitSet":306,"./misc/Interval":311}],203:[function(require,module,exports){
33813
+ },{"./Decorators":200,"./misc/BitSet":307,"./misc/Interval":312}],204:[function(require,module,exports){
33825
33814
  "use strict";
33826
33815
  /*!
33827
33816
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33886,7 +33875,7 @@ FailedPredicateException = __decorate([
33886
33875
  ], FailedPredicateException);
33887
33876
  exports.FailedPredicateException = FailedPredicateException;
33888
33877
 
33889
- },{"./Decorators":199,"./RecognitionException":218,"./atn/PredicateTransition":278}],204:[function(require,module,exports){
33878
+ },{"./Decorators":200,"./RecognitionException":219,"./atn/PredicateTransition":279}],205:[function(require,module,exports){
33890
33879
  "use strict";
33891
33880
  /*!
33892
33881
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33926,7 +33915,7 @@ InputMismatchException = __decorate([
33926
33915
  ], InputMismatchException);
33927
33916
  exports.InputMismatchException = InputMismatchException;
33928
33917
 
33929
- },{"./Decorators":199,"./RecognitionException":218}],205:[function(require,module,exports){
33918
+ },{"./Decorators":200,"./RecognitionException":219}],206:[function(require,module,exports){
33930
33919
  "use strict";
33931
33920
  /*!
33932
33921
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33949,7 +33938,7 @@ var IntStream;
33949
33938
  IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
33950
33939
  })(IntStream = exports.IntStream || (exports.IntStream = {}));
33951
33940
 
33952
- },{}],206:[function(require,module,exports){
33941
+ },{}],207:[function(require,module,exports){
33953
33942
  "use strict";
33954
33943
  /*!
33955
33944
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33996,7 +33985,7 @@ __decorate([
33996
33985
  ], InterpreterRuleContext.prototype, "ruleIndex", null);
33997
33986
  exports.InterpreterRuleContext = InterpreterRuleContext;
33998
33987
 
33999
- },{"./Decorators":199,"./ParserRuleContext":215}],207:[function(require,module,exports){
33988
+ },{"./Decorators":200,"./ParserRuleContext":216}],208:[function(require,module,exports){
34000
33989
  "use strict";
34001
33990
  /*!
34002
33991
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34332,7 +34321,7 @@ __decorate([
34332
34321
  ], Lexer.prototype, "charPositionInLine", null);
34333
34322
  exports.Lexer = Lexer;
34334
34323
 
34335
- },{"./CommonTokenFactory":196,"./Decorators":199,"./IntStream":205,"./LexerNoViableAltException":209,"./Recognizer":219,"./Token":224,"./atn/LexerATNSimulator":257,"./misc/IntegerStack":310,"./misc/Interval":311}],208:[function(require,module,exports){
34324
+ },{"./CommonTokenFactory":197,"./Decorators":200,"./IntStream":206,"./LexerNoViableAltException":210,"./Recognizer":220,"./Token":225,"./atn/LexerATNSimulator":258,"./misc/IntegerStack":311,"./misc/Interval":312}],209:[function(require,module,exports){
34336
34325
  "use strict";
34337
34326
  /*!
34338
34327
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34412,7 +34401,7 @@ LexerInterpreter = __decorate([
34412
34401
  ], LexerInterpreter);
34413
34402
  exports.LexerInterpreter = LexerInterpreter;
34414
34403
 
34415
- },{"./Decorators":199,"./Lexer":207,"./atn/LexerATNSimulator":257}],209:[function(require,module,exports){
34404
+ },{"./Decorators":200,"./Lexer":208,"./atn/LexerATNSimulator":258}],210:[function(require,module,exports){
34416
34405
  "use strict";
34417
34406
  /*!
34418
34407
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34469,7 +34458,7 @@ LexerNoViableAltException = __decorate([
34469
34458
  ], LexerNoViableAltException);
34470
34459
  exports.LexerNoViableAltException = LexerNoViableAltException;
34471
34460
 
34472
- },{"./Decorators":199,"./RecognitionException":218,"./misc/Interval":311,"./misc/Utils":318}],210:[function(require,module,exports){
34461
+ },{"./Decorators":200,"./RecognitionException":219,"./misc/Interval":312,"./misc/Utils":319}],211:[function(require,module,exports){
34473
34462
  "use strict";
34474
34463
  /*!
34475
34464
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34679,7 +34668,7 @@ ListTokenSource = __decorate([
34679
34668
  ], ListTokenSource);
34680
34669
  exports.ListTokenSource = ListTokenSource;
34681
34670
 
34682
- },{"./CommonTokenFactory":196,"./Decorators":199,"./Token":224}],211:[function(require,module,exports){
34671
+ },{"./CommonTokenFactory":197,"./Decorators":200,"./Token":225}],212:[function(require,module,exports){
34683
34672
  "use strict";
34684
34673
  /*!
34685
34674
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34734,7 +34723,7 @@ __decorate([
34734
34723
  ], NoViableAltException.prototype, "_startToken", void 0);
34735
34724
  exports.NoViableAltException = NoViableAltException;
34736
34725
 
34737
- },{"./Decorators":199,"./Parser":212,"./RecognitionException":218}],212:[function(require,module,exports){
34726
+ },{"./Decorators":200,"./Parser":213,"./RecognitionException":219}],213:[function(require,module,exports){
34738
34727
  (function (process){(function (){
34739
34728
  "use strict";
34740
34729
  /*!
@@ -35580,7 +35569,7 @@ __decorate([
35580
35569
  exports.Parser = Parser;
35581
35570
 
35582
35571
  }).call(this)}).call(this,require('_process'))
35583
- },{"./Decorators":199,"./DefaultErrorStrategy":200,"./Lexer":207,"./ProxyParserErrorListener":217,"./Recognizer":219,"./Token":224,"./atn/ATNDeserializationOptions":235,"./atn/ATNDeserializer":236,"./atn/ParseInfo":272,"./atn/ParserATNSimulator":273,"./atn/ProfilingATNSimulator":282,"./misc/IntegerStack":310,"./misc/Utils":318,"./tree/ErrorNode":319,"./tree/TerminalNode":322,"./tree/pattern/ParseTreePatternMatcher":327,"_process":401}],213:[function(require,module,exports){
35572
+ },{"./Decorators":200,"./DefaultErrorStrategy":201,"./Lexer":208,"./ProxyParserErrorListener":218,"./Recognizer":220,"./Token":225,"./atn/ATNDeserializationOptions":236,"./atn/ATNDeserializer":237,"./atn/ParseInfo":273,"./atn/ParserATNSimulator":274,"./atn/ProfilingATNSimulator":283,"./misc/IntegerStack":311,"./misc/Utils":319,"./tree/ErrorNode":320,"./tree/TerminalNode":323,"./tree/pattern/ParseTreePatternMatcher":328,"_process":402}],214:[function(require,module,exports){
35584
35573
  "use strict";
35585
35574
  /*!
35586
35575
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35588,7 +35577,7 @@ exports.Parser = Parser;
35588
35577
  */
35589
35578
  Object.defineProperty(exports, "__esModule", { value: true });
35590
35579
 
35591
- },{}],214:[function(require,module,exports){
35580
+ },{}],215:[function(require,module,exports){
35592
35581
  "use strict";
35593
35582
  /*!
35594
35583
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35996,7 +35985,7 @@ ParserInterpreter = __decorate([
35996
35985
  ], ParserInterpreter);
35997
35986
  exports.ParserInterpreter = ParserInterpreter;
35998
35987
 
35999
- },{"./Decorators":199,"./FailedPredicateException":203,"./InputMismatchException":204,"./InterpreterRuleContext":206,"./Parser":212,"./RecognitionException":218,"./Token":224,"./atn/ATNState":238,"./atn/ATNStateType":239,"./atn/LoopEndState":269,"./atn/ParserATNSimulator":273,"./atn/StarLoopEntryState":291,"./misc/BitSet":306}],215:[function(require,module,exports){
35988
+ },{"./Decorators":200,"./FailedPredicateException":204,"./InputMismatchException":205,"./InterpreterRuleContext":207,"./Parser":213,"./RecognitionException":219,"./Token":225,"./atn/ATNState":239,"./atn/ATNStateType":240,"./atn/LoopEndState":270,"./atn/ParserATNSimulator":274,"./atn/StarLoopEntryState":292,"./misc/BitSet":307}],216:[function(require,module,exports){
36000
35989
  "use strict";
36001
35990
  /*!
36002
35991
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36297,7 +36286,7 @@ __decorate([
36297
36286
  ], ParserRuleContext.prototype, "sourceInterval", null);
36298
36287
  exports.ParserRuleContext = ParserRuleContext;
36299
36288
 
36300
- },{"./Decorators":199,"./RuleContext":220,"./misc/Interval":311,"./tree/ErrorNode":319,"./tree/TerminalNode":322}],216:[function(require,module,exports){
36289
+ },{"./Decorators":200,"./RuleContext":221,"./misc/Interval":312,"./tree/ErrorNode":320,"./tree/TerminalNode":323}],217:[function(require,module,exports){
36301
36290
  "use strict";
36302
36291
  /*!
36303
36292
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36347,7 +36336,7 @@ __decorate([
36347
36336
  ], ProxyErrorListener.prototype, "syntaxError", null);
36348
36337
  exports.ProxyErrorListener = ProxyErrorListener;
36349
36338
 
36350
- },{"./Decorators":199}],217:[function(require,module,exports){
36339
+ },{"./Decorators":200}],218:[function(require,module,exports){
36351
36340
  "use strict";
36352
36341
  /*!
36353
36342
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36406,7 +36395,7 @@ __decorate([
36406
36395
  ], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
36407
36396
  exports.ProxyParserErrorListener = ProxyParserErrorListener;
36408
36397
 
36409
- },{"./Decorators":199,"./ProxyErrorListener":216}],218:[function(require,module,exports){
36398
+ },{"./Decorators":200,"./ProxyErrorListener":217}],219:[function(require,module,exports){
36410
36399
  "use strict";
36411
36400
  /*!
36412
36401
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36511,7 +36500,7 @@ class RecognitionException extends Error {
36511
36500
  }
36512
36501
  exports.RecognitionException = RecognitionException;
36513
36502
 
36514
- },{}],219:[function(require,module,exports){
36503
+ },{}],220:[function(require,module,exports){
36515
36504
  "use strict";
36516
36505
  /*!
36517
36506
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36730,7 +36719,7 @@ __decorate([
36730
36719
  ], Recognizer.prototype, "getErrorListeners", null);
36731
36720
  exports.Recognizer = Recognizer;
36732
36721
 
36733
- },{"./ConsoleErrorListener":198,"./Decorators":199,"./ProxyErrorListener":216,"./Token":224,"./misc/Utils":318}],220:[function(require,module,exports){
36722
+ },{"./ConsoleErrorListener":199,"./Decorators":200,"./ProxyErrorListener":217,"./Token":225,"./misc/Utils":319}],221:[function(require,module,exports){
36734
36723
  "use strict";
36735
36724
  /*!
36736
36725
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36947,7 +36936,7 @@ __decorate([
36947
36936
  ], RuleContext.prototype, "toStringTree", null);
36948
36937
  exports.RuleContext = RuleContext;
36949
36938
 
36950
- },{"./Decorators":199,"./ParserRuleContext":215,"./Recognizer":219,"./atn/ATN":232,"./misc/Interval":311,"./tree/RuleNode":321,"./tree/Trees":323}],221:[function(require,module,exports){
36939
+ },{"./Decorators":200,"./ParserRuleContext":216,"./Recognizer":220,"./atn/ATN":233,"./misc/Interval":312,"./tree/RuleNode":322,"./tree/Trees":324}],222:[function(require,module,exports){
36951
36940
  "use strict";
36952
36941
  /*!
36953
36942
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36998,7 +36987,7 @@ __decorate([
36998
36987
  ], RuleContextWithAltNum.prototype, "altNumber", null);
36999
36988
  exports.RuleContextWithAltNum = RuleContextWithAltNum;
37000
36989
 
37001
- },{"./Decorators":199,"./ParserRuleContext":215,"./atn/ATN":232}],222:[function(require,module,exports){
36990
+ },{"./Decorators":200,"./ParserRuleContext":216,"./atn/ATN":233}],223:[function(require,module,exports){
37002
36991
  "use strict";
37003
36992
  /*!
37004
36993
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37021,7 +37010,7 @@ function RuleDependency(dependency) {
37021
37010
  }
37022
37011
  exports.RuleDependency = RuleDependency;
37023
37012
 
37024
- },{}],223:[function(require,module,exports){
37013
+ },{}],224:[function(require,module,exports){
37025
37014
  "use strict";
37026
37015
  /*!
37027
37016
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37040,7 +37029,7 @@ function RuleVersion(version) {
37040
37029
  }
37041
37030
  exports.RuleVersion = RuleVersion;
37042
37031
 
37043
- },{}],224:[function(require,module,exports){
37032
+ },{}],225:[function(require,module,exports){
37044
37033
  "use strict";
37045
37034
  /*!
37046
37035
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37080,7 +37069,7 @@ var Token;
37080
37069
  Token.MIN_USER_CHANNEL_VALUE = 2;
37081
37070
  })(Token = exports.Token || (exports.Token = {}));
37082
37071
 
37083
- },{"./IntStream":205}],225:[function(require,module,exports){
37072
+ },{"./IntStream":206}],226:[function(require,module,exports){
37084
37073
  "use strict";
37085
37074
  /*!
37086
37075
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37088,7 +37077,7 @@ var Token;
37088
37077
  */
37089
37078
  Object.defineProperty(exports, "__esModule", { value: true });
37090
37079
 
37091
- },{}],226:[function(require,module,exports){
37080
+ },{}],227:[function(require,module,exports){
37092
37081
  "use strict";
37093
37082
  /*!
37094
37083
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37096,7 +37085,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
37096
37085
  */
37097
37086
  Object.defineProperty(exports, "__esModule", { value: true });
37098
37087
 
37099
- },{}],227:[function(require,module,exports){
37088
+ },{}],228:[function(require,module,exports){
37100
37089
  "use strict";
37101
37090
  /*!
37102
37091
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37104,7 +37093,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
37104
37093
  */
37105
37094
  Object.defineProperty(exports, "__esModule", { value: true });
37106
37095
 
37107
- },{}],228:[function(require,module,exports){
37096
+ },{}],229:[function(require,module,exports){
37108
37097
  "use strict";
37109
37098
  /*!
37110
37099
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37612,7 +37601,7 @@ __decorate([
37612
37601
  Decorators_1.Override
37613
37602
  ], ReplaceOp.prototype, "toString", null);
37614
37603
 
37615
- },{"./Decorators":199,"./Token":224,"./misc/Interval":311}],229:[function(require,module,exports){
37604
+ },{"./Decorators":200,"./Token":225,"./misc/Interval":312}],230:[function(require,module,exports){
37616
37605
  "use strict";
37617
37606
  /*!
37618
37607
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37620,7 +37609,7 @@ __decorate([
37620
37609
  */
37621
37610
  Object.defineProperty(exports, "__esModule", { value: true });
37622
37611
 
37623
- },{}],230:[function(require,module,exports){
37612
+ },{}],231:[function(require,module,exports){
37624
37613
  "use strict";
37625
37614
  /*!
37626
37615
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37740,7 +37729,7 @@ __decorate([
37740
37729
  ], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
37741
37730
  exports.VocabularyImpl = VocabularyImpl;
37742
37731
 
37743
- },{"./Decorators":199,"./Token":224}],231:[function(require,module,exports){
37732
+ },{"./Decorators":200,"./Token":225}],232:[function(require,module,exports){
37744
37733
  "use strict";
37745
37734
  /*!
37746
37735
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37748,7 +37737,7 @@ exports.VocabularyImpl = VocabularyImpl;
37748
37737
  */
37749
37738
  Object.defineProperty(exports, "__esModule", { value: true });
37750
37739
 
37751
- },{}],232:[function(require,module,exports){
37740
+ },{}],233:[function(require,module,exports){
37752
37741
  "use strict";
37753
37742
  /*!
37754
37743
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37970,7 +37959,7 @@ exports.ATN = ATN;
37970
37959
  })(ATN = exports.ATN || (exports.ATN = {}));
37971
37960
  exports.ATN = ATN;
37972
37961
 
37973
- },{"../Decorators":199,"../Token":224,"../dfa/DFA":297,"../misc/Array2DHashMap":302,"../misc/IntervalSet":312,"../misc/ObjectEqualityComparator":315,"./InvalidState":255,"./LL1Analyzer":256,"./PredictionContext":279,"assert":342}],233:[function(require,module,exports){
37962
+ },{"../Decorators":200,"../Token":225,"../dfa/DFA":298,"../misc/Array2DHashMap":303,"../misc/IntervalSet":313,"../misc/ObjectEqualityComparator":316,"./InvalidState":256,"./LL1Analyzer":257,"./PredictionContext":280,"assert":343}],234:[function(require,module,exports){
37974
37963
  "use strict";
37975
37964
  /*!
37976
37965
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38495,7 +38484,7 @@ ActionSemanticContextATNConfig = __decorate([
38495
38484
  __param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
38496
38485
  ], ActionSemanticContextATNConfig);
38497
38486
 
38498
- },{"../Decorators":199,"../misc/Array2DHashMap":302,"../misc/MurmurHash":314,"../misc/ObjectEqualityComparator":315,"./DecisionState":252,"./PredictionContext":279,"./SemanticContext":287,"assert":342}],234:[function(require,module,exports){
38487
+ },{"../Decorators":200,"../misc/Array2DHashMap":303,"../misc/MurmurHash":315,"../misc/ObjectEqualityComparator":316,"./DecisionState":253,"./PredictionContext":280,"./SemanticContext":288,"assert":343}],235:[function(require,module,exports){
38499
38488
  "use strict";
38500
38489
  /*!
38501
38490
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38942,7 +38931,7 @@ __decorate([
38942
38931
  ], ATNConfigSet.prototype, "hashCode", null);
38943
38932
  exports.ATNConfigSet = ATNConfigSet;
38944
38933
 
38945
- },{"../Decorators":199,"../misc/Array2DHashMap":302,"../misc/Array2DHashSet":303,"../misc/ArrayEqualityComparator":304,"../misc/BitSet":306,"../misc/ObjectEqualityComparator":315,"../misc/Utils":318,"./ATN":232,"./ATNConfig":233,"./PredictionContext":279,"./PredictionContextCache":280,"./SemanticContext":287,"assert":342}],235:[function(require,module,exports){
38934
+ },{"../Decorators":200,"../misc/Array2DHashMap":303,"../misc/Array2DHashSet":304,"../misc/ArrayEqualityComparator":305,"../misc/BitSet":307,"../misc/ObjectEqualityComparator":316,"../misc/Utils":319,"./ATN":233,"./ATNConfig":234,"./PredictionContext":280,"./PredictionContextCache":281,"./SemanticContext":288,"assert":343}],236:[function(require,module,exports){
38946
38935
  "use strict";
38947
38936
  /*!
38948
38937
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39021,7 +39010,7 @@ __decorate([
39021
39010
  ], ATNDeserializationOptions, "defaultOptions", null);
39022
39011
  exports.ATNDeserializationOptions = ATNDeserializationOptions;
39023
39012
 
39024
- },{"../Decorators":199}],236:[function(require,module,exports){
39013
+ },{"../Decorators":200}],237:[function(require,module,exports){
39025
39014
  "use strict";
39026
39015
  /*!
39027
39016
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40108,7 +40097,7 @@ __decorate([
40108
40097
  ], ATNDeserializer.prototype, "edgeFactory", null);
40109
40098
  exports.ATNDeserializer = ATNDeserializer;
40110
40099
 
40111
- },{"../Decorators":199,"../Token":224,"../dfa/DFA":297,"../misc/Array2DHashSet":303,"../misc/BitSet":306,"../misc/IntervalSet":312,"../misc/UUID":317,"./ATN":232,"./ATNDeserializationOptions":235,"./ATNStateType":239,"./ActionTransition":241,"./AtomTransition":243,"./BasicBlockStartState":244,"./BasicState":245,"./BlockEndState":246,"./BlockStartState":247,"./DecisionState":252,"./EpsilonTransition":253,"./InvalidState":255,"./LexerChannelAction":259,"./LexerCustomAction":260,"./LexerModeAction":262,"./LexerMoreAction":263,"./LexerPopModeAction":264,"./LexerPushModeAction":265,"./LexerSkipAction":266,"./LexerTypeAction":267,"./LoopEndState":269,"./NotSetTransition":270,"./ParserATNSimulator":273,"./PlusBlockStartState":274,"./PlusLoopbackState":275,"./PrecedencePredicateTransition":276,"./PredicateTransition":278,"./RangeTransition":283,"./RuleStartState":284,"./RuleStopState":285,"./RuleTransition":286,"./SetTransition":288,"./StarBlockStartState":290,"./StarLoopEntryState":291,"./StarLoopbackState":292,"./TokensStartState":293,"./WildcardTransition":295}],237:[function(require,module,exports){
40100
+ },{"../Decorators":200,"../Token":225,"../dfa/DFA":298,"../misc/Array2DHashSet":304,"../misc/BitSet":307,"../misc/IntervalSet":313,"../misc/UUID":318,"./ATN":233,"./ATNDeserializationOptions":236,"./ATNStateType":240,"./ActionTransition":242,"./AtomTransition":244,"./BasicBlockStartState":245,"./BasicState":246,"./BlockEndState":247,"./BlockStartState":248,"./DecisionState":253,"./EpsilonTransition":254,"./InvalidState":256,"./LexerChannelAction":260,"./LexerCustomAction":261,"./LexerModeAction":263,"./LexerMoreAction":264,"./LexerPopModeAction":265,"./LexerPushModeAction":266,"./LexerSkipAction":267,"./LexerTypeAction":268,"./LoopEndState":270,"./NotSetTransition":271,"./ParserATNSimulator":274,"./PlusBlockStartState":275,"./PlusLoopbackState":276,"./PrecedencePredicateTransition":277,"./PredicateTransition":279,"./RangeTransition":284,"./RuleStartState":285,"./RuleStopState":286,"./RuleTransition":287,"./SetTransition":289,"./StarBlockStartState":291,"./StarLoopEntryState":292,"./StarLoopbackState":293,"./TokensStartState":294,"./WildcardTransition":296}],238:[function(require,module,exports){
40112
40101
  "use strict";
40113
40102
  /*!
40114
40103
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40172,7 +40161,7 @@ exports.ATNSimulator = ATNSimulator;
40172
40161
  })(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
40173
40162
  exports.ATNSimulator = ATNSimulator;
40174
40163
 
40175
- },{"../Decorators":199,"../dfa/DFAState":299,"./ATNConfigSet":234,"./PredictionContext":279}],238:[function(require,module,exports){
40164
+ },{"../Decorators":200,"../dfa/DFAState":300,"./ATNConfigSet":235,"./PredictionContext":280}],239:[function(require,module,exports){
40176
40165
  "use strict";
40177
40166
  /*!
40178
40167
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40359,7 +40348,7 @@ exports.ATNState = ATNState;
40359
40348
  ATNState.INVALID_STATE_NUMBER = -1;
40360
40349
  })(ATNState = exports.ATNState || (exports.ATNState = {}));
40361
40350
 
40362
- },{"../Decorators":199}],239:[function(require,module,exports){
40351
+ },{"../Decorators":200}],240:[function(require,module,exports){
40363
40352
  "use strict";
40364
40353
  /*!
40365
40354
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40385,7 +40374,7 @@ var ATNStateType;
40385
40374
  ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
40386
40375
  })(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
40387
40376
 
40388
- },{}],240:[function(require,module,exports){
40377
+ },{}],241:[function(require,module,exports){
40389
40378
  "use strict";
40390
40379
  /*!
40391
40380
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40405,7 +40394,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
40405
40394
  }
40406
40395
  exports.AbstractPredicateTransition = AbstractPredicateTransition;
40407
40396
 
40408
- },{"./Transition":294}],241:[function(require,module,exports){
40397
+ },{"./Transition":295}],242:[function(require,module,exports){
40409
40398
  "use strict";
40410
40399
  /*!
40411
40400
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40461,7 +40450,7 @@ ActionTransition = __decorate([
40461
40450
  ], ActionTransition);
40462
40451
  exports.ActionTransition = ActionTransition;
40463
40452
 
40464
- },{"../Decorators":199,"./Transition":294}],242:[function(require,module,exports){
40453
+ },{"../Decorators":200,"./Transition":295}],243:[function(require,module,exports){
40465
40454
  "use strict";
40466
40455
  /*!
40467
40456
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40548,7 +40537,7 @@ AmbiguityInfo = __decorate([
40548
40537
  ], AmbiguityInfo);
40549
40538
  exports.AmbiguityInfo = AmbiguityInfo;
40550
40539
 
40551
- },{"../Decorators":199,"./DecisionEventInfo":250}],243:[function(require,module,exports){
40540
+ },{"../Decorators":200,"./DecisionEventInfo":251}],244:[function(require,module,exports){
40552
40541
  "use strict";
40553
40542
  /*!
40554
40543
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40606,7 +40595,7 @@ AtomTransition = __decorate([
40606
40595
  ], AtomTransition);
40607
40596
  exports.AtomTransition = AtomTransition;
40608
40597
 
40609
- },{"../Decorators":199,"../misc/IntervalSet":312,"./Transition":294}],244:[function(require,module,exports){
40598
+ },{"../Decorators":200,"../misc/IntervalSet":313,"./Transition":295}],245:[function(require,module,exports){
40610
40599
  "use strict";
40611
40600
  /*!
40612
40601
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40638,7 +40627,7 @@ __decorate([
40638
40627
  ], BasicBlockStartState.prototype, "stateType", null);
40639
40628
  exports.BasicBlockStartState = BasicBlockStartState;
40640
40629
 
40641
- },{"../Decorators":199,"./ATNStateType":239,"./BlockStartState":247}],245:[function(require,module,exports){
40630
+ },{"../Decorators":200,"./ATNStateType":240,"./BlockStartState":248}],246:[function(require,module,exports){
40642
40631
  "use strict";
40643
40632
  /*!
40644
40633
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40670,7 +40659,7 @@ __decorate([
40670
40659
  ], BasicState.prototype, "stateType", null);
40671
40660
  exports.BasicState = BasicState;
40672
40661
 
40673
- },{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],246:[function(require,module,exports){
40662
+ },{"../Decorators":200,"./ATNState":239,"./ATNStateType":240}],247:[function(require,module,exports){
40674
40663
  "use strict";
40675
40664
  /*!
40676
40665
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40699,7 +40688,7 @@ __decorate([
40699
40688
  ], BlockEndState.prototype, "stateType", null);
40700
40689
  exports.BlockEndState = BlockEndState;
40701
40690
 
40702
- },{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],247:[function(require,module,exports){
40691
+ },{"../Decorators":200,"./ATNState":239,"./ATNStateType":240}],248:[function(require,module,exports){
40703
40692
  "use strict";
40704
40693
  /*!
40705
40694
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40713,7 +40702,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
40713
40702
  }
40714
40703
  exports.BlockStartState = BlockStartState;
40715
40704
 
40716
- },{"./DecisionState":252}],248:[function(require,module,exports){
40705
+ },{"./DecisionState":253}],249:[function(require,module,exports){
40717
40706
  "use strict";
40718
40707
  /*!
40719
40708
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40783,7 +40772,7 @@ __decorate([
40783
40772
  ], ConflictInfo.prototype, "hashCode", null);
40784
40773
  exports.ConflictInfo = ConflictInfo;
40785
40774
 
40786
- },{"../Decorators":199,"../misc/Utils":318}],249:[function(require,module,exports){
40775
+ },{"../Decorators":200,"../misc/Utils":319}],250:[function(require,module,exports){
40787
40776
  "use strict";
40788
40777
  /*!
40789
40778
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40843,7 +40832,7 @@ ContextSensitivityInfo = __decorate([
40843
40832
  ], ContextSensitivityInfo);
40844
40833
  exports.ContextSensitivityInfo = ContextSensitivityInfo;
40845
40834
 
40846
- },{"../Decorators":199,"./DecisionEventInfo":250}],250:[function(require,module,exports){
40835
+ },{"../Decorators":200,"./DecisionEventInfo":251}],251:[function(require,module,exports){
40847
40836
  "use strict";
40848
40837
  /*!
40849
40838
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40895,7 +40884,7 @@ DecisionEventInfo = __decorate([
40895
40884
  ], DecisionEventInfo);
40896
40885
  exports.DecisionEventInfo = DecisionEventInfo;
40897
40886
 
40898
- },{"../Decorators":199}],251:[function(require,module,exports){
40887
+ },{"../Decorators":200}],252:[function(require,module,exports){
40899
40888
  "use strict";
40900
40889
  /*!
40901
40890
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41108,7 +41097,7 @@ __decorate([
41108
41097
  ], DecisionInfo.prototype, "toString", null);
41109
41098
  exports.DecisionInfo = DecisionInfo;
41110
41099
 
41111
- },{"../Decorators":199}],252:[function(require,module,exports){
41100
+ },{"../Decorators":200}],253:[function(require,module,exports){
41112
41101
  "use strict";
41113
41102
  /*!
41114
41103
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41128,7 +41117,7 @@ class DecisionState extends ATNState_1.ATNState {
41128
41117
  }
41129
41118
  exports.DecisionState = DecisionState;
41130
41119
 
41131
- },{"./ATNState":238}],253:[function(require,module,exports){
41120
+ },{"./ATNState":239}],254:[function(require,module,exports){
41132
41121
  "use strict";
41133
41122
  /*!
41134
41123
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41194,7 +41183,7 @@ EpsilonTransition = __decorate([
41194
41183
  ], EpsilonTransition);
41195
41184
  exports.EpsilonTransition = EpsilonTransition;
41196
41185
 
41197
- },{"../Decorators":199,"./Transition":294}],254:[function(require,module,exports){
41186
+ },{"../Decorators":200,"./Transition":295}],255:[function(require,module,exports){
41198
41187
  "use strict";
41199
41188
  /*!
41200
41189
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41247,7 +41236,7 @@ ErrorInfo = __decorate([
41247
41236
  ], ErrorInfo);
41248
41237
  exports.ErrorInfo = ErrorInfo;
41249
41238
 
41250
- },{"../Decorators":199,"./DecisionEventInfo":250}],255:[function(require,module,exports){
41239
+ },{"../Decorators":200,"./DecisionEventInfo":251}],256:[function(require,module,exports){
41251
41240
  "use strict";
41252
41241
  /*!
41253
41242
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41278,7 +41267,7 @@ __decorate([
41278
41267
  ], InvalidState.prototype, "stateType", null);
41279
41268
  exports.InvalidState = InvalidState;
41280
41269
 
41281
- },{"../Decorators":199,"./ATNStateType":239,"./BasicState":245}],256:[function(require,module,exports){
41270
+ },{"../Decorators":200,"./ATNStateType":240,"./BasicState":246}],257:[function(require,module,exports){
41282
41271
  "use strict";
41283
41272
  /*!
41284
41273
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41500,7 +41489,7 @@ LL1Analyzer = __decorate([
41500
41489
  ], LL1Analyzer);
41501
41490
  exports.LL1Analyzer = LL1Analyzer;
41502
41491
 
41503
- },{"../Decorators":199,"../Token":224,"../misc/Array2DHashSet":303,"../misc/BitSet":306,"../misc/IntervalSet":312,"../misc/ObjectEqualityComparator":315,"./ATNConfig":233,"./AbstractPredicateTransition":240,"./NotSetTransition":270,"./PredictionContext":279,"./RuleStopState":285,"./RuleTransition":286,"./WildcardTransition":295}],257:[function(require,module,exports){
41492
+ },{"../Decorators":200,"../Token":225,"../misc/Array2DHashSet":304,"../misc/BitSet":307,"../misc/IntervalSet":313,"../misc/ObjectEqualityComparator":316,"./ATNConfig":234,"./AbstractPredicateTransition":241,"./NotSetTransition":271,"./PredictionContext":280,"./RuleStopState":286,"./RuleTransition":287,"./WildcardTransition":296}],258:[function(require,module,exports){
41504
41493
  "use strict";
41505
41494
  /*!
41506
41495
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42217,7 +42206,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
42217
42206
  })(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
42218
42207
  exports.LexerATNSimulator = LexerATNSimulator;
42219
42208
 
42220
- },{"../Decorators":199,"../IntStream":205,"../Lexer":207,"../LexerNoViableAltException":209,"../Token":224,"../dfa/AcceptStateInfo":296,"../dfa/DFAState":299,"../misc/Interval":311,"./ATN":232,"./ATNConfig":233,"./ATNConfigSet":234,"./ATNSimulator":237,"./LexerActionExecutor":258,"./OrderedATNConfigSet":271,"./PredictionContext":279,"./RuleStopState":285,"assert":342}],258:[function(require,module,exports){
42209
+ },{"../Decorators":200,"../IntStream":206,"../Lexer":208,"../LexerNoViableAltException":210,"../Token":225,"../dfa/AcceptStateInfo":297,"../dfa/DFAState":300,"../misc/Interval":312,"./ATN":233,"./ATNConfig":234,"./ATNConfigSet":235,"./ATNSimulator":238,"./LexerActionExecutor":259,"./OrderedATNConfigSet":272,"./PredictionContext":280,"./RuleStopState":286,"assert":343}],259:[function(require,module,exports){
42221
42210
  "use strict";
42222
42211
  /*!
42223
42212
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42418,7 +42407,7 @@ LexerActionExecutor = __decorate([
42418
42407
  ], LexerActionExecutor);
42419
42408
  exports.LexerActionExecutor = LexerActionExecutor;
42420
42409
 
42421
- },{"../Decorators":199,"../misc/ArrayEqualityComparator":304,"../misc/MurmurHash":314,"./LexerIndexedCustomAction":261}],259:[function(require,module,exports){
42410
+ },{"../Decorators":200,"../misc/ArrayEqualityComparator":305,"../misc/MurmurHash":315,"./LexerIndexedCustomAction":262}],260:[function(require,module,exports){
42422
42411
  "use strict";
42423
42412
  /*!
42424
42413
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42523,7 +42512,7 @@ __decorate([
42523
42512
  ], LexerChannelAction.prototype, "toString", null);
42524
42513
  exports.LexerChannelAction = LexerChannelAction;
42525
42514
 
42526
- },{"../Decorators":199,"../misc/MurmurHash":314}],260:[function(require,module,exports){
42515
+ },{"../Decorators":200,"../misc/MurmurHash":315}],261:[function(require,module,exports){
42527
42516
  "use strict";
42528
42517
  /*!
42529
42518
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42652,7 +42641,7 @@ __decorate([
42652
42641
  ], LexerCustomAction.prototype, "equals", null);
42653
42642
  exports.LexerCustomAction = LexerCustomAction;
42654
42643
 
42655
- },{"../Decorators":199,"../misc/MurmurHash":314}],261:[function(require,module,exports){
42644
+ },{"../Decorators":200,"../misc/MurmurHash":315}],262:[function(require,module,exports){
42656
42645
  "use strict";
42657
42646
  /*!
42658
42647
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42787,7 +42776,7 @@ LexerIndexedCustomAction = __decorate([
42787
42776
  ], LexerIndexedCustomAction);
42788
42777
  exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
42789
42778
 
42790
- },{"../Decorators":199,"../misc/MurmurHash":314}],262:[function(require,module,exports){
42779
+ },{"../Decorators":200,"../misc/MurmurHash":315}],263:[function(require,module,exports){
42791
42780
  "use strict";
42792
42781
  /*!
42793
42782
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42892,7 +42881,7 @@ __decorate([
42892
42881
  ], LexerModeAction.prototype, "toString", null);
42893
42882
  exports.LexerModeAction = LexerModeAction;
42894
42883
 
42895
- },{"../Decorators":199,"../misc/MurmurHash":314}],263:[function(require,module,exports){
42884
+ },{"../Decorators":200,"../misc/MurmurHash":315}],264:[function(require,module,exports){
42896
42885
  "use strict";
42897
42886
  /*!
42898
42887
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42988,7 +42977,7 @@ exports.LexerMoreAction = LexerMoreAction;
42988
42977
  LexerMoreAction.INSTANCE = new LexerMoreAction();
42989
42978
  })(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
42990
42979
 
42991
- },{"../Decorators":199,"../misc/MurmurHash":314}],264:[function(require,module,exports){
42980
+ },{"../Decorators":200,"../misc/MurmurHash":315}],265:[function(require,module,exports){
42992
42981
  "use strict";
42993
42982
  /*!
42994
42983
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43084,7 +43073,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
43084
43073
  LexerPopModeAction.INSTANCE = new LexerPopModeAction();
43085
43074
  })(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
43086
43075
 
43087
- },{"../Decorators":199,"../misc/MurmurHash":314}],265:[function(require,module,exports){
43076
+ },{"../Decorators":200,"../misc/MurmurHash":315}],266:[function(require,module,exports){
43088
43077
  "use strict";
43089
43078
  /*!
43090
43079
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43189,7 +43178,7 @@ __decorate([
43189
43178
  ], LexerPushModeAction.prototype, "toString", null);
43190
43179
  exports.LexerPushModeAction = LexerPushModeAction;
43191
43180
 
43192
- },{"../Decorators":199,"../misc/MurmurHash":314}],266:[function(require,module,exports){
43181
+ },{"../Decorators":200,"../misc/MurmurHash":315}],267:[function(require,module,exports){
43193
43182
  "use strict";
43194
43183
  /*!
43195
43184
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43285,7 +43274,7 @@ exports.LexerSkipAction = LexerSkipAction;
43285
43274
  LexerSkipAction.INSTANCE = new LexerSkipAction();
43286
43275
  })(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
43287
43276
 
43288
- },{"../Decorators":199,"../misc/MurmurHash":314}],267:[function(require,module,exports){
43277
+ },{"../Decorators":200,"../misc/MurmurHash":315}],268:[function(require,module,exports){
43289
43278
  "use strict";
43290
43279
  /*!
43291
43280
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43389,7 +43378,7 @@ __decorate([
43389
43378
  ], LexerTypeAction.prototype, "toString", null);
43390
43379
  exports.LexerTypeAction = LexerTypeAction;
43391
43380
 
43392
- },{"../Decorators":199,"../misc/MurmurHash":314}],268:[function(require,module,exports){
43381
+ },{"../Decorators":200,"../misc/MurmurHash":315}],269:[function(require,module,exports){
43393
43382
  "use strict";
43394
43383
  /*!
43395
43384
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43441,7 +43430,7 @@ LookaheadEventInfo = __decorate([
43441
43430
  ], LookaheadEventInfo);
43442
43431
  exports.LookaheadEventInfo = LookaheadEventInfo;
43443
43432
 
43444
- },{"../Decorators":199,"./DecisionEventInfo":250}],269:[function(require,module,exports){
43433
+ },{"../Decorators":200,"./DecisionEventInfo":251}],270:[function(require,module,exports){
43445
43434
  "use strict";
43446
43435
  /*!
43447
43436
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43470,7 +43459,7 @@ __decorate([
43470
43459
  ], LoopEndState.prototype, "stateType", null);
43471
43460
  exports.LoopEndState = LoopEndState;
43472
43461
 
43473
- },{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],270:[function(require,module,exports){
43462
+ },{"../Decorators":200,"./ATNState":239,"./ATNStateType":240}],271:[function(require,module,exports){
43474
43463
  "use strict";
43475
43464
  /*!
43476
43465
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43519,7 +43508,7 @@ NotSetTransition = __decorate([
43519
43508
  ], NotSetTransition);
43520
43509
  exports.NotSetTransition = NotSetTransition;
43521
43510
 
43522
- },{"../Decorators":199,"./SetTransition":288}],271:[function(require,module,exports){
43511
+ },{"../Decorators":200,"./SetTransition":289}],272:[function(require,module,exports){
43523
43512
  "use strict";
43524
43513
  /*!
43525
43514
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43574,7 +43563,7 @@ __decorate([
43574
43563
  ], OrderedATNConfigSet.prototype, "canMerge", null);
43575
43564
  exports.OrderedATNConfigSet = OrderedATNConfigSet;
43576
43565
 
43577
- },{"../Decorators":199,"./ATNConfigSet":234}],272:[function(require,module,exports){
43566
+ },{"../Decorators":200,"./ATNConfigSet":235}],273:[function(require,module,exports){
43578
43567
  "use strict";
43579
43568
  /*!
43580
43569
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43736,7 +43725,7 @@ ParseInfo = __decorate([
43736
43725
  ], ParseInfo);
43737
43726
  exports.ParseInfo = ParseInfo;
43738
43727
 
43739
- },{"../Decorators":199}],273:[function(require,module,exports){
43728
+ },{"../Decorators":200}],274:[function(require,module,exports){
43740
43729
  "use strict";
43741
43730
  /*!
43742
43731
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46009,7 +45998,7 @@ ParserATNSimulator = __decorate([
46009
45998
  ], ParserATNSimulator);
46010
45999
  exports.ParserATNSimulator = ParserATNSimulator;
46011
46000
 
46012
- },{"../Decorators":199,"../IntStream":205,"../NoViableAltException":211,"../ParserRuleContext":215,"../Token":224,"../VocabularyImpl":230,"../dfa/AcceptStateInfo":296,"../dfa/DFAState":299,"../misc/Array2DHashSet":303,"../misc/Arrays":305,"../misc/BitSet":306,"../misc/IntegerList":309,"../misc/Interval":311,"../misc/ObjectEqualityComparator":315,"./ATN":232,"./ATNConfig":233,"./ATNConfigSet":234,"./ATNSimulator":237,"./ATNStateType":239,"./ActionTransition":241,"./AtomTransition":243,"./ConflictInfo":248,"./DecisionState":252,"./NotSetTransition":270,"./PredictionContext":279,"./PredictionContextCache":280,"./PredictionMode":281,"./RuleStopState":285,"./RuleTransition":286,"./SemanticContext":287,"./SetTransition":288,"./SimulatorState":289,"assert":342}],274:[function(require,module,exports){
46001
+ },{"../Decorators":200,"../IntStream":206,"../NoViableAltException":212,"../ParserRuleContext":216,"../Token":225,"../VocabularyImpl":231,"../dfa/AcceptStateInfo":297,"../dfa/DFAState":300,"../misc/Array2DHashSet":304,"../misc/Arrays":306,"../misc/BitSet":307,"../misc/IntegerList":310,"../misc/Interval":312,"../misc/ObjectEqualityComparator":316,"./ATN":233,"./ATNConfig":234,"./ATNConfigSet":235,"./ATNSimulator":238,"./ATNStateType":240,"./ActionTransition":242,"./AtomTransition":244,"./ConflictInfo":249,"./DecisionState":253,"./NotSetTransition":271,"./PredictionContext":280,"./PredictionContextCache":281,"./PredictionMode":282,"./RuleStopState":286,"./RuleTransition":287,"./SemanticContext":288,"./SetTransition":289,"./SimulatorState":290,"assert":343}],275:[function(require,module,exports){
46013
46002
  "use strict";
46014
46003
  /*!
46015
46004
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46042,7 +46031,7 @@ __decorate([
46042
46031
  ], PlusBlockStartState.prototype, "stateType", null);
46043
46032
  exports.PlusBlockStartState = PlusBlockStartState;
46044
46033
 
46045
- },{"../Decorators":199,"./ATNStateType":239,"./BlockStartState":247}],275:[function(require,module,exports){
46034
+ },{"../Decorators":200,"./ATNStateType":240,"./BlockStartState":248}],276:[function(require,module,exports){
46046
46035
  "use strict";
46047
46036
  /*!
46048
46037
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46073,7 +46062,7 @@ __decorate([
46073
46062
  ], PlusLoopbackState.prototype, "stateType", null);
46074
46063
  exports.PlusLoopbackState = PlusLoopbackState;
46075
46064
 
46076
- },{"../Decorators":199,"./ATNStateType":239,"./DecisionState":252}],276:[function(require,module,exports){
46065
+ },{"../Decorators":200,"./ATNStateType":240,"./DecisionState":253}],277:[function(require,module,exports){
46077
46066
  "use strict";
46078
46067
  /*!
46079
46068
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46136,7 +46125,7 @@ PrecedencePredicateTransition = __decorate([
46136
46125
  ], PrecedencePredicateTransition);
46137
46126
  exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
46138
46127
 
46139
- },{"../Decorators":199,"./AbstractPredicateTransition":240,"./SemanticContext":287}],277:[function(require,module,exports){
46128
+ },{"../Decorators":200,"./AbstractPredicateTransition":241,"./SemanticContext":288}],278:[function(require,module,exports){
46140
46129
  "use strict";
46141
46130
  /*!
46142
46131
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46199,7 +46188,7 @@ PredicateEvalInfo = __decorate([
46199
46188
  ], PredicateEvalInfo);
46200
46189
  exports.PredicateEvalInfo = PredicateEvalInfo;
46201
46190
 
46202
- },{"../Decorators":199,"./DecisionEventInfo":250}],278:[function(require,module,exports){
46191
+ },{"../Decorators":200,"./DecisionEventInfo":251}],279:[function(require,module,exports){
46203
46192
  "use strict";
46204
46193
  /*!
46205
46194
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46265,7 +46254,7 @@ PredicateTransition = __decorate([
46265
46254
  ], PredicateTransition);
46266
46255
  exports.PredicateTransition = PredicateTransition;
46267
46256
 
46268
- },{"../Decorators":199,"./AbstractPredicateTransition":240,"./SemanticContext":287}],279:[function(require,module,exports){
46257
+ },{"../Decorators":200,"./AbstractPredicateTransition":241,"./SemanticContext":288}],280:[function(require,module,exports){
46269
46258
  "use strict";
46270
46259
  /*!
46271
46260
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46956,7 +46945,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
46956
46945
  PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
46957
46946
  })(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
46958
46947
 
46959
- },{"../Decorators":199,"../misc/Array2DHashMap":302,"../misc/Array2DHashSet":303,"../misc/Arrays":305,"../misc/MurmurHash":314,"./PredictionContextCache":280,"assert":342}],280:[function(require,module,exports){
46948
+ },{"../Decorators":200,"../misc/Array2DHashMap":303,"../misc/Array2DHashSet":304,"../misc/Arrays":306,"../misc/MurmurHash":315,"./PredictionContextCache":281,"assert":343}],281:[function(require,module,exports){
46960
46949
  "use strict";
46961
46950
  /*!
46962
46951
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47097,7 +47086,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
47097
47086
  PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
47098
47087
  })(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
47099
47088
 
47100
- },{"../Decorators":199,"../misc/Array2DHashMap":302,"../misc/ObjectEqualityComparator":315,"./PredictionContext":279,"assert":342}],281:[function(require,module,exports){
47089
+ },{"../Decorators":200,"../misc/Array2DHashMap":303,"../misc/ObjectEqualityComparator":316,"./PredictionContext":280,"assert":343}],282:[function(require,module,exports){
47101
47090
  "use strict";
47102
47091
  /*!
47103
47092
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47258,7 +47247,7 @@ var PredictionMode;
47258
47247
  PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
47259
47248
  })(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
47260
47249
 
47261
- },{"../Decorators":199,"../misc/Array2DHashMap":302,"../misc/MurmurHash":314,"./RuleStopState":285}],282:[function(require,module,exports){
47250
+ },{"../Decorators":200,"../misc/Array2DHashMap":303,"../misc/MurmurHash":315,"./RuleStopState":286}],283:[function(require,module,exports){
47262
47251
  (function (process){(function (){
47263
47252
  "use strict";
47264
47253
  /*!
@@ -47527,7 +47516,7 @@ __decorate([
47527
47516
  exports.ProfilingATNSimulator = ProfilingATNSimulator;
47528
47517
 
47529
47518
  }).call(this)}).call(this,require('_process'))
47530
- },{"../Decorators":199,"./ATN":232,"./ATNSimulator":237,"./AmbiguityInfo":242,"./ContextSensitivityInfo":249,"./DecisionInfo":251,"./ErrorInfo":254,"./LookaheadEventInfo":268,"./ParserATNSimulator":273,"./PredicateEvalInfo":277,"./SemanticContext":287,"./SimulatorState":289,"_process":401}],283:[function(require,module,exports){
47519
+ },{"../Decorators":200,"./ATN":233,"./ATNSimulator":238,"./AmbiguityInfo":243,"./ContextSensitivityInfo":250,"./DecisionInfo":252,"./ErrorInfo":255,"./LookaheadEventInfo":269,"./ParserATNSimulator":274,"./PredicateEvalInfo":278,"./SemanticContext":288,"./SimulatorState":290,"_process":402}],284:[function(require,module,exports){
47531
47520
  "use strict";
47532
47521
  /*!
47533
47522
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47585,7 +47574,7 @@ RangeTransition = __decorate([
47585
47574
  ], RangeTransition);
47586
47575
  exports.RangeTransition = RangeTransition;
47587
47576
 
47588
- },{"../Decorators":199,"../misc/IntervalSet":312,"./Transition":294}],284:[function(require,module,exports){
47577
+ },{"../Decorators":200,"../misc/IntervalSet":313,"./Transition":295}],285:[function(require,module,exports){
47589
47578
  "use strict";
47590
47579
  /*!
47591
47580
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47618,7 +47607,7 @@ __decorate([
47618
47607
  ], RuleStartState.prototype, "stateType", null);
47619
47608
  exports.RuleStartState = RuleStartState;
47620
47609
 
47621
- },{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],285:[function(require,module,exports){
47610
+ },{"../Decorators":200,"./ATNState":239,"./ATNStateType":240}],286:[function(require,module,exports){
47622
47611
  "use strict";
47623
47612
  /*!
47624
47613
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47657,7 +47646,7 @@ __decorate([
47657
47646
  ], RuleStopState.prototype, "stateType", null);
47658
47647
  exports.RuleStopState = RuleStopState;
47659
47648
 
47660
- },{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],286:[function(require,module,exports){
47649
+ },{"../Decorators":200,"./ATNState":239,"./ATNStateType":240}],287:[function(require,module,exports){
47661
47650
  "use strict";
47662
47651
  /*!
47663
47652
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47713,7 +47702,7 @@ RuleTransition = __decorate([
47713
47702
  ], RuleTransition);
47714
47703
  exports.RuleTransition = RuleTransition;
47715
47704
 
47716
- },{"../Decorators":199,"./Transition":294}],287:[function(require,module,exports){
47705
+ },{"../Decorators":200,"./Transition":295}],288:[function(require,module,exports){
47717
47706
  "use strict";
47718
47707
  /*!
47719
47708
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48193,7 +48182,7 @@ exports.SemanticContext = SemanticContext;
48193
48182
  SemanticContext.OR = OR;
48194
48183
  })(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
48195
48184
 
48196
- },{"../Decorators":199,"../misc/Array2DHashSet":303,"../misc/ArrayEqualityComparator":304,"../misc/MurmurHash":314,"../misc/ObjectEqualityComparator":315,"../misc/Utils":318}],288:[function(require,module,exports){
48185
+ },{"../Decorators":200,"../misc/Array2DHashSet":304,"../misc/ArrayEqualityComparator":305,"../misc/MurmurHash":315,"../misc/ObjectEqualityComparator":316,"../misc/Utils":319}],289:[function(require,module,exports){
48197
48186
  "use strict";
48198
48187
  /*!
48199
48188
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48259,7 +48248,7 @@ SetTransition = __decorate([
48259
48248
  ], SetTransition);
48260
48249
  exports.SetTransition = SetTransition;
48261
48250
 
48262
- },{"../Decorators":199,"../Token":224,"../misc/IntervalSet":312,"./Transition":294}],289:[function(require,module,exports){
48251
+ },{"../Decorators":200,"../Token":225,"../misc/IntervalSet":313,"./Transition":295}],290:[function(require,module,exports){
48263
48252
  "use strict";
48264
48253
  /*!
48265
48254
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48295,7 +48284,7 @@ SimulatorState = __decorate([
48295
48284
  ], SimulatorState);
48296
48285
  exports.SimulatorState = SimulatorState;
48297
48286
 
48298
- },{"../Decorators":199,"../ParserRuleContext":215}],290:[function(require,module,exports){
48287
+ },{"../Decorators":200,"../ParserRuleContext":216}],291:[function(require,module,exports){
48299
48288
  "use strict";
48300
48289
  /*!
48301
48290
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48323,7 +48312,7 @@ __decorate([
48323
48312
  ], StarBlockStartState.prototype, "stateType", null);
48324
48313
  exports.StarBlockStartState = StarBlockStartState;
48325
48314
 
48326
- },{"../Decorators":199,"./ATNStateType":239,"./BlockStartState":247}],291:[function(require,module,exports){
48315
+ },{"../Decorators":200,"./ATNStateType":240,"./BlockStartState":248}],292:[function(require,module,exports){
48327
48316
  "use strict";
48328
48317
  /*!
48329
48318
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48380,7 +48369,7 @@ __decorate([
48380
48369
  ], StarLoopEntryState.prototype, "stateType", null);
48381
48370
  exports.StarLoopEntryState = StarLoopEntryState;
48382
48371
 
48383
- },{"../Decorators":199,"../misc/BitSet":306,"./ATNStateType":239,"./DecisionState":252}],292:[function(require,module,exports){
48372
+ },{"../Decorators":200,"../misc/BitSet":307,"./ATNStateType":240,"./DecisionState":253}],293:[function(require,module,exports){
48384
48373
  "use strict";
48385
48374
  /*!
48386
48375
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48411,7 +48400,7 @@ __decorate([
48411
48400
  ], StarLoopbackState.prototype, "stateType", null);
48412
48401
  exports.StarLoopbackState = StarLoopbackState;
48413
48402
 
48414
- },{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],293:[function(require,module,exports){
48403
+ },{"../Decorators":200,"./ATNState":239,"./ATNStateType":240}],294:[function(require,module,exports){
48415
48404
  "use strict";
48416
48405
  /*!
48417
48406
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48440,7 +48429,7 @@ __decorate([
48440
48429
  ], TokensStartState.prototype, "stateType", null);
48441
48430
  exports.TokensStartState = TokensStartState;
48442
48431
 
48443
- },{"../Decorators":199,"./ATNStateType":239,"./DecisionState":252}],294:[function(require,module,exports){
48432
+ },{"../Decorators":200,"./ATNStateType":240,"./DecisionState":253}],295:[function(require,module,exports){
48444
48433
  "use strict";
48445
48434
  /*!
48446
48435
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48514,7 +48503,7 @@ Transition = __decorate([
48514
48503
  ], Transition);
48515
48504
  exports.Transition = Transition;
48516
48505
 
48517
- },{"../Decorators":199}],295:[function(require,module,exports){
48506
+ },{"../Decorators":200}],296:[function(require,module,exports){
48518
48507
  "use strict";
48519
48508
  /*!
48520
48509
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48562,7 +48551,7 @@ WildcardTransition = __decorate([
48562
48551
  ], WildcardTransition);
48563
48552
  exports.WildcardTransition = WildcardTransition;
48564
48553
 
48565
- },{"../Decorators":199,"./Transition":294}],296:[function(require,module,exports){
48554
+ },{"../Decorators":200,"./Transition":295}],297:[function(require,module,exports){
48566
48555
  "use strict";
48567
48556
  /*!
48568
48557
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48604,7 +48593,7 @@ class AcceptStateInfo {
48604
48593
  }
48605
48594
  exports.AcceptStateInfo = AcceptStateInfo;
48606
48595
 
48607
- },{}],297:[function(require,module,exports){
48596
+ },{}],298:[function(require,module,exports){
48608
48597
  "use strict";
48609
48598
  /*!
48610
48599
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48779,7 +48768,7 @@ DFA = __decorate([
48779
48768
  ], DFA);
48780
48769
  exports.DFA = DFA;
48781
48770
 
48782
- },{"../Decorators":199,"../VocabularyImpl":230,"../atn/ATNConfigSet":234,"../atn/StarLoopEntryState":291,"../misc/Array2DHashSet":303,"../misc/ObjectEqualityComparator":315,"./DFASerializer":298,"./DFAState":299,"./LexerDFASerializer":300}],298:[function(require,module,exports){
48771
+ },{"../Decorators":200,"../VocabularyImpl":231,"../atn/ATNConfigSet":235,"../atn/StarLoopEntryState":292,"../misc/Array2DHashSet":304,"../misc/ObjectEqualityComparator":316,"./DFASerializer":299,"./DFAState":300,"./LexerDFASerializer":301}],299:[function(require,module,exports){
48783
48772
  "use strict";
48784
48773
  /*!
48785
48774
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48921,7 +48910,7 @@ __decorate([
48921
48910
  ], DFASerializer.prototype, "toString", null);
48922
48911
  exports.DFASerializer = DFASerializer;
48923
48912
 
48924
- },{"../Decorators":199,"../Recognizer":219,"../VocabularyImpl":230,"../atn/ATNSimulator":237,"../atn/PredictionContext":279}],299:[function(require,module,exports){
48913
+ },{"../Decorators":200,"../Recognizer":220,"../VocabularyImpl":231,"../atn/ATNSimulator":238,"../atn/PredictionContext":280}],300:[function(require,module,exports){
48925
48914
  "use strict";
48926
48915
  /*!
48927
48916
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49152,7 +49141,7 @@ exports.DFAState = DFAState;
49152
49141
  DFAState.PredPrediction = PredPrediction;
49153
49142
  })(DFAState = exports.DFAState || (exports.DFAState = {}));
49154
49143
 
49155
- },{"../Decorators":199,"../atn/ATN":232,"../atn/PredictionContext":279,"../misc/BitSet":306,"../misc/MurmurHash":314,"assert":342}],300:[function(require,module,exports){
49144
+ },{"../Decorators":200,"../atn/ATN":233,"../atn/PredictionContext":280,"../misc/BitSet":307,"../misc/MurmurHash":315,"assert":343}],301:[function(require,module,exports){
49156
49145
  "use strict";
49157
49146
  /*!
49158
49147
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49189,7 +49178,7 @@ LexerDFASerializer = __decorate([
49189
49178
  ], LexerDFASerializer);
49190
49179
  exports.LexerDFASerializer = LexerDFASerializer;
49191
49180
 
49192
- },{"../Decorators":199,"../VocabularyImpl":230,"./DFASerializer":298}],301:[function(require,module,exports){
49181
+ },{"../Decorators":200,"../VocabularyImpl":231,"./DFASerializer":299}],302:[function(require,module,exports){
49193
49182
  "use strict";
49194
49183
  /*!
49195
49184
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49255,7 +49244,7 @@ __exportStar(require("./Vocabulary"), exports);
49255
49244
  __exportStar(require("./VocabularyImpl"), exports);
49256
49245
  __exportStar(require("./WritableToken"), exports);
49257
49246
 
49258
- },{"./ANTLRErrorListener":186,"./ANTLRErrorStrategy":187,"./ANTLRInputStream":188,"./BailErrorStrategy":189,"./BufferedTokenStream":190,"./CharStream":191,"./CharStreams":192,"./CodePointBuffer":193,"./CodePointCharStream":194,"./CommonToken":195,"./CommonTokenFactory":196,"./CommonTokenStream":197,"./ConsoleErrorListener":198,"./DefaultErrorStrategy":200,"./Dependents":201,"./DiagnosticErrorListener":202,"./FailedPredicateException":203,"./InputMismatchException":204,"./IntStream":205,"./InterpreterRuleContext":206,"./Lexer":207,"./LexerInterpreter":208,"./LexerNoViableAltException":209,"./ListTokenSource":210,"./NoViableAltException":211,"./Parser":212,"./ParserErrorListener":213,"./ParserInterpreter":214,"./ParserRuleContext":215,"./ProxyErrorListener":216,"./ProxyParserErrorListener":217,"./RecognitionException":218,"./Recognizer":219,"./RuleContext":220,"./RuleContextWithAltNum":221,"./RuleDependency":222,"./RuleVersion":223,"./Token":224,"./TokenFactory":225,"./TokenSource":226,"./TokenStream":227,"./TokenStreamRewriter":228,"./Vocabulary":229,"./VocabularyImpl":230,"./WritableToken":231}],302:[function(require,module,exports){
49247
+ },{"./ANTLRErrorListener":187,"./ANTLRErrorStrategy":188,"./ANTLRInputStream":189,"./BailErrorStrategy":190,"./BufferedTokenStream":191,"./CharStream":192,"./CharStreams":193,"./CodePointBuffer":194,"./CodePointCharStream":195,"./CommonToken":196,"./CommonTokenFactory":197,"./CommonTokenStream":198,"./ConsoleErrorListener":199,"./DefaultErrorStrategy":201,"./Dependents":202,"./DiagnosticErrorListener":203,"./FailedPredicateException":204,"./InputMismatchException":205,"./IntStream":206,"./InterpreterRuleContext":207,"./Lexer":208,"./LexerInterpreter":209,"./LexerNoViableAltException":210,"./ListTokenSource":211,"./NoViableAltException":212,"./Parser":213,"./ParserErrorListener":214,"./ParserInterpreter":215,"./ParserRuleContext":216,"./ProxyErrorListener":217,"./ProxyParserErrorListener":218,"./RecognitionException":219,"./Recognizer":220,"./RuleContext":221,"./RuleContextWithAltNum":222,"./RuleDependency":223,"./RuleVersion":224,"./Token":225,"./TokenFactory":226,"./TokenSource":227,"./TokenStream":228,"./TokenStreamRewriter":229,"./Vocabulary":230,"./VocabularyImpl":231,"./WritableToken":232}],303:[function(require,module,exports){
49259
49248
  "use strict";
49260
49249
  /*!
49261
49250
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49338,7 +49327,7 @@ class Array2DHashMap {
49338
49327
  }
49339
49328
  exports.Array2DHashMap = Array2DHashMap;
49340
49329
 
49341
- },{"./Array2DHashSet":303}],303:[function(require,module,exports){
49330
+ },{"./Array2DHashSet":304}],304:[function(require,module,exports){
49342
49331
  "use strict";
49343
49332
  /*!
49344
49333
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49705,7 +49694,7 @@ __decorate([
49705
49694
  ], Array2DHashSet.prototype, "createBuckets", null);
49706
49695
  exports.Array2DHashSet = Array2DHashSet;
49707
49696
 
49708
- },{"../Decorators":199,"./DefaultEqualityComparator":308,"./MurmurHash":314,"assert":342}],304:[function(require,module,exports){
49697
+ },{"../Decorators":200,"./DefaultEqualityComparator":309,"./MurmurHash":315,"assert":343}],305:[function(require,module,exports){
49709
49698
  "use strict";
49710
49699
  /*!
49711
49700
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49777,7 +49766,7 @@ __decorate([
49777
49766
  ], ArrayEqualityComparator.prototype, "equals", null);
49778
49767
  exports.ArrayEqualityComparator = ArrayEqualityComparator;
49779
49768
 
49780
- },{"../Decorators":199,"./MurmurHash":314,"./ObjectEqualityComparator":315}],305:[function(require,module,exports){
49769
+ },{"../Decorators":200,"./MurmurHash":315,"./ObjectEqualityComparator":316}],306:[function(require,module,exports){
49781
49770
  "use strict";
49782
49771
  /*!
49783
49772
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49847,7 +49836,7 @@ var Arrays;
49847
49836
  Arrays.toString = toString;
49848
49837
  })(Arrays = exports.Arrays || (exports.Arrays = {}));
49849
49838
 
49850
- },{}],306:[function(require,module,exports){
49839
+ },{}],307:[function(require,module,exports){
49851
49840
  "use strict";
49852
49841
  /*!
49853
49842
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50519,7 +50508,7 @@ class BitSetIterator {
50519
50508
  [Symbol.iterator]() { return this; }
50520
50509
  }
50521
50510
 
50522
- },{"./MurmurHash":314,"util":406}],307:[function(require,module,exports){
50511
+ },{"./MurmurHash":315,"util":407}],308:[function(require,module,exports){
50523
50512
  "use strict";
50524
50513
  /*!
50525
50514
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50540,7 +50529,7 @@ function isSupplementaryCodePoint(ch) {
50540
50529
  }
50541
50530
  exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
50542
50531
 
50543
- },{}],308:[function(require,module,exports){
50532
+ },{}],309:[function(require,module,exports){
50544
50533
  "use strict";
50545
50534
  /*!
50546
50535
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50611,7 +50600,7 @@ __decorate([
50611
50600
  ], DefaultEqualityComparator.prototype, "equals", null);
50612
50601
  exports.DefaultEqualityComparator = DefaultEqualityComparator;
50613
50602
 
50614
- },{"../Decorators":199,"./MurmurHash":314,"./ObjectEqualityComparator":315}],309:[function(require,module,exports){
50603
+ },{"../Decorators":200,"./MurmurHash":315,"./ObjectEqualityComparator":316}],310:[function(require,module,exports){
50615
50604
  "use strict";
50616
50605
  /*!
50617
50606
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50905,7 +50894,7 @@ __decorate([
50905
50894
  ], IntegerList.prototype, "toString", null);
50906
50895
  exports.IntegerList = IntegerList;
50907
50896
 
50908
- },{"../Decorators":199,"./Arrays":305}],310:[function(require,module,exports){
50897
+ },{"../Decorators":200,"./Arrays":306}],311:[function(require,module,exports){
50909
50898
  "use strict";
50910
50899
  /*!
50911
50900
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50935,7 +50924,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
50935
50924
  }
50936
50925
  exports.IntegerStack = IntegerStack;
50937
50926
 
50938
- },{"./IntegerList":309}],311:[function(require,module,exports){
50927
+ },{"./IntegerList":310}],312:[function(require,module,exports){
50939
50928
  "use strict";
50940
50929
  /*!
50941
50930
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51078,7 +51067,7 @@ __decorate([
51078
51067
  ], Interval.prototype, "toString", null);
51079
51068
  exports.Interval = Interval;
51080
51069
 
51081
- },{"../Decorators":199}],312:[function(require,module,exports){
51070
+ },{"../Decorators":200}],313:[function(require,module,exports){
51082
51071
  "use strict";
51083
51072
  /*!
51084
51073
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51724,7 +51713,7 @@ __decorate([
51724
51713
  ], IntervalSet, "subtract", null);
51725
51714
  exports.IntervalSet = IntervalSet;
51726
51715
 
51727
- },{"../Decorators":199,"../Lexer":207,"../Token":224,"./ArrayEqualityComparator":304,"./IntegerList":309,"./Interval":311,"./MurmurHash":314}],313:[function(require,module,exports){
51716
+ },{"../Decorators":200,"../Lexer":208,"../Token":225,"./ArrayEqualityComparator":305,"./IntegerList":310,"./Interval":312,"./MurmurHash":315}],314:[function(require,module,exports){
51728
51717
  "use strict";
51729
51718
  /*!
51730
51719
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51757,7 +51746,7 @@ class MultiMap extends Map {
51757
51746
  }
51758
51747
  exports.MultiMap = MultiMap;
51759
51748
 
51760
- },{}],314:[function(require,module,exports){
51749
+ },{}],315:[function(require,module,exports){
51761
51750
  "use strict";
51762
51751
  /*!
51763
51752
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51872,7 +51861,7 @@ var MurmurHash;
51872
51861
  }
51873
51862
  })(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
51874
51863
 
51875
- },{}],315:[function(require,module,exports){
51864
+ },{}],316:[function(require,module,exports){
51876
51865
  "use strict";
51877
51866
  /*!
51878
51867
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51931,7 +51920,7 @@ __decorate([
51931
51920
  ], ObjectEqualityComparator.prototype, "equals", null);
51932
51921
  exports.ObjectEqualityComparator = ObjectEqualityComparator;
51933
51922
 
51934
- },{"../Decorators":199}],316:[function(require,module,exports){
51923
+ },{"../Decorators":200}],317:[function(require,module,exports){
51935
51924
  "use strict";
51936
51925
  /*!
51937
51926
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51960,7 +51949,7 @@ class ParseCancellationException extends Error {
51960
51949
  }
51961
51950
  exports.ParseCancellationException = ParseCancellationException;
51962
51951
 
51963
- },{}],317:[function(require,module,exports){
51952
+ },{}],318:[function(require,module,exports){
51964
51953
  "use strict";
51965
51954
  /*!
51966
51955
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52014,7 +52003,7 @@ class UUID {
52014
52003
  }
52015
52004
  exports.UUID = UUID;
52016
52005
 
52017
- },{"./MurmurHash":314}],318:[function(require,module,exports){
52006
+ },{"./MurmurHash":315}],319:[function(require,module,exports){
52018
52007
  "use strict";
52019
52008
  /*!
52020
52009
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52189,7 +52178,7 @@ exports.toCharArray = toCharArray;
52189
52178
  // return s;
52190
52179
  // }
52191
52180
 
52192
- },{}],319:[function(require,module,exports){
52181
+ },{}],320:[function(require,module,exports){
52193
52182
  "use strict";
52194
52183
  /*!
52195
52184
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52225,7 +52214,7 @@ __decorate([
52225
52214
  ], ErrorNode.prototype, "accept", null);
52226
52215
  exports.ErrorNode = ErrorNode;
52227
52216
 
52228
- },{"../Decorators":199,"./TerminalNode":322}],320:[function(require,module,exports){
52217
+ },{"../Decorators":200,"./TerminalNode":323}],321:[function(require,module,exports){
52229
52218
  "use strict";
52230
52219
  /*!
52231
52220
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52330,7 +52319,7 @@ exports.ParseTreeWalker = ParseTreeWalker;
52330
52319
  ParseTreeWalker.DEFAULT = new ParseTreeWalker();
52331
52320
  })(ParseTreeWalker = exports.ParseTreeWalker || (exports.ParseTreeWalker = {}));
52332
52321
 
52333
- },{"./ErrorNode":319,"./RuleNode":321,"./TerminalNode":322}],321:[function(require,module,exports){
52322
+ },{"./ErrorNode":320,"./RuleNode":322,"./TerminalNode":323}],322:[function(require,module,exports){
52334
52323
  "use strict";
52335
52324
  /*!
52336
52325
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52342,7 +52331,7 @@ class RuleNode {
52342
52331
  }
52343
52332
  exports.RuleNode = RuleNode;
52344
52333
 
52345
- },{}],322:[function(require,module,exports){
52334
+ },{}],323:[function(require,module,exports){
52346
52335
  "use strict";
52347
52336
  /*!
52348
52337
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52434,7 +52423,7 @@ __decorate([
52434
52423
  ], TerminalNode.prototype, "toString", null);
52435
52424
  exports.TerminalNode = TerminalNode;
52436
52425
 
52437
- },{"../Decorators":199,"../Token":224,"../misc/Interval":311}],323:[function(require,module,exports){
52426
+ },{"../Decorators":200,"../Token":225,"../misc/Interval":312}],324:[function(require,module,exports){
52438
52427
  "use strict";
52439
52428
  /*!
52440
52429
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52678,7 +52667,7 @@ __decorate([
52678
52667
  ], Trees, "getRootOfSubtreeEnclosingRegion", null);
52679
52668
  exports.Trees = Trees;
52680
52669
 
52681
- },{"../CommonToken":195,"../Decorators":199,"../Parser":212,"../ParserRuleContext":215,"../Token":224,"../atn/ATN":232,"../misc/Utils":318,"./ErrorNode":319,"./RuleNode":321,"./TerminalNode":322}],324:[function(require,module,exports){
52670
+ },{"../CommonToken":196,"../Decorators":200,"../Parser":213,"../ParserRuleContext":216,"../Token":225,"../atn/ATN":233,"../misc/Utils":319,"./ErrorNode":320,"./RuleNode":322,"./TerminalNode":323}],325:[function(require,module,exports){
52682
52671
  "use strict";
52683
52672
  /*!
52684
52673
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52702,7 +52691,7 @@ class Chunk {
52702
52691
  }
52703
52692
  exports.Chunk = Chunk;
52704
52693
 
52705
- },{}],325:[function(require,module,exports){
52694
+ },{}],326:[function(require,module,exports){
52706
52695
  "use strict";
52707
52696
  /*!
52708
52697
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52882,7 +52871,7 @@ ParseTreeMatch = __decorate([
52882
52871
  ], ParseTreeMatch);
52883
52872
  exports.ParseTreeMatch = ParseTreeMatch;
52884
52873
 
52885
- },{"../../Decorators":199}],326:[function(require,module,exports){
52874
+ },{"../../Decorators":200}],327:[function(require,module,exports){
52886
52875
  "use strict";
52887
52876
  /*!
52888
52877
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53040,7 +53029,7 @@ ParseTreePattern = __decorate([
53040
53029
  ], ParseTreePattern);
53041
53030
  exports.ParseTreePattern = ParseTreePattern;
53042
53031
 
53043
- },{"../../Decorators":199,"../xpath/XPath":332}],327:[function(require,module,exports){
53032
+ },{"../../Decorators":200,"../xpath/XPath":333}],328:[function(require,module,exports){
53044
53033
  "use strict";
53045
53034
  /*!
53046
53035
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53518,7 +53507,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
53518
53507
  ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
53519
53508
  })(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
53520
53509
 
53521
- },{"../../BailErrorStrategy":189,"../../CharStreams":192,"../../CommonTokenStream":197,"../../Decorators":199,"../../ListTokenSource":210,"../../ParserInterpreter":214,"../../ParserRuleContext":215,"../../RecognitionException":218,"../../Token":224,"../../misc/MultiMap":313,"../../misc/ParseCancellationException":316,"../RuleNode":321,"../TerminalNode":322,"./ParseTreeMatch":325,"./ParseTreePattern":326,"./RuleTagToken":328,"./TagChunk":329,"./TextChunk":330,"./TokenTagToken":331}],328:[function(require,module,exports){
53510
+ },{"../../BailErrorStrategy":190,"../../CharStreams":193,"../../CommonTokenStream":198,"../../Decorators":200,"../../ListTokenSource":211,"../../ParserInterpreter":215,"../../ParserRuleContext":216,"../../RecognitionException":219,"../../Token":225,"../../misc/MultiMap":314,"../../misc/ParseCancellationException":317,"../RuleNode":322,"../TerminalNode":323,"./ParseTreeMatch":326,"./ParseTreePattern":327,"./RuleTagToken":329,"./TagChunk":330,"./TextChunk":331,"./TokenTagToken":332}],329:[function(require,module,exports){
53522
53511
  "use strict";
53523
53512
  /*!
53524
53513
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53716,7 +53705,7 @@ RuleTagToken = __decorate([
53716
53705
  ], RuleTagToken);
53717
53706
  exports.RuleTagToken = RuleTagToken;
53718
53707
 
53719
- },{"../../Decorators":199,"../../Token":224}],329:[function(require,module,exports){
53708
+ },{"../../Decorators":200,"../../Token":225}],330:[function(require,module,exports){
53720
53709
  "use strict";
53721
53710
  /*!
53722
53711
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53803,7 +53792,7 @@ __decorate([
53803
53792
  ], TagChunk.prototype, "toString", null);
53804
53793
  exports.TagChunk = TagChunk;
53805
53794
 
53806
- },{"../../Decorators":199,"./Chunk":324}],330:[function(require,module,exports){
53795
+ },{"../../Decorators":200,"./Chunk":325}],331:[function(require,module,exports){
53807
53796
  "use strict";
53808
53797
  /*!
53809
53798
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53873,7 +53862,7 @@ TextChunk = __decorate([
53873
53862
  ], TextChunk);
53874
53863
  exports.TextChunk = TextChunk;
53875
53864
 
53876
- },{"../../Decorators":199,"./Chunk":324}],331:[function(require,module,exports){
53865
+ },{"../../Decorators":200,"./Chunk":325}],332:[function(require,module,exports){
53877
53866
  "use strict";
53878
53867
  /*!
53879
53868
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53968,7 +53957,7 @@ TokenTagToken = __decorate([
53968
53957
  ], TokenTagToken);
53969
53958
  exports.TokenTagToken = TokenTagToken;
53970
53959
 
53971
- },{"../../CommonToken":195,"../../Decorators":199}],332:[function(require,module,exports){
53960
+ },{"../../CommonToken":196,"../../Decorators":200}],333:[function(require,module,exports){
53972
53961
  "use strict";
53973
53962
  /*!
53974
53963
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54165,7 +54154,7 @@ exports.XPath = XPath;
54165
54154
  XPath.WILDCARD = "*"; // word not operator/separator
54166
54155
  XPath.NOT = "!"; // word for invert operator
54167
54156
 
54168
- },{"../../CharStreams":192,"../../CommonTokenStream":197,"../../LexerNoViableAltException":209,"../../ParserRuleContext":215,"../../Token":224,"./XPathLexer":334,"./XPathLexerErrorListener":335,"./XPathRuleAnywhereElement":336,"./XPathRuleElement":337,"./XPathTokenAnywhereElement":338,"./XPathTokenElement":339,"./XPathWildcardAnywhereElement":340,"./XPathWildcardElement":341}],333:[function(require,module,exports){
54157
+ },{"../../CharStreams":193,"../../CommonTokenStream":198,"../../LexerNoViableAltException":210,"../../ParserRuleContext":216,"../../Token":225,"./XPathLexer":335,"./XPathLexerErrorListener":336,"./XPathRuleAnywhereElement":337,"./XPathRuleElement":338,"./XPathTokenAnywhereElement":339,"./XPathTokenElement":340,"./XPathWildcardAnywhereElement":341,"./XPathWildcardElement":342}],334:[function(require,module,exports){
54169
54158
  "use strict";
54170
54159
  /*!
54171
54160
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54200,7 +54189,7 @@ __decorate([
54200
54189
  ], XPathElement.prototype, "toString", null);
54201
54190
  exports.XPathElement = XPathElement;
54202
54191
 
54203
- },{"../../Decorators":199}],334:[function(require,module,exports){
54192
+ },{"../../Decorators":200}],335:[function(require,module,exports){
54204
54193
  "use strict";
54205
54194
  // Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
54206
54195
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -54675,7 +54664,7 @@ XPathLexer._serializedATN = Utils.join([
54675
54664
  XPathLexer._serializedATNSegment1,
54676
54665
  ], "");
54677
54666
 
54678
- },{"../../Lexer":207,"../../VocabularyImpl":230,"../../atn/ATNDeserializer":236,"../../atn/LexerATNSimulator":257,"../../misc/Utils":318}],335:[function(require,module,exports){
54667
+ },{"../../Lexer":208,"../../VocabularyImpl":231,"../../atn/ATNDeserializer":237,"../../atn/LexerATNSimulator":258,"../../misc/Utils":319}],336:[function(require,module,exports){
54679
54668
  "use strict";
54680
54669
  /*!
54681
54670
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54700,7 +54689,7 @@ __decorate([
54700
54689
  ], XPathLexerErrorListener.prototype, "syntaxError", null);
54701
54690
  exports.XPathLexerErrorListener = XPathLexerErrorListener;
54702
54691
 
54703
- },{"../../Decorators":199}],336:[function(require,module,exports){
54692
+ },{"../../Decorators":200}],337:[function(require,module,exports){
54704
54693
  "use strict";
54705
54694
  /*!
54706
54695
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54734,7 +54723,7 @@ __decorate([
54734
54723
  ], XPathRuleAnywhereElement.prototype, "evaluate", null);
54735
54724
  exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
54736
54725
 
54737
- },{"../../Decorators":199,"../Trees":323,"./XPathElement":333}],337:[function(require,module,exports){
54726
+ },{"../../Decorators":200,"../Trees":324,"./XPathElement":334}],338:[function(require,module,exports){
54738
54727
  "use strict";
54739
54728
  /*!
54740
54729
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54777,7 +54766,7 @@ __decorate([
54777
54766
  ], XPathRuleElement.prototype, "evaluate", null);
54778
54767
  exports.XPathRuleElement = XPathRuleElement;
54779
54768
 
54780
- },{"../../Decorators":199,"../../ParserRuleContext":215,"../Trees":323,"./XPathElement":333}],338:[function(require,module,exports){
54769
+ },{"../../Decorators":200,"../../ParserRuleContext":216,"../Trees":324,"./XPathElement":334}],339:[function(require,module,exports){
54781
54770
  "use strict";
54782
54771
  /*!
54783
54772
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54809,7 +54798,7 @@ __decorate([
54809
54798
  ], XPathTokenAnywhereElement.prototype, "evaluate", null);
54810
54799
  exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
54811
54800
 
54812
- },{"../../Decorators":199,"../Trees":323,"./XPathElement":333}],339:[function(require,module,exports){
54801
+ },{"../../Decorators":200,"../Trees":324,"./XPathElement":334}],340:[function(require,module,exports){
54813
54802
  "use strict";
54814
54803
  /*!
54815
54804
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54852,7 +54841,7 @@ __decorate([
54852
54841
  ], XPathTokenElement.prototype, "evaluate", null);
54853
54842
  exports.XPathTokenElement = XPathTokenElement;
54854
54843
 
54855
- },{"../../Decorators":199,"../TerminalNode":322,"../Trees":323,"./XPathElement":333}],340:[function(require,module,exports){
54844
+ },{"../../Decorators":200,"../TerminalNode":323,"../Trees":324,"./XPathElement":334}],341:[function(require,module,exports){
54856
54845
  "use strict";
54857
54846
  /*!
54858
54847
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54888,7 +54877,7 @@ __decorate([
54888
54877
  ], XPathWildcardAnywhereElement.prototype, "evaluate", null);
54889
54878
  exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
54890
54879
 
54891
- },{"../../Decorators":199,"../Trees":323,"./XPath":332,"./XPathElement":333}],341:[function(require,module,exports){
54880
+ },{"../../Decorators":200,"../Trees":324,"./XPath":333,"./XPathElement":334}],342:[function(require,module,exports){
54892
54881
  "use strict";
54893
54882
  /*!
54894
54883
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54928,7 +54917,7 @@ __decorate([
54928
54917
  ], XPathWildcardElement.prototype, "evaluate", null);
54929
54918
  exports.XPathWildcardElement = XPathWildcardElement;
54930
54919
 
54931
- },{"../../Decorators":199,"../Trees":323,"./XPath":332,"./XPathElement":333}],342:[function(require,module,exports){
54920
+ },{"../../Decorators":200,"../Trees":324,"./XPath":333,"./XPathElement":334}],343:[function(require,module,exports){
54932
54921
  (function (global){(function (){
54933
54922
  'use strict';
54934
54923
 
@@ -55438,7 +55427,7 @@ var objectKeys = Object.keys || function (obj) {
55438
55427
  };
55439
55428
 
55440
55429
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
55441
- },{"object.assign/polyfill":399,"util/":345}],343:[function(require,module,exports){
55430
+ },{"object.assign/polyfill":400,"util/":346}],344:[function(require,module,exports){
55442
55431
  if (typeof Object.create === 'function') {
55443
55432
  // implementation from standard node.js 'util' module
55444
55433
  module.exports = function inherits(ctor, superCtor) {
@@ -55463,14 +55452,14 @@ if (typeof Object.create === 'function') {
55463
55452
  }
55464
55453
  }
55465
55454
 
55466
- },{}],344:[function(require,module,exports){
55455
+ },{}],345:[function(require,module,exports){
55467
55456
  module.exports = function isBuffer(arg) {
55468
55457
  return arg && typeof arg === 'object'
55469
55458
  && typeof arg.copy === 'function'
55470
55459
  && typeof arg.fill === 'function'
55471
55460
  && typeof arg.readUInt8 === 'function';
55472
55461
  }
55473
- },{}],345:[function(require,module,exports){
55462
+ },{}],346:[function(require,module,exports){
55474
55463
  (function (process,global){(function (){
55475
55464
  // Copyright Joyent, Inc. and other Node contributors.
55476
55465
  //
@@ -56060,7 +56049,7 @@ function hasOwnProperty(obj, prop) {
56060
56049
  }
56061
56050
 
56062
56051
  }).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
56063
- },{"./support/isBuffer":344,"_process":401,"inherits":343}],346:[function(require,module,exports){
56052
+ },{"./support/isBuffer":345,"_process":402,"inherits":344}],347:[function(require,module,exports){
56064
56053
  (function (global){(function (){
56065
56054
  'use strict';
56066
56055
 
@@ -56081,7 +56070,7 @@ module.exports = function availableTypedArrays() {
56081
56070
  };
56082
56071
 
56083
56072
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
56084
- },{"possible-typed-array-names":400}],347:[function(require,module,exports){
56073
+ },{"possible-typed-array-names":401}],348:[function(require,module,exports){
56085
56074
  (function (process,global){(function (){
56086
56075
  module.exports = process.hrtime || hrtime
56087
56076
 
@@ -56112,7 +56101,7 @@ function hrtime(previousTimestamp){
56112
56101
  return [seconds,nanoseconds]
56113
56102
  }
56114
56103
  }).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
56115
- },{"_process":401}],348:[function(require,module,exports){
56104
+ },{"_process":402}],349:[function(require,module,exports){
56116
56105
  'use strict';
56117
56106
 
56118
56107
  var bind = require('function-bind');
@@ -56124,7 +56113,7 @@ var $reflectApply = require('./reflectApply');
56124
56113
  /** @type {import('./actualApply')} */
56125
56114
  module.exports = $reflectApply || bind.call($call, $apply);
56126
56115
 
56127
- },{"./functionApply":350,"./functionCall":351,"./reflectApply":353,"function-bind":369}],349:[function(require,module,exports){
56116
+ },{"./functionApply":351,"./functionCall":352,"./reflectApply":354,"function-bind":370}],350:[function(require,module,exports){
56128
56117
  'use strict';
56129
56118
 
56130
56119
  var bind = require('function-bind');
@@ -56136,19 +56125,19 @@ module.exports = function applyBind() {
56136
56125
  return actualApply(bind, $apply, arguments);
56137
56126
  };
56138
56127
 
56139
- },{"./actualApply":348,"./functionApply":350,"function-bind":369}],350:[function(require,module,exports){
56128
+ },{"./actualApply":349,"./functionApply":351,"function-bind":370}],351:[function(require,module,exports){
56140
56129
  'use strict';
56141
56130
 
56142
56131
  /** @type {import('./functionApply')} */
56143
56132
  module.exports = Function.prototype.apply;
56144
56133
 
56145
- },{}],351:[function(require,module,exports){
56134
+ },{}],352:[function(require,module,exports){
56146
56135
  'use strict';
56147
56136
 
56148
56137
  /** @type {import('./functionCall')} */
56149
56138
  module.exports = Function.prototype.call;
56150
56139
 
56151
- },{}],352:[function(require,module,exports){
56140
+ },{}],353:[function(require,module,exports){
56152
56141
  'use strict';
56153
56142
 
56154
56143
  var bind = require('function-bind');
@@ -56165,13 +56154,13 @@ module.exports = function callBindBasic(args) {
56165
56154
  return $actualApply(bind, $call, args);
56166
56155
  };
56167
56156
 
56168
- },{"./actualApply":348,"./functionCall":351,"es-errors/type":364,"function-bind":369}],353:[function(require,module,exports){
56157
+ },{"./actualApply":349,"./functionCall":352,"es-errors/type":365,"function-bind":370}],354:[function(require,module,exports){
56169
56158
  'use strict';
56170
56159
 
56171
56160
  /** @type {import('./reflectApply')} */
56172
56161
  module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
56173
56162
 
56174
- },{}],354:[function(require,module,exports){
56163
+ },{}],355:[function(require,module,exports){
56175
56164
  'use strict';
56176
56165
 
56177
56166
  var setFunctionLength = require('set-function-length');
@@ -56197,7 +56186,7 @@ if ($defineProperty) {
56197
56186
  module.exports.apply = applyBind;
56198
56187
  }
56199
56188
 
56200
- },{"call-bind-apply-helpers":352,"call-bind-apply-helpers/applyBind":349,"es-define-property":358,"set-function-length":403}],355:[function(require,module,exports){
56189
+ },{"call-bind-apply-helpers":353,"call-bind-apply-helpers/applyBind":350,"es-define-property":359,"set-function-length":404}],356:[function(require,module,exports){
56201
56190
  'use strict';
56202
56191
 
56203
56192
  var GetIntrinsic = require('get-intrinsic');
@@ -56218,7 +56207,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
56218
56207
  return intrinsic;
56219
56208
  };
56220
56209
 
56221
- },{"call-bind-apply-helpers":352,"get-intrinsic":370}],356:[function(require,module,exports){
56210
+ },{"call-bind-apply-helpers":353,"get-intrinsic":371}],357:[function(require,module,exports){
56222
56211
  'use strict';
56223
56212
 
56224
56213
  var $defineProperty = require('es-define-property');
@@ -56276,7 +56265,7 @@ module.exports = function defineDataProperty(
56276
56265
  }
56277
56266
  };
56278
56267
 
56279
- },{"es-define-property":358,"es-errors/syntax":363,"es-errors/type":364,"gopd":375}],357:[function(require,module,exports){
56268
+ },{"es-define-property":359,"es-errors/syntax":364,"es-errors/type":365,"gopd":376}],358:[function(require,module,exports){
56280
56269
  'use strict';
56281
56270
 
56282
56271
  var callBind = require('call-bind-apply-helpers');
@@ -56308,7 +56297,7 @@ module.exports = desc && typeof desc.get === 'function'
56308
56297
  }
56309
56298
  : false;
56310
56299
 
56311
- },{"call-bind-apply-helpers":352,"gopd":375}],358:[function(require,module,exports){
56300
+ },{"call-bind-apply-helpers":353,"gopd":376}],359:[function(require,module,exports){
56312
56301
  'use strict';
56313
56302
 
56314
56303
  /** @type {import('.')} */
@@ -56324,55 +56313,55 @@ if ($defineProperty) {
56324
56313
 
56325
56314
  module.exports = $defineProperty;
56326
56315
 
56327
- },{}],359:[function(require,module,exports){
56316
+ },{}],360:[function(require,module,exports){
56328
56317
  'use strict';
56329
56318
 
56330
56319
  /** @type {import('./eval')} */
56331
56320
  module.exports = EvalError;
56332
56321
 
56333
- },{}],360:[function(require,module,exports){
56322
+ },{}],361:[function(require,module,exports){
56334
56323
  'use strict';
56335
56324
 
56336
56325
  /** @type {import('.')} */
56337
56326
  module.exports = Error;
56338
56327
 
56339
- },{}],361:[function(require,module,exports){
56328
+ },{}],362:[function(require,module,exports){
56340
56329
  'use strict';
56341
56330
 
56342
56331
  /** @type {import('./range')} */
56343
56332
  module.exports = RangeError;
56344
56333
 
56345
- },{}],362:[function(require,module,exports){
56334
+ },{}],363:[function(require,module,exports){
56346
56335
  'use strict';
56347
56336
 
56348
56337
  /** @type {import('./ref')} */
56349
56338
  module.exports = ReferenceError;
56350
56339
 
56351
- },{}],363:[function(require,module,exports){
56340
+ },{}],364:[function(require,module,exports){
56352
56341
  'use strict';
56353
56342
 
56354
56343
  /** @type {import('./syntax')} */
56355
56344
  module.exports = SyntaxError;
56356
56345
 
56357
- },{}],364:[function(require,module,exports){
56346
+ },{}],365:[function(require,module,exports){
56358
56347
  'use strict';
56359
56348
 
56360
56349
  /** @type {import('./type')} */
56361
56350
  module.exports = TypeError;
56362
56351
 
56363
- },{}],365:[function(require,module,exports){
56352
+ },{}],366:[function(require,module,exports){
56364
56353
  'use strict';
56365
56354
 
56366
56355
  /** @type {import('./uri')} */
56367
56356
  module.exports = URIError;
56368
56357
 
56369
- },{}],366:[function(require,module,exports){
56358
+ },{}],367:[function(require,module,exports){
56370
56359
  'use strict';
56371
56360
 
56372
56361
  /** @type {import('.')} */
56373
56362
  module.exports = Object;
56374
56363
 
56375
- },{}],367:[function(require,module,exports){
56364
+ },{}],368:[function(require,module,exports){
56376
56365
  'use strict';
56377
56366
 
56378
56367
  var isCallable = require('is-callable');
@@ -56443,7 +56432,7 @@ module.exports = function forEach(list, iterator, thisArg) {
56443
56432
  }
56444
56433
  };
56445
56434
 
56446
- },{"is-callable":383}],368:[function(require,module,exports){
56435
+ },{"is-callable":384}],369:[function(require,module,exports){
56447
56436
  'use strict';
56448
56437
 
56449
56438
  /* eslint no-invalid-this: 1 */
@@ -56529,14 +56518,14 @@ module.exports = function bind(that) {
56529
56518
  return bound;
56530
56519
  };
56531
56520
 
56532
- },{}],369:[function(require,module,exports){
56521
+ },{}],370:[function(require,module,exports){
56533
56522
  'use strict';
56534
56523
 
56535
56524
  var implementation = require('./implementation');
56536
56525
 
56537
56526
  module.exports = Function.prototype.bind || implementation;
56538
56527
 
56539
- },{"./implementation":368}],370:[function(require,module,exports){
56528
+ },{"./implementation":369}],371:[function(require,module,exports){
56540
56529
  'use strict';
56541
56530
 
56542
56531
  var undefined;
@@ -56916,7 +56905,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
56916
56905
  return value;
56917
56906
  };
56918
56907
 
56919
- },{"call-bind-apply-helpers/functionApply":350,"call-bind-apply-helpers/functionCall":351,"es-define-property":358,"es-errors":360,"es-errors/eval":359,"es-errors/range":361,"es-errors/ref":362,"es-errors/syntax":363,"es-errors/type":364,"es-errors/uri":365,"es-object-atoms":366,"function-bind":369,"get-proto":373,"get-proto/Object.getPrototypeOf":371,"get-proto/Reflect.getPrototypeOf":372,"gopd":375,"has-symbols":377,"hasown":380,"math-intrinsics/abs":387,"math-intrinsics/floor":388,"math-intrinsics/max":390,"math-intrinsics/min":391,"math-intrinsics/pow":392,"math-intrinsics/round":393,"math-intrinsics/sign":394}],371:[function(require,module,exports){
56908
+ },{"call-bind-apply-helpers/functionApply":351,"call-bind-apply-helpers/functionCall":352,"es-define-property":359,"es-errors":361,"es-errors/eval":360,"es-errors/range":362,"es-errors/ref":363,"es-errors/syntax":364,"es-errors/type":365,"es-errors/uri":366,"es-object-atoms":367,"function-bind":370,"get-proto":374,"get-proto/Object.getPrototypeOf":372,"get-proto/Reflect.getPrototypeOf":373,"gopd":376,"has-symbols":378,"hasown":381,"math-intrinsics/abs":388,"math-intrinsics/floor":389,"math-intrinsics/max":391,"math-intrinsics/min":392,"math-intrinsics/pow":393,"math-intrinsics/round":394,"math-intrinsics/sign":395}],372:[function(require,module,exports){
56920
56909
  'use strict';
56921
56910
 
56922
56911
  var $Object = require('es-object-atoms');
@@ -56924,13 +56913,13 @@ var $Object = require('es-object-atoms');
56924
56913
  /** @type {import('./Object.getPrototypeOf')} */
56925
56914
  module.exports = $Object.getPrototypeOf || null;
56926
56915
 
56927
- },{"es-object-atoms":366}],372:[function(require,module,exports){
56916
+ },{"es-object-atoms":367}],373:[function(require,module,exports){
56928
56917
  'use strict';
56929
56918
 
56930
56919
  /** @type {import('./Reflect.getPrototypeOf')} */
56931
56920
  module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
56932
56921
 
56933
- },{}],373:[function(require,module,exports){
56922
+ },{}],374:[function(require,module,exports){
56934
56923
  'use strict';
56935
56924
 
56936
56925
  var reflectGetProto = require('./Reflect.getPrototypeOf');
@@ -56959,13 +56948,13 @@ module.exports = reflectGetProto
56959
56948
  }
56960
56949
  : null;
56961
56950
 
56962
- },{"./Object.getPrototypeOf":371,"./Reflect.getPrototypeOf":372,"dunder-proto/get":357}],374:[function(require,module,exports){
56951
+ },{"./Object.getPrototypeOf":372,"./Reflect.getPrototypeOf":373,"dunder-proto/get":358}],375:[function(require,module,exports){
56963
56952
  'use strict';
56964
56953
 
56965
56954
  /** @type {import('./gOPD')} */
56966
56955
  module.exports = Object.getOwnPropertyDescriptor;
56967
56956
 
56968
- },{}],375:[function(require,module,exports){
56957
+ },{}],376:[function(require,module,exports){
56969
56958
  'use strict';
56970
56959
 
56971
56960
  /** @type {import('.')} */
@@ -56982,7 +56971,7 @@ if ($gOPD) {
56982
56971
 
56983
56972
  module.exports = $gOPD;
56984
56973
 
56985
- },{"./gOPD":374}],376:[function(require,module,exports){
56974
+ },{"./gOPD":375}],377:[function(require,module,exports){
56986
56975
  'use strict';
56987
56976
 
56988
56977
  var $defineProperty = require('es-define-property');
@@ -57006,7 +56995,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
57006
56995
 
57007
56996
  module.exports = hasPropertyDescriptors;
57008
56997
 
57009
- },{"es-define-property":358}],377:[function(require,module,exports){
56998
+ },{"es-define-property":359}],378:[function(require,module,exports){
57010
56999
  'use strict';
57011
57000
 
57012
57001
  var origSymbol = typeof Symbol !== 'undefined' && Symbol;
@@ -57022,7 +57011,7 @@ module.exports = function hasNativeSymbols() {
57022
57011
  return hasSymbolSham();
57023
57012
  };
57024
57013
 
57025
- },{"./shams":378}],378:[function(require,module,exports){
57014
+ },{"./shams":379}],379:[function(require,module,exports){
57026
57015
  'use strict';
57027
57016
 
57028
57017
  /** @type {import('./shams')} */
@@ -57069,7 +57058,7 @@ module.exports = function hasSymbols() {
57069
57058
  return true;
57070
57059
  };
57071
57060
 
57072
- },{}],379:[function(require,module,exports){
57061
+ },{}],380:[function(require,module,exports){
57073
57062
  'use strict';
57074
57063
 
57075
57064
  var hasSymbols = require('has-symbols/shams');
@@ -57079,7 +57068,7 @@ module.exports = function hasToStringTagShams() {
57079
57068
  return hasSymbols() && !!Symbol.toStringTag;
57080
57069
  };
57081
57070
 
57082
- },{"has-symbols/shams":378}],380:[function(require,module,exports){
57071
+ },{"has-symbols/shams":379}],381:[function(require,module,exports){
57083
57072
  'use strict';
57084
57073
 
57085
57074
  var call = Function.prototype.call;
@@ -57089,7 +57078,7 @@ var bind = require('function-bind');
57089
57078
  /** @type {import('.')} */
57090
57079
  module.exports = bind.call(call, $hasOwn);
57091
57080
 
57092
- },{"function-bind":369}],381:[function(require,module,exports){
57081
+ },{"function-bind":370}],382:[function(require,module,exports){
57093
57082
  if (typeof Object.create === 'function') {
57094
57083
  // implementation from standard node.js 'util' module
57095
57084
  module.exports = function inherits(ctor, superCtor) {
@@ -57118,7 +57107,7 @@ if (typeof Object.create === 'function') {
57118
57107
  }
57119
57108
  }
57120
57109
 
57121
- },{}],382:[function(require,module,exports){
57110
+ },{}],383:[function(require,module,exports){
57122
57111
  'use strict';
57123
57112
 
57124
57113
  var hasToStringTag = require('has-tostringtag/shams')();
@@ -57164,7 +57153,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
57164
57153
  /** @type {import('.')} */
57165
57154
  module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
57166
57155
 
57167
- },{"call-bound":355,"has-tostringtag/shams":379}],383:[function(require,module,exports){
57156
+ },{"call-bound":356,"has-tostringtag/shams":380}],384:[function(require,module,exports){
57168
57157
  'use strict';
57169
57158
 
57170
57159
  var fnToStr = Function.prototype.toString;
@@ -57267,7 +57256,7 @@ module.exports = reflectApply
57267
57256
  return tryFunctionObject(value);
57268
57257
  };
57269
57258
 
57270
- },{}],384:[function(require,module,exports){
57259
+ },{}],385:[function(require,module,exports){
57271
57260
  'use strict';
57272
57261
 
57273
57262
  var callBound = require('call-bound');
@@ -57316,7 +57305,7 @@ module.exports = function isGeneratorFunction(fn) {
57316
57305
  return getProto(fn) === GeneratorFunction;
57317
57306
  };
57318
57307
 
57319
- },{"call-bound":355,"get-proto":373,"has-tostringtag/shams":379,"safe-regex-test":402}],385:[function(require,module,exports){
57308
+ },{"call-bound":356,"get-proto":374,"has-tostringtag/shams":380,"safe-regex-test":403}],386:[function(require,module,exports){
57320
57309
  'use strict';
57321
57310
 
57322
57311
  var callBound = require('call-bound');
@@ -57387,7 +57376,7 @@ if (hasToStringTag) {
57387
57376
 
57388
57377
  module.exports = fn;
57389
57378
 
57390
- },{"call-bound":355,"gopd":375,"has-tostringtag/shams":379,"hasown":380}],386:[function(require,module,exports){
57379
+ },{"call-bound":356,"gopd":376,"has-tostringtag/shams":380,"hasown":381}],387:[function(require,module,exports){
57391
57380
  'use strict';
57392
57381
 
57393
57382
  var whichTypedArray = require('which-typed-array');
@@ -57397,19 +57386,19 @@ module.exports = function isTypedArray(value) {
57397
57386
  return !!whichTypedArray(value);
57398
57387
  };
57399
57388
 
57400
- },{"which-typed-array":407}],387:[function(require,module,exports){
57389
+ },{"which-typed-array":408}],388:[function(require,module,exports){
57401
57390
  'use strict';
57402
57391
 
57403
57392
  /** @type {import('./abs')} */
57404
57393
  module.exports = Math.abs;
57405
57394
 
57406
- },{}],388:[function(require,module,exports){
57395
+ },{}],389:[function(require,module,exports){
57407
57396
  'use strict';
57408
57397
 
57409
57398
  /** @type {import('./floor')} */
57410
57399
  module.exports = Math.floor;
57411
57400
 
57412
- },{}],389:[function(require,module,exports){
57401
+ },{}],390:[function(require,module,exports){
57413
57402
  'use strict';
57414
57403
 
57415
57404
  /** @type {import('./isNaN')} */
@@ -57417,31 +57406,31 @@ module.exports = Number.isNaN || function isNaN(a) {
57417
57406
  return a !== a;
57418
57407
  };
57419
57408
 
57420
- },{}],390:[function(require,module,exports){
57409
+ },{}],391:[function(require,module,exports){
57421
57410
  'use strict';
57422
57411
 
57423
57412
  /** @type {import('./max')} */
57424
57413
  module.exports = Math.max;
57425
57414
 
57426
- },{}],391:[function(require,module,exports){
57415
+ },{}],392:[function(require,module,exports){
57427
57416
  'use strict';
57428
57417
 
57429
57418
  /** @type {import('./min')} */
57430
57419
  module.exports = Math.min;
57431
57420
 
57432
- },{}],392:[function(require,module,exports){
57421
+ },{}],393:[function(require,module,exports){
57433
57422
  'use strict';
57434
57423
 
57435
57424
  /** @type {import('./pow')} */
57436
57425
  module.exports = Math.pow;
57437
57426
 
57438
- },{}],393:[function(require,module,exports){
57427
+ },{}],394:[function(require,module,exports){
57439
57428
  'use strict';
57440
57429
 
57441
57430
  /** @type {import('./round')} */
57442
57431
  module.exports = Math.round;
57443
57432
 
57444
- },{}],394:[function(require,module,exports){
57433
+ },{}],395:[function(require,module,exports){
57445
57434
  'use strict';
57446
57435
 
57447
57436
  var $isNaN = require('./isNaN');
@@ -57454,7 +57443,7 @@ module.exports = function sign(number) {
57454
57443
  return number < 0 ? -1 : +1;
57455
57444
  };
57456
57445
 
57457
- },{"./isNaN":389}],395:[function(require,module,exports){
57446
+ },{"./isNaN":390}],396:[function(require,module,exports){
57458
57447
  'use strict';
57459
57448
 
57460
57449
  var keysShim;
@@ -57578,7 +57567,7 @@ if (!Object.keys) {
57578
57567
  }
57579
57568
  module.exports = keysShim;
57580
57569
 
57581
- },{"./isArguments":397}],396:[function(require,module,exports){
57570
+ },{"./isArguments":398}],397:[function(require,module,exports){
57582
57571
  'use strict';
57583
57572
 
57584
57573
  var slice = Array.prototype.slice;
@@ -57612,7 +57601,7 @@ keysShim.shim = function shimObjectKeys() {
57612
57601
 
57613
57602
  module.exports = keysShim;
57614
57603
 
57615
- },{"./implementation":395,"./isArguments":397}],397:[function(require,module,exports){
57604
+ },{"./implementation":396,"./isArguments":398}],398:[function(require,module,exports){
57616
57605
  'use strict';
57617
57606
 
57618
57607
  var toStr = Object.prototype.toString;
@@ -57631,7 +57620,7 @@ module.exports = function isArguments(value) {
57631
57620
  return isArgs;
57632
57621
  };
57633
57622
 
57634
- },{}],398:[function(require,module,exports){
57623
+ },{}],399:[function(require,module,exports){
57635
57624
  'use strict';
57636
57625
 
57637
57626
  // modified from https://github.com/es-shims/es6-shim
@@ -57679,7 +57668,7 @@ module.exports = function assign(target, source1) {
57679
57668
  return to; // step 4
57680
57669
  };
57681
57670
 
57682
- },{"call-bound":355,"es-object-atoms":366,"has-symbols/shams":378,"object-keys":396}],399:[function(require,module,exports){
57671
+ },{"call-bound":356,"es-object-atoms":367,"has-symbols/shams":379,"object-keys":397}],400:[function(require,module,exports){
57683
57672
  'use strict';
57684
57673
 
57685
57674
  var implementation = require('./implementation');
@@ -57736,7 +57725,7 @@ module.exports = function getPolyfill() {
57736
57725
  return Object.assign;
57737
57726
  };
57738
57727
 
57739
- },{"./implementation":398}],400:[function(require,module,exports){
57728
+ },{"./implementation":399}],401:[function(require,module,exports){
57740
57729
  'use strict';
57741
57730
 
57742
57731
  /** @type {import('.')} */
@@ -57755,7 +57744,7 @@ module.exports = [
57755
57744
  'BigUint64Array'
57756
57745
  ];
57757
57746
 
57758
- },{}],401:[function(require,module,exports){
57747
+ },{}],402:[function(require,module,exports){
57759
57748
  // shim for using process in browser
57760
57749
  var process = module.exports = {};
57761
57750
 
@@ -57941,7 +57930,7 @@ process.chdir = function (dir) {
57941
57930
  };
57942
57931
  process.umask = function() { return 0; };
57943
57932
 
57944
- },{}],402:[function(require,module,exports){
57933
+ },{}],403:[function(require,module,exports){
57945
57934
  'use strict';
57946
57935
 
57947
57936
  var callBound = require('call-bound');
@@ -57960,7 +57949,7 @@ module.exports = function regexTester(regex) {
57960
57949
  };
57961
57950
  };
57962
57951
 
57963
- },{"call-bound":355,"es-errors/type":364,"is-regex":385}],403:[function(require,module,exports){
57952
+ },{"call-bound":356,"es-errors/type":365,"is-regex":386}],404:[function(require,module,exports){
57964
57953
  'use strict';
57965
57954
 
57966
57955
  var GetIntrinsic = require('get-intrinsic');
@@ -58004,9 +57993,9 @@ module.exports = function setFunctionLength(fn, length) {
58004
57993
  return fn;
58005
57994
  };
58006
57995
 
58007
- },{"define-data-property":356,"es-errors/type":364,"get-intrinsic":370,"gopd":375,"has-property-descriptors":376}],404:[function(require,module,exports){
58008
- arguments[4][344][0].apply(exports,arguments)
58009
- },{"dup":344}],405:[function(require,module,exports){
57996
+ },{"define-data-property":357,"es-errors/type":365,"get-intrinsic":371,"gopd":376,"has-property-descriptors":377}],405:[function(require,module,exports){
57997
+ arguments[4][345][0].apply(exports,arguments)
57998
+ },{"dup":345}],406:[function(require,module,exports){
58010
57999
  // Currently in sync with Node.js lib/internal/util/types.js
58011
58000
  // https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
58012
58001
 
@@ -58342,7 +58331,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
58342
58331
  });
58343
58332
  });
58344
58333
 
58345
- },{"is-arguments":382,"is-generator-function":384,"is-typed-array":386,"which-typed-array":407}],406:[function(require,module,exports){
58334
+ },{"is-arguments":383,"is-generator-function":385,"is-typed-array":387,"which-typed-array":408}],407:[function(require,module,exports){
58346
58335
  (function (process){(function (){
58347
58336
  // Copyright Joyent, Inc. and other Node contributors.
58348
58337
  //
@@ -59061,7 +59050,7 @@ function callbackify(original) {
59061
59050
  exports.callbackify = callbackify;
59062
59051
 
59063
59052
  }).call(this)}).call(this,require('_process'))
59064
- },{"./support/isBuffer":404,"./support/types":405,"_process":401,"inherits":381}],407:[function(require,module,exports){
59053
+ },{"./support/isBuffer":405,"./support/types":406,"_process":402,"inherits":382}],408:[function(require,module,exports){
59065
59054
  (function (global){(function (){
59066
59055
  'use strict';
59067
59056
 
@@ -59182,5 +59171,5 @@ module.exports = function whichTypedArray(value) {
59182
59171
  };
59183
59172
 
59184
59173
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
59185
- },{"available-typed-arrays":346,"call-bind":354,"call-bound":355,"for-each":367,"get-proto":373,"gopd":375,"has-tostringtag/shams":379}]},{},[106])(106)
59174
+ },{"available-typed-arrays":347,"call-bind":355,"call-bound":356,"for-each":368,"get-proto":374,"gopd":376,"has-tostringtag/shams":380}]},{},[107])(107)
59186
59175
  });