@designliquido/delegua 1.16.1 → 1.16.2
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.
- package/analisador-semantico/analisador-semantico.d.ts.map +1 -1
- package/analisador-semantico/analisador-semantico.js +5 -1
- package/analisador-semantico/analisador-semantico.js.map +1 -1
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.d.ts +5 -0
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.d.ts.map +1 -1
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.js.map +1 -1
- package/bin/package.json +1 -1
- package/estilizador/estilizador-delegua.d.ts.map +1 -1
- package/estilizador/estilizador-delegua.js +10 -2
- package/estilizador/estilizador-delegua.js.map +1 -1
- package/estilizador/index.d.ts +1 -0
- package/estilizador/index.d.ts.map +1 -1
- package/estilizador/index.js +1 -0
- package/estilizador/index.js.map +1 -1
- package/estilizador/quebrador-linha.d.ts +18 -0
- package/estilizador/quebrador-linha.d.ts.map +1 -0
- package/estilizador/quebrador-linha.js +184 -0
- package/estilizador/quebrador-linha.js.map +1 -0
- package/estilizador/regras/index.d.ts +3 -3
- package/estilizador/regras/index.d.ts.map +1 -1
- package/estilizador/regras/index.js +3 -3
- package/estilizador/regras/index.js.map +1 -1
- package/estilizador/regras/{convencao-nomenclatura.d.ts → regra-convencao-nomenclatura.d.ts} +3 -28
- package/estilizador/regras/regra-convencao-nomenclatura.d.ts.map +1 -0
- package/estilizador/regras/{convencao-nomenclatura.js → regra-convencao-nomenclatura.js} +1 -1
- package/estilizador/regras/regra-convencao-nomenclatura.js.map +1 -0
- package/estilizador/regras/{fortalecer-tipos.d.ts → regra-fortalecer-tipos.d.ts} +1 -1
- package/estilizador/regras/regra-fortalecer-tipos.d.ts.map +1 -0
- package/estilizador/regras/{fortalecer-tipos.js → regra-fortalecer-tipos.js} +1 -1
- package/estilizador/regras/regra-fortalecer-tipos.js.map +1 -0
- package/estilizador/regras/{paradigma-consistente.d.ts → regra-paradigma-consistente.d.ts} +1 -1
- package/estilizador/regras/regra-paradigma-consistente.d.ts.map +1 -0
- package/estilizador/regras/{paradigma-consistente.js → regra-paradigma-consistente.js} +1 -1
- package/estilizador/regras/regra-paradigma-consistente.js.map +1 -0
- package/interfaces/estilizador/estilizador-interface.d.ts +1 -6
- package/interfaces/estilizador/estilizador-interface.d.ts.map +1 -1
- package/interfaces/estilizador/index.d.ts +2 -0
- package/interfaces/estilizador/index.d.ts.map +1 -1
- package/interfaces/estilizador/index.js +2 -0
- package/interfaces/estilizador/index.js.map +1 -1
- package/interfaces/estilizador/opcoes-convencao-nomenclatura-interface.d.ts +26 -0
- package/interfaces/estilizador/opcoes-convencao-nomenclatura-interface.d.ts.map +1 -0
- package/interfaces/estilizador/opcoes-convencao-nomenclatura-interface.js +3 -0
- package/interfaces/estilizador/opcoes-convencao-nomenclatura-interface.js.map +1 -0
- package/interfaces/estilizador/opcoes-formatacao-estilizador-interface.d.ts +8 -0
- package/interfaces/estilizador/opcoes-formatacao-estilizador-interface.d.ts.map +1 -0
- package/interfaces/estilizador/opcoes-formatacao-estilizador-interface.js +3 -0
- package/interfaces/estilizador/opcoes-formatacao-estilizador-interface.js.map +1 -0
- package/interpretador/interpretador-base.d.ts +1 -0
- package/interpretador/interpretador-base.d.ts.map +1 -1
- package/interpretador/interpretador-base.js +1 -0
- package/interpretador/interpretador-base.js.map +1 -1
- package/interpretador/interpretador.d.ts.map +1 -1
- package/interpretador/interpretador.js +12 -0
- package/interpretador/interpretador.js.map +1 -1
- package/package.json +1 -1
- package/umd/delegua.js +599 -388
- package/estilizador/regras/convencao-nomenclatura.d.ts.map +0 -1
- package/estilizador/regras/convencao-nomenclatura.js.map +0 -1
- package/estilizador/regras/fortalecer-tipos.d.ts.map +0 -1
- package/estilizador/regras/fortalecer-tipos.js.map +0 -1
- package/estilizador/regras/paradigma-consistente.d.ts.map +0 -1
- package/estilizador/regras/paradigma-consistente.js.map +0 -1
package/umd/delegua.js
CHANGED
|
@@ -476,7 +476,7 @@ class AnalisadorSemanticoBase {
|
|
|
476
476
|
}
|
|
477
477
|
exports.AnalisadorSemanticoBase = AnalisadorSemanticoBase;
|
|
478
478
|
|
|
479
|
-
},{"../construtos":62,"../declaracoes":110,"../interfaces":
|
|
479
|
+
},{"../construtos":62,"../declaracoes":110,"../interfaces":150,"../quebras":218,"./gerenciador-escopos":5}],2:[function(require,module,exports){
|
|
480
480
|
"use strict";
|
|
481
481
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
482
482
|
exports.AnalisadorSemantico = void 0;
|
|
@@ -853,7 +853,11 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
853
853
|
}
|
|
854
854
|
return Promise.resolve();
|
|
855
855
|
}
|
|
856
|
-
visitarDeclaracaoFazer(declaracao) {
|
|
856
|
+
async visitarDeclaracaoFazer(declaracao) {
|
|
857
|
+
// Visita corpo para que usos/atribuições dentro do bloco sejam analisados.
|
|
858
|
+
for (const declaracaoCorpo of declaracao.caminhoFazer.declaracoes) {
|
|
859
|
+
await declaracaoCorpo.aceitar(this);
|
|
860
|
+
}
|
|
857
861
|
// Marca variáveis usadas na condição
|
|
858
862
|
this.marcarVariaveisUsadasEmExpressao(declaracao.condicaoEnquanto);
|
|
859
863
|
// Verifica a condição
|
|
@@ -1627,7 +1631,7 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
1627
1631
|
}
|
|
1628
1632
|
exports.AnalisadorSemantico = AnalisadorSemantico;
|
|
1629
1633
|
|
|
1630
|
-
},{"../avaliador-sintatico/comum":11,"../avaliador-sintatico/micro-avaliador-sintatico":24,"../construtos":62,"../declaracoes":110,"../interfaces/erros":
|
|
1634
|
+
},{"../avaliador-sintatico/comum":11,"../avaliador-sintatico/micro-avaliador-sintatico":24,"../construtos":62,"../declaracoes":110,"../interfaces/erros":147,"../lexador/micro-lexador":215,"./analisador-semantico-base":1,"./gerenciador-escopos":5,"./pilha-variaveis":7}],3:[function(require,module,exports){
|
|
1631
1635
|
"use strict";
|
|
1632
1636
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1633
1637
|
|
|
@@ -2045,7 +2049,7 @@ class AvaliadorSintaticoBase {
|
|
|
2045
2049
|
}
|
|
2046
2050
|
exports.AvaliadorSintaticoBase = AvaliadorSintaticoBase;
|
|
2047
2051
|
|
|
2048
|
-
},{"../construtos":62,"../declaracoes":110,"../tipos-de-simbolos/comum":
|
|
2052
|
+
},{"../construtos":62,"../declaracoes":110,"../tipos-de-simbolos/comum":223,"./erro-avaliador-sintatico":20}],10:[function(require,module,exports){
|
|
2049
2053
|
"use strict";
|
|
2050
2054
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
2051
2055
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -4938,7 +4942,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
4938
4942
|
}
|
|
4939
4943
|
exports.AvaliadorSintatico = AvaliadorSintatico;
|
|
4940
4944
|
|
|
4941
|
-
},{"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-numero":30,"../bibliotecas/primitivas-texto":31,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../construtos/tuplas":80,"../declaracoes":110,"../inferenciador":
|
|
4945
|
+
},{"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-numero":30,"../bibliotecas/primitivas-texto":31,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../construtos/tuplas":80,"../declaracoes":110,"../inferenciador":138,"../informacao-elemento-sintatico":139,"../tipos-de-dados/delegua":219,"../tipos-de-simbolos/delegua":224,"./avaliador-sintatico-base":9,"./comum":11,"./elemento-montao-tipos":19,"./erro-avaliador-sintatico":20,"./informacao-escopo":22,"./montao-tipos":25,"./pilha-escopos":26,"browser-process-hrtime":417}],11:[function(require,module,exports){
|
|
4942
4946
|
"use strict";
|
|
4943
4947
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4944
4948
|
exports.buscarRetornos = buscarRetornos;
|
|
@@ -5053,7 +5057,7 @@ function registrarPrimitiva(primitivasConhecidas, tipo, catalogoPrimitivas) {
|
|
|
5053
5057
|
}
|
|
5054
5058
|
}
|
|
5055
5059
|
|
|
5056
|
-
},{"../declaracoes":110,"../informacao-elemento-sintatico":
|
|
5060
|
+
},{"../declaracoes":110,"../informacao-elemento-sintatico":139}],12:[function(require,module,exports){
|
|
5057
5061
|
"use strict";
|
|
5058
5062
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
5059
5063
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -5713,7 +5717,7 @@ class AvaliadorSintaticoEguaClassico {
|
|
|
5713
5717
|
}
|
|
5714
5718
|
exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
|
|
5715
5719
|
|
|
5716
|
-
},{"../../construtos":62,"../../declaracoes":110,"../../tipos-de-simbolos/egua-classico":
|
|
5720
|
+
},{"../../construtos":62,"../../declaracoes":110,"../../tipos-de-simbolos/egua-classico":225,"../erro-avaliador-sintatico":20}],13:[function(require,module,exports){
|
|
5717
5721
|
"use strict";
|
|
5718
5722
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
5719
5723
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -7424,7 +7428,7 @@ class AvaliadorSintaticoPitugues {
|
|
|
7424
7428
|
}
|
|
7425
7429
|
exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
|
|
7426
7430
|
|
|
7427
|
-
},{"../../bibliotecas/dialetos/pitugues/primitivas-tupla":28,"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../declaracoes":110,"../../inferenciador":
|
|
7431
|
+
},{"../../bibliotecas/dialetos/pitugues/primitivas-tupla":28,"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../declaracoes":110,"../../inferenciador":138,"../../informacao-elemento-sintatico":139,"../../lexador":209,"../../lexador/micro-lexador-pitugues":214,"../../tipos-de-dados/dialetos/pitugues":220,"../../tipos-de-simbolos/pitugues":228,"../comum":11,"../erro-avaliador-sintatico":20,"../informacao-escopo":22,"../pilha-escopos":26,"./micro-avaliador-sintatico-pitugues":18,"browser-process-hrtime":417}],14:[function(require,module,exports){
|
|
7428
7432
|
"use strict";
|
|
7429
7433
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
7430
7434
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -7598,7 +7602,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
|
|
|
7598
7602
|
}
|
|
7599
7603
|
exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
|
|
7600
7604
|
|
|
7601
|
-
},{"../../construtos":62,"../../declaracoes":110,"../../tipos-de-simbolos/portugol-ipt":
|
|
7605
|
+
},{"../../construtos":62,"../../declaracoes":110,"../../tipos-de-simbolos/portugol-ipt":229,"../avaliador-sintatico-base":9}],15:[function(require,module,exports){
|
|
7602
7606
|
"use strict";
|
|
7603
7607
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
7604
7608
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -8568,7 +8572,7 @@ class AvaliadorSintaticoPrisma extends avaliador_sintatico_base_1.AvaliadorSinta
|
|
|
8568
8572
|
}
|
|
8569
8573
|
exports.AvaliadorSintaticoPrisma = AvaliadorSintaticoPrisma;
|
|
8570
8574
|
|
|
8571
|
-
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../declaracoes":110,"../../inferenciador":
|
|
8575
|
+
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../declaracoes":110,"../../inferenciador":138,"../../informacao-elemento-sintatico":139,"../../lexador":209,"../../tipos-de-simbolos/prisma":230,"../avaliador-sintatico-base":9,"../comum":11,"../erro-avaliador-sintatico":20,"../informacao-escopo":22,"../pilha-escopos":26,"browser-process-hrtime":417}],16:[function(require,module,exports){
|
|
8572
8576
|
"use strict";
|
|
8573
8577
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8574
8578
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -9580,7 +9584,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
|
|
|
9580
9584
|
}
|
|
9581
9585
|
exports.AvaliadorSintaticoTenda = AvaliadorSintaticoTenda;
|
|
9582
9586
|
|
|
9583
|
-
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../construtos/tuplas":80,"../../declaracoes":110,"../../inferenciador":
|
|
9587
|
+
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../construtos/tuplas":80,"../../declaracoes":110,"../../inferenciador":138,"../../informacao-elemento-sintatico":139,"../../lexador/simbolo":217,"../../tipos-de-dados/delegua":219,"../../tipos-de-simbolos/tenda":231,"../avaliador-sintatico-base":9,"./../erro-avaliador-sintatico":20,"./../informacao-escopo":22,"./../pilha-escopos":26,"browser-process-hrtime":417}],17:[function(require,module,exports){
|
|
9584
9588
|
"use strict";
|
|
9585
9589
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9586
9590
|
if (k2 === undefined) k2 = k;
|
|
@@ -9843,7 +9847,7 @@ class MicroAvaliadorSintaticoPitugues extends micro_avaliador_sintatico_base_1.M
|
|
|
9843
9847
|
}
|
|
9844
9848
|
exports.MicroAvaliadorSintaticoPitugues = MicroAvaliadorSintaticoPitugues;
|
|
9845
9849
|
|
|
9846
|
-
},{"../../construtos":62,"../../declaracoes":110,"../../inferenciador":
|
|
9850
|
+
},{"../../construtos":62,"../../declaracoes":110,"../../inferenciador":138,"../../tipos-de-simbolos/pitugues":228,"../micro-avaliador-sintatico-base":23}],19:[function(require,module,exports){
|
|
9847
9851
|
"use strict";
|
|
9848
9852
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9849
9853
|
exports.ElementoMontaoTipos = void 0;
|
|
@@ -10025,7 +10029,7 @@ class MicroAvaliadorSintaticoBase {
|
|
|
10025
10029
|
}
|
|
10026
10030
|
exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
|
|
10027
10031
|
|
|
10028
|
-
},{"../construtos":62,"../tipos-de-simbolos/comum":
|
|
10032
|
+
},{"../construtos":62,"../tipos-de-simbolos/comum":223,"./erro-avaliador-sintatico":20}],24:[function(require,module,exports){
|
|
10029
10033
|
"use strict";
|
|
10030
10034
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
10031
10035
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -10240,7 +10244,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
|
|
|
10240
10244
|
}
|
|
10241
10245
|
exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
|
|
10242
10246
|
|
|
10243
|
-
},{"../construtos":62,"../tipos-de-simbolos/microgramaticas/delegua":
|
|
10247
|
+
},{"../construtos":62,"../tipos-de-simbolos/microgramaticas/delegua":227,"./micro-avaliador-sintatico-base":23}],25:[function(require,module,exports){
|
|
10244
10248
|
"use strict";
|
|
10245
10249
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10246
10250
|
exports.MontaoTipos = void 0;
|
|
@@ -10291,7 +10295,7 @@ class MontaoTipos {
|
|
|
10291
10295
|
}
|
|
10292
10296
|
exports.MontaoTipos = MontaoTipos;
|
|
10293
10297
|
|
|
10294
|
-
},{"../geracao-identificadores":
|
|
10298
|
+
},{"../geracao-identificadores":136,"./erro-avaliador-sintatico":20}],26:[function(require,module,exports){
|
|
10295
10299
|
"use strict";
|
|
10296
10300
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10297
10301
|
exports.PilhaEscopos = void 0;
|
|
@@ -11533,7 +11537,7 @@ async function vetor(interpretador, tupla) {
|
|
|
11533
11537
|
return resultadoFinal;
|
|
11534
11538
|
}
|
|
11535
11539
|
|
|
11536
|
-
},{"../construtos":62,"../excecoes":
|
|
11540
|
+
},{"../construtos":62,"../excecoes":132,"../interpretador/estruturas":180,"../interpretador/estruturas/descritor-tipo-classe":178,"../interpretador/estruturas/funcao-padrao":179,"../interpretador/estruturas/objeto-delegua-classe":185,"../quebras":218}],28:[function(require,module,exports){
|
|
11537
11541
|
"use strict";
|
|
11538
11542
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11539
11543
|
const excecoes_1 = require("../../../excecoes");
|
|
@@ -11556,7 +11560,7 @@ exports.default = {
|
|
|
11556
11560
|
},
|
|
11557
11561
|
};
|
|
11558
11562
|
|
|
11559
|
-
},{"../../../construtos":62,"../../../excecoes":
|
|
11563
|
+
},{"../../../construtos":62,"../../../excecoes":132}],29:[function(require,module,exports){
|
|
11560
11564
|
"use strict";
|
|
11561
11565
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11562
11566
|
const construtos_1 = require("../construtos");
|
|
@@ -11638,7 +11642,7 @@ exports.default = {
|
|
|
11638
11642
|
},
|
|
11639
11643
|
};
|
|
11640
11644
|
|
|
11641
|
-
},{"../construtos":62,"../informacao-elemento-sintatico":
|
|
11645
|
+
},{"../construtos":62,"../informacao-elemento-sintatico":139}],30:[function(require,module,exports){
|
|
11642
11646
|
"use strict";
|
|
11643
11647
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11644
11648
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -11723,7 +11727,7 @@ exports.default = {
|
|
|
11723
11727
|
},
|
|
11724
11728
|
};
|
|
11725
11729
|
|
|
11726
|
-
},{"../informacao-elemento-sintatico":
|
|
11730
|
+
},{"../informacao-elemento-sintatico":139}],31:[function(require,module,exports){
|
|
11727
11731
|
"use strict";
|
|
11728
11732
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11729
11733
|
exports.implementacaoParticao = void 0;
|
|
@@ -12122,7 +12126,7 @@ exports.default = {
|
|
|
12122
12126
|
},
|
|
12123
12127
|
};
|
|
12124
12128
|
|
|
12125
|
-
},{"../construtos":62,"../excecoes":
|
|
12129
|
+
},{"../construtos":62,"../excecoes":132,"../informacao-elemento-sintatico":139}],32:[function(require,module,exports){
|
|
12126
12130
|
"use strict";
|
|
12127
12131
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12128
12132
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -12533,7 +12537,7 @@ exports.default = {
|
|
|
12533
12537
|
},
|
|
12534
12538
|
};
|
|
12535
12539
|
|
|
12536
|
-
},{"../construtos":62,"../excecoes":
|
|
12540
|
+
},{"../construtos":62,"../excecoes":132,"../inferenciador":138,"../informacao-elemento-sintatico":139}],33:[function(require,module,exports){
|
|
12537
12541
|
"use strict";
|
|
12538
12542
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12539
12543
|
exports.AcessoElementoMatriz = void 0;
|
|
@@ -13008,7 +13012,7 @@ class Chamada {
|
|
|
13008
13012
|
}
|
|
13009
13013
|
exports.Chamada = Chamada;
|
|
13010
13014
|
|
|
13011
|
-
},{"../geracao-identificadores":
|
|
13015
|
+
},{"../geracao-identificadores":136}],47:[function(require,module,exports){
|
|
13012
13016
|
"use strict";
|
|
13013
13017
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13014
13018
|
exports.ComentarioComoConstruto = void 0;
|
|
@@ -13519,7 +13523,7 @@ class Leia {
|
|
|
13519
13523
|
}
|
|
13520
13524
|
exports.Leia = Leia;
|
|
13521
13525
|
|
|
13522
|
-
},{"../geracao-identificadores":
|
|
13526
|
+
},{"../geracao-identificadores":136}],65:[function(require,module,exports){
|
|
13523
13527
|
"use strict";
|
|
13524
13528
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13525
13529
|
exports.ListaCompreensao = void 0;
|
|
@@ -14748,7 +14752,7 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
|
|
|
14748
14752
|
}
|
|
14749
14753
|
exports.FuncaoDeclaracao = FuncaoDeclaracao;
|
|
14750
14754
|
|
|
14751
|
-
},{"../geracao-identificadores":
|
|
14755
|
+
},{"../geracao-identificadores":136,"./declaracao":99}],109:[function(require,module,exports){
|
|
14752
14756
|
"use strict";
|
|
14753
14757
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14754
14758
|
exports.Importar = void 0;
|
|
@@ -15184,6 +15188,7 @@ exports.Var = Var;
|
|
|
15184
15188
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15185
15189
|
exports.EstilizadorDelegua = void 0;
|
|
15186
15190
|
const formatadores_1 = require("../formatadores");
|
|
15191
|
+
const quebrador_linha_1 = require("./quebrador-linha");
|
|
15187
15192
|
/**
|
|
15188
15193
|
* Estilizador de código para Delégua.
|
|
15189
15194
|
* Aplica transformações no AST para enforcar convenções e melhorar qualidade do código.
|
|
@@ -15412,15 +15417,22 @@ class EstilizadorDelegua {
|
|
|
15412
15417
|
}
|
|
15413
15418
|
estilizarEFormatar(declaracoes, opcoesFormatacao = {}) {
|
|
15414
15419
|
const declaracoesEstilizadas = this.estilizar(declaracoes);
|
|
15415
|
-
const
|
|
15420
|
+
const separadorLinha = opcoesFormatacao.quebraLinha || '\n';
|
|
15421
|
+
const tamanhoIndentacao = opcoesFormatacao.tamanhoIndentacao ?? 4;
|
|
15422
|
+
const formatador = new formatadores_1.FormatadorDelegua(separadorLinha, tamanhoIndentacao, {
|
|
15416
15423
|
delimitadorTexto: opcoesFormatacao.delimitadorTexto,
|
|
15417
15424
|
});
|
|
15418
|
-
|
|
15425
|
+
let codigo = formatador.formatar(declaracoesEstilizadas);
|
|
15426
|
+
if (opcoesFormatacao.maximoCaracteresPorLinha !== undefined) {
|
|
15427
|
+
const quebrador = new quebrador_linha_1.QuebradorDeLinha(opcoesFormatacao.maximoCaracteresPorLinha, tamanhoIndentacao, separadorLinha);
|
|
15428
|
+
codigo = quebrador.quebrar(codigo);
|
|
15429
|
+
}
|
|
15430
|
+
return codigo;
|
|
15419
15431
|
}
|
|
15420
15432
|
}
|
|
15421
15433
|
exports.EstilizadorDelegua = EstilizadorDelegua;
|
|
15422
15434
|
|
|
15423
|
-
},{"../formatadores":
|
|
15435
|
+
},{"../formatadores":135,"./quebrador-linha":126}],125:[function(require,module,exports){
|
|
15424
15436
|
"use strict";
|
|
15425
15437
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15426
15438
|
if (k2 === undefined) k2 = k;
|
|
@@ -15438,9 +15450,216 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15438
15450
|
};
|
|
15439
15451
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15440
15452
|
__exportStar(require("./estilizador-delegua"), exports);
|
|
15453
|
+
__exportStar(require("./quebrador-linha"), exports);
|
|
15441
15454
|
__exportStar(require("./regras"), exports);
|
|
15442
15455
|
|
|
15443
|
-
},{"./estilizador-delegua":124,"./regras":
|
|
15456
|
+
},{"./estilizador-delegua":124,"./quebrador-linha":126,"./regras":127}],126:[function(require,module,exports){
|
|
15457
|
+
"use strict";
|
|
15458
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15459
|
+
exports.QuebradorDeLinha = void 0;
|
|
15460
|
+
/**
|
|
15461
|
+
* Operadores lógicos reconhecidos como pontos de quebra.
|
|
15462
|
+
* Inclui as formas em português geradas pelo FormatadorDelegua.
|
|
15463
|
+
*/
|
|
15464
|
+
const OPERADORES_LOGICOS = [' && ', ' || ', ' e ', ' ou ', ' em '];
|
|
15465
|
+
/**
|
|
15466
|
+
* Operadores binários multi-caractere reconhecidos como pontos de quebra.
|
|
15467
|
+
*/
|
|
15468
|
+
const OPERADORES_BINARIOS_MULTI = [' == ', ' != ', ' >= ', ' <= '];
|
|
15469
|
+
/**
|
|
15470
|
+
* Verifica se a posição `pos` está dentro de um literal de texto na linha.
|
|
15471
|
+
* Suporta aspas simples e duplas, respeitando escapes com `\`.
|
|
15472
|
+
*/
|
|
15473
|
+
function estaEmString(linha, pos) {
|
|
15474
|
+
let emString = false;
|
|
15475
|
+
let delimitador = '';
|
|
15476
|
+
for (let i = 0; i < pos; i++) {
|
|
15477
|
+
const c = linha[i];
|
|
15478
|
+
if (emString) {
|
|
15479
|
+
if (c === '\\') {
|
|
15480
|
+
i++; // pula o próximo caractere (escape)
|
|
15481
|
+
continue;
|
|
15482
|
+
}
|
|
15483
|
+
if (c === delimitador) {
|
|
15484
|
+
emString = false;
|
|
15485
|
+
delimitador = '';
|
|
15486
|
+
}
|
|
15487
|
+
}
|
|
15488
|
+
else {
|
|
15489
|
+
if (c === '"' || c === "'") {
|
|
15490
|
+
emString = true;
|
|
15491
|
+
delimitador = c;
|
|
15492
|
+
}
|
|
15493
|
+
}
|
|
15494
|
+
}
|
|
15495
|
+
return emString;
|
|
15496
|
+
}
|
|
15497
|
+
/**
|
|
15498
|
+
* Retorna o prefixo de espaços/tabs no início da linha.
|
|
15499
|
+
*/
|
|
15500
|
+
function obterIndentacao(linha) {
|
|
15501
|
+
const match = linha.match(/^(\s*)/);
|
|
15502
|
+
return match ? match[1] : '';
|
|
15503
|
+
}
|
|
15504
|
+
/**
|
|
15505
|
+
* Encontra todos os pontos de quebra válidos em uma linha, retornando os índices
|
|
15506
|
+
* onde a próxima linha de continuação deve começar (já avançado o espaço separador).
|
|
15507
|
+
*
|
|
15508
|
+
* Estratégia (em ordem de prioridade aplicada pela posição na linha):
|
|
15509
|
+
* - Após vírgulas fora de strings
|
|
15510
|
+
* - Antes de operadores lógicos fora de strings
|
|
15511
|
+
* - Antes de operadores binários multi-char fora de strings
|
|
15512
|
+
*
|
|
15513
|
+
* Retorna os índices ordenados do menor para o maior.
|
|
15514
|
+
*/
|
|
15515
|
+
function encontrarPontosDeQuebra(linha) {
|
|
15516
|
+
const pontos = new Set();
|
|
15517
|
+
for (let i = 0; i < linha.length; i++) {
|
|
15518
|
+
if (estaEmString(linha, i))
|
|
15519
|
+
continue;
|
|
15520
|
+
const c = linha[i];
|
|
15521
|
+
// Após vírgula: a continuação começa logo depois (pulando o espaço separador)
|
|
15522
|
+
if (c === ',') {
|
|
15523
|
+
let pos = i + 1;
|
|
15524
|
+
if (pos < linha.length && linha[pos] === ' ')
|
|
15525
|
+
pos++;
|
|
15526
|
+
pontos.add(pos);
|
|
15527
|
+
continue;
|
|
15528
|
+
}
|
|
15529
|
+
// Antes de operadores lógicos: quebra logo antes do operador
|
|
15530
|
+
for (const op of OPERADORES_LOGICOS) {
|
|
15531
|
+
if (linha.slice(i).startsWith(op)) {
|
|
15532
|
+
pontos.add(i + 1); // mantém o espaço antes do operador na linha anterior
|
|
15533
|
+
break;
|
|
15534
|
+
}
|
|
15535
|
+
}
|
|
15536
|
+
// Antes de operadores binários multi-char
|
|
15537
|
+
for (const op of OPERADORES_BINARIOS_MULTI) {
|
|
15538
|
+
if (linha.slice(i).startsWith(op)) {
|
|
15539
|
+
pontos.add(i + 1);
|
|
15540
|
+
break;
|
|
15541
|
+
}
|
|
15542
|
+
}
|
|
15543
|
+
}
|
|
15544
|
+
return Array.from(pontos).sort((a, b) => a - b);
|
|
15545
|
+
}
|
|
15546
|
+
/**
|
|
15547
|
+
* Quebra uma única linha em múltiplas, tentando manter cada segmento
|
|
15548
|
+
* dentro de `maximo` caracteres usando uma estratégia gulosa.
|
|
15549
|
+
*
|
|
15550
|
+
* Para cada segmento, encontra o último ponto de quebra que ainda mantém
|
|
15551
|
+
* o conteúdo dentro do limite. Se não houver ponto de quebra viável,
|
|
15552
|
+
* usa o primeiro disponível (evitando truncamento arbitrário de tokens).
|
|
15553
|
+
*
|
|
15554
|
+
* Se a linha não puder ser melhorada (apenas 1 segmento), retorna a original intacta.
|
|
15555
|
+
*/
|
|
15556
|
+
function quebrarLinha(linha, maximo, indentacaoContinuacao) {
|
|
15557
|
+
if (linha.length <= maximo)
|
|
15558
|
+
return [linha];
|
|
15559
|
+
const pontos = encontrarPontosDeQuebra(linha);
|
|
15560
|
+
if (pontos.length === 0)
|
|
15561
|
+
return [linha];
|
|
15562
|
+
const segmentos = [];
|
|
15563
|
+
let inicio = 0;
|
|
15564
|
+
while (inicio < linha.length) {
|
|
15565
|
+
const prefixo = segmentos.length === 0 ? '' : indentacaoContinuacao;
|
|
15566
|
+
const restante = linha.slice(inicio);
|
|
15567
|
+
// O conteúdo restante cabe no limite → termina
|
|
15568
|
+
if ((prefixo + restante.trimEnd()).length <= maximo) {
|
|
15569
|
+
segmentos.push(prefixo + restante.trimEnd());
|
|
15570
|
+
break;
|
|
15571
|
+
}
|
|
15572
|
+
// Filtra apenas pontos à frente de `inicio`
|
|
15573
|
+
const pontosDisponiveis = pontos.filter((p) => p > inicio);
|
|
15574
|
+
if (pontosDisponiveis.length === 0) {
|
|
15575
|
+
// Nenhum ponto restante; empurra o resto sem quebrar
|
|
15576
|
+
segmentos.push(prefixo + restante.trimEnd());
|
|
15577
|
+
break;
|
|
15578
|
+
}
|
|
15579
|
+
// Encontra o maior ponto que ainda mantém o segmento dentro do limite
|
|
15580
|
+
let melhorPonto = -1;
|
|
15581
|
+
for (const ponto of pontosDisponiveis) {
|
|
15582
|
+
const conteudo = linha.slice(inicio, ponto).trimEnd();
|
|
15583
|
+
if ((prefixo + conteudo).length <= maximo) {
|
|
15584
|
+
melhorPonto = ponto;
|
|
15585
|
+
}
|
|
15586
|
+
else {
|
|
15587
|
+
break; // pontos estão ordenados; excedeu o limite → para
|
|
15588
|
+
}
|
|
15589
|
+
}
|
|
15590
|
+
if (melhorPonto === -1) {
|
|
15591
|
+
// Nenhum ponto cabe → usa o primeiro disponível (soft break forçado)
|
|
15592
|
+
melhorPonto = pontosDisponiveis[0];
|
|
15593
|
+
}
|
|
15594
|
+
const conteudo = linha.slice(inicio, melhorPonto).trimEnd();
|
|
15595
|
+
segmentos.push(prefixo + conteudo);
|
|
15596
|
+
// Avança `inicio` pulando o espaço separador, se houver
|
|
15597
|
+
inicio = melhorPonto;
|
|
15598
|
+
if (inicio < linha.length && linha[inicio] === ' ') {
|
|
15599
|
+
inicio++;
|
|
15600
|
+
}
|
|
15601
|
+
}
|
|
15602
|
+
// Se não houve melhoria real, preserva a linha original
|
|
15603
|
+
if (segmentos.length <= 1)
|
|
15604
|
+
return [linha];
|
|
15605
|
+
return segmentos;
|
|
15606
|
+
}
|
|
15607
|
+
/**
|
|
15608
|
+
* Aplica quebra de linha por limite de colunas a um bloco de código já formatado.
|
|
15609
|
+
*
|
|
15610
|
+
* Cada linha que ultrapasse `maximoCaracteres` é dividida em múltiplas linhas
|
|
15611
|
+
* em pontos semanticamente seguros (após vírgulas, antes de operadores lógicos
|
|
15612
|
+
* e binários), respeitando o conteúdo de strings literais.
|
|
15613
|
+
*
|
|
15614
|
+
* Quando não existe ponto de quebra viável, a linha é preservada intacta
|
|
15615
|
+
* ("soft break" — nunca trunca tokens arbitrariamente).
|
|
15616
|
+
*/
|
|
15617
|
+
class QuebradorDeLinha {
|
|
15618
|
+
constructor(maximoCaracteres, tamanhoIndentacao, separadorLinha) {
|
|
15619
|
+
this.maximoCaracteres = maximoCaracteres;
|
|
15620
|
+
this.tamanhoIndentacao = tamanhoIndentacao;
|
|
15621
|
+
this.separadorLinha = separadorLinha;
|
|
15622
|
+
}
|
|
15623
|
+
quebrar(codigo) {
|
|
15624
|
+
const linhas = codigo.split(this.separadorLinha);
|
|
15625
|
+
const resultado = [];
|
|
15626
|
+
for (const linha of linhas) {
|
|
15627
|
+
if (linha.length <= this.maximoCaracteres) {
|
|
15628
|
+
resultado.push(linha);
|
|
15629
|
+
}
|
|
15630
|
+
else {
|
|
15631
|
+
const indentacaoBase = obterIndentacao(linha);
|
|
15632
|
+
const indentacaoContinuacao = indentacaoBase + ' '.repeat(this.tamanhoIndentacao);
|
|
15633
|
+
resultado.push(...quebrarLinha(linha, this.maximoCaracteres, indentacaoContinuacao));
|
|
15634
|
+
}
|
|
15635
|
+
}
|
|
15636
|
+
return resultado.join(this.separadorLinha);
|
|
15637
|
+
}
|
|
15638
|
+
}
|
|
15639
|
+
exports.QuebradorDeLinha = QuebradorDeLinha;
|
|
15640
|
+
|
|
15641
|
+
},{}],127:[function(require,module,exports){
|
|
15642
|
+
"use strict";
|
|
15643
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15644
|
+
if (k2 === undefined) k2 = k;
|
|
15645
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
15646
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
15647
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
15648
|
+
}
|
|
15649
|
+
Object.defineProperty(o, k2, desc);
|
|
15650
|
+
}) : (function(o, m, k, k2) {
|
|
15651
|
+
if (k2 === undefined) k2 = k;
|
|
15652
|
+
o[k2] = m[k];
|
|
15653
|
+
}));
|
|
15654
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
15655
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15656
|
+
};
|
|
15657
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15658
|
+
__exportStar(require("./regra-fortalecer-tipos"), exports);
|
|
15659
|
+
__exportStar(require("./regra-convencao-nomenclatura"), exports);
|
|
15660
|
+
__exportStar(require("./regra-paradigma-consistente"), exports);
|
|
15661
|
+
|
|
15662
|
+
},{"./regra-convencao-nomenclatura":128,"./regra-fortalecer-tipos":129,"./regra-paradigma-consistente":130}],128:[function(require,module,exports){
|
|
15444
15663
|
"use strict";
|
|
15445
15664
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15446
15665
|
exports.RegraConvencaoNomenclatura = void 0;
|
|
@@ -15589,7 +15808,7 @@ class RegraConvencaoNomenclatura {
|
|
|
15589
15808
|
}
|
|
15590
15809
|
exports.RegraConvencaoNomenclatura = RegraConvencaoNomenclatura;
|
|
15591
15810
|
|
|
15592
|
-
},{"../../declaracoes":110}],
|
|
15811
|
+
},{"../../declaracoes":110}],129:[function(require,module,exports){
|
|
15593
15812
|
"use strict";
|
|
15594
15813
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15595
15814
|
exports.RegraFortalecerTipos = void 0;
|
|
@@ -15674,28 +15893,7 @@ class RegraFortalecerTipos {
|
|
|
15674
15893
|
}
|
|
15675
15894
|
exports.RegraFortalecerTipos = RegraFortalecerTipos;
|
|
15676
15895
|
|
|
15677
|
-
},{"../../construtos":62,"../../declaracoes":110,"../../inferenciador":
|
|
15678
|
-
"use strict";
|
|
15679
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15680
|
-
if (k2 === undefined) k2 = k;
|
|
15681
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
15682
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
15683
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
15684
|
-
}
|
|
15685
|
-
Object.defineProperty(o, k2, desc);
|
|
15686
|
-
}) : (function(o, m, k, k2) {
|
|
15687
|
-
if (k2 === undefined) k2 = k;
|
|
15688
|
-
o[k2] = m[k];
|
|
15689
|
-
}));
|
|
15690
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
15691
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15692
|
-
};
|
|
15693
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15694
|
-
__exportStar(require("./fortalecer-tipos"), exports);
|
|
15695
|
-
__exportStar(require("./convencao-nomenclatura"), exports);
|
|
15696
|
-
__exportStar(require("./paradigma-consistente"), exports);
|
|
15697
|
-
|
|
15698
|
-
},{"./convencao-nomenclatura":126,"./fortalecer-tipos":127,"./paradigma-consistente":129}],129:[function(require,module,exports){
|
|
15896
|
+
},{"../../construtos":62,"../../declaracoes":110,"../../inferenciador":138}],130:[function(require,module,exports){
|
|
15699
15897
|
"use strict";
|
|
15700
15898
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15701
15899
|
exports.RegraParadigmaConsistente = void 0;
|
|
@@ -15785,7 +15983,7 @@ class RegraParadigmaConsistente {
|
|
|
15785
15983
|
}
|
|
15786
15984
|
exports.RegraParadigmaConsistente = RegraParadigmaConsistente;
|
|
15787
15985
|
|
|
15788
|
-
},{"../../construtos/leia":64,"../../declaracoes":110,"../../lexador/mapeamento-paradigmas":
|
|
15986
|
+
},{"../../construtos/leia":64,"../../declaracoes":110,"../../lexador/mapeamento-paradigmas":213}],131:[function(require,module,exports){
|
|
15789
15987
|
"use strict";
|
|
15790
15988
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15791
15989
|
exports.ErroEmTempoDeExecucao = void 0;
|
|
@@ -15800,7 +15998,7 @@ class ErroEmTempoDeExecucao extends Error {
|
|
|
15800
15998
|
}
|
|
15801
15999
|
exports.ErroEmTempoDeExecucao = ErroEmTempoDeExecucao;
|
|
15802
16000
|
|
|
15803
|
-
},{}],
|
|
16001
|
+
},{}],132:[function(require,module,exports){
|
|
15804
16002
|
"use strict";
|
|
15805
16003
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15806
16004
|
if (k2 === undefined) k2 = k;
|
|
@@ -15819,7 +16017,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15819
16017
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15820
16018
|
__exportStar(require("./erro-em-tempo-de-execucao"), exports);
|
|
15821
16019
|
|
|
15822
|
-
},{"./erro-em-tempo-de-execucao":
|
|
16020
|
+
},{"./erro-em-tempo-de-execucao":131}],133:[function(require,module,exports){
|
|
15823
16021
|
"use strict";
|
|
15824
16022
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
15825
16023
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -16774,7 +16972,7 @@ class FormatadorDelegua {
|
|
|
16774
16972
|
}
|
|
16775
16973
|
exports.FormatadorDelegua = FormatadorDelegua;
|
|
16776
16974
|
|
|
16777
|
-
},{"../construtos":62,"../declaracoes":110,"../tipos-de-simbolos/delegua":
|
|
16975
|
+
},{"../construtos":62,"../declaracoes":110,"../tipos-de-simbolos/delegua":224}],134:[function(require,module,exports){
|
|
16778
16976
|
"use strict";
|
|
16779
16977
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16780
16978
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -17236,7 +17434,7 @@ class FormatadorPitugues {
|
|
|
17236
17434
|
}
|
|
17237
17435
|
exports.FormatadorPitugues = FormatadorPitugues;
|
|
17238
17436
|
|
|
17239
|
-
},{"../construtos":62,"../declaracoes":110,"../tipos-de-simbolos/pitugues":
|
|
17437
|
+
},{"../construtos":62,"../declaracoes":110,"../tipos-de-simbolos/pitugues":228}],135:[function(require,module,exports){
|
|
17240
17438
|
"use strict";
|
|
17241
17439
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
17242
17440
|
if (k2 === undefined) k2 = k;
|
|
@@ -17256,7 +17454,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17256
17454
|
__exportStar(require("./formatador-delegua"), exports);
|
|
17257
17455
|
__exportStar(require("./formatador-pitugues"), exports);
|
|
17258
17456
|
|
|
17259
|
-
},{"./formatador-delegua":
|
|
17457
|
+
},{"./formatador-delegua":133,"./formatador-pitugues":134}],136:[function(require,module,exports){
|
|
17260
17458
|
"use strict";
|
|
17261
17459
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17262
17460
|
exports.cyrb53 = cyrb53;
|
|
@@ -17300,7 +17498,7 @@ function uuidv4() {
|
|
|
17300
17498
|
});
|
|
17301
17499
|
}
|
|
17302
17500
|
|
|
17303
|
-
},{}],
|
|
17501
|
+
},{}],137:[function(require,module,exports){
|
|
17304
17502
|
"use strict";
|
|
17305
17503
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
17306
17504
|
if (k2 === undefined) k2 = k;
|
|
@@ -17329,7 +17527,7 @@ __exportStar(require("./interpretador"), exports);
|
|
|
17329
17527
|
__exportStar(require("./lexador"), exports);
|
|
17330
17528
|
__exportStar(require("./tradutores"), exports);
|
|
17331
17529
|
|
|
17332
|
-
},{"./analisador-semantico":6,"./avaliador-sintatico":21,"./construtos":62,"./declaracoes":110,"./estilizador":125,"./formatadores":
|
|
17530
|
+
},{"./analisador-semantico":6,"./avaliador-sintatico":21,"./construtos":62,"./declaracoes":110,"./estilizador":125,"./formatadores":135,"./geracao-identificadores":136,"./interfaces":150,"./interpretador":189,"./lexador":209,"./tradutores":232}],138:[function(require,module,exports){
|
|
17333
17531
|
"use strict";
|
|
17334
17532
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
17335
17533
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -17451,7 +17649,7 @@ function inferirTipoVariavel(variavel) {
|
|
|
17451
17649
|
}
|
|
17452
17650
|
}
|
|
17453
17651
|
|
|
17454
|
-
},{"./tipos-de-dados/delegua":
|
|
17652
|
+
},{"./tipos-de-dados/delegua":219,"./tipos-de-dados/primitivos":221,"./tipos-de-simbolos/delegua":224}],139:[function(require,module,exports){
|
|
17455
17653
|
"use strict";
|
|
17456
17654
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17457
17655
|
exports.InformacaoElementoSintatico = void 0;
|
|
@@ -17470,10 +17668,6 @@ class InformacaoElementoSintatico {
|
|
|
17470
17668
|
}
|
|
17471
17669
|
exports.InformacaoElementoSintatico = InformacaoElementoSintatico;
|
|
17472
17670
|
|
|
17473
|
-
},{}],139:[function(require,module,exports){
|
|
17474
|
-
"use strict";
|
|
17475
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17476
|
-
|
|
17477
17671
|
},{}],140:[function(require,module,exports){
|
|
17478
17672
|
"use strict";
|
|
17479
17673
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -17493,6 +17687,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17493
17687
|
},{}],144:[function(require,module,exports){
|
|
17494
17688
|
"use strict";
|
|
17495
17689
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17690
|
+
|
|
17691
|
+
},{}],145:[function(require,module,exports){
|
|
17692
|
+
"use strict";
|
|
17693
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17496
17694
|
exports.DiagnosticoSeveridade = void 0;
|
|
17497
17695
|
var DiagnosticoSeveridade;
|
|
17498
17696
|
(function (DiagnosticoSeveridade) {
|
|
@@ -17502,11 +17700,11 @@ var DiagnosticoSeveridade;
|
|
|
17502
17700
|
DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
|
|
17503
17701
|
})(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
|
|
17504
17702
|
|
|
17505
|
-
},{}],
|
|
17703
|
+
},{}],146:[function(require,module,exports){
|
|
17506
17704
|
"use strict";
|
|
17507
17705
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17508
17706
|
|
|
17509
|
-
},{}],
|
|
17707
|
+
},{}],147:[function(require,module,exports){
|
|
17510
17708
|
"use strict";
|
|
17511
17709
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
17512
17710
|
if (k2 === undefined) k2 = k;
|
|
@@ -17527,15 +17725,15 @@ __exportStar(require("./correcao-sugerida-interface"), exports);
|
|
|
17527
17725
|
__exportStar(require("./diagnostico-analisador-semantico"), exports);
|
|
17528
17726
|
__exportStar(require("./erro-interpretador-interface"), exports);
|
|
17529
17727
|
|
|
17530
|
-
},{"./correcao-sugerida-interface":
|
|
17728
|
+
},{"./correcao-sugerida-interface":144,"./diagnostico-analisador-semantico":145,"./erro-interpretador-interface":146}],148:[function(require,module,exports){
|
|
17531
17729
|
"use strict";
|
|
17532
17730
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17533
17731
|
|
|
17534
|
-
},{}],
|
|
17732
|
+
},{}],149:[function(require,module,exports){
|
|
17535
17733
|
"use strict";
|
|
17536
17734
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17537
17735
|
|
|
17538
|
-
},{}],
|
|
17736
|
+
},{}],150:[function(require,module,exports){
|
|
17539
17737
|
"use strict";
|
|
17540
17738
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
17541
17739
|
if (k2 === undefined) k2 = k;
|
|
@@ -17576,11 +17774,7 @@ __exportStar(require("./construtos"), exports);
|
|
|
17576
17774
|
__exportStar(require("./erros"), exports);
|
|
17577
17775
|
__exportStar(require("./retornos"), exports);
|
|
17578
17776
|
|
|
17579
|
-
},{"./avaliador-sintatico-interface":
|
|
17580
|
-
"use strict";
|
|
17581
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17582
|
-
|
|
17583
|
-
},{}],151:[function(require,module,exports){
|
|
17777
|
+
},{"./avaliador-sintatico-interface":140,"./componente-modulo-classe-interface":141,"./componente-modulo-funcao-interface":142,"./construtos":143,"./erros":147,"./estilizador/estilizador-interface":148,"./formatador-comum-interface":149,"./interpretador-com-depuracao-interface":151,"./interpretador-interface":152,"./lexador-interface":153,"./modulo-interface":154,"./parametro-interface":155,"./pilha-interface":156,"./primitiva-interface":157,"./resolvedor-interface":158,"./resultado-parcial-interpretador-interface":159,"./retornos":160,"./retornos/retorno-execucao-interface":163,"./simbolo-interface":166,"./tradutor-interface":167,"./variavel-interface":168,"./visitante-comum-interface":169,"./visitante-delegua-interface":170}],151:[function(require,module,exports){
|
|
17584
17778
|
"use strict";
|
|
17585
17779
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17586
17780
|
|
|
@@ -17614,6 +17808,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17614
17808
|
|
|
17615
17809
|
},{}],159:[function(require,module,exports){
|
|
17616
17810
|
"use strict";
|
|
17811
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17812
|
+
|
|
17813
|
+
},{}],160:[function(require,module,exports){
|
|
17814
|
+
"use strict";
|
|
17617
17815
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
17618
17816
|
if (k2 === undefined) k2 = k;
|
|
17619
17817
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -17635,11 +17833,7 @@ __exportStar(require("./retorno-execucao-interface"), exports);
|
|
|
17635
17833
|
__exportStar(require("./retorno-interpretador-interface"), exports);
|
|
17636
17834
|
__exportStar(require("./retorno-lexador"), exports);
|
|
17637
17835
|
|
|
17638
|
-
},{"./retorno-analisador-semantico":
|
|
17639
|
-
"use strict";
|
|
17640
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17641
|
-
|
|
17642
|
-
},{}],161:[function(require,module,exports){
|
|
17836
|
+
},{"./retorno-analisador-semantico":161,"./retorno-avaliador-sintatico":162,"./retorno-execucao-interface":163,"./retorno-interpretador-interface":164,"./retorno-lexador":165}],161:[function(require,module,exports){
|
|
17643
17837
|
"use strict";
|
|
17644
17838
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17645
17839
|
|
|
@@ -17677,6 +17871,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17677
17871
|
|
|
17678
17872
|
},{}],170:[function(require,module,exports){
|
|
17679
17873
|
"use strict";
|
|
17874
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17875
|
+
|
|
17876
|
+
},{}],171:[function(require,module,exports){
|
|
17877
|
+
"use strict";
|
|
17680
17878
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
17681
17879
|
if (k2 === undefined) k2 = k;
|
|
17682
17880
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -18277,7 +18475,7 @@ function obterAjudaFuncaoPadrao(funcaoPadrao) {
|
|
|
18277
18475
|
}
|
|
18278
18476
|
}
|
|
18279
18477
|
|
|
18280
|
-
},{"../bibliotecas/biblioteca-global":27,"../construtos":62,"./estruturas/delegua-funcao":
|
|
18478
|
+
},{"../bibliotecas/biblioteca-global":27,"../construtos":62,"./estruturas/delegua-funcao":177,"./estruturas/descritor-tipo-classe":178,"./estruturas/funcao-padrao":179,"./estruturas/objeto-delegua-classe":185}],172:[function(require,module,exports){
|
|
18281
18479
|
"use strict";
|
|
18282
18480
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18283
18481
|
exports.EspacoMemoria = void 0;
|
|
@@ -18302,7 +18500,7 @@ class EspacoMemoria {
|
|
|
18302
18500
|
}
|
|
18303
18501
|
exports.EspacoMemoria = EspacoMemoria;
|
|
18304
18502
|
|
|
18305
|
-
},{}],
|
|
18503
|
+
},{}],173:[function(require,module,exports){
|
|
18306
18504
|
"use strict";
|
|
18307
18505
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18308
18506
|
exports.Chamavel = void 0;
|
|
@@ -18316,7 +18514,7 @@ class Chamavel {
|
|
|
18316
18514
|
}
|
|
18317
18515
|
exports.Chamavel = Chamavel;
|
|
18318
18516
|
|
|
18319
|
-
},{}],
|
|
18517
|
+
},{}],174:[function(require,module,exports){
|
|
18320
18518
|
"use strict";
|
|
18321
18519
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18322
18520
|
exports.ClasseDeModulo = void 0;
|
|
@@ -18337,7 +18535,7 @@ class ClasseDeModulo extends chamavel_1.Chamavel {
|
|
|
18337
18535
|
}
|
|
18338
18536
|
exports.ClasseDeModulo = ClasseDeModulo;
|
|
18339
18537
|
|
|
18340
|
-
},{"./chamavel":
|
|
18538
|
+
},{"./chamavel":173}],175:[function(require,module,exports){
|
|
18341
18539
|
"use strict";
|
|
18342
18540
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18343
18541
|
exports.ClassePadrao = void 0;
|
|
@@ -18378,7 +18576,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
|
|
|
18378
18576
|
}
|
|
18379
18577
|
exports.ClassePadrao = ClassePadrao;
|
|
18380
18578
|
|
|
18381
|
-
},{"./chamavel":
|
|
18579
|
+
},{"./chamavel":173}],176:[function(require,module,exports){
|
|
18382
18580
|
"use strict";
|
|
18383
18581
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18384
18582
|
exports.DeleguaFuncaoNativa = void 0;
|
|
@@ -18421,7 +18619,7 @@ class DeleguaFuncaoNativa extends delegua_funcao_1.DeleguaFuncao {
|
|
|
18421
18619
|
}
|
|
18422
18620
|
exports.DeleguaFuncaoNativa = DeleguaFuncaoNativa;
|
|
18423
18621
|
|
|
18424
|
-
},{"./delegua-funcao":
|
|
18622
|
+
},{"./delegua-funcao":177}],177:[function(require,module,exports){
|
|
18425
18623
|
"use strict";
|
|
18426
18624
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18427
18625
|
exports.DeleguaFuncao = void 0;
|
|
@@ -18613,7 +18811,7 @@ function tipoDeDados(valor) {
|
|
|
18613
18811
|
}
|
|
18614
18812
|
}
|
|
18615
18813
|
|
|
18616
|
-
},{"../../declaracoes":110,"../../quebras":
|
|
18814
|
+
},{"../../declaracoes":110,"../../quebras":218,"../espaco-memoria":172,"./chamavel":173,"./objeto-delegua-classe":185}],178:[function(require,module,exports){
|
|
18617
18815
|
"use strict";
|
|
18618
18816
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18619
18817
|
exports.DescritorTipoClasse = void 0;
|
|
@@ -18927,7 +19125,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
|
|
|
18927
19125
|
}
|
|
18928
19126
|
exports.DescritorTipoClasse = DescritorTipoClasse;
|
|
18929
19127
|
|
|
18930
|
-
},{"../../excecoes":
|
|
19128
|
+
},{"../../excecoes":132,"./chamavel":173,"./metodo-polimorfico":181,"./objeto-delegua-classe":185}],179:[function(require,module,exports){
|
|
18931
19129
|
"use strict";
|
|
18932
19130
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18933
19131
|
exports.FuncaoPadrao = void 0;
|
|
@@ -18964,7 +19162,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
|
|
|
18964
19162
|
}
|
|
18965
19163
|
exports.FuncaoPadrao = FuncaoPadrao;
|
|
18966
19164
|
|
|
18967
|
-
},{"./chamavel":
|
|
19165
|
+
},{"./chamavel":173}],180:[function(require,module,exports){
|
|
18968
19166
|
"use strict";
|
|
18969
19167
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18970
19168
|
if (k2 === undefined) k2 = k;
|
|
@@ -18997,7 +19195,7 @@ __exportStar(require("./objeto-padrao"), exports);
|
|
|
18997
19195
|
__exportStar(require("./referencia-montao"), exports);
|
|
18998
19196
|
__exportStar(require("./super-proxy"), exports);
|
|
18999
19197
|
|
|
19000
|
-
},{"./chamavel":
|
|
19198
|
+
},{"./chamavel":173,"./classe-de-modulo":174,"./classe-padrao":175,"./delegua-funcao":177,"./delegua-funcao-nativa":176,"./descritor-tipo-classe":178,"./funcao-padrao":179,"./metodo-polimorfico":181,"./metodo-primitiva":182,"./modulo":183,"./objeto-base":184,"./objeto-delegua-classe":185,"./objeto-padrao":186,"./referencia-montao":187,"./super-proxy":188}],181:[function(require,module,exports){
|
|
19001
19199
|
"use strict";
|
|
19002
19200
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19003
19201
|
exports.MetodoPolimorfico = void 0;
|
|
@@ -19175,7 +19373,7 @@ class MetodoPolimorfico extends chamavel_1.Chamavel {
|
|
|
19175
19373
|
}
|
|
19176
19374
|
exports.MetodoPolimorfico = MetodoPolimorfico;
|
|
19177
19375
|
|
|
19178
|
-
},{"../../excecoes":
|
|
19376
|
+
},{"../../excecoes":132,"../../inferenciador":138,"./chamavel":173}],182:[function(require,module,exports){
|
|
19179
19377
|
"use strict";
|
|
19180
19378
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19181
19379
|
exports.MetodoPrimitiva = void 0;
|
|
@@ -19221,7 +19419,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
|
|
|
19221
19419
|
}
|
|
19222
19420
|
exports.MetodoPrimitiva = MetodoPrimitiva;
|
|
19223
19421
|
|
|
19224
|
-
},{"./chamavel":
|
|
19422
|
+
},{"./chamavel":173}],183:[function(require,module,exports){
|
|
19225
19423
|
"use strict";
|
|
19226
19424
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19227
19425
|
exports.DeleguaModulo = void 0;
|
|
@@ -19247,7 +19445,7 @@ class DeleguaModulo {
|
|
|
19247
19445
|
}
|
|
19248
19446
|
exports.DeleguaModulo = DeleguaModulo;
|
|
19249
19447
|
|
|
19250
|
-
},{}],
|
|
19448
|
+
},{}],184:[function(require,module,exports){
|
|
19251
19449
|
"use strict";
|
|
19252
19450
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19253
19451
|
exports.OBJETO_BASE = void 0;
|
|
@@ -19321,7 +19519,7 @@ function criarDescritorObjeto() {
|
|
|
19321
19519
|
}
|
|
19322
19520
|
exports.OBJETO_BASE = criarDescritorObjeto();
|
|
19323
19521
|
|
|
19324
|
-
},{"./delegua-funcao-nativa":
|
|
19522
|
+
},{"./delegua-funcao-nativa":176,"./descritor-tipo-classe":178}],185:[function(require,module,exports){
|
|
19325
19523
|
"use strict";
|
|
19326
19524
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19327
19525
|
exports.ObjetoDeleguaClasse = void 0;
|
|
@@ -19497,7 +19695,7 @@ class ObjetoDeleguaClasse {
|
|
|
19497
19695
|
}
|
|
19498
19696
|
exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
|
|
19499
19697
|
|
|
19500
|
-
},{"../../excecoes":
|
|
19698
|
+
},{"../../excecoes":132}],186:[function(require,module,exports){
|
|
19501
19699
|
"use strict";
|
|
19502
19700
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19503
19701
|
exports.ObjetoPadrao = void 0;
|
|
@@ -19531,7 +19729,7 @@ class ObjetoPadrao {
|
|
|
19531
19729
|
}
|
|
19532
19730
|
exports.ObjetoPadrao = ObjetoPadrao;
|
|
19533
19731
|
|
|
19534
|
-
},{}],
|
|
19732
|
+
},{}],187:[function(require,module,exports){
|
|
19535
19733
|
"use strict";
|
|
19536
19734
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19537
19735
|
exports.ReferenciaMontao = void 0;
|
|
@@ -19556,7 +19754,7 @@ class ReferenciaMontao {
|
|
|
19556
19754
|
}
|
|
19557
19755
|
exports.ReferenciaMontao = ReferenciaMontao;
|
|
19558
19756
|
|
|
19559
|
-
},{}],
|
|
19757
|
+
},{}],188:[function(require,module,exports){
|
|
19560
19758
|
"use strict";
|
|
19561
19759
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19562
19760
|
exports.SuperProxy = void 0;
|
|
@@ -19595,7 +19793,7 @@ class SuperProxy extends chamavel_1.Chamavel {
|
|
|
19595
19793
|
}
|
|
19596
19794
|
exports.SuperProxy = SuperProxy;
|
|
19597
19795
|
|
|
19598
|
-
},{"./chamavel":
|
|
19796
|
+
},{"./chamavel":173}],189:[function(require,module,exports){
|
|
19599
19797
|
"use strict";
|
|
19600
19798
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19601
19799
|
if (k2 === undefined) k2 = k;
|
|
@@ -19616,7 +19814,7 @@ __exportStar(require("./estruturas"), exports);
|
|
|
19616
19814
|
__exportStar(require("./interpretador"), exports);
|
|
19617
19815
|
__exportStar(require("./interpretador-base"), exports);
|
|
19618
19816
|
|
|
19619
|
-
},{"./estruturas":
|
|
19817
|
+
},{"./estruturas":180,"./interpretador":191,"./interpretador-base":190}],190:[function(require,module,exports){
|
|
19620
19818
|
(function (process,setImmediate){(function (){
|
|
19621
19819
|
"use strict";
|
|
19622
19820
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
@@ -19657,6 +19855,7 @@ class InterpretadorBase {
|
|
|
19657
19855
|
this.funcaoDeRetornoMesmaLinha = null;
|
|
19658
19856
|
this.interfaceDeEntrada = null; // Originalmente é `readline.Interface`
|
|
19659
19857
|
this.interfaceEntradaSaida = null;
|
|
19858
|
+
this.funcaoVerificarIteracao = null;
|
|
19660
19859
|
this.emDeclaracaoTente = false;
|
|
19661
19860
|
// typeName → methodName → DeleguaFuncao
|
|
19662
19861
|
this.extensoesGlobais = new Map();
|
|
@@ -21924,7 +22123,7 @@ class InterpretadorBase {
|
|
|
21924
22123
|
exports.InterpretadorBase = InterpretadorBase;
|
|
21925
22124
|
|
|
21926
22125
|
}).call(this)}).call(this,require('_process'),require("timers").setImmediate)
|
|
21927
|
-
},{"../avaliador-sintatico":21,"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../excecoes":
|
|
22126
|
+
},{"../avaliador-sintatico":21,"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../excecoes":132,"../inferenciador":138,"../lexador":209,"../quebras":218,"../tipos-de-dados/delegua":219,"../tipos-de-dados/primitivos":221,"../tipos-de-simbolos/delegua":224,"./espaco-memoria":172,"./estruturas":180,"./estruturas/metodo-primitiva":182,"./pilha-escopos-execucao":193,"_process":471,"browser-process-hrtime":417,"timers":474}],191:[function(require,module,exports){
|
|
21928
22127
|
"use strict";
|
|
21929
22128
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21930
22129
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -22189,6 +22388,9 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
22189
22388
|
!(retornoExecucao && retornoExecucao.valorRetornado instanceof quebras_1.Quebra)) &&
|
|
22190
22389
|
this.eVerdadeiro(await this.avaliar(enquanto.condicao))) {
|
|
22191
22390
|
try {
|
|
22391
|
+
if (this.funcaoVerificarIteracao) {
|
|
22392
|
+
await this.funcaoVerificarIteracao();
|
|
22393
|
+
}
|
|
22192
22394
|
retornoExecucao = await this.executar(enquanto.corpo);
|
|
22193
22395
|
if (retornoExecucao && retornoExecucao.valorRetornado instanceof quebras_1.SustarQuebra) {
|
|
22194
22396
|
if (acumularRetornos) {
|
|
@@ -22231,6 +22433,9 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
22231
22433
|
const retornos = [];
|
|
22232
22434
|
do {
|
|
22233
22435
|
try {
|
|
22436
|
+
if (this.funcaoVerificarIteracao) {
|
|
22437
|
+
await this.funcaoVerificarIteracao();
|
|
22438
|
+
}
|
|
22234
22439
|
retornoExecucao = await this.executar(fazer.caminhoFazer);
|
|
22235
22440
|
if (retornoExecucao && retornoExecucao.valorRetornado instanceof quebras_1.SustarQuebra) {
|
|
22236
22441
|
if (acumularRetornos) {
|
|
@@ -22283,6 +22488,9 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
22283
22488
|
if (para.condicao !== null && !this.eVerdadeiro(await this.avaliar(para.condicao))) {
|
|
22284
22489
|
break;
|
|
22285
22490
|
}
|
|
22491
|
+
if (this.funcaoVerificarIteracao) {
|
|
22492
|
+
await this.funcaoVerificarIteracao();
|
|
22493
|
+
}
|
|
22286
22494
|
retornoExecucao = await this.executar(para.corpo);
|
|
22287
22495
|
if (retornoExecucao && retornoExecucao.valorRetornado instanceof quebras_1.SustarQuebra) {
|
|
22288
22496
|
if (acumularRetornos) {
|
|
@@ -22338,6 +22546,9 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
22338
22546
|
!(retornoExecucao && retornoExecucao.valorRetornado instanceof quebras_1.Quebra)) &&
|
|
22339
22547
|
paraCada.posicaoAtual < valorVetorOuDicionarioResolvido.length) {
|
|
22340
22548
|
try {
|
|
22549
|
+
if (this.funcaoVerificarIteracao) {
|
|
22550
|
+
await this.funcaoVerificarIteracao();
|
|
22551
|
+
}
|
|
22341
22552
|
if (paraCada.variavelIteracao instanceof construtos_1.Variavel) {
|
|
22342
22553
|
this.pilhaEscoposExecucao.definirVariavel(paraCada.variavelIteracao.simbolo.lexema, valorVetorOuDicionarioResolvido[paraCada.posicaoAtual]);
|
|
22343
22554
|
}
|
|
@@ -23286,7 +23497,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
23286
23497
|
}
|
|
23287
23498
|
exports.Interpretador = Interpretador;
|
|
23288
23499
|
|
|
23289
|
-
},{"../bibliotecas/dialetos/pitugues/primitivas-tupla":28,"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-numero":30,"../bibliotecas/primitivas-texto":31,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../declaracoes":110,"../excecoes":
|
|
23500
|
+
},{"../bibliotecas/dialetos/pitugues/primitivas-tupla":28,"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-numero":30,"../bibliotecas/primitivas-texto":31,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../declaracoes":110,"../excecoes":132,"../inferenciador":138,"../quebras":218,"../tipos-de-dados/delegua":219,"../tipos-de-dados/primitivos":221,"../tipos-de-simbolos/delegua":224,"./comum":171,"./estruturas":180,"./interpretador-base":190,"./montao":192}],192:[function(require,module,exports){
|
|
23290
23501
|
"use strict";
|
|
23291
23502
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23292
23503
|
exports.Montao = void 0;
|
|
@@ -23343,7 +23554,7 @@ class Montao {
|
|
|
23343
23554
|
}
|
|
23344
23555
|
exports.Montao = Montao;
|
|
23345
23556
|
|
|
23346
|
-
},{"../excecoes":
|
|
23557
|
+
},{"../excecoes":132,"../geracao-identificadores":136}],193:[function(require,module,exports){
|
|
23347
23558
|
"use strict";
|
|
23348
23559
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
23349
23560
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -23676,7 +23887,7 @@ class PilhaEscoposExecucao {
|
|
|
23676
23887
|
}
|
|
23677
23888
|
exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
|
|
23678
23889
|
|
|
23679
|
-
},{"../excecoes":
|
|
23890
|
+
},{"../excecoes":132,"../inferenciador":138,"../lexador":209,"../tipos-de-dados/delegua":219,"./estruturas":180}],194:[function(require,module,exports){
|
|
23680
23891
|
"use strict";
|
|
23681
23892
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
23682
23893
|
if (k2 === undefined) k2 = k;
|
|
@@ -23701,7 +23912,7 @@ __exportStar(require("./lexador-portugol-ipt"), exports);
|
|
|
23701
23912
|
__exportStar(require("./lexador-prisma"), exports);
|
|
23702
23913
|
__exportStar(require("./lexador-tenda"), exports);
|
|
23703
23914
|
|
|
23704
|
-
},{"./lexador-calango":
|
|
23915
|
+
},{"./lexador-calango":195,"./lexador-egua-classico":196,"./lexador-guarani":197,"./lexador-pitugues":198,"./lexador-portugol-ipt":199,"./lexador-prisma":200,"./lexador-tenda":201}],195:[function(require,module,exports){
|
|
23705
23916
|
"use strict";
|
|
23706
23917
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
23707
23918
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -24014,7 +24225,7 @@ class LexadorCalango {
|
|
|
24014
24225
|
}
|
|
24015
24226
|
exports.LexadorCalango = LexadorCalango;
|
|
24016
24227
|
|
|
24017
|
-
},{"../../tipos-de-simbolos/calango":
|
|
24228
|
+
},{"../../tipos-de-simbolos/calango":222,"../simbolo":217,"./palavras-reservadas/calango":202}],196:[function(require,module,exports){
|
|
24018
24229
|
"use strict";
|
|
24019
24230
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
24020
24231
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -24307,7 +24518,7 @@ class LexadorEguaClassico {
|
|
|
24307
24518
|
}
|
|
24308
24519
|
exports.LexadorEguaClassico = LexadorEguaClassico;
|
|
24309
24520
|
|
|
24310
|
-
},{"../../tipos-de-simbolos/egua-classico":
|
|
24521
|
+
},{"../../tipos-de-simbolos/egua-classico":225,"../simbolo":217,"./palavras-reservadas/egua-classico":203}],197:[function(require,module,exports){
|
|
24311
24522
|
"use strict";
|
|
24312
24523
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
24313
24524
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -24426,7 +24637,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
|
|
|
24426
24637
|
}
|
|
24427
24638
|
exports.LexadorGuarani = LexadorGuarani;
|
|
24428
24639
|
|
|
24429
|
-
},{"../../tipos-de-simbolos/guarani":
|
|
24640
|
+
},{"../../tipos-de-simbolos/guarani":226,"../lexador-base":211,"./palavras-reservadas/guarani":204}],198:[function(require,module,exports){
|
|
24430
24641
|
"use strict";
|
|
24431
24642
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
24432
24643
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -24951,7 +25162,7 @@ class LexadorPitugues {
|
|
|
24951
25162
|
}
|
|
24952
25163
|
exports.LexadorPitugues = LexadorPitugues;
|
|
24953
25164
|
|
|
24954
|
-
},{"../../tipos-de-simbolos/pitugues":
|
|
25165
|
+
},{"../../tipos-de-simbolos/pitugues":228,"../simbolo":217,"./palavras-reservadas/pitugues":205,"browser-process-hrtime":417}],199:[function(require,module,exports){
|
|
24955
25166
|
"use strict";
|
|
24956
25167
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
24957
25168
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -25208,7 +25419,7 @@ class LexadorPortugolIpt {
|
|
|
25208
25419
|
}
|
|
25209
25420
|
exports.LexadorPortugolIpt = LexadorPortugolIpt;
|
|
25210
25421
|
|
|
25211
|
-
},{"../../tipos-de-simbolos/portugol-ipt":
|
|
25422
|
+
},{"../../tipos-de-simbolos/portugol-ipt":229,"../simbolo":217,"./palavras-reservadas/portugol-ipt":206}],200:[function(require,module,exports){
|
|
25212
25423
|
"use strict";
|
|
25213
25424
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25214
25425
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -25609,7 +25820,7 @@ class LexadorPrisma {
|
|
|
25609
25820
|
}
|
|
25610
25821
|
exports.LexadorPrisma = LexadorPrisma;
|
|
25611
25822
|
|
|
25612
|
-
},{"../../tipos-de-simbolos/prisma":
|
|
25823
|
+
},{"../../tipos-de-simbolos/prisma":230,"../simbolo":217,"./palavras-reservadas/prisma":207,"browser-process-hrtime":417}],201:[function(require,module,exports){
|
|
25613
25824
|
"use strict";
|
|
25614
25825
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25615
25826
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26003,7 +26214,7 @@ class LexadorTenda {
|
|
|
26003
26214
|
}
|
|
26004
26215
|
exports.LexadorTenda = LexadorTenda;
|
|
26005
26216
|
|
|
26006
|
-
},{"../../tipos-de-simbolos/tenda":
|
|
26217
|
+
},{"../../tipos-de-simbolos/tenda":231,"../simbolo":217,"./palavras-reservadas/tenda":208,"browser-process-hrtime":417}],202:[function(require,module,exports){
|
|
26007
26218
|
"use strict";
|
|
26008
26219
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26009
26220
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26051,7 +26262,7 @@ exports.default = {
|
|
|
26051
26262
|
verdadeiro: calango_1.default.VERDADEIRO,
|
|
26052
26263
|
};
|
|
26053
26264
|
|
|
26054
|
-
},{"../../../tipos-de-simbolos/calango":
|
|
26265
|
+
},{"../../../tipos-de-simbolos/calango":222}],203:[function(require,module,exports){
|
|
26055
26266
|
"use strict";
|
|
26056
26267
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26057
26268
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26092,7 +26303,7 @@ exports.palavrasReservadas = {
|
|
|
26092
26303
|
verdadeiro: egua_classico_1.default.VERDADEIRO,
|
|
26093
26304
|
};
|
|
26094
26305
|
|
|
26095
|
-
},{"../../../tipos-de-simbolos/egua-classico":
|
|
26306
|
+
},{"../../../tipos-de-simbolos/egua-classico":225}],204:[function(require,module,exports){
|
|
26096
26307
|
"use strict";
|
|
26097
26308
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26098
26309
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26104,7 +26315,7 @@ exports.palavrasReservadas = {
|
|
|
26104
26315
|
hai: guarani_1.default.HAI,
|
|
26105
26316
|
};
|
|
26106
26317
|
|
|
26107
|
-
},{"../../../tipos-de-simbolos/guarani":
|
|
26318
|
+
},{"../../../tipos-de-simbolos/guarani":226}],205:[function(require,module,exports){
|
|
26108
26319
|
"use strict";
|
|
26109
26320
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26110
26321
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26168,7 +26379,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
26168
26379
|
verdadeiro: pitugues_1.default.VERDADEIRO,
|
|
26169
26380
|
};
|
|
26170
26381
|
|
|
26171
|
-
},{"../../../tipos-de-simbolos/pitugues":
|
|
26382
|
+
},{"../../../tipos-de-simbolos/pitugues":228}],206:[function(require,module,exports){
|
|
26172
26383
|
"use strict";
|
|
26173
26384
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26174
26385
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26190,7 +26401,7 @@ exports.palavrasReservadas = {
|
|
|
26190
26401
|
senão: portugol_ipt_1.default.SENAO,
|
|
26191
26402
|
};
|
|
26192
26403
|
|
|
26193
|
-
},{"../../../tipos-de-simbolos/portugol-ipt":
|
|
26404
|
+
},{"../../../tipos-de-simbolos/portugol-ipt":229}],207:[function(require,module,exports){
|
|
26194
26405
|
"use strict";
|
|
26195
26406
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26196
26407
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26241,7 +26452,7 @@ exports.palavrasReservadas = {
|
|
|
26241
26452
|
verdadeiro: prisma_1.default.VERDADEIRO,
|
|
26242
26453
|
};
|
|
26243
26454
|
|
|
26244
|
-
},{"../../../tipos-de-simbolos/prisma":
|
|
26455
|
+
},{"../../../tipos-de-simbolos/prisma":230}],208:[function(require,module,exports){
|
|
26245
26456
|
"use strict";
|
|
26246
26457
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26247
26458
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26299,7 +26510,7 @@ exports.palavrasReservadas = {
|
|
|
26299
26510
|
Texto: tenda_1.default.BIBLIOTECA_GLOBAL,
|
|
26300
26511
|
};
|
|
26301
26512
|
|
|
26302
|
-
},{"../../../tipos-de-simbolos/tenda":
|
|
26513
|
+
},{"../../../tipos-de-simbolos/tenda":231}],209:[function(require,module,exports){
|
|
26303
26514
|
"use strict";
|
|
26304
26515
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
26305
26516
|
if (k2 === undefined) k2 = k;
|
|
@@ -26322,7 +26533,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
|
|
|
26322
26533
|
__exportStar(require("./micro-lexador"), exports);
|
|
26323
26534
|
__exportStar(require("./simbolo"), exports);
|
|
26324
26535
|
|
|
26325
|
-
},{"./dialetos":
|
|
26536
|
+
},{"./dialetos":194,"./lexador":212,"./lexador-base-linha-unica":210,"./micro-lexador":215,"./simbolo":217}],210:[function(require,module,exports){
|
|
26326
26537
|
"use strict";
|
|
26327
26538
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26328
26539
|
exports.LexadorBaseLinhaUnica = void 0;
|
|
@@ -26411,7 +26622,7 @@ class LexadorBaseLinhaUnica {
|
|
|
26411
26622
|
}
|
|
26412
26623
|
exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
|
|
26413
26624
|
|
|
26414
|
-
},{"./simbolo":
|
|
26625
|
+
},{"./simbolo":217}],211:[function(require,module,exports){
|
|
26415
26626
|
"use strict";
|
|
26416
26627
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26417
26628
|
exports.LexadorBase = void 0;
|
|
@@ -26550,7 +26761,7 @@ class LexadorBase {
|
|
|
26550
26761
|
}
|
|
26551
26762
|
exports.LexadorBase = LexadorBase;
|
|
26552
26763
|
|
|
26553
|
-
},{"./simbolo":
|
|
26764
|
+
},{"./simbolo":217}],212:[function(require,module,exports){
|
|
26554
26765
|
"use strict";
|
|
26555
26766
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26556
26767
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27203,7 +27414,7 @@ class Lexador {
|
|
|
27203
27414
|
}
|
|
27204
27415
|
exports.Lexador = Lexador;
|
|
27205
27416
|
|
|
27206
|
-
},{"../tipos-de-simbolos/delegua":
|
|
27417
|
+
},{"../tipos-de-simbolos/delegua":224,"./palavras-reservadas":216,"./simbolo":217,"browser-process-hrtime":417}],213:[function(require,module,exports){
|
|
27207
27418
|
"use strict";
|
|
27208
27419
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27209
27420
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27386,7 +27597,7 @@ function pertenceAoParadigma(lexema, paradigma) {
|
|
|
27386
27597
|
return paradigmaLexema === paradigma;
|
|
27387
27598
|
}
|
|
27388
27599
|
|
|
27389
|
-
},{"../tipos-de-simbolos/delegua":
|
|
27600
|
+
},{"../tipos-de-simbolos/delegua":224}],214:[function(require,module,exports){
|
|
27390
27601
|
"use strict";
|
|
27391
27602
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27392
27603
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27606,7 +27817,7 @@ class MicroLexadorPitugues {
|
|
|
27606
27817
|
}
|
|
27607
27818
|
exports.MicroLexadorPitugues = MicroLexadorPitugues;
|
|
27608
27819
|
|
|
27609
|
-
},{"../tipos-de-simbolos/pitugues":
|
|
27820
|
+
},{"../tipos-de-simbolos/pitugues":228,"./palavras-reservadas":216,"./simbolo":217}],215:[function(require,module,exports){
|
|
27610
27821
|
"use strict";
|
|
27611
27822
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27612
27823
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27844,7 +28055,7 @@ class MicroLexador {
|
|
|
27844
28055
|
}
|
|
27845
28056
|
exports.MicroLexador = MicroLexador;
|
|
27846
28057
|
|
|
27847
|
-
},{"../tipos-de-simbolos/microgramaticas/delegua":
|
|
28058
|
+
},{"../tipos-de-simbolos/microgramaticas/delegua":227,"./palavras-reservadas":216,"./simbolo":217}],216:[function(require,module,exports){
|
|
27848
28059
|
"use strict";
|
|
27849
28060
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27850
28061
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27943,7 +28154,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
27943
28154
|
verdadeiro: delegua_1.default.VERDADEIRO,
|
|
27944
28155
|
};
|
|
27945
28156
|
|
|
27946
|
-
},{"../tipos-de-simbolos/delegua":
|
|
28157
|
+
},{"../tipos-de-simbolos/delegua":224}],217:[function(require,module,exports){
|
|
27947
28158
|
"use strict";
|
|
27948
28159
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27949
28160
|
exports.Simbolo = void 0;
|
|
@@ -27964,7 +28175,7 @@ class Simbolo {
|
|
|
27964
28175
|
}
|
|
27965
28176
|
exports.Simbolo = Simbolo;
|
|
27966
28177
|
|
|
27967
|
-
},{}],
|
|
28178
|
+
},{}],218:[function(require,module,exports){
|
|
27968
28179
|
"use strict";
|
|
27969
28180
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27970
28181
|
exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
|
|
@@ -27989,7 +28200,7 @@ class ContinuarQuebra extends Quebra {
|
|
|
27989
28200
|
}
|
|
27990
28201
|
exports.ContinuarQuebra = ContinuarQuebra;
|
|
27991
28202
|
|
|
27992
|
-
},{}],
|
|
28203
|
+
},{}],219:[function(require,module,exports){
|
|
27993
28204
|
"use strict";
|
|
27994
28205
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27995
28206
|
exports.default = {
|
|
@@ -28023,7 +28234,7 @@ exports.default = {
|
|
|
28023
28234
|
VETOR_TEXTO: 'texto[]',
|
|
28024
28235
|
};
|
|
28025
28236
|
|
|
28026
|
-
},{}],
|
|
28237
|
+
},{}],220:[function(require,module,exports){
|
|
28027
28238
|
"use strict";
|
|
28028
28239
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28029
28240
|
exports.default = {
|
|
@@ -28053,7 +28264,7 @@ exports.default = {
|
|
|
28053
28264
|
VETOR_TEXTO: 'texto[]',
|
|
28054
28265
|
};
|
|
28055
28266
|
|
|
28056
|
-
},{}],
|
|
28267
|
+
},{}],221:[function(require,module,exports){
|
|
28057
28268
|
"use strict";
|
|
28058
28269
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28059
28270
|
exports.default = {
|
|
@@ -28072,7 +28283,7 @@ exports.default = {
|
|
|
28072
28283
|
TEXTO: 'string',
|
|
28073
28284
|
};
|
|
28074
28285
|
|
|
28075
|
-
},{}],
|
|
28286
|
+
},{}],222:[function(require,module,exports){
|
|
28076
28287
|
"use strict";
|
|
28077
28288
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28078
28289
|
exports.default = {
|
|
@@ -28144,7 +28355,7 @@ exports.default = {
|
|
|
28144
28355
|
VIRGULA: 'VIRGULA',
|
|
28145
28356
|
};
|
|
28146
28357
|
|
|
28147
|
-
},{}],
|
|
28358
|
+
},{}],223:[function(require,module,exports){
|
|
28148
28359
|
"use strict";
|
|
28149
28360
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28150
28361
|
exports.default = {
|
|
@@ -28171,7 +28382,7 @@ exports.default = {
|
|
|
28171
28382
|
VIRGULA: 'VIRGULA',
|
|
28172
28383
|
};
|
|
28173
28384
|
|
|
28174
|
-
},{}],
|
|
28385
|
+
},{}],224:[function(require,module,exports){
|
|
28175
28386
|
"use strict";
|
|
28176
28387
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28177
28388
|
exports.default = {
|
|
@@ -28285,7 +28496,7 @@ exports.default = {
|
|
|
28285
28496
|
VIRGULA: 'VIRGULA',
|
|
28286
28497
|
};
|
|
28287
28498
|
|
|
28288
|
-
},{}],
|
|
28499
|
+
},{}],225:[function(require,module,exports){
|
|
28289
28500
|
"use strict";
|
|
28290
28501
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28291
28502
|
exports.default = {
|
|
@@ -28363,7 +28574,7 @@ exports.default = {
|
|
|
28363
28574
|
VIRGULA: 'VIRGULA',
|
|
28364
28575
|
};
|
|
28365
28576
|
|
|
28366
|
-
},{}],
|
|
28577
|
+
},{}],226:[function(require,module,exports){
|
|
28367
28578
|
"use strict";
|
|
28368
28579
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28369
28580
|
exports.default = {
|
|
@@ -28380,7 +28591,7 @@ exports.default = {
|
|
|
28380
28591
|
VIRGULA: 'VIRGULA',
|
|
28381
28592
|
};
|
|
28382
28593
|
|
|
28383
|
-
},{}],
|
|
28594
|
+
},{}],227:[function(require,module,exports){
|
|
28384
28595
|
"use strict";
|
|
28385
28596
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28386
28597
|
exports.default = {
|
|
@@ -28433,7 +28644,7 @@ exports.default = {
|
|
|
28433
28644
|
VIRGULA: 'VIRGULA',
|
|
28434
28645
|
};
|
|
28435
28646
|
|
|
28436
|
-
},{}],
|
|
28647
|
+
},{}],228:[function(require,module,exports){
|
|
28437
28648
|
"use strict";
|
|
28438
28649
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28439
28650
|
exports.default = {
|
|
@@ -28525,7 +28736,7 @@ exports.default = {
|
|
|
28525
28736
|
VIRGULA: 'VIRGULA',
|
|
28526
28737
|
};
|
|
28527
28738
|
|
|
28528
|
-
},{}],
|
|
28739
|
+
},{}],229:[function(require,module,exports){
|
|
28529
28740
|
"use strict";
|
|
28530
28741
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28531
28742
|
exports.default = {
|
|
@@ -28564,7 +28775,7 @@ exports.default = {
|
|
|
28564
28775
|
VIRGULA: 'VIRGULA',
|
|
28565
28776
|
};
|
|
28566
28777
|
|
|
28567
|
-
},{}],
|
|
28778
|
+
},{}],230:[function(require,module,exports){
|
|
28568
28779
|
"use strict";
|
|
28569
28780
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28570
28781
|
exports.default = {
|
|
@@ -28648,7 +28859,7 @@ exports.default = {
|
|
|
28648
28859
|
VIRGULA: 'VIRGULA',
|
|
28649
28860
|
};
|
|
28650
28861
|
|
|
28651
|
-
},{}],
|
|
28862
|
+
},{}],231:[function(require,module,exports){
|
|
28652
28863
|
"use strict";
|
|
28653
28864
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28654
28865
|
// Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
|
|
@@ -28743,7 +28954,7 @@ exports.default = {
|
|
|
28743
28954
|
VIRGULA: 'VIRGULA',
|
|
28744
28955
|
};
|
|
28745
28956
|
|
|
28746
|
-
},{}],
|
|
28957
|
+
},{}],232:[function(require,module,exports){
|
|
28747
28958
|
"use strict";
|
|
28748
28959
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
28749
28960
|
if (k2 === undefined) k2 = k;
|
|
@@ -28776,7 +28987,7 @@ __exportStar(require("./tradutor-reverso-python"), exports);
|
|
|
28776
28987
|
__exportStar(require("./tradutor-reverso-tenda"), exports);
|
|
28777
28988
|
__exportStar(require("./tradutor-ruby"), exports);
|
|
28778
28989
|
|
|
28779
|
-
},{"./tradutor-assembly-arm":
|
|
28990
|
+
},{"./tradutor-assembly-arm":241,"./tradutor-assembly-risc-v":242,"./tradutor-assembly-x64":243,"./tradutor-assemblyscript":244,"./tradutor-calango":245,"./tradutor-elixir":246,"./tradutor-javascript":247,"./tradutor-mermaidjs":248,"./tradutor-portugol-ipt":249,"./tradutor-python":250,"./tradutor-reverso-javascript":251,"./tradutor-reverso-python":252,"./tradutor-reverso-tenda":253,"./tradutor-ruby":254,"./tradutor-webassembly":255}],233:[function(require,module,exports){
|
|
28780
28991
|
"use strict";
|
|
28781
28992
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28782
28993
|
exports.ArestaFluxograma = void 0;
|
|
@@ -28788,7 +28999,7 @@ class ArestaFluxograma {
|
|
|
28788
28999
|
}
|
|
28789
29000
|
exports.ArestaFluxograma = ArestaFluxograma;
|
|
28790
29001
|
|
|
28791
|
-
},{}],
|
|
29002
|
+
},{}],234:[function(require,module,exports){
|
|
28792
29003
|
"use strict";
|
|
28793
29004
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
28794
29005
|
if (k2 === undefined) k2 = k;
|
|
@@ -28811,7 +29022,7 @@ __exportStar(require("./subgrafo-funcao"), exports);
|
|
|
28811
29022
|
__exportStar(require("./subgrafo-metodo"), exports);
|
|
28812
29023
|
__exportStar(require("./vertice-fluxograma"), exports);
|
|
28813
29024
|
|
|
28814
|
-
},{"./aresta-fluxograma":
|
|
29025
|
+
},{"./aresta-fluxograma":233,"./subgrafo-classe":235,"./subgrafo-funcao":236,"./subgrafo-metodo":237,"./vertice-fluxograma":238}],235:[function(require,module,exports){
|
|
28815
29026
|
"use strict";
|
|
28816
29027
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28817
29028
|
exports.SubgrafoClasse = void 0;
|
|
@@ -28857,7 +29068,7 @@ class SubgrafoClasse {
|
|
|
28857
29068
|
}
|
|
28858
29069
|
exports.SubgrafoClasse = SubgrafoClasse;
|
|
28859
29070
|
|
|
28860
|
-
},{}],
|
|
29071
|
+
},{}],236:[function(require,module,exports){
|
|
28861
29072
|
"use strict";
|
|
28862
29073
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28863
29074
|
exports.SubgrafoFuncao = void 0;
|
|
@@ -28872,7 +29083,7 @@ class SubgrafoFuncao {
|
|
|
28872
29083
|
}
|
|
28873
29084
|
exports.SubgrafoFuncao = SubgrafoFuncao;
|
|
28874
29085
|
|
|
28875
|
-
},{}],
|
|
29086
|
+
},{}],237:[function(require,module,exports){
|
|
28876
29087
|
"use strict";
|
|
28877
29088
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28878
29089
|
exports.SubgrafoMetodo = void 0;
|
|
@@ -28889,7 +29100,7 @@ class SubgrafoMetodo {
|
|
|
28889
29100
|
}
|
|
28890
29101
|
exports.SubgrafoMetodo = SubgrafoMetodo;
|
|
28891
29102
|
|
|
28892
|
-
},{}],
|
|
29103
|
+
},{}],238:[function(require,module,exports){
|
|
28893
29104
|
"use strict";
|
|
28894
29105
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28895
29106
|
exports.VerticeFluxograma = void 0;
|
|
@@ -28906,7 +29117,7 @@ class VerticeFluxograma {
|
|
|
28906
29117
|
}
|
|
28907
29118
|
exports.VerticeFluxograma = VerticeFluxograma;
|
|
28908
29119
|
|
|
28909
|
-
},{}],
|
|
29120
|
+
},{}],239:[function(require,module,exports){
|
|
28910
29121
|
"use strict";
|
|
28911
29122
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
28912
29123
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -30146,7 +30357,7 @@ __decorate([
|
|
|
30146
30357
|
Decorators_1.Override
|
|
30147
30358
|
], Python3Lexer.prototype, "nextToken", null);
|
|
30148
30359
|
|
|
30149
|
-
},{"./python3-parser":
|
|
30360
|
+
},{"./python3-parser":240,"antlr4ts/CommonToken":265,"antlr4ts/Decorators":269,"antlr4ts/Lexer":277,"antlr4ts/Token":294,"antlr4ts/VocabularyImpl":300,"antlr4ts/atn/ATNDeserializer":306,"antlr4ts/atn/LexerATNSimulator":327,"antlr4ts/misc/Utils":388}],240:[function(require,module,exports){
|
|
30150
30361
|
"use strict";
|
|
30151
30362
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
30152
30363
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -41393,7 +41604,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
41393
41604
|
}
|
|
41394
41605
|
exports.Yield_argContext = Yield_argContext;
|
|
41395
41606
|
|
|
41396
|
-
},{"antlr4ts/FailedPredicateException":
|
|
41607
|
+
},{"antlr4ts/FailedPredicateException":273,"antlr4ts/NoViableAltException":281,"antlr4ts/Parser":282,"antlr4ts/ParserRuleContext":285,"antlr4ts/RecognitionException":288,"antlr4ts/Token":294,"antlr4ts/VocabularyImpl":300,"antlr4ts/atn/ATN":302,"antlr4ts/atn/ATNDeserializer":306,"antlr4ts/atn/ParserATNSimulator":343,"antlr4ts/misc/Utils":388}],241:[function(require,module,exports){
|
|
41397
41608
|
"use strict";
|
|
41398
41609
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
41399
41610
|
exports.TradutorAssemblyARM = void 0;
|
|
@@ -42105,7 +42316,7 @@ ${labelFim}:`;
|
|
|
42105
42316
|
}
|
|
42106
42317
|
exports.TradutorAssemblyARM = TradutorAssemblyARM;
|
|
42107
42318
|
|
|
42108
|
-
},{"../construtos":62,"../declaracoes":110}],
|
|
42319
|
+
},{"../construtos":62,"../declaracoes":110}],242:[function(require,module,exports){
|
|
42109
42320
|
"use strict";
|
|
42110
42321
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
42111
42322
|
exports.TradutorAssemblyRISCV = void 0;
|
|
@@ -42781,7 +42992,7 @@ ${labelSenao}:`;
|
|
|
42781
42992
|
}
|
|
42782
42993
|
exports.TradutorAssemblyRISCV = TradutorAssemblyRISCV;
|
|
42783
42994
|
|
|
42784
|
-
},{"../construtos":62,"../declaracoes":110}],
|
|
42995
|
+
},{"../construtos":62,"../declaracoes":110}],243:[function(require,module,exports){
|
|
42785
42996
|
"use strict";
|
|
42786
42997
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
42787
42998
|
exports.TradutorAssemblyX64 = void 0;
|
|
@@ -43556,7 +43767,7 @@ __delegua_print_int:
|
|
|
43556
43767
|
}
|
|
43557
43768
|
exports.TradutorAssemblyX64 = TradutorAssemblyX64;
|
|
43558
43769
|
|
|
43559
|
-
},{"../construtos":62,"../declaracoes":110}],
|
|
43770
|
+
},{"../construtos":62,"../declaracoes":110}],244:[function(require,module,exports){
|
|
43560
43771
|
"use strict";
|
|
43561
43772
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
43562
43773
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -44762,7 +44973,7 @@ class TradutorAssemblyScript {
|
|
|
44762
44973
|
}
|
|
44763
44974
|
exports.TradutorAssemblyScript = TradutorAssemblyScript;
|
|
44764
44975
|
|
|
44765
|
-
},{"../construtos":62,"../declaracoes":110,"../tipos-de-simbolos/delegua":
|
|
44976
|
+
},{"../construtos":62,"../declaracoes":110,"../tipos-de-simbolos/delegua":224}],245:[function(require,module,exports){
|
|
44766
44977
|
"use strict";
|
|
44767
44978
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44768
44979
|
exports.TradutorCalango = void 0;
|
|
@@ -44817,7 +45028,7 @@ class TradutorCalango {
|
|
|
44817
45028
|
}
|
|
44818
45029
|
exports.TradutorCalango = TradutorCalango;
|
|
44819
45030
|
|
|
44820
|
-
},{}],
|
|
45031
|
+
},{}],246:[function(require,module,exports){
|
|
44821
45032
|
"use strict";
|
|
44822
45033
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
44823
45034
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -45768,7 +45979,7 @@ class TradutorElixir {
|
|
|
45768
45979
|
}
|
|
45769
45980
|
exports.TradutorElixir = TradutorElixir;
|
|
45770
45981
|
|
|
45771
|
-
},{"../tipos-de-simbolos/delegua":
|
|
45982
|
+
},{"../tipos-de-simbolos/delegua":224}],247:[function(require,module,exports){
|
|
45772
45983
|
"use strict";
|
|
45773
45984
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
45774
45985
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -46560,7 +46771,7 @@ class TradutorJavaScript {
|
|
|
46560
46771
|
}
|
|
46561
46772
|
exports.TradutorJavaScript = TradutorJavaScript;
|
|
46562
46773
|
|
|
46563
|
-
},{"../construtos":62,"../declaracoes":110,"../tipos-de-simbolos/delegua":
|
|
46774
|
+
},{"../construtos":62,"../declaracoes":110,"../tipos-de-simbolos/delegua":224}],248:[function(require,module,exports){
|
|
46564
46775
|
"use strict";
|
|
46565
46776
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
46566
46777
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -47384,7 +47595,7 @@ class TradutorMermaidJs {
|
|
|
47384
47595
|
}
|
|
47385
47596
|
exports.TradutorMermaidJs = TradutorMermaidJs;
|
|
47386
47597
|
|
|
47387
|
-
},{"../construtos":62,"../declaracoes":110,"../tipos-de-simbolos/delegua":
|
|
47598
|
+
},{"../construtos":62,"../declaracoes":110,"../tipos-de-simbolos/delegua":224,"./mermaid":234}],249:[function(require,module,exports){
|
|
47388
47599
|
"use strict";
|
|
47389
47600
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47390
47601
|
exports.TradutorPortugolIpt = void 0;
|
|
@@ -47446,7 +47657,7 @@ class TradutorPortugolIpt {
|
|
|
47446
47657
|
}
|
|
47447
47658
|
exports.TradutorPortugolIpt = TradutorPortugolIpt;
|
|
47448
47659
|
|
|
47449
|
-
},{"../avaliador-sintatico/dialetos":17,"../lexador/dialetos":
|
|
47660
|
+
},{"../avaliador-sintatico/dialetos":17,"../lexador/dialetos":194}],250:[function(require,module,exports){
|
|
47450
47661
|
"use strict";
|
|
47451
47662
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
47452
47663
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -48131,7 +48342,7 @@ class TradutorPython {
|
|
|
48131
48342
|
}
|
|
48132
48343
|
exports.TradutorPython = TradutorPython;
|
|
48133
48344
|
|
|
48134
|
-
},{"../construtos":62,"../declaracoes":110,"../tipos-de-simbolos/delegua":
|
|
48345
|
+
},{"../construtos":62,"../declaracoes":110,"../tipos-de-simbolos/delegua":224}],251:[function(require,module,exports){
|
|
48135
48346
|
"use strict";
|
|
48136
48347
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
48137
48348
|
exports.TradutorReversoJavaScript = void 0;
|
|
@@ -48526,7 +48737,7 @@ class TradutorReversoJavaScript {
|
|
|
48526
48737
|
}
|
|
48527
48738
|
exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
|
|
48528
48739
|
|
|
48529
|
-
},{}],
|
|
48740
|
+
},{}],252:[function(require,module,exports){
|
|
48530
48741
|
"use strict";
|
|
48531
48742
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
48532
48743
|
exports.TradutorReversoPython = void 0;
|
|
@@ -48599,7 +48810,7 @@ class TradutorReversoPython {
|
|
|
48599
48810
|
}
|
|
48600
48811
|
exports.TradutorReversoPython = TradutorReversoPython;
|
|
48601
48812
|
|
|
48602
|
-
},{"./python/python3-lexer":
|
|
48813
|
+
},{"./python/python3-lexer":239,"./python/python3-parser":240,"antlr4ts":371,"antlr4ts/tree/ParseTreeWalker":390}],253:[function(require,module,exports){
|
|
48603
48814
|
"use strict";
|
|
48604
48815
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
48605
48816
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -49190,7 +49401,7 @@ class TradutorReversoTenda {
|
|
|
49190
49401
|
}
|
|
49191
49402
|
exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
49192
49403
|
|
|
49193
|
-
},{"../construtos":62,"../tipos-de-simbolos/tenda":
|
|
49404
|
+
},{"../construtos":62,"../tipos-de-simbolos/tenda":231}],254:[function(require,module,exports){
|
|
49194
49405
|
"use strict";
|
|
49195
49406
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
49196
49407
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -49877,7 +50088,7 @@ class TradutorRuby {
|
|
|
49877
50088
|
}
|
|
49878
50089
|
exports.TradutorRuby = TradutorRuby;
|
|
49879
50090
|
|
|
49880
|
-
},{"../construtos":62,"../declaracoes":110,"../tipos-de-simbolos/delegua":
|
|
50091
|
+
},{"../construtos":62,"../declaracoes":110,"../tipos-de-simbolos/delegua":224}],255:[function(require,module,exports){
|
|
49881
50092
|
"use strict";
|
|
49882
50093
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49883
50094
|
exports.TradutorWebAssembly = void 0;
|
|
@@ -50764,7 +50975,7 @@ process.exit(codigoSaida);
|
|
|
50764
50975
|
}
|
|
50765
50976
|
exports.TradutorWebAssembly = TradutorWebAssembly;
|
|
50766
50977
|
|
|
50767
|
-
},{"../construtos":62,"../declaracoes":110}],
|
|
50978
|
+
},{"../construtos":62,"../declaracoes":110}],256:[function(require,module,exports){
|
|
50768
50979
|
"use strict";
|
|
50769
50980
|
/*!
|
|
50770
50981
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50772,7 +50983,7 @@ exports.TradutorWebAssembly = TradutorWebAssembly;
|
|
|
50772
50983
|
*/
|
|
50773
50984
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50774
50985
|
|
|
50775
|
-
},{}],
|
|
50986
|
+
},{}],257:[function(require,module,exports){
|
|
50776
50987
|
"use strict";
|
|
50777
50988
|
/*!
|
|
50778
50989
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50780,7 +50991,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
50780
50991
|
*/
|
|
50781
50992
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50782
50993
|
|
|
50783
|
-
},{}],
|
|
50994
|
+
},{}],258:[function(require,module,exports){
|
|
50784
50995
|
"use strict";
|
|
50785
50996
|
/*!
|
|
50786
50997
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50942,7 +51153,7 @@ __decorate([
|
|
|
50942
51153
|
], ANTLRInputStream.prototype, "toString", null);
|
|
50943
51154
|
exports.ANTLRInputStream = ANTLRInputStream;
|
|
50944
51155
|
|
|
50945
|
-
},{"./Decorators":
|
|
51156
|
+
},{"./Decorators":269,"./IntStream":275,"assert":412}],259:[function(require,module,exports){
|
|
50946
51157
|
"use strict";
|
|
50947
51158
|
/*!
|
|
50948
51159
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51025,7 +51236,7 @@ __decorate([
|
|
|
51025
51236
|
], BailErrorStrategy.prototype, "sync", null);
|
|
51026
51237
|
exports.BailErrorStrategy = BailErrorStrategy;
|
|
51027
51238
|
|
|
51028
|
-
},{"./Decorators":
|
|
51239
|
+
},{"./Decorators":269,"./DefaultErrorStrategy":270,"./InputMismatchException":274,"./misc/ParseCancellationException":386}],260:[function(require,module,exports){
|
|
51029
51240
|
"use strict";
|
|
51030
51241
|
/*!
|
|
51031
51242
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51515,7 +51726,7 @@ BufferedTokenStream = __decorate([
|
|
|
51515
51726
|
], BufferedTokenStream);
|
|
51516
51727
|
exports.BufferedTokenStream = BufferedTokenStream;
|
|
51517
51728
|
|
|
51518
|
-
},{"./CommonToken":
|
|
51729
|
+
},{"./CommonToken":265,"./Decorators":269,"./Lexer":277,"./Token":294,"./misc/Interval":381,"assert":412}],261:[function(require,module,exports){
|
|
51519
51730
|
"use strict";
|
|
51520
51731
|
/*!
|
|
51521
51732
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51523,7 +51734,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
|
|
|
51523
51734
|
*/
|
|
51524
51735
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51525
51736
|
|
|
51526
|
-
},{}],
|
|
51737
|
+
},{}],262:[function(require,module,exports){
|
|
51527
51738
|
"use strict";
|
|
51528
51739
|
/*!
|
|
51529
51740
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51657,7 +51868,7 @@ var CharStreams;
|
|
|
51657
51868
|
// }
|
|
51658
51869
|
})(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
|
|
51659
51870
|
|
|
51660
|
-
},{"./CodePointBuffer":
|
|
51871
|
+
},{"./CodePointBuffer":263,"./CodePointCharStream":264,"./IntStream":275}],263:[function(require,module,exports){
|
|
51661
51872
|
"use strict";
|
|
51662
51873
|
/*!
|
|
51663
51874
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51892,7 +52103,7 @@ exports.CodePointBuffer = CodePointBuffer;
|
|
|
51892
52103
|
CodePointBuffer.Builder = Builder;
|
|
51893
52104
|
})(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
|
|
51894
52105
|
|
|
51895
|
-
},{"./misc/Character":
|
|
52106
|
+
},{"./misc/Character":377,"assert":412}],264:[function(require,module,exports){
|
|
51896
52107
|
"use strict";
|
|
51897
52108
|
/*!
|
|
51898
52109
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52042,7 +52253,7 @@ __decorate([
|
|
|
52042
52253
|
], CodePointCharStream.prototype, "getText", null);
|
|
52043
52254
|
exports.CodePointCharStream = CodePointCharStream;
|
|
52044
52255
|
|
|
52045
|
-
},{"./Decorators":
|
|
52256
|
+
},{"./Decorators":269,"./IntStream":275,"./misc/Interval":381,"assert":412}],265:[function(require,module,exports){
|
|
52046
52257
|
"use strict";
|
|
52047
52258
|
/*!
|
|
52048
52259
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52272,7 +52483,7 @@ CommonToken = __decorate([
|
|
|
52272
52483
|
], CommonToken);
|
|
52273
52484
|
exports.CommonToken = CommonToken;
|
|
52274
52485
|
|
|
52275
|
-
},{"./Decorators":
|
|
52486
|
+
},{"./Decorators":269,"./Token":294,"./misc/Interval":381}],266:[function(require,module,exports){
|
|
52276
52487
|
"use strict";
|
|
52277
52488
|
/*!
|
|
52278
52489
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52336,7 +52547,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
|
|
|
52336
52547
|
CommonTokenFactory.DEFAULT = new CommonTokenFactory();
|
|
52337
52548
|
})(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
|
|
52338
52549
|
|
|
52339
|
-
},{"./CommonToken":
|
|
52550
|
+
},{"./CommonToken":265,"./Decorators":269,"./misc/Interval":381}],267:[function(require,module,exports){
|
|
52340
52551
|
"use strict";
|
|
52341
52552
|
/*!
|
|
52342
52553
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52463,7 +52674,7 @@ CommonTokenStream = __decorate([
|
|
|
52463
52674
|
], CommonTokenStream);
|
|
52464
52675
|
exports.CommonTokenStream = CommonTokenStream;
|
|
52465
52676
|
|
|
52466
|
-
},{"./BufferedTokenStream":
|
|
52677
|
+
},{"./BufferedTokenStream":260,"./Decorators":269,"./Token":294}],268:[function(require,module,exports){
|
|
52467
52678
|
"use strict";
|
|
52468
52679
|
/*!
|
|
52469
52680
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52497,7 +52708,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
|
|
|
52497
52708
|
*/
|
|
52498
52709
|
ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
|
|
52499
52710
|
|
|
52500
|
-
},{}],
|
|
52711
|
+
},{}],269:[function(require,module,exports){
|
|
52501
52712
|
"use strict";
|
|
52502
52713
|
/*!
|
|
52503
52714
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52524,7 +52735,7 @@ function SuppressWarnings(options) {
|
|
|
52524
52735
|
}
|
|
52525
52736
|
exports.SuppressWarnings = SuppressWarnings;
|
|
52526
52737
|
|
|
52527
|
-
},{}],
|
|
52738
|
+
},{}],270:[function(require,module,exports){
|
|
52528
52739
|
"use strict";
|
|
52529
52740
|
/*!
|
|
52530
52741
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53338,7 +53549,7 @@ __decorate([
|
|
|
53338
53549
|
], DefaultErrorStrategy.prototype, "consumeUntil", null);
|
|
53339
53550
|
exports.DefaultErrorStrategy = DefaultErrorStrategy;
|
|
53340
53551
|
|
|
53341
|
-
},{"./Decorators":
|
|
53552
|
+
},{"./Decorators":269,"./FailedPredicateException":273,"./InputMismatchException":274,"./NoViableAltException":281,"./Token":294,"./atn/ATNState":308,"./atn/ATNStateType":309,"./atn/PredictionContext":349,"./misc/IntervalSet":382}],271:[function(require,module,exports){
|
|
53342
53553
|
"use strict";
|
|
53343
53554
|
/*!
|
|
53344
53555
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53414,7 +53625,7 @@ var Dependents;
|
|
|
53414
53625
|
Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
|
|
53415
53626
|
})(Dependents = exports.Dependents || (exports.Dependents = {}));
|
|
53416
53627
|
|
|
53417
|
-
},{}],
|
|
53628
|
+
},{}],272:[function(require,module,exports){
|
|
53418
53629
|
"use strict";
|
|
53419
53630
|
/*!
|
|
53420
53631
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53562,7 +53773,7 @@ __decorate([
|
|
|
53562
53773
|
], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
|
|
53563
53774
|
exports.DiagnosticErrorListener = DiagnosticErrorListener;
|
|
53564
53775
|
|
|
53565
|
-
},{"./Decorators":
|
|
53776
|
+
},{"./Decorators":269,"./misc/BitSet":376,"./misc/Interval":381}],273:[function(require,module,exports){
|
|
53566
53777
|
"use strict";
|
|
53567
53778
|
/*!
|
|
53568
53779
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53627,7 +53838,7 @@ FailedPredicateException = __decorate([
|
|
|
53627
53838
|
], FailedPredicateException);
|
|
53628
53839
|
exports.FailedPredicateException = FailedPredicateException;
|
|
53629
53840
|
|
|
53630
|
-
},{"./Decorators":
|
|
53841
|
+
},{"./Decorators":269,"./RecognitionException":288,"./atn/PredicateTransition":348}],274:[function(require,module,exports){
|
|
53631
53842
|
"use strict";
|
|
53632
53843
|
/*!
|
|
53633
53844
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53667,7 +53878,7 @@ InputMismatchException = __decorate([
|
|
|
53667
53878
|
], InputMismatchException);
|
|
53668
53879
|
exports.InputMismatchException = InputMismatchException;
|
|
53669
53880
|
|
|
53670
|
-
},{"./Decorators":
|
|
53881
|
+
},{"./Decorators":269,"./RecognitionException":288}],275:[function(require,module,exports){
|
|
53671
53882
|
"use strict";
|
|
53672
53883
|
/*!
|
|
53673
53884
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53690,7 +53901,7 @@ var IntStream;
|
|
|
53690
53901
|
IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
|
|
53691
53902
|
})(IntStream = exports.IntStream || (exports.IntStream = {}));
|
|
53692
53903
|
|
|
53693
|
-
},{}],
|
|
53904
|
+
},{}],276:[function(require,module,exports){
|
|
53694
53905
|
"use strict";
|
|
53695
53906
|
/*!
|
|
53696
53907
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53737,7 +53948,7 @@ __decorate([
|
|
|
53737
53948
|
], InterpreterRuleContext.prototype, "ruleIndex", null);
|
|
53738
53949
|
exports.InterpreterRuleContext = InterpreterRuleContext;
|
|
53739
53950
|
|
|
53740
|
-
},{"./Decorators":
|
|
53951
|
+
},{"./Decorators":269,"./ParserRuleContext":285}],277:[function(require,module,exports){
|
|
53741
53952
|
"use strict";
|
|
53742
53953
|
/*!
|
|
53743
53954
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54073,7 +54284,7 @@ __decorate([
|
|
|
54073
54284
|
], Lexer.prototype, "charPositionInLine", null);
|
|
54074
54285
|
exports.Lexer = Lexer;
|
|
54075
54286
|
|
|
54076
|
-
},{"./CommonTokenFactory":
|
|
54287
|
+
},{"./CommonTokenFactory":266,"./Decorators":269,"./IntStream":275,"./LexerNoViableAltException":279,"./Recognizer":289,"./Token":294,"./atn/LexerATNSimulator":327,"./misc/IntegerStack":380,"./misc/Interval":381}],278:[function(require,module,exports){
|
|
54077
54288
|
"use strict";
|
|
54078
54289
|
/*!
|
|
54079
54290
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54153,7 +54364,7 @@ LexerInterpreter = __decorate([
|
|
|
54153
54364
|
], LexerInterpreter);
|
|
54154
54365
|
exports.LexerInterpreter = LexerInterpreter;
|
|
54155
54366
|
|
|
54156
|
-
},{"./Decorators":
|
|
54367
|
+
},{"./Decorators":269,"./Lexer":277,"./atn/LexerATNSimulator":327}],279:[function(require,module,exports){
|
|
54157
54368
|
"use strict";
|
|
54158
54369
|
/*!
|
|
54159
54370
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54210,7 +54421,7 @@ LexerNoViableAltException = __decorate([
|
|
|
54210
54421
|
], LexerNoViableAltException);
|
|
54211
54422
|
exports.LexerNoViableAltException = LexerNoViableAltException;
|
|
54212
54423
|
|
|
54213
|
-
},{"./Decorators":
|
|
54424
|
+
},{"./Decorators":269,"./RecognitionException":288,"./misc/Interval":381,"./misc/Utils":388}],280:[function(require,module,exports){
|
|
54214
54425
|
"use strict";
|
|
54215
54426
|
/*!
|
|
54216
54427
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54420,7 +54631,7 @@ ListTokenSource = __decorate([
|
|
|
54420
54631
|
], ListTokenSource);
|
|
54421
54632
|
exports.ListTokenSource = ListTokenSource;
|
|
54422
54633
|
|
|
54423
|
-
},{"./CommonTokenFactory":
|
|
54634
|
+
},{"./CommonTokenFactory":266,"./Decorators":269,"./Token":294}],281:[function(require,module,exports){
|
|
54424
54635
|
"use strict";
|
|
54425
54636
|
/*!
|
|
54426
54637
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54475,7 +54686,7 @@ __decorate([
|
|
|
54475
54686
|
], NoViableAltException.prototype, "_startToken", void 0);
|
|
54476
54687
|
exports.NoViableAltException = NoViableAltException;
|
|
54477
54688
|
|
|
54478
|
-
},{"./Decorators":
|
|
54689
|
+
},{"./Decorators":269,"./Parser":282,"./RecognitionException":288}],282:[function(require,module,exports){
|
|
54479
54690
|
(function (process){(function (){
|
|
54480
54691
|
"use strict";
|
|
54481
54692
|
/*!
|
|
@@ -55321,7 +55532,7 @@ __decorate([
|
|
|
55321
55532
|
exports.Parser = Parser;
|
|
55322
55533
|
|
|
55323
55534
|
}).call(this)}).call(this,require('_process'))
|
|
55324
|
-
},{"./Decorators":
|
|
55535
|
+
},{"./Decorators":269,"./DefaultErrorStrategy":270,"./Lexer":277,"./ProxyParserErrorListener":287,"./Recognizer":289,"./Token":294,"./atn/ATNDeserializationOptions":305,"./atn/ATNDeserializer":306,"./atn/ParseInfo":342,"./atn/ParserATNSimulator":343,"./atn/ProfilingATNSimulator":352,"./misc/IntegerStack":380,"./misc/Utils":388,"./tree/ErrorNode":389,"./tree/TerminalNode":392,"./tree/pattern/ParseTreePatternMatcher":397,"_process":471}],283:[function(require,module,exports){
|
|
55325
55536
|
"use strict";
|
|
55326
55537
|
/*!
|
|
55327
55538
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55329,7 +55540,7 @@ exports.Parser = Parser;
|
|
|
55329
55540
|
*/
|
|
55330
55541
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55331
55542
|
|
|
55332
|
-
},{}],
|
|
55543
|
+
},{}],284:[function(require,module,exports){
|
|
55333
55544
|
"use strict";
|
|
55334
55545
|
/*!
|
|
55335
55546
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55737,7 +55948,7 @@ ParserInterpreter = __decorate([
|
|
|
55737
55948
|
], ParserInterpreter);
|
|
55738
55949
|
exports.ParserInterpreter = ParserInterpreter;
|
|
55739
55950
|
|
|
55740
|
-
},{"./Decorators":
|
|
55951
|
+
},{"./Decorators":269,"./FailedPredicateException":273,"./InputMismatchException":274,"./InterpreterRuleContext":276,"./Parser":282,"./RecognitionException":288,"./Token":294,"./atn/ATNState":308,"./atn/ATNStateType":309,"./atn/LoopEndState":339,"./atn/ParserATNSimulator":343,"./atn/StarLoopEntryState":361,"./misc/BitSet":376}],285:[function(require,module,exports){
|
|
55741
55952
|
"use strict";
|
|
55742
55953
|
/*!
|
|
55743
55954
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56038,7 +56249,7 @@ __decorate([
|
|
|
56038
56249
|
], ParserRuleContext.prototype, "sourceInterval", null);
|
|
56039
56250
|
exports.ParserRuleContext = ParserRuleContext;
|
|
56040
56251
|
|
|
56041
|
-
},{"./Decorators":
|
|
56252
|
+
},{"./Decorators":269,"./RuleContext":290,"./misc/Interval":381,"./tree/ErrorNode":389,"./tree/TerminalNode":392}],286:[function(require,module,exports){
|
|
56042
56253
|
"use strict";
|
|
56043
56254
|
/*!
|
|
56044
56255
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56088,7 +56299,7 @@ __decorate([
|
|
|
56088
56299
|
], ProxyErrorListener.prototype, "syntaxError", null);
|
|
56089
56300
|
exports.ProxyErrorListener = ProxyErrorListener;
|
|
56090
56301
|
|
|
56091
|
-
},{"./Decorators":
|
|
56302
|
+
},{"./Decorators":269}],287:[function(require,module,exports){
|
|
56092
56303
|
"use strict";
|
|
56093
56304
|
/*!
|
|
56094
56305
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56147,7 +56358,7 @@ __decorate([
|
|
|
56147
56358
|
], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
|
|
56148
56359
|
exports.ProxyParserErrorListener = ProxyParserErrorListener;
|
|
56149
56360
|
|
|
56150
|
-
},{"./Decorators":
|
|
56361
|
+
},{"./Decorators":269,"./ProxyErrorListener":286}],288:[function(require,module,exports){
|
|
56151
56362
|
"use strict";
|
|
56152
56363
|
/*!
|
|
56153
56364
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56252,7 +56463,7 @@ class RecognitionException extends Error {
|
|
|
56252
56463
|
}
|
|
56253
56464
|
exports.RecognitionException = RecognitionException;
|
|
56254
56465
|
|
|
56255
|
-
},{}],
|
|
56466
|
+
},{}],289:[function(require,module,exports){
|
|
56256
56467
|
"use strict";
|
|
56257
56468
|
/*!
|
|
56258
56469
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56471,7 +56682,7 @@ __decorate([
|
|
|
56471
56682
|
], Recognizer.prototype, "getErrorListeners", null);
|
|
56472
56683
|
exports.Recognizer = Recognizer;
|
|
56473
56684
|
|
|
56474
|
-
},{"./ConsoleErrorListener":
|
|
56685
|
+
},{"./ConsoleErrorListener":268,"./Decorators":269,"./ProxyErrorListener":286,"./Token":294,"./misc/Utils":388}],290:[function(require,module,exports){
|
|
56475
56686
|
"use strict";
|
|
56476
56687
|
/*!
|
|
56477
56688
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56688,7 +56899,7 @@ __decorate([
|
|
|
56688
56899
|
], RuleContext.prototype, "toStringTree", null);
|
|
56689
56900
|
exports.RuleContext = RuleContext;
|
|
56690
56901
|
|
|
56691
|
-
},{"./Decorators":
|
|
56902
|
+
},{"./Decorators":269,"./ParserRuleContext":285,"./Recognizer":289,"./atn/ATN":302,"./misc/Interval":381,"./tree/RuleNode":391,"./tree/Trees":393}],291:[function(require,module,exports){
|
|
56692
56903
|
"use strict";
|
|
56693
56904
|
/*!
|
|
56694
56905
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56739,7 +56950,7 @@ __decorate([
|
|
|
56739
56950
|
], RuleContextWithAltNum.prototype, "altNumber", null);
|
|
56740
56951
|
exports.RuleContextWithAltNum = RuleContextWithAltNum;
|
|
56741
56952
|
|
|
56742
|
-
},{"./Decorators":
|
|
56953
|
+
},{"./Decorators":269,"./ParserRuleContext":285,"./atn/ATN":302}],292:[function(require,module,exports){
|
|
56743
56954
|
"use strict";
|
|
56744
56955
|
/*!
|
|
56745
56956
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56762,7 +56973,7 @@ function RuleDependency(dependency) {
|
|
|
56762
56973
|
}
|
|
56763
56974
|
exports.RuleDependency = RuleDependency;
|
|
56764
56975
|
|
|
56765
|
-
},{}],
|
|
56976
|
+
},{}],293:[function(require,module,exports){
|
|
56766
56977
|
"use strict";
|
|
56767
56978
|
/*!
|
|
56768
56979
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56781,7 +56992,7 @@ function RuleVersion(version) {
|
|
|
56781
56992
|
}
|
|
56782
56993
|
exports.RuleVersion = RuleVersion;
|
|
56783
56994
|
|
|
56784
|
-
},{}],
|
|
56995
|
+
},{}],294:[function(require,module,exports){
|
|
56785
56996
|
"use strict";
|
|
56786
56997
|
/*!
|
|
56787
56998
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56821,7 +57032,7 @@ var Token;
|
|
|
56821
57032
|
Token.MIN_USER_CHANNEL_VALUE = 2;
|
|
56822
57033
|
})(Token = exports.Token || (exports.Token = {}));
|
|
56823
57034
|
|
|
56824
|
-
},{"./IntStream":
|
|
57035
|
+
},{"./IntStream":275}],295:[function(require,module,exports){
|
|
56825
57036
|
"use strict";
|
|
56826
57037
|
/*!
|
|
56827
57038
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56829,7 +57040,7 @@ var Token;
|
|
|
56829
57040
|
*/
|
|
56830
57041
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56831
57042
|
|
|
56832
|
-
},{}],
|
|
57043
|
+
},{}],296:[function(require,module,exports){
|
|
56833
57044
|
"use strict";
|
|
56834
57045
|
/*!
|
|
56835
57046
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56837,7 +57048,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
56837
57048
|
*/
|
|
56838
57049
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56839
57050
|
|
|
56840
|
-
},{}],
|
|
57051
|
+
},{}],297:[function(require,module,exports){
|
|
56841
57052
|
"use strict";
|
|
56842
57053
|
/*!
|
|
56843
57054
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56845,7 +57056,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
56845
57056
|
*/
|
|
56846
57057
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56847
57058
|
|
|
56848
|
-
},{}],
|
|
57059
|
+
},{}],298:[function(require,module,exports){
|
|
56849
57060
|
"use strict";
|
|
56850
57061
|
/*!
|
|
56851
57062
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57353,7 +57564,7 @@ __decorate([
|
|
|
57353
57564
|
Decorators_1.Override
|
|
57354
57565
|
], ReplaceOp.prototype, "toString", null);
|
|
57355
57566
|
|
|
57356
|
-
},{"./Decorators":
|
|
57567
|
+
},{"./Decorators":269,"./Token":294,"./misc/Interval":381}],299:[function(require,module,exports){
|
|
57357
57568
|
"use strict";
|
|
57358
57569
|
/*!
|
|
57359
57570
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57361,7 +57572,7 @@ __decorate([
|
|
|
57361
57572
|
*/
|
|
57362
57573
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57363
57574
|
|
|
57364
|
-
},{}],
|
|
57575
|
+
},{}],300:[function(require,module,exports){
|
|
57365
57576
|
"use strict";
|
|
57366
57577
|
/*!
|
|
57367
57578
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57481,7 +57692,7 @@ __decorate([
|
|
|
57481
57692
|
], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
|
|
57482
57693
|
exports.VocabularyImpl = VocabularyImpl;
|
|
57483
57694
|
|
|
57484
|
-
},{"./Decorators":
|
|
57695
|
+
},{"./Decorators":269,"./Token":294}],301:[function(require,module,exports){
|
|
57485
57696
|
"use strict";
|
|
57486
57697
|
/*!
|
|
57487
57698
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57489,7 +57700,7 @@ exports.VocabularyImpl = VocabularyImpl;
|
|
|
57489
57700
|
*/
|
|
57490
57701
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57491
57702
|
|
|
57492
|
-
},{}],
|
|
57703
|
+
},{}],302:[function(require,module,exports){
|
|
57493
57704
|
"use strict";
|
|
57494
57705
|
/*!
|
|
57495
57706
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57711,7 +57922,7 @@ exports.ATN = ATN;
|
|
|
57711
57922
|
})(ATN = exports.ATN || (exports.ATN = {}));
|
|
57712
57923
|
exports.ATN = ATN;
|
|
57713
57924
|
|
|
57714
|
-
},{"../Decorators":
|
|
57925
|
+
},{"../Decorators":269,"../Token":294,"../dfa/DFA":367,"../misc/Array2DHashMap":372,"../misc/IntervalSet":382,"../misc/ObjectEqualityComparator":385,"./InvalidState":325,"./LL1Analyzer":326,"./PredictionContext":349,"assert":412}],303:[function(require,module,exports){
|
|
57715
57926
|
"use strict";
|
|
57716
57927
|
/*!
|
|
57717
57928
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58236,7 +58447,7 @@ ActionSemanticContextATNConfig = __decorate([
|
|
|
58236
58447
|
__param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
|
|
58237
58448
|
], ActionSemanticContextATNConfig);
|
|
58238
58449
|
|
|
58239
|
-
},{"../Decorators":
|
|
58450
|
+
},{"../Decorators":269,"../misc/Array2DHashMap":372,"../misc/MurmurHash":384,"../misc/ObjectEqualityComparator":385,"./DecisionState":322,"./PredictionContext":349,"./SemanticContext":357,"assert":412}],304:[function(require,module,exports){
|
|
58240
58451
|
"use strict";
|
|
58241
58452
|
/*!
|
|
58242
58453
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58683,7 +58894,7 @@ __decorate([
|
|
|
58683
58894
|
], ATNConfigSet.prototype, "hashCode", null);
|
|
58684
58895
|
exports.ATNConfigSet = ATNConfigSet;
|
|
58685
58896
|
|
|
58686
|
-
},{"../Decorators":
|
|
58897
|
+
},{"../Decorators":269,"../misc/Array2DHashMap":372,"../misc/Array2DHashSet":373,"../misc/ArrayEqualityComparator":374,"../misc/BitSet":376,"../misc/ObjectEqualityComparator":385,"../misc/Utils":388,"./ATN":302,"./ATNConfig":303,"./PredictionContext":349,"./PredictionContextCache":350,"./SemanticContext":357,"assert":412}],305:[function(require,module,exports){
|
|
58687
58898
|
"use strict";
|
|
58688
58899
|
/*!
|
|
58689
58900
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58762,7 +58973,7 @@ __decorate([
|
|
|
58762
58973
|
], ATNDeserializationOptions, "defaultOptions", null);
|
|
58763
58974
|
exports.ATNDeserializationOptions = ATNDeserializationOptions;
|
|
58764
58975
|
|
|
58765
|
-
},{"../Decorators":
|
|
58976
|
+
},{"../Decorators":269}],306:[function(require,module,exports){
|
|
58766
58977
|
"use strict";
|
|
58767
58978
|
/*!
|
|
58768
58979
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59849,7 +60060,7 @@ __decorate([
|
|
|
59849
60060
|
], ATNDeserializer.prototype, "edgeFactory", null);
|
|
59850
60061
|
exports.ATNDeserializer = ATNDeserializer;
|
|
59851
60062
|
|
|
59852
|
-
},{"../Decorators":
|
|
60063
|
+
},{"../Decorators":269,"../Token":294,"../dfa/DFA":367,"../misc/Array2DHashSet":373,"../misc/BitSet":376,"../misc/IntervalSet":382,"../misc/UUID":387,"./ATN":302,"./ATNDeserializationOptions":305,"./ATNStateType":309,"./ActionTransition":311,"./AtomTransition":313,"./BasicBlockStartState":314,"./BasicState":315,"./BlockEndState":316,"./BlockStartState":317,"./DecisionState":322,"./EpsilonTransition":323,"./InvalidState":325,"./LexerChannelAction":329,"./LexerCustomAction":330,"./LexerModeAction":332,"./LexerMoreAction":333,"./LexerPopModeAction":334,"./LexerPushModeAction":335,"./LexerSkipAction":336,"./LexerTypeAction":337,"./LoopEndState":339,"./NotSetTransition":340,"./ParserATNSimulator":343,"./PlusBlockStartState":344,"./PlusLoopbackState":345,"./PrecedencePredicateTransition":346,"./PredicateTransition":348,"./RangeTransition":353,"./RuleStartState":354,"./RuleStopState":355,"./RuleTransition":356,"./SetTransition":358,"./StarBlockStartState":360,"./StarLoopEntryState":361,"./StarLoopbackState":362,"./TokensStartState":363,"./WildcardTransition":365}],307:[function(require,module,exports){
|
|
59853
60064
|
"use strict";
|
|
59854
60065
|
/*!
|
|
59855
60066
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59913,7 +60124,7 @@ exports.ATNSimulator = ATNSimulator;
|
|
|
59913
60124
|
})(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
|
|
59914
60125
|
exports.ATNSimulator = ATNSimulator;
|
|
59915
60126
|
|
|
59916
|
-
},{"../Decorators":
|
|
60127
|
+
},{"../Decorators":269,"../dfa/DFAState":369,"./ATNConfigSet":304,"./PredictionContext":349}],308:[function(require,module,exports){
|
|
59917
60128
|
"use strict";
|
|
59918
60129
|
/*!
|
|
59919
60130
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60100,7 +60311,7 @@ exports.ATNState = ATNState;
|
|
|
60100
60311
|
ATNState.INVALID_STATE_NUMBER = -1;
|
|
60101
60312
|
})(ATNState = exports.ATNState || (exports.ATNState = {}));
|
|
60102
60313
|
|
|
60103
|
-
},{"../Decorators":
|
|
60314
|
+
},{"../Decorators":269}],309:[function(require,module,exports){
|
|
60104
60315
|
"use strict";
|
|
60105
60316
|
/*!
|
|
60106
60317
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60126,7 +60337,7 @@ var ATNStateType;
|
|
|
60126
60337
|
ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
|
|
60127
60338
|
})(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
|
|
60128
60339
|
|
|
60129
|
-
},{}],
|
|
60340
|
+
},{}],310:[function(require,module,exports){
|
|
60130
60341
|
"use strict";
|
|
60131
60342
|
/*!
|
|
60132
60343
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60146,7 +60357,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
|
|
|
60146
60357
|
}
|
|
60147
60358
|
exports.AbstractPredicateTransition = AbstractPredicateTransition;
|
|
60148
60359
|
|
|
60149
|
-
},{"./Transition":
|
|
60360
|
+
},{"./Transition":364}],311:[function(require,module,exports){
|
|
60150
60361
|
"use strict";
|
|
60151
60362
|
/*!
|
|
60152
60363
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60202,7 +60413,7 @@ ActionTransition = __decorate([
|
|
|
60202
60413
|
], ActionTransition);
|
|
60203
60414
|
exports.ActionTransition = ActionTransition;
|
|
60204
60415
|
|
|
60205
|
-
},{"../Decorators":
|
|
60416
|
+
},{"../Decorators":269,"./Transition":364}],312:[function(require,module,exports){
|
|
60206
60417
|
"use strict";
|
|
60207
60418
|
/*!
|
|
60208
60419
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60289,7 +60500,7 @@ AmbiguityInfo = __decorate([
|
|
|
60289
60500
|
], AmbiguityInfo);
|
|
60290
60501
|
exports.AmbiguityInfo = AmbiguityInfo;
|
|
60291
60502
|
|
|
60292
|
-
},{"../Decorators":
|
|
60503
|
+
},{"../Decorators":269,"./DecisionEventInfo":320}],313:[function(require,module,exports){
|
|
60293
60504
|
"use strict";
|
|
60294
60505
|
/*!
|
|
60295
60506
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60347,7 +60558,7 @@ AtomTransition = __decorate([
|
|
|
60347
60558
|
], AtomTransition);
|
|
60348
60559
|
exports.AtomTransition = AtomTransition;
|
|
60349
60560
|
|
|
60350
|
-
},{"../Decorators":
|
|
60561
|
+
},{"../Decorators":269,"../misc/IntervalSet":382,"./Transition":364}],314:[function(require,module,exports){
|
|
60351
60562
|
"use strict";
|
|
60352
60563
|
/*!
|
|
60353
60564
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60379,7 +60590,7 @@ __decorate([
|
|
|
60379
60590
|
], BasicBlockStartState.prototype, "stateType", null);
|
|
60380
60591
|
exports.BasicBlockStartState = BasicBlockStartState;
|
|
60381
60592
|
|
|
60382
|
-
},{"../Decorators":
|
|
60593
|
+
},{"../Decorators":269,"./ATNStateType":309,"./BlockStartState":317}],315:[function(require,module,exports){
|
|
60383
60594
|
"use strict";
|
|
60384
60595
|
/*!
|
|
60385
60596
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60411,7 +60622,7 @@ __decorate([
|
|
|
60411
60622
|
], BasicState.prototype, "stateType", null);
|
|
60412
60623
|
exports.BasicState = BasicState;
|
|
60413
60624
|
|
|
60414
|
-
},{"../Decorators":
|
|
60625
|
+
},{"../Decorators":269,"./ATNState":308,"./ATNStateType":309}],316:[function(require,module,exports){
|
|
60415
60626
|
"use strict";
|
|
60416
60627
|
/*!
|
|
60417
60628
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60440,7 +60651,7 @@ __decorate([
|
|
|
60440
60651
|
], BlockEndState.prototype, "stateType", null);
|
|
60441
60652
|
exports.BlockEndState = BlockEndState;
|
|
60442
60653
|
|
|
60443
|
-
},{"../Decorators":
|
|
60654
|
+
},{"../Decorators":269,"./ATNState":308,"./ATNStateType":309}],317:[function(require,module,exports){
|
|
60444
60655
|
"use strict";
|
|
60445
60656
|
/*!
|
|
60446
60657
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60454,7 +60665,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
|
|
|
60454
60665
|
}
|
|
60455
60666
|
exports.BlockStartState = BlockStartState;
|
|
60456
60667
|
|
|
60457
|
-
},{"./DecisionState":
|
|
60668
|
+
},{"./DecisionState":322}],318:[function(require,module,exports){
|
|
60458
60669
|
"use strict";
|
|
60459
60670
|
/*!
|
|
60460
60671
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60524,7 +60735,7 @@ __decorate([
|
|
|
60524
60735
|
], ConflictInfo.prototype, "hashCode", null);
|
|
60525
60736
|
exports.ConflictInfo = ConflictInfo;
|
|
60526
60737
|
|
|
60527
|
-
},{"../Decorators":
|
|
60738
|
+
},{"../Decorators":269,"../misc/Utils":388}],319:[function(require,module,exports){
|
|
60528
60739
|
"use strict";
|
|
60529
60740
|
/*!
|
|
60530
60741
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60584,7 +60795,7 @@ ContextSensitivityInfo = __decorate([
|
|
|
60584
60795
|
], ContextSensitivityInfo);
|
|
60585
60796
|
exports.ContextSensitivityInfo = ContextSensitivityInfo;
|
|
60586
60797
|
|
|
60587
|
-
},{"../Decorators":
|
|
60798
|
+
},{"../Decorators":269,"./DecisionEventInfo":320}],320:[function(require,module,exports){
|
|
60588
60799
|
"use strict";
|
|
60589
60800
|
/*!
|
|
60590
60801
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60636,7 +60847,7 @@ DecisionEventInfo = __decorate([
|
|
|
60636
60847
|
], DecisionEventInfo);
|
|
60637
60848
|
exports.DecisionEventInfo = DecisionEventInfo;
|
|
60638
60849
|
|
|
60639
|
-
},{"../Decorators":
|
|
60850
|
+
},{"../Decorators":269}],321:[function(require,module,exports){
|
|
60640
60851
|
"use strict";
|
|
60641
60852
|
/*!
|
|
60642
60853
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60849,7 +61060,7 @@ __decorate([
|
|
|
60849
61060
|
], DecisionInfo.prototype, "toString", null);
|
|
60850
61061
|
exports.DecisionInfo = DecisionInfo;
|
|
60851
61062
|
|
|
60852
|
-
},{"../Decorators":
|
|
61063
|
+
},{"../Decorators":269}],322:[function(require,module,exports){
|
|
60853
61064
|
"use strict";
|
|
60854
61065
|
/*!
|
|
60855
61066
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60869,7 +61080,7 @@ class DecisionState extends ATNState_1.ATNState {
|
|
|
60869
61080
|
}
|
|
60870
61081
|
exports.DecisionState = DecisionState;
|
|
60871
61082
|
|
|
60872
|
-
},{"./ATNState":
|
|
61083
|
+
},{"./ATNState":308}],323:[function(require,module,exports){
|
|
60873
61084
|
"use strict";
|
|
60874
61085
|
/*!
|
|
60875
61086
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60935,7 +61146,7 @@ EpsilonTransition = __decorate([
|
|
|
60935
61146
|
], EpsilonTransition);
|
|
60936
61147
|
exports.EpsilonTransition = EpsilonTransition;
|
|
60937
61148
|
|
|
60938
|
-
},{"../Decorators":
|
|
61149
|
+
},{"../Decorators":269,"./Transition":364}],324:[function(require,module,exports){
|
|
60939
61150
|
"use strict";
|
|
60940
61151
|
/*!
|
|
60941
61152
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60988,7 +61199,7 @@ ErrorInfo = __decorate([
|
|
|
60988
61199
|
], ErrorInfo);
|
|
60989
61200
|
exports.ErrorInfo = ErrorInfo;
|
|
60990
61201
|
|
|
60991
|
-
},{"../Decorators":
|
|
61202
|
+
},{"../Decorators":269,"./DecisionEventInfo":320}],325:[function(require,module,exports){
|
|
60992
61203
|
"use strict";
|
|
60993
61204
|
/*!
|
|
60994
61205
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61019,7 +61230,7 @@ __decorate([
|
|
|
61019
61230
|
], InvalidState.prototype, "stateType", null);
|
|
61020
61231
|
exports.InvalidState = InvalidState;
|
|
61021
61232
|
|
|
61022
|
-
},{"../Decorators":
|
|
61233
|
+
},{"../Decorators":269,"./ATNStateType":309,"./BasicState":315}],326:[function(require,module,exports){
|
|
61023
61234
|
"use strict";
|
|
61024
61235
|
/*!
|
|
61025
61236
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61241,7 +61452,7 @@ LL1Analyzer = __decorate([
|
|
|
61241
61452
|
], LL1Analyzer);
|
|
61242
61453
|
exports.LL1Analyzer = LL1Analyzer;
|
|
61243
61454
|
|
|
61244
|
-
},{"../Decorators":
|
|
61455
|
+
},{"../Decorators":269,"../Token":294,"../misc/Array2DHashSet":373,"../misc/BitSet":376,"../misc/IntervalSet":382,"../misc/ObjectEqualityComparator":385,"./ATNConfig":303,"./AbstractPredicateTransition":310,"./NotSetTransition":340,"./PredictionContext":349,"./RuleStopState":355,"./RuleTransition":356,"./WildcardTransition":365}],327:[function(require,module,exports){
|
|
61245
61456
|
"use strict";
|
|
61246
61457
|
/*!
|
|
61247
61458
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61958,7 +62169,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
|
|
|
61958
62169
|
})(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
|
|
61959
62170
|
exports.LexerATNSimulator = LexerATNSimulator;
|
|
61960
62171
|
|
|
61961
|
-
},{"../Decorators":
|
|
62172
|
+
},{"../Decorators":269,"../IntStream":275,"../Lexer":277,"../LexerNoViableAltException":279,"../Token":294,"../dfa/AcceptStateInfo":366,"../dfa/DFAState":369,"../misc/Interval":381,"./ATN":302,"./ATNConfig":303,"./ATNConfigSet":304,"./ATNSimulator":307,"./LexerActionExecutor":328,"./OrderedATNConfigSet":341,"./PredictionContext":349,"./RuleStopState":355,"assert":412}],328:[function(require,module,exports){
|
|
61962
62173
|
"use strict";
|
|
61963
62174
|
/*!
|
|
61964
62175
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62159,7 +62370,7 @@ LexerActionExecutor = __decorate([
|
|
|
62159
62370
|
], LexerActionExecutor);
|
|
62160
62371
|
exports.LexerActionExecutor = LexerActionExecutor;
|
|
62161
62372
|
|
|
62162
|
-
},{"../Decorators":
|
|
62373
|
+
},{"../Decorators":269,"../misc/ArrayEqualityComparator":374,"../misc/MurmurHash":384,"./LexerIndexedCustomAction":331}],329:[function(require,module,exports){
|
|
62163
62374
|
"use strict";
|
|
62164
62375
|
/*!
|
|
62165
62376
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62264,7 +62475,7 @@ __decorate([
|
|
|
62264
62475
|
], LexerChannelAction.prototype, "toString", null);
|
|
62265
62476
|
exports.LexerChannelAction = LexerChannelAction;
|
|
62266
62477
|
|
|
62267
|
-
},{"../Decorators":
|
|
62478
|
+
},{"../Decorators":269,"../misc/MurmurHash":384}],330:[function(require,module,exports){
|
|
62268
62479
|
"use strict";
|
|
62269
62480
|
/*!
|
|
62270
62481
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62393,7 +62604,7 @@ __decorate([
|
|
|
62393
62604
|
], LexerCustomAction.prototype, "equals", null);
|
|
62394
62605
|
exports.LexerCustomAction = LexerCustomAction;
|
|
62395
62606
|
|
|
62396
|
-
},{"../Decorators":
|
|
62607
|
+
},{"../Decorators":269,"../misc/MurmurHash":384}],331:[function(require,module,exports){
|
|
62397
62608
|
"use strict";
|
|
62398
62609
|
/*!
|
|
62399
62610
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62528,7 +62739,7 @@ LexerIndexedCustomAction = __decorate([
|
|
|
62528
62739
|
], LexerIndexedCustomAction);
|
|
62529
62740
|
exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
|
|
62530
62741
|
|
|
62531
|
-
},{"../Decorators":
|
|
62742
|
+
},{"../Decorators":269,"../misc/MurmurHash":384}],332:[function(require,module,exports){
|
|
62532
62743
|
"use strict";
|
|
62533
62744
|
/*!
|
|
62534
62745
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62633,7 +62844,7 @@ __decorate([
|
|
|
62633
62844
|
], LexerModeAction.prototype, "toString", null);
|
|
62634
62845
|
exports.LexerModeAction = LexerModeAction;
|
|
62635
62846
|
|
|
62636
|
-
},{"../Decorators":
|
|
62847
|
+
},{"../Decorators":269,"../misc/MurmurHash":384}],333:[function(require,module,exports){
|
|
62637
62848
|
"use strict";
|
|
62638
62849
|
/*!
|
|
62639
62850
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62729,7 +62940,7 @@ exports.LexerMoreAction = LexerMoreAction;
|
|
|
62729
62940
|
LexerMoreAction.INSTANCE = new LexerMoreAction();
|
|
62730
62941
|
})(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
|
|
62731
62942
|
|
|
62732
|
-
},{"../Decorators":
|
|
62943
|
+
},{"../Decorators":269,"../misc/MurmurHash":384}],334:[function(require,module,exports){
|
|
62733
62944
|
"use strict";
|
|
62734
62945
|
/*!
|
|
62735
62946
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62825,7 +63036,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
|
|
|
62825
63036
|
LexerPopModeAction.INSTANCE = new LexerPopModeAction();
|
|
62826
63037
|
})(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
|
|
62827
63038
|
|
|
62828
|
-
},{"../Decorators":
|
|
63039
|
+
},{"../Decorators":269,"../misc/MurmurHash":384}],335:[function(require,module,exports){
|
|
62829
63040
|
"use strict";
|
|
62830
63041
|
/*!
|
|
62831
63042
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62930,7 +63141,7 @@ __decorate([
|
|
|
62930
63141
|
], LexerPushModeAction.prototype, "toString", null);
|
|
62931
63142
|
exports.LexerPushModeAction = LexerPushModeAction;
|
|
62932
63143
|
|
|
62933
|
-
},{"../Decorators":
|
|
63144
|
+
},{"../Decorators":269,"../misc/MurmurHash":384}],336:[function(require,module,exports){
|
|
62934
63145
|
"use strict";
|
|
62935
63146
|
/*!
|
|
62936
63147
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63026,7 +63237,7 @@ exports.LexerSkipAction = LexerSkipAction;
|
|
|
63026
63237
|
LexerSkipAction.INSTANCE = new LexerSkipAction();
|
|
63027
63238
|
})(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
|
|
63028
63239
|
|
|
63029
|
-
},{"../Decorators":
|
|
63240
|
+
},{"../Decorators":269,"../misc/MurmurHash":384}],337:[function(require,module,exports){
|
|
63030
63241
|
"use strict";
|
|
63031
63242
|
/*!
|
|
63032
63243
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63130,7 +63341,7 @@ __decorate([
|
|
|
63130
63341
|
], LexerTypeAction.prototype, "toString", null);
|
|
63131
63342
|
exports.LexerTypeAction = LexerTypeAction;
|
|
63132
63343
|
|
|
63133
|
-
},{"../Decorators":
|
|
63344
|
+
},{"../Decorators":269,"../misc/MurmurHash":384}],338:[function(require,module,exports){
|
|
63134
63345
|
"use strict";
|
|
63135
63346
|
/*!
|
|
63136
63347
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63182,7 +63393,7 @@ LookaheadEventInfo = __decorate([
|
|
|
63182
63393
|
], LookaheadEventInfo);
|
|
63183
63394
|
exports.LookaheadEventInfo = LookaheadEventInfo;
|
|
63184
63395
|
|
|
63185
|
-
},{"../Decorators":
|
|
63396
|
+
},{"../Decorators":269,"./DecisionEventInfo":320}],339:[function(require,module,exports){
|
|
63186
63397
|
"use strict";
|
|
63187
63398
|
/*!
|
|
63188
63399
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63211,7 +63422,7 @@ __decorate([
|
|
|
63211
63422
|
], LoopEndState.prototype, "stateType", null);
|
|
63212
63423
|
exports.LoopEndState = LoopEndState;
|
|
63213
63424
|
|
|
63214
|
-
},{"../Decorators":
|
|
63425
|
+
},{"../Decorators":269,"./ATNState":308,"./ATNStateType":309}],340:[function(require,module,exports){
|
|
63215
63426
|
"use strict";
|
|
63216
63427
|
/*!
|
|
63217
63428
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63260,7 +63471,7 @@ NotSetTransition = __decorate([
|
|
|
63260
63471
|
], NotSetTransition);
|
|
63261
63472
|
exports.NotSetTransition = NotSetTransition;
|
|
63262
63473
|
|
|
63263
|
-
},{"../Decorators":
|
|
63474
|
+
},{"../Decorators":269,"./SetTransition":358}],341:[function(require,module,exports){
|
|
63264
63475
|
"use strict";
|
|
63265
63476
|
/*!
|
|
63266
63477
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63315,7 +63526,7 @@ __decorate([
|
|
|
63315
63526
|
], OrderedATNConfigSet.prototype, "canMerge", null);
|
|
63316
63527
|
exports.OrderedATNConfigSet = OrderedATNConfigSet;
|
|
63317
63528
|
|
|
63318
|
-
},{"../Decorators":
|
|
63529
|
+
},{"../Decorators":269,"./ATNConfigSet":304}],342:[function(require,module,exports){
|
|
63319
63530
|
"use strict";
|
|
63320
63531
|
/*!
|
|
63321
63532
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63477,7 +63688,7 @@ ParseInfo = __decorate([
|
|
|
63477
63688
|
], ParseInfo);
|
|
63478
63689
|
exports.ParseInfo = ParseInfo;
|
|
63479
63690
|
|
|
63480
|
-
},{"../Decorators":
|
|
63691
|
+
},{"../Decorators":269}],343:[function(require,module,exports){
|
|
63481
63692
|
"use strict";
|
|
63482
63693
|
/*!
|
|
63483
63694
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65750,7 +65961,7 @@ ParserATNSimulator = __decorate([
|
|
|
65750
65961
|
], ParserATNSimulator);
|
|
65751
65962
|
exports.ParserATNSimulator = ParserATNSimulator;
|
|
65752
65963
|
|
|
65753
|
-
},{"../Decorators":
|
|
65964
|
+
},{"../Decorators":269,"../IntStream":275,"../NoViableAltException":281,"../ParserRuleContext":285,"../Token":294,"../VocabularyImpl":300,"../dfa/AcceptStateInfo":366,"../dfa/DFAState":369,"../misc/Array2DHashSet":373,"../misc/Arrays":375,"../misc/BitSet":376,"../misc/IntegerList":379,"../misc/Interval":381,"../misc/ObjectEqualityComparator":385,"./ATN":302,"./ATNConfig":303,"./ATNConfigSet":304,"./ATNSimulator":307,"./ATNStateType":309,"./ActionTransition":311,"./AtomTransition":313,"./ConflictInfo":318,"./DecisionState":322,"./NotSetTransition":340,"./PredictionContext":349,"./PredictionContextCache":350,"./PredictionMode":351,"./RuleStopState":355,"./RuleTransition":356,"./SemanticContext":357,"./SetTransition":358,"./SimulatorState":359,"assert":412}],344:[function(require,module,exports){
|
|
65754
65965
|
"use strict";
|
|
65755
65966
|
/*!
|
|
65756
65967
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65783,7 +65994,7 @@ __decorate([
|
|
|
65783
65994
|
], PlusBlockStartState.prototype, "stateType", null);
|
|
65784
65995
|
exports.PlusBlockStartState = PlusBlockStartState;
|
|
65785
65996
|
|
|
65786
|
-
},{"../Decorators":
|
|
65997
|
+
},{"../Decorators":269,"./ATNStateType":309,"./BlockStartState":317}],345:[function(require,module,exports){
|
|
65787
65998
|
"use strict";
|
|
65788
65999
|
/*!
|
|
65789
66000
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65814,7 +66025,7 @@ __decorate([
|
|
|
65814
66025
|
], PlusLoopbackState.prototype, "stateType", null);
|
|
65815
66026
|
exports.PlusLoopbackState = PlusLoopbackState;
|
|
65816
66027
|
|
|
65817
|
-
},{"../Decorators":
|
|
66028
|
+
},{"../Decorators":269,"./ATNStateType":309,"./DecisionState":322}],346:[function(require,module,exports){
|
|
65818
66029
|
"use strict";
|
|
65819
66030
|
/*!
|
|
65820
66031
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65877,7 +66088,7 @@ PrecedencePredicateTransition = __decorate([
|
|
|
65877
66088
|
], PrecedencePredicateTransition);
|
|
65878
66089
|
exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
|
|
65879
66090
|
|
|
65880
|
-
},{"../Decorators":
|
|
66091
|
+
},{"../Decorators":269,"./AbstractPredicateTransition":310,"./SemanticContext":357}],347:[function(require,module,exports){
|
|
65881
66092
|
"use strict";
|
|
65882
66093
|
/*!
|
|
65883
66094
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65940,7 +66151,7 @@ PredicateEvalInfo = __decorate([
|
|
|
65940
66151
|
], PredicateEvalInfo);
|
|
65941
66152
|
exports.PredicateEvalInfo = PredicateEvalInfo;
|
|
65942
66153
|
|
|
65943
|
-
},{"../Decorators":
|
|
66154
|
+
},{"../Decorators":269,"./DecisionEventInfo":320}],348:[function(require,module,exports){
|
|
65944
66155
|
"use strict";
|
|
65945
66156
|
/*!
|
|
65946
66157
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66006,7 +66217,7 @@ PredicateTransition = __decorate([
|
|
|
66006
66217
|
], PredicateTransition);
|
|
66007
66218
|
exports.PredicateTransition = PredicateTransition;
|
|
66008
66219
|
|
|
66009
|
-
},{"../Decorators":
|
|
66220
|
+
},{"../Decorators":269,"./AbstractPredicateTransition":310,"./SemanticContext":357}],349:[function(require,module,exports){
|
|
66010
66221
|
"use strict";
|
|
66011
66222
|
/*!
|
|
66012
66223
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66697,7 +66908,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
|
|
|
66697
66908
|
PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
|
|
66698
66909
|
})(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
|
|
66699
66910
|
|
|
66700
|
-
},{"../Decorators":
|
|
66911
|
+
},{"../Decorators":269,"../misc/Array2DHashMap":372,"../misc/Array2DHashSet":373,"../misc/Arrays":375,"../misc/MurmurHash":384,"./PredictionContextCache":350,"assert":412}],350:[function(require,module,exports){
|
|
66701
66912
|
"use strict";
|
|
66702
66913
|
/*!
|
|
66703
66914
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66838,7 +67049,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
|
|
|
66838
67049
|
PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
|
|
66839
67050
|
})(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
|
|
66840
67051
|
|
|
66841
|
-
},{"../Decorators":
|
|
67052
|
+
},{"../Decorators":269,"../misc/Array2DHashMap":372,"../misc/ObjectEqualityComparator":385,"./PredictionContext":349,"assert":412}],351:[function(require,module,exports){
|
|
66842
67053
|
"use strict";
|
|
66843
67054
|
/*!
|
|
66844
67055
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66999,7 +67210,7 @@ var PredictionMode;
|
|
|
66999
67210
|
PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
|
|
67000
67211
|
})(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
|
|
67001
67212
|
|
|
67002
|
-
},{"../Decorators":
|
|
67213
|
+
},{"../Decorators":269,"../misc/Array2DHashMap":372,"../misc/MurmurHash":384,"./RuleStopState":355}],352:[function(require,module,exports){
|
|
67003
67214
|
(function (process){(function (){
|
|
67004
67215
|
"use strict";
|
|
67005
67216
|
/*!
|
|
@@ -67268,7 +67479,7 @@ __decorate([
|
|
|
67268
67479
|
exports.ProfilingATNSimulator = ProfilingATNSimulator;
|
|
67269
67480
|
|
|
67270
67481
|
}).call(this)}).call(this,require('_process'))
|
|
67271
|
-
},{"../Decorators":
|
|
67482
|
+
},{"../Decorators":269,"./ATN":302,"./ATNSimulator":307,"./AmbiguityInfo":312,"./ContextSensitivityInfo":319,"./DecisionInfo":321,"./ErrorInfo":324,"./LookaheadEventInfo":338,"./ParserATNSimulator":343,"./PredicateEvalInfo":347,"./SemanticContext":357,"./SimulatorState":359,"_process":471}],353:[function(require,module,exports){
|
|
67272
67483
|
"use strict";
|
|
67273
67484
|
/*!
|
|
67274
67485
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67326,7 +67537,7 @@ RangeTransition = __decorate([
|
|
|
67326
67537
|
], RangeTransition);
|
|
67327
67538
|
exports.RangeTransition = RangeTransition;
|
|
67328
67539
|
|
|
67329
|
-
},{"../Decorators":
|
|
67540
|
+
},{"../Decorators":269,"../misc/IntervalSet":382,"./Transition":364}],354:[function(require,module,exports){
|
|
67330
67541
|
"use strict";
|
|
67331
67542
|
/*!
|
|
67332
67543
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67359,7 +67570,7 @@ __decorate([
|
|
|
67359
67570
|
], RuleStartState.prototype, "stateType", null);
|
|
67360
67571
|
exports.RuleStartState = RuleStartState;
|
|
67361
67572
|
|
|
67362
|
-
},{"../Decorators":
|
|
67573
|
+
},{"../Decorators":269,"./ATNState":308,"./ATNStateType":309}],355:[function(require,module,exports){
|
|
67363
67574
|
"use strict";
|
|
67364
67575
|
/*!
|
|
67365
67576
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67398,7 +67609,7 @@ __decorate([
|
|
|
67398
67609
|
], RuleStopState.prototype, "stateType", null);
|
|
67399
67610
|
exports.RuleStopState = RuleStopState;
|
|
67400
67611
|
|
|
67401
|
-
},{"../Decorators":
|
|
67612
|
+
},{"../Decorators":269,"./ATNState":308,"./ATNStateType":309}],356:[function(require,module,exports){
|
|
67402
67613
|
"use strict";
|
|
67403
67614
|
/*!
|
|
67404
67615
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67454,7 +67665,7 @@ RuleTransition = __decorate([
|
|
|
67454
67665
|
], RuleTransition);
|
|
67455
67666
|
exports.RuleTransition = RuleTransition;
|
|
67456
67667
|
|
|
67457
|
-
},{"../Decorators":
|
|
67668
|
+
},{"../Decorators":269,"./Transition":364}],357:[function(require,module,exports){
|
|
67458
67669
|
"use strict";
|
|
67459
67670
|
/*!
|
|
67460
67671
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -67934,7 +68145,7 @@ exports.SemanticContext = SemanticContext;
|
|
|
67934
68145
|
SemanticContext.OR = OR;
|
|
67935
68146
|
})(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
|
|
67936
68147
|
|
|
67937
|
-
},{"../Decorators":
|
|
68148
|
+
},{"../Decorators":269,"../misc/Array2DHashSet":373,"../misc/ArrayEqualityComparator":374,"../misc/MurmurHash":384,"../misc/ObjectEqualityComparator":385,"../misc/Utils":388}],358:[function(require,module,exports){
|
|
67938
68149
|
"use strict";
|
|
67939
68150
|
/*!
|
|
67940
68151
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68000,7 +68211,7 @@ SetTransition = __decorate([
|
|
|
68000
68211
|
], SetTransition);
|
|
68001
68212
|
exports.SetTransition = SetTransition;
|
|
68002
68213
|
|
|
68003
|
-
},{"../Decorators":
|
|
68214
|
+
},{"../Decorators":269,"../Token":294,"../misc/IntervalSet":382,"./Transition":364}],359:[function(require,module,exports){
|
|
68004
68215
|
"use strict";
|
|
68005
68216
|
/*!
|
|
68006
68217
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68036,7 +68247,7 @@ SimulatorState = __decorate([
|
|
|
68036
68247
|
], SimulatorState);
|
|
68037
68248
|
exports.SimulatorState = SimulatorState;
|
|
68038
68249
|
|
|
68039
|
-
},{"../Decorators":
|
|
68250
|
+
},{"../Decorators":269,"../ParserRuleContext":285}],360:[function(require,module,exports){
|
|
68040
68251
|
"use strict";
|
|
68041
68252
|
/*!
|
|
68042
68253
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68064,7 +68275,7 @@ __decorate([
|
|
|
68064
68275
|
], StarBlockStartState.prototype, "stateType", null);
|
|
68065
68276
|
exports.StarBlockStartState = StarBlockStartState;
|
|
68066
68277
|
|
|
68067
|
-
},{"../Decorators":
|
|
68278
|
+
},{"../Decorators":269,"./ATNStateType":309,"./BlockStartState":317}],361:[function(require,module,exports){
|
|
68068
68279
|
"use strict";
|
|
68069
68280
|
/*!
|
|
68070
68281
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68121,7 +68332,7 @@ __decorate([
|
|
|
68121
68332
|
], StarLoopEntryState.prototype, "stateType", null);
|
|
68122
68333
|
exports.StarLoopEntryState = StarLoopEntryState;
|
|
68123
68334
|
|
|
68124
|
-
},{"../Decorators":
|
|
68335
|
+
},{"../Decorators":269,"../misc/BitSet":376,"./ATNStateType":309,"./DecisionState":322}],362:[function(require,module,exports){
|
|
68125
68336
|
"use strict";
|
|
68126
68337
|
/*!
|
|
68127
68338
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68152,7 +68363,7 @@ __decorate([
|
|
|
68152
68363
|
], StarLoopbackState.prototype, "stateType", null);
|
|
68153
68364
|
exports.StarLoopbackState = StarLoopbackState;
|
|
68154
68365
|
|
|
68155
|
-
},{"../Decorators":
|
|
68366
|
+
},{"../Decorators":269,"./ATNState":308,"./ATNStateType":309}],363:[function(require,module,exports){
|
|
68156
68367
|
"use strict";
|
|
68157
68368
|
/*!
|
|
68158
68369
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68181,7 +68392,7 @@ __decorate([
|
|
|
68181
68392
|
], TokensStartState.prototype, "stateType", null);
|
|
68182
68393
|
exports.TokensStartState = TokensStartState;
|
|
68183
68394
|
|
|
68184
|
-
},{"../Decorators":
|
|
68395
|
+
},{"../Decorators":269,"./ATNStateType":309,"./DecisionState":322}],364:[function(require,module,exports){
|
|
68185
68396
|
"use strict";
|
|
68186
68397
|
/*!
|
|
68187
68398
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68255,7 +68466,7 @@ Transition = __decorate([
|
|
|
68255
68466
|
], Transition);
|
|
68256
68467
|
exports.Transition = Transition;
|
|
68257
68468
|
|
|
68258
|
-
},{"../Decorators":
|
|
68469
|
+
},{"../Decorators":269}],365:[function(require,module,exports){
|
|
68259
68470
|
"use strict";
|
|
68260
68471
|
/*!
|
|
68261
68472
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68303,7 +68514,7 @@ WildcardTransition = __decorate([
|
|
|
68303
68514
|
], WildcardTransition);
|
|
68304
68515
|
exports.WildcardTransition = WildcardTransition;
|
|
68305
68516
|
|
|
68306
|
-
},{"../Decorators":
|
|
68517
|
+
},{"../Decorators":269,"./Transition":364}],366:[function(require,module,exports){
|
|
68307
68518
|
"use strict";
|
|
68308
68519
|
/*!
|
|
68309
68520
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68345,7 +68556,7 @@ class AcceptStateInfo {
|
|
|
68345
68556
|
}
|
|
68346
68557
|
exports.AcceptStateInfo = AcceptStateInfo;
|
|
68347
68558
|
|
|
68348
|
-
},{}],
|
|
68559
|
+
},{}],367:[function(require,module,exports){
|
|
68349
68560
|
"use strict";
|
|
68350
68561
|
/*!
|
|
68351
68562
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68520,7 +68731,7 @@ DFA = __decorate([
|
|
|
68520
68731
|
], DFA);
|
|
68521
68732
|
exports.DFA = DFA;
|
|
68522
68733
|
|
|
68523
|
-
},{"../Decorators":
|
|
68734
|
+
},{"../Decorators":269,"../VocabularyImpl":300,"../atn/ATNConfigSet":304,"../atn/StarLoopEntryState":361,"../misc/Array2DHashSet":373,"../misc/ObjectEqualityComparator":385,"./DFASerializer":368,"./DFAState":369,"./LexerDFASerializer":370}],368:[function(require,module,exports){
|
|
68524
68735
|
"use strict";
|
|
68525
68736
|
/*!
|
|
68526
68737
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68662,7 +68873,7 @@ __decorate([
|
|
|
68662
68873
|
], DFASerializer.prototype, "toString", null);
|
|
68663
68874
|
exports.DFASerializer = DFASerializer;
|
|
68664
68875
|
|
|
68665
|
-
},{"../Decorators":
|
|
68876
|
+
},{"../Decorators":269,"../Recognizer":289,"../VocabularyImpl":300,"../atn/ATNSimulator":307,"../atn/PredictionContext":349}],369:[function(require,module,exports){
|
|
68666
68877
|
"use strict";
|
|
68667
68878
|
/*!
|
|
68668
68879
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68893,7 +69104,7 @@ exports.DFAState = DFAState;
|
|
|
68893
69104
|
DFAState.PredPrediction = PredPrediction;
|
|
68894
69105
|
})(DFAState = exports.DFAState || (exports.DFAState = {}));
|
|
68895
69106
|
|
|
68896
|
-
},{"../Decorators":
|
|
69107
|
+
},{"../Decorators":269,"../atn/ATN":302,"../atn/PredictionContext":349,"../misc/BitSet":376,"../misc/MurmurHash":384,"assert":412}],370:[function(require,module,exports){
|
|
68897
69108
|
"use strict";
|
|
68898
69109
|
/*!
|
|
68899
69110
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68930,7 +69141,7 @@ LexerDFASerializer = __decorate([
|
|
|
68930
69141
|
], LexerDFASerializer);
|
|
68931
69142
|
exports.LexerDFASerializer = LexerDFASerializer;
|
|
68932
69143
|
|
|
68933
|
-
},{"../Decorators":
|
|
69144
|
+
},{"../Decorators":269,"../VocabularyImpl":300,"./DFASerializer":368}],371:[function(require,module,exports){
|
|
68934
69145
|
"use strict";
|
|
68935
69146
|
/*!
|
|
68936
69147
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68996,7 +69207,7 @@ __exportStar(require("./Vocabulary"), exports);
|
|
|
68996
69207
|
__exportStar(require("./VocabularyImpl"), exports);
|
|
68997
69208
|
__exportStar(require("./WritableToken"), exports);
|
|
68998
69209
|
|
|
68999
|
-
},{"./ANTLRErrorListener":
|
|
69210
|
+
},{"./ANTLRErrorListener":256,"./ANTLRErrorStrategy":257,"./ANTLRInputStream":258,"./BailErrorStrategy":259,"./BufferedTokenStream":260,"./CharStream":261,"./CharStreams":262,"./CodePointBuffer":263,"./CodePointCharStream":264,"./CommonToken":265,"./CommonTokenFactory":266,"./CommonTokenStream":267,"./ConsoleErrorListener":268,"./DefaultErrorStrategy":270,"./Dependents":271,"./DiagnosticErrorListener":272,"./FailedPredicateException":273,"./InputMismatchException":274,"./IntStream":275,"./InterpreterRuleContext":276,"./Lexer":277,"./LexerInterpreter":278,"./LexerNoViableAltException":279,"./ListTokenSource":280,"./NoViableAltException":281,"./Parser":282,"./ParserErrorListener":283,"./ParserInterpreter":284,"./ParserRuleContext":285,"./ProxyErrorListener":286,"./ProxyParserErrorListener":287,"./RecognitionException":288,"./Recognizer":289,"./RuleContext":290,"./RuleContextWithAltNum":291,"./RuleDependency":292,"./RuleVersion":293,"./Token":294,"./TokenFactory":295,"./TokenSource":296,"./TokenStream":297,"./TokenStreamRewriter":298,"./Vocabulary":299,"./VocabularyImpl":300,"./WritableToken":301}],372:[function(require,module,exports){
|
|
69000
69211
|
"use strict";
|
|
69001
69212
|
/*!
|
|
69002
69213
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69079,7 +69290,7 @@ class Array2DHashMap {
|
|
|
69079
69290
|
}
|
|
69080
69291
|
exports.Array2DHashMap = Array2DHashMap;
|
|
69081
69292
|
|
|
69082
|
-
},{"./Array2DHashSet":
|
|
69293
|
+
},{"./Array2DHashSet":373}],373:[function(require,module,exports){
|
|
69083
69294
|
"use strict";
|
|
69084
69295
|
/*!
|
|
69085
69296
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69446,7 +69657,7 @@ __decorate([
|
|
|
69446
69657
|
], Array2DHashSet.prototype, "createBuckets", null);
|
|
69447
69658
|
exports.Array2DHashSet = Array2DHashSet;
|
|
69448
69659
|
|
|
69449
|
-
},{"../Decorators":
|
|
69660
|
+
},{"../Decorators":269,"./DefaultEqualityComparator":378,"./MurmurHash":384,"assert":412}],374:[function(require,module,exports){
|
|
69450
69661
|
"use strict";
|
|
69451
69662
|
/*!
|
|
69452
69663
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69518,7 +69729,7 @@ __decorate([
|
|
|
69518
69729
|
], ArrayEqualityComparator.prototype, "equals", null);
|
|
69519
69730
|
exports.ArrayEqualityComparator = ArrayEqualityComparator;
|
|
69520
69731
|
|
|
69521
|
-
},{"../Decorators":
|
|
69732
|
+
},{"../Decorators":269,"./MurmurHash":384,"./ObjectEqualityComparator":385}],375:[function(require,module,exports){
|
|
69522
69733
|
"use strict";
|
|
69523
69734
|
/*!
|
|
69524
69735
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69588,7 +69799,7 @@ var Arrays;
|
|
|
69588
69799
|
Arrays.toString = toString;
|
|
69589
69800
|
})(Arrays = exports.Arrays || (exports.Arrays = {}));
|
|
69590
69801
|
|
|
69591
|
-
},{}],
|
|
69802
|
+
},{}],376:[function(require,module,exports){
|
|
69592
69803
|
"use strict";
|
|
69593
69804
|
/*!
|
|
69594
69805
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70260,7 +70471,7 @@ class BitSetIterator {
|
|
|
70260
70471
|
[Symbol.iterator]() { return this; }
|
|
70261
70472
|
}
|
|
70262
70473
|
|
|
70263
|
-
},{"./MurmurHash":
|
|
70474
|
+
},{"./MurmurHash":384,"util":477}],377:[function(require,module,exports){
|
|
70264
70475
|
"use strict";
|
|
70265
70476
|
/*!
|
|
70266
70477
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70281,7 +70492,7 @@ function isSupplementaryCodePoint(ch) {
|
|
|
70281
70492
|
}
|
|
70282
70493
|
exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
|
|
70283
70494
|
|
|
70284
|
-
},{}],
|
|
70495
|
+
},{}],378:[function(require,module,exports){
|
|
70285
70496
|
"use strict";
|
|
70286
70497
|
/*!
|
|
70287
70498
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70352,7 +70563,7 @@ __decorate([
|
|
|
70352
70563
|
], DefaultEqualityComparator.prototype, "equals", null);
|
|
70353
70564
|
exports.DefaultEqualityComparator = DefaultEqualityComparator;
|
|
70354
70565
|
|
|
70355
|
-
},{"../Decorators":
|
|
70566
|
+
},{"../Decorators":269,"./MurmurHash":384,"./ObjectEqualityComparator":385}],379:[function(require,module,exports){
|
|
70356
70567
|
"use strict";
|
|
70357
70568
|
/*!
|
|
70358
70569
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70646,7 +70857,7 @@ __decorate([
|
|
|
70646
70857
|
], IntegerList.prototype, "toString", null);
|
|
70647
70858
|
exports.IntegerList = IntegerList;
|
|
70648
70859
|
|
|
70649
|
-
},{"../Decorators":
|
|
70860
|
+
},{"../Decorators":269,"./Arrays":375}],380:[function(require,module,exports){
|
|
70650
70861
|
"use strict";
|
|
70651
70862
|
/*!
|
|
70652
70863
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70676,7 +70887,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
|
|
|
70676
70887
|
}
|
|
70677
70888
|
exports.IntegerStack = IntegerStack;
|
|
70678
70889
|
|
|
70679
|
-
},{"./IntegerList":
|
|
70890
|
+
},{"./IntegerList":379}],381:[function(require,module,exports){
|
|
70680
70891
|
"use strict";
|
|
70681
70892
|
/*!
|
|
70682
70893
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70819,7 +71030,7 @@ __decorate([
|
|
|
70819
71030
|
], Interval.prototype, "toString", null);
|
|
70820
71031
|
exports.Interval = Interval;
|
|
70821
71032
|
|
|
70822
|
-
},{"../Decorators":
|
|
71033
|
+
},{"../Decorators":269}],382:[function(require,module,exports){
|
|
70823
71034
|
"use strict";
|
|
70824
71035
|
/*!
|
|
70825
71036
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71465,7 +71676,7 @@ __decorate([
|
|
|
71465
71676
|
], IntervalSet, "subtract", null);
|
|
71466
71677
|
exports.IntervalSet = IntervalSet;
|
|
71467
71678
|
|
|
71468
|
-
},{"../Decorators":
|
|
71679
|
+
},{"../Decorators":269,"../Lexer":277,"../Token":294,"./ArrayEqualityComparator":374,"./IntegerList":379,"./Interval":381,"./MurmurHash":384}],383:[function(require,module,exports){
|
|
71469
71680
|
"use strict";
|
|
71470
71681
|
/*!
|
|
71471
71682
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71498,7 +71709,7 @@ class MultiMap extends Map {
|
|
|
71498
71709
|
}
|
|
71499
71710
|
exports.MultiMap = MultiMap;
|
|
71500
71711
|
|
|
71501
|
-
},{}],
|
|
71712
|
+
},{}],384:[function(require,module,exports){
|
|
71502
71713
|
"use strict";
|
|
71503
71714
|
/*!
|
|
71504
71715
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71613,7 +71824,7 @@ var MurmurHash;
|
|
|
71613
71824
|
}
|
|
71614
71825
|
})(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
|
|
71615
71826
|
|
|
71616
|
-
},{}],
|
|
71827
|
+
},{}],385:[function(require,module,exports){
|
|
71617
71828
|
"use strict";
|
|
71618
71829
|
/*!
|
|
71619
71830
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71672,7 +71883,7 @@ __decorate([
|
|
|
71672
71883
|
], ObjectEqualityComparator.prototype, "equals", null);
|
|
71673
71884
|
exports.ObjectEqualityComparator = ObjectEqualityComparator;
|
|
71674
71885
|
|
|
71675
|
-
},{"../Decorators":
|
|
71886
|
+
},{"../Decorators":269}],386:[function(require,module,exports){
|
|
71676
71887
|
"use strict";
|
|
71677
71888
|
/*!
|
|
71678
71889
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71701,7 +71912,7 @@ class ParseCancellationException extends Error {
|
|
|
71701
71912
|
}
|
|
71702
71913
|
exports.ParseCancellationException = ParseCancellationException;
|
|
71703
71914
|
|
|
71704
|
-
},{}],
|
|
71915
|
+
},{}],387:[function(require,module,exports){
|
|
71705
71916
|
"use strict";
|
|
71706
71917
|
/*!
|
|
71707
71918
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71755,7 +71966,7 @@ class UUID {
|
|
|
71755
71966
|
}
|
|
71756
71967
|
exports.UUID = UUID;
|
|
71757
71968
|
|
|
71758
|
-
},{"./MurmurHash":
|
|
71969
|
+
},{"./MurmurHash":384}],388:[function(require,module,exports){
|
|
71759
71970
|
"use strict";
|
|
71760
71971
|
/*!
|
|
71761
71972
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71930,7 +72141,7 @@ exports.toCharArray = toCharArray;
|
|
|
71930
72141
|
// return s;
|
|
71931
72142
|
// }
|
|
71932
72143
|
|
|
71933
|
-
},{}],
|
|
72144
|
+
},{}],389:[function(require,module,exports){
|
|
71934
72145
|
"use strict";
|
|
71935
72146
|
/*!
|
|
71936
72147
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71966,7 +72177,7 @@ __decorate([
|
|
|
71966
72177
|
], ErrorNode.prototype, "accept", null);
|
|
71967
72178
|
exports.ErrorNode = ErrorNode;
|
|
71968
72179
|
|
|
71969
|
-
},{"../Decorators":
|
|
72180
|
+
},{"../Decorators":269,"./TerminalNode":392}],390:[function(require,module,exports){
|
|
71970
72181
|
"use strict";
|
|
71971
72182
|
/*!
|
|
71972
72183
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72071,7 +72282,7 @@ exports.ParseTreeWalker = ParseTreeWalker;
|
|
|
72071
72282
|
ParseTreeWalker.DEFAULT = new ParseTreeWalker();
|
|
72072
72283
|
})(ParseTreeWalker = exports.ParseTreeWalker || (exports.ParseTreeWalker = {}));
|
|
72073
72284
|
|
|
72074
|
-
},{"./ErrorNode":
|
|
72285
|
+
},{"./ErrorNode":389,"./RuleNode":391,"./TerminalNode":392}],391:[function(require,module,exports){
|
|
72075
72286
|
"use strict";
|
|
72076
72287
|
/*!
|
|
72077
72288
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72083,7 +72294,7 @@ class RuleNode {
|
|
|
72083
72294
|
}
|
|
72084
72295
|
exports.RuleNode = RuleNode;
|
|
72085
72296
|
|
|
72086
|
-
},{}],
|
|
72297
|
+
},{}],392:[function(require,module,exports){
|
|
72087
72298
|
"use strict";
|
|
72088
72299
|
/*!
|
|
72089
72300
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72175,7 +72386,7 @@ __decorate([
|
|
|
72175
72386
|
], TerminalNode.prototype, "toString", null);
|
|
72176
72387
|
exports.TerminalNode = TerminalNode;
|
|
72177
72388
|
|
|
72178
|
-
},{"../Decorators":
|
|
72389
|
+
},{"../Decorators":269,"../Token":294,"../misc/Interval":381}],393:[function(require,module,exports){
|
|
72179
72390
|
"use strict";
|
|
72180
72391
|
/*!
|
|
72181
72392
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72419,7 +72630,7 @@ __decorate([
|
|
|
72419
72630
|
], Trees, "getRootOfSubtreeEnclosingRegion", null);
|
|
72420
72631
|
exports.Trees = Trees;
|
|
72421
72632
|
|
|
72422
|
-
},{"../CommonToken":
|
|
72633
|
+
},{"../CommonToken":265,"../Decorators":269,"../Parser":282,"../ParserRuleContext":285,"../Token":294,"../atn/ATN":302,"../misc/Utils":388,"./ErrorNode":389,"./RuleNode":391,"./TerminalNode":392}],394:[function(require,module,exports){
|
|
72423
72634
|
"use strict";
|
|
72424
72635
|
/*!
|
|
72425
72636
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72443,7 +72654,7 @@ class Chunk {
|
|
|
72443
72654
|
}
|
|
72444
72655
|
exports.Chunk = Chunk;
|
|
72445
72656
|
|
|
72446
|
-
},{}],
|
|
72657
|
+
},{}],395:[function(require,module,exports){
|
|
72447
72658
|
"use strict";
|
|
72448
72659
|
/*!
|
|
72449
72660
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72623,7 +72834,7 @@ ParseTreeMatch = __decorate([
|
|
|
72623
72834
|
], ParseTreeMatch);
|
|
72624
72835
|
exports.ParseTreeMatch = ParseTreeMatch;
|
|
72625
72836
|
|
|
72626
|
-
},{"../../Decorators":
|
|
72837
|
+
},{"../../Decorators":269}],396:[function(require,module,exports){
|
|
72627
72838
|
"use strict";
|
|
72628
72839
|
/*!
|
|
72629
72840
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72781,7 +72992,7 @@ ParseTreePattern = __decorate([
|
|
|
72781
72992
|
], ParseTreePattern);
|
|
72782
72993
|
exports.ParseTreePattern = ParseTreePattern;
|
|
72783
72994
|
|
|
72784
|
-
},{"../../Decorators":
|
|
72995
|
+
},{"../../Decorators":269,"../xpath/XPath":402}],397:[function(require,module,exports){
|
|
72785
72996
|
"use strict";
|
|
72786
72997
|
/*!
|
|
72787
72998
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73259,7 +73470,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
|
|
|
73259
73470
|
ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
|
|
73260
73471
|
})(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
|
|
73261
73472
|
|
|
73262
|
-
},{"../../BailErrorStrategy":
|
|
73473
|
+
},{"../../BailErrorStrategy":259,"../../CharStreams":262,"../../CommonTokenStream":267,"../../Decorators":269,"../../ListTokenSource":280,"../../ParserInterpreter":284,"../../ParserRuleContext":285,"../../RecognitionException":288,"../../Token":294,"../../misc/MultiMap":383,"../../misc/ParseCancellationException":386,"../RuleNode":391,"../TerminalNode":392,"./ParseTreeMatch":395,"./ParseTreePattern":396,"./RuleTagToken":398,"./TagChunk":399,"./TextChunk":400,"./TokenTagToken":401}],398:[function(require,module,exports){
|
|
73263
73474
|
"use strict";
|
|
73264
73475
|
/*!
|
|
73265
73476
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73457,7 +73668,7 @@ RuleTagToken = __decorate([
|
|
|
73457
73668
|
], RuleTagToken);
|
|
73458
73669
|
exports.RuleTagToken = RuleTagToken;
|
|
73459
73670
|
|
|
73460
|
-
},{"../../Decorators":
|
|
73671
|
+
},{"../../Decorators":269,"../../Token":294}],399:[function(require,module,exports){
|
|
73461
73672
|
"use strict";
|
|
73462
73673
|
/*!
|
|
73463
73674
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73544,7 +73755,7 @@ __decorate([
|
|
|
73544
73755
|
], TagChunk.prototype, "toString", null);
|
|
73545
73756
|
exports.TagChunk = TagChunk;
|
|
73546
73757
|
|
|
73547
|
-
},{"../../Decorators":
|
|
73758
|
+
},{"../../Decorators":269,"./Chunk":394}],400:[function(require,module,exports){
|
|
73548
73759
|
"use strict";
|
|
73549
73760
|
/*!
|
|
73550
73761
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73614,7 +73825,7 @@ TextChunk = __decorate([
|
|
|
73614
73825
|
], TextChunk);
|
|
73615
73826
|
exports.TextChunk = TextChunk;
|
|
73616
73827
|
|
|
73617
|
-
},{"../../Decorators":
|
|
73828
|
+
},{"../../Decorators":269,"./Chunk":394}],401:[function(require,module,exports){
|
|
73618
73829
|
"use strict";
|
|
73619
73830
|
/*!
|
|
73620
73831
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73709,7 +73920,7 @@ TokenTagToken = __decorate([
|
|
|
73709
73920
|
], TokenTagToken);
|
|
73710
73921
|
exports.TokenTagToken = TokenTagToken;
|
|
73711
73922
|
|
|
73712
|
-
},{"../../CommonToken":
|
|
73923
|
+
},{"../../CommonToken":265,"../../Decorators":269}],402:[function(require,module,exports){
|
|
73713
73924
|
"use strict";
|
|
73714
73925
|
/*!
|
|
73715
73926
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73906,7 +74117,7 @@ exports.XPath = XPath;
|
|
|
73906
74117
|
XPath.WILDCARD = "*"; // word not operator/separator
|
|
73907
74118
|
XPath.NOT = "!"; // word for invert operator
|
|
73908
74119
|
|
|
73909
|
-
},{"../../CharStreams":
|
|
74120
|
+
},{"../../CharStreams":262,"../../CommonTokenStream":267,"../../LexerNoViableAltException":279,"../../ParserRuleContext":285,"../../Token":294,"./XPathLexer":404,"./XPathLexerErrorListener":405,"./XPathRuleAnywhereElement":406,"./XPathRuleElement":407,"./XPathTokenAnywhereElement":408,"./XPathTokenElement":409,"./XPathWildcardAnywhereElement":410,"./XPathWildcardElement":411}],403:[function(require,module,exports){
|
|
73910
74121
|
"use strict";
|
|
73911
74122
|
/*!
|
|
73912
74123
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73941,7 +74152,7 @@ __decorate([
|
|
|
73941
74152
|
], XPathElement.prototype, "toString", null);
|
|
73942
74153
|
exports.XPathElement = XPathElement;
|
|
73943
74154
|
|
|
73944
|
-
},{"../../Decorators":
|
|
74155
|
+
},{"../../Decorators":269}],404:[function(require,module,exports){
|
|
73945
74156
|
"use strict";
|
|
73946
74157
|
// Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
73947
74158
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -74416,7 +74627,7 @@ XPathLexer._serializedATN = Utils.join([
|
|
|
74416
74627
|
XPathLexer._serializedATNSegment1,
|
|
74417
74628
|
], "");
|
|
74418
74629
|
|
|
74419
|
-
},{"../../Lexer":
|
|
74630
|
+
},{"../../Lexer":277,"../../VocabularyImpl":300,"../../atn/ATNDeserializer":306,"../../atn/LexerATNSimulator":327,"../../misc/Utils":388}],405:[function(require,module,exports){
|
|
74420
74631
|
"use strict";
|
|
74421
74632
|
/*!
|
|
74422
74633
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74441,7 +74652,7 @@ __decorate([
|
|
|
74441
74652
|
], XPathLexerErrorListener.prototype, "syntaxError", null);
|
|
74442
74653
|
exports.XPathLexerErrorListener = XPathLexerErrorListener;
|
|
74443
74654
|
|
|
74444
|
-
},{"../../Decorators":
|
|
74655
|
+
},{"../../Decorators":269}],406:[function(require,module,exports){
|
|
74445
74656
|
"use strict";
|
|
74446
74657
|
/*!
|
|
74447
74658
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74475,7 +74686,7 @@ __decorate([
|
|
|
74475
74686
|
], XPathRuleAnywhereElement.prototype, "evaluate", null);
|
|
74476
74687
|
exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
|
|
74477
74688
|
|
|
74478
|
-
},{"../../Decorators":
|
|
74689
|
+
},{"../../Decorators":269,"../Trees":393,"./XPathElement":403}],407:[function(require,module,exports){
|
|
74479
74690
|
"use strict";
|
|
74480
74691
|
/*!
|
|
74481
74692
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74518,7 +74729,7 @@ __decorate([
|
|
|
74518
74729
|
], XPathRuleElement.prototype, "evaluate", null);
|
|
74519
74730
|
exports.XPathRuleElement = XPathRuleElement;
|
|
74520
74731
|
|
|
74521
|
-
},{"../../Decorators":
|
|
74732
|
+
},{"../../Decorators":269,"../../ParserRuleContext":285,"../Trees":393,"./XPathElement":403}],408:[function(require,module,exports){
|
|
74522
74733
|
"use strict";
|
|
74523
74734
|
/*!
|
|
74524
74735
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74550,7 +74761,7 @@ __decorate([
|
|
|
74550
74761
|
], XPathTokenAnywhereElement.prototype, "evaluate", null);
|
|
74551
74762
|
exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
|
|
74552
74763
|
|
|
74553
|
-
},{"../../Decorators":
|
|
74764
|
+
},{"../../Decorators":269,"../Trees":393,"./XPathElement":403}],409:[function(require,module,exports){
|
|
74554
74765
|
"use strict";
|
|
74555
74766
|
/*!
|
|
74556
74767
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74593,7 +74804,7 @@ __decorate([
|
|
|
74593
74804
|
], XPathTokenElement.prototype, "evaluate", null);
|
|
74594
74805
|
exports.XPathTokenElement = XPathTokenElement;
|
|
74595
74806
|
|
|
74596
|
-
},{"../../Decorators":
|
|
74807
|
+
},{"../../Decorators":269,"../TerminalNode":392,"../Trees":393,"./XPathElement":403}],410:[function(require,module,exports){
|
|
74597
74808
|
"use strict";
|
|
74598
74809
|
/*!
|
|
74599
74810
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74629,7 +74840,7 @@ __decorate([
|
|
|
74629
74840
|
], XPathWildcardAnywhereElement.prototype, "evaluate", null);
|
|
74630
74841
|
exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
|
|
74631
74842
|
|
|
74632
|
-
},{"../../Decorators":
|
|
74843
|
+
},{"../../Decorators":269,"../Trees":393,"./XPath":402,"./XPathElement":403}],411:[function(require,module,exports){
|
|
74633
74844
|
"use strict";
|
|
74634
74845
|
/*!
|
|
74635
74846
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74669,7 +74880,7 @@ __decorate([
|
|
|
74669
74880
|
], XPathWildcardElement.prototype, "evaluate", null);
|
|
74670
74881
|
exports.XPathWildcardElement = XPathWildcardElement;
|
|
74671
74882
|
|
|
74672
|
-
},{"../../Decorators":
|
|
74883
|
+
},{"../../Decorators":269,"../Trees":393,"./XPath":402,"./XPathElement":403}],412:[function(require,module,exports){
|
|
74673
74884
|
(function (global){(function (){
|
|
74674
74885
|
'use strict';
|
|
74675
74886
|
|
|
@@ -75179,7 +75390,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
75179
75390
|
};
|
|
75180
75391
|
|
|
75181
75392
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
75182
|
-
},{"object.assign/polyfill":
|
|
75393
|
+
},{"object.assign/polyfill":469,"util/":415}],413:[function(require,module,exports){
|
|
75183
75394
|
if (typeof Object.create === 'function') {
|
|
75184
75395
|
// implementation from standard node.js 'util' module
|
|
75185
75396
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -75204,14 +75415,14 @@ if (typeof Object.create === 'function') {
|
|
|
75204
75415
|
}
|
|
75205
75416
|
}
|
|
75206
75417
|
|
|
75207
|
-
},{}],
|
|
75418
|
+
},{}],414:[function(require,module,exports){
|
|
75208
75419
|
module.exports = function isBuffer(arg) {
|
|
75209
75420
|
return arg && typeof arg === 'object'
|
|
75210
75421
|
&& typeof arg.copy === 'function'
|
|
75211
75422
|
&& typeof arg.fill === 'function'
|
|
75212
75423
|
&& typeof arg.readUInt8 === 'function';
|
|
75213
75424
|
}
|
|
75214
|
-
},{}],
|
|
75425
|
+
},{}],415:[function(require,module,exports){
|
|
75215
75426
|
(function (process,global){(function (){
|
|
75216
75427
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
75217
75428
|
//
|
|
@@ -75801,7 +76012,7 @@ function hasOwnProperty(obj, prop) {
|
|
|
75801
76012
|
}
|
|
75802
76013
|
|
|
75803
76014
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
75804
|
-
},{"./support/isBuffer":
|
|
76015
|
+
},{"./support/isBuffer":414,"_process":471,"inherits":413}],416:[function(require,module,exports){
|
|
75805
76016
|
(function (global){(function (){
|
|
75806
76017
|
'use strict';
|
|
75807
76018
|
|
|
@@ -75822,7 +76033,7 @@ module.exports = function availableTypedArrays() {
|
|
|
75822
76033
|
};
|
|
75823
76034
|
|
|
75824
76035
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
75825
|
-
},{"possible-typed-array-names":
|
|
76036
|
+
},{"possible-typed-array-names":470}],417:[function(require,module,exports){
|
|
75826
76037
|
(function (process,global){(function (){
|
|
75827
76038
|
module.exports = process.hrtime || hrtime
|
|
75828
76039
|
|
|
@@ -75853,7 +76064,7 @@ function hrtime(previousTimestamp){
|
|
|
75853
76064
|
return [seconds,nanoseconds]
|
|
75854
76065
|
}
|
|
75855
76066
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
75856
|
-
},{"_process":
|
|
76067
|
+
},{"_process":471}],418:[function(require,module,exports){
|
|
75857
76068
|
'use strict';
|
|
75858
76069
|
|
|
75859
76070
|
var bind = require('function-bind');
|
|
@@ -75865,7 +76076,7 @@ var $reflectApply = require('./reflectApply');
|
|
|
75865
76076
|
/** @type {import('./actualApply')} */
|
|
75866
76077
|
module.exports = $reflectApply || bind.call($call, $apply);
|
|
75867
76078
|
|
|
75868
|
-
},{"./functionApply":
|
|
76079
|
+
},{"./functionApply":420,"./functionCall":421,"./reflectApply":423,"function-bind":439}],419:[function(require,module,exports){
|
|
75869
76080
|
'use strict';
|
|
75870
76081
|
|
|
75871
76082
|
var bind = require('function-bind');
|
|
@@ -75877,19 +76088,19 @@ module.exports = function applyBind() {
|
|
|
75877
76088
|
return actualApply(bind, $apply, arguments);
|
|
75878
76089
|
};
|
|
75879
76090
|
|
|
75880
|
-
},{"./actualApply":
|
|
76091
|
+
},{"./actualApply":418,"./functionApply":420,"function-bind":439}],420:[function(require,module,exports){
|
|
75881
76092
|
'use strict';
|
|
75882
76093
|
|
|
75883
76094
|
/** @type {import('./functionApply')} */
|
|
75884
76095
|
module.exports = Function.prototype.apply;
|
|
75885
76096
|
|
|
75886
|
-
},{}],
|
|
76097
|
+
},{}],421:[function(require,module,exports){
|
|
75887
76098
|
'use strict';
|
|
75888
76099
|
|
|
75889
76100
|
/** @type {import('./functionCall')} */
|
|
75890
76101
|
module.exports = Function.prototype.call;
|
|
75891
76102
|
|
|
75892
|
-
},{}],
|
|
76103
|
+
},{}],422:[function(require,module,exports){
|
|
75893
76104
|
'use strict';
|
|
75894
76105
|
|
|
75895
76106
|
var bind = require('function-bind');
|
|
@@ -75906,13 +76117,13 @@ module.exports = function callBindBasic(args) {
|
|
|
75906
76117
|
return $actualApply(bind, $call, args);
|
|
75907
76118
|
};
|
|
75908
76119
|
|
|
75909
|
-
},{"./actualApply":
|
|
76120
|
+
},{"./actualApply":418,"./functionCall":421,"es-errors/type":434,"function-bind":439}],423:[function(require,module,exports){
|
|
75910
76121
|
'use strict';
|
|
75911
76122
|
|
|
75912
76123
|
/** @type {import('./reflectApply')} */
|
|
75913
76124
|
module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
|
|
75914
76125
|
|
|
75915
|
-
},{}],
|
|
76126
|
+
},{}],424:[function(require,module,exports){
|
|
75916
76127
|
'use strict';
|
|
75917
76128
|
|
|
75918
76129
|
var setFunctionLength = require('set-function-length');
|
|
@@ -75938,7 +76149,7 @@ if ($defineProperty) {
|
|
|
75938
76149
|
module.exports.apply = applyBind;
|
|
75939
76150
|
}
|
|
75940
76151
|
|
|
75941
|
-
},{"call-bind-apply-helpers":
|
|
76152
|
+
},{"call-bind-apply-helpers":422,"call-bind-apply-helpers/applyBind":419,"es-define-property":428,"set-function-length":473}],425:[function(require,module,exports){
|
|
75942
76153
|
'use strict';
|
|
75943
76154
|
|
|
75944
76155
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -75959,7 +76170,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
75959
76170
|
return intrinsic;
|
|
75960
76171
|
};
|
|
75961
76172
|
|
|
75962
|
-
},{"call-bind-apply-helpers":
|
|
76173
|
+
},{"call-bind-apply-helpers":422,"get-intrinsic":440}],426:[function(require,module,exports){
|
|
75963
76174
|
'use strict';
|
|
75964
76175
|
|
|
75965
76176
|
var $defineProperty = require('es-define-property');
|
|
@@ -76017,7 +76228,7 @@ module.exports = function defineDataProperty(
|
|
|
76017
76228
|
}
|
|
76018
76229
|
};
|
|
76019
76230
|
|
|
76020
|
-
},{"es-define-property":
|
|
76231
|
+
},{"es-define-property":428,"es-errors/syntax":433,"es-errors/type":434,"gopd":445}],427:[function(require,module,exports){
|
|
76021
76232
|
'use strict';
|
|
76022
76233
|
|
|
76023
76234
|
var callBind = require('call-bind-apply-helpers');
|
|
@@ -76049,7 +76260,7 @@ module.exports = desc && typeof desc.get === 'function'
|
|
|
76049
76260
|
}
|
|
76050
76261
|
: false;
|
|
76051
76262
|
|
|
76052
|
-
},{"call-bind-apply-helpers":
|
|
76263
|
+
},{"call-bind-apply-helpers":422,"gopd":445}],428:[function(require,module,exports){
|
|
76053
76264
|
'use strict';
|
|
76054
76265
|
|
|
76055
76266
|
/** @type {import('.')} */
|
|
@@ -76065,55 +76276,55 @@ if ($defineProperty) {
|
|
|
76065
76276
|
|
|
76066
76277
|
module.exports = $defineProperty;
|
|
76067
76278
|
|
|
76068
|
-
},{}],
|
|
76279
|
+
},{}],429:[function(require,module,exports){
|
|
76069
76280
|
'use strict';
|
|
76070
76281
|
|
|
76071
76282
|
/** @type {import('./eval')} */
|
|
76072
76283
|
module.exports = EvalError;
|
|
76073
76284
|
|
|
76074
|
-
},{}],
|
|
76285
|
+
},{}],430:[function(require,module,exports){
|
|
76075
76286
|
'use strict';
|
|
76076
76287
|
|
|
76077
76288
|
/** @type {import('.')} */
|
|
76078
76289
|
module.exports = Error;
|
|
76079
76290
|
|
|
76080
|
-
},{}],
|
|
76291
|
+
},{}],431:[function(require,module,exports){
|
|
76081
76292
|
'use strict';
|
|
76082
76293
|
|
|
76083
76294
|
/** @type {import('./range')} */
|
|
76084
76295
|
module.exports = RangeError;
|
|
76085
76296
|
|
|
76086
|
-
},{}],
|
|
76297
|
+
},{}],432:[function(require,module,exports){
|
|
76087
76298
|
'use strict';
|
|
76088
76299
|
|
|
76089
76300
|
/** @type {import('./ref')} */
|
|
76090
76301
|
module.exports = ReferenceError;
|
|
76091
76302
|
|
|
76092
|
-
},{}],
|
|
76303
|
+
},{}],433:[function(require,module,exports){
|
|
76093
76304
|
'use strict';
|
|
76094
76305
|
|
|
76095
76306
|
/** @type {import('./syntax')} */
|
|
76096
76307
|
module.exports = SyntaxError;
|
|
76097
76308
|
|
|
76098
|
-
},{}],
|
|
76309
|
+
},{}],434:[function(require,module,exports){
|
|
76099
76310
|
'use strict';
|
|
76100
76311
|
|
|
76101
76312
|
/** @type {import('./type')} */
|
|
76102
76313
|
module.exports = TypeError;
|
|
76103
76314
|
|
|
76104
|
-
},{}],
|
|
76315
|
+
},{}],435:[function(require,module,exports){
|
|
76105
76316
|
'use strict';
|
|
76106
76317
|
|
|
76107
76318
|
/** @type {import('./uri')} */
|
|
76108
76319
|
module.exports = URIError;
|
|
76109
76320
|
|
|
76110
|
-
},{}],
|
|
76321
|
+
},{}],436:[function(require,module,exports){
|
|
76111
76322
|
'use strict';
|
|
76112
76323
|
|
|
76113
76324
|
/** @type {import('.')} */
|
|
76114
76325
|
module.exports = Object;
|
|
76115
76326
|
|
|
76116
|
-
},{}],
|
|
76327
|
+
},{}],437:[function(require,module,exports){
|
|
76117
76328
|
'use strict';
|
|
76118
76329
|
|
|
76119
76330
|
var isCallable = require('is-callable');
|
|
@@ -76184,7 +76395,7 @@ module.exports = function forEach(list, iterator, thisArg) {
|
|
|
76184
76395
|
}
|
|
76185
76396
|
};
|
|
76186
76397
|
|
|
76187
|
-
},{"is-callable":
|
|
76398
|
+
},{"is-callable":453}],438:[function(require,module,exports){
|
|
76188
76399
|
'use strict';
|
|
76189
76400
|
|
|
76190
76401
|
/* eslint no-invalid-this: 1 */
|
|
@@ -76270,14 +76481,14 @@ module.exports = function bind(that) {
|
|
|
76270
76481
|
return bound;
|
|
76271
76482
|
};
|
|
76272
76483
|
|
|
76273
|
-
},{}],
|
|
76484
|
+
},{}],439:[function(require,module,exports){
|
|
76274
76485
|
'use strict';
|
|
76275
76486
|
|
|
76276
76487
|
var implementation = require('./implementation');
|
|
76277
76488
|
|
|
76278
76489
|
module.exports = Function.prototype.bind || implementation;
|
|
76279
76490
|
|
|
76280
|
-
},{"./implementation":
|
|
76491
|
+
},{"./implementation":438}],440:[function(require,module,exports){
|
|
76281
76492
|
'use strict';
|
|
76282
76493
|
|
|
76283
76494
|
var undefined;
|
|
@@ -76657,7 +76868,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
76657
76868
|
return value;
|
|
76658
76869
|
};
|
|
76659
76870
|
|
|
76660
|
-
},{"call-bind-apply-helpers/functionApply":
|
|
76871
|
+
},{"call-bind-apply-helpers/functionApply":420,"call-bind-apply-helpers/functionCall":421,"es-define-property":428,"es-errors":430,"es-errors/eval":429,"es-errors/range":431,"es-errors/ref":432,"es-errors/syntax":433,"es-errors/type":434,"es-errors/uri":435,"es-object-atoms":436,"function-bind":439,"get-proto":443,"get-proto/Object.getPrototypeOf":441,"get-proto/Reflect.getPrototypeOf":442,"gopd":445,"has-symbols":447,"hasown":450,"math-intrinsics/abs":457,"math-intrinsics/floor":458,"math-intrinsics/max":460,"math-intrinsics/min":461,"math-intrinsics/pow":462,"math-intrinsics/round":463,"math-intrinsics/sign":464}],441:[function(require,module,exports){
|
|
76661
76872
|
'use strict';
|
|
76662
76873
|
|
|
76663
76874
|
var $Object = require('es-object-atoms');
|
|
@@ -76665,13 +76876,13 @@ var $Object = require('es-object-atoms');
|
|
|
76665
76876
|
/** @type {import('./Object.getPrototypeOf')} */
|
|
76666
76877
|
module.exports = $Object.getPrototypeOf || null;
|
|
76667
76878
|
|
|
76668
|
-
},{"es-object-atoms":
|
|
76879
|
+
},{"es-object-atoms":436}],442:[function(require,module,exports){
|
|
76669
76880
|
'use strict';
|
|
76670
76881
|
|
|
76671
76882
|
/** @type {import('./Reflect.getPrototypeOf')} */
|
|
76672
76883
|
module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
|
|
76673
76884
|
|
|
76674
|
-
},{}],
|
|
76885
|
+
},{}],443:[function(require,module,exports){
|
|
76675
76886
|
'use strict';
|
|
76676
76887
|
|
|
76677
76888
|
var reflectGetProto = require('./Reflect.getPrototypeOf');
|
|
@@ -76700,13 +76911,13 @@ module.exports = reflectGetProto
|
|
|
76700
76911
|
}
|
|
76701
76912
|
: null;
|
|
76702
76913
|
|
|
76703
|
-
},{"./Object.getPrototypeOf":
|
|
76914
|
+
},{"./Object.getPrototypeOf":441,"./Reflect.getPrototypeOf":442,"dunder-proto/get":427}],444:[function(require,module,exports){
|
|
76704
76915
|
'use strict';
|
|
76705
76916
|
|
|
76706
76917
|
/** @type {import('./gOPD')} */
|
|
76707
76918
|
module.exports = Object.getOwnPropertyDescriptor;
|
|
76708
76919
|
|
|
76709
|
-
},{}],
|
|
76920
|
+
},{}],445:[function(require,module,exports){
|
|
76710
76921
|
'use strict';
|
|
76711
76922
|
|
|
76712
76923
|
/** @type {import('.')} */
|
|
@@ -76723,7 +76934,7 @@ if ($gOPD) {
|
|
|
76723
76934
|
|
|
76724
76935
|
module.exports = $gOPD;
|
|
76725
76936
|
|
|
76726
|
-
},{"./gOPD":
|
|
76937
|
+
},{"./gOPD":444}],446:[function(require,module,exports){
|
|
76727
76938
|
'use strict';
|
|
76728
76939
|
|
|
76729
76940
|
var $defineProperty = require('es-define-property');
|
|
@@ -76747,7 +76958,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
|
|
|
76747
76958
|
|
|
76748
76959
|
module.exports = hasPropertyDescriptors;
|
|
76749
76960
|
|
|
76750
|
-
},{"es-define-property":
|
|
76961
|
+
},{"es-define-property":428}],447:[function(require,module,exports){
|
|
76751
76962
|
'use strict';
|
|
76752
76963
|
|
|
76753
76964
|
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
|
@@ -76763,7 +76974,7 @@ module.exports = function hasNativeSymbols() {
|
|
|
76763
76974
|
return hasSymbolSham();
|
|
76764
76975
|
};
|
|
76765
76976
|
|
|
76766
|
-
},{"./shams":
|
|
76977
|
+
},{"./shams":448}],448:[function(require,module,exports){
|
|
76767
76978
|
'use strict';
|
|
76768
76979
|
|
|
76769
76980
|
/** @type {import('./shams')} */
|
|
@@ -76810,7 +77021,7 @@ module.exports = function hasSymbols() {
|
|
|
76810
77021
|
return true;
|
|
76811
77022
|
};
|
|
76812
77023
|
|
|
76813
|
-
},{}],
|
|
77024
|
+
},{}],449:[function(require,module,exports){
|
|
76814
77025
|
'use strict';
|
|
76815
77026
|
|
|
76816
77027
|
var hasSymbols = require('has-symbols/shams');
|
|
@@ -76820,7 +77031,7 @@ module.exports = function hasToStringTagShams() {
|
|
|
76820
77031
|
return hasSymbols() && !!Symbol.toStringTag;
|
|
76821
77032
|
};
|
|
76822
77033
|
|
|
76823
|
-
},{"has-symbols/shams":
|
|
77034
|
+
},{"has-symbols/shams":448}],450:[function(require,module,exports){
|
|
76824
77035
|
'use strict';
|
|
76825
77036
|
|
|
76826
77037
|
var call = Function.prototype.call;
|
|
@@ -76830,7 +77041,7 @@ var bind = require('function-bind');
|
|
|
76830
77041
|
/** @type {import('.')} */
|
|
76831
77042
|
module.exports = bind.call(call, $hasOwn);
|
|
76832
77043
|
|
|
76833
|
-
},{"function-bind":
|
|
77044
|
+
},{"function-bind":439}],451:[function(require,module,exports){
|
|
76834
77045
|
if (typeof Object.create === 'function') {
|
|
76835
77046
|
// implementation from standard node.js 'util' module
|
|
76836
77047
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -76859,7 +77070,7 @@ if (typeof Object.create === 'function') {
|
|
|
76859
77070
|
}
|
|
76860
77071
|
}
|
|
76861
77072
|
|
|
76862
|
-
},{}],
|
|
77073
|
+
},{}],452:[function(require,module,exports){
|
|
76863
77074
|
'use strict';
|
|
76864
77075
|
|
|
76865
77076
|
var hasToStringTag = require('has-tostringtag/shams')();
|
|
@@ -76905,7 +77116,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
|
76905
77116
|
/** @type {import('.')} */
|
|
76906
77117
|
module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
76907
77118
|
|
|
76908
|
-
},{"call-bound":
|
|
77119
|
+
},{"call-bound":425,"has-tostringtag/shams":449}],453:[function(require,module,exports){
|
|
76909
77120
|
'use strict';
|
|
76910
77121
|
|
|
76911
77122
|
var fnToStr = Function.prototype.toString;
|
|
@@ -77008,7 +77219,7 @@ module.exports = reflectApply
|
|
|
77008
77219
|
return tryFunctionObject(value);
|
|
77009
77220
|
};
|
|
77010
77221
|
|
|
77011
|
-
},{}],
|
|
77222
|
+
},{}],454:[function(require,module,exports){
|
|
77012
77223
|
'use strict';
|
|
77013
77224
|
|
|
77014
77225
|
var callBound = require('call-bound');
|
|
@@ -77057,7 +77268,7 @@ module.exports = function isGeneratorFunction(fn) {
|
|
|
77057
77268
|
return getProto(fn) === GeneratorFunction;
|
|
77058
77269
|
};
|
|
77059
77270
|
|
|
77060
|
-
},{"call-bound":
|
|
77271
|
+
},{"call-bound":425,"get-proto":443,"has-tostringtag/shams":449,"safe-regex-test":472}],455:[function(require,module,exports){
|
|
77061
77272
|
'use strict';
|
|
77062
77273
|
|
|
77063
77274
|
var callBound = require('call-bound');
|
|
@@ -77128,7 +77339,7 @@ if (hasToStringTag) {
|
|
|
77128
77339
|
|
|
77129
77340
|
module.exports = fn;
|
|
77130
77341
|
|
|
77131
|
-
},{"call-bound":
|
|
77342
|
+
},{"call-bound":425,"gopd":445,"has-tostringtag/shams":449,"hasown":450}],456:[function(require,module,exports){
|
|
77132
77343
|
'use strict';
|
|
77133
77344
|
|
|
77134
77345
|
var whichTypedArray = require('which-typed-array');
|
|
@@ -77138,19 +77349,19 @@ module.exports = function isTypedArray(value) {
|
|
|
77138
77349
|
return !!whichTypedArray(value);
|
|
77139
77350
|
};
|
|
77140
77351
|
|
|
77141
|
-
},{"which-typed-array":
|
|
77352
|
+
},{"which-typed-array":478}],457:[function(require,module,exports){
|
|
77142
77353
|
'use strict';
|
|
77143
77354
|
|
|
77144
77355
|
/** @type {import('./abs')} */
|
|
77145
77356
|
module.exports = Math.abs;
|
|
77146
77357
|
|
|
77147
|
-
},{}],
|
|
77358
|
+
},{}],458:[function(require,module,exports){
|
|
77148
77359
|
'use strict';
|
|
77149
77360
|
|
|
77150
77361
|
/** @type {import('./floor')} */
|
|
77151
77362
|
module.exports = Math.floor;
|
|
77152
77363
|
|
|
77153
|
-
},{}],
|
|
77364
|
+
},{}],459:[function(require,module,exports){
|
|
77154
77365
|
'use strict';
|
|
77155
77366
|
|
|
77156
77367
|
/** @type {import('./isNaN')} */
|
|
@@ -77158,31 +77369,31 @@ module.exports = Number.isNaN || function isNaN(a) {
|
|
|
77158
77369
|
return a !== a;
|
|
77159
77370
|
};
|
|
77160
77371
|
|
|
77161
|
-
},{}],
|
|
77372
|
+
},{}],460:[function(require,module,exports){
|
|
77162
77373
|
'use strict';
|
|
77163
77374
|
|
|
77164
77375
|
/** @type {import('./max')} */
|
|
77165
77376
|
module.exports = Math.max;
|
|
77166
77377
|
|
|
77167
|
-
},{}],
|
|
77378
|
+
},{}],461:[function(require,module,exports){
|
|
77168
77379
|
'use strict';
|
|
77169
77380
|
|
|
77170
77381
|
/** @type {import('./min')} */
|
|
77171
77382
|
module.exports = Math.min;
|
|
77172
77383
|
|
|
77173
|
-
},{}],
|
|
77384
|
+
},{}],462:[function(require,module,exports){
|
|
77174
77385
|
'use strict';
|
|
77175
77386
|
|
|
77176
77387
|
/** @type {import('./pow')} */
|
|
77177
77388
|
module.exports = Math.pow;
|
|
77178
77389
|
|
|
77179
|
-
},{}],
|
|
77390
|
+
},{}],463:[function(require,module,exports){
|
|
77180
77391
|
'use strict';
|
|
77181
77392
|
|
|
77182
77393
|
/** @type {import('./round')} */
|
|
77183
77394
|
module.exports = Math.round;
|
|
77184
77395
|
|
|
77185
|
-
},{}],
|
|
77396
|
+
},{}],464:[function(require,module,exports){
|
|
77186
77397
|
'use strict';
|
|
77187
77398
|
|
|
77188
77399
|
var $isNaN = require('./isNaN');
|
|
@@ -77195,7 +77406,7 @@ module.exports = function sign(number) {
|
|
|
77195
77406
|
return number < 0 ? -1 : +1;
|
|
77196
77407
|
};
|
|
77197
77408
|
|
|
77198
|
-
},{"./isNaN":
|
|
77409
|
+
},{"./isNaN":459}],465:[function(require,module,exports){
|
|
77199
77410
|
'use strict';
|
|
77200
77411
|
|
|
77201
77412
|
var keysShim;
|
|
@@ -77319,7 +77530,7 @@ if (!Object.keys) {
|
|
|
77319
77530
|
}
|
|
77320
77531
|
module.exports = keysShim;
|
|
77321
77532
|
|
|
77322
|
-
},{"./isArguments":
|
|
77533
|
+
},{"./isArguments":467}],466:[function(require,module,exports){
|
|
77323
77534
|
'use strict';
|
|
77324
77535
|
|
|
77325
77536
|
var slice = Array.prototype.slice;
|
|
@@ -77353,7 +77564,7 @@ keysShim.shim = function shimObjectKeys() {
|
|
|
77353
77564
|
|
|
77354
77565
|
module.exports = keysShim;
|
|
77355
77566
|
|
|
77356
|
-
},{"./implementation":
|
|
77567
|
+
},{"./implementation":465,"./isArguments":467}],467:[function(require,module,exports){
|
|
77357
77568
|
'use strict';
|
|
77358
77569
|
|
|
77359
77570
|
var toStr = Object.prototype.toString;
|
|
@@ -77372,7 +77583,7 @@ module.exports = function isArguments(value) {
|
|
|
77372
77583
|
return isArgs;
|
|
77373
77584
|
};
|
|
77374
77585
|
|
|
77375
|
-
},{}],
|
|
77586
|
+
},{}],468:[function(require,module,exports){
|
|
77376
77587
|
'use strict';
|
|
77377
77588
|
|
|
77378
77589
|
// modified from https://github.com/es-shims/es6-shim
|
|
@@ -77420,7 +77631,7 @@ module.exports = function assign(target, source1) {
|
|
|
77420
77631
|
return to; // step 4
|
|
77421
77632
|
};
|
|
77422
77633
|
|
|
77423
|
-
},{"call-bound":
|
|
77634
|
+
},{"call-bound":425,"es-object-atoms":436,"has-symbols/shams":448,"object-keys":466}],469:[function(require,module,exports){
|
|
77424
77635
|
'use strict';
|
|
77425
77636
|
|
|
77426
77637
|
var implementation = require('./implementation');
|
|
@@ -77477,7 +77688,7 @@ module.exports = function getPolyfill() {
|
|
|
77477
77688
|
return Object.assign;
|
|
77478
77689
|
};
|
|
77479
77690
|
|
|
77480
|
-
},{"./implementation":
|
|
77691
|
+
},{"./implementation":468}],470:[function(require,module,exports){
|
|
77481
77692
|
'use strict';
|
|
77482
77693
|
|
|
77483
77694
|
/** @type {import('.')} */
|
|
@@ -77496,7 +77707,7 @@ module.exports = [
|
|
|
77496
77707
|
'BigUint64Array'
|
|
77497
77708
|
];
|
|
77498
77709
|
|
|
77499
|
-
},{}],
|
|
77710
|
+
},{}],471:[function(require,module,exports){
|
|
77500
77711
|
// shim for using process in browser
|
|
77501
77712
|
var process = module.exports = {};
|
|
77502
77713
|
|
|
@@ -77682,7 +77893,7 @@ process.chdir = function (dir) {
|
|
|
77682
77893
|
};
|
|
77683
77894
|
process.umask = function() { return 0; };
|
|
77684
77895
|
|
|
77685
|
-
},{}],
|
|
77896
|
+
},{}],472:[function(require,module,exports){
|
|
77686
77897
|
'use strict';
|
|
77687
77898
|
|
|
77688
77899
|
var callBound = require('call-bound');
|
|
@@ -77701,7 +77912,7 @@ module.exports = function regexTester(regex) {
|
|
|
77701
77912
|
};
|
|
77702
77913
|
};
|
|
77703
77914
|
|
|
77704
|
-
},{"call-bound":
|
|
77915
|
+
},{"call-bound":425,"es-errors/type":434,"is-regex":455}],473:[function(require,module,exports){
|
|
77705
77916
|
'use strict';
|
|
77706
77917
|
|
|
77707
77918
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -77745,7 +77956,7 @@ module.exports = function setFunctionLength(fn, length) {
|
|
|
77745
77956
|
return fn;
|
|
77746
77957
|
};
|
|
77747
77958
|
|
|
77748
|
-
},{"define-data-property":
|
|
77959
|
+
},{"define-data-property":426,"es-errors/type":434,"get-intrinsic":440,"gopd":445,"has-property-descriptors":446}],474:[function(require,module,exports){
|
|
77749
77960
|
(function (setImmediate,clearImmediate){(function (){
|
|
77750
77961
|
var nextTick = require('process/browser.js').nextTick;
|
|
77751
77962
|
var apply = Function.prototype.apply;
|
|
@@ -77824,9 +78035,9 @@ exports.clearImmediate = typeof clearImmediate === "function" ? clearImmediate :
|
|
|
77824
78035
|
delete immediateIds[id];
|
|
77825
78036
|
};
|
|
77826
78037
|
}).call(this)}).call(this,require("timers").setImmediate,require("timers").clearImmediate)
|
|
77827
|
-
},{"process/browser.js":
|
|
77828
|
-
arguments[4][
|
|
77829
|
-
},{"dup":
|
|
78038
|
+
},{"process/browser.js":471,"timers":474}],475:[function(require,module,exports){
|
|
78039
|
+
arguments[4][414][0].apply(exports,arguments)
|
|
78040
|
+
},{"dup":414}],476:[function(require,module,exports){
|
|
77830
78041
|
// Currently in sync with Node.js lib/internal/util/types.js
|
|
77831
78042
|
// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
|
|
77832
78043
|
|
|
@@ -78162,7 +78373,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
|
|
|
78162
78373
|
});
|
|
78163
78374
|
});
|
|
78164
78375
|
|
|
78165
|
-
},{"is-arguments":
|
|
78376
|
+
},{"is-arguments":452,"is-generator-function":454,"is-typed-array":456,"which-typed-array":478}],477:[function(require,module,exports){
|
|
78166
78377
|
(function (process){(function (){
|
|
78167
78378
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
78168
78379
|
//
|
|
@@ -78881,7 +79092,7 @@ function callbackify(original) {
|
|
|
78881
79092
|
exports.callbackify = callbackify;
|
|
78882
79093
|
|
|
78883
79094
|
}).call(this)}).call(this,require('_process'))
|
|
78884
|
-
},{"./support/isBuffer":
|
|
79095
|
+
},{"./support/isBuffer":475,"./support/types":476,"_process":471,"inherits":451}],478:[function(require,module,exports){
|
|
78885
79096
|
(function (global){(function (){
|
|
78886
79097
|
'use strict';
|
|
78887
79098
|
|
|
@@ -79002,5 +79213,5 @@ module.exports = function whichTypedArray(value) {
|
|
|
79002
79213
|
};
|
|
79003
79214
|
|
|
79004
79215
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
79005
|
-
},{"available-typed-arrays":
|
|
79216
|
+
},{"available-typed-arrays":416,"call-bind":424,"call-bound":425,"for-each":437,"get-proto":443,"gopd":445,"has-tostringtag/shams":449}]},{},[137])(137)
|
|
79006
79217
|
});
|