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