@designliquido/delegua 0.45.2 → 0.45.4

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 (53) 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 +26 -9
  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.js +2 -2
  40. package/interpretador/interpretador.js.map +1 -1
  41. package/lexador/dialetos/lexador-tenda.d.ts.map +1 -1
  42. package/lexador/dialetos/lexador-tenda.js +3 -14
  43. package/lexador/dialetos/lexador-tenda.js.map +1 -1
  44. package/lexador/dialetos/palavras-reservadas/tenda.d.ts +8 -5
  45. package/lexador/dialetos/palavras-reservadas/tenda.d.ts.map +1 -1
  46. package/lexador/dialetos/palavras-reservadas/tenda.js +9 -5
  47. package/lexador/dialetos/palavras-reservadas/tenda.js.map +1 -1
  48. package/package.json +1 -1
  49. package/tipos-de-simbolos/tenda.d.ts +7 -15
  50. package/tipos-de-simbolos/tenda.d.ts.map +1 -1
  51. package/tipos-de-simbolos/tenda.js +7 -15
  52. package/tipos-de-simbolos/tenda.js.map +1 -1
  53. package/umd/delegua.js +442 -443
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) {
@@ -1560,13 +1565,25 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
1560
1565
  yield declaracao;
1561
1566
  }
1562
1567
  }
1563
- const blocoSenao = construtoSe.caminhoSenao;
1564
- if (!blocoSenao)
1568
+ if (!construtoSe.caminhoSenao)
1565
1569
  return;
1566
- for (const declaracao of blocoSenao.declaracoes) {
1567
- if (declaracao.constructor.name === 'Retorna') {
1568
- yield declaracao;
1569
- }
1570
+ switch (construtoSe.caminhoSenao.constructor.name) {
1571
+ case 'Bloco':
1572
+ const blocoSenao = construtoSe.caminhoSenao;
1573
+ for (const declaracao of blocoSenao.declaracoes) {
1574
+ if (declaracao.constructor.name === 'Retorna') {
1575
+ yield declaracao;
1576
+ }
1577
+ }
1578
+ break;
1579
+ case 'Se':
1580
+ const senaoSe = construtoSe.caminhoSenao;
1581
+ for (const declaracao of this.buscarRetornosEmSe(senaoSe)) {
1582
+ if (declaracao.constructor.name === 'Retorna') {
1583
+ yield declaracao;
1584
+ }
1585
+ }
1586
+ break;
1570
1587
  }
1571
1588
  }
1572
1589
  buscarRetornos(declaracao) {
@@ -1635,7 +1652,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
1635
1652
  tipoRetorno = 'vazio';
1636
1653
  }
1637
1654
  }
1638
- 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);
1639
1656
  }
1640
1657
  declaracaoDeClasse() {
1641
1658
  const simbolo = this.consumir(delegua_2.default.IDENTIFICADOR, 'Esperado nome da classe.');
@@ -1872,7 +1889,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
1872
1889
  }
1873
1890
  exports.AvaliadorSintatico = AvaliadorSintatico;
1874
1891
 
1875
- },{"../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){
1876
1893
  "use strict";
1877
1894
  Object.defineProperty(exports, "__esModule", { value: true });
1878
1895
  exports.registrarPrimitiva = registrarPrimitiva;
@@ -1884,7 +1901,7 @@ function registrarPrimitiva(primitivasConhecidas, tipo, catalogoPrimitivas) {
1884
1901
  }
1885
1902
  }
1886
1903
 
1887
- },{"../informacao-variavel-ou-constante":108}],4:[function(require,module,exports){
1904
+ },{"../informacao-variavel-ou-constante":109}],4:[function(require,module,exports){
1888
1905
  "use strict";
1889
1906
  var __importDefault = (this && this.__importDefault) || function (mod) {
1890
1907
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -2539,7 +2556,7 @@ class AvaliadorSintaticoEguaClassico {
2539
2556
  }
2540
2557
  exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
2541
2558
 
2542
- },{"../../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){
2543
2560
  "use strict";
2544
2561
  var __importDefault = (this && this.__importDefault) || function (mod) {
2545
2562
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -3569,7 +3586,7 @@ class AvaliadorSintaticoPitugues {
3569
3586
  }
3570
3587
  exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
3571
3588
 
3572
- },{"../../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){
3573
3590
  "use strict";
3574
3591
  var __importDefault = (this && this.__importDefault) || function (mod) {
3575
3592
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -3738,7 +3755,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
3738
3755
  }
3739
3756
  exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
3740
3757
 
3741
- },{"../../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){
3742
3759
  "use strict";
3743
3760
  var __importDefault = (this && this.__importDefault) || function (mod) {
3744
3761
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -3924,7 +3941,6 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
3924
3941
  case tenda_1.default.FALSO:
3925
3942
  this.avancarEDevolverAnterior();
3926
3943
  return new construtos_1.Literal(this.hashArquivo, Number(simboloAtual.linha), false, 'lógico');
3927
- case tenda_1.default.FUNCAO:
3928
3944
  case tenda_1.default.FUNÇÃO:
3929
3945
  const simboloFuncao = this.avancarEDevolverAnterior();
3930
3946
  // Avançamos o parêntese esquerdo aqui, porque `corpoDaFuncao`
@@ -4161,7 +4177,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
4161
4177
  }
4162
4178
  multiplicar() {
4163
4179
  let expressao = this.exponenciacao();
4164
- 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)) {
4165
4181
  const operador = this.simbolos[this.atual - 1];
4166
4182
  const direito = this.exponenciacao();
4167
4183
  expressao = new construtos_1.Binario(this.hashArquivo, expressao, operador, direito);
@@ -4175,15 +4191,9 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
4175
4191
  */
4176
4192
  adicaoOuSubtracao() {
4177
4193
  let expressao = this.multiplicar();
4178
- 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)) {
4179
4195
  const operador = this.simbolos[this.atual - 1];
4180
4196
  const direito = this.multiplicar();
4181
- // const tipoInferido = inferirTipoParaBinario(expressao, operador, direito);
4182
- expressao = new construtos_1.Binario(this.hashArquivo, expressao, operador, direito);
4183
- }
4184
- if (this.verificarSeSimboloAtualEIgualA(tenda_1.default.MAIS_IGUAL)) {
4185
- const operador = this.simbolos[this.atual - 1];
4186
- const direito = this.atribuir();
4187
4197
  expressao = new construtos_1.Binario(this.hashArquivo, expressao, operador, direito);
4188
4198
  }
4189
4199
  return expressao;
@@ -4263,22 +4273,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
4263
4273
  */
4264
4274
  atribuir() {
4265
4275
  const expressao = this.ou();
4266
- if (expressao instanceof construtos_1.Binario &&
4267
- [
4268
- tenda_1.default.MAIS_IGUAL,
4269
- tenda_1.default.MENOS_IGUAL,
4270
- tenda_1.default.MULTIPLICACAO_IGUAL,
4271
- tenda_1.default.DIVISAO_IGUAL,
4272
- tenda_1.default.DIVISAO_INTEIRA_IGUAL,
4273
- tenda_1.default.MODULO_IGUAL,
4274
- ].includes(expressao.operador.tipo)) {
4275
- if (expressao.esquerda instanceof construtos_1.AcessoIndiceVariavel) {
4276
- const entidade = expressao.esquerda;
4277
- return new construtos_1.Atribuir(this.hashArquivo, entidade.entidadeChamada, expressao, entidade.indice, expressao.operador);
4278
- }
4279
- return new construtos_1.Atribuir(this.hashArquivo, expressao.esquerda, expressao, undefined, expressao.operador);
4280
- }
4281
- else if (this.verificarSeSimboloAtualEIgualA(tenda_1.default.IGUAL)) {
4276
+ if (this.verificarSeSimboloAtualEIgualA(tenda_1.default.IGUAL)) {
4282
4277
  const igual = this.simbolos[this.atual - 1];
4283
4278
  const valor = this.expressao();
4284
4279
  switch (expressao.constructor.name) {
@@ -4438,7 +4433,6 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
4438
4433
  tenda_1.default.CHAVE_ESQUERDA,
4439
4434
  tenda_1.default.COLCHETE_ESQUERDO,
4440
4435
  tenda_1.default.FALSO,
4441
- tenda_1.default.FUNCAO,
4442
4436
  tenda_1.default.FUNÇÃO,
4443
4437
  tenda_1.default.IDENTIFICADOR,
4444
4438
  tenda_1.default.ISTO,
@@ -4684,8 +4678,6 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
4684
4678
  while (!this.estaNoFinal()) {
4685
4679
  const tipoSimboloAtual = this.simbolos[this.atual - 1].tipo;
4686
4680
  switch (tipoSimboloAtual) {
4687
- case tenda_1.default.CLASSE:
4688
- case tenda_1.default.FUNCAO:
4689
4681
  case tenda_1.default.FUNÇÃO:
4690
4682
  case tenda_1.default.VARIAVEL:
4691
4683
  case tenda_1.default.PARA:
@@ -4826,7 +4818,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
4826
4818
  }
4827
4819
  exports.AvaliadorSintaticoTenda = AvaliadorSintaticoTenda;
4828
4820
 
4829
- },{"../../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){
4830
4822
  "use strict";
4831
4823
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4832
4824
  if (k2 === undefined) k2 = k;
@@ -5019,7 +5011,7 @@ class MicroAvaliadorSintaticoBase {
5019
5011
  }
5020
5012
  exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
5021
5013
 
5022
- },{"../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){
5023
5015
  "use strict";
5024
5016
  var __importDefault = (this && this.__importDefault) || function (mod) {
5025
5017
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -5225,7 +5217,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
5225
5217
  }
5226
5218
  exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
5227
5219
 
5228
- },{"../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){
5229
5221
  "use strict";
5230
5222
  Object.defineProperty(exports, "__esModule", { value: true });
5231
5223
  exports.PilhaEscopos = void 0;
@@ -5853,7 +5845,7 @@ async function tupla(interpretador, vetor) {
5853
5845
  }
5854
5846
  }
5855
5847
 
5856
- },{"../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){
5857
5849
  "use strict";
5858
5850
  Object.defineProperty(exports, "__esModule", { value: true });
5859
5851
  exports.default = {
@@ -5989,7 +5981,7 @@ exports.default = {
5989
5981
  },
5990
5982
  };
5991
5983
 
5992
- },{"../informacao-variavel-ou-constante":108}],21:[function(require,module,exports){
5984
+ },{"../informacao-variavel-ou-constante":109}],21:[function(require,module,exports){
5993
5985
  "use strict";
5994
5986
  Object.defineProperty(exports, "__esModule", { value: true });
5995
5987
  const informacao_variavel_ou_constante_1 = require("../informacao-variavel-ou-constante");
@@ -6156,7 +6148,7 @@ exports.default = {
6156
6148
  },
6157
6149
  };
6158
6150
 
6159
- },{"../informacao-variavel-ou-constante":108}],22:[function(require,module,exports){
6151
+ },{"../informacao-variavel-ou-constante":109}],22:[function(require,module,exports){
6160
6152
  "use strict";
6161
6153
  Object.defineProperty(exports, "__esModule", { value: true });
6162
6154
  exports.AcessoElementoMatriz = void 0;
@@ -6448,7 +6440,7 @@ class Chamada {
6448
6440
  }
6449
6441
  exports.Chamada = Chamada;
6450
6442
 
6451
- },{"../geracao-identificadores":105}],34:[function(require,module,exports){
6443
+ },{"../geracao-identificadores":106}],34:[function(require,module,exports){
6452
6444
  "use strict";
6453
6445
  Object.defineProperty(exports, "__esModule", { value: true });
6454
6446
  exports.ComponenteLinguagem = void 0;
@@ -6620,12 +6612,13 @@ exports.FormatacaoEscrita = FormatacaoEscrita;
6620
6612
  Object.defineProperty(exports, "__esModule", { value: true });
6621
6613
  exports.FuncaoConstruto = void 0;
6622
6614
  class FuncaoConstruto {
6623
- constructor(hashArquivo, linha, parametros, corpo, tipoRetorno) {
6615
+ constructor(hashArquivo, linha, parametros, corpo, tipoRetorno, tipoExplicito) {
6624
6616
  this.linha = linha;
6625
6617
  this.hashArquivo = hashArquivo;
6626
6618
  this.parametros = parametros;
6627
- this.tipo = tipoRetorno;
6628
6619
  this.corpo = corpo;
6620
+ this.tipo = tipoRetorno;
6621
+ this.tipoExplicito = tipoExplicito || false;
6629
6622
  }
6630
6623
  async aceitar(visitante) {
6631
6624
  return Promise.resolve(visitante.visitarExpressaoFuncaoConstruto(this));
@@ -6676,6 +6669,7 @@ __exportStar(require("./isto"), exports);
6676
6669
  __exportStar(require("./leia"), exports);
6677
6670
  __exportStar(require("./literal"), exports);
6678
6671
  __exportStar(require("./logico"), exports);
6672
+ __exportStar(require("./referencia-biblioteca-global"), exports);
6679
6673
  __exportStar(require("./referencia-funcao"), exports);
6680
6674
  __exportStar(require("./super"), exports);
6681
6675
  __exportStar(require("./tipo-de"), exports);
@@ -6684,7 +6678,7 @@ __exportStar(require("./unario"), exports);
6684
6678
  __exportStar(require("./variavel"), exports);
6685
6679
  __exportStar(require("./vetor"), exports);
6686
6680
 
6687
- },{"./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){
6688
6682
  "use strict";
6689
6683
  Object.defineProperty(exports, "__esModule", { value: true });
6690
6684
  exports.Isto = void 0;
@@ -6723,7 +6717,7 @@ class Leia {
6723
6717
  }
6724
6718
  exports.Leia = Leia;
6725
6719
 
6726
- },{"../geracao-identificadores":105}],47:[function(require,module,exports){
6720
+ },{"../geracao-identificadores":106}],47:[function(require,module,exports){
6727
6721
  "use strict";
6728
6722
  Object.defineProperty(exports, "__esModule", { value: true });
6729
6723
  exports.Literal = void 0;
@@ -6761,6 +6755,26 @@ exports.Logico = Logico;
6761
6755
  },{}],49:[function(require,module,exports){
6762
6756
  "use strict";
6763
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 });
6764
6778
  exports.ReferenciaFuncao = void 0;
6765
6779
  class ReferenciaFuncao {
6766
6780
  constructor(hashArquivo, linha, simboloFuncao, tipo, idfuncao) {
@@ -6776,7 +6790,7 @@ class ReferenciaFuncao {
6776
6790
  }
6777
6791
  exports.ReferenciaFuncao = ReferenciaFuncao;
6778
6792
 
6779
- },{}],50:[function(require,module,exports){
6793
+ },{}],51:[function(require,module,exports){
6780
6794
  "use strict";
6781
6795
  Object.defineProperty(exports, "__esModule", { value: true });
6782
6796
  exports.Super = void 0;
@@ -6793,7 +6807,7 @@ class Super {
6793
6807
  }
6794
6808
  exports.Super = Super;
6795
6809
 
6796
- },{}],51:[function(require,module,exports){
6810
+ },{}],52:[function(require,module,exports){
6797
6811
  "use strict";
6798
6812
  Object.defineProperty(exports, "__esModule", { value: true });
6799
6813
  exports.TipoDe = void 0;
@@ -6814,7 +6828,7 @@ class TipoDe {
6814
6828
  }
6815
6829
  exports.TipoDe = TipoDe;
6816
6830
 
6817
- },{}],52:[function(require,module,exports){
6831
+ },{}],53:[function(require,module,exports){
6818
6832
  "use strict";
6819
6833
  Object.defineProperty(exports, "__esModule", { value: true });
6820
6834
  exports.Deceto = void 0;
@@ -6848,7 +6862,7 @@ class Deceto extends tupla_1.Tupla {
6848
6862
  }
6849
6863
  exports.Deceto = Deceto;
6850
6864
 
6851
- },{"./tupla":62}],53:[function(require,module,exports){
6865
+ },{"./tupla":63}],54:[function(require,module,exports){
6852
6866
  "use strict";
6853
6867
  Object.defineProperty(exports, "__esModule", { value: true });
6854
6868
  exports.Dupla = void 0;
@@ -6862,7 +6876,7 @@ class Dupla extends tupla_1.Tupla {
6862
6876
  }
6863
6877
  exports.Dupla = Dupla;
6864
6878
 
6865
- },{"./tupla":62}],54:[function(require,module,exports){
6879
+ },{"./tupla":63}],55:[function(require,module,exports){
6866
6880
  "use strict";
6867
6881
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6868
6882
  if (k2 === undefined) k2 = k;
@@ -6931,7 +6945,7 @@ class SeletorTuplas {
6931
6945
  }
6932
6946
  exports.SeletorTuplas = SeletorTuplas;
6933
6947
 
6934
- },{"./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){
6935
6949
  "use strict";
6936
6950
  Object.defineProperty(exports, "__esModule", { value: true });
6937
6951
  exports.Noneto = void 0;
@@ -6958,7 +6972,7 @@ class Noneto extends tupla_1.Tupla {
6958
6972
  }
6959
6973
  exports.Noneto = Noneto;
6960
6974
 
6961
- },{"./tupla":62}],56:[function(require,module,exports){
6975
+ },{"./tupla":63}],57:[function(require,module,exports){
6962
6976
  "use strict";
6963
6977
  Object.defineProperty(exports, "__esModule", { value: true });
6964
6978
  exports.Octeto = void 0;
@@ -6984,7 +6998,7 @@ class Octeto extends tupla_1.Tupla {
6984
6998
  }
6985
6999
  exports.Octeto = Octeto;
6986
7000
 
6987
- },{"./tupla":62}],57:[function(require,module,exports){
7001
+ },{"./tupla":63}],58:[function(require,module,exports){
6988
7002
  "use strict";
6989
7003
  Object.defineProperty(exports, "__esModule", { value: true });
6990
7004
  exports.Quarteto = void 0;
@@ -7000,7 +7014,7 @@ class Quarteto extends tupla_1.Tupla {
7000
7014
  }
7001
7015
  exports.Quarteto = Quarteto;
7002
7016
 
7003
- },{"./tupla":62}],58:[function(require,module,exports){
7017
+ },{"./tupla":63}],59:[function(require,module,exports){
7004
7018
  "use strict";
7005
7019
  Object.defineProperty(exports, "__esModule", { value: true });
7006
7020
  exports.Quinteto = void 0;
@@ -7017,7 +7031,7 @@ class Quinteto extends tupla_1.Tupla {
7017
7031
  }
7018
7032
  exports.Quinteto = Quinteto;
7019
7033
 
7020
- },{"./tupla":62}],59:[function(require,module,exports){
7034
+ },{"./tupla":63}],60:[function(require,module,exports){
7021
7035
  "use strict";
7022
7036
  Object.defineProperty(exports, "__esModule", { value: true });
7023
7037
  exports.Septeto = void 0;
@@ -7042,7 +7056,7 @@ class Septeto extends tupla_1.Tupla {
7042
7056
  }
7043
7057
  exports.Septeto = Septeto;
7044
7058
 
7045
- },{"./tupla":62}],60:[function(require,module,exports){
7059
+ },{"./tupla":63}],61:[function(require,module,exports){
7046
7060
  "use strict";
7047
7061
  Object.defineProperty(exports, "__esModule", { value: true });
7048
7062
  exports.Sexteto = void 0;
@@ -7060,7 +7074,7 @@ class Sexteto extends tupla_1.Tupla {
7060
7074
  }
7061
7075
  exports.Sexteto = Sexteto;
7062
7076
 
7063
- },{"./tupla":62}],61:[function(require,module,exports){
7077
+ },{"./tupla":63}],62:[function(require,module,exports){
7064
7078
  "use strict";
7065
7079
  Object.defineProperty(exports, "__esModule", { value: true });
7066
7080
  exports.Trio = void 0;
@@ -7075,7 +7089,7 @@ class Trio extends tupla_1.Tupla {
7075
7089
  }
7076
7090
  exports.Trio = Trio;
7077
7091
 
7078
- },{"./tupla":62}],62:[function(require,module,exports){
7092
+ },{"./tupla":63}],63:[function(require,module,exports){
7079
7093
  "use strict";
7080
7094
  Object.defineProperty(exports, "__esModule", { value: true });
7081
7095
  exports.Tupla = void 0;
@@ -7086,7 +7100,7 @@ class Tupla {
7086
7100
  }
7087
7101
  exports.Tupla = Tupla;
7088
7102
 
7089
- },{}],63:[function(require,module,exports){
7103
+ },{}],64:[function(require,module,exports){
7090
7104
  "use strict";
7091
7105
  Object.defineProperty(exports, "__esModule", { value: true });
7092
7106
  exports.Unario = void 0;
@@ -7104,7 +7118,7 @@ class Unario {
7104
7118
  }
7105
7119
  exports.Unario = Unario;
7106
7120
 
7107
- },{}],64:[function(require,module,exports){
7121
+ },{}],65:[function(require,module,exports){
7108
7122
  "use strict";
7109
7123
  Object.defineProperty(exports, "__esModule", { value: true });
7110
7124
  exports.Variavel = void 0;
@@ -7121,7 +7135,7 @@ class Variavel {
7121
7135
  }
7122
7136
  exports.Variavel = Variavel;
7123
7137
 
7124
- },{}],65:[function(require,module,exports){
7138
+ },{}],66:[function(require,module,exports){
7125
7139
  "use strict";
7126
7140
  Object.defineProperty(exports, "__esModule", { value: true });
7127
7141
  exports.Vetor = void 0;
@@ -7144,7 +7158,7 @@ class Vetor {
7144
7158
  }
7145
7159
  exports.Vetor = Vetor;
7146
7160
 
7147
- },{}],66:[function(require,module,exports){
7161
+ },{}],67:[function(require,module,exports){
7148
7162
  "use strict";
7149
7163
  Object.defineProperty(exports, "__esModule", { value: true });
7150
7164
  exports.Aleatorio = void 0;
@@ -7161,7 +7175,7 @@ class Aleatorio extends declaracao_1.Declaracao {
7161
7175
  }
7162
7176
  exports.Aleatorio = Aleatorio;
7163
7177
 
7164
- },{"./declaracao":74}],67:[function(require,module,exports){
7178
+ },{"./declaracao":75}],68:[function(require,module,exports){
7165
7179
  "use strict";
7166
7180
  Object.defineProperty(exports, "__esModule", { value: true });
7167
7181
  exports.Bloco = void 0;
@@ -7177,7 +7191,7 @@ class Bloco extends declaracao_1.Declaracao {
7177
7191
  }
7178
7192
  exports.Bloco = Bloco;
7179
7193
 
7180
- },{"./declaracao":74}],68:[function(require,module,exports){
7194
+ },{"./declaracao":75}],69:[function(require,module,exports){
7181
7195
  "use strict";
7182
7196
  Object.defineProperty(exports, "__esModule", { value: true });
7183
7197
  exports.CabecalhoPrograma = void 0;
@@ -7193,7 +7207,7 @@ class CabecalhoPrograma extends declaracao_1.Declaracao {
7193
7207
  }
7194
7208
  exports.CabecalhoPrograma = CabecalhoPrograma;
7195
7209
 
7196
- },{"./declaracao":74}],69:[function(require,module,exports){
7210
+ },{"./declaracao":75}],70:[function(require,module,exports){
7197
7211
  "use strict";
7198
7212
  Object.defineProperty(exports, "__esModule", { value: true });
7199
7213
  exports.Classe = void 0;
@@ -7213,7 +7227,7 @@ class Classe extends declaracao_1.Declaracao {
7213
7227
  }
7214
7228
  exports.Classe = Classe;
7215
7229
 
7216
- },{"./declaracao":74}],70:[function(require,module,exports){
7230
+ },{"./declaracao":75}],71:[function(require,module,exports){
7217
7231
  "use strict";
7218
7232
  Object.defineProperty(exports, "__esModule", { value: true });
7219
7233
  exports.Comentario = void 0;
@@ -7235,7 +7249,7 @@ class Comentario extends declaracao_1.Declaracao {
7235
7249
  }
7236
7250
  exports.Comentario = Comentario;
7237
7251
 
7238
- },{"./declaracao":74}],71:[function(require,module,exports){
7252
+ },{"./declaracao":75}],72:[function(require,module,exports){
7239
7253
  "use strict";
7240
7254
  Object.defineProperty(exports, "__esModule", { value: true });
7241
7255
  exports.ConstMultiplo = void 0;
@@ -7256,7 +7270,7 @@ class ConstMultiplo extends declaracao_1.Declaracao {
7256
7270
  }
7257
7271
  exports.ConstMultiplo = ConstMultiplo;
7258
7272
 
7259
- },{"./declaracao":74}],72:[function(require,module,exports){
7273
+ },{"./declaracao":75}],73:[function(require,module,exports){
7260
7274
  "use strict";
7261
7275
  Object.defineProperty(exports, "__esModule", { value: true });
7262
7276
  exports.Const = void 0;
@@ -7284,7 +7298,7 @@ class Const extends declaracao_1.Declaracao {
7284
7298
  }
7285
7299
  exports.Const = Const;
7286
7300
 
7287
- },{"./declaracao":74}],73:[function(require,module,exports){
7301
+ },{"./declaracao":75}],74:[function(require,module,exports){
7288
7302
  "use strict";
7289
7303
  Object.defineProperty(exports, "__esModule", { value: true });
7290
7304
  exports.Continua = void 0;
@@ -7299,7 +7313,7 @@ class Continua extends declaracao_1.Declaracao {
7299
7313
  }
7300
7314
  exports.Continua = Continua;
7301
7315
 
7302
- },{"./declaracao":74}],74:[function(require,module,exports){
7316
+ },{"./declaracao":75}],75:[function(require,module,exports){
7303
7317
  "use strict";
7304
7318
  Object.defineProperty(exports, "__esModule", { value: true });
7305
7319
  exports.Declaracao = void 0;
@@ -7319,7 +7333,7 @@ class Declaracao {
7319
7333
  }
7320
7334
  exports.Declaracao = Declaracao;
7321
7335
 
7322
- },{}],75:[function(require,module,exports){
7336
+ },{}],76:[function(require,module,exports){
7323
7337
  "use strict";
7324
7338
  Object.defineProperty(exports, "__esModule", { value: true });
7325
7339
  exports.Enquanto = void 0;
@@ -7336,7 +7350,7 @@ class Enquanto extends declaracao_1.Declaracao {
7336
7350
  }
7337
7351
  exports.Enquanto = Enquanto;
7338
7352
 
7339
- },{"./declaracao":74}],76:[function(require,module,exports){
7353
+ },{"./declaracao":75}],77:[function(require,module,exports){
7340
7354
  "use strict";
7341
7355
  Object.defineProperty(exports, "__esModule", { value: true });
7342
7356
  exports.Escolha = void 0;
@@ -7357,7 +7371,7 @@ class Escolha extends declaracao_1.Declaracao {
7357
7371
  }
7358
7372
  exports.Escolha = Escolha;
7359
7373
 
7360
- },{"./declaracao":74}],77:[function(require,module,exports){
7374
+ },{"./declaracao":75}],78:[function(require,module,exports){
7361
7375
  "use strict";
7362
7376
  Object.defineProperty(exports, "__esModule", { value: true });
7363
7377
  exports.EscrevaMesmaLinha = void 0;
@@ -7373,7 +7387,7 @@ class EscrevaMesmaLinha extends declaracao_1.Declaracao {
7373
7387
  }
7374
7388
  exports.EscrevaMesmaLinha = EscrevaMesmaLinha;
7375
7389
 
7376
- },{"./declaracao":74}],78:[function(require,module,exports){
7390
+ },{"./declaracao":75}],79:[function(require,module,exports){
7377
7391
  "use strict";
7378
7392
  Object.defineProperty(exports, "__esModule", { value: true });
7379
7393
  exports.Escreva = void 0;
@@ -7389,7 +7403,7 @@ class Escreva extends declaracao_1.Declaracao {
7389
7403
  }
7390
7404
  exports.Escreva = Escreva;
7391
7405
 
7392
- },{"./declaracao":74}],79:[function(require,module,exports){
7406
+ },{"./declaracao":75}],80:[function(require,module,exports){
7393
7407
  "use strict";
7394
7408
  Object.defineProperty(exports, "__esModule", { value: true });
7395
7409
  exports.Expressao = void 0;
@@ -7405,7 +7419,7 @@ class Expressao extends declaracao_1.Declaracao {
7405
7419
  }
7406
7420
  exports.Expressao = Expressao;
7407
7421
 
7408
- },{"./declaracao":74}],80:[function(require,module,exports){
7422
+ },{"./declaracao":75}],81:[function(require,module,exports){
7409
7423
  "use strict";
7410
7424
  Object.defineProperty(exports, "__esModule", { value: true });
7411
7425
  exports.Falhar = void 0;
@@ -7422,7 +7436,7 @@ class Falhar extends declaracao_1.Declaracao {
7422
7436
  }
7423
7437
  exports.Falhar = Falhar;
7424
7438
 
7425
- },{"./declaracao":74}],81:[function(require,module,exports){
7439
+ },{"./declaracao":75}],82:[function(require,module,exports){
7426
7440
  "use strict";
7427
7441
  Object.defineProperty(exports, "__esModule", { value: true });
7428
7442
  exports.Fazer = void 0;
@@ -7439,7 +7453,7 @@ class Fazer extends declaracao_1.Declaracao {
7439
7453
  }
7440
7454
  exports.Fazer = Fazer;
7441
7455
 
7442
- },{"./declaracao":74}],82:[function(require,module,exports){
7456
+ },{"./declaracao":75}],83:[function(require,module,exports){
7443
7457
  "use strict";
7444
7458
  Object.defineProperty(exports, "__esModule", { value: true });
7445
7459
  exports.FuncaoDeclaracao = void 0;
@@ -7463,7 +7477,7 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
7463
7477
  }
7464
7478
  exports.FuncaoDeclaracao = FuncaoDeclaracao;
7465
7479
 
7466
- },{"../geracao-identificadores":105,"./declaracao":74}],83:[function(require,module,exports){
7480
+ },{"../geracao-identificadores":106,"./declaracao":75}],84:[function(require,module,exports){
7467
7481
  "use strict";
7468
7482
  Object.defineProperty(exports, "__esModule", { value: true });
7469
7483
  exports.Importar = void 0;
@@ -7484,7 +7498,7 @@ class Importar extends declaracao_1.Declaracao {
7484
7498
  }
7485
7499
  exports.Importar = Importar;
7486
7500
 
7487
- },{"./declaracao":74}],84:[function(require,module,exports){
7501
+ },{"./declaracao":75}],85:[function(require,module,exports){
7488
7502
  "use strict";
7489
7503
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7490
7504
  if (k2 === undefined) k2 = k;
@@ -7532,7 +7546,7 @@ __exportStar(require("./tente"), exports);
7532
7546
  __exportStar(require("./var"), exports);
7533
7547
  __exportStar(require("./var-multiplo"), exports);
7534
7548
 
7535
- },{"./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){
7536
7550
  "use strict";
7537
7551
  Object.defineProperty(exports, "__esModule", { value: true });
7538
7552
  exports.InicioAlgoritmo = void 0;
@@ -7547,7 +7561,7 @@ class InicioAlgoritmo extends declaracao_1.Declaracao {
7547
7561
  }
7548
7562
  exports.InicioAlgoritmo = InicioAlgoritmo;
7549
7563
 
7550
- },{"./declaracao":74}],86:[function(require,module,exports){
7564
+ },{"./declaracao":75}],87:[function(require,module,exports){
7551
7565
  "use strict";
7552
7566
  Object.defineProperty(exports, "__esModule", { value: true });
7553
7567
  exports.ParaCada = void 0;
@@ -7566,7 +7580,7 @@ class ParaCada extends declaracao_1.Declaracao {
7566
7580
  }
7567
7581
  exports.ParaCada = ParaCada;
7568
7582
 
7569
- },{"./declaracao":74}],87:[function(require,module,exports){
7583
+ },{"./declaracao":75}],88:[function(require,module,exports){
7570
7584
  "use strict";
7571
7585
  Object.defineProperty(exports, "__esModule", { value: true });
7572
7586
  exports.Para = void 0;
@@ -7592,7 +7606,7 @@ class Para extends declaracao_1.Declaracao {
7592
7606
  }
7593
7607
  exports.Para = Para;
7594
7608
 
7595
- },{"./declaracao":74}],88:[function(require,module,exports){
7609
+ },{"./declaracao":75}],89:[function(require,module,exports){
7596
7610
  "use strict";
7597
7611
  Object.defineProperty(exports, "__esModule", { value: true });
7598
7612
  exports.PropriedadeClasse = void 0;
@@ -7610,7 +7624,7 @@ class PropriedadeClasse extends declaracao_1.Declaracao {
7610
7624
  }
7611
7625
  exports.PropriedadeClasse = PropriedadeClasse;
7612
7626
 
7613
- },{"./declaracao":74}],89:[function(require,module,exports){
7627
+ },{"./declaracao":75}],90:[function(require,module,exports){
7614
7628
  "use strict";
7615
7629
  Object.defineProperty(exports, "__esModule", { value: true });
7616
7630
  exports.Retorna = void 0;
@@ -7633,7 +7647,7 @@ class Retorna extends declaracao_1.Declaracao {
7633
7647
  }
7634
7648
  exports.Retorna = Retorna;
7635
7649
 
7636
- },{"./declaracao":74}],90:[function(require,module,exports){
7650
+ },{"./declaracao":75}],91:[function(require,module,exports){
7637
7651
  "use strict";
7638
7652
  Object.defineProperty(exports, "__esModule", { value: true });
7639
7653
  exports.Se = void 0;
@@ -7652,7 +7666,7 @@ class Se extends declaracao_1.Declaracao {
7652
7666
  }
7653
7667
  exports.Se = Se;
7654
7668
 
7655
- },{"./declaracao":74}],91:[function(require,module,exports){
7669
+ },{"./declaracao":75}],92:[function(require,module,exports){
7656
7670
  "use strict";
7657
7671
  Object.defineProperty(exports, "__esModule", { value: true });
7658
7672
  exports.Sustar = void 0;
@@ -7667,7 +7681,7 @@ class Sustar extends declaracao_1.Declaracao {
7667
7681
  }
7668
7682
  exports.Sustar = Sustar;
7669
7683
 
7670
- },{"./declaracao":74}],92:[function(require,module,exports){
7684
+ },{"./declaracao":75}],93:[function(require,module,exports){
7671
7685
  "use strict";
7672
7686
  Object.defineProperty(exports, "__esModule", { value: true });
7673
7687
  exports.TendoComo = void 0;
@@ -7690,7 +7704,7 @@ class TendoComo extends declaracao_1.Declaracao {
7690
7704
  }
7691
7705
  exports.TendoComo = TendoComo;
7692
7706
 
7693
- },{"./declaracao":74}],93:[function(require,module,exports){
7707
+ },{"./declaracao":75}],94:[function(require,module,exports){
7694
7708
  "use strict";
7695
7709
  Object.defineProperty(exports, "__esModule", { value: true });
7696
7710
  exports.Tente = void 0;
@@ -7712,7 +7726,7 @@ class Tente extends declaracao_1.Declaracao {
7712
7726
  }
7713
7727
  exports.Tente = Tente;
7714
7728
 
7715
- },{"./declaracao":74}],94:[function(require,module,exports){
7729
+ },{"./declaracao":75}],95:[function(require,module,exports){
7716
7730
  "use strict";
7717
7731
  Object.defineProperty(exports, "__esModule", { value: true });
7718
7732
  exports.VarMultiplo = void 0;
@@ -7734,7 +7748,7 @@ class VarMultiplo extends declaracao_1.Declaracao {
7734
7748
  }
7735
7749
  exports.VarMultiplo = VarMultiplo;
7736
7750
 
7737
- },{"./declaracao":74}],95:[function(require,module,exports){
7751
+ },{"./declaracao":75}],96:[function(require,module,exports){
7738
7752
  "use strict";
7739
7753
  Object.defineProperty(exports, "__esModule", { value: true });
7740
7754
  exports.Var = void 0;
@@ -7764,7 +7778,7 @@ class Var extends declaracao_1.Declaracao {
7764
7778
  }
7765
7779
  exports.Var = Var;
7766
7780
 
7767
- },{"./declaracao":74}],96:[function(require,module,exports){
7781
+ },{"./declaracao":75}],97:[function(require,module,exports){
7768
7782
  "use strict";
7769
7783
  Object.defineProperty(exports, "__esModule", { value: true });
7770
7784
  exports.default = cyrb53;
@@ -7788,7 +7802,7 @@ function cyrb53(nomeArquivo, semente = 0) {
7788
7802
  return 4294967296 * (2097151 & h2) + (h1 >>> 0);
7789
7803
  }
7790
7804
 
7791
- },{}],97:[function(require,module,exports){
7805
+ },{}],98:[function(require,module,exports){
7792
7806
  "use strict";
7793
7807
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7794
7808
  if (k2 === undefined) k2 = k;
@@ -7813,11 +7827,11 @@ var cyrb53_1 = require("./cyrb53");
7813
7827
  Object.defineProperty(exports, "cyrb53", { enumerable: true, get: function () { return __importDefault(cyrb53_1).default; } });
7814
7828
  __exportStar(require("./ponto-parada"), exports);
7815
7829
 
7816
- },{"./cyrb53":96,"./ponto-parada":98}],98:[function(require,module,exports){
7830
+ },{"./cyrb53":97,"./ponto-parada":99}],99:[function(require,module,exports){
7817
7831
  "use strict";
7818
7832
  Object.defineProperty(exports, "__esModule", { value: true });
7819
7833
 
7820
- },{}],99:[function(require,module,exports){
7834
+ },{}],100:[function(require,module,exports){
7821
7835
  "use strict";
7822
7836
  Object.defineProperty(exports, "__esModule", { value: true });
7823
7837
  exports.EspacoVariaveis = void 0;
@@ -7839,7 +7853,7 @@ class EspacoVariaveis {
7839
7853
  }
7840
7854
  exports.EspacoVariaveis = EspacoVariaveis;
7841
7855
 
7842
- },{}],100:[function(require,module,exports){
7856
+ },{}],101:[function(require,module,exports){
7843
7857
  "use strict";
7844
7858
  Object.defineProperty(exports, "__esModule", { value: true });
7845
7859
  exports.ErroEmTempoDeExecucao = void 0;
@@ -7854,7 +7868,7 @@ class ErroEmTempoDeExecucao extends Error {
7854
7868
  }
7855
7869
  exports.ErroEmTempoDeExecucao = ErroEmTempoDeExecucao;
7856
7870
 
7857
- },{}],101:[function(require,module,exports){
7871
+ },{}],102:[function(require,module,exports){
7858
7872
  "use strict";
7859
7873
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7860
7874
  if (k2 === undefined) k2 = k;
@@ -7873,7 +7887,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
7873
7887
  Object.defineProperty(exports, "__esModule", { value: true });
7874
7888
  __exportStar(require("./erro-em-tempo-de-execucao"), exports);
7875
7889
 
7876
- },{"./erro-em-tempo-de-execucao":100}],102:[function(require,module,exports){
7890
+ },{"./erro-em-tempo-de-execucao":101}],103:[function(require,module,exports){
7877
7891
  "use strict";
7878
7892
  var __importDefault = (this && this.__importDefault) || function (mod) {
7879
7893
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -8576,7 +8590,7 @@ class FormatadorDelegua {
8576
8590
  }
8577
8591
  exports.FormatadorDelegua = FormatadorDelegua;
8578
8592
 
8579
- },{"../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){
8580
8594
  "use strict";
8581
8595
  Object.defineProperty(exports, "__esModule", { value: true });
8582
8596
  exports.FormatadorPitugues = void 0;
@@ -8752,7 +8766,7 @@ class FormatadorPitugues {
8752
8766
  }
8753
8767
  exports.FormatadorPitugues = FormatadorPitugues;
8754
8768
 
8755
- },{}],104:[function(require,module,exports){
8769
+ },{}],105:[function(require,module,exports){
8756
8770
  "use strict";
8757
8771
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
8758
8772
  if (k2 === undefined) k2 = k;
@@ -8772,7 +8786,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
8772
8786
  __exportStar(require("./formatador-delegua"), exports);
8773
8787
  __exportStar(require("./formatador-pitugues"), exports);
8774
8788
 
8775
- },{"./formatador-delegua":102,"./formatador-pitugues":103}],105:[function(require,module,exports){
8789
+ },{"./formatador-delegua":103,"./formatador-pitugues":104}],106:[function(require,module,exports){
8776
8790
  "use strict";
8777
8791
  Object.defineProperty(exports, "__esModule", { value: true });
8778
8792
  exports.uuidv4 = uuidv4;
@@ -8796,7 +8810,7 @@ function uuidv4() {
8796
8810
  });
8797
8811
  }
8798
8812
 
8799
- },{}],106:[function(require,module,exports){
8813
+ },{}],107:[function(require,module,exports){
8800
8814
  "use strict";
8801
8815
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
8802
8816
  if (k2 === undefined) k2 = k;
@@ -8825,7 +8839,7 @@ __exportStar(require("./interpretador"), exports);
8825
8839
  __exportStar(require("./lexador"), exports);
8826
8840
  __exportStar(require("./tradutores"), exports);
8827
8841
 
8828
- },{"./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){
8829
8843
  "use strict";
8830
8844
  var __importDefault = (this && this.__importDefault) || function (mod) {
8831
8845
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -8952,7 +8966,7 @@ function tipoInferenciaParaTipoDadosElementar(tipoInferencia) {
8952
8966
  }
8953
8967
  }
8954
8968
 
8955
- },{"./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){
8956
8970
  "use strict";
8957
8971
  Object.defineProperty(exports, "__esModule", { value: true });
8958
8972
  exports.InformacaoVariavelOuConstante = void 0;
@@ -8969,15 +8983,15 @@ class InformacaoVariavelOuConstante {
8969
8983
  }
8970
8984
  exports.InformacaoVariavelOuConstante = InformacaoVariavelOuConstante;
8971
8985
 
8972
- },{}],109:[function(require,module,exports){
8986
+ },{}],110:[function(require,module,exports){
8973
8987
  "use strict";
8974
8988
  Object.defineProperty(exports, "__esModule", { value: true });
8975
8989
 
8976
- },{}],110:[function(require,module,exports){
8990
+ },{}],111:[function(require,module,exports){
8977
8991
  "use strict";
8978
8992
  Object.defineProperty(exports, "__esModule", { value: true });
8979
8993
 
8980
- },{}],111:[function(require,module,exports){
8994
+ },{}],112:[function(require,module,exports){
8981
8995
  "use strict";
8982
8996
  Object.defineProperty(exports, "__esModule", { value: true });
8983
8997
  exports.DiagnosticoSeveridade = void 0;
@@ -8989,7 +9003,7 @@ var DiagnosticoSeveridade;
8989
9003
  DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
8990
9004
  })(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
8991
9005
 
8992
- },{}],112:[function(require,module,exports){
9006
+ },{}],113:[function(require,module,exports){
8993
9007
  "use strict";
8994
9008
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
8995
9009
  if (k2 === undefined) k2 = k;
@@ -9008,11 +9022,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
9008
9022
  Object.defineProperty(exports, "__esModule", { value: true });
9009
9023
  __exportStar(require("./diagnostico-analisador-semantico"), exports);
9010
9024
 
9011
- },{"./diagnostico-analisador-semantico":111}],113:[function(require,module,exports){
9025
+ },{"./diagnostico-analisador-semantico":112}],114:[function(require,module,exports){
9012
9026
  "use strict";
9013
9027
  Object.defineProperty(exports, "__esModule", { value: true });
9014
9028
 
9015
- },{}],114:[function(require,module,exports){
9029
+ },{}],115:[function(require,module,exports){
9016
9030
  "use strict";
9017
9031
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
9018
9032
  if (k2 === undefined) k2 = k;
@@ -9047,11 +9061,7 @@ __exportStar(require("./construtos"), exports);
9047
9061
  __exportStar(require("./erros"), exports);
9048
9062
  __exportStar(require("./retornos"), exports);
9049
9063
 
9050
- },{"./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){
9051
- "use strict";
9052
- Object.defineProperty(exports, "__esModule", { value: true });
9053
-
9054
- },{}],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){
9055
9065
  "use strict";
9056
9066
  Object.defineProperty(exports, "__esModule", { value: true });
9057
9067
 
@@ -9077,6 +9087,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
9077
9087
 
9078
9088
  },{}],122:[function(require,module,exports){
9079
9089
  "use strict";
9090
+ Object.defineProperty(exports, "__esModule", { value: true });
9091
+
9092
+ },{}],123:[function(require,module,exports){
9093
+ "use strict";
9080
9094
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
9081
9095
  if (k2 === undefined) k2 = k;
9082
9096
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -9097,11 +9111,7 @@ __exportStar(require("./retorno-execucao-interface"), exports);
9097
9111
  __exportStar(require("./retorno-interpretador"), exports);
9098
9112
  __exportStar(require("./retorno-lexador"), exports);
9099
9113
 
9100
- },{"./retorno-avaliador-sintatico":123,"./retorno-execucao-interface":124,"./retorno-interpretador":125,"./retorno-lexador":126}],123:[function(require,module,exports){
9101
- "use strict";
9102
- Object.defineProperty(exports, "__esModule", { value: true });
9103
-
9104
- },{}],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){
9105
9115
  "use strict";
9106
9116
  Object.defineProperty(exports, "__esModule", { value: true });
9107
9117
 
@@ -9131,6 +9141,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
9131
9141
 
9132
9142
  },{}],131:[function(require,module,exports){
9133
9143
  "use strict";
9144
+ Object.defineProperty(exports, "__esModule", { value: true });
9145
+
9146
+ },{}],132:[function(require,module,exports){
9147
+ "use strict";
9134
9148
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
9135
9149
  if (k2 === undefined) k2 = k;
9136
9150
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -9194,7 +9208,7 @@ function carregarBibliotecasGlobais(pilhaEscoposExecucao) {
9194
9208
  pilhaEscoposExecucao.definirVariavel('tupla', new funcao_padrao_1.FuncaoPadrao(1, bibliotecaGlobal.tupla));
9195
9209
  }
9196
9210
 
9197
- },{"../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){
9198
9212
  "use strict";
9199
9213
  Object.defineProperty(exports, "__esModule", { value: true });
9200
9214
  exports.Chamavel = void 0;
@@ -9208,7 +9222,7 @@ class Chamavel {
9208
9222
  }
9209
9223
  exports.Chamavel = Chamavel;
9210
9224
 
9211
- },{}],133:[function(require,module,exports){
9225
+ },{}],134:[function(require,module,exports){
9212
9226
  "use strict";
9213
9227
  Object.defineProperty(exports, "__esModule", { value: true });
9214
9228
  exports.ClassePadrao = void 0;
@@ -9249,7 +9263,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
9249
9263
  }
9250
9264
  exports.ClassePadrao = ClassePadrao;
9251
9265
 
9252
- },{"./chamavel":132}],134:[function(require,module,exports){
9266
+ },{"./chamavel":133}],135:[function(require,module,exports){
9253
9267
  "use strict";
9254
9268
  Object.defineProperty(exports, "__esModule", { value: true });
9255
9269
  exports.DeleguaFuncao = void 0;
@@ -9407,7 +9421,7 @@ class DeleguaFuncao extends chamavel_1.Chamavel {
9407
9421
  }
9408
9422
  exports.DeleguaFuncao = DeleguaFuncao;
9409
9423
 
9410
- },{"../../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){
9411
9425
  "use strict";
9412
9426
  Object.defineProperty(exports, "__esModule", { value: true });
9413
9427
  exports.DescritorTipoClasse = void 0;
@@ -9488,7 +9502,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
9488
9502
  }
9489
9503
  exports.DescritorTipoClasse = DescritorTipoClasse;
9490
9504
 
9491
- },{"../../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){
9492
9506
  "use strict";
9493
9507
  Object.defineProperty(exports, "__esModule", { value: true });
9494
9508
  exports.FuncaoPadrao = void 0;
@@ -9524,7 +9538,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
9524
9538
  }
9525
9539
  exports.FuncaoPadrao = FuncaoPadrao;
9526
9540
 
9527
- },{"./chamavel":132}],137:[function(require,module,exports){
9541
+ },{"./chamavel":133}],138:[function(require,module,exports){
9528
9542
  "use strict";
9529
9543
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
9530
9544
  if (k2 === undefined) k2 = k;
@@ -9551,7 +9565,7 @@ __exportStar(require("./modulo"), exports);
9551
9565
  __exportStar(require("./objeto-delegua-classe"), exports);
9552
9566
  __exportStar(require("./objeto-padrao"), exports);
9553
9567
 
9554
- },{"./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){
9555
9569
  "use strict";
9556
9570
  Object.defineProperty(exports, "__esModule", { value: true });
9557
9571
  exports.MetodoPrimitiva = void 0;
@@ -9593,7 +9607,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
9593
9607
  }
9594
9608
  exports.MetodoPrimitiva = MetodoPrimitiva;
9595
9609
 
9596
- },{"./chamavel":132}],139:[function(require,module,exports){
9610
+ },{"./chamavel":133}],140:[function(require,module,exports){
9597
9611
  "use strict";
9598
9612
  Object.defineProperty(exports, "__esModule", { value: true });
9599
9613
  exports.DeleguaModulo = void 0;
@@ -9619,7 +9633,7 @@ class DeleguaModulo {
9619
9633
  }
9620
9634
  exports.DeleguaModulo = DeleguaModulo;
9621
9635
 
9622
- },{}],140:[function(require,module,exports){
9636
+ },{}],141:[function(require,module,exports){
9623
9637
  "use strict";
9624
9638
  Object.defineProperty(exports, "__esModule", { value: true });
9625
9639
  exports.ObjetoDeleguaClasse = void 0;
@@ -9687,7 +9701,7 @@ class ObjetoDeleguaClasse {
9687
9701
  }
9688
9702
  exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
9689
9703
 
9690
- },{"../../excecoes":101}],141:[function(require,module,exports){
9704
+ },{"../../excecoes":102}],142:[function(require,module,exports){
9691
9705
  "use strict";
9692
9706
  Object.defineProperty(exports, "__esModule", { value: true });
9693
9707
  exports.ObjetoPadrao = void 0;
@@ -9721,7 +9735,7 @@ class ObjetoPadrao {
9721
9735
  }
9722
9736
  exports.ObjetoPadrao = ObjetoPadrao;
9723
9737
 
9724
- },{}],142:[function(require,module,exports){
9738
+ },{}],143:[function(require,module,exports){
9725
9739
  "use strict";
9726
9740
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
9727
9741
  if (k2 === undefined) k2 = k;
@@ -9741,7 +9755,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
9741
9755
  __exportStar(require("./interpretador"), exports);
9742
9756
  __exportStar(require("./interpretador-base"), exports);
9743
9757
 
9744
- },{"./interpretador":144,"./interpretador-base":143}],143:[function(require,module,exports){
9758
+ },{"./interpretador":145,"./interpretador-base":144}],144:[function(require,module,exports){
9745
9759
  (function (process){(function (){
9746
9760
  "use strict";
9747
9761
  var __importDefault = (this && this.__importDefault) || function (mod) {
@@ -11153,7 +11167,7 @@ class InterpretadorBase {
11153
11167
  exports.InterpretadorBase = InterpretadorBase;
11154
11168
 
11155
11169
  }).call(this)}).call(this,require('_process'))
11156
- },{"../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){
11157
11171
  "use strict";
11158
11172
  var __importDefault = (this && this.__importDefault) || function (mod) {
11159
11173
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -11328,8 +11342,8 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
11328
11342
  break;
11329
11343
  }
11330
11344
  // Último caso válido: objeto de uma classe JavaScript que possua a propriedade.
11331
- // Exemplos: classes de LinConEs, como `RetornoComando`.
11332
- if (objeto.hasOwnProperty(expressao.simbolo.lexema)) {
11345
+ // Exemplos: classes de LinConEs, como `RetornoComando, ou bibliotecas globais com objetos próprios`.
11346
+ if (objeto.hasOwnProperty(expressao.simbolo.lexema) || typeof objeto[expressao.simbolo.lexema] !== 'undefined') {
11333
11347
  return objeto[expressao.simbolo.lexema];
11334
11348
  }
11335
11349
  return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(null, `Método ou propriedade para objeto ou primitiva não encontrado: ${expressao.simbolo.lexema}.`, expressao.linha));
@@ -11447,7 +11461,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
11447
11461
  }
11448
11462
  exports.Interpretador = Interpretador;
11449
11463
 
11450
- },{"../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){
11464
+ },{"../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){
11451
11465
  "use strict";
11452
11466
  var __importDefault = (this && this.__importDefault) || function (mod) {
11453
11467
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -11711,7 +11725,7 @@ class PilhaEscoposExecucao {
11711
11725
  }
11712
11726
  exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
11713
11727
 
11714
- },{"../excecoes":101,"../inferenciador":107,"../lexador":157,"../tipos-de-dados/delegua":165,"./estruturas":137}],146:[function(require,module,exports){
11728
+ },{"../excecoes":102,"../inferenciador":108,"../lexador":158,"../tipos-de-dados/delegua":166,"./estruturas":138}],147:[function(require,module,exports){
11715
11729
  "use strict";
11716
11730
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
11717
11731
  if (k2 === undefined) k2 = k;
@@ -11734,7 +11748,7 @@ __exportStar(require("./lexador-guarani"), exports);
11734
11748
  __exportStar(require("./lexador-portugol-ipt"), exports);
11735
11749
  __exportStar(require("./lexador-tenda"), exports);
11736
11750
 
11737
- },{"./lexador-egua-classico":147,"./lexador-guarani":148,"./lexador-pitugues":149,"./lexador-portugol-ipt":150,"./lexador-tenda":151}],147:[function(require,module,exports){
11751
+ },{"./lexador-egua-classico":148,"./lexador-guarani":149,"./lexador-pitugues":150,"./lexador-portugol-ipt":151,"./lexador-tenda":152}],148:[function(require,module,exports){
11738
11752
  "use strict";
11739
11753
  var __importDefault = (this && this.__importDefault) || function (mod) {
11740
11754
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -12024,7 +12038,7 @@ class LexadorEguaClassico {
12024
12038
  }
12025
12039
  exports.LexadorEguaClassico = LexadorEguaClassico;
12026
12040
 
12027
- },{"../../tipos-de-simbolos/egua-classico":169,"../simbolo":163,"./palavras-reservadas/egua-classico":152}],148:[function(require,module,exports){
12041
+ },{"../../tipos-de-simbolos/egua-classico":170,"../simbolo":164,"./palavras-reservadas/egua-classico":153}],149:[function(require,module,exports){
12028
12042
  "use strict";
12029
12043
  var __importDefault = (this && this.__importDefault) || function (mod) {
12030
12044
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -12143,7 +12157,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
12143
12157
  }
12144
12158
  exports.LexadorGuarani = LexadorGuarani;
12145
12159
 
12146
- },{"../../tipos-de-simbolos/guarani":170,"../lexador-base":159,"./palavras-reservadas/guarani":153}],149:[function(require,module,exports){
12160
+ },{"../../tipos-de-simbolos/guarani":171,"../lexador-base":160,"./palavras-reservadas/guarani":154}],150:[function(require,module,exports){
12147
12161
  "use strict";
12148
12162
  var __importDefault = (this && this.__importDefault) || function (mod) {
12149
12163
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -12546,7 +12560,7 @@ class LexadorPitugues {
12546
12560
  }
12547
12561
  exports.LexadorPitugues = LexadorPitugues;
12548
12562
 
12549
- },{"../../tipos-de-simbolos/pitugues":172,"../simbolo":163,"./palavras-reservadas/pitugues":154,"browser-process-hrtime":347}],150:[function(require,module,exports){
12563
+ },{"../../tipos-de-simbolos/pitugues":173,"../simbolo":164,"./palavras-reservadas/pitugues":155,"browser-process-hrtime":348}],151:[function(require,module,exports){
12550
12564
  "use strict";
12551
12565
  var __importDefault = (this && this.__importDefault) || function (mod) {
12552
12566
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -12787,7 +12801,7 @@ class LexadorPortugolIpt {
12787
12801
  }
12788
12802
  exports.LexadorPortugolIpt = LexadorPortugolIpt;
12789
12803
 
12790
- },{"../../tipos-de-simbolos/portugol-ipt":173,"../simbolo":163,"./palavras-reservadas/portugol-ipt":155}],151:[function(require,module,exports){
12804
+ },{"../../tipos-de-simbolos/portugol-ipt":174,"../simbolo":164,"./palavras-reservadas/portugol-ipt":156}],152:[function(require,module,exports){
12791
12805
  "use strict";
12792
12806
  var __importDefault = (this && this.__importDefault) || function (mod) {
12793
12807
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -13031,23 +13045,11 @@ class LexadorTenda {
13031
13045
  break;
13032
13046
  case '-':
13033
13047
  this.avancar();
13034
- if (this.simboloAtual() === '=') {
13035
- this.adicionarSimbolo(tenda_2.default.MENOS_IGUAL);
13036
- this.avancar();
13037
- }
13038
- else {
13039
- this.adicionarSimbolo(tenda_2.default.SUBTRACAO);
13040
- }
13048
+ this.adicionarSimbolo(tenda_2.default.SUBTRACAO);
13041
13049
  break;
13042
13050
  case '+':
13043
13051
  this.avancar();
13044
- if (this.simboloAtual() === '=') {
13045
- this.adicionarSimbolo(tenda_2.default.MAIS_IGUAL);
13046
- this.avancar();
13047
- }
13048
- else {
13049
- this.adicionarSimbolo(tenda_2.default.ADICAO);
13050
- }
13052
+ this.adicionarSimbolo(tenda_2.default.ADICAO);
13051
13053
  break;
13052
13054
  case '/':
13053
13055
  this.avancar();
@@ -13176,6 +13178,7 @@ class LexadorTenda {
13176
13178
  }
13177
13179
  if (this.performance) {
13178
13180
  const deltaMapeamento = (0, browser_process_hrtime_1.default)(inicioMapeamento);
13181
+ // eslint-disable-next-line no-undef
13179
13182
  console.log(`[Lexador] Tempo para mapeamento: ${deltaMapeamento[0] * 1e9 + deltaMapeamento[1]}ns`);
13180
13183
  }
13181
13184
  return {
@@ -13187,7 +13190,7 @@ class LexadorTenda {
13187
13190
  }
13188
13191
  exports.LexadorTenda = LexadorTenda;
13189
13192
 
13190
- },{"../../tipos-de-simbolos/tenda":174,"../simbolo":163,"./palavras-reservadas/tenda":156,"browser-process-hrtime":347}],152:[function(require,module,exports){
13193
+ },{"../../tipos-de-simbolos/tenda":175,"../simbolo":164,"./palavras-reservadas/tenda":157,"browser-process-hrtime":348}],153:[function(require,module,exports){
13191
13194
  "use strict";
13192
13195
  var __importDefault = (this && this.__importDefault) || function (mod) {
13193
13196
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -13228,7 +13231,7 @@ exports.palavrasReservadas = {
13228
13231
  verdadeiro: egua_classico_1.default.VERDADEIRO,
13229
13232
  };
13230
13233
 
13231
- },{"../../../tipos-de-simbolos/egua-classico":169}],153:[function(require,module,exports){
13234
+ },{"../../../tipos-de-simbolos/egua-classico":170}],154:[function(require,module,exports){
13232
13235
  "use strict";
13233
13236
  var __importDefault = (this && this.__importDefault) || function (mod) {
13234
13237
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -13240,7 +13243,7 @@ exports.palavrasReservadas = {
13240
13243
  hai: guarani_1.default.HAI,
13241
13244
  };
13242
13245
 
13243
- },{"../../../tipos-de-simbolos/guarani":170}],154:[function(require,module,exports){
13246
+ },{"../../../tipos-de-simbolos/guarani":171}],155:[function(require,module,exports){
13244
13247
  "use strict";
13245
13248
  var __importDefault = (this && this.__importDefault) || function (mod) {
13246
13249
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -13303,7 +13306,7 @@ exports.palavrasReservadasMicroGramatica = {
13303
13306
  verdadeiro: pitugues_1.default.VERDADEIRO,
13304
13307
  };
13305
13308
 
13306
- },{"../../../tipos-de-simbolos/pitugues":172}],155:[function(require,module,exports){
13309
+ },{"../../../tipos-de-simbolos/pitugues":173}],156:[function(require,module,exports){
13307
13310
  "use strict";
13308
13311
  var __importDefault = (this && this.__importDefault) || function (mod) {
13309
13312
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -13325,7 +13328,7 @@ exports.palavrasReservadas = {
13325
13328
  senão: portugol_ipt_1.default.SENAO,
13326
13329
  };
13327
13330
 
13328
- },{"../../../tipos-de-simbolos/portugol-ipt":173}],156:[function(require,module,exports){
13331
+ },{"../../../tipos-de-simbolos/portugol-ipt":174}],157:[function(require,module,exports){
13329
13332
  "use strict";
13330
13333
  var __importDefault = (this && this.__importDefault) || function (mod) {
13331
13334
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -13337,7 +13340,6 @@ exports.palavrasReservadas = {
13337
13340
  até: tenda_1.default.ATÉ,
13338
13341
  cada: tenda_1.default.CADA,
13339
13342
  caso: tenda_1.default.CASO,
13340
- classe: tenda_1.default.CLASSE,
13341
13343
  como: tenda_1.default.COMO,
13342
13344
  construtor: tenda_1.default.CONSTRUTOR,
13343
13345
  continua: tenda_1.default.CONTINUA,
@@ -13345,19 +13347,17 @@ exports.palavrasReservadas = {
13345
13347
  é: tenda_1.default.É,
13346
13348
  em: tenda_1.default.EM,
13347
13349
  então: tenda_1.default.ENTÃO,
13350
+ entrada: tenda_1.default.ENTRADA,
13348
13351
  enquanto: tenda_1.default.ENQUANTO,
13349
13352
  escolha: tenda_1.default.ESCOLHA,
13350
13353
  exiba: tenda_1.default.EXIBA,
13351
- falhar: tenda_1.default.FALHAR,
13352
13354
  falso: tenda_1.default.FALSO,
13353
13355
  faça: tenda_1.default.FAÇA,
13354
- fazer: tenda_1.default.FAZER,
13355
13356
  fim: tenda_1.default.FIM,
13356
13357
  finalmente: tenda_1.default.FINALMENTE,
13357
- fixo: tenda_1.default.CONSTANTE,
13358
13358
  função: tenda_1.default.FUNÇÃO,
13359
- herda: tenda_1.default.HERDA,
13360
13359
  importar: tenda_1.default.IMPORTAR,
13360
+ infinito: tenda_1.default.INFINITO,
13361
13361
  isto: tenda_1.default.ISTO,
13362
13362
  leia: tenda_1.default.LEIA,
13363
13363
  não: tenda_1.default.NÃO,
@@ -13377,9 +13377,16 @@ exports.palavrasReservadas = {
13377
13377
  tente: tenda_1.default.TENTE,
13378
13378
  tipo: tenda_1.default.TIPO,
13379
13379
  verdadeiro: tenda_1.default.VERDADEIRO,
13380
+ // Bibliotecas (precisa ser em maiúsculo)
13381
+ Data: tenda_1.default.BIBLIOTECA_GLOBAL,
13382
+ Lista: tenda_1.default.BIBLIOTECA_GLOBAL,
13383
+ Matemática: tenda_1.default.BIBLIOTECA_GLOBAL,
13384
+ NaN: tenda_1.default.NAN,
13385
+ Saída: tenda_1.default.BIBLIOTECA_GLOBAL,
13386
+ Texto: tenda_1.default.BIBLIOTECA_GLOBAL
13380
13387
  };
13381
13388
 
13382
- },{"../../../tipos-de-simbolos/tenda":174}],157:[function(require,module,exports){
13389
+ },{"../../../tipos-de-simbolos/tenda":175}],158:[function(require,module,exports){
13383
13390
  "use strict";
13384
13391
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
13385
13392
  if (k2 === undefined) k2 = k;
@@ -13402,7 +13409,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
13402
13409
  __exportStar(require("./micro-lexador"), exports);
13403
13410
  __exportStar(require("./simbolo"), exports);
13404
13411
 
13405
- },{"./dialetos":146,"./lexador":160,"./lexador-base-linha-unica":158,"./micro-lexador":161,"./simbolo":163}],158:[function(require,module,exports){
13412
+ },{"./dialetos":147,"./lexador":161,"./lexador-base-linha-unica":159,"./micro-lexador":162,"./simbolo":164}],159:[function(require,module,exports){
13406
13413
  "use strict";
13407
13414
  Object.defineProperty(exports, "__esModule", { value: true });
13408
13415
  exports.LexadorBaseLinhaUnica = void 0;
@@ -13486,7 +13493,7 @@ class LexadorBaseLinhaUnica {
13486
13493
  }
13487
13494
  exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
13488
13495
 
13489
- },{"./simbolo":163}],159:[function(require,module,exports){
13496
+ },{"./simbolo":164}],160:[function(require,module,exports){
13490
13497
  "use strict";
13491
13498
  Object.defineProperty(exports, "__esModule", { value: true });
13492
13499
  exports.LexadorBase = void 0;
@@ -13600,7 +13607,7 @@ class LexadorBase {
13600
13607
  }
13601
13608
  exports.LexadorBase = LexadorBase;
13602
13609
 
13603
- },{"./simbolo":163}],160:[function(require,module,exports){
13610
+ },{"./simbolo":164}],161:[function(require,module,exports){
13604
13611
  "use strict";
13605
13612
  var __importDefault = (this && this.__importDefault) || function (mod) {
13606
13613
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14060,7 +14067,7 @@ class Lexador {
14060
14067
  }
14061
14068
  exports.Lexador = Lexador;
14062
14069
 
14063
- },{"../tipos-de-simbolos/delegua":168,"./palavras-reservadas":162,"./simbolo":163,"browser-process-hrtime":347}],161:[function(require,module,exports){
14070
+ },{"../tipos-de-simbolos/delegua":169,"./palavras-reservadas":163,"./simbolo":164,"browser-process-hrtime":348}],162:[function(require,module,exports){
14064
14071
  "use strict";
14065
14072
  var __importDefault = (this && this.__importDefault) || function (mod) {
14066
14073
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14275,7 +14282,7 @@ class MicroLexador {
14275
14282
  }
14276
14283
  exports.MicroLexador = MicroLexador;
14277
14284
 
14278
- },{"../tipos-de-simbolos/microgramaticas/delegua":171,"./palavras-reservadas":162,"./simbolo":163}],162:[function(require,module,exports){
14285
+ },{"../tipos-de-simbolos/microgramaticas/delegua":172,"./palavras-reservadas":163,"./simbolo":164}],163:[function(require,module,exports){
14279
14286
  "use strict";
14280
14287
  var __importDefault = (this && this.__importDefault) || function (mod) {
14281
14288
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -14338,7 +14345,7 @@ exports.palavrasReservadasMicroGramatica = {
14338
14345
  verdadeiro: delegua_1.default.VERDADEIRO,
14339
14346
  };
14340
14347
 
14341
- },{"../tipos-de-simbolos/delegua":168}],163:[function(require,module,exports){
14348
+ },{"../tipos-de-simbolos/delegua":169}],164:[function(require,module,exports){
14342
14349
  "use strict";
14343
14350
  Object.defineProperty(exports, "__esModule", { value: true });
14344
14351
  exports.Simbolo = void 0;
@@ -14356,7 +14363,7 @@ class Simbolo {
14356
14363
  }
14357
14364
  exports.Simbolo = Simbolo;
14358
14365
 
14359
- },{}],164:[function(require,module,exports){
14366
+ },{}],165:[function(require,module,exports){
14360
14367
  "use strict";
14361
14368
  Object.defineProperty(exports, "__esModule", { value: true });
14362
14369
  exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
@@ -14380,7 +14387,7 @@ class ContinuarQuebra extends Quebra {
14380
14387
  }
14381
14388
  exports.ContinuarQuebra = ContinuarQuebra;
14382
14389
 
14383
- },{}],165:[function(require,module,exports){
14390
+ },{}],166:[function(require,module,exports){
14384
14391
  "use strict";
14385
14392
  Object.defineProperty(exports, "__esModule", { value: true });
14386
14393
  exports.default = {
@@ -14410,7 +14417,7 @@ exports.default = {
14410
14417
  VETOR_TEXTO: 'texto[]',
14411
14418
  };
14412
14419
 
14413
- },{}],166:[function(require,module,exports){
14420
+ },{}],167:[function(require,module,exports){
14414
14421
  "use strict";
14415
14422
  Object.defineProperty(exports, "__esModule", { value: true });
14416
14423
  exports.default = {
@@ -14429,7 +14436,7 @@ exports.default = {
14429
14436
  TEXTO: 'string',
14430
14437
  };
14431
14438
 
14432
- },{}],167:[function(require,module,exports){
14439
+ },{}],168:[function(require,module,exports){
14433
14440
  "use strict";
14434
14441
  Object.defineProperty(exports, "__esModule", { value: true });
14435
14442
  exports.default = {
@@ -14455,7 +14462,7 @@ exports.default = {
14455
14462
  VIRGULA: 'VIRGULA',
14456
14463
  };
14457
14464
 
14458
- },{}],168:[function(require,module,exports){
14465
+ },{}],169:[function(require,module,exports){
14459
14466
  "use strict";
14460
14467
  Object.defineProperty(exports, "__esModule", { value: true });
14461
14468
  exports.default = {
@@ -14550,7 +14557,7 @@ exports.default = {
14550
14557
  VIRGULA: 'VIRGULA',
14551
14558
  };
14552
14559
 
14553
- },{}],169:[function(require,module,exports){
14560
+ },{}],170:[function(require,module,exports){
14554
14561
  "use strict";
14555
14562
  Object.defineProperty(exports, "__esModule", { value: true });
14556
14563
  exports.default = {
@@ -14628,7 +14635,7 @@ exports.default = {
14628
14635
  VIRGULA: 'VIRGULA',
14629
14636
  };
14630
14637
 
14631
- },{}],170:[function(require,module,exports){
14638
+ },{}],171:[function(require,module,exports){
14632
14639
  "use strict";
14633
14640
  Object.defineProperty(exports, "__esModule", { value: true });
14634
14641
  exports.default = {
@@ -14645,7 +14652,7 @@ exports.default = {
14645
14652
  VIRGULA: 'VIRGULA',
14646
14653
  };
14647
14654
 
14648
- },{}],171:[function(require,module,exports){
14655
+ },{}],172:[function(require,module,exports){
14649
14656
  "use strict";
14650
14657
  Object.defineProperty(exports, "__esModule", { value: true });
14651
14658
  exports.default = {
@@ -14694,7 +14701,7 @@ exports.default = {
14694
14701
  VIRGULA: 'VIRGULA',
14695
14702
  };
14696
14703
 
14697
- },{}],172:[function(require,module,exports){
14704
+ },{}],173:[function(require,module,exports){
14698
14705
  "use strict";
14699
14706
  Object.defineProperty(exports, "__esModule", { value: true });
14700
14707
  exports.default = {
@@ -14777,7 +14784,7 @@ exports.default = {
14777
14784
  VIRGULA: 'VIRGULA',
14778
14785
  };
14779
14786
 
14780
- },{}],173:[function(require,module,exports){
14787
+ },{}],174:[function(require,module,exports){
14781
14788
  "use strict";
14782
14789
  Object.defineProperty(exports, "__esModule", { value: true });
14783
14790
  exports.default = {
@@ -14816,14 +14823,14 @@ exports.default = {
14816
14823
  VIRGULA: 'VIRGULA',
14817
14824
  };
14818
14825
 
14819
- },{}],174:[function(require,module,exports){
14826
+ },{}],175:[function(require,module,exports){
14820
14827
  "use strict";
14821
14828
  Object.defineProperty(exports, "__esModule", { value: true });
14822
14829
  // Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
14823
14830
  exports.default = {
14824
14831
  ADICAO: 'ADICAO',
14825
- ARROBA: 'ARROBA',
14826
14832
  ATÉ: 'ATÉ',
14833
+ BIBLIOTECA_GLOBAL: 'BIBLIOTECA_GLOBAL',
14827
14834
  BIT_AND: 'BIT_AND',
14828
14835
  BIT_OR: 'BIT_OR',
14829
14836
  BIT_XOR: 'BIT_XOR',
@@ -14832,61 +14839,53 @@ exports.default = {
14832
14839
  CASO: 'CASO',
14833
14840
  CHAVE_DIREITA: 'CHAVE_DIREITA',
14834
14841
  CHAVE_ESQUERDA: 'CHAVE_ESQUERDA',
14835
- CLASSE: 'CLASSE',
14836
14842
  COLCHETE_DIREITO: 'COLCHETE_DIREITO',
14837
14843
  COLCHETE_ESQUERDO: 'COLCHETE_ESQUERDO',
14838
14844
  COMENTARIO: 'COMENTARIO',
14839
14845
  COMO: 'COMO',
14840
- CONSTANTE: 'CONSTANTE',
14841
14846
  CONSTRUTOR: 'CONSTRUTOR',
14842
14847
  CONTINUA: 'CONTINUA',
14843
14848
  DECREMENTAR: 'DECREMENTAR',
14844
14849
  DIFERENTE: 'DIFERENTE',
14845
14850
  DIVISAO: 'DIVISAO',
14846
- DIVISAO_IGUAL: 'DIVISAO_IGUAL',
14847
14851
  DIVISAO_INTEIRA: 'DIVISAO_INTEIRA',
14848
- DIVISAO_INTEIRA_IGUAL: 'DIVISAO_INTEIRA_IGUAL',
14849
14852
  DOIS_PONTOS: 'DOIS_PONTOS',
14850
14853
  E: 'E',
14851
14854
  É: 'É',
14852
14855
  EM: 'EM',
14853
- ENTÃO: 'ENTÃO',
14854
14856
  ENQUANTO: 'ENQUANTO',
14857
+ ENTÃO: 'ENTÃO',
14858
+ ENTRADA: 'ENTRADA',
14855
14859
  EOF: 'EOF',
14856
14860
  ESCOLHA: 'ESCOLHA',
14857
14861
  EXIBA: 'EXIBA',
14858
14862
  EXPONENCIACAO: 'EXPONENCIACAO',
14859
14863
  EXPRESSAO_REGULAR: 'EXPRESSAO_REGULAR',
14860
- FALHAR: 'FALHAR',
14861
14864
  FALSO: 'FALSO',
14862
14865
  FAÇA: 'FAÇA',
14863
- FAZER: 'FAZER',
14864
14866
  FIM: 'FIM',
14865
14867
  FINALMENTE: 'FINALMENTE',
14866
- FUNCAO: 'FUNCAO',
14867
14868
  FUNÇÃO: 'FUNÇÃO',
14868
- HERDA: 'HERDA',
14869
14869
  IDENTIFICADOR: 'IDENTIFICADOR',
14870
14870
  IGUAL: 'IGUAL',
14871
14871
  IGUAL_IGUAL: 'IGUAL_IGUAL',
14872
14872
  IMPORTAR: 'IMPORTAR',
14873
14873
  INCREMENTAR: 'INCREMENTAR',
14874
+ INFINITO: 'INFINITO',
14874
14875
  ISTO: 'ISTO',
14875
14876
  LEIA: 'LEIA',
14876
- LINHA_COMENTARIO: 'LINHA_COMENTARIO',
14877
+ LISTA: 'LISTA',
14877
14878
  MAIOR: 'MAIOR',
14878
14879
  MAIOR_IGUAL: 'MAIOR_IGUAL',
14879
14880
  MAIOR_MAIOR: 'MAIOR_MAIOR',
14880
- MAIS_IGUAL: 'MAIS_IGUAL',
14881
+ MATEMÁTICA: 'MATEMÁTICA',
14881
14882
  MENOR: 'MENOR',
14882
14883
  MENOR_IGUAL: 'MENOR_IGUAL',
14883
14884
  MENOR_MENOR: 'MENOR_MENOR',
14884
- MENOS_IGUAL: 'MENOS_IGUAL',
14885
14885
  MODULO: 'MODULO',
14886
- MODULO_IGUAL: 'MODULO_IGUAL',
14887
14886
  MULTIPLICACAO: 'MULTIPLICACAO',
14888
- MULTIPLICACAO_IGUAL: 'MULTIPLICACAO_IGUAL',
14889
14887
  NADA: 'NADA',
14888
+ NAN: 'NAN',
14890
14889
  NÃO: 'NÃO',
14891
14890
  NEGACAO: 'NEGACAO',
14892
14891
  NUMERO: 'NUMERO',
@@ -14919,7 +14918,7 @@ exports.default = {
14919
14918
  VIRGULA: 'VIRGULA',
14920
14919
  };
14921
14920
 
14922
- },{}],175:[function(require,module,exports){
14921
+ },{}],176:[function(require,module,exports){
14923
14922
  "use strict";
14924
14923
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
14925
14924
  if (k2 === undefined) k2 = k;
@@ -14945,7 +14944,7 @@ __exportStar(require("./tradutor-reverso-javascript"), exports);
14945
14944
  __exportStar(require("./tradutor-reverso-python"), exports);
14946
14945
  __exportStar(require("./tradutor-reverso-tenda"), exports);
14947
14946
 
14948
- },{"./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){
14947
+ },{"./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){
14949
14948
  "use strict";
14950
14949
  // Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
14951
14950
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -16185,7 +16184,7 @@ __decorate([
16185
16184
  Decorators_1.Override
16186
16185
  ], Python3Lexer.prototype, "nextToken", null);
16187
16186
 
16188
- },{"./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){
16187
+ },{"./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){
16189
16188
  "use strict";
16190
16189
  // Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
16191
16190
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -27432,7 +27431,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
27432
27431
  }
27433
27432
  exports.Yield_argContext = Yield_argContext;
27434
27433
 
27435
- },{"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){
27434
+ },{"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){
27436
27435
  "use strict";
27437
27436
  var __importDefault = (this && this.__importDefault) || function (mod) {
27438
27437
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -28066,7 +28065,7 @@ class TradutorAssemblyScript {
28066
28065
  }
28067
28066
  exports.TradutorAssemblyScript = TradutorAssemblyScript;
28068
28067
 
28069
- },{"../construtos":44,"../declaracoes":84,"../tipos-de-simbolos/delegua":168}],179:[function(require,module,exports){
28068
+ },{"../construtos":44,"../declaracoes":85,"../tipos-de-simbolos/delegua":169}],180:[function(require,module,exports){
28070
28069
  "use strict";
28071
28070
  var __importDefault = (this && this.__importDefault) || function (mod) {
28072
28071
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -28805,7 +28804,7 @@ class TradutorJavaScript {
28805
28804
  }
28806
28805
  exports.TradutorJavaScript = TradutorJavaScript;
28807
28806
 
28808
- },{"../construtos":44,"../declaracoes":84,"../tipos-de-simbolos/delegua":168}],180:[function(require,module,exports){
28807
+ },{"../construtos":44,"../declaracoes":85,"../tipos-de-simbolos/delegua":169}],181:[function(require,module,exports){
28809
28808
  "use strict";
28810
28809
  var __importDefault = (this && this.__importDefault) || function (mod) {
28811
28810
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -29256,7 +29255,7 @@ class TradutorMermaidJs {
29256
29255
  }
29257
29256
  exports.TradutorMermaidJs = TradutorMermaidJs;
29258
29257
 
29259
- },{"../tipos-de-simbolos/delegua":168}],181:[function(require,module,exports){
29258
+ },{"../tipos-de-simbolos/delegua":169}],182:[function(require,module,exports){
29260
29259
  "use strict";
29261
29260
  Object.defineProperty(exports, "__esModule", { value: true });
29262
29261
  exports.TradutorPortugolIpt = void 0;
@@ -29318,7 +29317,7 @@ class TradutorPortugolIpt {
29318
29317
  }
29319
29318
  exports.TradutorPortugolIpt = TradutorPortugolIpt;
29320
29319
 
29321
- },{"../avaliador-sintatico/dialetos":8,"../lexador/dialetos":146}],182:[function(require,module,exports){
29320
+ },{"../avaliador-sintatico/dialetos":8,"../lexador/dialetos":147}],183:[function(require,module,exports){
29322
29321
  "use strict";
29323
29322
  var __importDefault = (this && this.__importDefault) || function (mod) {
29324
29323
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -29958,7 +29957,7 @@ class TradutorPython {
29958
29957
  }
29959
29958
  exports.TradutorPython = TradutorPython;
29960
29959
 
29961
- },{"../construtos":44,"../declaracoes":84,"../tipos-de-simbolos/delegua":168}],183:[function(require,module,exports){
29960
+ },{"../construtos":44,"../declaracoes":85,"../tipos-de-simbolos/delegua":169}],184:[function(require,module,exports){
29962
29961
  "use strict";
29963
29962
  Object.defineProperty(exports, "__esModule", { value: true });
29964
29963
  exports.TradutorReversoJavaScript = void 0;
@@ -30353,7 +30352,7 @@ class TradutorReversoJavaScript {
30353
30352
  }
30354
30353
  exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
30355
30354
 
30356
- },{}],184:[function(require,module,exports){
30355
+ },{}],185:[function(require,module,exports){
30357
30356
  "use strict";
30358
30357
  Object.defineProperty(exports, "__esModule", { value: true });
30359
30358
  exports.TradutorReversoPython = void 0;
@@ -30426,7 +30425,7 @@ class TradutorReversoPython {
30426
30425
  }
30427
30426
  exports.TradutorReversoPython = TradutorReversoPython;
30428
30427
 
30429
- },{"./python/python3-lexer":176,"./python/python3-parser":177,"antlr4ts":301,"antlr4ts/tree/ParseTreeWalker":320}],185:[function(require,module,exports){
30428
+ },{"./python/python3-lexer":177,"./python/python3-parser":178,"antlr4ts":302,"antlr4ts/tree/ParseTreeWalker":321}],186:[function(require,module,exports){
30430
30429
  "use strict";
30431
30430
  var __importDefault = (this && this.__importDefault) || function (mod) {
30432
30431
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -31011,7 +31010,7 @@ class TradutorReversoTenda {
31011
31010
  }
31012
31011
  exports.TradutorReversoTenda = TradutorReversoTenda;
31013
31012
 
31014
- },{"../construtos":44,"../tipos-de-simbolos/tenda":174}],186:[function(require,module,exports){
31013
+ },{"../construtos":44,"../tipos-de-simbolos/tenda":175}],187:[function(require,module,exports){
31015
31014
  "use strict";
31016
31015
  /*!
31017
31016
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -31019,7 +31018,7 @@ exports.TradutorReversoTenda = TradutorReversoTenda;
31019
31018
  */
31020
31019
  Object.defineProperty(exports, "__esModule", { value: true });
31021
31020
 
31022
- },{}],187:[function(require,module,exports){
31021
+ },{}],188:[function(require,module,exports){
31023
31022
  "use strict";
31024
31023
  /*!
31025
31024
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -31027,7 +31026,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
31027
31026
  */
31028
31027
  Object.defineProperty(exports, "__esModule", { value: true });
31029
31028
 
31030
- },{}],188:[function(require,module,exports){
31029
+ },{}],189:[function(require,module,exports){
31031
31030
  "use strict";
31032
31031
  /*!
31033
31032
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -31189,7 +31188,7 @@ __decorate([
31189
31188
  ], ANTLRInputStream.prototype, "toString", null);
31190
31189
  exports.ANTLRInputStream = ANTLRInputStream;
31191
31190
 
31192
- },{"./Decorators":199,"./IntStream":205,"assert":342}],189:[function(require,module,exports){
31191
+ },{"./Decorators":200,"./IntStream":206,"assert":343}],190:[function(require,module,exports){
31193
31192
  "use strict";
31194
31193
  /*!
31195
31194
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -31272,7 +31271,7 @@ __decorate([
31272
31271
  ], BailErrorStrategy.prototype, "sync", null);
31273
31272
  exports.BailErrorStrategy = BailErrorStrategy;
31274
31273
 
31275
- },{"./Decorators":199,"./DefaultErrorStrategy":200,"./InputMismatchException":204,"./misc/ParseCancellationException":316}],190:[function(require,module,exports){
31274
+ },{"./Decorators":200,"./DefaultErrorStrategy":201,"./InputMismatchException":205,"./misc/ParseCancellationException":317}],191:[function(require,module,exports){
31276
31275
  "use strict";
31277
31276
  /*!
31278
31277
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -31762,7 +31761,7 @@ BufferedTokenStream = __decorate([
31762
31761
  ], BufferedTokenStream);
31763
31762
  exports.BufferedTokenStream = BufferedTokenStream;
31764
31763
 
31765
- },{"./CommonToken":195,"./Decorators":199,"./Lexer":207,"./Token":224,"./misc/Interval":311,"assert":342}],191:[function(require,module,exports){
31764
+ },{"./CommonToken":196,"./Decorators":200,"./Lexer":208,"./Token":225,"./misc/Interval":312,"assert":343}],192:[function(require,module,exports){
31766
31765
  "use strict";
31767
31766
  /*!
31768
31767
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -31770,7 +31769,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
31770
31769
  */
31771
31770
  Object.defineProperty(exports, "__esModule", { value: true });
31772
31771
 
31773
- },{}],192:[function(require,module,exports){
31772
+ },{}],193:[function(require,module,exports){
31774
31773
  "use strict";
31775
31774
  /*!
31776
31775
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -31904,7 +31903,7 @@ var CharStreams;
31904
31903
  // }
31905
31904
  })(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
31906
31905
 
31907
- },{"./CodePointBuffer":193,"./CodePointCharStream":194,"./IntStream":205}],193:[function(require,module,exports){
31906
+ },{"./CodePointBuffer":194,"./CodePointCharStream":195,"./IntStream":206}],194:[function(require,module,exports){
31908
31907
  "use strict";
31909
31908
  /*!
31910
31909
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32139,7 +32138,7 @@ exports.CodePointBuffer = CodePointBuffer;
32139
32138
  CodePointBuffer.Builder = Builder;
32140
32139
  })(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
32141
32140
 
32142
- },{"./misc/Character":307,"assert":342}],194:[function(require,module,exports){
32141
+ },{"./misc/Character":308,"assert":343}],195:[function(require,module,exports){
32143
32142
  "use strict";
32144
32143
  /*!
32145
32144
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32289,7 +32288,7 @@ __decorate([
32289
32288
  ], CodePointCharStream.prototype, "getText", null);
32290
32289
  exports.CodePointCharStream = CodePointCharStream;
32291
32290
 
32292
- },{"./Decorators":199,"./IntStream":205,"./misc/Interval":311,"assert":342}],195:[function(require,module,exports){
32291
+ },{"./Decorators":200,"./IntStream":206,"./misc/Interval":312,"assert":343}],196:[function(require,module,exports){
32293
32292
  "use strict";
32294
32293
  /*!
32295
32294
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32519,7 +32518,7 @@ CommonToken = __decorate([
32519
32518
  ], CommonToken);
32520
32519
  exports.CommonToken = CommonToken;
32521
32520
 
32522
- },{"./Decorators":199,"./Token":224,"./misc/Interval":311}],196:[function(require,module,exports){
32521
+ },{"./Decorators":200,"./Token":225,"./misc/Interval":312}],197:[function(require,module,exports){
32523
32522
  "use strict";
32524
32523
  /*!
32525
32524
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32583,7 +32582,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
32583
32582
  CommonTokenFactory.DEFAULT = new CommonTokenFactory();
32584
32583
  })(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
32585
32584
 
32586
- },{"./CommonToken":195,"./Decorators":199,"./misc/Interval":311}],197:[function(require,module,exports){
32585
+ },{"./CommonToken":196,"./Decorators":200,"./misc/Interval":312}],198:[function(require,module,exports){
32587
32586
  "use strict";
32588
32587
  /*!
32589
32588
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32710,7 +32709,7 @@ CommonTokenStream = __decorate([
32710
32709
  ], CommonTokenStream);
32711
32710
  exports.CommonTokenStream = CommonTokenStream;
32712
32711
 
32713
- },{"./BufferedTokenStream":190,"./Decorators":199,"./Token":224}],198:[function(require,module,exports){
32712
+ },{"./BufferedTokenStream":191,"./Decorators":200,"./Token":225}],199:[function(require,module,exports){
32714
32713
  "use strict";
32715
32714
  /*!
32716
32715
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32744,7 +32743,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
32744
32743
  */
32745
32744
  ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
32746
32745
 
32747
- },{}],199:[function(require,module,exports){
32746
+ },{}],200:[function(require,module,exports){
32748
32747
  "use strict";
32749
32748
  /*!
32750
32749
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -32771,7 +32770,7 @@ function SuppressWarnings(options) {
32771
32770
  }
32772
32771
  exports.SuppressWarnings = SuppressWarnings;
32773
32772
 
32774
- },{}],200:[function(require,module,exports){
32773
+ },{}],201:[function(require,module,exports){
32775
32774
  "use strict";
32776
32775
  /*!
32777
32776
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33585,7 +33584,7 @@ __decorate([
33585
33584
  ], DefaultErrorStrategy.prototype, "consumeUntil", null);
33586
33585
  exports.DefaultErrorStrategy = DefaultErrorStrategy;
33587
33586
 
33588
- },{"./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){
33587
+ },{"./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){
33589
33588
  "use strict";
33590
33589
  /*!
33591
33590
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33661,7 +33660,7 @@ var Dependents;
33661
33660
  Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
33662
33661
  })(Dependents = exports.Dependents || (exports.Dependents = {}));
33663
33662
 
33664
- },{}],202:[function(require,module,exports){
33663
+ },{}],203:[function(require,module,exports){
33665
33664
  "use strict";
33666
33665
  /*!
33667
33666
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33809,7 +33808,7 @@ __decorate([
33809
33808
  ], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
33810
33809
  exports.DiagnosticErrorListener = DiagnosticErrorListener;
33811
33810
 
33812
- },{"./Decorators":199,"./misc/BitSet":306,"./misc/Interval":311}],203:[function(require,module,exports){
33811
+ },{"./Decorators":200,"./misc/BitSet":307,"./misc/Interval":312}],204:[function(require,module,exports){
33813
33812
  "use strict";
33814
33813
  /*!
33815
33814
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33874,7 +33873,7 @@ FailedPredicateException = __decorate([
33874
33873
  ], FailedPredicateException);
33875
33874
  exports.FailedPredicateException = FailedPredicateException;
33876
33875
 
33877
- },{"./Decorators":199,"./RecognitionException":218,"./atn/PredicateTransition":278}],204:[function(require,module,exports){
33876
+ },{"./Decorators":200,"./RecognitionException":219,"./atn/PredicateTransition":279}],205:[function(require,module,exports){
33878
33877
  "use strict";
33879
33878
  /*!
33880
33879
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33914,7 +33913,7 @@ InputMismatchException = __decorate([
33914
33913
  ], InputMismatchException);
33915
33914
  exports.InputMismatchException = InputMismatchException;
33916
33915
 
33917
- },{"./Decorators":199,"./RecognitionException":218}],205:[function(require,module,exports){
33916
+ },{"./Decorators":200,"./RecognitionException":219}],206:[function(require,module,exports){
33918
33917
  "use strict";
33919
33918
  /*!
33920
33919
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33937,7 +33936,7 @@ var IntStream;
33937
33936
  IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
33938
33937
  })(IntStream = exports.IntStream || (exports.IntStream = {}));
33939
33938
 
33940
- },{}],206:[function(require,module,exports){
33939
+ },{}],207:[function(require,module,exports){
33941
33940
  "use strict";
33942
33941
  /*!
33943
33942
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -33984,7 +33983,7 @@ __decorate([
33984
33983
  ], InterpreterRuleContext.prototype, "ruleIndex", null);
33985
33984
  exports.InterpreterRuleContext = InterpreterRuleContext;
33986
33985
 
33987
- },{"./Decorators":199,"./ParserRuleContext":215}],207:[function(require,module,exports){
33986
+ },{"./Decorators":200,"./ParserRuleContext":216}],208:[function(require,module,exports){
33988
33987
  "use strict";
33989
33988
  /*!
33990
33989
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34320,7 +34319,7 @@ __decorate([
34320
34319
  ], Lexer.prototype, "charPositionInLine", null);
34321
34320
  exports.Lexer = Lexer;
34322
34321
 
34323
- },{"./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){
34322
+ },{"./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){
34324
34323
  "use strict";
34325
34324
  /*!
34326
34325
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34400,7 +34399,7 @@ LexerInterpreter = __decorate([
34400
34399
  ], LexerInterpreter);
34401
34400
  exports.LexerInterpreter = LexerInterpreter;
34402
34401
 
34403
- },{"./Decorators":199,"./Lexer":207,"./atn/LexerATNSimulator":257}],209:[function(require,module,exports){
34402
+ },{"./Decorators":200,"./Lexer":208,"./atn/LexerATNSimulator":258}],210:[function(require,module,exports){
34404
34403
  "use strict";
34405
34404
  /*!
34406
34405
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34457,7 +34456,7 @@ LexerNoViableAltException = __decorate([
34457
34456
  ], LexerNoViableAltException);
34458
34457
  exports.LexerNoViableAltException = LexerNoViableAltException;
34459
34458
 
34460
- },{"./Decorators":199,"./RecognitionException":218,"./misc/Interval":311,"./misc/Utils":318}],210:[function(require,module,exports){
34459
+ },{"./Decorators":200,"./RecognitionException":219,"./misc/Interval":312,"./misc/Utils":319}],211:[function(require,module,exports){
34461
34460
  "use strict";
34462
34461
  /*!
34463
34462
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34667,7 +34666,7 @@ ListTokenSource = __decorate([
34667
34666
  ], ListTokenSource);
34668
34667
  exports.ListTokenSource = ListTokenSource;
34669
34668
 
34670
- },{"./CommonTokenFactory":196,"./Decorators":199,"./Token":224}],211:[function(require,module,exports){
34669
+ },{"./CommonTokenFactory":197,"./Decorators":200,"./Token":225}],212:[function(require,module,exports){
34671
34670
  "use strict";
34672
34671
  /*!
34673
34672
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -34722,7 +34721,7 @@ __decorate([
34722
34721
  ], NoViableAltException.prototype, "_startToken", void 0);
34723
34722
  exports.NoViableAltException = NoViableAltException;
34724
34723
 
34725
- },{"./Decorators":199,"./Parser":212,"./RecognitionException":218}],212:[function(require,module,exports){
34724
+ },{"./Decorators":200,"./Parser":213,"./RecognitionException":219}],213:[function(require,module,exports){
34726
34725
  (function (process){(function (){
34727
34726
  "use strict";
34728
34727
  /*!
@@ -35568,7 +35567,7 @@ __decorate([
35568
35567
  exports.Parser = Parser;
35569
35568
 
35570
35569
  }).call(this)}).call(this,require('_process'))
35571
- },{"./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){
35570
+ },{"./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){
35572
35571
  "use strict";
35573
35572
  /*!
35574
35573
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35576,7 +35575,7 @@ exports.Parser = Parser;
35576
35575
  */
35577
35576
  Object.defineProperty(exports, "__esModule", { value: true });
35578
35577
 
35579
- },{}],214:[function(require,module,exports){
35578
+ },{}],215:[function(require,module,exports){
35580
35579
  "use strict";
35581
35580
  /*!
35582
35581
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -35984,7 +35983,7 @@ ParserInterpreter = __decorate([
35984
35983
  ], ParserInterpreter);
35985
35984
  exports.ParserInterpreter = ParserInterpreter;
35986
35985
 
35987
- },{"./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){
35986
+ },{"./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){
35988
35987
  "use strict";
35989
35988
  /*!
35990
35989
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36285,7 +36284,7 @@ __decorate([
36285
36284
  ], ParserRuleContext.prototype, "sourceInterval", null);
36286
36285
  exports.ParserRuleContext = ParserRuleContext;
36287
36286
 
36288
- },{"./Decorators":199,"./RuleContext":220,"./misc/Interval":311,"./tree/ErrorNode":319,"./tree/TerminalNode":322}],216:[function(require,module,exports){
36287
+ },{"./Decorators":200,"./RuleContext":221,"./misc/Interval":312,"./tree/ErrorNode":320,"./tree/TerminalNode":323}],217:[function(require,module,exports){
36289
36288
  "use strict";
36290
36289
  /*!
36291
36290
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36335,7 +36334,7 @@ __decorate([
36335
36334
  ], ProxyErrorListener.prototype, "syntaxError", null);
36336
36335
  exports.ProxyErrorListener = ProxyErrorListener;
36337
36336
 
36338
- },{"./Decorators":199}],217:[function(require,module,exports){
36337
+ },{"./Decorators":200}],218:[function(require,module,exports){
36339
36338
  "use strict";
36340
36339
  /*!
36341
36340
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36394,7 +36393,7 @@ __decorate([
36394
36393
  ], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
36395
36394
  exports.ProxyParserErrorListener = ProxyParserErrorListener;
36396
36395
 
36397
- },{"./Decorators":199,"./ProxyErrorListener":216}],218:[function(require,module,exports){
36396
+ },{"./Decorators":200,"./ProxyErrorListener":217}],219:[function(require,module,exports){
36398
36397
  "use strict";
36399
36398
  /*!
36400
36399
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36499,7 +36498,7 @@ class RecognitionException extends Error {
36499
36498
  }
36500
36499
  exports.RecognitionException = RecognitionException;
36501
36500
 
36502
- },{}],219:[function(require,module,exports){
36501
+ },{}],220:[function(require,module,exports){
36503
36502
  "use strict";
36504
36503
  /*!
36505
36504
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36718,7 +36717,7 @@ __decorate([
36718
36717
  ], Recognizer.prototype, "getErrorListeners", null);
36719
36718
  exports.Recognizer = Recognizer;
36720
36719
 
36721
- },{"./ConsoleErrorListener":198,"./Decorators":199,"./ProxyErrorListener":216,"./Token":224,"./misc/Utils":318}],220:[function(require,module,exports){
36720
+ },{"./ConsoleErrorListener":199,"./Decorators":200,"./ProxyErrorListener":217,"./Token":225,"./misc/Utils":319}],221:[function(require,module,exports){
36722
36721
  "use strict";
36723
36722
  /*!
36724
36723
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36935,7 +36934,7 @@ __decorate([
36935
36934
  ], RuleContext.prototype, "toStringTree", null);
36936
36935
  exports.RuleContext = RuleContext;
36937
36936
 
36938
- },{"./Decorators":199,"./ParserRuleContext":215,"./Recognizer":219,"./atn/ATN":232,"./misc/Interval":311,"./tree/RuleNode":321,"./tree/Trees":323}],221:[function(require,module,exports){
36937
+ },{"./Decorators":200,"./ParserRuleContext":216,"./Recognizer":220,"./atn/ATN":233,"./misc/Interval":312,"./tree/RuleNode":322,"./tree/Trees":324}],222:[function(require,module,exports){
36939
36938
  "use strict";
36940
36939
  /*!
36941
36940
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -36986,7 +36985,7 @@ __decorate([
36986
36985
  ], RuleContextWithAltNum.prototype, "altNumber", null);
36987
36986
  exports.RuleContextWithAltNum = RuleContextWithAltNum;
36988
36987
 
36989
- },{"./Decorators":199,"./ParserRuleContext":215,"./atn/ATN":232}],222:[function(require,module,exports){
36988
+ },{"./Decorators":200,"./ParserRuleContext":216,"./atn/ATN":233}],223:[function(require,module,exports){
36990
36989
  "use strict";
36991
36990
  /*!
36992
36991
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37009,7 +37008,7 @@ function RuleDependency(dependency) {
37009
37008
  }
37010
37009
  exports.RuleDependency = RuleDependency;
37011
37010
 
37012
- },{}],223:[function(require,module,exports){
37011
+ },{}],224:[function(require,module,exports){
37013
37012
  "use strict";
37014
37013
  /*!
37015
37014
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37028,7 +37027,7 @@ function RuleVersion(version) {
37028
37027
  }
37029
37028
  exports.RuleVersion = RuleVersion;
37030
37029
 
37031
- },{}],224:[function(require,module,exports){
37030
+ },{}],225:[function(require,module,exports){
37032
37031
  "use strict";
37033
37032
  /*!
37034
37033
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37068,7 +37067,7 @@ var Token;
37068
37067
  Token.MIN_USER_CHANNEL_VALUE = 2;
37069
37068
  })(Token = exports.Token || (exports.Token = {}));
37070
37069
 
37071
- },{"./IntStream":205}],225:[function(require,module,exports){
37070
+ },{"./IntStream":206}],226:[function(require,module,exports){
37072
37071
  "use strict";
37073
37072
  /*!
37074
37073
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37076,7 +37075,7 @@ var Token;
37076
37075
  */
37077
37076
  Object.defineProperty(exports, "__esModule", { value: true });
37078
37077
 
37079
- },{}],226:[function(require,module,exports){
37078
+ },{}],227:[function(require,module,exports){
37080
37079
  "use strict";
37081
37080
  /*!
37082
37081
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37084,7 +37083,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
37084
37083
  */
37085
37084
  Object.defineProperty(exports, "__esModule", { value: true });
37086
37085
 
37087
- },{}],227:[function(require,module,exports){
37086
+ },{}],228:[function(require,module,exports){
37088
37087
  "use strict";
37089
37088
  /*!
37090
37089
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37092,7 +37091,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
37092
37091
  */
37093
37092
  Object.defineProperty(exports, "__esModule", { value: true });
37094
37093
 
37095
- },{}],228:[function(require,module,exports){
37094
+ },{}],229:[function(require,module,exports){
37096
37095
  "use strict";
37097
37096
  /*!
37098
37097
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37600,7 +37599,7 @@ __decorate([
37600
37599
  Decorators_1.Override
37601
37600
  ], ReplaceOp.prototype, "toString", null);
37602
37601
 
37603
- },{"./Decorators":199,"./Token":224,"./misc/Interval":311}],229:[function(require,module,exports){
37602
+ },{"./Decorators":200,"./Token":225,"./misc/Interval":312}],230:[function(require,module,exports){
37604
37603
  "use strict";
37605
37604
  /*!
37606
37605
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37608,7 +37607,7 @@ __decorate([
37608
37607
  */
37609
37608
  Object.defineProperty(exports, "__esModule", { value: true });
37610
37609
 
37611
- },{}],230:[function(require,module,exports){
37610
+ },{}],231:[function(require,module,exports){
37612
37611
  "use strict";
37613
37612
  /*!
37614
37613
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37728,7 +37727,7 @@ __decorate([
37728
37727
  ], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
37729
37728
  exports.VocabularyImpl = VocabularyImpl;
37730
37729
 
37731
- },{"./Decorators":199,"./Token":224}],231:[function(require,module,exports){
37730
+ },{"./Decorators":200,"./Token":225}],232:[function(require,module,exports){
37732
37731
  "use strict";
37733
37732
  /*!
37734
37733
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37736,7 +37735,7 @@ exports.VocabularyImpl = VocabularyImpl;
37736
37735
  */
37737
37736
  Object.defineProperty(exports, "__esModule", { value: true });
37738
37737
 
37739
- },{}],232:[function(require,module,exports){
37738
+ },{}],233:[function(require,module,exports){
37740
37739
  "use strict";
37741
37740
  /*!
37742
37741
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -37958,7 +37957,7 @@ exports.ATN = ATN;
37958
37957
  })(ATN = exports.ATN || (exports.ATN = {}));
37959
37958
  exports.ATN = ATN;
37960
37959
 
37961
- },{"../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){
37960
+ },{"../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){
37962
37961
  "use strict";
37963
37962
  /*!
37964
37963
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38483,7 +38482,7 @@ ActionSemanticContextATNConfig = __decorate([
38483
38482
  __param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
38484
38483
  ], ActionSemanticContextATNConfig);
38485
38484
 
38486
- },{"../Decorators":199,"../misc/Array2DHashMap":302,"../misc/MurmurHash":314,"../misc/ObjectEqualityComparator":315,"./DecisionState":252,"./PredictionContext":279,"./SemanticContext":287,"assert":342}],234:[function(require,module,exports){
38485
+ },{"../Decorators":200,"../misc/Array2DHashMap":303,"../misc/MurmurHash":315,"../misc/ObjectEqualityComparator":316,"./DecisionState":253,"./PredictionContext":280,"./SemanticContext":288,"assert":343}],235:[function(require,module,exports){
38487
38486
  "use strict";
38488
38487
  /*!
38489
38488
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -38930,7 +38929,7 @@ __decorate([
38930
38929
  ], ATNConfigSet.prototype, "hashCode", null);
38931
38930
  exports.ATNConfigSet = ATNConfigSet;
38932
38931
 
38933
- },{"../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){
38932
+ },{"../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){
38934
38933
  "use strict";
38935
38934
  /*!
38936
38935
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -39009,7 +39008,7 @@ __decorate([
39009
39008
  ], ATNDeserializationOptions, "defaultOptions", null);
39010
39009
  exports.ATNDeserializationOptions = ATNDeserializationOptions;
39011
39010
 
39012
- },{"../Decorators":199}],236:[function(require,module,exports){
39011
+ },{"../Decorators":200}],237:[function(require,module,exports){
39013
39012
  "use strict";
39014
39013
  /*!
39015
39014
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40096,7 +40095,7 @@ __decorate([
40096
40095
  ], ATNDeserializer.prototype, "edgeFactory", null);
40097
40096
  exports.ATNDeserializer = ATNDeserializer;
40098
40097
 
40099
- },{"../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){
40098
+ },{"../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){
40100
40099
  "use strict";
40101
40100
  /*!
40102
40101
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40160,7 +40159,7 @@ exports.ATNSimulator = ATNSimulator;
40160
40159
  })(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
40161
40160
  exports.ATNSimulator = ATNSimulator;
40162
40161
 
40163
- },{"../Decorators":199,"../dfa/DFAState":299,"./ATNConfigSet":234,"./PredictionContext":279}],238:[function(require,module,exports){
40162
+ },{"../Decorators":200,"../dfa/DFAState":300,"./ATNConfigSet":235,"./PredictionContext":280}],239:[function(require,module,exports){
40164
40163
  "use strict";
40165
40164
  /*!
40166
40165
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40347,7 +40346,7 @@ exports.ATNState = ATNState;
40347
40346
  ATNState.INVALID_STATE_NUMBER = -1;
40348
40347
  })(ATNState = exports.ATNState || (exports.ATNState = {}));
40349
40348
 
40350
- },{"../Decorators":199}],239:[function(require,module,exports){
40349
+ },{"../Decorators":200}],240:[function(require,module,exports){
40351
40350
  "use strict";
40352
40351
  /*!
40353
40352
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40373,7 +40372,7 @@ var ATNStateType;
40373
40372
  ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
40374
40373
  })(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
40375
40374
 
40376
- },{}],240:[function(require,module,exports){
40375
+ },{}],241:[function(require,module,exports){
40377
40376
  "use strict";
40378
40377
  /*!
40379
40378
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40393,7 +40392,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
40393
40392
  }
40394
40393
  exports.AbstractPredicateTransition = AbstractPredicateTransition;
40395
40394
 
40396
- },{"./Transition":294}],241:[function(require,module,exports){
40395
+ },{"./Transition":295}],242:[function(require,module,exports){
40397
40396
  "use strict";
40398
40397
  /*!
40399
40398
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40449,7 +40448,7 @@ ActionTransition = __decorate([
40449
40448
  ], ActionTransition);
40450
40449
  exports.ActionTransition = ActionTransition;
40451
40450
 
40452
- },{"../Decorators":199,"./Transition":294}],242:[function(require,module,exports){
40451
+ },{"../Decorators":200,"./Transition":295}],243:[function(require,module,exports){
40453
40452
  "use strict";
40454
40453
  /*!
40455
40454
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40536,7 +40535,7 @@ AmbiguityInfo = __decorate([
40536
40535
  ], AmbiguityInfo);
40537
40536
  exports.AmbiguityInfo = AmbiguityInfo;
40538
40537
 
40539
- },{"../Decorators":199,"./DecisionEventInfo":250}],243:[function(require,module,exports){
40538
+ },{"../Decorators":200,"./DecisionEventInfo":251}],244:[function(require,module,exports){
40540
40539
  "use strict";
40541
40540
  /*!
40542
40541
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40594,7 +40593,7 @@ AtomTransition = __decorate([
40594
40593
  ], AtomTransition);
40595
40594
  exports.AtomTransition = AtomTransition;
40596
40595
 
40597
- },{"../Decorators":199,"../misc/IntervalSet":312,"./Transition":294}],244:[function(require,module,exports){
40596
+ },{"../Decorators":200,"../misc/IntervalSet":313,"./Transition":295}],245:[function(require,module,exports){
40598
40597
  "use strict";
40599
40598
  /*!
40600
40599
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40626,7 +40625,7 @@ __decorate([
40626
40625
  ], BasicBlockStartState.prototype, "stateType", null);
40627
40626
  exports.BasicBlockStartState = BasicBlockStartState;
40628
40627
 
40629
- },{"../Decorators":199,"./ATNStateType":239,"./BlockStartState":247}],245:[function(require,module,exports){
40628
+ },{"../Decorators":200,"./ATNStateType":240,"./BlockStartState":248}],246:[function(require,module,exports){
40630
40629
  "use strict";
40631
40630
  /*!
40632
40631
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40658,7 +40657,7 @@ __decorate([
40658
40657
  ], BasicState.prototype, "stateType", null);
40659
40658
  exports.BasicState = BasicState;
40660
40659
 
40661
- },{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],246:[function(require,module,exports){
40660
+ },{"../Decorators":200,"./ATNState":239,"./ATNStateType":240}],247:[function(require,module,exports){
40662
40661
  "use strict";
40663
40662
  /*!
40664
40663
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40687,7 +40686,7 @@ __decorate([
40687
40686
  ], BlockEndState.prototype, "stateType", null);
40688
40687
  exports.BlockEndState = BlockEndState;
40689
40688
 
40690
- },{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],247:[function(require,module,exports){
40689
+ },{"../Decorators":200,"./ATNState":239,"./ATNStateType":240}],248:[function(require,module,exports){
40691
40690
  "use strict";
40692
40691
  /*!
40693
40692
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40701,7 +40700,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
40701
40700
  }
40702
40701
  exports.BlockStartState = BlockStartState;
40703
40702
 
40704
- },{"./DecisionState":252}],248:[function(require,module,exports){
40703
+ },{"./DecisionState":253}],249:[function(require,module,exports){
40705
40704
  "use strict";
40706
40705
  /*!
40707
40706
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40771,7 +40770,7 @@ __decorate([
40771
40770
  ], ConflictInfo.prototype, "hashCode", null);
40772
40771
  exports.ConflictInfo = ConflictInfo;
40773
40772
 
40774
- },{"../Decorators":199,"../misc/Utils":318}],249:[function(require,module,exports){
40773
+ },{"../Decorators":200,"../misc/Utils":319}],250:[function(require,module,exports){
40775
40774
  "use strict";
40776
40775
  /*!
40777
40776
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40831,7 +40830,7 @@ ContextSensitivityInfo = __decorate([
40831
40830
  ], ContextSensitivityInfo);
40832
40831
  exports.ContextSensitivityInfo = ContextSensitivityInfo;
40833
40832
 
40834
- },{"../Decorators":199,"./DecisionEventInfo":250}],250:[function(require,module,exports){
40833
+ },{"../Decorators":200,"./DecisionEventInfo":251}],251:[function(require,module,exports){
40835
40834
  "use strict";
40836
40835
  /*!
40837
40836
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -40883,7 +40882,7 @@ DecisionEventInfo = __decorate([
40883
40882
  ], DecisionEventInfo);
40884
40883
  exports.DecisionEventInfo = DecisionEventInfo;
40885
40884
 
40886
- },{"../Decorators":199}],251:[function(require,module,exports){
40885
+ },{"../Decorators":200}],252:[function(require,module,exports){
40887
40886
  "use strict";
40888
40887
  /*!
40889
40888
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41096,7 +41095,7 @@ __decorate([
41096
41095
  ], DecisionInfo.prototype, "toString", null);
41097
41096
  exports.DecisionInfo = DecisionInfo;
41098
41097
 
41099
- },{"../Decorators":199}],252:[function(require,module,exports){
41098
+ },{"../Decorators":200}],253:[function(require,module,exports){
41100
41099
  "use strict";
41101
41100
  /*!
41102
41101
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41116,7 +41115,7 @@ class DecisionState extends ATNState_1.ATNState {
41116
41115
  }
41117
41116
  exports.DecisionState = DecisionState;
41118
41117
 
41119
- },{"./ATNState":238}],253:[function(require,module,exports){
41118
+ },{"./ATNState":239}],254:[function(require,module,exports){
41120
41119
  "use strict";
41121
41120
  /*!
41122
41121
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41182,7 +41181,7 @@ EpsilonTransition = __decorate([
41182
41181
  ], EpsilonTransition);
41183
41182
  exports.EpsilonTransition = EpsilonTransition;
41184
41183
 
41185
- },{"../Decorators":199,"./Transition":294}],254:[function(require,module,exports){
41184
+ },{"../Decorators":200,"./Transition":295}],255:[function(require,module,exports){
41186
41185
  "use strict";
41187
41186
  /*!
41188
41187
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41235,7 +41234,7 @@ ErrorInfo = __decorate([
41235
41234
  ], ErrorInfo);
41236
41235
  exports.ErrorInfo = ErrorInfo;
41237
41236
 
41238
- },{"../Decorators":199,"./DecisionEventInfo":250}],255:[function(require,module,exports){
41237
+ },{"../Decorators":200,"./DecisionEventInfo":251}],256:[function(require,module,exports){
41239
41238
  "use strict";
41240
41239
  /*!
41241
41240
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41266,7 +41265,7 @@ __decorate([
41266
41265
  ], InvalidState.prototype, "stateType", null);
41267
41266
  exports.InvalidState = InvalidState;
41268
41267
 
41269
- },{"../Decorators":199,"./ATNStateType":239,"./BasicState":245}],256:[function(require,module,exports){
41268
+ },{"../Decorators":200,"./ATNStateType":240,"./BasicState":246}],257:[function(require,module,exports){
41270
41269
  "use strict";
41271
41270
  /*!
41272
41271
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -41488,7 +41487,7 @@ LL1Analyzer = __decorate([
41488
41487
  ], LL1Analyzer);
41489
41488
  exports.LL1Analyzer = LL1Analyzer;
41490
41489
 
41491
- },{"../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){
41490
+ },{"../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){
41492
41491
  "use strict";
41493
41492
  /*!
41494
41493
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42205,7 +42204,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
42205
42204
  })(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
42206
42205
  exports.LexerATNSimulator = LexerATNSimulator;
42207
42206
 
42208
- },{"../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){
42207
+ },{"../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){
42209
42208
  "use strict";
42210
42209
  /*!
42211
42210
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42406,7 +42405,7 @@ LexerActionExecutor = __decorate([
42406
42405
  ], LexerActionExecutor);
42407
42406
  exports.LexerActionExecutor = LexerActionExecutor;
42408
42407
 
42409
- },{"../Decorators":199,"../misc/ArrayEqualityComparator":304,"../misc/MurmurHash":314,"./LexerIndexedCustomAction":261}],259:[function(require,module,exports){
42408
+ },{"../Decorators":200,"../misc/ArrayEqualityComparator":305,"../misc/MurmurHash":315,"./LexerIndexedCustomAction":262}],260:[function(require,module,exports){
42410
42409
  "use strict";
42411
42410
  /*!
42412
42411
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42511,7 +42510,7 @@ __decorate([
42511
42510
  ], LexerChannelAction.prototype, "toString", null);
42512
42511
  exports.LexerChannelAction = LexerChannelAction;
42513
42512
 
42514
- },{"../Decorators":199,"../misc/MurmurHash":314}],260:[function(require,module,exports){
42513
+ },{"../Decorators":200,"../misc/MurmurHash":315}],261:[function(require,module,exports){
42515
42514
  "use strict";
42516
42515
  /*!
42517
42516
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42640,7 +42639,7 @@ __decorate([
42640
42639
  ], LexerCustomAction.prototype, "equals", null);
42641
42640
  exports.LexerCustomAction = LexerCustomAction;
42642
42641
 
42643
- },{"../Decorators":199,"../misc/MurmurHash":314}],261:[function(require,module,exports){
42642
+ },{"../Decorators":200,"../misc/MurmurHash":315}],262:[function(require,module,exports){
42644
42643
  "use strict";
42645
42644
  /*!
42646
42645
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42775,7 +42774,7 @@ LexerIndexedCustomAction = __decorate([
42775
42774
  ], LexerIndexedCustomAction);
42776
42775
  exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
42777
42776
 
42778
- },{"../Decorators":199,"../misc/MurmurHash":314}],262:[function(require,module,exports){
42777
+ },{"../Decorators":200,"../misc/MurmurHash":315}],263:[function(require,module,exports){
42779
42778
  "use strict";
42780
42779
  /*!
42781
42780
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42880,7 +42879,7 @@ __decorate([
42880
42879
  ], LexerModeAction.prototype, "toString", null);
42881
42880
  exports.LexerModeAction = LexerModeAction;
42882
42881
 
42883
- },{"../Decorators":199,"../misc/MurmurHash":314}],263:[function(require,module,exports){
42882
+ },{"../Decorators":200,"../misc/MurmurHash":315}],264:[function(require,module,exports){
42884
42883
  "use strict";
42885
42884
  /*!
42886
42885
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -42976,7 +42975,7 @@ exports.LexerMoreAction = LexerMoreAction;
42976
42975
  LexerMoreAction.INSTANCE = new LexerMoreAction();
42977
42976
  })(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
42978
42977
 
42979
- },{"../Decorators":199,"../misc/MurmurHash":314}],264:[function(require,module,exports){
42978
+ },{"../Decorators":200,"../misc/MurmurHash":315}],265:[function(require,module,exports){
42980
42979
  "use strict";
42981
42980
  /*!
42982
42981
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43072,7 +43071,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
43072
43071
  LexerPopModeAction.INSTANCE = new LexerPopModeAction();
43073
43072
  })(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
43074
43073
 
43075
- },{"../Decorators":199,"../misc/MurmurHash":314}],265:[function(require,module,exports){
43074
+ },{"../Decorators":200,"../misc/MurmurHash":315}],266:[function(require,module,exports){
43076
43075
  "use strict";
43077
43076
  /*!
43078
43077
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43177,7 +43176,7 @@ __decorate([
43177
43176
  ], LexerPushModeAction.prototype, "toString", null);
43178
43177
  exports.LexerPushModeAction = LexerPushModeAction;
43179
43178
 
43180
- },{"../Decorators":199,"../misc/MurmurHash":314}],266:[function(require,module,exports){
43179
+ },{"../Decorators":200,"../misc/MurmurHash":315}],267:[function(require,module,exports){
43181
43180
  "use strict";
43182
43181
  /*!
43183
43182
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43273,7 +43272,7 @@ exports.LexerSkipAction = LexerSkipAction;
43273
43272
  LexerSkipAction.INSTANCE = new LexerSkipAction();
43274
43273
  })(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
43275
43274
 
43276
- },{"../Decorators":199,"../misc/MurmurHash":314}],267:[function(require,module,exports){
43275
+ },{"../Decorators":200,"../misc/MurmurHash":315}],268:[function(require,module,exports){
43277
43276
  "use strict";
43278
43277
  /*!
43279
43278
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43377,7 +43376,7 @@ __decorate([
43377
43376
  ], LexerTypeAction.prototype, "toString", null);
43378
43377
  exports.LexerTypeAction = LexerTypeAction;
43379
43378
 
43380
- },{"../Decorators":199,"../misc/MurmurHash":314}],268:[function(require,module,exports){
43379
+ },{"../Decorators":200,"../misc/MurmurHash":315}],269:[function(require,module,exports){
43381
43380
  "use strict";
43382
43381
  /*!
43383
43382
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43429,7 +43428,7 @@ LookaheadEventInfo = __decorate([
43429
43428
  ], LookaheadEventInfo);
43430
43429
  exports.LookaheadEventInfo = LookaheadEventInfo;
43431
43430
 
43432
- },{"../Decorators":199,"./DecisionEventInfo":250}],269:[function(require,module,exports){
43431
+ },{"../Decorators":200,"./DecisionEventInfo":251}],270:[function(require,module,exports){
43433
43432
  "use strict";
43434
43433
  /*!
43435
43434
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43458,7 +43457,7 @@ __decorate([
43458
43457
  ], LoopEndState.prototype, "stateType", null);
43459
43458
  exports.LoopEndState = LoopEndState;
43460
43459
 
43461
- },{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],270:[function(require,module,exports){
43460
+ },{"../Decorators":200,"./ATNState":239,"./ATNStateType":240}],271:[function(require,module,exports){
43462
43461
  "use strict";
43463
43462
  /*!
43464
43463
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43507,7 +43506,7 @@ NotSetTransition = __decorate([
43507
43506
  ], NotSetTransition);
43508
43507
  exports.NotSetTransition = NotSetTransition;
43509
43508
 
43510
- },{"../Decorators":199,"./SetTransition":288}],271:[function(require,module,exports){
43509
+ },{"../Decorators":200,"./SetTransition":289}],272:[function(require,module,exports){
43511
43510
  "use strict";
43512
43511
  /*!
43513
43512
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43562,7 +43561,7 @@ __decorate([
43562
43561
  ], OrderedATNConfigSet.prototype, "canMerge", null);
43563
43562
  exports.OrderedATNConfigSet = OrderedATNConfigSet;
43564
43563
 
43565
- },{"../Decorators":199,"./ATNConfigSet":234}],272:[function(require,module,exports){
43564
+ },{"../Decorators":200,"./ATNConfigSet":235}],273:[function(require,module,exports){
43566
43565
  "use strict";
43567
43566
  /*!
43568
43567
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -43724,7 +43723,7 @@ ParseInfo = __decorate([
43724
43723
  ], ParseInfo);
43725
43724
  exports.ParseInfo = ParseInfo;
43726
43725
 
43727
- },{"../Decorators":199}],273:[function(require,module,exports){
43726
+ },{"../Decorators":200}],274:[function(require,module,exports){
43728
43727
  "use strict";
43729
43728
  /*!
43730
43729
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -45997,7 +45996,7 @@ ParserATNSimulator = __decorate([
45997
45996
  ], ParserATNSimulator);
45998
45997
  exports.ParserATNSimulator = ParserATNSimulator;
45999
45998
 
46000
- },{"../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){
45999
+ },{"../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){
46001
46000
  "use strict";
46002
46001
  /*!
46003
46002
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46030,7 +46029,7 @@ __decorate([
46030
46029
  ], PlusBlockStartState.prototype, "stateType", null);
46031
46030
  exports.PlusBlockStartState = PlusBlockStartState;
46032
46031
 
46033
- },{"../Decorators":199,"./ATNStateType":239,"./BlockStartState":247}],275:[function(require,module,exports){
46032
+ },{"../Decorators":200,"./ATNStateType":240,"./BlockStartState":248}],276:[function(require,module,exports){
46034
46033
  "use strict";
46035
46034
  /*!
46036
46035
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46061,7 +46060,7 @@ __decorate([
46061
46060
  ], PlusLoopbackState.prototype, "stateType", null);
46062
46061
  exports.PlusLoopbackState = PlusLoopbackState;
46063
46062
 
46064
- },{"../Decorators":199,"./ATNStateType":239,"./DecisionState":252}],276:[function(require,module,exports){
46063
+ },{"../Decorators":200,"./ATNStateType":240,"./DecisionState":253}],277:[function(require,module,exports){
46065
46064
  "use strict";
46066
46065
  /*!
46067
46066
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46124,7 +46123,7 @@ PrecedencePredicateTransition = __decorate([
46124
46123
  ], PrecedencePredicateTransition);
46125
46124
  exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
46126
46125
 
46127
- },{"../Decorators":199,"./AbstractPredicateTransition":240,"./SemanticContext":287}],277:[function(require,module,exports){
46126
+ },{"../Decorators":200,"./AbstractPredicateTransition":241,"./SemanticContext":288}],278:[function(require,module,exports){
46128
46127
  "use strict";
46129
46128
  /*!
46130
46129
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46187,7 +46186,7 @@ PredicateEvalInfo = __decorate([
46187
46186
  ], PredicateEvalInfo);
46188
46187
  exports.PredicateEvalInfo = PredicateEvalInfo;
46189
46188
 
46190
- },{"../Decorators":199,"./DecisionEventInfo":250}],278:[function(require,module,exports){
46189
+ },{"../Decorators":200,"./DecisionEventInfo":251}],279:[function(require,module,exports){
46191
46190
  "use strict";
46192
46191
  /*!
46193
46192
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46253,7 +46252,7 @@ PredicateTransition = __decorate([
46253
46252
  ], PredicateTransition);
46254
46253
  exports.PredicateTransition = PredicateTransition;
46255
46254
 
46256
- },{"../Decorators":199,"./AbstractPredicateTransition":240,"./SemanticContext":287}],279:[function(require,module,exports){
46255
+ },{"../Decorators":200,"./AbstractPredicateTransition":241,"./SemanticContext":288}],280:[function(require,module,exports){
46257
46256
  "use strict";
46258
46257
  /*!
46259
46258
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -46944,7 +46943,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
46944
46943
  PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
46945
46944
  })(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
46946
46945
 
46947
- },{"../Decorators":199,"../misc/Array2DHashMap":302,"../misc/Array2DHashSet":303,"../misc/Arrays":305,"../misc/MurmurHash":314,"./PredictionContextCache":280,"assert":342}],280:[function(require,module,exports){
46946
+ },{"../Decorators":200,"../misc/Array2DHashMap":303,"../misc/Array2DHashSet":304,"../misc/Arrays":306,"../misc/MurmurHash":315,"./PredictionContextCache":281,"assert":343}],281:[function(require,module,exports){
46948
46947
  "use strict";
46949
46948
  /*!
46950
46949
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47085,7 +47084,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
47085
47084
  PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
47086
47085
  })(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
47087
47086
 
47088
- },{"../Decorators":199,"../misc/Array2DHashMap":302,"../misc/ObjectEqualityComparator":315,"./PredictionContext":279,"assert":342}],281:[function(require,module,exports){
47087
+ },{"../Decorators":200,"../misc/Array2DHashMap":303,"../misc/ObjectEqualityComparator":316,"./PredictionContext":280,"assert":343}],282:[function(require,module,exports){
47089
47088
  "use strict";
47090
47089
  /*!
47091
47090
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47246,7 +47245,7 @@ var PredictionMode;
47246
47245
  PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
47247
47246
  })(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
47248
47247
 
47249
- },{"../Decorators":199,"../misc/Array2DHashMap":302,"../misc/MurmurHash":314,"./RuleStopState":285}],282:[function(require,module,exports){
47248
+ },{"../Decorators":200,"../misc/Array2DHashMap":303,"../misc/MurmurHash":315,"./RuleStopState":286}],283:[function(require,module,exports){
47250
47249
  (function (process){(function (){
47251
47250
  "use strict";
47252
47251
  /*!
@@ -47515,7 +47514,7 @@ __decorate([
47515
47514
  exports.ProfilingATNSimulator = ProfilingATNSimulator;
47516
47515
 
47517
47516
  }).call(this)}).call(this,require('_process'))
47518
- },{"../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){
47517
+ },{"../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){
47519
47518
  "use strict";
47520
47519
  /*!
47521
47520
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47573,7 +47572,7 @@ RangeTransition = __decorate([
47573
47572
  ], RangeTransition);
47574
47573
  exports.RangeTransition = RangeTransition;
47575
47574
 
47576
- },{"../Decorators":199,"../misc/IntervalSet":312,"./Transition":294}],284:[function(require,module,exports){
47575
+ },{"../Decorators":200,"../misc/IntervalSet":313,"./Transition":295}],285:[function(require,module,exports){
47577
47576
  "use strict";
47578
47577
  /*!
47579
47578
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47606,7 +47605,7 @@ __decorate([
47606
47605
  ], RuleStartState.prototype, "stateType", null);
47607
47606
  exports.RuleStartState = RuleStartState;
47608
47607
 
47609
- },{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],285:[function(require,module,exports){
47608
+ },{"../Decorators":200,"./ATNState":239,"./ATNStateType":240}],286:[function(require,module,exports){
47610
47609
  "use strict";
47611
47610
  /*!
47612
47611
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47645,7 +47644,7 @@ __decorate([
47645
47644
  ], RuleStopState.prototype, "stateType", null);
47646
47645
  exports.RuleStopState = RuleStopState;
47647
47646
 
47648
- },{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],286:[function(require,module,exports){
47647
+ },{"../Decorators":200,"./ATNState":239,"./ATNStateType":240}],287:[function(require,module,exports){
47649
47648
  "use strict";
47650
47649
  /*!
47651
47650
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -47701,7 +47700,7 @@ RuleTransition = __decorate([
47701
47700
  ], RuleTransition);
47702
47701
  exports.RuleTransition = RuleTransition;
47703
47702
 
47704
- },{"../Decorators":199,"./Transition":294}],287:[function(require,module,exports){
47703
+ },{"../Decorators":200,"./Transition":295}],288:[function(require,module,exports){
47705
47704
  "use strict";
47706
47705
  /*!
47707
47706
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48181,7 +48180,7 @@ exports.SemanticContext = SemanticContext;
48181
48180
  SemanticContext.OR = OR;
48182
48181
  })(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
48183
48182
 
48184
- },{"../Decorators":199,"../misc/Array2DHashSet":303,"../misc/ArrayEqualityComparator":304,"../misc/MurmurHash":314,"../misc/ObjectEqualityComparator":315,"../misc/Utils":318}],288:[function(require,module,exports){
48183
+ },{"../Decorators":200,"../misc/Array2DHashSet":304,"../misc/ArrayEqualityComparator":305,"../misc/MurmurHash":315,"../misc/ObjectEqualityComparator":316,"../misc/Utils":319}],289:[function(require,module,exports){
48185
48184
  "use strict";
48186
48185
  /*!
48187
48186
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48247,7 +48246,7 @@ SetTransition = __decorate([
48247
48246
  ], SetTransition);
48248
48247
  exports.SetTransition = SetTransition;
48249
48248
 
48250
- },{"../Decorators":199,"../Token":224,"../misc/IntervalSet":312,"./Transition":294}],289:[function(require,module,exports){
48249
+ },{"../Decorators":200,"../Token":225,"../misc/IntervalSet":313,"./Transition":295}],290:[function(require,module,exports){
48251
48250
  "use strict";
48252
48251
  /*!
48253
48252
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48283,7 +48282,7 @@ SimulatorState = __decorate([
48283
48282
  ], SimulatorState);
48284
48283
  exports.SimulatorState = SimulatorState;
48285
48284
 
48286
- },{"../Decorators":199,"../ParserRuleContext":215}],290:[function(require,module,exports){
48285
+ },{"../Decorators":200,"../ParserRuleContext":216}],291:[function(require,module,exports){
48287
48286
  "use strict";
48288
48287
  /*!
48289
48288
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48311,7 +48310,7 @@ __decorate([
48311
48310
  ], StarBlockStartState.prototype, "stateType", null);
48312
48311
  exports.StarBlockStartState = StarBlockStartState;
48313
48312
 
48314
- },{"../Decorators":199,"./ATNStateType":239,"./BlockStartState":247}],291:[function(require,module,exports){
48313
+ },{"../Decorators":200,"./ATNStateType":240,"./BlockStartState":248}],292:[function(require,module,exports){
48315
48314
  "use strict";
48316
48315
  /*!
48317
48316
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48368,7 +48367,7 @@ __decorate([
48368
48367
  ], StarLoopEntryState.prototype, "stateType", null);
48369
48368
  exports.StarLoopEntryState = StarLoopEntryState;
48370
48369
 
48371
- },{"../Decorators":199,"../misc/BitSet":306,"./ATNStateType":239,"./DecisionState":252}],292:[function(require,module,exports){
48370
+ },{"../Decorators":200,"../misc/BitSet":307,"./ATNStateType":240,"./DecisionState":253}],293:[function(require,module,exports){
48372
48371
  "use strict";
48373
48372
  /*!
48374
48373
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48399,7 +48398,7 @@ __decorate([
48399
48398
  ], StarLoopbackState.prototype, "stateType", null);
48400
48399
  exports.StarLoopbackState = StarLoopbackState;
48401
48400
 
48402
- },{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],293:[function(require,module,exports){
48401
+ },{"../Decorators":200,"./ATNState":239,"./ATNStateType":240}],294:[function(require,module,exports){
48403
48402
  "use strict";
48404
48403
  /*!
48405
48404
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48428,7 +48427,7 @@ __decorate([
48428
48427
  ], TokensStartState.prototype, "stateType", null);
48429
48428
  exports.TokensStartState = TokensStartState;
48430
48429
 
48431
- },{"../Decorators":199,"./ATNStateType":239,"./DecisionState":252}],294:[function(require,module,exports){
48430
+ },{"../Decorators":200,"./ATNStateType":240,"./DecisionState":253}],295:[function(require,module,exports){
48432
48431
  "use strict";
48433
48432
  /*!
48434
48433
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48502,7 +48501,7 @@ Transition = __decorate([
48502
48501
  ], Transition);
48503
48502
  exports.Transition = Transition;
48504
48503
 
48505
- },{"../Decorators":199}],295:[function(require,module,exports){
48504
+ },{"../Decorators":200}],296:[function(require,module,exports){
48506
48505
  "use strict";
48507
48506
  /*!
48508
48507
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48550,7 +48549,7 @@ WildcardTransition = __decorate([
48550
48549
  ], WildcardTransition);
48551
48550
  exports.WildcardTransition = WildcardTransition;
48552
48551
 
48553
- },{"../Decorators":199,"./Transition":294}],296:[function(require,module,exports){
48552
+ },{"../Decorators":200,"./Transition":295}],297:[function(require,module,exports){
48554
48553
  "use strict";
48555
48554
  /*!
48556
48555
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48592,7 +48591,7 @@ class AcceptStateInfo {
48592
48591
  }
48593
48592
  exports.AcceptStateInfo = AcceptStateInfo;
48594
48593
 
48595
- },{}],297:[function(require,module,exports){
48594
+ },{}],298:[function(require,module,exports){
48596
48595
  "use strict";
48597
48596
  /*!
48598
48597
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48767,7 +48766,7 @@ DFA = __decorate([
48767
48766
  ], DFA);
48768
48767
  exports.DFA = DFA;
48769
48768
 
48770
- },{"../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){
48769
+ },{"../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){
48771
48770
  "use strict";
48772
48771
  /*!
48773
48772
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -48909,7 +48908,7 @@ __decorate([
48909
48908
  ], DFASerializer.prototype, "toString", null);
48910
48909
  exports.DFASerializer = DFASerializer;
48911
48910
 
48912
- },{"../Decorators":199,"../Recognizer":219,"../VocabularyImpl":230,"../atn/ATNSimulator":237,"../atn/PredictionContext":279}],299:[function(require,module,exports){
48911
+ },{"../Decorators":200,"../Recognizer":220,"../VocabularyImpl":231,"../atn/ATNSimulator":238,"../atn/PredictionContext":280}],300:[function(require,module,exports){
48913
48912
  "use strict";
48914
48913
  /*!
48915
48914
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49140,7 +49139,7 @@ exports.DFAState = DFAState;
49140
49139
  DFAState.PredPrediction = PredPrediction;
49141
49140
  })(DFAState = exports.DFAState || (exports.DFAState = {}));
49142
49141
 
49143
- },{"../Decorators":199,"../atn/ATN":232,"../atn/PredictionContext":279,"../misc/BitSet":306,"../misc/MurmurHash":314,"assert":342}],300:[function(require,module,exports){
49142
+ },{"../Decorators":200,"../atn/ATN":233,"../atn/PredictionContext":280,"../misc/BitSet":307,"../misc/MurmurHash":315,"assert":343}],301:[function(require,module,exports){
49144
49143
  "use strict";
49145
49144
  /*!
49146
49145
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49177,7 +49176,7 @@ LexerDFASerializer = __decorate([
49177
49176
  ], LexerDFASerializer);
49178
49177
  exports.LexerDFASerializer = LexerDFASerializer;
49179
49178
 
49180
- },{"../Decorators":199,"../VocabularyImpl":230,"./DFASerializer":298}],301:[function(require,module,exports){
49179
+ },{"../Decorators":200,"../VocabularyImpl":231,"./DFASerializer":299}],302:[function(require,module,exports){
49181
49180
  "use strict";
49182
49181
  /*!
49183
49182
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49243,7 +49242,7 @@ __exportStar(require("./Vocabulary"), exports);
49243
49242
  __exportStar(require("./VocabularyImpl"), exports);
49244
49243
  __exportStar(require("./WritableToken"), exports);
49245
49244
 
49246
- },{"./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){
49245
+ },{"./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){
49247
49246
  "use strict";
49248
49247
  /*!
49249
49248
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49326,7 +49325,7 @@ class Array2DHashMap {
49326
49325
  }
49327
49326
  exports.Array2DHashMap = Array2DHashMap;
49328
49327
 
49329
- },{"./Array2DHashSet":303}],303:[function(require,module,exports){
49328
+ },{"./Array2DHashSet":304}],304:[function(require,module,exports){
49330
49329
  "use strict";
49331
49330
  /*!
49332
49331
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49693,7 +49692,7 @@ __decorate([
49693
49692
  ], Array2DHashSet.prototype, "createBuckets", null);
49694
49693
  exports.Array2DHashSet = Array2DHashSet;
49695
49694
 
49696
- },{"../Decorators":199,"./DefaultEqualityComparator":308,"./MurmurHash":314,"assert":342}],304:[function(require,module,exports){
49695
+ },{"../Decorators":200,"./DefaultEqualityComparator":309,"./MurmurHash":315,"assert":343}],305:[function(require,module,exports){
49697
49696
  "use strict";
49698
49697
  /*!
49699
49698
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49765,7 +49764,7 @@ __decorate([
49765
49764
  ], ArrayEqualityComparator.prototype, "equals", null);
49766
49765
  exports.ArrayEqualityComparator = ArrayEqualityComparator;
49767
49766
 
49768
- },{"../Decorators":199,"./MurmurHash":314,"./ObjectEqualityComparator":315}],305:[function(require,module,exports){
49767
+ },{"../Decorators":200,"./MurmurHash":315,"./ObjectEqualityComparator":316}],306:[function(require,module,exports){
49769
49768
  "use strict";
49770
49769
  /*!
49771
49770
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -49835,7 +49834,7 @@ var Arrays;
49835
49834
  Arrays.toString = toString;
49836
49835
  })(Arrays = exports.Arrays || (exports.Arrays = {}));
49837
49836
 
49838
- },{}],306:[function(require,module,exports){
49837
+ },{}],307:[function(require,module,exports){
49839
49838
  "use strict";
49840
49839
  /*!
49841
49840
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50507,7 +50506,7 @@ class BitSetIterator {
50507
50506
  [Symbol.iterator]() { return this; }
50508
50507
  }
50509
50508
 
50510
- },{"./MurmurHash":314,"util":406}],307:[function(require,module,exports){
50509
+ },{"./MurmurHash":315,"util":407}],308:[function(require,module,exports){
50511
50510
  "use strict";
50512
50511
  /*!
50513
50512
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50528,7 +50527,7 @@ function isSupplementaryCodePoint(ch) {
50528
50527
  }
50529
50528
  exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
50530
50529
 
50531
- },{}],308:[function(require,module,exports){
50530
+ },{}],309:[function(require,module,exports){
50532
50531
  "use strict";
50533
50532
  /*!
50534
50533
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50599,7 +50598,7 @@ __decorate([
50599
50598
  ], DefaultEqualityComparator.prototype, "equals", null);
50600
50599
  exports.DefaultEqualityComparator = DefaultEqualityComparator;
50601
50600
 
50602
- },{"../Decorators":199,"./MurmurHash":314,"./ObjectEqualityComparator":315}],309:[function(require,module,exports){
50601
+ },{"../Decorators":200,"./MurmurHash":315,"./ObjectEqualityComparator":316}],310:[function(require,module,exports){
50603
50602
  "use strict";
50604
50603
  /*!
50605
50604
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50893,7 +50892,7 @@ __decorate([
50893
50892
  ], IntegerList.prototype, "toString", null);
50894
50893
  exports.IntegerList = IntegerList;
50895
50894
 
50896
- },{"../Decorators":199,"./Arrays":305}],310:[function(require,module,exports){
50895
+ },{"../Decorators":200,"./Arrays":306}],311:[function(require,module,exports){
50897
50896
  "use strict";
50898
50897
  /*!
50899
50898
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -50923,7 +50922,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
50923
50922
  }
50924
50923
  exports.IntegerStack = IntegerStack;
50925
50924
 
50926
- },{"./IntegerList":309}],311:[function(require,module,exports){
50925
+ },{"./IntegerList":310}],312:[function(require,module,exports){
50927
50926
  "use strict";
50928
50927
  /*!
50929
50928
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51066,7 +51065,7 @@ __decorate([
51066
51065
  ], Interval.prototype, "toString", null);
51067
51066
  exports.Interval = Interval;
51068
51067
 
51069
- },{"../Decorators":199}],312:[function(require,module,exports){
51068
+ },{"../Decorators":200}],313:[function(require,module,exports){
51070
51069
  "use strict";
51071
51070
  /*!
51072
51071
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51712,7 +51711,7 @@ __decorate([
51712
51711
  ], IntervalSet, "subtract", null);
51713
51712
  exports.IntervalSet = IntervalSet;
51714
51713
 
51715
- },{"../Decorators":199,"../Lexer":207,"../Token":224,"./ArrayEqualityComparator":304,"./IntegerList":309,"./Interval":311,"./MurmurHash":314}],313:[function(require,module,exports){
51714
+ },{"../Decorators":200,"../Lexer":208,"../Token":225,"./ArrayEqualityComparator":305,"./IntegerList":310,"./Interval":312,"./MurmurHash":315}],314:[function(require,module,exports){
51716
51715
  "use strict";
51717
51716
  /*!
51718
51717
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51745,7 +51744,7 @@ class MultiMap extends Map {
51745
51744
  }
51746
51745
  exports.MultiMap = MultiMap;
51747
51746
 
51748
- },{}],314:[function(require,module,exports){
51747
+ },{}],315:[function(require,module,exports){
51749
51748
  "use strict";
51750
51749
  /*!
51751
51750
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51860,7 +51859,7 @@ var MurmurHash;
51860
51859
  }
51861
51860
  })(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
51862
51861
 
51863
- },{}],315:[function(require,module,exports){
51862
+ },{}],316:[function(require,module,exports){
51864
51863
  "use strict";
51865
51864
  /*!
51866
51865
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51919,7 +51918,7 @@ __decorate([
51919
51918
  ], ObjectEqualityComparator.prototype, "equals", null);
51920
51919
  exports.ObjectEqualityComparator = ObjectEqualityComparator;
51921
51920
 
51922
- },{"../Decorators":199}],316:[function(require,module,exports){
51921
+ },{"../Decorators":200}],317:[function(require,module,exports){
51923
51922
  "use strict";
51924
51923
  /*!
51925
51924
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -51948,7 +51947,7 @@ class ParseCancellationException extends Error {
51948
51947
  }
51949
51948
  exports.ParseCancellationException = ParseCancellationException;
51950
51949
 
51951
- },{}],317:[function(require,module,exports){
51950
+ },{}],318:[function(require,module,exports){
51952
51951
  "use strict";
51953
51952
  /*!
51954
51953
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52002,7 +52001,7 @@ class UUID {
52002
52001
  }
52003
52002
  exports.UUID = UUID;
52004
52003
 
52005
- },{"./MurmurHash":314}],318:[function(require,module,exports){
52004
+ },{"./MurmurHash":315}],319:[function(require,module,exports){
52006
52005
  "use strict";
52007
52006
  /*!
52008
52007
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52177,7 +52176,7 @@ exports.toCharArray = toCharArray;
52177
52176
  // return s;
52178
52177
  // }
52179
52178
 
52180
- },{}],319:[function(require,module,exports){
52179
+ },{}],320:[function(require,module,exports){
52181
52180
  "use strict";
52182
52181
  /*!
52183
52182
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52213,7 +52212,7 @@ __decorate([
52213
52212
  ], ErrorNode.prototype, "accept", null);
52214
52213
  exports.ErrorNode = ErrorNode;
52215
52214
 
52216
- },{"../Decorators":199,"./TerminalNode":322}],320:[function(require,module,exports){
52215
+ },{"../Decorators":200,"./TerminalNode":323}],321:[function(require,module,exports){
52217
52216
  "use strict";
52218
52217
  /*!
52219
52218
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52318,7 +52317,7 @@ exports.ParseTreeWalker = ParseTreeWalker;
52318
52317
  ParseTreeWalker.DEFAULT = new ParseTreeWalker();
52319
52318
  })(ParseTreeWalker = exports.ParseTreeWalker || (exports.ParseTreeWalker = {}));
52320
52319
 
52321
- },{"./ErrorNode":319,"./RuleNode":321,"./TerminalNode":322}],321:[function(require,module,exports){
52320
+ },{"./ErrorNode":320,"./RuleNode":322,"./TerminalNode":323}],322:[function(require,module,exports){
52322
52321
  "use strict";
52323
52322
  /*!
52324
52323
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52330,7 +52329,7 @@ class RuleNode {
52330
52329
  }
52331
52330
  exports.RuleNode = RuleNode;
52332
52331
 
52333
- },{}],322:[function(require,module,exports){
52332
+ },{}],323:[function(require,module,exports){
52334
52333
  "use strict";
52335
52334
  /*!
52336
52335
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52422,7 +52421,7 @@ __decorate([
52422
52421
  ], TerminalNode.prototype, "toString", null);
52423
52422
  exports.TerminalNode = TerminalNode;
52424
52423
 
52425
- },{"../Decorators":199,"../Token":224,"../misc/Interval":311}],323:[function(require,module,exports){
52424
+ },{"../Decorators":200,"../Token":225,"../misc/Interval":312}],324:[function(require,module,exports){
52426
52425
  "use strict";
52427
52426
  /*!
52428
52427
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52666,7 +52665,7 @@ __decorate([
52666
52665
  ], Trees, "getRootOfSubtreeEnclosingRegion", null);
52667
52666
  exports.Trees = Trees;
52668
52667
 
52669
- },{"../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){
52668
+ },{"../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){
52670
52669
  "use strict";
52671
52670
  /*!
52672
52671
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52690,7 +52689,7 @@ class Chunk {
52690
52689
  }
52691
52690
  exports.Chunk = Chunk;
52692
52691
 
52693
- },{}],325:[function(require,module,exports){
52692
+ },{}],326:[function(require,module,exports){
52694
52693
  "use strict";
52695
52694
  /*!
52696
52695
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -52870,7 +52869,7 @@ ParseTreeMatch = __decorate([
52870
52869
  ], ParseTreeMatch);
52871
52870
  exports.ParseTreeMatch = ParseTreeMatch;
52872
52871
 
52873
- },{"../../Decorators":199}],326:[function(require,module,exports){
52872
+ },{"../../Decorators":200}],327:[function(require,module,exports){
52874
52873
  "use strict";
52875
52874
  /*!
52876
52875
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53028,7 +53027,7 @@ ParseTreePattern = __decorate([
53028
53027
  ], ParseTreePattern);
53029
53028
  exports.ParseTreePattern = ParseTreePattern;
53030
53029
 
53031
- },{"../../Decorators":199,"../xpath/XPath":332}],327:[function(require,module,exports){
53030
+ },{"../../Decorators":200,"../xpath/XPath":333}],328:[function(require,module,exports){
53032
53031
  "use strict";
53033
53032
  /*!
53034
53033
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53506,7 +53505,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
53506
53505
  ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
53507
53506
  })(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
53508
53507
 
53509
- },{"../../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){
53508
+ },{"../../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){
53510
53509
  "use strict";
53511
53510
  /*!
53512
53511
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53704,7 +53703,7 @@ RuleTagToken = __decorate([
53704
53703
  ], RuleTagToken);
53705
53704
  exports.RuleTagToken = RuleTagToken;
53706
53705
 
53707
- },{"../../Decorators":199,"../../Token":224}],329:[function(require,module,exports){
53706
+ },{"../../Decorators":200,"../../Token":225}],330:[function(require,module,exports){
53708
53707
  "use strict";
53709
53708
  /*!
53710
53709
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53791,7 +53790,7 @@ __decorate([
53791
53790
  ], TagChunk.prototype, "toString", null);
53792
53791
  exports.TagChunk = TagChunk;
53793
53792
 
53794
- },{"../../Decorators":199,"./Chunk":324}],330:[function(require,module,exports){
53793
+ },{"../../Decorators":200,"./Chunk":325}],331:[function(require,module,exports){
53795
53794
  "use strict";
53796
53795
  /*!
53797
53796
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53861,7 +53860,7 @@ TextChunk = __decorate([
53861
53860
  ], TextChunk);
53862
53861
  exports.TextChunk = TextChunk;
53863
53862
 
53864
- },{"../../Decorators":199,"./Chunk":324}],331:[function(require,module,exports){
53863
+ },{"../../Decorators":200,"./Chunk":325}],332:[function(require,module,exports){
53865
53864
  "use strict";
53866
53865
  /*!
53867
53866
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -53956,7 +53955,7 @@ TokenTagToken = __decorate([
53956
53955
  ], TokenTagToken);
53957
53956
  exports.TokenTagToken = TokenTagToken;
53958
53957
 
53959
- },{"../../CommonToken":195,"../../Decorators":199}],332:[function(require,module,exports){
53958
+ },{"../../CommonToken":196,"../../Decorators":200}],333:[function(require,module,exports){
53960
53959
  "use strict";
53961
53960
  /*!
53962
53961
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54153,7 +54152,7 @@ exports.XPath = XPath;
54153
54152
  XPath.WILDCARD = "*"; // word not operator/separator
54154
54153
  XPath.NOT = "!"; // word for invert operator
54155
54154
 
54156
- },{"../../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){
54155
+ },{"../../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){
54157
54156
  "use strict";
54158
54157
  /*!
54159
54158
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54188,7 +54187,7 @@ __decorate([
54188
54187
  ], XPathElement.prototype, "toString", null);
54189
54188
  exports.XPathElement = XPathElement;
54190
54189
 
54191
- },{"../../Decorators":199}],334:[function(require,module,exports){
54190
+ },{"../../Decorators":200}],335:[function(require,module,exports){
54192
54191
  "use strict";
54193
54192
  // Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
54194
54193
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -54663,7 +54662,7 @@ XPathLexer._serializedATN = Utils.join([
54663
54662
  XPathLexer._serializedATNSegment1,
54664
54663
  ], "");
54665
54664
 
54666
- },{"../../Lexer":207,"../../VocabularyImpl":230,"../../atn/ATNDeserializer":236,"../../atn/LexerATNSimulator":257,"../../misc/Utils":318}],335:[function(require,module,exports){
54665
+ },{"../../Lexer":208,"../../VocabularyImpl":231,"../../atn/ATNDeserializer":237,"../../atn/LexerATNSimulator":258,"../../misc/Utils":319}],336:[function(require,module,exports){
54667
54666
  "use strict";
54668
54667
  /*!
54669
54668
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54688,7 +54687,7 @@ __decorate([
54688
54687
  ], XPathLexerErrorListener.prototype, "syntaxError", null);
54689
54688
  exports.XPathLexerErrorListener = XPathLexerErrorListener;
54690
54689
 
54691
- },{"../../Decorators":199}],336:[function(require,module,exports){
54690
+ },{"../../Decorators":200}],337:[function(require,module,exports){
54692
54691
  "use strict";
54693
54692
  /*!
54694
54693
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54722,7 +54721,7 @@ __decorate([
54722
54721
  ], XPathRuleAnywhereElement.prototype, "evaluate", null);
54723
54722
  exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
54724
54723
 
54725
- },{"../../Decorators":199,"../Trees":323,"./XPathElement":333}],337:[function(require,module,exports){
54724
+ },{"../../Decorators":200,"../Trees":324,"./XPathElement":334}],338:[function(require,module,exports){
54726
54725
  "use strict";
54727
54726
  /*!
54728
54727
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54765,7 +54764,7 @@ __decorate([
54765
54764
  ], XPathRuleElement.prototype, "evaluate", null);
54766
54765
  exports.XPathRuleElement = XPathRuleElement;
54767
54766
 
54768
- },{"../../Decorators":199,"../../ParserRuleContext":215,"../Trees":323,"./XPathElement":333}],338:[function(require,module,exports){
54767
+ },{"../../Decorators":200,"../../ParserRuleContext":216,"../Trees":324,"./XPathElement":334}],339:[function(require,module,exports){
54769
54768
  "use strict";
54770
54769
  /*!
54771
54770
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54797,7 +54796,7 @@ __decorate([
54797
54796
  ], XPathTokenAnywhereElement.prototype, "evaluate", null);
54798
54797
  exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
54799
54798
 
54800
- },{"../../Decorators":199,"../Trees":323,"./XPathElement":333}],339:[function(require,module,exports){
54799
+ },{"../../Decorators":200,"../Trees":324,"./XPathElement":334}],340:[function(require,module,exports){
54801
54800
  "use strict";
54802
54801
  /*!
54803
54802
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54840,7 +54839,7 @@ __decorate([
54840
54839
  ], XPathTokenElement.prototype, "evaluate", null);
54841
54840
  exports.XPathTokenElement = XPathTokenElement;
54842
54841
 
54843
- },{"../../Decorators":199,"../TerminalNode":322,"../Trees":323,"./XPathElement":333}],340:[function(require,module,exports){
54842
+ },{"../../Decorators":200,"../TerminalNode":323,"../Trees":324,"./XPathElement":334}],341:[function(require,module,exports){
54844
54843
  "use strict";
54845
54844
  /*!
54846
54845
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54876,7 +54875,7 @@ __decorate([
54876
54875
  ], XPathWildcardAnywhereElement.prototype, "evaluate", null);
54877
54876
  exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
54878
54877
 
54879
- },{"../../Decorators":199,"../Trees":323,"./XPath":332,"./XPathElement":333}],341:[function(require,module,exports){
54878
+ },{"../../Decorators":200,"../Trees":324,"./XPath":333,"./XPathElement":334}],342:[function(require,module,exports){
54880
54879
  "use strict";
54881
54880
  /*!
54882
54881
  * Copyright 2016 The ANTLR Project. All rights reserved.
@@ -54916,7 +54915,7 @@ __decorate([
54916
54915
  ], XPathWildcardElement.prototype, "evaluate", null);
54917
54916
  exports.XPathWildcardElement = XPathWildcardElement;
54918
54917
 
54919
- },{"../../Decorators":199,"../Trees":323,"./XPath":332,"./XPathElement":333}],342:[function(require,module,exports){
54918
+ },{"../../Decorators":200,"../Trees":324,"./XPath":333,"./XPathElement":334}],343:[function(require,module,exports){
54920
54919
  (function (global){(function (){
54921
54920
  'use strict';
54922
54921
 
@@ -55426,7 +55425,7 @@ var objectKeys = Object.keys || function (obj) {
55426
55425
  };
55427
55426
 
55428
55427
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
55429
- },{"object.assign/polyfill":399,"util/":345}],343:[function(require,module,exports){
55428
+ },{"object.assign/polyfill":400,"util/":346}],344:[function(require,module,exports){
55430
55429
  if (typeof Object.create === 'function') {
55431
55430
  // implementation from standard node.js 'util' module
55432
55431
  module.exports = function inherits(ctor, superCtor) {
@@ -55451,14 +55450,14 @@ if (typeof Object.create === 'function') {
55451
55450
  }
55452
55451
  }
55453
55452
 
55454
- },{}],344:[function(require,module,exports){
55453
+ },{}],345:[function(require,module,exports){
55455
55454
  module.exports = function isBuffer(arg) {
55456
55455
  return arg && typeof arg === 'object'
55457
55456
  && typeof arg.copy === 'function'
55458
55457
  && typeof arg.fill === 'function'
55459
55458
  && typeof arg.readUInt8 === 'function';
55460
55459
  }
55461
- },{}],345:[function(require,module,exports){
55460
+ },{}],346:[function(require,module,exports){
55462
55461
  (function (process,global){(function (){
55463
55462
  // Copyright Joyent, Inc. and other Node contributors.
55464
55463
  //
@@ -56048,7 +56047,7 @@ function hasOwnProperty(obj, prop) {
56048
56047
  }
56049
56048
 
56050
56049
  }).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
56051
- },{"./support/isBuffer":344,"_process":401,"inherits":343}],346:[function(require,module,exports){
56050
+ },{"./support/isBuffer":345,"_process":402,"inherits":344}],347:[function(require,module,exports){
56052
56051
  (function (global){(function (){
56053
56052
  'use strict';
56054
56053
 
@@ -56069,7 +56068,7 @@ module.exports = function availableTypedArrays() {
56069
56068
  };
56070
56069
 
56071
56070
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
56072
- },{"possible-typed-array-names":400}],347:[function(require,module,exports){
56071
+ },{"possible-typed-array-names":401}],348:[function(require,module,exports){
56073
56072
  (function (process,global){(function (){
56074
56073
  module.exports = process.hrtime || hrtime
56075
56074
 
@@ -56100,7 +56099,7 @@ function hrtime(previousTimestamp){
56100
56099
  return [seconds,nanoseconds]
56101
56100
  }
56102
56101
  }).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
56103
- },{"_process":401}],348:[function(require,module,exports){
56102
+ },{"_process":402}],349:[function(require,module,exports){
56104
56103
  'use strict';
56105
56104
 
56106
56105
  var bind = require('function-bind');
@@ -56112,7 +56111,7 @@ var $reflectApply = require('./reflectApply');
56112
56111
  /** @type {import('./actualApply')} */
56113
56112
  module.exports = $reflectApply || bind.call($call, $apply);
56114
56113
 
56115
- },{"./functionApply":350,"./functionCall":351,"./reflectApply":353,"function-bind":369}],349:[function(require,module,exports){
56114
+ },{"./functionApply":351,"./functionCall":352,"./reflectApply":354,"function-bind":370}],350:[function(require,module,exports){
56116
56115
  'use strict';
56117
56116
 
56118
56117
  var bind = require('function-bind');
@@ -56124,19 +56123,19 @@ module.exports = function applyBind() {
56124
56123
  return actualApply(bind, $apply, arguments);
56125
56124
  };
56126
56125
 
56127
- },{"./actualApply":348,"./functionApply":350,"function-bind":369}],350:[function(require,module,exports){
56126
+ },{"./actualApply":349,"./functionApply":351,"function-bind":370}],351:[function(require,module,exports){
56128
56127
  'use strict';
56129
56128
 
56130
56129
  /** @type {import('./functionApply')} */
56131
56130
  module.exports = Function.prototype.apply;
56132
56131
 
56133
- },{}],351:[function(require,module,exports){
56132
+ },{}],352:[function(require,module,exports){
56134
56133
  'use strict';
56135
56134
 
56136
56135
  /** @type {import('./functionCall')} */
56137
56136
  module.exports = Function.prototype.call;
56138
56137
 
56139
- },{}],352:[function(require,module,exports){
56138
+ },{}],353:[function(require,module,exports){
56140
56139
  'use strict';
56141
56140
 
56142
56141
  var bind = require('function-bind');
@@ -56153,13 +56152,13 @@ module.exports = function callBindBasic(args) {
56153
56152
  return $actualApply(bind, $call, args);
56154
56153
  };
56155
56154
 
56156
- },{"./actualApply":348,"./functionCall":351,"es-errors/type":364,"function-bind":369}],353:[function(require,module,exports){
56155
+ },{"./actualApply":349,"./functionCall":352,"es-errors/type":365,"function-bind":370}],354:[function(require,module,exports){
56157
56156
  'use strict';
56158
56157
 
56159
56158
  /** @type {import('./reflectApply')} */
56160
56159
  module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
56161
56160
 
56162
- },{}],354:[function(require,module,exports){
56161
+ },{}],355:[function(require,module,exports){
56163
56162
  'use strict';
56164
56163
 
56165
56164
  var setFunctionLength = require('set-function-length');
@@ -56185,7 +56184,7 @@ if ($defineProperty) {
56185
56184
  module.exports.apply = applyBind;
56186
56185
  }
56187
56186
 
56188
- },{"call-bind-apply-helpers":352,"call-bind-apply-helpers/applyBind":349,"es-define-property":358,"set-function-length":403}],355:[function(require,module,exports){
56187
+ },{"call-bind-apply-helpers":353,"call-bind-apply-helpers/applyBind":350,"es-define-property":359,"set-function-length":404}],356:[function(require,module,exports){
56189
56188
  'use strict';
56190
56189
 
56191
56190
  var GetIntrinsic = require('get-intrinsic');
@@ -56206,7 +56205,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
56206
56205
  return intrinsic;
56207
56206
  };
56208
56207
 
56209
- },{"call-bind-apply-helpers":352,"get-intrinsic":370}],356:[function(require,module,exports){
56208
+ },{"call-bind-apply-helpers":353,"get-intrinsic":371}],357:[function(require,module,exports){
56210
56209
  'use strict';
56211
56210
 
56212
56211
  var $defineProperty = require('es-define-property');
@@ -56264,7 +56263,7 @@ module.exports = function defineDataProperty(
56264
56263
  }
56265
56264
  };
56266
56265
 
56267
- },{"es-define-property":358,"es-errors/syntax":363,"es-errors/type":364,"gopd":375}],357:[function(require,module,exports){
56266
+ },{"es-define-property":359,"es-errors/syntax":364,"es-errors/type":365,"gopd":376}],358:[function(require,module,exports){
56268
56267
  'use strict';
56269
56268
 
56270
56269
  var callBind = require('call-bind-apply-helpers');
@@ -56296,7 +56295,7 @@ module.exports = desc && typeof desc.get === 'function'
56296
56295
  }
56297
56296
  : false;
56298
56297
 
56299
- },{"call-bind-apply-helpers":352,"gopd":375}],358:[function(require,module,exports){
56298
+ },{"call-bind-apply-helpers":353,"gopd":376}],359:[function(require,module,exports){
56300
56299
  'use strict';
56301
56300
 
56302
56301
  /** @type {import('.')} */
@@ -56312,55 +56311,55 @@ if ($defineProperty) {
56312
56311
 
56313
56312
  module.exports = $defineProperty;
56314
56313
 
56315
- },{}],359:[function(require,module,exports){
56314
+ },{}],360:[function(require,module,exports){
56316
56315
  'use strict';
56317
56316
 
56318
56317
  /** @type {import('./eval')} */
56319
56318
  module.exports = EvalError;
56320
56319
 
56321
- },{}],360:[function(require,module,exports){
56320
+ },{}],361:[function(require,module,exports){
56322
56321
  'use strict';
56323
56322
 
56324
56323
  /** @type {import('.')} */
56325
56324
  module.exports = Error;
56326
56325
 
56327
- },{}],361:[function(require,module,exports){
56326
+ },{}],362:[function(require,module,exports){
56328
56327
  'use strict';
56329
56328
 
56330
56329
  /** @type {import('./range')} */
56331
56330
  module.exports = RangeError;
56332
56331
 
56333
- },{}],362:[function(require,module,exports){
56332
+ },{}],363:[function(require,module,exports){
56334
56333
  'use strict';
56335
56334
 
56336
56335
  /** @type {import('./ref')} */
56337
56336
  module.exports = ReferenceError;
56338
56337
 
56339
- },{}],363:[function(require,module,exports){
56338
+ },{}],364:[function(require,module,exports){
56340
56339
  'use strict';
56341
56340
 
56342
56341
  /** @type {import('./syntax')} */
56343
56342
  module.exports = SyntaxError;
56344
56343
 
56345
- },{}],364:[function(require,module,exports){
56344
+ },{}],365:[function(require,module,exports){
56346
56345
  'use strict';
56347
56346
 
56348
56347
  /** @type {import('./type')} */
56349
56348
  module.exports = TypeError;
56350
56349
 
56351
- },{}],365:[function(require,module,exports){
56350
+ },{}],366:[function(require,module,exports){
56352
56351
  'use strict';
56353
56352
 
56354
56353
  /** @type {import('./uri')} */
56355
56354
  module.exports = URIError;
56356
56355
 
56357
- },{}],366:[function(require,module,exports){
56356
+ },{}],367:[function(require,module,exports){
56358
56357
  'use strict';
56359
56358
 
56360
56359
  /** @type {import('.')} */
56361
56360
  module.exports = Object;
56362
56361
 
56363
- },{}],367:[function(require,module,exports){
56362
+ },{}],368:[function(require,module,exports){
56364
56363
  'use strict';
56365
56364
 
56366
56365
  var isCallable = require('is-callable');
@@ -56431,7 +56430,7 @@ module.exports = function forEach(list, iterator, thisArg) {
56431
56430
  }
56432
56431
  };
56433
56432
 
56434
- },{"is-callable":383}],368:[function(require,module,exports){
56433
+ },{"is-callable":384}],369:[function(require,module,exports){
56435
56434
  'use strict';
56436
56435
 
56437
56436
  /* eslint no-invalid-this: 1 */
@@ -56517,14 +56516,14 @@ module.exports = function bind(that) {
56517
56516
  return bound;
56518
56517
  };
56519
56518
 
56520
- },{}],369:[function(require,module,exports){
56519
+ },{}],370:[function(require,module,exports){
56521
56520
  'use strict';
56522
56521
 
56523
56522
  var implementation = require('./implementation');
56524
56523
 
56525
56524
  module.exports = Function.prototype.bind || implementation;
56526
56525
 
56527
- },{"./implementation":368}],370:[function(require,module,exports){
56526
+ },{"./implementation":369}],371:[function(require,module,exports){
56528
56527
  'use strict';
56529
56528
 
56530
56529
  var undefined;
@@ -56904,7 +56903,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
56904
56903
  return value;
56905
56904
  };
56906
56905
 
56907
- },{"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){
56906
+ },{"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){
56908
56907
  'use strict';
56909
56908
 
56910
56909
  var $Object = require('es-object-atoms');
@@ -56912,13 +56911,13 @@ var $Object = require('es-object-atoms');
56912
56911
  /** @type {import('./Object.getPrototypeOf')} */
56913
56912
  module.exports = $Object.getPrototypeOf || null;
56914
56913
 
56915
- },{"es-object-atoms":366}],372:[function(require,module,exports){
56914
+ },{"es-object-atoms":367}],373:[function(require,module,exports){
56916
56915
  'use strict';
56917
56916
 
56918
56917
  /** @type {import('./Reflect.getPrototypeOf')} */
56919
56918
  module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
56920
56919
 
56921
- },{}],373:[function(require,module,exports){
56920
+ },{}],374:[function(require,module,exports){
56922
56921
  'use strict';
56923
56922
 
56924
56923
  var reflectGetProto = require('./Reflect.getPrototypeOf');
@@ -56947,13 +56946,13 @@ module.exports = reflectGetProto
56947
56946
  }
56948
56947
  : null;
56949
56948
 
56950
- },{"./Object.getPrototypeOf":371,"./Reflect.getPrototypeOf":372,"dunder-proto/get":357}],374:[function(require,module,exports){
56949
+ },{"./Object.getPrototypeOf":372,"./Reflect.getPrototypeOf":373,"dunder-proto/get":358}],375:[function(require,module,exports){
56951
56950
  'use strict';
56952
56951
 
56953
56952
  /** @type {import('./gOPD')} */
56954
56953
  module.exports = Object.getOwnPropertyDescriptor;
56955
56954
 
56956
- },{}],375:[function(require,module,exports){
56955
+ },{}],376:[function(require,module,exports){
56957
56956
  'use strict';
56958
56957
 
56959
56958
  /** @type {import('.')} */
@@ -56970,7 +56969,7 @@ if ($gOPD) {
56970
56969
 
56971
56970
  module.exports = $gOPD;
56972
56971
 
56973
- },{"./gOPD":374}],376:[function(require,module,exports){
56972
+ },{"./gOPD":375}],377:[function(require,module,exports){
56974
56973
  'use strict';
56975
56974
 
56976
56975
  var $defineProperty = require('es-define-property');
@@ -56994,7 +56993,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
56994
56993
 
56995
56994
  module.exports = hasPropertyDescriptors;
56996
56995
 
56997
- },{"es-define-property":358}],377:[function(require,module,exports){
56996
+ },{"es-define-property":359}],378:[function(require,module,exports){
56998
56997
  'use strict';
56999
56998
 
57000
56999
  var origSymbol = typeof Symbol !== 'undefined' && Symbol;
@@ -57010,7 +57009,7 @@ module.exports = function hasNativeSymbols() {
57010
57009
  return hasSymbolSham();
57011
57010
  };
57012
57011
 
57013
- },{"./shams":378}],378:[function(require,module,exports){
57012
+ },{"./shams":379}],379:[function(require,module,exports){
57014
57013
  'use strict';
57015
57014
 
57016
57015
  /** @type {import('./shams')} */
@@ -57057,7 +57056,7 @@ module.exports = function hasSymbols() {
57057
57056
  return true;
57058
57057
  };
57059
57058
 
57060
- },{}],379:[function(require,module,exports){
57059
+ },{}],380:[function(require,module,exports){
57061
57060
  'use strict';
57062
57061
 
57063
57062
  var hasSymbols = require('has-symbols/shams');
@@ -57067,7 +57066,7 @@ module.exports = function hasToStringTagShams() {
57067
57066
  return hasSymbols() && !!Symbol.toStringTag;
57068
57067
  };
57069
57068
 
57070
- },{"has-symbols/shams":378}],380:[function(require,module,exports){
57069
+ },{"has-symbols/shams":379}],381:[function(require,module,exports){
57071
57070
  'use strict';
57072
57071
 
57073
57072
  var call = Function.prototype.call;
@@ -57077,7 +57076,7 @@ var bind = require('function-bind');
57077
57076
  /** @type {import('.')} */
57078
57077
  module.exports = bind.call(call, $hasOwn);
57079
57078
 
57080
- },{"function-bind":369}],381:[function(require,module,exports){
57079
+ },{"function-bind":370}],382:[function(require,module,exports){
57081
57080
  if (typeof Object.create === 'function') {
57082
57081
  // implementation from standard node.js 'util' module
57083
57082
  module.exports = function inherits(ctor, superCtor) {
@@ -57106,7 +57105,7 @@ if (typeof Object.create === 'function') {
57106
57105
  }
57107
57106
  }
57108
57107
 
57109
- },{}],382:[function(require,module,exports){
57108
+ },{}],383:[function(require,module,exports){
57110
57109
  'use strict';
57111
57110
 
57112
57111
  var hasToStringTag = require('has-tostringtag/shams')();
@@ -57152,7 +57151,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
57152
57151
  /** @type {import('.')} */
57153
57152
  module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
57154
57153
 
57155
- },{"call-bound":355,"has-tostringtag/shams":379}],383:[function(require,module,exports){
57154
+ },{"call-bound":356,"has-tostringtag/shams":380}],384:[function(require,module,exports){
57156
57155
  'use strict';
57157
57156
 
57158
57157
  var fnToStr = Function.prototype.toString;
@@ -57255,7 +57254,7 @@ module.exports = reflectApply
57255
57254
  return tryFunctionObject(value);
57256
57255
  };
57257
57256
 
57258
- },{}],384:[function(require,module,exports){
57257
+ },{}],385:[function(require,module,exports){
57259
57258
  'use strict';
57260
57259
 
57261
57260
  var callBound = require('call-bound');
@@ -57304,7 +57303,7 @@ module.exports = function isGeneratorFunction(fn) {
57304
57303
  return getProto(fn) === GeneratorFunction;
57305
57304
  };
57306
57305
 
57307
- },{"call-bound":355,"get-proto":373,"has-tostringtag/shams":379,"safe-regex-test":402}],385:[function(require,module,exports){
57306
+ },{"call-bound":356,"get-proto":374,"has-tostringtag/shams":380,"safe-regex-test":403}],386:[function(require,module,exports){
57308
57307
  'use strict';
57309
57308
 
57310
57309
  var callBound = require('call-bound');
@@ -57375,7 +57374,7 @@ if (hasToStringTag) {
57375
57374
 
57376
57375
  module.exports = fn;
57377
57376
 
57378
- },{"call-bound":355,"gopd":375,"has-tostringtag/shams":379,"hasown":380}],386:[function(require,module,exports){
57377
+ },{"call-bound":356,"gopd":376,"has-tostringtag/shams":380,"hasown":381}],387:[function(require,module,exports){
57379
57378
  'use strict';
57380
57379
 
57381
57380
  var whichTypedArray = require('which-typed-array');
@@ -57385,19 +57384,19 @@ module.exports = function isTypedArray(value) {
57385
57384
  return !!whichTypedArray(value);
57386
57385
  };
57387
57386
 
57388
- },{"which-typed-array":407}],387:[function(require,module,exports){
57387
+ },{"which-typed-array":408}],388:[function(require,module,exports){
57389
57388
  'use strict';
57390
57389
 
57391
57390
  /** @type {import('./abs')} */
57392
57391
  module.exports = Math.abs;
57393
57392
 
57394
- },{}],388:[function(require,module,exports){
57393
+ },{}],389:[function(require,module,exports){
57395
57394
  'use strict';
57396
57395
 
57397
57396
  /** @type {import('./floor')} */
57398
57397
  module.exports = Math.floor;
57399
57398
 
57400
- },{}],389:[function(require,module,exports){
57399
+ },{}],390:[function(require,module,exports){
57401
57400
  'use strict';
57402
57401
 
57403
57402
  /** @type {import('./isNaN')} */
@@ -57405,31 +57404,31 @@ module.exports = Number.isNaN || function isNaN(a) {
57405
57404
  return a !== a;
57406
57405
  };
57407
57406
 
57408
- },{}],390:[function(require,module,exports){
57407
+ },{}],391:[function(require,module,exports){
57409
57408
  'use strict';
57410
57409
 
57411
57410
  /** @type {import('./max')} */
57412
57411
  module.exports = Math.max;
57413
57412
 
57414
- },{}],391:[function(require,module,exports){
57413
+ },{}],392:[function(require,module,exports){
57415
57414
  'use strict';
57416
57415
 
57417
57416
  /** @type {import('./min')} */
57418
57417
  module.exports = Math.min;
57419
57418
 
57420
- },{}],392:[function(require,module,exports){
57419
+ },{}],393:[function(require,module,exports){
57421
57420
  'use strict';
57422
57421
 
57423
57422
  /** @type {import('./pow')} */
57424
57423
  module.exports = Math.pow;
57425
57424
 
57426
- },{}],393:[function(require,module,exports){
57425
+ },{}],394:[function(require,module,exports){
57427
57426
  'use strict';
57428
57427
 
57429
57428
  /** @type {import('./round')} */
57430
57429
  module.exports = Math.round;
57431
57430
 
57432
- },{}],394:[function(require,module,exports){
57431
+ },{}],395:[function(require,module,exports){
57433
57432
  'use strict';
57434
57433
 
57435
57434
  var $isNaN = require('./isNaN');
@@ -57442,7 +57441,7 @@ module.exports = function sign(number) {
57442
57441
  return number < 0 ? -1 : +1;
57443
57442
  };
57444
57443
 
57445
- },{"./isNaN":389}],395:[function(require,module,exports){
57444
+ },{"./isNaN":390}],396:[function(require,module,exports){
57446
57445
  'use strict';
57447
57446
 
57448
57447
  var keysShim;
@@ -57566,7 +57565,7 @@ if (!Object.keys) {
57566
57565
  }
57567
57566
  module.exports = keysShim;
57568
57567
 
57569
- },{"./isArguments":397}],396:[function(require,module,exports){
57568
+ },{"./isArguments":398}],397:[function(require,module,exports){
57570
57569
  'use strict';
57571
57570
 
57572
57571
  var slice = Array.prototype.slice;
@@ -57600,7 +57599,7 @@ keysShim.shim = function shimObjectKeys() {
57600
57599
 
57601
57600
  module.exports = keysShim;
57602
57601
 
57603
- },{"./implementation":395,"./isArguments":397}],397:[function(require,module,exports){
57602
+ },{"./implementation":396,"./isArguments":398}],398:[function(require,module,exports){
57604
57603
  'use strict';
57605
57604
 
57606
57605
  var toStr = Object.prototype.toString;
@@ -57619,7 +57618,7 @@ module.exports = function isArguments(value) {
57619
57618
  return isArgs;
57620
57619
  };
57621
57620
 
57622
- },{}],398:[function(require,module,exports){
57621
+ },{}],399:[function(require,module,exports){
57623
57622
  'use strict';
57624
57623
 
57625
57624
  // modified from https://github.com/es-shims/es6-shim
@@ -57667,7 +57666,7 @@ module.exports = function assign(target, source1) {
57667
57666
  return to; // step 4
57668
57667
  };
57669
57668
 
57670
- },{"call-bound":355,"es-object-atoms":366,"has-symbols/shams":378,"object-keys":396}],399:[function(require,module,exports){
57669
+ },{"call-bound":356,"es-object-atoms":367,"has-symbols/shams":379,"object-keys":397}],400:[function(require,module,exports){
57671
57670
  'use strict';
57672
57671
 
57673
57672
  var implementation = require('./implementation');
@@ -57724,7 +57723,7 @@ module.exports = function getPolyfill() {
57724
57723
  return Object.assign;
57725
57724
  };
57726
57725
 
57727
- },{"./implementation":398}],400:[function(require,module,exports){
57726
+ },{"./implementation":399}],401:[function(require,module,exports){
57728
57727
  'use strict';
57729
57728
 
57730
57729
  /** @type {import('.')} */
@@ -57743,7 +57742,7 @@ module.exports = [
57743
57742
  'BigUint64Array'
57744
57743
  ];
57745
57744
 
57746
- },{}],401:[function(require,module,exports){
57745
+ },{}],402:[function(require,module,exports){
57747
57746
  // shim for using process in browser
57748
57747
  var process = module.exports = {};
57749
57748
 
@@ -57929,7 +57928,7 @@ process.chdir = function (dir) {
57929
57928
  };
57930
57929
  process.umask = function() { return 0; };
57931
57930
 
57932
- },{}],402:[function(require,module,exports){
57931
+ },{}],403:[function(require,module,exports){
57933
57932
  'use strict';
57934
57933
 
57935
57934
  var callBound = require('call-bound');
@@ -57948,7 +57947,7 @@ module.exports = function regexTester(regex) {
57948
57947
  };
57949
57948
  };
57950
57949
 
57951
- },{"call-bound":355,"es-errors/type":364,"is-regex":385}],403:[function(require,module,exports){
57950
+ },{"call-bound":356,"es-errors/type":365,"is-regex":386}],404:[function(require,module,exports){
57952
57951
  'use strict';
57953
57952
 
57954
57953
  var GetIntrinsic = require('get-intrinsic');
@@ -57992,9 +57991,9 @@ module.exports = function setFunctionLength(fn, length) {
57992
57991
  return fn;
57993
57992
  };
57994
57993
 
57995
- },{"define-data-property":356,"es-errors/type":364,"get-intrinsic":370,"gopd":375,"has-property-descriptors":376}],404:[function(require,module,exports){
57996
- arguments[4][344][0].apply(exports,arguments)
57997
- },{"dup":344}],405:[function(require,module,exports){
57994
+ },{"define-data-property":357,"es-errors/type":365,"get-intrinsic":371,"gopd":376,"has-property-descriptors":377}],405:[function(require,module,exports){
57995
+ arguments[4][345][0].apply(exports,arguments)
57996
+ },{"dup":345}],406:[function(require,module,exports){
57998
57997
  // Currently in sync with Node.js lib/internal/util/types.js
57999
57998
  // https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
58000
57999
 
@@ -58330,7 +58329,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
58330
58329
  });
58331
58330
  });
58332
58331
 
58333
- },{"is-arguments":382,"is-generator-function":384,"is-typed-array":386,"which-typed-array":407}],406:[function(require,module,exports){
58332
+ },{"is-arguments":383,"is-generator-function":385,"is-typed-array":387,"which-typed-array":408}],407:[function(require,module,exports){
58334
58333
  (function (process){(function (){
58335
58334
  // Copyright Joyent, Inc. and other Node contributors.
58336
58335
  //
@@ -59049,7 +59048,7 @@ function callbackify(original) {
59049
59048
  exports.callbackify = callbackify;
59050
59049
 
59051
59050
  }).call(this)}).call(this,require('_process'))
59052
- },{"./support/isBuffer":404,"./support/types":405,"_process":401,"inherits":381}],407:[function(require,module,exports){
59051
+ },{"./support/isBuffer":405,"./support/types":406,"_process":402,"inherits":382}],408:[function(require,module,exports){
59053
59052
  (function (global){(function (){
59054
59053
  'use strict';
59055
59054
 
@@ -59170,5 +59169,5 @@ module.exports = function whichTypedArray(value) {
59170
59169
  };
59171
59170
 
59172
59171
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
59173
- },{"available-typed-arrays":346,"call-bind":354,"call-bound":355,"for-each":367,"get-proto":373,"gopd":375,"has-tostringtag/shams":379}]},{},[106])(106)
59172
+ },{"available-typed-arrays":347,"call-bind":355,"call-bound":356,"for-each":368,"get-proto":374,"gopd":376,"has-tostringtag/shams":380}]},{},[107])(107)
59174
59173
  });