@designliquido/delegua 0.44.1 → 0.45.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/avaliador-sintatico/avaliador-sintatico-base.d.ts.map +1 -1
- package/avaliador-sintatico/avaliador-sintatico-base.js +14 -1
- package/avaliador-sintatico/avaliador-sintatico-base.js.map +1 -1
- package/avaliador-sintatico/avaliador-sintatico.d.ts +3 -1
- package/avaliador-sintatico/avaliador-sintatico.d.ts.map +1 -1
- package/avaliador-sintatico/avaliador-sintatico.js +11 -21
- package/avaliador-sintatico/avaliador-sintatico.js.map +1 -1
- package/avaliador-sintatico/comum.d.ts +10 -0
- package/avaliador-sintatico/comum.d.ts.map +1 -0
- package/avaliador-sintatico/comum.js +11 -0
- package/avaliador-sintatico/comum.js.map +1 -0
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.d.ts +4 -2
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.d.ts.map +1 -1
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.js +9 -19
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.js.map +1 -1
- package/bibliotecas/primitivas-dicionario.d.ts +1 -1
- package/bibliotecas/primitivas-dicionario.d.ts.map +1 -1
- package/bibliotecas/primitivas-dicionario.js.map +1 -1
- package/bibliotecas/primitivas-numero.d.ts +1 -1
- package/bibliotecas/primitivas-numero.d.ts.map +1 -1
- package/bibliotecas/primitivas-numero.js.map +1 -1
- package/bibliotecas/primitivas-texto.d.ts +1 -1
- package/bibliotecas/primitivas-texto.d.ts.map +1 -1
- package/bibliotecas/primitivas-texto.js.map +1 -1
- package/bibliotecas/primitivas-vetor.d.ts +1 -1
- package/bibliotecas/primitivas-vetor.d.ts.map +1 -1
- package/bibliotecas/primitivas-vetor.js.map +1 -1
- package/bin/package.json +1 -1
- package/package.json +1 -1
- package/umd/delegua.js +446 -441
package/umd/delegua.js
CHANGED
|
@@ -18,13 +18,26 @@ class AvaliadorSintaticoBase {
|
|
|
18
18
|
consumir(tipo, mensagemDeErro) {
|
|
19
19
|
if (this.verificarTipoSimboloAtual(tipo))
|
|
20
20
|
return this.avancarEDevolverAnterior();
|
|
21
|
-
|
|
21
|
+
let simboloErro = this.simbolos[this.atual];
|
|
22
|
+
if (this.simbolos.length === 0) {
|
|
23
|
+
simboloErro = {
|
|
24
|
+
hashArquivo: this.hashArquivo,
|
|
25
|
+
linha: 1
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
else if (this.atual >= this.simbolos.length) {
|
|
29
|
+
simboloErro = this.simbolos[this.simbolos.length - 1];
|
|
30
|
+
}
|
|
31
|
+
throw this.erro(simboloErro, mensagemDeErro);
|
|
22
32
|
}
|
|
23
33
|
erro(simbolo, mensagemDeErro) {
|
|
24
34
|
const excecao = new erro_avaliador_sintatico_1.ErroAvaliadorSintatico(simbolo, mensagemDeErro);
|
|
25
35
|
return excecao;
|
|
26
36
|
}
|
|
27
37
|
simboloAnterior() {
|
|
38
|
+
if (this.atual === 0) {
|
|
39
|
+
throw new Error('Este é o primeiro símbolo da sequência vinda do Lexador.');
|
|
40
|
+
}
|
|
28
41
|
return this.simbolos[this.atual - 1];
|
|
29
42
|
}
|
|
30
43
|
verificarTipoSimboloAtual(tipo) {
|
|
@@ -231,7 +244,7 @@ class AvaliadorSintaticoBase {
|
|
|
231
244
|
}
|
|
232
245
|
exports.AvaliadorSintaticoBase = AvaliadorSintaticoBase;
|
|
233
246
|
|
|
234
|
-
},{"../construtos":
|
|
247
|
+
},{"../construtos":44,"../declaracoes":84,"../tipos-de-simbolos/comum":167,"./erro-avaliador-sintatico":9}],2:[function(require,module,exports){
|
|
235
248
|
"use strict";
|
|
236
249
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
237
250
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -254,6 +267,7 @@ const primitivas_dicionario_1 = __importDefault(require("../bibliotecas/primitiv
|
|
|
254
267
|
const primitivas_numero_1 = __importDefault(require("../bibliotecas/primitivas-numero"));
|
|
255
268
|
const primitivas_texto_1 = __importDefault(require("../bibliotecas/primitivas-texto"));
|
|
256
269
|
const primitivas_vetor_1 = __importDefault(require("../bibliotecas/primitivas-vetor"));
|
|
270
|
+
const comum_1 = require("./comum");
|
|
257
271
|
/**
|
|
258
272
|
* O avaliador sintático (_Parser_) é responsável por transformar os símbolos do Lexador em estruturas de alto nível.
|
|
259
273
|
* Essas estruturas de alto nível são as partes que executam lógica de programação de fato.
|
|
@@ -276,23 +290,10 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
276
290
|
this.tiposDefinidosEmCodigo = {};
|
|
277
291
|
this.tiposDeFerramentasExternas = {};
|
|
278
292
|
this.primitivasConhecidas = {};
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
this.primitivasConhecidas[nomePrimitivaNumero] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(nomePrimitivaNumero, 'número', dadosPrimitiva.argumentos);
|
|
284
|
-
}
|
|
285
|
-
for (const [nomePrimitivaTexto, dadosPrimitiva] of Object.entries(primitivas_texto_1.default)) {
|
|
286
|
-
this.primitivasConhecidas[nomePrimitivaTexto] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(nomePrimitivaTexto, 'texto', dadosPrimitiva.argumentos);
|
|
287
|
-
}
|
|
288
|
-
for (const [nomePrimitivaVetor, dadosPrimitiva] of Object.entries(primitivas_vetor_1.default)) {
|
|
289
|
-
this.primitivasConhecidas[nomePrimitivaVetor] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(nomePrimitivaVetor, 'vetor', dadosPrimitiva.argumentos);
|
|
290
|
-
}
|
|
291
|
-
// TODO: Por enquanto não há necessidade de validar argumentos aqui, mas isso pode mudar no futuro.
|
|
292
|
-
this.primitivasConhecidas['inteiro'] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('inteiro', 'inteiro');
|
|
293
|
-
this.primitivasConhecidas['numero'] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('numero', 'número');
|
|
294
|
-
this.primitivasConhecidas['número'] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('número', 'número');
|
|
295
|
-
this.primitivasConhecidas['texto'] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('texto', 'texto');
|
|
293
|
+
(0, comum_1.registrarPrimitiva)(this.primitivasConhecidas, 'dicionário', primitivas_dicionario_1.default);
|
|
294
|
+
(0, comum_1.registrarPrimitiva)(this.primitivasConhecidas, 'número', primitivas_numero_1.default);
|
|
295
|
+
(0, comum_1.registrarPrimitiva)(this.primitivasConhecidas, 'texto', primitivas_texto_1.default);
|
|
296
|
+
(0, comum_1.registrarPrimitiva)(this.primitivasConhecidas, 'vetor', primitivas_vetor_1.default);
|
|
296
297
|
this.pilhaEscopos = new pilha_escopos_1.PilhaEscopos();
|
|
297
298
|
}
|
|
298
299
|
verificarDefinicaoTipoAtual() {
|
|
@@ -675,8 +676,8 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
675
676
|
}
|
|
676
677
|
}
|
|
677
678
|
if (tipoPrimitiva !== undefined &&
|
|
678
|
-
this.primitivasConhecidas.hasOwnProperty(entidadeChamadaResolvidaVariavel.simbolo.lexema)) {
|
|
679
|
-
var informacoesPrimitiva = this.primitivasConhecidas[entidadeChamadaResolvidaVariavel.simbolo.lexema];
|
|
679
|
+
this.primitivasConhecidas[tipoPrimitiva].hasOwnProperty(entidadeChamadaResolvidaVariavel.simbolo.lexema)) {
|
|
680
|
+
var informacoesPrimitiva = this.primitivasConhecidas[tipoPrimitiva][entidadeChamadaResolvidaVariavel.simbolo.lexema];
|
|
680
681
|
const erros = this.validarArgumentosEntidadeChamada(informacoesPrimitiva.argumentos, argumentos);
|
|
681
682
|
if (erros.length > 0) {
|
|
682
683
|
throw new erro_avaliador_sintatico_1.ErroAvaliadorSintatico(entidadeChamadaResolvidaVariavel.simbolo, `Erros ao resolver argumentos de chamada a ${entidadeChamadaResolvidaVariavel.simbolo.lexema}: \n${erros.reduce((mensagem, erro) => (mensagem += `${erro}\n`), '')}`);
|
|
@@ -1354,8 +1355,10 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1354
1355
|
// e a chamada normalmente é feita para uma primitiva.
|
|
1355
1356
|
// A inferência, portanto, ocorre pelo uso da primitiva.
|
|
1356
1357
|
const entidadeChamadaAcessoMetodoOuPropriedade = entidadeChamadaChamada;
|
|
1357
|
-
|
|
1358
|
-
|
|
1358
|
+
for (const primitiva in this.primitivasConhecidas) {
|
|
1359
|
+
if (this.primitivasConhecidas[primitiva].hasOwnProperty(entidadeChamadaAcessoMetodoOuPropriedade.simbolo.lexema)) {
|
|
1360
|
+
return this.primitivasConhecidas[primitiva][entidadeChamadaAcessoMetodoOuPropriedade.simbolo.lexema].tipo;
|
|
1361
|
+
}
|
|
1359
1362
|
}
|
|
1360
1363
|
throw new erro_avaliador_sintatico_1.ErroAvaliadorSintatico(entidadeChamadaAcessoMetodoOuPropriedade.simbolo, `Primitiva '${entidadeChamadaAcessoMetodoOuPropriedade.simbolo.lexema}' não existe.`);
|
|
1361
1364
|
case 'AcessoPropriedade':
|
|
@@ -1869,7 +1872,19 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1869
1872
|
}
|
|
1870
1873
|
exports.AvaliadorSintatico = AvaliadorSintatico;
|
|
1871
1874
|
|
|
1872
|
-
},{"../bibliotecas/primitivas-dicionario":
|
|
1875
|
+
},{"../bibliotecas/primitivas-dicionario":18,"../bibliotecas/primitivas-numero":19,"../bibliotecas/primitivas-texto":20,"../bibliotecas/primitivas-vetor":21,"../construtos":44,"../construtos/tuplas":54,"../declaracoes":84,"../inferenciador":107,"../informacao-variavel-ou-constante":108,"../tipos-de-dados/delegua":165,"../tipos-de-simbolos/delegua":168,"./avaliador-sintatico-base":1,"./comum":3,"./erro-avaliador-sintatico":9,"./informacao-escopo":11,"./pilha-escopos":14,"browser-process-hrtime":347}],3:[function(require,module,exports){
|
|
1876
|
+
"use strict";
|
|
1877
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1878
|
+
exports.registrarPrimitiva = registrarPrimitiva;
|
|
1879
|
+
const informacao_variavel_ou_constante_1 = require("../informacao-variavel-ou-constante");
|
|
1880
|
+
function registrarPrimitiva(primitivasConhecidas, tipo, catalogoPrimitivas) {
|
|
1881
|
+
primitivasConhecidas[tipo] = {};
|
|
1882
|
+
for (const [nomePrimitivaDicionario, dadosPrimitiva] of Object.entries(catalogoPrimitivas)) {
|
|
1883
|
+
primitivasConhecidas[tipo][nomePrimitivaDicionario] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(nomePrimitivaDicionario, tipo, dadosPrimitiva.argumentos);
|
|
1884
|
+
}
|
|
1885
|
+
}
|
|
1886
|
+
|
|
1887
|
+
},{"../informacao-variavel-ou-constante":108}],4:[function(require,module,exports){
|
|
1873
1888
|
"use strict";
|
|
1874
1889
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
1875
1890
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -2524,7 +2539,7 @@ class AvaliadorSintaticoEguaClassico {
|
|
|
2524
2539
|
}
|
|
2525
2540
|
exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
|
|
2526
2541
|
|
|
2527
|
-
},{"../../construtos":
|
|
2542
|
+
},{"../../construtos":44,"../../declaracoes":84,"../../tipos-de-simbolos/egua-classico":169,"../erro-avaliador-sintatico":9}],5:[function(require,module,exports){
|
|
2528
2543
|
"use strict";
|
|
2529
2544
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
2530
2545
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -2545,6 +2560,7 @@ const primitivas_dicionario_1 = __importDefault(require("../../bibliotecas/primi
|
|
|
2545
2560
|
const primitivas_numero_1 = __importDefault(require("../../bibliotecas/primitivas-numero"));
|
|
2546
2561
|
const primitivas_texto_1 = __importDefault(require("../../bibliotecas/primitivas-texto"));
|
|
2547
2562
|
const primitivas_vetor_1 = __importDefault(require("../../bibliotecas/primitivas-vetor"));
|
|
2563
|
+
const comum_1 = require("../comum");
|
|
2548
2564
|
/**
|
|
2549
2565
|
* O avaliador sintático (_Parser_) é responsável por transformar os símbolos do Lexador em estruturas de alto nível.
|
|
2550
2566
|
* Essas estruturas de alto nível são as partes que executam lógica de programação de fato.
|
|
@@ -2562,23 +2578,10 @@ class AvaliadorSintaticoPitugues {
|
|
|
2562
2578
|
this.pilhaEscopos = new pilha_escopos_1.PilhaEscopos();
|
|
2563
2579
|
this.primitivasConhecidas = {};
|
|
2564
2580
|
this.tiposDefinidosEmCodigo = {};
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
-
|
|
2568
|
-
|
|
2569
|
-
this.primitivasConhecidas[nomePrimitivaNumero] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(nomePrimitivaNumero, 'número', dadosPrimitiva.argumentos);
|
|
2570
|
-
}
|
|
2571
|
-
for (const [nomePrimitivaTexto, dadosPrimitiva] of Object.entries(primitivas_texto_1.default)) {
|
|
2572
|
-
this.primitivasConhecidas[nomePrimitivaTexto] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(nomePrimitivaTexto, 'texto', dadosPrimitiva.argumentos);
|
|
2573
|
-
}
|
|
2574
|
-
for (const [nomePrimitivaVetor, dadosPrimitiva] of Object.entries(primitivas_vetor_1.default)) {
|
|
2575
|
-
this.primitivasConhecidas[nomePrimitivaVetor] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(nomePrimitivaVetor, 'vetor', dadosPrimitiva.argumentos);
|
|
2576
|
-
}
|
|
2577
|
-
// TODO: Por enquanto não há necessidade de validar argumentos aqui, mas isso pode mudar no futuro.
|
|
2578
|
-
this.primitivasConhecidas['inteiro'] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('inteiro', 'inteiro');
|
|
2579
|
-
this.primitivasConhecidas['numero'] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('numero', 'número');
|
|
2580
|
-
this.primitivasConhecidas['número'] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('número', 'número');
|
|
2581
|
-
this.primitivasConhecidas['texto'] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('texto', 'texto');
|
|
2581
|
+
(0, comum_1.registrarPrimitiva)(this.primitivasConhecidas, 'dicionário', primitivas_dicionario_1.default);
|
|
2582
|
+
(0, comum_1.registrarPrimitiva)(this.primitivasConhecidas, 'número', primitivas_numero_1.default);
|
|
2583
|
+
(0, comum_1.registrarPrimitiva)(this.primitivasConhecidas, 'texto', primitivas_texto_1.default);
|
|
2584
|
+
(0, comum_1.registrarPrimitiva)(this.primitivasConhecidas, 'vetor', primitivas_vetor_1.default);
|
|
2582
2585
|
}
|
|
2583
2586
|
logicaComumInferenciaTiposVariaveisEConstantes(inicializador, tipo) {
|
|
2584
2587
|
if (tipo !== 'qualquer') {
|
|
@@ -2608,8 +2611,10 @@ class AvaliadorSintaticoPitugues {
|
|
|
2608
2611
|
// e a chamada normalmente é feita para uma primitiva.
|
|
2609
2612
|
// A inferência, portanto, ocorre pelo uso da primitiva.
|
|
2610
2613
|
const entidadeChamadaAcessoMetodoOuPropriedade = entidadeChamadaChamada;
|
|
2611
|
-
|
|
2612
|
-
|
|
2614
|
+
for (const primitiva in this.primitivasConhecidas) {
|
|
2615
|
+
if (this.primitivasConhecidas[primitiva].hasOwnProperty(entidadeChamadaAcessoMetodoOuPropriedade.simbolo.lexema)) {
|
|
2616
|
+
return this.primitivasConhecidas[primitiva][entidadeChamadaAcessoMetodoOuPropriedade.simbolo.lexema].tipo;
|
|
2617
|
+
}
|
|
2613
2618
|
}
|
|
2614
2619
|
throw new erro_avaliador_sintatico_1.ErroAvaliadorSintatico(entidadeChamadaAcessoMetodoOuPropriedade.simbolo, `Primitiva '${entidadeChamadaAcessoMetodoOuPropriedade.simbolo.lexema}' não existe.`);
|
|
2615
2620
|
case 'AcessoPropriedade':
|
|
@@ -3564,7 +3569,7 @@ class AvaliadorSintaticoPitugues {
|
|
|
3564
3569
|
}
|
|
3565
3570
|
exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
|
|
3566
3571
|
|
|
3567
|
-
},{"../../bibliotecas/primitivas-dicionario":
|
|
3572
|
+
},{"../../bibliotecas/primitivas-dicionario":18,"../../bibliotecas/primitivas-numero":19,"../../bibliotecas/primitivas-texto":20,"../../bibliotecas/primitivas-vetor":21,"../../construtos":44,"../../declaracoes":84,"../../inferenciador":107,"../../informacao-variavel-ou-constante":108,"../../lexador":157,"../../tipos-de-simbolos/pitugues":172,"../comum":3,"../erro-avaliador-sintatico":9,"../informacao-escopo":11,"../pilha-escopos":14,"browser-process-hrtime":347}],6:[function(require,module,exports){
|
|
3568
3573
|
"use strict";
|
|
3569
3574
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3570
3575
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -3733,7 +3738,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
|
|
|
3733
3738
|
}
|
|
3734
3739
|
exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
|
|
3735
3740
|
|
|
3736
|
-
},{"../../construtos":
|
|
3741
|
+
},{"../../construtos":44,"../../declaracoes":84,"../../tipos-de-simbolos/portugol-ipt":173,"../avaliador-sintatico-base":1}],7:[function(require,module,exports){
|
|
3737
3742
|
"use strict";
|
|
3738
3743
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3739
3744
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -4821,7 +4826,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
|
|
|
4821
4826
|
}
|
|
4822
4827
|
exports.AvaliadorSintaticoTenda = AvaliadorSintaticoTenda;
|
|
4823
4828
|
|
|
4824
|
-
},{"../../bibliotecas/primitivas-dicionario":
|
|
4829
|
+
},{"../../bibliotecas/primitivas-dicionario":18,"../../bibliotecas/primitivas-numero":19,"../../bibliotecas/primitivas-texto":20,"../../bibliotecas/primitivas-vetor":21,"../../construtos":44,"../../construtos/tuplas":54,"../../declaracoes":84,"../../inferenciador":107,"../../informacao-variavel-ou-constante":108,"../../lexador/simbolo":163,"../../tipos-de-dados/delegua":165,"../../tipos-de-simbolos/tenda":174,"../avaliador-sintatico-base":1,"./../erro-avaliador-sintatico":9,"./../informacao-escopo":11,"./../pilha-escopos":14,"browser-process-hrtime":347}],8:[function(require,module,exports){
|
|
4825
4830
|
"use strict";
|
|
4826
4831
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4827
4832
|
if (k2 === undefined) k2 = k;
|
|
@@ -4843,7 +4848,7 @@ __exportStar(require("./avaliador-sintatico-pitugues"), exports);
|
|
|
4843
4848
|
__exportStar(require("./avaliador-sintatico-portugol-ipt"), exports);
|
|
4844
4849
|
__exportStar(require("./avaliador-sintatico-tenda"), exports);
|
|
4845
4850
|
|
|
4846
|
-
},{"./avaliador-sintatico-egua-classico":
|
|
4851
|
+
},{"./avaliador-sintatico-egua-classico":4,"./avaliador-sintatico-pitugues":5,"./avaliador-sintatico-portugol-ipt":6,"./avaliador-sintatico-tenda":7}],9:[function(require,module,exports){
|
|
4847
4852
|
"use strict";
|
|
4848
4853
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4849
4854
|
exports.ErroAvaliadorSintatico = void 0;
|
|
@@ -4858,7 +4863,7 @@ class ErroAvaliadorSintatico extends Error {
|
|
|
4858
4863
|
}
|
|
4859
4864
|
exports.ErroAvaliadorSintatico = ErroAvaliadorSintatico;
|
|
4860
4865
|
|
|
4861
|
-
},{}],
|
|
4866
|
+
},{}],10:[function(require,module,exports){
|
|
4862
4867
|
"use strict";
|
|
4863
4868
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4864
4869
|
if (k2 === undefined) k2 = k;
|
|
@@ -4884,7 +4889,7 @@ __exportStar(require("./micro-avaliador-sintatico"), exports);
|
|
|
4884
4889
|
__exportStar(require("./pilha-escopos"), exports);
|
|
4885
4890
|
__exportStar(require("./retornos"), exports);
|
|
4886
4891
|
|
|
4887
|
-
},{"./avaliador-sintatico":2,"./avaliador-sintatico-base":1,"./dialetos":
|
|
4892
|
+
},{"./avaliador-sintatico":2,"./avaliador-sintatico-base":1,"./dialetos":8,"./erro-avaliador-sintatico":9,"./informacao-escopo":11,"./micro-avaliador-sintatico":13,"./pilha-escopos":14,"./retornos":15}],11:[function(require,module,exports){
|
|
4888
4893
|
"use strict";
|
|
4889
4894
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4890
4895
|
exports.InformacaoEscopo = void 0;
|
|
@@ -4896,7 +4901,7 @@ class InformacaoEscopo {
|
|
|
4896
4901
|
}
|
|
4897
4902
|
exports.InformacaoEscopo = InformacaoEscopo;
|
|
4898
4903
|
|
|
4899
|
-
},{}],
|
|
4904
|
+
},{}],12:[function(require,module,exports){
|
|
4900
4905
|
"use strict";
|
|
4901
4906
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4902
4907
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -5014,7 +5019,7 @@ class MicroAvaliadorSintaticoBase {
|
|
|
5014
5019
|
}
|
|
5015
5020
|
exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
|
|
5016
5021
|
|
|
5017
|
-
},{"../construtos":
|
|
5022
|
+
},{"../construtos":44,"../tipos-de-simbolos/comum":167,"./erro-avaliador-sintatico":9}],13:[function(require,module,exports){
|
|
5018
5023
|
"use strict";
|
|
5019
5024
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
5020
5025
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -5220,7 +5225,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
|
|
|
5220
5225
|
}
|
|
5221
5226
|
exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
|
|
5222
5227
|
|
|
5223
|
-
},{"../construtos":
|
|
5228
|
+
},{"../construtos":44,"../tipos-de-simbolos/microgramaticas/delegua":171,"./micro-avaliador-sintatico-base":12}],14:[function(require,module,exports){
|
|
5224
5229
|
"use strict";
|
|
5225
5230
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5226
5231
|
exports.PilhaEscopos = void 0;
|
|
@@ -5276,7 +5281,7 @@ class PilhaEscopos {
|
|
|
5276
5281
|
}
|
|
5277
5282
|
exports.PilhaEscopos = PilhaEscopos;
|
|
5278
5283
|
|
|
5279
|
-
},{}],
|
|
5284
|
+
},{}],15:[function(require,module,exports){
|
|
5280
5285
|
"use strict";
|
|
5281
5286
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5282
5287
|
if (k2 === undefined) k2 = k;
|
|
@@ -5295,11 +5300,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
5295
5300
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5296
5301
|
__exportStar(require("./retorno-primario"), exports);
|
|
5297
5302
|
|
|
5298
|
-
},{"./retorno-primario":
|
|
5303
|
+
},{"./retorno-primario":16}],16:[function(require,module,exports){
|
|
5299
5304
|
"use strict";
|
|
5300
5305
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5301
5306
|
|
|
5302
|
-
},{}],
|
|
5307
|
+
},{}],17:[function(require,module,exports){
|
|
5303
5308
|
"use strict";
|
|
5304
5309
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5305
5310
|
exports.aleatorio = aleatorio;
|
|
@@ -5848,7 +5853,7 @@ async function tupla(interpretador, vetor) {
|
|
|
5848
5853
|
}
|
|
5849
5854
|
}
|
|
5850
5855
|
|
|
5851
|
-
},{"../construtos":
|
|
5856
|
+
},{"../construtos":44,"../excecoes":101,"../interpretador/estruturas":137,"../interpretador/estruturas/descritor-tipo-classe":135,"../interpretador/estruturas/funcao-padrao":136,"../interpretador/estruturas/objeto-delegua-classe":140}],18:[function(require,module,exports){
|
|
5852
5857
|
"use strict";
|
|
5853
5858
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5854
5859
|
exports.default = {
|
|
@@ -5868,7 +5873,7 @@ exports.default = {
|
|
|
5868
5873
|
},
|
|
5869
5874
|
};
|
|
5870
5875
|
|
|
5871
|
-
},{}],
|
|
5876
|
+
},{}],19:[function(require,module,exports){
|
|
5872
5877
|
"use strict";
|
|
5873
5878
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5874
5879
|
exports.default = {
|
|
@@ -5895,7 +5900,7 @@ exports.default = {
|
|
|
5895
5900
|
},
|
|
5896
5901
|
};
|
|
5897
5902
|
|
|
5898
|
-
},{}],
|
|
5903
|
+
},{}],20:[function(require,module,exports){
|
|
5899
5904
|
"use strict";
|
|
5900
5905
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5901
5906
|
const informacao_variavel_ou_constante_1 = require("../informacao-variavel-ou-constante");
|
|
@@ -5984,7 +5989,7 @@ exports.default = {
|
|
|
5984
5989
|
},
|
|
5985
5990
|
};
|
|
5986
5991
|
|
|
5987
|
-
},{"../informacao-variavel-ou-constante":
|
|
5992
|
+
},{"../informacao-variavel-ou-constante":108}],21:[function(require,module,exports){
|
|
5988
5993
|
"use strict";
|
|
5989
5994
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5990
5995
|
const informacao_variavel_ou_constante_1 = require("../informacao-variavel-ou-constante");
|
|
@@ -6151,7 +6156,7 @@ exports.default = {
|
|
|
6151
6156
|
},
|
|
6152
6157
|
};
|
|
6153
6158
|
|
|
6154
|
-
},{"../informacao-variavel-ou-constante":
|
|
6159
|
+
},{"../informacao-variavel-ou-constante":108}],22:[function(require,module,exports){
|
|
6155
6160
|
"use strict";
|
|
6156
6161
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6157
6162
|
exports.AcessoElementoMatriz = void 0;
|
|
@@ -6170,7 +6175,7 @@ class AcessoElementoMatriz {
|
|
|
6170
6175
|
}
|
|
6171
6176
|
exports.AcessoElementoMatriz = AcessoElementoMatriz;
|
|
6172
6177
|
|
|
6173
|
-
},{}],
|
|
6178
|
+
},{}],23:[function(require,module,exports){
|
|
6174
6179
|
"use strict";
|
|
6175
6180
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6176
6181
|
exports.AcessoIndiceVariavel = void 0;
|
|
@@ -6192,7 +6197,7 @@ class AcessoIndiceVariavel {
|
|
|
6192
6197
|
}
|
|
6193
6198
|
exports.AcessoIndiceVariavel = AcessoIndiceVariavel;
|
|
6194
6199
|
|
|
6195
|
-
},{}],
|
|
6200
|
+
},{}],24:[function(require,module,exports){
|
|
6196
6201
|
"use strict";
|
|
6197
6202
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6198
6203
|
exports.AcessoMetodoOuPropriedade = void 0;
|
|
@@ -6216,7 +6221,7 @@ class AcessoMetodoOuPropriedade {
|
|
|
6216
6221
|
}
|
|
6217
6222
|
exports.AcessoMetodoOuPropriedade = AcessoMetodoOuPropriedade;
|
|
6218
6223
|
|
|
6219
|
-
},{}],
|
|
6224
|
+
},{}],25:[function(require,module,exports){
|
|
6220
6225
|
"use strict";
|
|
6221
6226
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6222
6227
|
exports.AcessoMetodo = void 0;
|
|
@@ -6235,7 +6240,7 @@ class AcessoMetodo {
|
|
|
6235
6240
|
}
|
|
6236
6241
|
exports.AcessoMetodo = AcessoMetodo;
|
|
6237
6242
|
|
|
6238
|
-
},{}],
|
|
6243
|
+
},{}],26:[function(require,module,exports){
|
|
6239
6244
|
"use strict";
|
|
6240
6245
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6241
6246
|
exports.AcessoPropriedade = void 0;
|
|
@@ -6253,7 +6258,7 @@ class AcessoPropriedade {
|
|
|
6253
6258
|
}
|
|
6254
6259
|
exports.AcessoPropriedade = AcessoPropriedade;
|
|
6255
6260
|
|
|
6256
|
-
},{}],
|
|
6261
|
+
},{}],27:[function(require,module,exports){
|
|
6257
6262
|
"use strict";
|
|
6258
6263
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6259
6264
|
exports.Agrupamento = void 0;
|
|
@@ -6275,7 +6280,7 @@ class Agrupamento {
|
|
|
6275
6280
|
}
|
|
6276
6281
|
exports.Agrupamento = Agrupamento;
|
|
6277
6282
|
|
|
6278
|
-
},{}],
|
|
6283
|
+
},{}],28:[function(require,module,exports){
|
|
6279
6284
|
"use strict";
|
|
6280
6285
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6281
6286
|
exports.ArgumentoReferenciaFuncao = void 0;
|
|
@@ -6296,7 +6301,7 @@ class ArgumentoReferenciaFuncao {
|
|
|
6296
6301
|
}
|
|
6297
6302
|
exports.ArgumentoReferenciaFuncao = ArgumentoReferenciaFuncao;
|
|
6298
6303
|
|
|
6299
|
-
},{}],
|
|
6304
|
+
},{}],29:[function(require,module,exports){
|
|
6300
6305
|
"use strict";
|
|
6301
6306
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6302
6307
|
exports.AtribuicaoPorIndice = void 0;
|
|
@@ -6314,7 +6319,7 @@ class AtribuicaoPorIndice {
|
|
|
6314
6319
|
}
|
|
6315
6320
|
exports.AtribuicaoPorIndice = AtribuicaoPorIndice;
|
|
6316
6321
|
|
|
6317
|
-
},{}],
|
|
6322
|
+
},{}],30:[function(require,module,exports){
|
|
6318
6323
|
"use strict";
|
|
6319
6324
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6320
6325
|
exports.AtribuicaoPorIndicesMatriz = void 0;
|
|
@@ -6333,7 +6338,7 @@ class AtribuicaoPorIndicesMatriz {
|
|
|
6333
6338
|
}
|
|
6334
6339
|
exports.AtribuicaoPorIndicesMatriz = AtribuicaoPorIndicesMatriz;
|
|
6335
6340
|
|
|
6336
|
-
},{}],
|
|
6341
|
+
},{}],31:[function(require,module,exports){
|
|
6337
6342
|
"use strict";
|
|
6338
6343
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6339
6344
|
exports.Atribuir = void 0;
|
|
@@ -6362,7 +6367,7 @@ class Atribuir {
|
|
|
6362
6367
|
}
|
|
6363
6368
|
exports.Atribuir = Atribuir;
|
|
6364
6369
|
|
|
6365
|
-
},{}],
|
|
6370
|
+
},{}],32:[function(require,module,exports){
|
|
6366
6371
|
"use strict";
|
|
6367
6372
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6368
6373
|
exports.Binario = void 0;
|
|
@@ -6421,7 +6426,7 @@ class Binario {
|
|
|
6421
6426
|
}
|
|
6422
6427
|
exports.Binario = Binario;
|
|
6423
6428
|
|
|
6424
|
-
},{}],
|
|
6429
|
+
},{}],33:[function(require,module,exports){
|
|
6425
6430
|
"use strict";
|
|
6426
6431
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6427
6432
|
exports.Chamada = void 0;
|
|
@@ -6443,7 +6448,7 @@ class Chamada {
|
|
|
6443
6448
|
}
|
|
6444
6449
|
exports.Chamada = Chamada;
|
|
6445
6450
|
|
|
6446
|
-
},{"../geracao-identificadores":
|
|
6451
|
+
},{"../geracao-identificadores":105}],34:[function(require,module,exports){
|
|
6447
6452
|
"use strict";
|
|
6448
6453
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6449
6454
|
exports.ComponenteLinguagem = void 0;
|
|
@@ -6463,7 +6468,7 @@ class ComponenteLinguagem {
|
|
|
6463
6468
|
}
|
|
6464
6469
|
exports.ComponenteLinguagem = ComponenteLinguagem;
|
|
6465
6470
|
|
|
6466
|
-
},{}],
|
|
6471
|
+
},{}],35:[function(require,module,exports){
|
|
6467
6472
|
"use strict";
|
|
6468
6473
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6469
6474
|
exports.Constante = void 0;
|
|
@@ -6482,11 +6487,11 @@ class Constante {
|
|
|
6482
6487
|
}
|
|
6483
6488
|
exports.Constante = Constante;
|
|
6484
6489
|
|
|
6485
|
-
},{}],
|
|
6490
|
+
},{}],36:[function(require,module,exports){
|
|
6486
6491
|
"use strict";
|
|
6487
6492
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6488
6493
|
|
|
6489
|
-
},{}],
|
|
6494
|
+
},{}],37:[function(require,module,exports){
|
|
6490
6495
|
"use strict";
|
|
6491
6496
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6492
6497
|
exports.Decorador = void 0;
|
|
@@ -6507,7 +6512,7 @@ class Decorador {
|
|
|
6507
6512
|
}
|
|
6508
6513
|
exports.Decorador = Decorador;
|
|
6509
6514
|
|
|
6510
|
-
},{}],
|
|
6515
|
+
},{}],38:[function(require,module,exports){
|
|
6511
6516
|
"use strict";
|
|
6512
6517
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6513
6518
|
exports.DefinirValor = void 0;
|
|
@@ -6525,7 +6530,7 @@ class DefinirValor {
|
|
|
6525
6530
|
}
|
|
6526
6531
|
exports.DefinirValor = DefinirValor;
|
|
6527
6532
|
|
|
6528
|
-
},{}],
|
|
6533
|
+
},{}],39:[function(require,module,exports){
|
|
6529
6534
|
"use strict";
|
|
6530
6535
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6531
6536
|
exports.Dicionario = void 0;
|
|
@@ -6543,7 +6548,7 @@ class Dicionario {
|
|
|
6543
6548
|
}
|
|
6544
6549
|
exports.Dicionario = Dicionario;
|
|
6545
6550
|
|
|
6546
|
-
},{}],
|
|
6551
|
+
},{}],40:[function(require,module,exports){
|
|
6547
6552
|
"use strict";
|
|
6548
6553
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6549
6554
|
exports.ExpressaoRegular = void 0;
|
|
@@ -6560,7 +6565,7 @@ class ExpressaoRegular {
|
|
|
6560
6565
|
}
|
|
6561
6566
|
exports.ExpressaoRegular = ExpressaoRegular;
|
|
6562
6567
|
|
|
6563
|
-
},{}],
|
|
6568
|
+
},{}],41:[function(require,module,exports){
|
|
6564
6569
|
"use strict";
|
|
6565
6570
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6566
6571
|
exports.FimPara = void 0;
|
|
@@ -6587,7 +6592,7 @@ class FimPara {
|
|
|
6587
6592
|
}
|
|
6588
6593
|
exports.FimPara = FimPara;
|
|
6589
6594
|
|
|
6590
|
-
},{}],
|
|
6595
|
+
},{}],42:[function(require,module,exports){
|
|
6591
6596
|
"use strict";
|
|
6592
6597
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6593
6598
|
exports.FormatacaoEscrita = void 0;
|
|
@@ -6610,7 +6615,7 @@ class FormatacaoEscrita {
|
|
|
6610
6615
|
}
|
|
6611
6616
|
exports.FormatacaoEscrita = FormatacaoEscrita;
|
|
6612
6617
|
|
|
6613
|
-
},{}],
|
|
6618
|
+
},{}],43:[function(require,module,exports){
|
|
6614
6619
|
"use strict";
|
|
6615
6620
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6616
6621
|
exports.FuncaoConstruto = void 0;
|
|
@@ -6628,7 +6633,7 @@ class FuncaoConstruto {
|
|
|
6628
6633
|
}
|
|
6629
6634
|
exports.FuncaoConstruto = FuncaoConstruto;
|
|
6630
6635
|
|
|
6631
|
-
},{}],
|
|
6636
|
+
},{}],44:[function(require,module,exports){
|
|
6632
6637
|
"use strict";
|
|
6633
6638
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6634
6639
|
if (k2 === undefined) k2 = k;
|
|
@@ -6679,7 +6684,7 @@ __exportStar(require("./unario"), exports);
|
|
|
6679
6684
|
__exportStar(require("./variavel"), exports);
|
|
6680
6685
|
__exportStar(require("./vetor"), exports);
|
|
6681
6686
|
|
|
6682
|
-
},{"./acesso-elemento-matriz":
|
|
6687
|
+
},{"./acesso-elemento-matriz":22,"./acesso-indice-variavel":23,"./acesso-metodo":25,"./acesso-metodo-ou-propriedade":24,"./acesso-propriedade":26,"./agrupamento":27,"./argumento-referencia-funcao":28,"./atribuicao-por-indice":29,"./atribuicao-por-indices-matriz":30,"./atribuir":31,"./binario":32,"./chamada":33,"./componente-linguagem":34,"./constante":35,"./construto":36,"./decorador":37,"./definir-valor":38,"./dicionario":39,"./expressao-regular":40,"./fim-para":41,"./formatacao-escrita":42,"./funcao":43,"./isto":45,"./leia":46,"./literal":47,"./logico":48,"./referencia-funcao":49,"./super":50,"./tipo-de":51,"./tuplas":54,"./unario":63,"./variavel":64,"./vetor":65}],45:[function(require,module,exports){
|
|
6683
6688
|
"use strict";
|
|
6684
6689
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6685
6690
|
exports.Isto = void 0;
|
|
@@ -6695,7 +6700,7 @@ class Isto {
|
|
|
6695
6700
|
}
|
|
6696
6701
|
exports.Isto = Isto;
|
|
6697
6702
|
|
|
6698
|
-
},{}],
|
|
6703
|
+
},{}],46:[function(require,module,exports){
|
|
6699
6704
|
"use strict";
|
|
6700
6705
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6701
6706
|
exports.Leia = void 0;
|
|
@@ -6718,7 +6723,7 @@ class Leia {
|
|
|
6718
6723
|
}
|
|
6719
6724
|
exports.Leia = Leia;
|
|
6720
6725
|
|
|
6721
|
-
},{"../geracao-identificadores":
|
|
6726
|
+
},{"../geracao-identificadores":105}],47:[function(require,module,exports){
|
|
6722
6727
|
"use strict";
|
|
6723
6728
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6724
6729
|
exports.Literal = void 0;
|
|
@@ -6735,7 +6740,7 @@ class Literal {
|
|
|
6735
6740
|
}
|
|
6736
6741
|
exports.Literal = Literal;
|
|
6737
6742
|
|
|
6738
|
-
},{}],
|
|
6743
|
+
},{}],48:[function(require,module,exports){
|
|
6739
6744
|
"use strict";
|
|
6740
6745
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6741
6746
|
exports.Logico = void 0;
|
|
@@ -6753,7 +6758,7 @@ class Logico {
|
|
|
6753
6758
|
}
|
|
6754
6759
|
exports.Logico = Logico;
|
|
6755
6760
|
|
|
6756
|
-
},{}],
|
|
6761
|
+
},{}],49:[function(require,module,exports){
|
|
6757
6762
|
"use strict";
|
|
6758
6763
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6759
6764
|
exports.ReferenciaFuncao = void 0;
|
|
@@ -6771,7 +6776,7 @@ class ReferenciaFuncao {
|
|
|
6771
6776
|
}
|
|
6772
6777
|
exports.ReferenciaFuncao = ReferenciaFuncao;
|
|
6773
6778
|
|
|
6774
|
-
},{}],
|
|
6779
|
+
},{}],50:[function(require,module,exports){
|
|
6775
6780
|
"use strict";
|
|
6776
6781
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6777
6782
|
exports.Super = void 0;
|
|
@@ -6788,7 +6793,7 @@ class Super {
|
|
|
6788
6793
|
}
|
|
6789
6794
|
exports.Super = Super;
|
|
6790
6795
|
|
|
6791
|
-
},{}],
|
|
6796
|
+
},{}],51:[function(require,module,exports){
|
|
6792
6797
|
"use strict";
|
|
6793
6798
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6794
6799
|
exports.TipoDe = void 0;
|
|
@@ -6809,7 +6814,7 @@ class TipoDe {
|
|
|
6809
6814
|
}
|
|
6810
6815
|
exports.TipoDe = TipoDe;
|
|
6811
6816
|
|
|
6812
|
-
},{}],
|
|
6817
|
+
},{}],52:[function(require,module,exports){
|
|
6813
6818
|
"use strict";
|
|
6814
6819
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6815
6820
|
exports.Deceto = void 0;
|
|
@@ -6843,7 +6848,7 @@ class Deceto extends tupla_1.Tupla {
|
|
|
6843
6848
|
}
|
|
6844
6849
|
exports.Deceto = Deceto;
|
|
6845
6850
|
|
|
6846
|
-
},{"./tupla":
|
|
6851
|
+
},{"./tupla":62}],53:[function(require,module,exports){
|
|
6847
6852
|
"use strict";
|
|
6848
6853
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6849
6854
|
exports.Dupla = void 0;
|
|
@@ -6857,7 +6862,7 @@ class Dupla extends tupla_1.Tupla {
|
|
|
6857
6862
|
}
|
|
6858
6863
|
exports.Dupla = Dupla;
|
|
6859
6864
|
|
|
6860
|
-
},{"./tupla":
|
|
6865
|
+
},{"./tupla":62}],54:[function(require,module,exports){
|
|
6861
6866
|
"use strict";
|
|
6862
6867
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6863
6868
|
if (k2 === undefined) k2 = k;
|
|
@@ -6926,7 +6931,7 @@ class SeletorTuplas {
|
|
|
6926
6931
|
}
|
|
6927
6932
|
exports.SeletorTuplas = SeletorTuplas;
|
|
6928
6933
|
|
|
6929
|
-
},{"./deceto":
|
|
6934
|
+
},{"./deceto":52,"./dupla":53,"./noneto":55,"./octeto":56,"./quarteto":57,"./quinteto":58,"./septeto":59,"./sexteto":60,"./trio":61,"./tupla":62}],55:[function(require,module,exports){
|
|
6930
6935
|
"use strict";
|
|
6931
6936
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6932
6937
|
exports.Noneto = void 0;
|
|
@@ -6953,7 +6958,7 @@ class Noneto extends tupla_1.Tupla {
|
|
|
6953
6958
|
}
|
|
6954
6959
|
exports.Noneto = Noneto;
|
|
6955
6960
|
|
|
6956
|
-
},{"./tupla":
|
|
6961
|
+
},{"./tupla":62}],56:[function(require,module,exports){
|
|
6957
6962
|
"use strict";
|
|
6958
6963
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6959
6964
|
exports.Octeto = void 0;
|
|
@@ -6979,7 +6984,7 @@ class Octeto extends tupla_1.Tupla {
|
|
|
6979
6984
|
}
|
|
6980
6985
|
exports.Octeto = Octeto;
|
|
6981
6986
|
|
|
6982
|
-
},{"./tupla":
|
|
6987
|
+
},{"./tupla":62}],57:[function(require,module,exports){
|
|
6983
6988
|
"use strict";
|
|
6984
6989
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6985
6990
|
exports.Quarteto = void 0;
|
|
@@ -6995,7 +7000,7 @@ class Quarteto extends tupla_1.Tupla {
|
|
|
6995
7000
|
}
|
|
6996
7001
|
exports.Quarteto = Quarteto;
|
|
6997
7002
|
|
|
6998
|
-
},{"./tupla":
|
|
7003
|
+
},{"./tupla":62}],58:[function(require,module,exports){
|
|
6999
7004
|
"use strict";
|
|
7000
7005
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7001
7006
|
exports.Quinteto = void 0;
|
|
@@ -7012,7 +7017,7 @@ class Quinteto extends tupla_1.Tupla {
|
|
|
7012
7017
|
}
|
|
7013
7018
|
exports.Quinteto = Quinteto;
|
|
7014
7019
|
|
|
7015
|
-
},{"./tupla":
|
|
7020
|
+
},{"./tupla":62}],59:[function(require,module,exports){
|
|
7016
7021
|
"use strict";
|
|
7017
7022
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7018
7023
|
exports.Septeto = void 0;
|
|
@@ -7037,7 +7042,7 @@ class Septeto extends tupla_1.Tupla {
|
|
|
7037
7042
|
}
|
|
7038
7043
|
exports.Septeto = Septeto;
|
|
7039
7044
|
|
|
7040
|
-
},{"./tupla":
|
|
7045
|
+
},{"./tupla":62}],60:[function(require,module,exports){
|
|
7041
7046
|
"use strict";
|
|
7042
7047
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7043
7048
|
exports.Sexteto = void 0;
|
|
@@ -7055,7 +7060,7 @@ class Sexteto extends tupla_1.Tupla {
|
|
|
7055
7060
|
}
|
|
7056
7061
|
exports.Sexteto = Sexteto;
|
|
7057
7062
|
|
|
7058
|
-
},{"./tupla":
|
|
7063
|
+
},{"./tupla":62}],61:[function(require,module,exports){
|
|
7059
7064
|
"use strict";
|
|
7060
7065
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7061
7066
|
exports.Trio = void 0;
|
|
@@ -7070,7 +7075,7 @@ class Trio extends tupla_1.Tupla {
|
|
|
7070
7075
|
}
|
|
7071
7076
|
exports.Trio = Trio;
|
|
7072
7077
|
|
|
7073
|
-
},{"./tupla":
|
|
7078
|
+
},{"./tupla":62}],62:[function(require,module,exports){
|
|
7074
7079
|
"use strict";
|
|
7075
7080
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7076
7081
|
exports.Tupla = void 0;
|
|
@@ -7081,7 +7086,7 @@ class Tupla {
|
|
|
7081
7086
|
}
|
|
7082
7087
|
exports.Tupla = Tupla;
|
|
7083
7088
|
|
|
7084
|
-
},{}],
|
|
7089
|
+
},{}],63:[function(require,module,exports){
|
|
7085
7090
|
"use strict";
|
|
7086
7091
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7087
7092
|
exports.Unario = void 0;
|
|
@@ -7099,7 +7104,7 @@ class Unario {
|
|
|
7099
7104
|
}
|
|
7100
7105
|
exports.Unario = Unario;
|
|
7101
7106
|
|
|
7102
|
-
},{}],
|
|
7107
|
+
},{}],64:[function(require,module,exports){
|
|
7103
7108
|
"use strict";
|
|
7104
7109
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7105
7110
|
exports.Variavel = void 0;
|
|
@@ -7116,7 +7121,7 @@ class Variavel {
|
|
|
7116
7121
|
}
|
|
7117
7122
|
exports.Variavel = Variavel;
|
|
7118
7123
|
|
|
7119
|
-
},{}],
|
|
7124
|
+
},{}],65:[function(require,module,exports){
|
|
7120
7125
|
"use strict";
|
|
7121
7126
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7122
7127
|
exports.Vetor = void 0;
|
|
@@ -7139,7 +7144,7 @@ class Vetor {
|
|
|
7139
7144
|
}
|
|
7140
7145
|
exports.Vetor = Vetor;
|
|
7141
7146
|
|
|
7142
|
-
},{}],
|
|
7147
|
+
},{}],66:[function(require,module,exports){
|
|
7143
7148
|
"use strict";
|
|
7144
7149
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7145
7150
|
exports.Aleatorio = void 0;
|
|
@@ -7156,7 +7161,7 @@ class Aleatorio extends declaracao_1.Declaracao {
|
|
|
7156
7161
|
}
|
|
7157
7162
|
exports.Aleatorio = Aleatorio;
|
|
7158
7163
|
|
|
7159
|
-
},{"./declaracao":
|
|
7164
|
+
},{"./declaracao":74}],67:[function(require,module,exports){
|
|
7160
7165
|
"use strict";
|
|
7161
7166
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7162
7167
|
exports.Bloco = void 0;
|
|
@@ -7172,7 +7177,7 @@ class Bloco extends declaracao_1.Declaracao {
|
|
|
7172
7177
|
}
|
|
7173
7178
|
exports.Bloco = Bloco;
|
|
7174
7179
|
|
|
7175
|
-
},{"./declaracao":
|
|
7180
|
+
},{"./declaracao":74}],68:[function(require,module,exports){
|
|
7176
7181
|
"use strict";
|
|
7177
7182
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7178
7183
|
exports.CabecalhoPrograma = void 0;
|
|
@@ -7188,7 +7193,7 @@ class CabecalhoPrograma extends declaracao_1.Declaracao {
|
|
|
7188
7193
|
}
|
|
7189
7194
|
exports.CabecalhoPrograma = CabecalhoPrograma;
|
|
7190
7195
|
|
|
7191
|
-
},{"./declaracao":
|
|
7196
|
+
},{"./declaracao":74}],69:[function(require,module,exports){
|
|
7192
7197
|
"use strict";
|
|
7193
7198
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7194
7199
|
exports.Classe = void 0;
|
|
@@ -7208,7 +7213,7 @@ class Classe extends declaracao_1.Declaracao {
|
|
|
7208
7213
|
}
|
|
7209
7214
|
exports.Classe = Classe;
|
|
7210
7215
|
|
|
7211
|
-
},{"./declaracao":
|
|
7216
|
+
},{"./declaracao":74}],70:[function(require,module,exports){
|
|
7212
7217
|
"use strict";
|
|
7213
7218
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7214
7219
|
exports.Comentario = void 0;
|
|
@@ -7230,7 +7235,7 @@ class Comentario extends declaracao_1.Declaracao {
|
|
|
7230
7235
|
}
|
|
7231
7236
|
exports.Comentario = Comentario;
|
|
7232
7237
|
|
|
7233
|
-
},{"./declaracao":
|
|
7238
|
+
},{"./declaracao":74}],71:[function(require,module,exports){
|
|
7234
7239
|
"use strict";
|
|
7235
7240
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7236
7241
|
exports.ConstMultiplo = void 0;
|
|
@@ -7251,7 +7256,7 @@ class ConstMultiplo extends declaracao_1.Declaracao {
|
|
|
7251
7256
|
}
|
|
7252
7257
|
exports.ConstMultiplo = ConstMultiplo;
|
|
7253
7258
|
|
|
7254
|
-
},{"./declaracao":
|
|
7259
|
+
},{"./declaracao":74}],72:[function(require,module,exports){
|
|
7255
7260
|
"use strict";
|
|
7256
7261
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7257
7262
|
exports.Const = void 0;
|
|
@@ -7279,7 +7284,7 @@ class Const extends declaracao_1.Declaracao {
|
|
|
7279
7284
|
}
|
|
7280
7285
|
exports.Const = Const;
|
|
7281
7286
|
|
|
7282
|
-
},{"./declaracao":
|
|
7287
|
+
},{"./declaracao":74}],73:[function(require,module,exports){
|
|
7283
7288
|
"use strict";
|
|
7284
7289
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7285
7290
|
exports.Continua = void 0;
|
|
@@ -7294,7 +7299,7 @@ class Continua extends declaracao_1.Declaracao {
|
|
|
7294
7299
|
}
|
|
7295
7300
|
exports.Continua = Continua;
|
|
7296
7301
|
|
|
7297
|
-
},{"./declaracao":
|
|
7302
|
+
},{"./declaracao":74}],74:[function(require,module,exports){
|
|
7298
7303
|
"use strict";
|
|
7299
7304
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7300
7305
|
exports.Declaracao = void 0;
|
|
@@ -7314,7 +7319,7 @@ class Declaracao {
|
|
|
7314
7319
|
}
|
|
7315
7320
|
exports.Declaracao = Declaracao;
|
|
7316
7321
|
|
|
7317
|
-
},{}],
|
|
7322
|
+
},{}],75:[function(require,module,exports){
|
|
7318
7323
|
"use strict";
|
|
7319
7324
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7320
7325
|
exports.Enquanto = void 0;
|
|
@@ -7331,7 +7336,7 @@ class Enquanto extends declaracao_1.Declaracao {
|
|
|
7331
7336
|
}
|
|
7332
7337
|
exports.Enquanto = Enquanto;
|
|
7333
7338
|
|
|
7334
|
-
},{"./declaracao":
|
|
7339
|
+
},{"./declaracao":74}],76:[function(require,module,exports){
|
|
7335
7340
|
"use strict";
|
|
7336
7341
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7337
7342
|
exports.Escolha = void 0;
|
|
@@ -7352,7 +7357,7 @@ class Escolha extends declaracao_1.Declaracao {
|
|
|
7352
7357
|
}
|
|
7353
7358
|
exports.Escolha = Escolha;
|
|
7354
7359
|
|
|
7355
|
-
},{"./declaracao":
|
|
7360
|
+
},{"./declaracao":74}],77:[function(require,module,exports){
|
|
7356
7361
|
"use strict";
|
|
7357
7362
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7358
7363
|
exports.EscrevaMesmaLinha = void 0;
|
|
@@ -7368,7 +7373,7 @@ class EscrevaMesmaLinha extends declaracao_1.Declaracao {
|
|
|
7368
7373
|
}
|
|
7369
7374
|
exports.EscrevaMesmaLinha = EscrevaMesmaLinha;
|
|
7370
7375
|
|
|
7371
|
-
},{"./declaracao":
|
|
7376
|
+
},{"./declaracao":74}],78:[function(require,module,exports){
|
|
7372
7377
|
"use strict";
|
|
7373
7378
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7374
7379
|
exports.Escreva = void 0;
|
|
@@ -7384,7 +7389,7 @@ class Escreva extends declaracao_1.Declaracao {
|
|
|
7384
7389
|
}
|
|
7385
7390
|
exports.Escreva = Escreva;
|
|
7386
7391
|
|
|
7387
|
-
},{"./declaracao":
|
|
7392
|
+
},{"./declaracao":74}],79:[function(require,module,exports){
|
|
7388
7393
|
"use strict";
|
|
7389
7394
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7390
7395
|
exports.Expressao = void 0;
|
|
@@ -7400,7 +7405,7 @@ class Expressao extends declaracao_1.Declaracao {
|
|
|
7400
7405
|
}
|
|
7401
7406
|
exports.Expressao = Expressao;
|
|
7402
7407
|
|
|
7403
|
-
},{"./declaracao":
|
|
7408
|
+
},{"./declaracao":74}],80:[function(require,module,exports){
|
|
7404
7409
|
"use strict";
|
|
7405
7410
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7406
7411
|
exports.Falhar = void 0;
|
|
@@ -7417,7 +7422,7 @@ class Falhar extends declaracao_1.Declaracao {
|
|
|
7417
7422
|
}
|
|
7418
7423
|
exports.Falhar = Falhar;
|
|
7419
7424
|
|
|
7420
|
-
},{"./declaracao":
|
|
7425
|
+
},{"./declaracao":74}],81:[function(require,module,exports){
|
|
7421
7426
|
"use strict";
|
|
7422
7427
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7423
7428
|
exports.Fazer = void 0;
|
|
@@ -7434,7 +7439,7 @@ class Fazer extends declaracao_1.Declaracao {
|
|
|
7434
7439
|
}
|
|
7435
7440
|
exports.Fazer = Fazer;
|
|
7436
7441
|
|
|
7437
|
-
},{"./declaracao":
|
|
7442
|
+
},{"./declaracao":74}],82:[function(require,module,exports){
|
|
7438
7443
|
"use strict";
|
|
7439
7444
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7440
7445
|
exports.FuncaoDeclaracao = void 0;
|
|
@@ -7458,7 +7463,7 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
|
|
|
7458
7463
|
}
|
|
7459
7464
|
exports.FuncaoDeclaracao = FuncaoDeclaracao;
|
|
7460
7465
|
|
|
7461
|
-
},{"../geracao-identificadores":
|
|
7466
|
+
},{"../geracao-identificadores":105,"./declaracao":74}],83:[function(require,module,exports){
|
|
7462
7467
|
"use strict";
|
|
7463
7468
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7464
7469
|
exports.Importar = void 0;
|
|
@@ -7479,7 +7484,7 @@ class Importar extends declaracao_1.Declaracao {
|
|
|
7479
7484
|
}
|
|
7480
7485
|
exports.Importar = Importar;
|
|
7481
7486
|
|
|
7482
|
-
},{"./declaracao":
|
|
7487
|
+
},{"./declaracao":74}],84:[function(require,module,exports){
|
|
7483
7488
|
"use strict";
|
|
7484
7489
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7485
7490
|
if (k2 === undefined) k2 = k;
|
|
@@ -7527,7 +7532,7 @@ __exportStar(require("./tente"), exports);
|
|
|
7527
7532
|
__exportStar(require("./var"), exports);
|
|
7528
7533
|
__exportStar(require("./var-multiplo"), exports);
|
|
7529
7534
|
|
|
7530
|
-
},{"./aleatorio":
|
|
7535
|
+
},{"./aleatorio":66,"./bloco":67,"./cabecalho-programa":68,"./classe":69,"./comentario":70,"./const":72,"./const-multiplo":71,"./continua":73,"./declaracao":74,"./enquanto":75,"./escolha":76,"./escreva":78,"./escreva-mesma-linha":77,"./expressao":79,"./falhar":80,"./fazer":81,"./funcao":82,"./importar":83,"./inicio-algoritmo":85,"./para":87,"./para-cada":86,"./propriedade-classe":88,"./retorna":89,"./se":90,"./sustar":91,"./tendo-como":92,"./tente":93,"./var":95,"./var-multiplo":94}],85:[function(require,module,exports){
|
|
7531
7536
|
"use strict";
|
|
7532
7537
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7533
7538
|
exports.InicioAlgoritmo = void 0;
|
|
@@ -7542,7 +7547,7 @@ class InicioAlgoritmo extends declaracao_1.Declaracao {
|
|
|
7542
7547
|
}
|
|
7543
7548
|
exports.InicioAlgoritmo = InicioAlgoritmo;
|
|
7544
7549
|
|
|
7545
|
-
},{"./declaracao":
|
|
7550
|
+
},{"./declaracao":74}],86:[function(require,module,exports){
|
|
7546
7551
|
"use strict";
|
|
7547
7552
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7548
7553
|
exports.ParaCada = void 0;
|
|
@@ -7561,7 +7566,7 @@ class ParaCada extends declaracao_1.Declaracao {
|
|
|
7561
7566
|
}
|
|
7562
7567
|
exports.ParaCada = ParaCada;
|
|
7563
7568
|
|
|
7564
|
-
},{"./declaracao":
|
|
7569
|
+
},{"./declaracao":74}],87:[function(require,module,exports){
|
|
7565
7570
|
"use strict";
|
|
7566
7571
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7567
7572
|
exports.Para = void 0;
|
|
@@ -7587,7 +7592,7 @@ class Para extends declaracao_1.Declaracao {
|
|
|
7587
7592
|
}
|
|
7588
7593
|
exports.Para = Para;
|
|
7589
7594
|
|
|
7590
|
-
},{"./declaracao":
|
|
7595
|
+
},{"./declaracao":74}],88:[function(require,module,exports){
|
|
7591
7596
|
"use strict";
|
|
7592
7597
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7593
7598
|
exports.PropriedadeClasse = void 0;
|
|
@@ -7605,7 +7610,7 @@ class PropriedadeClasse extends declaracao_1.Declaracao {
|
|
|
7605
7610
|
}
|
|
7606
7611
|
exports.PropriedadeClasse = PropriedadeClasse;
|
|
7607
7612
|
|
|
7608
|
-
},{"./declaracao":
|
|
7613
|
+
},{"./declaracao":74}],89:[function(require,module,exports){
|
|
7609
7614
|
"use strict";
|
|
7610
7615
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7611
7616
|
exports.Retorna = void 0;
|
|
@@ -7628,7 +7633,7 @@ class Retorna extends declaracao_1.Declaracao {
|
|
|
7628
7633
|
}
|
|
7629
7634
|
exports.Retorna = Retorna;
|
|
7630
7635
|
|
|
7631
|
-
},{"./declaracao":
|
|
7636
|
+
},{"./declaracao":74}],90:[function(require,module,exports){
|
|
7632
7637
|
"use strict";
|
|
7633
7638
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7634
7639
|
exports.Se = void 0;
|
|
@@ -7647,7 +7652,7 @@ class Se extends declaracao_1.Declaracao {
|
|
|
7647
7652
|
}
|
|
7648
7653
|
exports.Se = Se;
|
|
7649
7654
|
|
|
7650
|
-
},{"./declaracao":
|
|
7655
|
+
},{"./declaracao":74}],91:[function(require,module,exports){
|
|
7651
7656
|
"use strict";
|
|
7652
7657
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7653
7658
|
exports.Sustar = void 0;
|
|
@@ -7662,7 +7667,7 @@ class Sustar extends declaracao_1.Declaracao {
|
|
|
7662
7667
|
}
|
|
7663
7668
|
exports.Sustar = Sustar;
|
|
7664
7669
|
|
|
7665
|
-
},{"./declaracao":
|
|
7670
|
+
},{"./declaracao":74}],92:[function(require,module,exports){
|
|
7666
7671
|
"use strict";
|
|
7667
7672
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7668
7673
|
exports.TendoComo = void 0;
|
|
@@ -7685,7 +7690,7 @@ class TendoComo extends declaracao_1.Declaracao {
|
|
|
7685
7690
|
}
|
|
7686
7691
|
exports.TendoComo = TendoComo;
|
|
7687
7692
|
|
|
7688
|
-
},{"./declaracao":
|
|
7693
|
+
},{"./declaracao":74}],93:[function(require,module,exports){
|
|
7689
7694
|
"use strict";
|
|
7690
7695
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7691
7696
|
exports.Tente = void 0;
|
|
@@ -7707,7 +7712,7 @@ class Tente extends declaracao_1.Declaracao {
|
|
|
7707
7712
|
}
|
|
7708
7713
|
exports.Tente = Tente;
|
|
7709
7714
|
|
|
7710
|
-
},{"./declaracao":
|
|
7715
|
+
},{"./declaracao":74}],94:[function(require,module,exports){
|
|
7711
7716
|
"use strict";
|
|
7712
7717
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7713
7718
|
exports.VarMultiplo = void 0;
|
|
@@ -7729,7 +7734,7 @@ class VarMultiplo extends declaracao_1.Declaracao {
|
|
|
7729
7734
|
}
|
|
7730
7735
|
exports.VarMultiplo = VarMultiplo;
|
|
7731
7736
|
|
|
7732
|
-
},{"./declaracao":
|
|
7737
|
+
},{"./declaracao":74}],95:[function(require,module,exports){
|
|
7733
7738
|
"use strict";
|
|
7734
7739
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7735
7740
|
exports.Var = void 0;
|
|
@@ -7759,7 +7764,7 @@ class Var extends declaracao_1.Declaracao {
|
|
|
7759
7764
|
}
|
|
7760
7765
|
exports.Var = Var;
|
|
7761
7766
|
|
|
7762
|
-
},{"./declaracao":
|
|
7767
|
+
},{"./declaracao":74}],96:[function(require,module,exports){
|
|
7763
7768
|
"use strict";
|
|
7764
7769
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7765
7770
|
exports.default = cyrb53;
|
|
@@ -7783,7 +7788,7 @@ function cyrb53(nomeArquivo, semente = 0) {
|
|
|
7783
7788
|
return 4294967296 * (2097151 & h2) + (h1 >>> 0);
|
|
7784
7789
|
}
|
|
7785
7790
|
|
|
7786
|
-
},{}],
|
|
7791
|
+
},{}],97:[function(require,module,exports){
|
|
7787
7792
|
"use strict";
|
|
7788
7793
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7789
7794
|
if (k2 === undefined) k2 = k;
|
|
@@ -7808,11 +7813,11 @@ var cyrb53_1 = require("./cyrb53");
|
|
|
7808
7813
|
Object.defineProperty(exports, "cyrb53", { enumerable: true, get: function () { return __importDefault(cyrb53_1).default; } });
|
|
7809
7814
|
__exportStar(require("./ponto-parada"), exports);
|
|
7810
7815
|
|
|
7811
|
-
},{"./cyrb53":
|
|
7816
|
+
},{"./cyrb53":96,"./ponto-parada":98}],98:[function(require,module,exports){
|
|
7812
7817
|
"use strict";
|
|
7813
7818
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7814
7819
|
|
|
7815
|
-
},{}],
|
|
7820
|
+
},{}],99:[function(require,module,exports){
|
|
7816
7821
|
"use strict";
|
|
7817
7822
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7818
7823
|
exports.EspacoVariaveis = void 0;
|
|
@@ -7834,7 +7839,7 @@ class EspacoVariaveis {
|
|
|
7834
7839
|
}
|
|
7835
7840
|
exports.EspacoVariaveis = EspacoVariaveis;
|
|
7836
7841
|
|
|
7837
|
-
},{}],
|
|
7842
|
+
},{}],100:[function(require,module,exports){
|
|
7838
7843
|
"use strict";
|
|
7839
7844
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7840
7845
|
exports.ErroEmTempoDeExecucao = void 0;
|
|
@@ -7849,7 +7854,7 @@ class ErroEmTempoDeExecucao extends Error {
|
|
|
7849
7854
|
}
|
|
7850
7855
|
exports.ErroEmTempoDeExecucao = ErroEmTempoDeExecucao;
|
|
7851
7856
|
|
|
7852
|
-
},{}],
|
|
7857
|
+
},{}],101:[function(require,module,exports){
|
|
7853
7858
|
"use strict";
|
|
7854
7859
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7855
7860
|
if (k2 === undefined) k2 = k;
|
|
@@ -7868,7 +7873,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
7868
7873
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7869
7874
|
__exportStar(require("./erro-em-tempo-de-execucao"), exports);
|
|
7870
7875
|
|
|
7871
|
-
},{"./erro-em-tempo-de-execucao":
|
|
7876
|
+
},{"./erro-em-tempo-de-execucao":100}],102:[function(require,module,exports){
|
|
7872
7877
|
"use strict";
|
|
7873
7878
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
7874
7879
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -8571,7 +8576,7 @@ class FormatadorDelegua {
|
|
|
8571
8576
|
}
|
|
8572
8577
|
exports.FormatadorDelegua = FormatadorDelegua;
|
|
8573
8578
|
|
|
8574
|
-
},{"../construtos":
|
|
8579
|
+
},{"../construtos":44,"../tipos-de-simbolos/delegua":168}],103:[function(require,module,exports){
|
|
8575
8580
|
"use strict";
|
|
8576
8581
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8577
8582
|
exports.FormatadorPitugues = void 0;
|
|
@@ -8747,7 +8752,7 @@ class FormatadorPitugues {
|
|
|
8747
8752
|
}
|
|
8748
8753
|
exports.FormatadorPitugues = FormatadorPitugues;
|
|
8749
8754
|
|
|
8750
|
-
},{}],
|
|
8755
|
+
},{}],104:[function(require,module,exports){
|
|
8751
8756
|
"use strict";
|
|
8752
8757
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
8753
8758
|
if (k2 === undefined) k2 = k;
|
|
@@ -8767,7 +8772,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
8767
8772
|
__exportStar(require("./formatador-delegua"), exports);
|
|
8768
8773
|
__exportStar(require("./formatador-pitugues"), exports);
|
|
8769
8774
|
|
|
8770
|
-
},{"./formatador-delegua":
|
|
8775
|
+
},{"./formatador-delegua":102,"./formatador-pitugues":103}],105:[function(require,module,exports){
|
|
8771
8776
|
"use strict";
|
|
8772
8777
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8773
8778
|
exports.uuidv4 = uuidv4;
|
|
@@ -8791,7 +8796,7 @@ function uuidv4() {
|
|
|
8791
8796
|
});
|
|
8792
8797
|
}
|
|
8793
8798
|
|
|
8794
|
-
},{}],
|
|
8799
|
+
},{}],106:[function(require,module,exports){
|
|
8795
8800
|
"use strict";
|
|
8796
8801
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
8797
8802
|
if (k2 === undefined) k2 = k;
|
|
@@ -8820,7 +8825,7 @@ __exportStar(require("./interpretador"), exports);
|
|
|
8820
8825
|
__exportStar(require("./lexador"), exports);
|
|
8821
8826
|
__exportStar(require("./tradutores"), exports);
|
|
8822
8827
|
|
|
8823
|
-
},{"./avaliador-sintatico":
|
|
8828
|
+
},{"./avaliador-sintatico":10,"./construtos":44,"./declaracoes":84,"./depuracao":97,"./formatadores":104,"./interfaces":114,"./interpretador":142,"./lexador":157,"./tradutores":175}],107:[function(require,module,exports){
|
|
8824
8829
|
"use strict";
|
|
8825
8830
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8826
8831
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -8947,7 +8952,7 @@ function tipoInferenciaParaTipoDadosElementar(tipoInferencia) {
|
|
|
8947
8952
|
}
|
|
8948
8953
|
}
|
|
8949
8954
|
|
|
8950
|
-
},{"./tipos-de-dados/delegua":
|
|
8955
|
+
},{"./tipos-de-dados/delegua":165,"./tipos-de-dados/primitivos":166,"./tipos-de-simbolos/delegua":168}],108:[function(require,module,exports){
|
|
8951
8956
|
"use strict";
|
|
8952
8957
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8953
8958
|
exports.InformacaoVariavelOuConstante = void 0;
|
|
@@ -8964,15 +8969,15 @@ class InformacaoVariavelOuConstante {
|
|
|
8964
8969
|
}
|
|
8965
8970
|
exports.InformacaoVariavelOuConstante = InformacaoVariavelOuConstante;
|
|
8966
8971
|
|
|
8967
|
-
},{}],
|
|
8972
|
+
},{}],109:[function(require,module,exports){
|
|
8968
8973
|
"use strict";
|
|
8969
8974
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8970
8975
|
|
|
8971
|
-
},{}],
|
|
8976
|
+
},{}],110:[function(require,module,exports){
|
|
8972
8977
|
"use strict";
|
|
8973
8978
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8974
8979
|
|
|
8975
|
-
},{}],
|
|
8980
|
+
},{}],111:[function(require,module,exports){
|
|
8976
8981
|
"use strict";
|
|
8977
8982
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8978
8983
|
exports.DiagnosticoSeveridade = void 0;
|
|
@@ -8984,7 +8989,7 @@ var DiagnosticoSeveridade;
|
|
|
8984
8989
|
DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
|
|
8985
8990
|
})(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
|
|
8986
8991
|
|
|
8987
|
-
},{}],
|
|
8992
|
+
},{}],112:[function(require,module,exports){
|
|
8988
8993
|
"use strict";
|
|
8989
8994
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
8990
8995
|
if (k2 === undefined) k2 = k;
|
|
@@ -9003,11 +9008,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
9003
9008
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9004
9009
|
__exportStar(require("./diagnostico-analisador-semantico"), exports);
|
|
9005
9010
|
|
|
9006
|
-
},{"./diagnostico-analisador-semantico":
|
|
9011
|
+
},{"./diagnostico-analisador-semantico":111}],113:[function(require,module,exports){
|
|
9007
9012
|
"use strict";
|
|
9008
9013
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9009
9014
|
|
|
9010
|
-
},{}],
|
|
9015
|
+
},{}],114:[function(require,module,exports){
|
|
9011
9016
|
"use strict";
|
|
9012
9017
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9013
9018
|
if (k2 === undefined) k2 = k;
|
|
@@ -9042,11 +9047,7 @@ __exportStar(require("./construtos"), exports);
|
|
|
9042
9047
|
__exportStar(require("./erros"), exports);
|
|
9043
9048
|
__exportStar(require("./retornos"), exports);
|
|
9044
9049
|
|
|
9045
|
-
},{"./avaliador-sintatico-interface":
|
|
9046
|
-
"use strict";
|
|
9047
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9048
|
-
|
|
9049
|
-
},{}],115:[function(require,module,exports){
|
|
9050
|
+
},{"./avaliador-sintatico-interface":109,"./construtos":110,"./erros":112,"./formatador-comum-interface":113,"./interpretador-com-depuracao-interface":115,"./interpretador-interface":116,"./lexador-interface":117,"./parametro-interface":118,"./pilha-interface":119,"./primitiva-interface":120,"./resolvedor-interface":121,"./retornos":122,"./retornos/retorno-execucao-interface":124,"./simbolo-interface":127,"./tradutor-interface":128,"./variavel-interface":129,"./visitante-comum-interface":130}],115:[function(require,module,exports){
|
|
9050
9051
|
"use strict";
|
|
9051
9052
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9052
9053
|
|
|
@@ -9072,6 +9073,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
9072
9073
|
|
|
9073
9074
|
},{}],121:[function(require,module,exports){
|
|
9074
9075
|
"use strict";
|
|
9076
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9077
|
+
|
|
9078
|
+
},{}],122:[function(require,module,exports){
|
|
9079
|
+
"use strict";
|
|
9075
9080
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9076
9081
|
if (k2 === undefined) k2 = k;
|
|
9077
9082
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -9092,11 +9097,7 @@ __exportStar(require("./retorno-execucao-interface"), exports);
|
|
|
9092
9097
|
__exportStar(require("./retorno-interpretador"), exports);
|
|
9093
9098
|
__exportStar(require("./retorno-lexador"), exports);
|
|
9094
9099
|
|
|
9095
|
-
},{"./retorno-avaliador-sintatico":
|
|
9096
|
-
"use strict";
|
|
9097
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9098
|
-
|
|
9099
|
-
},{}],123:[function(require,module,exports){
|
|
9100
|
+
},{"./retorno-avaliador-sintatico":123,"./retorno-execucao-interface":124,"./retorno-interpretador":125,"./retorno-lexador":126}],123:[function(require,module,exports){
|
|
9100
9101
|
"use strict";
|
|
9101
9102
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9102
9103
|
|
|
@@ -9126,6 +9127,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
9126
9127
|
|
|
9127
9128
|
},{}],130:[function(require,module,exports){
|
|
9128
9129
|
"use strict";
|
|
9130
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9131
|
+
|
|
9132
|
+
},{}],131:[function(require,module,exports){
|
|
9133
|
+
"use strict";
|
|
9129
9134
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9130
9135
|
if (k2 === undefined) k2 = k;
|
|
9131
9136
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -9189,7 +9194,7 @@ function carregarBibliotecasGlobais(pilhaEscoposExecucao) {
|
|
|
9189
9194
|
pilhaEscoposExecucao.definirVariavel('tupla', new funcao_padrao_1.FuncaoPadrao(1, bibliotecaGlobal.tupla));
|
|
9190
9195
|
}
|
|
9191
9196
|
|
|
9192
|
-
},{"../bibliotecas/biblioteca-global":
|
|
9197
|
+
},{"../bibliotecas/biblioteca-global":17,"./estruturas/funcao-padrao":136}],132:[function(require,module,exports){
|
|
9193
9198
|
"use strict";
|
|
9194
9199
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9195
9200
|
exports.Chamavel = void 0;
|
|
@@ -9203,7 +9208,7 @@ class Chamavel {
|
|
|
9203
9208
|
}
|
|
9204
9209
|
exports.Chamavel = Chamavel;
|
|
9205
9210
|
|
|
9206
|
-
},{}],
|
|
9211
|
+
},{}],133:[function(require,module,exports){
|
|
9207
9212
|
"use strict";
|
|
9208
9213
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9209
9214
|
exports.ClassePadrao = void 0;
|
|
@@ -9244,7 +9249,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
|
|
|
9244
9249
|
}
|
|
9245
9250
|
exports.ClassePadrao = ClassePadrao;
|
|
9246
9251
|
|
|
9247
|
-
},{"./chamavel":
|
|
9252
|
+
},{"./chamavel":132}],134:[function(require,module,exports){
|
|
9248
9253
|
"use strict";
|
|
9249
9254
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9250
9255
|
exports.DeleguaFuncao = void 0;
|
|
@@ -9402,7 +9407,7 @@ class DeleguaFuncao extends chamavel_1.Chamavel {
|
|
|
9402
9407
|
}
|
|
9403
9408
|
exports.DeleguaFuncao = DeleguaFuncao;
|
|
9404
9409
|
|
|
9405
|
-
},{"../../declaracoes":
|
|
9410
|
+
},{"../../declaracoes":84,"../../espaco-variaveis":99,"../../inferenciador":107,"../../quebras":164,"./chamavel":132}],135:[function(require,module,exports){
|
|
9406
9411
|
"use strict";
|
|
9407
9412
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9408
9413
|
exports.DescritorTipoClasse = void 0;
|
|
@@ -9483,7 +9488,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
|
|
|
9483
9488
|
}
|
|
9484
9489
|
exports.DescritorTipoClasse = DescritorTipoClasse;
|
|
9485
9490
|
|
|
9486
|
-
},{"../../excecoes":
|
|
9491
|
+
},{"../../excecoes":101,"./chamavel":132,"./objeto-delegua-classe":140}],136:[function(require,module,exports){
|
|
9487
9492
|
"use strict";
|
|
9488
9493
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9489
9494
|
exports.FuncaoPadrao = void 0;
|
|
@@ -9519,7 +9524,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
|
|
|
9519
9524
|
}
|
|
9520
9525
|
exports.FuncaoPadrao = FuncaoPadrao;
|
|
9521
9526
|
|
|
9522
|
-
},{"./chamavel":
|
|
9527
|
+
},{"./chamavel":132}],137:[function(require,module,exports){
|
|
9523
9528
|
"use strict";
|
|
9524
9529
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9525
9530
|
if (k2 === undefined) k2 = k;
|
|
@@ -9546,7 +9551,7 @@ __exportStar(require("./modulo"), exports);
|
|
|
9546
9551
|
__exportStar(require("./objeto-delegua-classe"), exports);
|
|
9547
9552
|
__exportStar(require("./objeto-padrao"), exports);
|
|
9548
9553
|
|
|
9549
|
-
},{"./chamavel":
|
|
9554
|
+
},{"./chamavel":132,"./classe-padrao":133,"./delegua-funcao":134,"./descritor-tipo-classe":135,"./funcao-padrao":136,"./metodo-primitiva":138,"./modulo":139,"./objeto-delegua-classe":140,"./objeto-padrao":141}],138:[function(require,module,exports){
|
|
9550
9555
|
"use strict";
|
|
9551
9556
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9552
9557
|
exports.MetodoPrimitiva = void 0;
|
|
@@ -9588,7 +9593,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
|
|
|
9588
9593
|
}
|
|
9589
9594
|
exports.MetodoPrimitiva = MetodoPrimitiva;
|
|
9590
9595
|
|
|
9591
|
-
},{"./chamavel":
|
|
9596
|
+
},{"./chamavel":132}],139:[function(require,module,exports){
|
|
9592
9597
|
"use strict";
|
|
9593
9598
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9594
9599
|
exports.DeleguaModulo = void 0;
|
|
@@ -9614,7 +9619,7 @@ class DeleguaModulo {
|
|
|
9614
9619
|
}
|
|
9615
9620
|
exports.DeleguaModulo = DeleguaModulo;
|
|
9616
9621
|
|
|
9617
|
-
},{}],
|
|
9622
|
+
},{}],140:[function(require,module,exports){
|
|
9618
9623
|
"use strict";
|
|
9619
9624
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9620
9625
|
exports.ObjetoDeleguaClasse = void 0;
|
|
@@ -9682,7 +9687,7 @@ class ObjetoDeleguaClasse {
|
|
|
9682
9687
|
}
|
|
9683
9688
|
exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
|
|
9684
9689
|
|
|
9685
|
-
},{"../../excecoes":
|
|
9690
|
+
},{"../../excecoes":101}],141:[function(require,module,exports){
|
|
9686
9691
|
"use strict";
|
|
9687
9692
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9688
9693
|
exports.ObjetoPadrao = void 0;
|
|
@@ -9716,7 +9721,7 @@ class ObjetoPadrao {
|
|
|
9716
9721
|
}
|
|
9717
9722
|
exports.ObjetoPadrao = ObjetoPadrao;
|
|
9718
9723
|
|
|
9719
|
-
},{}],
|
|
9724
|
+
},{}],142:[function(require,module,exports){
|
|
9720
9725
|
"use strict";
|
|
9721
9726
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9722
9727
|
if (k2 === undefined) k2 = k;
|
|
@@ -9736,7 +9741,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
9736
9741
|
__exportStar(require("./interpretador"), exports);
|
|
9737
9742
|
__exportStar(require("./interpretador-base"), exports);
|
|
9738
9743
|
|
|
9739
|
-
},{"./interpretador":
|
|
9744
|
+
},{"./interpretador":144,"./interpretador-base":143}],143:[function(require,module,exports){
|
|
9740
9745
|
(function (process){(function (){
|
|
9741
9746
|
"use strict";
|
|
9742
9747
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
@@ -11148,7 +11153,7 @@ class InterpretadorBase {
|
|
|
11148
11153
|
exports.InterpretadorBase = InterpretadorBase;
|
|
11149
11154
|
|
|
11150
11155
|
}).call(this)}).call(this,require('_process'))
|
|
11151
|
-
},{"../avaliador-sintatico":
|
|
11156
|
+
},{"../avaliador-sintatico":10,"../bibliotecas/primitivas-dicionario":18,"../construtos":44,"../espaco-variaveis":99,"../excecoes":101,"../inferenciador":107,"../lexador":157,"../quebras":164,"../tipos-de-dados/delegua":165,"../tipos-de-dados/primitivos":166,"../tipos-de-simbolos/delegua":168,"./comum":131,"./estruturas":137,"./estruturas/metodo-primitiva":138,"./pilha-escopos-execucao":145,"_process":401,"browser-process-hrtime":347}],144:[function(require,module,exports){
|
|
11152
11157
|
"use strict";
|
|
11153
11158
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11154
11159
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -11437,7 +11442,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
11437
11442
|
}
|
|
11438
11443
|
exports.Interpretador = Interpretador;
|
|
11439
11444
|
|
|
11440
|
-
},{"../bibliotecas/primitivas-dicionario":
|
|
11445
|
+
},{"../bibliotecas/primitivas-dicionario":18,"../bibliotecas/primitivas-numero":19,"../bibliotecas/primitivas-texto":20,"../bibliotecas/primitivas-vetor":21,"../excecoes":101,"../inferenciador":107,"../quebras":164,"../tipos-de-dados/delegua":165,"../tipos-de-dados/primitivos":166,"./estruturas":137,"./interpretador-base":143}],145:[function(require,module,exports){
|
|
11441
11446
|
"use strict";
|
|
11442
11447
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11443
11448
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -11701,7 +11706,7 @@ class PilhaEscoposExecucao {
|
|
|
11701
11706
|
}
|
|
11702
11707
|
exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
|
|
11703
11708
|
|
|
11704
|
-
},{"../excecoes":
|
|
11709
|
+
},{"../excecoes":101,"../inferenciador":107,"../lexador":157,"../tipos-de-dados/delegua":165,"./estruturas":137}],146:[function(require,module,exports){
|
|
11705
11710
|
"use strict";
|
|
11706
11711
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
11707
11712
|
if (k2 === undefined) k2 = k;
|
|
@@ -11724,7 +11729,7 @@ __exportStar(require("./lexador-guarani"), exports);
|
|
|
11724
11729
|
__exportStar(require("./lexador-portugol-ipt"), exports);
|
|
11725
11730
|
__exportStar(require("./lexador-tenda"), exports);
|
|
11726
11731
|
|
|
11727
|
-
},{"./lexador-egua-classico":
|
|
11732
|
+
},{"./lexador-egua-classico":147,"./lexador-guarani":148,"./lexador-pitugues":149,"./lexador-portugol-ipt":150,"./lexador-tenda":151}],147:[function(require,module,exports){
|
|
11728
11733
|
"use strict";
|
|
11729
11734
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11730
11735
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -12014,7 +12019,7 @@ class LexadorEguaClassico {
|
|
|
12014
12019
|
}
|
|
12015
12020
|
exports.LexadorEguaClassico = LexadorEguaClassico;
|
|
12016
12021
|
|
|
12017
|
-
},{"../../tipos-de-simbolos/egua-classico":
|
|
12022
|
+
},{"../../tipos-de-simbolos/egua-classico":169,"../simbolo":163,"./palavras-reservadas/egua-classico":152}],148:[function(require,module,exports){
|
|
12018
12023
|
"use strict";
|
|
12019
12024
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12020
12025
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -12133,7 +12138,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
|
|
|
12133
12138
|
}
|
|
12134
12139
|
exports.LexadorGuarani = LexadorGuarani;
|
|
12135
12140
|
|
|
12136
|
-
},{"../../tipos-de-simbolos/guarani":
|
|
12141
|
+
},{"../../tipos-de-simbolos/guarani":170,"../lexador-base":159,"./palavras-reservadas/guarani":153}],149:[function(require,module,exports){
|
|
12137
12142
|
"use strict";
|
|
12138
12143
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12139
12144
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -12536,7 +12541,7 @@ class LexadorPitugues {
|
|
|
12536
12541
|
}
|
|
12537
12542
|
exports.LexadorPitugues = LexadorPitugues;
|
|
12538
12543
|
|
|
12539
|
-
},{"../../tipos-de-simbolos/pitugues":
|
|
12544
|
+
},{"../../tipos-de-simbolos/pitugues":172,"../simbolo":163,"./palavras-reservadas/pitugues":154,"browser-process-hrtime":347}],150:[function(require,module,exports){
|
|
12540
12545
|
"use strict";
|
|
12541
12546
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12542
12547
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -12777,7 +12782,7 @@ class LexadorPortugolIpt {
|
|
|
12777
12782
|
}
|
|
12778
12783
|
exports.LexadorPortugolIpt = LexadorPortugolIpt;
|
|
12779
12784
|
|
|
12780
|
-
},{"../../tipos-de-simbolos/portugol-ipt":
|
|
12785
|
+
},{"../../tipos-de-simbolos/portugol-ipt":173,"../simbolo":163,"./palavras-reservadas/portugol-ipt":155}],151:[function(require,module,exports){
|
|
12781
12786
|
"use strict";
|
|
12782
12787
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12783
12788
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13177,7 +13182,7 @@ class LexadorTenda {
|
|
|
13177
13182
|
}
|
|
13178
13183
|
exports.LexadorTenda = LexadorTenda;
|
|
13179
13184
|
|
|
13180
|
-
},{"../../tipos-de-simbolos/tenda":
|
|
13185
|
+
},{"../../tipos-de-simbolos/tenda":174,"../simbolo":163,"./palavras-reservadas/tenda":156,"browser-process-hrtime":347}],152:[function(require,module,exports){
|
|
13181
13186
|
"use strict";
|
|
13182
13187
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13183
13188
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13218,7 +13223,7 @@ exports.palavrasReservadas = {
|
|
|
13218
13223
|
verdadeiro: egua_classico_1.default.VERDADEIRO,
|
|
13219
13224
|
};
|
|
13220
13225
|
|
|
13221
|
-
},{"../../../tipos-de-simbolos/egua-classico":
|
|
13226
|
+
},{"../../../tipos-de-simbolos/egua-classico":169}],153:[function(require,module,exports){
|
|
13222
13227
|
"use strict";
|
|
13223
13228
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13224
13229
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13230,7 +13235,7 @@ exports.palavrasReservadas = {
|
|
|
13230
13235
|
hai: guarani_1.default.HAI,
|
|
13231
13236
|
};
|
|
13232
13237
|
|
|
13233
|
-
},{"../../../tipos-de-simbolos/guarani":
|
|
13238
|
+
},{"../../../tipos-de-simbolos/guarani":170}],154:[function(require,module,exports){
|
|
13234
13239
|
"use strict";
|
|
13235
13240
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13236
13241
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13293,7 +13298,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
13293
13298
|
verdadeiro: pitugues_1.default.VERDADEIRO,
|
|
13294
13299
|
};
|
|
13295
13300
|
|
|
13296
|
-
},{"../../../tipos-de-simbolos/pitugues":
|
|
13301
|
+
},{"../../../tipos-de-simbolos/pitugues":172}],155:[function(require,module,exports){
|
|
13297
13302
|
"use strict";
|
|
13298
13303
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13299
13304
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13315,7 +13320,7 @@ exports.palavrasReservadas = {
|
|
|
13315
13320
|
senão: portugol_ipt_1.default.SENAO,
|
|
13316
13321
|
};
|
|
13317
13322
|
|
|
13318
|
-
},{"../../../tipos-de-simbolos/portugol-ipt":
|
|
13323
|
+
},{"../../../tipos-de-simbolos/portugol-ipt":173}],156:[function(require,module,exports){
|
|
13319
13324
|
"use strict";
|
|
13320
13325
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13321
13326
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13369,7 +13374,7 @@ exports.palavrasReservadas = {
|
|
|
13369
13374
|
verdadeiro: tenda_1.default.VERDADEIRO,
|
|
13370
13375
|
};
|
|
13371
13376
|
|
|
13372
|
-
},{"../../../tipos-de-simbolos/tenda":
|
|
13377
|
+
},{"../../../tipos-de-simbolos/tenda":174}],157:[function(require,module,exports){
|
|
13373
13378
|
"use strict";
|
|
13374
13379
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13375
13380
|
if (k2 === undefined) k2 = k;
|
|
@@ -13392,7 +13397,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
|
|
|
13392
13397
|
__exportStar(require("./micro-lexador"), exports);
|
|
13393
13398
|
__exportStar(require("./simbolo"), exports);
|
|
13394
13399
|
|
|
13395
|
-
},{"./dialetos":
|
|
13400
|
+
},{"./dialetos":146,"./lexador":160,"./lexador-base-linha-unica":158,"./micro-lexador":161,"./simbolo":163}],158:[function(require,module,exports){
|
|
13396
13401
|
"use strict";
|
|
13397
13402
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13398
13403
|
exports.LexadorBaseLinhaUnica = void 0;
|
|
@@ -13476,7 +13481,7 @@ class LexadorBaseLinhaUnica {
|
|
|
13476
13481
|
}
|
|
13477
13482
|
exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
|
|
13478
13483
|
|
|
13479
|
-
},{"./simbolo":
|
|
13484
|
+
},{"./simbolo":163}],159:[function(require,module,exports){
|
|
13480
13485
|
"use strict";
|
|
13481
13486
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13482
13487
|
exports.LexadorBase = void 0;
|
|
@@ -13590,7 +13595,7 @@ class LexadorBase {
|
|
|
13590
13595
|
}
|
|
13591
13596
|
exports.LexadorBase = LexadorBase;
|
|
13592
13597
|
|
|
13593
|
-
},{"./simbolo":
|
|
13598
|
+
},{"./simbolo":163}],160:[function(require,module,exports){
|
|
13594
13599
|
"use strict";
|
|
13595
13600
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13596
13601
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14050,7 +14055,7 @@ class Lexador {
|
|
|
14050
14055
|
}
|
|
14051
14056
|
exports.Lexador = Lexador;
|
|
14052
14057
|
|
|
14053
|
-
},{"../tipos-de-simbolos/delegua":
|
|
14058
|
+
},{"../tipos-de-simbolos/delegua":168,"./palavras-reservadas":162,"./simbolo":163,"browser-process-hrtime":347}],161:[function(require,module,exports){
|
|
14054
14059
|
"use strict";
|
|
14055
14060
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14056
14061
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14265,7 +14270,7 @@ class MicroLexador {
|
|
|
14265
14270
|
}
|
|
14266
14271
|
exports.MicroLexador = MicroLexador;
|
|
14267
14272
|
|
|
14268
|
-
},{"../tipos-de-simbolos/microgramaticas/delegua":
|
|
14273
|
+
},{"../tipos-de-simbolos/microgramaticas/delegua":171,"./palavras-reservadas":162,"./simbolo":163}],162:[function(require,module,exports){
|
|
14269
14274
|
"use strict";
|
|
14270
14275
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14271
14276
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14328,7 +14333,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
14328
14333
|
verdadeiro: delegua_1.default.VERDADEIRO,
|
|
14329
14334
|
};
|
|
14330
14335
|
|
|
14331
|
-
},{"../tipos-de-simbolos/delegua":
|
|
14336
|
+
},{"../tipos-de-simbolos/delegua":168}],163:[function(require,module,exports){
|
|
14332
14337
|
"use strict";
|
|
14333
14338
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14334
14339
|
exports.Simbolo = void 0;
|
|
@@ -14346,7 +14351,7 @@ class Simbolo {
|
|
|
14346
14351
|
}
|
|
14347
14352
|
exports.Simbolo = Simbolo;
|
|
14348
14353
|
|
|
14349
|
-
},{}],
|
|
14354
|
+
},{}],164:[function(require,module,exports){
|
|
14350
14355
|
"use strict";
|
|
14351
14356
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14352
14357
|
exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
|
|
@@ -14370,7 +14375,7 @@ class ContinuarQuebra extends Quebra {
|
|
|
14370
14375
|
}
|
|
14371
14376
|
exports.ContinuarQuebra = ContinuarQuebra;
|
|
14372
14377
|
|
|
14373
|
-
},{}],
|
|
14378
|
+
},{}],165:[function(require,module,exports){
|
|
14374
14379
|
"use strict";
|
|
14375
14380
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14376
14381
|
exports.default = {
|
|
@@ -14400,7 +14405,7 @@ exports.default = {
|
|
|
14400
14405
|
VETOR_TEXTO: 'texto[]',
|
|
14401
14406
|
};
|
|
14402
14407
|
|
|
14403
|
-
},{}],
|
|
14408
|
+
},{}],166:[function(require,module,exports){
|
|
14404
14409
|
"use strict";
|
|
14405
14410
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14406
14411
|
exports.default = {
|
|
@@ -14419,7 +14424,7 @@ exports.default = {
|
|
|
14419
14424
|
TEXTO: 'string',
|
|
14420
14425
|
};
|
|
14421
14426
|
|
|
14422
|
-
},{}],
|
|
14427
|
+
},{}],167:[function(require,module,exports){
|
|
14423
14428
|
"use strict";
|
|
14424
14429
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14425
14430
|
exports.default = {
|
|
@@ -14445,7 +14450,7 @@ exports.default = {
|
|
|
14445
14450
|
VIRGULA: 'VIRGULA',
|
|
14446
14451
|
};
|
|
14447
14452
|
|
|
14448
|
-
},{}],
|
|
14453
|
+
},{}],168:[function(require,module,exports){
|
|
14449
14454
|
"use strict";
|
|
14450
14455
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14451
14456
|
exports.default = {
|
|
@@ -14540,7 +14545,7 @@ exports.default = {
|
|
|
14540
14545
|
VIRGULA: 'VIRGULA',
|
|
14541
14546
|
};
|
|
14542
14547
|
|
|
14543
|
-
},{}],
|
|
14548
|
+
},{}],169:[function(require,module,exports){
|
|
14544
14549
|
"use strict";
|
|
14545
14550
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14546
14551
|
exports.default = {
|
|
@@ -14618,7 +14623,7 @@ exports.default = {
|
|
|
14618
14623
|
VIRGULA: 'VIRGULA',
|
|
14619
14624
|
};
|
|
14620
14625
|
|
|
14621
|
-
},{}],
|
|
14626
|
+
},{}],170:[function(require,module,exports){
|
|
14622
14627
|
"use strict";
|
|
14623
14628
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14624
14629
|
exports.default = {
|
|
@@ -14635,7 +14640,7 @@ exports.default = {
|
|
|
14635
14640
|
VIRGULA: 'VIRGULA',
|
|
14636
14641
|
};
|
|
14637
14642
|
|
|
14638
|
-
},{}],
|
|
14643
|
+
},{}],171:[function(require,module,exports){
|
|
14639
14644
|
"use strict";
|
|
14640
14645
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14641
14646
|
exports.default = {
|
|
@@ -14684,7 +14689,7 @@ exports.default = {
|
|
|
14684
14689
|
VIRGULA: 'VIRGULA',
|
|
14685
14690
|
};
|
|
14686
14691
|
|
|
14687
|
-
},{}],
|
|
14692
|
+
},{}],172:[function(require,module,exports){
|
|
14688
14693
|
"use strict";
|
|
14689
14694
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14690
14695
|
exports.default = {
|
|
@@ -14767,7 +14772,7 @@ exports.default = {
|
|
|
14767
14772
|
VIRGULA: 'VIRGULA',
|
|
14768
14773
|
};
|
|
14769
14774
|
|
|
14770
|
-
},{}],
|
|
14775
|
+
},{}],173:[function(require,module,exports){
|
|
14771
14776
|
"use strict";
|
|
14772
14777
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14773
14778
|
exports.default = {
|
|
@@ -14806,7 +14811,7 @@ exports.default = {
|
|
|
14806
14811
|
VIRGULA: 'VIRGULA',
|
|
14807
14812
|
};
|
|
14808
14813
|
|
|
14809
|
-
},{}],
|
|
14814
|
+
},{}],174:[function(require,module,exports){
|
|
14810
14815
|
"use strict";
|
|
14811
14816
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14812
14817
|
// Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
|
|
@@ -14909,7 +14914,7 @@ exports.default = {
|
|
|
14909
14914
|
VIRGULA: 'VIRGULA',
|
|
14910
14915
|
};
|
|
14911
14916
|
|
|
14912
|
-
},{}],
|
|
14917
|
+
},{}],175:[function(require,module,exports){
|
|
14913
14918
|
"use strict";
|
|
14914
14919
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14915
14920
|
if (k2 === undefined) k2 = k;
|
|
@@ -14935,7 +14940,7 @@ __exportStar(require("./tradutor-reverso-javascript"), exports);
|
|
|
14935
14940
|
__exportStar(require("./tradutor-reverso-python"), exports);
|
|
14936
14941
|
__exportStar(require("./tradutor-reverso-tenda"), exports);
|
|
14937
14942
|
|
|
14938
|
-
},{"./tradutor-assemblyscript":
|
|
14943
|
+
},{"./tradutor-assemblyscript":178,"./tradutor-javascript":179,"./tradutor-mermaidjs":180,"./tradutor-portugol-ipt":181,"./tradutor-python":182,"./tradutor-reverso-javascript":183,"./tradutor-reverso-python":184,"./tradutor-reverso-tenda":185}],176:[function(require,module,exports){
|
|
14939
14944
|
"use strict";
|
|
14940
14945
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
14941
14946
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -16175,7 +16180,7 @@ __decorate([
|
|
|
16175
16180
|
Decorators_1.Override
|
|
16176
16181
|
], Python3Lexer.prototype, "nextToken", null);
|
|
16177
16182
|
|
|
16178
|
-
},{"./python3-parser":
|
|
16183
|
+
},{"./python3-parser":177,"antlr4ts/CommonToken":195,"antlr4ts/Decorators":199,"antlr4ts/Lexer":207,"antlr4ts/Token":224,"antlr4ts/VocabularyImpl":230,"antlr4ts/atn/ATNDeserializer":236,"antlr4ts/atn/LexerATNSimulator":257,"antlr4ts/misc/Utils":318}],177:[function(require,module,exports){
|
|
16179
16184
|
"use strict";
|
|
16180
16185
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
16181
16186
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -27422,7 +27427,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
27422
27427
|
}
|
|
27423
27428
|
exports.Yield_argContext = Yield_argContext;
|
|
27424
27429
|
|
|
27425
|
-
},{"antlr4ts/FailedPredicateException":
|
|
27430
|
+
},{"antlr4ts/FailedPredicateException":203,"antlr4ts/NoViableAltException":211,"antlr4ts/Parser":212,"antlr4ts/ParserRuleContext":215,"antlr4ts/RecognitionException":218,"antlr4ts/Token":224,"antlr4ts/VocabularyImpl":230,"antlr4ts/atn/ATN":232,"antlr4ts/atn/ATNDeserializer":236,"antlr4ts/atn/ParserATNSimulator":273,"antlr4ts/misc/Utils":318}],178:[function(require,module,exports){
|
|
27426
27431
|
"use strict";
|
|
27427
27432
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27428
27433
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28056,7 +28061,7 @@ class TradutorAssemblyScript {
|
|
|
28056
28061
|
}
|
|
28057
28062
|
exports.TradutorAssemblyScript = TradutorAssemblyScript;
|
|
28058
28063
|
|
|
28059
|
-
},{"../construtos":
|
|
28064
|
+
},{"../construtos":44,"../declaracoes":84,"../tipos-de-simbolos/delegua":168}],179:[function(require,module,exports){
|
|
28060
28065
|
"use strict";
|
|
28061
28066
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28062
28067
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28795,7 +28800,7 @@ class TradutorJavaScript {
|
|
|
28795
28800
|
}
|
|
28796
28801
|
exports.TradutorJavaScript = TradutorJavaScript;
|
|
28797
28802
|
|
|
28798
|
-
},{"../construtos":
|
|
28803
|
+
},{"../construtos":44,"../declaracoes":84,"../tipos-de-simbolos/delegua":168}],180:[function(require,module,exports){
|
|
28799
28804
|
"use strict";
|
|
28800
28805
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28801
28806
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29246,7 +29251,7 @@ class TradutorMermaidJs {
|
|
|
29246
29251
|
}
|
|
29247
29252
|
exports.TradutorMermaidJs = TradutorMermaidJs;
|
|
29248
29253
|
|
|
29249
|
-
},{"../tipos-de-simbolos/delegua":
|
|
29254
|
+
},{"../tipos-de-simbolos/delegua":168}],181:[function(require,module,exports){
|
|
29250
29255
|
"use strict";
|
|
29251
29256
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29252
29257
|
exports.TradutorPortugolIpt = void 0;
|
|
@@ -29308,7 +29313,7 @@ class TradutorPortugolIpt {
|
|
|
29308
29313
|
}
|
|
29309
29314
|
exports.TradutorPortugolIpt = TradutorPortugolIpt;
|
|
29310
29315
|
|
|
29311
|
-
},{"../avaliador-sintatico/dialetos":
|
|
29316
|
+
},{"../avaliador-sintatico/dialetos":8,"../lexador/dialetos":146}],182:[function(require,module,exports){
|
|
29312
29317
|
"use strict";
|
|
29313
29318
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29314
29319
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29948,7 +29953,7 @@ class TradutorPython {
|
|
|
29948
29953
|
}
|
|
29949
29954
|
exports.TradutorPython = TradutorPython;
|
|
29950
29955
|
|
|
29951
|
-
},{"../construtos":
|
|
29956
|
+
},{"../construtos":44,"../declaracoes":84,"../tipos-de-simbolos/delegua":168}],183:[function(require,module,exports){
|
|
29952
29957
|
"use strict";
|
|
29953
29958
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29954
29959
|
exports.TradutorReversoJavaScript = void 0;
|
|
@@ -30343,7 +30348,7 @@ class TradutorReversoJavaScript {
|
|
|
30343
30348
|
}
|
|
30344
30349
|
exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
|
|
30345
30350
|
|
|
30346
|
-
},{}],
|
|
30351
|
+
},{}],184:[function(require,module,exports){
|
|
30347
30352
|
"use strict";
|
|
30348
30353
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30349
30354
|
exports.TradutorReversoPython = void 0;
|
|
@@ -30416,7 +30421,7 @@ class TradutorReversoPython {
|
|
|
30416
30421
|
}
|
|
30417
30422
|
exports.TradutorReversoPython = TradutorReversoPython;
|
|
30418
30423
|
|
|
30419
|
-
},{"./python/python3-lexer":
|
|
30424
|
+
},{"./python/python3-lexer":176,"./python/python3-parser":177,"antlr4ts":301,"antlr4ts/tree/ParseTreeWalker":320}],185:[function(require,module,exports){
|
|
30420
30425
|
"use strict";
|
|
30421
30426
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
30422
30427
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -31001,7 +31006,7 @@ class TradutorReversoTenda {
|
|
|
31001
31006
|
}
|
|
31002
31007
|
exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
31003
31008
|
|
|
31004
|
-
},{"../construtos":
|
|
31009
|
+
},{"../construtos":44,"../tipos-de-simbolos/tenda":174}],186:[function(require,module,exports){
|
|
31005
31010
|
"use strict";
|
|
31006
31011
|
/*!
|
|
31007
31012
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31009,7 +31014,7 @@ exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
|
31009
31014
|
*/
|
|
31010
31015
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31011
31016
|
|
|
31012
|
-
},{}],
|
|
31017
|
+
},{}],187:[function(require,module,exports){
|
|
31013
31018
|
"use strict";
|
|
31014
31019
|
/*!
|
|
31015
31020
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31017,7 +31022,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
31017
31022
|
*/
|
|
31018
31023
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31019
31024
|
|
|
31020
|
-
},{}],
|
|
31025
|
+
},{}],188:[function(require,module,exports){
|
|
31021
31026
|
"use strict";
|
|
31022
31027
|
/*!
|
|
31023
31028
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31179,7 +31184,7 @@ __decorate([
|
|
|
31179
31184
|
], ANTLRInputStream.prototype, "toString", null);
|
|
31180
31185
|
exports.ANTLRInputStream = ANTLRInputStream;
|
|
31181
31186
|
|
|
31182
|
-
},{"./Decorators":
|
|
31187
|
+
},{"./Decorators":199,"./IntStream":205,"assert":342}],189:[function(require,module,exports){
|
|
31183
31188
|
"use strict";
|
|
31184
31189
|
/*!
|
|
31185
31190
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31262,7 +31267,7 @@ __decorate([
|
|
|
31262
31267
|
], BailErrorStrategy.prototype, "sync", null);
|
|
31263
31268
|
exports.BailErrorStrategy = BailErrorStrategy;
|
|
31264
31269
|
|
|
31265
|
-
},{"./Decorators":
|
|
31270
|
+
},{"./Decorators":199,"./DefaultErrorStrategy":200,"./InputMismatchException":204,"./misc/ParseCancellationException":316}],190:[function(require,module,exports){
|
|
31266
31271
|
"use strict";
|
|
31267
31272
|
/*!
|
|
31268
31273
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31752,7 +31757,7 @@ BufferedTokenStream = __decorate([
|
|
|
31752
31757
|
], BufferedTokenStream);
|
|
31753
31758
|
exports.BufferedTokenStream = BufferedTokenStream;
|
|
31754
31759
|
|
|
31755
|
-
},{"./CommonToken":
|
|
31760
|
+
},{"./CommonToken":195,"./Decorators":199,"./Lexer":207,"./Token":224,"./misc/Interval":311,"assert":342}],191:[function(require,module,exports){
|
|
31756
31761
|
"use strict";
|
|
31757
31762
|
/*!
|
|
31758
31763
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31760,7 +31765,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
|
|
|
31760
31765
|
*/
|
|
31761
31766
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31762
31767
|
|
|
31763
|
-
},{}],
|
|
31768
|
+
},{}],192:[function(require,module,exports){
|
|
31764
31769
|
"use strict";
|
|
31765
31770
|
/*!
|
|
31766
31771
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31894,7 +31899,7 @@ var CharStreams;
|
|
|
31894
31899
|
// }
|
|
31895
31900
|
})(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
|
|
31896
31901
|
|
|
31897
|
-
},{"./CodePointBuffer":
|
|
31902
|
+
},{"./CodePointBuffer":193,"./CodePointCharStream":194,"./IntStream":205}],193:[function(require,module,exports){
|
|
31898
31903
|
"use strict";
|
|
31899
31904
|
/*!
|
|
31900
31905
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32129,7 +32134,7 @@ exports.CodePointBuffer = CodePointBuffer;
|
|
|
32129
32134
|
CodePointBuffer.Builder = Builder;
|
|
32130
32135
|
})(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
|
|
32131
32136
|
|
|
32132
|
-
},{"./misc/Character":
|
|
32137
|
+
},{"./misc/Character":307,"assert":342}],194:[function(require,module,exports){
|
|
32133
32138
|
"use strict";
|
|
32134
32139
|
/*!
|
|
32135
32140
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32279,7 +32284,7 @@ __decorate([
|
|
|
32279
32284
|
], CodePointCharStream.prototype, "getText", null);
|
|
32280
32285
|
exports.CodePointCharStream = CodePointCharStream;
|
|
32281
32286
|
|
|
32282
|
-
},{"./Decorators":
|
|
32287
|
+
},{"./Decorators":199,"./IntStream":205,"./misc/Interval":311,"assert":342}],195:[function(require,module,exports){
|
|
32283
32288
|
"use strict";
|
|
32284
32289
|
/*!
|
|
32285
32290
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32509,7 +32514,7 @@ CommonToken = __decorate([
|
|
|
32509
32514
|
], CommonToken);
|
|
32510
32515
|
exports.CommonToken = CommonToken;
|
|
32511
32516
|
|
|
32512
|
-
},{"./Decorators":
|
|
32517
|
+
},{"./Decorators":199,"./Token":224,"./misc/Interval":311}],196:[function(require,module,exports){
|
|
32513
32518
|
"use strict";
|
|
32514
32519
|
/*!
|
|
32515
32520
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32573,7 +32578,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
|
|
|
32573
32578
|
CommonTokenFactory.DEFAULT = new CommonTokenFactory();
|
|
32574
32579
|
})(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
|
|
32575
32580
|
|
|
32576
|
-
},{"./CommonToken":
|
|
32581
|
+
},{"./CommonToken":195,"./Decorators":199,"./misc/Interval":311}],197:[function(require,module,exports){
|
|
32577
32582
|
"use strict";
|
|
32578
32583
|
/*!
|
|
32579
32584
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32700,7 +32705,7 @@ CommonTokenStream = __decorate([
|
|
|
32700
32705
|
], CommonTokenStream);
|
|
32701
32706
|
exports.CommonTokenStream = CommonTokenStream;
|
|
32702
32707
|
|
|
32703
|
-
},{"./BufferedTokenStream":
|
|
32708
|
+
},{"./BufferedTokenStream":190,"./Decorators":199,"./Token":224}],198:[function(require,module,exports){
|
|
32704
32709
|
"use strict";
|
|
32705
32710
|
/*!
|
|
32706
32711
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32734,7 +32739,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
|
|
|
32734
32739
|
*/
|
|
32735
32740
|
ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
|
|
32736
32741
|
|
|
32737
|
-
},{}],
|
|
32742
|
+
},{}],199:[function(require,module,exports){
|
|
32738
32743
|
"use strict";
|
|
32739
32744
|
/*!
|
|
32740
32745
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32761,7 +32766,7 @@ function SuppressWarnings(options) {
|
|
|
32761
32766
|
}
|
|
32762
32767
|
exports.SuppressWarnings = SuppressWarnings;
|
|
32763
32768
|
|
|
32764
|
-
},{}],
|
|
32769
|
+
},{}],200:[function(require,module,exports){
|
|
32765
32770
|
"use strict";
|
|
32766
32771
|
/*!
|
|
32767
32772
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33575,7 +33580,7 @@ __decorate([
|
|
|
33575
33580
|
], DefaultErrorStrategy.prototype, "consumeUntil", null);
|
|
33576
33581
|
exports.DefaultErrorStrategy = DefaultErrorStrategy;
|
|
33577
33582
|
|
|
33578
|
-
},{"./Decorators":
|
|
33583
|
+
},{"./Decorators":199,"./FailedPredicateException":203,"./InputMismatchException":204,"./NoViableAltException":211,"./Token":224,"./atn/ATNState":238,"./atn/ATNStateType":239,"./atn/PredictionContext":279,"./misc/IntervalSet":312}],201:[function(require,module,exports){
|
|
33579
33584
|
"use strict";
|
|
33580
33585
|
/*!
|
|
33581
33586
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33651,7 +33656,7 @@ var Dependents;
|
|
|
33651
33656
|
Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
|
|
33652
33657
|
})(Dependents = exports.Dependents || (exports.Dependents = {}));
|
|
33653
33658
|
|
|
33654
|
-
},{}],
|
|
33659
|
+
},{}],202:[function(require,module,exports){
|
|
33655
33660
|
"use strict";
|
|
33656
33661
|
/*!
|
|
33657
33662
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33799,7 +33804,7 @@ __decorate([
|
|
|
33799
33804
|
], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
|
|
33800
33805
|
exports.DiagnosticErrorListener = DiagnosticErrorListener;
|
|
33801
33806
|
|
|
33802
|
-
},{"./Decorators":
|
|
33807
|
+
},{"./Decorators":199,"./misc/BitSet":306,"./misc/Interval":311}],203:[function(require,module,exports){
|
|
33803
33808
|
"use strict";
|
|
33804
33809
|
/*!
|
|
33805
33810
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33864,7 +33869,7 @@ FailedPredicateException = __decorate([
|
|
|
33864
33869
|
], FailedPredicateException);
|
|
33865
33870
|
exports.FailedPredicateException = FailedPredicateException;
|
|
33866
33871
|
|
|
33867
|
-
},{"./Decorators":
|
|
33872
|
+
},{"./Decorators":199,"./RecognitionException":218,"./atn/PredicateTransition":278}],204:[function(require,module,exports){
|
|
33868
33873
|
"use strict";
|
|
33869
33874
|
/*!
|
|
33870
33875
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33904,7 +33909,7 @@ InputMismatchException = __decorate([
|
|
|
33904
33909
|
], InputMismatchException);
|
|
33905
33910
|
exports.InputMismatchException = InputMismatchException;
|
|
33906
33911
|
|
|
33907
|
-
},{"./Decorators":
|
|
33912
|
+
},{"./Decorators":199,"./RecognitionException":218}],205:[function(require,module,exports){
|
|
33908
33913
|
"use strict";
|
|
33909
33914
|
/*!
|
|
33910
33915
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33927,7 +33932,7 @@ var IntStream;
|
|
|
33927
33932
|
IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
|
|
33928
33933
|
})(IntStream = exports.IntStream || (exports.IntStream = {}));
|
|
33929
33934
|
|
|
33930
|
-
},{}],
|
|
33935
|
+
},{}],206:[function(require,module,exports){
|
|
33931
33936
|
"use strict";
|
|
33932
33937
|
/*!
|
|
33933
33938
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33974,7 +33979,7 @@ __decorate([
|
|
|
33974
33979
|
], InterpreterRuleContext.prototype, "ruleIndex", null);
|
|
33975
33980
|
exports.InterpreterRuleContext = InterpreterRuleContext;
|
|
33976
33981
|
|
|
33977
|
-
},{"./Decorators":
|
|
33982
|
+
},{"./Decorators":199,"./ParserRuleContext":215}],207:[function(require,module,exports){
|
|
33978
33983
|
"use strict";
|
|
33979
33984
|
/*!
|
|
33980
33985
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34310,7 +34315,7 @@ __decorate([
|
|
|
34310
34315
|
], Lexer.prototype, "charPositionInLine", null);
|
|
34311
34316
|
exports.Lexer = Lexer;
|
|
34312
34317
|
|
|
34313
|
-
},{"./CommonTokenFactory":
|
|
34318
|
+
},{"./CommonTokenFactory":196,"./Decorators":199,"./IntStream":205,"./LexerNoViableAltException":209,"./Recognizer":219,"./Token":224,"./atn/LexerATNSimulator":257,"./misc/IntegerStack":310,"./misc/Interval":311}],208:[function(require,module,exports){
|
|
34314
34319
|
"use strict";
|
|
34315
34320
|
/*!
|
|
34316
34321
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34390,7 +34395,7 @@ LexerInterpreter = __decorate([
|
|
|
34390
34395
|
], LexerInterpreter);
|
|
34391
34396
|
exports.LexerInterpreter = LexerInterpreter;
|
|
34392
34397
|
|
|
34393
|
-
},{"./Decorators":
|
|
34398
|
+
},{"./Decorators":199,"./Lexer":207,"./atn/LexerATNSimulator":257}],209:[function(require,module,exports){
|
|
34394
34399
|
"use strict";
|
|
34395
34400
|
/*!
|
|
34396
34401
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34447,7 +34452,7 @@ LexerNoViableAltException = __decorate([
|
|
|
34447
34452
|
], LexerNoViableAltException);
|
|
34448
34453
|
exports.LexerNoViableAltException = LexerNoViableAltException;
|
|
34449
34454
|
|
|
34450
|
-
},{"./Decorators":
|
|
34455
|
+
},{"./Decorators":199,"./RecognitionException":218,"./misc/Interval":311,"./misc/Utils":318}],210:[function(require,module,exports){
|
|
34451
34456
|
"use strict";
|
|
34452
34457
|
/*!
|
|
34453
34458
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34657,7 +34662,7 @@ ListTokenSource = __decorate([
|
|
|
34657
34662
|
], ListTokenSource);
|
|
34658
34663
|
exports.ListTokenSource = ListTokenSource;
|
|
34659
34664
|
|
|
34660
|
-
},{"./CommonTokenFactory":
|
|
34665
|
+
},{"./CommonTokenFactory":196,"./Decorators":199,"./Token":224}],211:[function(require,module,exports){
|
|
34661
34666
|
"use strict";
|
|
34662
34667
|
/*!
|
|
34663
34668
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34712,7 +34717,7 @@ __decorate([
|
|
|
34712
34717
|
], NoViableAltException.prototype, "_startToken", void 0);
|
|
34713
34718
|
exports.NoViableAltException = NoViableAltException;
|
|
34714
34719
|
|
|
34715
|
-
},{"./Decorators":
|
|
34720
|
+
},{"./Decorators":199,"./Parser":212,"./RecognitionException":218}],212:[function(require,module,exports){
|
|
34716
34721
|
(function (process){(function (){
|
|
34717
34722
|
"use strict";
|
|
34718
34723
|
/*!
|
|
@@ -35558,7 +35563,7 @@ __decorate([
|
|
|
35558
35563
|
exports.Parser = Parser;
|
|
35559
35564
|
|
|
35560
35565
|
}).call(this)}).call(this,require('_process'))
|
|
35561
|
-
},{"./Decorators":
|
|
35566
|
+
},{"./Decorators":199,"./DefaultErrorStrategy":200,"./Lexer":207,"./ProxyParserErrorListener":217,"./Recognizer":219,"./Token":224,"./atn/ATNDeserializationOptions":235,"./atn/ATNDeserializer":236,"./atn/ParseInfo":272,"./atn/ParserATNSimulator":273,"./atn/ProfilingATNSimulator":282,"./misc/IntegerStack":310,"./misc/Utils":318,"./tree/ErrorNode":319,"./tree/TerminalNode":322,"./tree/pattern/ParseTreePatternMatcher":327,"_process":401}],213:[function(require,module,exports){
|
|
35562
35567
|
"use strict";
|
|
35563
35568
|
/*!
|
|
35564
35569
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35566,7 +35571,7 @@ exports.Parser = Parser;
|
|
|
35566
35571
|
*/
|
|
35567
35572
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
35568
35573
|
|
|
35569
|
-
},{}],
|
|
35574
|
+
},{}],214:[function(require,module,exports){
|
|
35570
35575
|
"use strict";
|
|
35571
35576
|
/*!
|
|
35572
35577
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35974,7 +35979,7 @@ ParserInterpreter = __decorate([
|
|
|
35974
35979
|
], ParserInterpreter);
|
|
35975
35980
|
exports.ParserInterpreter = ParserInterpreter;
|
|
35976
35981
|
|
|
35977
|
-
},{"./Decorators":
|
|
35982
|
+
},{"./Decorators":199,"./FailedPredicateException":203,"./InputMismatchException":204,"./InterpreterRuleContext":206,"./Parser":212,"./RecognitionException":218,"./Token":224,"./atn/ATNState":238,"./atn/ATNStateType":239,"./atn/LoopEndState":269,"./atn/ParserATNSimulator":273,"./atn/StarLoopEntryState":291,"./misc/BitSet":306}],215:[function(require,module,exports){
|
|
35978
35983
|
"use strict";
|
|
35979
35984
|
/*!
|
|
35980
35985
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36275,7 +36280,7 @@ __decorate([
|
|
|
36275
36280
|
], ParserRuleContext.prototype, "sourceInterval", null);
|
|
36276
36281
|
exports.ParserRuleContext = ParserRuleContext;
|
|
36277
36282
|
|
|
36278
|
-
},{"./Decorators":
|
|
36283
|
+
},{"./Decorators":199,"./RuleContext":220,"./misc/Interval":311,"./tree/ErrorNode":319,"./tree/TerminalNode":322}],216:[function(require,module,exports){
|
|
36279
36284
|
"use strict";
|
|
36280
36285
|
/*!
|
|
36281
36286
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36325,7 +36330,7 @@ __decorate([
|
|
|
36325
36330
|
], ProxyErrorListener.prototype, "syntaxError", null);
|
|
36326
36331
|
exports.ProxyErrorListener = ProxyErrorListener;
|
|
36327
36332
|
|
|
36328
|
-
},{"./Decorators":
|
|
36333
|
+
},{"./Decorators":199}],217:[function(require,module,exports){
|
|
36329
36334
|
"use strict";
|
|
36330
36335
|
/*!
|
|
36331
36336
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36384,7 +36389,7 @@ __decorate([
|
|
|
36384
36389
|
], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
|
|
36385
36390
|
exports.ProxyParserErrorListener = ProxyParserErrorListener;
|
|
36386
36391
|
|
|
36387
|
-
},{"./Decorators":
|
|
36392
|
+
},{"./Decorators":199,"./ProxyErrorListener":216}],218:[function(require,module,exports){
|
|
36388
36393
|
"use strict";
|
|
36389
36394
|
/*!
|
|
36390
36395
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36489,7 +36494,7 @@ class RecognitionException extends Error {
|
|
|
36489
36494
|
}
|
|
36490
36495
|
exports.RecognitionException = RecognitionException;
|
|
36491
36496
|
|
|
36492
|
-
},{}],
|
|
36497
|
+
},{}],219:[function(require,module,exports){
|
|
36493
36498
|
"use strict";
|
|
36494
36499
|
/*!
|
|
36495
36500
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36708,7 +36713,7 @@ __decorate([
|
|
|
36708
36713
|
], Recognizer.prototype, "getErrorListeners", null);
|
|
36709
36714
|
exports.Recognizer = Recognizer;
|
|
36710
36715
|
|
|
36711
|
-
},{"./ConsoleErrorListener":
|
|
36716
|
+
},{"./ConsoleErrorListener":198,"./Decorators":199,"./ProxyErrorListener":216,"./Token":224,"./misc/Utils":318}],220:[function(require,module,exports){
|
|
36712
36717
|
"use strict";
|
|
36713
36718
|
/*!
|
|
36714
36719
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36925,7 +36930,7 @@ __decorate([
|
|
|
36925
36930
|
], RuleContext.prototype, "toStringTree", null);
|
|
36926
36931
|
exports.RuleContext = RuleContext;
|
|
36927
36932
|
|
|
36928
|
-
},{"./Decorators":
|
|
36933
|
+
},{"./Decorators":199,"./ParserRuleContext":215,"./Recognizer":219,"./atn/ATN":232,"./misc/Interval":311,"./tree/RuleNode":321,"./tree/Trees":323}],221:[function(require,module,exports){
|
|
36929
36934
|
"use strict";
|
|
36930
36935
|
/*!
|
|
36931
36936
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36976,7 +36981,7 @@ __decorate([
|
|
|
36976
36981
|
], RuleContextWithAltNum.prototype, "altNumber", null);
|
|
36977
36982
|
exports.RuleContextWithAltNum = RuleContextWithAltNum;
|
|
36978
36983
|
|
|
36979
|
-
},{"./Decorators":
|
|
36984
|
+
},{"./Decorators":199,"./ParserRuleContext":215,"./atn/ATN":232}],222:[function(require,module,exports){
|
|
36980
36985
|
"use strict";
|
|
36981
36986
|
/*!
|
|
36982
36987
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36999,7 +37004,7 @@ function RuleDependency(dependency) {
|
|
|
36999
37004
|
}
|
|
37000
37005
|
exports.RuleDependency = RuleDependency;
|
|
37001
37006
|
|
|
37002
|
-
},{}],
|
|
37007
|
+
},{}],223:[function(require,module,exports){
|
|
37003
37008
|
"use strict";
|
|
37004
37009
|
/*!
|
|
37005
37010
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37018,7 +37023,7 @@ function RuleVersion(version) {
|
|
|
37018
37023
|
}
|
|
37019
37024
|
exports.RuleVersion = RuleVersion;
|
|
37020
37025
|
|
|
37021
|
-
},{}],
|
|
37026
|
+
},{}],224:[function(require,module,exports){
|
|
37022
37027
|
"use strict";
|
|
37023
37028
|
/*!
|
|
37024
37029
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37058,7 +37063,7 @@ var Token;
|
|
|
37058
37063
|
Token.MIN_USER_CHANNEL_VALUE = 2;
|
|
37059
37064
|
})(Token = exports.Token || (exports.Token = {}));
|
|
37060
37065
|
|
|
37061
|
-
},{"./IntStream":
|
|
37066
|
+
},{"./IntStream":205}],225:[function(require,module,exports){
|
|
37062
37067
|
"use strict";
|
|
37063
37068
|
/*!
|
|
37064
37069
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37066,7 +37071,7 @@ var Token;
|
|
|
37066
37071
|
*/
|
|
37067
37072
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37068
37073
|
|
|
37069
|
-
},{}],
|
|
37074
|
+
},{}],226:[function(require,module,exports){
|
|
37070
37075
|
"use strict";
|
|
37071
37076
|
/*!
|
|
37072
37077
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37074,7 +37079,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
37074
37079
|
*/
|
|
37075
37080
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37076
37081
|
|
|
37077
|
-
},{}],
|
|
37082
|
+
},{}],227:[function(require,module,exports){
|
|
37078
37083
|
"use strict";
|
|
37079
37084
|
/*!
|
|
37080
37085
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37082,7 +37087,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
37082
37087
|
*/
|
|
37083
37088
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37084
37089
|
|
|
37085
|
-
},{}],
|
|
37090
|
+
},{}],228:[function(require,module,exports){
|
|
37086
37091
|
"use strict";
|
|
37087
37092
|
/*!
|
|
37088
37093
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37590,7 +37595,7 @@ __decorate([
|
|
|
37590
37595
|
Decorators_1.Override
|
|
37591
37596
|
], ReplaceOp.prototype, "toString", null);
|
|
37592
37597
|
|
|
37593
|
-
},{"./Decorators":
|
|
37598
|
+
},{"./Decorators":199,"./Token":224,"./misc/Interval":311}],229:[function(require,module,exports){
|
|
37594
37599
|
"use strict";
|
|
37595
37600
|
/*!
|
|
37596
37601
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37598,7 +37603,7 @@ __decorate([
|
|
|
37598
37603
|
*/
|
|
37599
37604
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37600
37605
|
|
|
37601
|
-
},{}],
|
|
37606
|
+
},{}],230:[function(require,module,exports){
|
|
37602
37607
|
"use strict";
|
|
37603
37608
|
/*!
|
|
37604
37609
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37718,7 +37723,7 @@ __decorate([
|
|
|
37718
37723
|
], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
|
|
37719
37724
|
exports.VocabularyImpl = VocabularyImpl;
|
|
37720
37725
|
|
|
37721
|
-
},{"./Decorators":
|
|
37726
|
+
},{"./Decorators":199,"./Token":224}],231:[function(require,module,exports){
|
|
37722
37727
|
"use strict";
|
|
37723
37728
|
/*!
|
|
37724
37729
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37726,7 +37731,7 @@ exports.VocabularyImpl = VocabularyImpl;
|
|
|
37726
37731
|
*/
|
|
37727
37732
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37728
37733
|
|
|
37729
|
-
},{}],
|
|
37734
|
+
},{}],232:[function(require,module,exports){
|
|
37730
37735
|
"use strict";
|
|
37731
37736
|
/*!
|
|
37732
37737
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37948,7 +37953,7 @@ exports.ATN = ATN;
|
|
|
37948
37953
|
})(ATN = exports.ATN || (exports.ATN = {}));
|
|
37949
37954
|
exports.ATN = ATN;
|
|
37950
37955
|
|
|
37951
|
-
},{"../Decorators":
|
|
37956
|
+
},{"../Decorators":199,"../Token":224,"../dfa/DFA":297,"../misc/Array2DHashMap":302,"../misc/IntervalSet":312,"../misc/ObjectEqualityComparator":315,"./InvalidState":255,"./LL1Analyzer":256,"./PredictionContext":279,"assert":342}],233:[function(require,module,exports){
|
|
37952
37957
|
"use strict";
|
|
37953
37958
|
/*!
|
|
37954
37959
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38473,7 +38478,7 @@ ActionSemanticContextATNConfig = __decorate([
|
|
|
38473
38478
|
__param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
|
|
38474
38479
|
], ActionSemanticContextATNConfig);
|
|
38475
38480
|
|
|
38476
|
-
},{"../Decorators":
|
|
38481
|
+
},{"../Decorators":199,"../misc/Array2DHashMap":302,"../misc/MurmurHash":314,"../misc/ObjectEqualityComparator":315,"./DecisionState":252,"./PredictionContext":279,"./SemanticContext":287,"assert":342}],234:[function(require,module,exports){
|
|
38477
38482
|
"use strict";
|
|
38478
38483
|
/*!
|
|
38479
38484
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38920,7 +38925,7 @@ __decorate([
|
|
|
38920
38925
|
], ATNConfigSet.prototype, "hashCode", null);
|
|
38921
38926
|
exports.ATNConfigSet = ATNConfigSet;
|
|
38922
38927
|
|
|
38923
|
-
},{"../Decorators":
|
|
38928
|
+
},{"../Decorators":199,"../misc/Array2DHashMap":302,"../misc/Array2DHashSet":303,"../misc/ArrayEqualityComparator":304,"../misc/BitSet":306,"../misc/ObjectEqualityComparator":315,"../misc/Utils":318,"./ATN":232,"./ATNConfig":233,"./PredictionContext":279,"./PredictionContextCache":280,"./SemanticContext":287,"assert":342}],235:[function(require,module,exports){
|
|
38924
38929
|
"use strict";
|
|
38925
38930
|
/*!
|
|
38926
38931
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38999,7 +39004,7 @@ __decorate([
|
|
|
38999
39004
|
], ATNDeserializationOptions, "defaultOptions", null);
|
|
39000
39005
|
exports.ATNDeserializationOptions = ATNDeserializationOptions;
|
|
39001
39006
|
|
|
39002
|
-
},{"../Decorators":
|
|
39007
|
+
},{"../Decorators":199}],236:[function(require,module,exports){
|
|
39003
39008
|
"use strict";
|
|
39004
39009
|
/*!
|
|
39005
39010
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40086,7 +40091,7 @@ __decorate([
|
|
|
40086
40091
|
], ATNDeserializer.prototype, "edgeFactory", null);
|
|
40087
40092
|
exports.ATNDeserializer = ATNDeserializer;
|
|
40088
40093
|
|
|
40089
|
-
},{"../Decorators":
|
|
40094
|
+
},{"../Decorators":199,"../Token":224,"../dfa/DFA":297,"../misc/Array2DHashSet":303,"../misc/BitSet":306,"../misc/IntervalSet":312,"../misc/UUID":317,"./ATN":232,"./ATNDeserializationOptions":235,"./ATNStateType":239,"./ActionTransition":241,"./AtomTransition":243,"./BasicBlockStartState":244,"./BasicState":245,"./BlockEndState":246,"./BlockStartState":247,"./DecisionState":252,"./EpsilonTransition":253,"./InvalidState":255,"./LexerChannelAction":259,"./LexerCustomAction":260,"./LexerModeAction":262,"./LexerMoreAction":263,"./LexerPopModeAction":264,"./LexerPushModeAction":265,"./LexerSkipAction":266,"./LexerTypeAction":267,"./LoopEndState":269,"./NotSetTransition":270,"./ParserATNSimulator":273,"./PlusBlockStartState":274,"./PlusLoopbackState":275,"./PrecedencePredicateTransition":276,"./PredicateTransition":278,"./RangeTransition":283,"./RuleStartState":284,"./RuleStopState":285,"./RuleTransition":286,"./SetTransition":288,"./StarBlockStartState":290,"./StarLoopEntryState":291,"./StarLoopbackState":292,"./TokensStartState":293,"./WildcardTransition":295}],237:[function(require,module,exports){
|
|
40090
40095
|
"use strict";
|
|
40091
40096
|
/*!
|
|
40092
40097
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40150,7 +40155,7 @@ exports.ATNSimulator = ATNSimulator;
|
|
|
40150
40155
|
})(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
|
|
40151
40156
|
exports.ATNSimulator = ATNSimulator;
|
|
40152
40157
|
|
|
40153
|
-
},{"../Decorators":
|
|
40158
|
+
},{"../Decorators":199,"../dfa/DFAState":299,"./ATNConfigSet":234,"./PredictionContext":279}],238:[function(require,module,exports){
|
|
40154
40159
|
"use strict";
|
|
40155
40160
|
/*!
|
|
40156
40161
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40337,7 +40342,7 @@ exports.ATNState = ATNState;
|
|
|
40337
40342
|
ATNState.INVALID_STATE_NUMBER = -1;
|
|
40338
40343
|
})(ATNState = exports.ATNState || (exports.ATNState = {}));
|
|
40339
40344
|
|
|
40340
|
-
},{"../Decorators":
|
|
40345
|
+
},{"../Decorators":199}],239:[function(require,module,exports){
|
|
40341
40346
|
"use strict";
|
|
40342
40347
|
/*!
|
|
40343
40348
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40363,7 +40368,7 @@ var ATNStateType;
|
|
|
40363
40368
|
ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
|
|
40364
40369
|
})(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
|
|
40365
40370
|
|
|
40366
|
-
},{}],
|
|
40371
|
+
},{}],240:[function(require,module,exports){
|
|
40367
40372
|
"use strict";
|
|
40368
40373
|
/*!
|
|
40369
40374
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40383,7 +40388,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
|
|
|
40383
40388
|
}
|
|
40384
40389
|
exports.AbstractPredicateTransition = AbstractPredicateTransition;
|
|
40385
40390
|
|
|
40386
|
-
},{"./Transition":
|
|
40391
|
+
},{"./Transition":294}],241:[function(require,module,exports){
|
|
40387
40392
|
"use strict";
|
|
40388
40393
|
/*!
|
|
40389
40394
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40439,7 +40444,7 @@ ActionTransition = __decorate([
|
|
|
40439
40444
|
], ActionTransition);
|
|
40440
40445
|
exports.ActionTransition = ActionTransition;
|
|
40441
40446
|
|
|
40442
|
-
},{"../Decorators":
|
|
40447
|
+
},{"../Decorators":199,"./Transition":294}],242:[function(require,module,exports){
|
|
40443
40448
|
"use strict";
|
|
40444
40449
|
/*!
|
|
40445
40450
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40526,7 +40531,7 @@ AmbiguityInfo = __decorate([
|
|
|
40526
40531
|
], AmbiguityInfo);
|
|
40527
40532
|
exports.AmbiguityInfo = AmbiguityInfo;
|
|
40528
40533
|
|
|
40529
|
-
},{"../Decorators":
|
|
40534
|
+
},{"../Decorators":199,"./DecisionEventInfo":250}],243:[function(require,module,exports){
|
|
40530
40535
|
"use strict";
|
|
40531
40536
|
/*!
|
|
40532
40537
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40584,7 +40589,7 @@ AtomTransition = __decorate([
|
|
|
40584
40589
|
], AtomTransition);
|
|
40585
40590
|
exports.AtomTransition = AtomTransition;
|
|
40586
40591
|
|
|
40587
|
-
},{"../Decorators":
|
|
40592
|
+
},{"../Decorators":199,"../misc/IntervalSet":312,"./Transition":294}],244:[function(require,module,exports){
|
|
40588
40593
|
"use strict";
|
|
40589
40594
|
/*!
|
|
40590
40595
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40616,7 +40621,7 @@ __decorate([
|
|
|
40616
40621
|
], BasicBlockStartState.prototype, "stateType", null);
|
|
40617
40622
|
exports.BasicBlockStartState = BasicBlockStartState;
|
|
40618
40623
|
|
|
40619
|
-
},{"../Decorators":
|
|
40624
|
+
},{"../Decorators":199,"./ATNStateType":239,"./BlockStartState":247}],245:[function(require,module,exports){
|
|
40620
40625
|
"use strict";
|
|
40621
40626
|
/*!
|
|
40622
40627
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40648,7 +40653,7 @@ __decorate([
|
|
|
40648
40653
|
], BasicState.prototype, "stateType", null);
|
|
40649
40654
|
exports.BasicState = BasicState;
|
|
40650
40655
|
|
|
40651
|
-
},{"../Decorators":
|
|
40656
|
+
},{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],246:[function(require,module,exports){
|
|
40652
40657
|
"use strict";
|
|
40653
40658
|
/*!
|
|
40654
40659
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40677,7 +40682,7 @@ __decorate([
|
|
|
40677
40682
|
], BlockEndState.prototype, "stateType", null);
|
|
40678
40683
|
exports.BlockEndState = BlockEndState;
|
|
40679
40684
|
|
|
40680
|
-
},{"../Decorators":
|
|
40685
|
+
},{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],247:[function(require,module,exports){
|
|
40681
40686
|
"use strict";
|
|
40682
40687
|
/*!
|
|
40683
40688
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40691,7 +40696,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
|
|
|
40691
40696
|
}
|
|
40692
40697
|
exports.BlockStartState = BlockStartState;
|
|
40693
40698
|
|
|
40694
|
-
},{"./DecisionState":
|
|
40699
|
+
},{"./DecisionState":252}],248:[function(require,module,exports){
|
|
40695
40700
|
"use strict";
|
|
40696
40701
|
/*!
|
|
40697
40702
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40761,7 +40766,7 @@ __decorate([
|
|
|
40761
40766
|
], ConflictInfo.prototype, "hashCode", null);
|
|
40762
40767
|
exports.ConflictInfo = ConflictInfo;
|
|
40763
40768
|
|
|
40764
|
-
},{"../Decorators":
|
|
40769
|
+
},{"../Decorators":199,"../misc/Utils":318}],249:[function(require,module,exports){
|
|
40765
40770
|
"use strict";
|
|
40766
40771
|
/*!
|
|
40767
40772
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40821,7 +40826,7 @@ ContextSensitivityInfo = __decorate([
|
|
|
40821
40826
|
], ContextSensitivityInfo);
|
|
40822
40827
|
exports.ContextSensitivityInfo = ContextSensitivityInfo;
|
|
40823
40828
|
|
|
40824
|
-
},{"../Decorators":
|
|
40829
|
+
},{"../Decorators":199,"./DecisionEventInfo":250}],250:[function(require,module,exports){
|
|
40825
40830
|
"use strict";
|
|
40826
40831
|
/*!
|
|
40827
40832
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40873,7 +40878,7 @@ DecisionEventInfo = __decorate([
|
|
|
40873
40878
|
], DecisionEventInfo);
|
|
40874
40879
|
exports.DecisionEventInfo = DecisionEventInfo;
|
|
40875
40880
|
|
|
40876
|
-
},{"../Decorators":
|
|
40881
|
+
},{"../Decorators":199}],251:[function(require,module,exports){
|
|
40877
40882
|
"use strict";
|
|
40878
40883
|
/*!
|
|
40879
40884
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41086,7 +41091,7 @@ __decorate([
|
|
|
41086
41091
|
], DecisionInfo.prototype, "toString", null);
|
|
41087
41092
|
exports.DecisionInfo = DecisionInfo;
|
|
41088
41093
|
|
|
41089
|
-
},{"../Decorators":
|
|
41094
|
+
},{"../Decorators":199}],252:[function(require,module,exports){
|
|
41090
41095
|
"use strict";
|
|
41091
41096
|
/*!
|
|
41092
41097
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41106,7 +41111,7 @@ class DecisionState extends ATNState_1.ATNState {
|
|
|
41106
41111
|
}
|
|
41107
41112
|
exports.DecisionState = DecisionState;
|
|
41108
41113
|
|
|
41109
|
-
},{"./ATNState":
|
|
41114
|
+
},{"./ATNState":238}],253:[function(require,module,exports){
|
|
41110
41115
|
"use strict";
|
|
41111
41116
|
/*!
|
|
41112
41117
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41172,7 +41177,7 @@ EpsilonTransition = __decorate([
|
|
|
41172
41177
|
], EpsilonTransition);
|
|
41173
41178
|
exports.EpsilonTransition = EpsilonTransition;
|
|
41174
41179
|
|
|
41175
|
-
},{"../Decorators":
|
|
41180
|
+
},{"../Decorators":199,"./Transition":294}],254:[function(require,module,exports){
|
|
41176
41181
|
"use strict";
|
|
41177
41182
|
/*!
|
|
41178
41183
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41225,7 +41230,7 @@ ErrorInfo = __decorate([
|
|
|
41225
41230
|
], ErrorInfo);
|
|
41226
41231
|
exports.ErrorInfo = ErrorInfo;
|
|
41227
41232
|
|
|
41228
|
-
},{"../Decorators":
|
|
41233
|
+
},{"../Decorators":199,"./DecisionEventInfo":250}],255:[function(require,module,exports){
|
|
41229
41234
|
"use strict";
|
|
41230
41235
|
/*!
|
|
41231
41236
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41256,7 +41261,7 @@ __decorate([
|
|
|
41256
41261
|
], InvalidState.prototype, "stateType", null);
|
|
41257
41262
|
exports.InvalidState = InvalidState;
|
|
41258
41263
|
|
|
41259
|
-
},{"../Decorators":
|
|
41264
|
+
},{"../Decorators":199,"./ATNStateType":239,"./BasicState":245}],256:[function(require,module,exports){
|
|
41260
41265
|
"use strict";
|
|
41261
41266
|
/*!
|
|
41262
41267
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41478,7 +41483,7 @@ LL1Analyzer = __decorate([
|
|
|
41478
41483
|
], LL1Analyzer);
|
|
41479
41484
|
exports.LL1Analyzer = LL1Analyzer;
|
|
41480
41485
|
|
|
41481
|
-
},{"../Decorators":
|
|
41486
|
+
},{"../Decorators":199,"../Token":224,"../misc/Array2DHashSet":303,"../misc/BitSet":306,"../misc/IntervalSet":312,"../misc/ObjectEqualityComparator":315,"./ATNConfig":233,"./AbstractPredicateTransition":240,"./NotSetTransition":270,"./PredictionContext":279,"./RuleStopState":285,"./RuleTransition":286,"./WildcardTransition":295}],257:[function(require,module,exports){
|
|
41482
41487
|
"use strict";
|
|
41483
41488
|
/*!
|
|
41484
41489
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42195,7 +42200,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
|
|
|
42195
42200
|
})(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
|
|
42196
42201
|
exports.LexerATNSimulator = LexerATNSimulator;
|
|
42197
42202
|
|
|
42198
|
-
},{"../Decorators":
|
|
42203
|
+
},{"../Decorators":199,"../IntStream":205,"../Lexer":207,"../LexerNoViableAltException":209,"../Token":224,"../dfa/AcceptStateInfo":296,"../dfa/DFAState":299,"../misc/Interval":311,"./ATN":232,"./ATNConfig":233,"./ATNConfigSet":234,"./ATNSimulator":237,"./LexerActionExecutor":258,"./OrderedATNConfigSet":271,"./PredictionContext":279,"./RuleStopState":285,"assert":342}],258:[function(require,module,exports){
|
|
42199
42204
|
"use strict";
|
|
42200
42205
|
/*!
|
|
42201
42206
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42396,7 +42401,7 @@ LexerActionExecutor = __decorate([
|
|
|
42396
42401
|
], LexerActionExecutor);
|
|
42397
42402
|
exports.LexerActionExecutor = LexerActionExecutor;
|
|
42398
42403
|
|
|
42399
|
-
},{"../Decorators":
|
|
42404
|
+
},{"../Decorators":199,"../misc/ArrayEqualityComparator":304,"../misc/MurmurHash":314,"./LexerIndexedCustomAction":261}],259:[function(require,module,exports){
|
|
42400
42405
|
"use strict";
|
|
42401
42406
|
/*!
|
|
42402
42407
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42501,7 +42506,7 @@ __decorate([
|
|
|
42501
42506
|
], LexerChannelAction.prototype, "toString", null);
|
|
42502
42507
|
exports.LexerChannelAction = LexerChannelAction;
|
|
42503
42508
|
|
|
42504
|
-
},{"../Decorators":
|
|
42509
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],260:[function(require,module,exports){
|
|
42505
42510
|
"use strict";
|
|
42506
42511
|
/*!
|
|
42507
42512
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42630,7 +42635,7 @@ __decorate([
|
|
|
42630
42635
|
], LexerCustomAction.prototype, "equals", null);
|
|
42631
42636
|
exports.LexerCustomAction = LexerCustomAction;
|
|
42632
42637
|
|
|
42633
|
-
},{"../Decorators":
|
|
42638
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],261:[function(require,module,exports){
|
|
42634
42639
|
"use strict";
|
|
42635
42640
|
/*!
|
|
42636
42641
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42765,7 +42770,7 @@ LexerIndexedCustomAction = __decorate([
|
|
|
42765
42770
|
], LexerIndexedCustomAction);
|
|
42766
42771
|
exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
|
|
42767
42772
|
|
|
42768
|
-
},{"../Decorators":
|
|
42773
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],262:[function(require,module,exports){
|
|
42769
42774
|
"use strict";
|
|
42770
42775
|
/*!
|
|
42771
42776
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42870,7 +42875,7 @@ __decorate([
|
|
|
42870
42875
|
], LexerModeAction.prototype, "toString", null);
|
|
42871
42876
|
exports.LexerModeAction = LexerModeAction;
|
|
42872
42877
|
|
|
42873
|
-
},{"../Decorators":
|
|
42878
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],263:[function(require,module,exports){
|
|
42874
42879
|
"use strict";
|
|
42875
42880
|
/*!
|
|
42876
42881
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42966,7 +42971,7 @@ exports.LexerMoreAction = LexerMoreAction;
|
|
|
42966
42971
|
LexerMoreAction.INSTANCE = new LexerMoreAction();
|
|
42967
42972
|
})(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
|
|
42968
42973
|
|
|
42969
|
-
},{"../Decorators":
|
|
42974
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],264:[function(require,module,exports){
|
|
42970
42975
|
"use strict";
|
|
42971
42976
|
/*!
|
|
42972
42977
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43062,7 +43067,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
|
|
|
43062
43067
|
LexerPopModeAction.INSTANCE = new LexerPopModeAction();
|
|
43063
43068
|
})(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
|
|
43064
43069
|
|
|
43065
|
-
},{"../Decorators":
|
|
43070
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],265:[function(require,module,exports){
|
|
43066
43071
|
"use strict";
|
|
43067
43072
|
/*!
|
|
43068
43073
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43167,7 +43172,7 @@ __decorate([
|
|
|
43167
43172
|
], LexerPushModeAction.prototype, "toString", null);
|
|
43168
43173
|
exports.LexerPushModeAction = LexerPushModeAction;
|
|
43169
43174
|
|
|
43170
|
-
},{"../Decorators":
|
|
43175
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],266:[function(require,module,exports){
|
|
43171
43176
|
"use strict";
|
|
43172
43177
|
/*!
|
|
43173
43178
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43263,7 +43268,7 @@ exports.LexerSkipAction = LexerSkipAction;
|
|
|
43263
43268
|
LexerSkipAction.INSTANCE = new LexerSkipAction();
|
|
43264
43269
|
})(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
|
|
43265
43270
|
|
|
43266
|
-
},{"../Decorators":
|
|
43271
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],267:[function(require,module,exports){
|
|
43267
43272
|
"use strict";
|
|
43268
43273
|
/*!
|
|
43269
43274
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43367,7 +43372,7 @@ __decorate([
|
|
|
43367
43372
|
], LexerTypeAction.prototype, "toString", null);
|
|
43368
43373
|
exports.LexerTypeAction = LexerTypeAction;
|
|
43369
43374
|
|
|
43370
|
-
},{"../Decorators":
|
|
43375
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],268:[function(require,module,exports){
|
|
43371
43376
|
"use strict";
|
|
43372
43377
|
/*!
|
|
43373
43378
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43419,7 +43424,7 @@ LookaheadEventInfo = __decorate([
|
|
|
43419
43424
|
], LookaheadEventInfo);
|
|
43420
43425
|
exports.LookaheadEventInfo = LookaheadEventInfo;
|
|
43421
43426
|
|
|
43422
|
-
},{"../Decorators":
|
|
43427
|
+
},{"../Decorators":199,"./DecisionEventInfo":250}],269:[function(require,module,exports){
|
|
43423
43428
|
"use strict";
|
|
43424
43429
|
/*!
|
|
43425
43430
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43448,7 +43453,7 @@ __decorate([
|
|
|
43448
43453
|
], LoopEndState.prototype, "stateType", null);
|
|
43449
43454
|
exports.LoopEndState = LoopEndState;
|
|
43450
43455
|
|
|
43451
|
-
},{"../Decorators":
|
|
43456
|
+
},{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],270:[function(require,module,exports){
|
|
43452
43457
|
"use strict";
|
|
43453
43458
|
/*!
|
|
43454
43459
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43497,7 +43502,7 @@ NotSetTransition = __decorate([
|
|
|
43497
43502
|
], NotSetTransition);
|
|
43498
43503
|
exports.NotSetTransition = NotSetTransition;
|
|
43499
43504
|
|
|
43500
|
-
},{"../Decorators":
|
|
43505
|
+
},{"../Decorators":199,"./SetTransition":288}],271:[function(require,module,exports){
|
|
43501
43506
|
"use strict";
|
|
43502
43507
|
/*!
|
|
43503
43508
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43552,7 +43557,7 @@ __decorate([
|
|
|
43552
43557
|
], OrderedATNConfigSet.prototype, "canMerge", null);
|
|
43553
43558
|
exports.OrderedATNConfigSet = OrderedATNConfigSet;
|
|
43554
43559
|
|
|
43555
|
-
},{"../Decorators":
|
|
43560
|
+
},{"../Decorators":199,"./ATNConfigSet":234}],272:[function(require,module,exports){
|
|
43556
43561
|
"use strict";
|
|
43557
43562
|
/*!
|
|
43558
43563
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43714,7 +43719,7 @@ ParseInfo = __decorate([
|
|
|
43714
43719
|
], ParseInfo);
|
|
43715
43720
|
exports.ParseInfo = ParseInfo;
|
|
43716
43721
|
|
|
43717
|
-
},{"../Decorators":
|
|
43722
|
+
},{"../Decorators":199}],273:[function(require,module,exports){
|
|
43718
43723
|
"use strict";
|
|
43719
43724
|
/*!
|
|
43720
43725
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45987,7 +45992,7 @@ ParserATNSimulator = __decorate([
|
|
|
45987
45992
|
], ParserATNSimulator);
|
|
45988
45993
|
exports.ParserATNSimulator = ParserATNSimulator;
|
|
45989
45994
|
|
|
45990
|
-
},{"../Decorators":
|
|
45995
|
+
},{"../Decorators":199,"../IntStream":205,"../NoViableAltException":211,"../ParserRuleContext":215,"../Token":224,"../VocabularyImpl":230,"../dfa/AcceptStateInfo":296,"../dfa/DFAState":299,"../misc/Array2DHashSet":303,"../misc/Arrays":305,"../misc/BitSet":306,"../misc/IntegerList":309,"../misc/Interval":311,"../misc/ObjectEqualityComparator":315,"./ATN":232,"./ATNConfig":233,"./ATNConfigSet":234,"./ATNSimulator":237,"./ATNStateType":239,"./ActionTransition":241,"./AtomTransition":243,"./ConflictInfo":248,"./DecisionState":252,"./NotSetTransition":270,"./PredictionContext":279,"./PredictionContextCache":280,"./PredictionMode":281,"./RuleStopState":285,"./RuleTransition":286,"./SemanticContext":287,"./SetTransition":288,"./SimulatorState":289,"assert":342}],274:[function(require,module,exports){
|
|
45991
45996
|
"use strict";
|
|
45992
45997
|
/*!
|
|
45993
45998
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46020,7 +46025,7 @@ __decorate([
|
|
|
46020
46025
|
], PlusBlockStartState.prototype, "stateType", null);
|
|
46021
46026
|
exports.PlusBlockStartState = PlusBlockStartState;
|
|
46022
46027
|
|
|
46023
|
-
},{"../Decorators":
|
|
46028
|
+
},{"../Decorators":199,"./ATNStateType":239,"./BlockStartState":247}],275:[function(require,module,exports){
|
|
46024
46029
|
"use strict";
|
|
46025
46030
|
/*!
|
|
46026
46031
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46051,7 +46056,7 @@ __decorate([
|
|
|
46051
46056
|
], PlusLoopbackState.prototype, "stateType", null);
|
|
46052
46057
|
exports.PlusLoopbackState = PlusLoopbackState;
|
|
46053
46058
|
|
|
46054
|
-
},{"../Decorators":
|
|
46059
|
+
},{"../Decorators":199,"./ATNStateType":239,"./DecisionState":252}],276:[function(require,module,exports){
|
|
46055
46060
|
"use strict";
|
|
46056
46061
|
/*!
|
|
46057
46062
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46114,7 +46119,7 @@ PrecedencePredicateTransition = __decorate([
|
|
|
46114
46119
|
], PrecedencePredicateTransition);
|
|
46115
46120
|
exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
|
|
46116
46121
|
|
|
46117
|
-
},{"../Decorators":
|
|
46122
|
+
},{"../Decorators":199,"./AbstractPredicateTransition":240,"./SemanticContext":287}],277:[function(require,module,exports){
|
|
46118
46123
|
"use strict";
|
|
46119
46124
|
/*!
|
|
46120
46125
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46177,7 +46182,7 @@ PredicateEvalInfo = __decorate([
|
|
|
46177
46182
|
], PredicateEvalInfo);
|
|
46178
46183
|
exports.PredicateEvalInfo = PredicateEvalInfo;
|
|
46179
46184
|
|
|
46180
|
-
},{"../Decorators":
|
|
46185
|
+
},{"../Decorators":199,"./DecisionEventInfo":250}],278:[function(require,module,exports){
|
|
46181
46186
|
"use strict";
|
|
46182
46187
|
/*!
|
|
46183
46188
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46243,7 +46248,7 @@ PredicateTransition = __decorate([
|
|
|
46243
46248
|
], PredicateTransition);
|
|
46244
46249
|
exports.PredicateTransition = PredicateTransition;
|
|
46245
46250
|
|
|
46246
|
-
},{"../Decorators":
|
|
46251
|
+
},{"../Decorators":199,"./AbstractPredicateTransition":240,"./SemanticContext":287}],279:[function(require,module,exports){
|
|
46247
46252
|
"use strict";
|
|
46248
46253
|
/*!
|
|
46249
46254
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46934,7 +46939,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
|
|
|
46934
46939
|
PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
|
|
46935
46940
|
})(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
|
|
46936
46941
|
|
|
46937
|
-
},{"../Decorators":
|
|
46942
|
+
},{"../Decorators":199,"../misc/Array2DHashMap":302,"../misc/Array2DHashSet":303,"../misc/Arrays":305,"../misc/MurmurHash":314,"./PredictionContextCache":280,"assert":342}],280:[function(require,module,exports){
|
|
46938
46943
|
"use strict";
|
|
46939
46944
|
/*!
|
|
46940
46945
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47075,7 +47080,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
|
|
|
47075
47080
|
PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
|
|
47076
47081
|
})(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
|
|
47077
47082
|
|
|
47078
|
-
},{"../Decorators":
|
|
47083
|
+
},{"../Decorators":199,"../misc/Array2DHashMap":302,"../misc/ObjectEqualityComparator":315,"./PredictionContext":279,"assert":342}],281:[function(require,module,exports){
|
|
47079
47084
|
"use strict";
|
|
47080
47085
|
/*!
|
|
47081
47086
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47236,7 +47241,7 @@ var PredictionMode;
|
|
|
47236
47241
|
PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
|
|
47237
47242
|
})(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
|
|
47238
47243
|
|
|
47239
|
-
},{"../Decorators":
|
|
47244
|
+
},{"../Decorators":199,"../misc/Array2DHashMap":302,"../misc/MurmurHash":314,"./RuleStopState":285}],282:[function(require,module,exports){
|
|
47240
47245
|
(function (process){(function (){
|
|
47241
47246
|
"use strict";
|
|
47242
47247
|
/*!
|
|
@@ -47505,7 +47510,7 @@ __decorate([
|
|
|
47505
47510
|
exports.ProfilingATNSimulator = ProfilingATNSimulator;
|
|
47506
47511
|
|
|
47507
47512
|
}).call(this)}).call(this,require('_process'))
|
|
47508
|
-
},{"../Decorators":
|
|
47513
|
+
},{"../Decorators":199,"./ATN":232,"./ATNSimulator":237,"./AmbiguityInfo":242,"./ContextSensitivityInfo":249,"./DecisionInfo":251,"./ErrorInfo":254,"./LookaheadEventInfo":268,"./ParserATNSimulator":273,"./PredicateEvalInfo":277,"./SemanticContext":287,"./SimulatorState":289,"_process":401}],283:[function(require,module,exports){
|
|
47509
47514
|
"use strict";
|
|
47510
47515
|
/*!
|
|
47511
47516
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47563,7 +47568,7 @@ RangeTransition = __decorate([
|
|
|
47563
47568
|
], RangeTransition);
|
|
47564
47569
|
exports.RangeTransition = RangeTransition;
|
|
47565
47570
|
|
|
47566
|
-
},{"../Decorators":
|
|
47571
|
+
},{"../Decorators":199,"../misc/IntervalSet":312,"./Transition":294}],284:[function(require,module,exports){
|
|
47567
47572
|
"use strict";
|
|
47568
47573
|
/*!
|
|
47569
47574
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47596,7 +47601,7 @@ __decorate([
|
|
|
47596
47601
|
], RuleStartState.prototype, "stateType", null);
|
|
47597
47602
|
exports.RuleStartState = RuleStartState;
|
|
47598
47603
|
|
|
47599
|
-
},{"../Decorators":
|
|
47604
|
+
},{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],285:[function(require,module,exports){
|
|
47600
47605
|
"use strict";
|
|
47601
47606
|
/*!
|
|
47602
47607
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47635,7 +47640,7 @@ __decorate([
|
|
|
47635
47640
|
], RuleStopState.prototype, "stateType", null);
|
|
47636
47641
|
exports.RuleStopState = RuleStopState;
|
|
47637
47642
|
|
|
47638
|
-
},{"../Decorators":
|
|
47643
|
+
},{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],286:[function(require,module,exports){
|
|
47639
47644
|
"use strict";
|
|
47640
47645
|
/*!
|
|
47641
47646
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47691,7 +47696,7 @@ RuleTransition = __decorate([
|
|
|
47691
47696
|
], RuleTransition);
|
|
47692
47697
|
exports.RuleTransition = RuleTransition;
|
|
47693
47698
|
|
|
47694
|
-
},{"../Decorators":
|
|
47699
|
+
},{"../Decorators":199,"./Transition":294}],287:[function(require,module,exports){
|
|
47695
47700
|
"use strict";
|
|
47696
47701
|
/*!
|
|
47697
47702
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48171,7 +48176,7 @@ exports.SemanticContext = SemanticContext;
|
|
|
48171
48176
|
SemanticContext.OR = OR;
|
|
48172
48177
|
})(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
|
|
48173
48178
|
|
|
48174
|
-
},{"../Decorators":
|
|
48179
|
+
},{"../Decorators":199,"../misc/Array2DHashSet":303,"../misc/ArrayEqualityComparator":304,"../misc/MurmurHash":314,"../misc/ObjectEqualityComparator":315,"../misc/Utils":318}],288:[function(require,module,exports){
|
|
48175
48180
|
"use strict";
|
|
48176
48181
|
/*!
|
|
48177
48182
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48237,7 +48242,7 @@ SetTransition = __decorate([
|
|
|
48237
48242
|
], SetTransition);
|
|
48238
48243
|
exports.SetTransition = SetTransition;
|
|
48239
48244
|
|
|
48240
|
-
},{"../Decorators":
|
|
48245
|
+
},{"../Decorators":199,"../Token":224,"../misc/IntervalSet":312,"./Transition":294}],289:[function(require,module,exports){
|
|
48241
48246
|
"use strict";
|
|
48242
48247
|
/*!
|
|
48243
48248
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48273,7 +48278,7 @@ SimulatorState = __decorate([
|
|
|
48273
48278
|
], SimulatorState);
|
|
48274
48279
|
exports.SimulatorState = SimulatorState;
|
|
48275
48280
|
|
|
48276
|
-
},{"../Decorators":
|
|
48281
|
+
},{"../Decorators":199,"../ParserRuleContext":215}],290:[function(require,module,exports){
|
|
48277
48282
|
"use strict";
|
|
48278
48283
|
/*!
|
|
48279
48284
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48301,7 +48306,7 @@ __decorate([
|
|
|
48301
48306
|
], StarBlockStartState.prototype, "stateType", null);
|
|
48302
48307
|
exports.StarBlockStartState = StarBlockStartState;
|
|
48303
48308
|
|
|
48304
|
-
},{"../Decorators":
|
|
48309
|
+
},{"../Decorators":199,"./ATNStateType":239,"./BlockStartState":247}],291:[function(require,module,exports){
|
|
48305
48310
|
"use strict";
|
|
48306
48311
|
/*!
|
|
48307
48312
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48358,7 +48363,7 @@ __decorate([
|
|
|
48358
48363
|
], StarLoopEntryState.prototype, "stateType", null);
|
|
48359
48364
|
exports.StarLoopEntryState = StarLoopEntryState;
|
|
48360
48365
|
|
|
48361
|
-
},{"../Decorators":
|
|
48366
|
+
},{"../Decorators":199,"../misc/BitSet":306,"./ATNStateType":239,"./DecisionState":252}],292:[function(require,module,exports){
|
|
48362
48367
|
"use strict";
|
|
48363
48368
|
/*!
|
|
48364
48369
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48389,7 +48394,7 @@ __decorate([
|
|
|
48389
48394
|
], StarLoopbackState.prototype, "stateType", null);
|
|
48390
48395
|
exports.StarLoopbackState = StarLoopbackState;
|
|
48391
48396
|
|
|
48392
|
-
},{"../Decorators":
|
|
48397
|
+
},{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],293:[function(require,module,exports){
|
|
48393
48398
|
"use strict";
|
|
48394
48399
|
/*!
|
|
48395
48400
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48418,7 +48423,7 @@ __decorate([
|
|
|
48418
48423
|
], TokensStartState.prototype, "stateType", null);
|
|
48419
48424
|
exports.TokensStartState = TokensStartState;
|
|
48420
48425
|
|
|
48421
|
-
},{"../Decorators":
|
|
48426
|
+
},{"../Decorators":199,"./ATNStateType":239,"./DecisionState":252}],294:[function(require,module,exports){
|
|
48422
48427
|
"use strict";
|
|
48423
48428
|
/*!
|
|
48424
48429
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48492,7 +48497,7 @@ Transition = __decorate([
|
|
|
48492
48497
|
], Transition);
|
|
48493
48498
|
exports.Transition = Transition;
|
|
48494
48499
|
|
|
48495
|
-
},{"../Decorators":
|
|
48500
|
+
},{"../Decorators":199}],295:[function(require,module,exports){
|
|
48496
48501
|
"use strict";
|
|
48497
48502
|
/*!
|
|
48498
48503
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48540,7 +48545,7 @@ WildcardTransition = __decorate([
|
|
|
48540
48545
|
], WildcardTransition);
|
|
48541
48546
|
exports.WildcardTransition = WildcardTransition;
|
|
48542
48547
|
|
|
48543
|
-
},{"../Decorators":
|
|
48548
|
+
},{"../Decorators":199,"./Transition":294}],296:[function(require,module,exports){
|
|
48544
48549
|
"use strict";
|
|
48545
48550
|
/*!
|
|
48546
48551
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48582,7 +48587,7 @@ class AcceptStateInfo {
|
|
|
48582
48587
|
}
|
|
48583
48588
|
exports.AcceptStateInfo = AcceptStateInfo;
|
|
48584
48589
|
|
|
48585
|
-
},{}],
|
|
48590
|
+
},{}],297:[function(require,module,exports){
|
|
48586
48591
|
"use strict";
|
|
48587
48592
|
/*!
|
|
48588
48593
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48757,7 +48762,7 @@ DFA = __decorate([
|
|
|
48757
48762
|
], DFA);
|
|
48758
48763
|
exports.DFA = DFA;
|
|
48759
48764
|
|
|
48760
|
-
},{"../Decorators":
|
|
48765
|
+
},{"../Decorators":199,"../VocabularyImpl":230,"../atn/ATNConfigSet":234,"../atn/StarLoopEntryState":291,"../misc/Array2DHashSet":303,"../misc/ObjectEqualityComparator":315,"./DFASerializer":298,"./DFAState":299,"./LexerDFASerializer":300}],298:[function(require,module,exports){
|
|
48761
48766
|
"use strict";
|
|
48762
48767
|
/*!
|
|
48763
48768
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48899,7 +48904,7 @@ __decorate([
|
|
|
48899
48904
|
], DFASerializer.prototype, "toString", null);
|
|
48900
48905
|
exports.DFASerializer = DFASerializer;
|
|
48901
48906
|
|
|
48902
|
-
},{"../Decorators":
|
|
48907
|
+
},{"../Decorators":199,"../Recognizer":219,"../VocabularyImpl":230,"../atn/ATNSimulator":237,"../atn/PredictionContext":279}],299:[function(require,module,exports){
|
|
48903
48908
|
"use strict";
|
|
48904
48909
|
/*!
|
|
48905
48910
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49130,7 +49135,7 @@ exports.DFAState = DFAState;
|
|
|
49130
49135
|
DFAState.PredPrediction = PredPrediction;
|
|
49131
49136
|
})(DFAState = exports.DFAState || (exports.DFAState = {}));
|
|
49132
49137
|
|
|
49133
|
-
},{"../Decorators":
|
|
49138
|
+
},{"../Decorators":199,"../atn/ATN":232,"../atn/PredictionContext":279,"../misc/BitSet":306,"../misc/MurmurHash":314,"assert":342}],300:[function(require,module,exports){
|
|
49134
49139
|
"use strict";
|
|
49135
49140
|
/*!
|
|
49136
49141
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49167,7 +49172,7 @@ LexerDFASerializer = __decorate([
|
|
|
49167
49172
|
], LexerDFASerializer);
|
|
49168
49173
|
exports.LexerDFASerializer = LexerDFASerializer;
|
|
49169
49174
|
|
|
49170
|
-
},{"../Decorators":
|
|
49175
|
+
},{"../Decorators":199,"../VocabularyImpl":230,"./DFASerializer":298}],301:[function(require,module,exports){
|
|
49171
49176
|
"use strict";
|
|
49172
49177
|
/*!
|
|
49173
49178
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49233,7 +49238,7 @@ __exportStar(require("./Vocabulary"), exports);
|
|
|
49233
49238
|
__exportStar(require("./VocabularyImpl"), exports);
|
|
49234
49239
|
__exportStar(require("./WritableToken"), exports);
|
|
49235
49240
|
|
|
49236
|
-
},{"./ANTLRErrorListener":
|
|
49241
|
+
},{"./ANTLRErrorListener":186,"./ANTLRErrorStrategy":187,"./ANTLRInputStream":188,"./BailErrorStrategy":189,"./BufferedTokenStream":190,"./CharStream":191,"./CharStreams":192,"./CodePointBuffer":193,"./CodePointCharStream":194,"./CommonToken":195,"./CommonTokenFactory":196,"./CommonTokenStream":197,"./ConsoleErrorListener":198,"./DefaultErrorStrategy":200,"./Dependents":201,"./DiagnosticErrorListener":202,"./FailedPredicateException":203,"./InputMismatchException":204,"./IntStream":205,"./InterpreterRuleContext":206,"./Lexer":207,"./LexerInterpreter":208,"./LexerNoViableAltException":209,"./ListTokenSource":210,"./NoViableAltException":211,"./Parser":212,"./ParserErrorListener":213,"./ParserInterpreter":214,"./ParserRuleContext":215,"./ProxyErrorListener":216,"./ProxyParserErrorListener":217,"./RecognitionException":218,"./Recognizer":219,"./RuleContext":220,"./RuleContextWithAltNum":221,"./RuleDependency":222,"./RuleVersion":223,"./Token":224,"./TokenFactory":225,"./TokenSource":226,"./TokenStream":227,"./TokenStreamRewriter":228,"./Vocabulary":229,"./VocabularyImpl":230,"./WritableToken":231}],302:[function(require,module,exports){
|
|
49237
49242
|
"use strict";
|
|
49238
49243
|
/*!
|
|
49239
49244
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49316,7 +49321,7 @@ class Array2DHashMap {
|
|
|
49316
49321
|
}
|
|
49317
49322
|
exports.Array2DHashMap = Array2DHashMap;
|
|
49318
49323
|
|
|
49319
|
-
},{"./Array2DHashSet":
|
|
49324
|
+
},{"./Array2DHashSet":303}],303:[function(require,module,exports){
|
|
49320
49325
|
"use strict";
|
|
49321
49326
|
/*!
|
|
49322
49327
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49683,7 +49688,7 @@ __decorate([
|
|
|
49683
49688
|
], Array2DHashSet.prototype, "createBuckets", null);
|
|
49684
49689
|
exports.Array2DHashSet = Array2DHashSet;
|
|
49685
49690
|
|
|
49686
|
-
},{"../Decorators":
|
|
49691
|
+
},{"../Decorators":199,"./DefaultEqualityComparator":308,"./MurmurHash":314,"assert":342}],304:[function(require,module,exports){
|
|
49687
49692
|
"use strict";
|
|
49688
49693
|
/*!
|
|
49689
49694
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49755,7 +49760,7 @@ __decorate([
|
|
|
49755
49760
|
], ArrayEqualityComparator.prototype, "equals", null);
|
|
49756
49761
|
exports.ArrayEqualityComparator = ArrayEqualityComparator;
|
|
49757
49762
|
|
|
49758
|
-
},{"../Decorators":
|
|
49763
|
+
},{"../Decorators":199,"./MurmurHash":314,"./ObjectEqualityComparator":315}],305:[function(require,module,exports){
|
|
49759
49764
|
"use strict";
|
|
49760
49765
|
/*!
|
|
49761
49766
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49825,7 +49830,7 @@ var Arrays;
|
|
|
49825
49830
|
Arrays.toString = toString;
|
|
49826
49831
|
})(Arrays = exports.Arrays || (exports.Arrays = {}));
|
|
49827
49832
|
|
|
49828
|
-
},{}],
|
|
49833
|
+
},{}],306:[function(require,module,exports){
|
|
49829
49834
|
"use strict";
|
|
49830
49835
|
/*!
|
|
49831
49836
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50497,7 +50502,7 @@ class BitSetIterator {
|
|
|
50497
50502
|
[Symbol.iterator]() { return this; }
|
|
50498
50503
|
}
|
|
50499
50504
|
|
|
50500
|
-
},{"./MurmurHash":
|
|
50505
|
+
},{"./MurmurHash":314,"util":406}],307:[function(require,module,exports){
|
|
50501
50506
|
"use strict";
|
|
50502
50507
|
/*!
|
|
50503
50508
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50518,7 +50523,7 @@ function isSupplementaryCodePoint(ch) {
|
|
|
50518
50523
|
}
|
|
50519
50524
|
exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
|
|
50520
50525
|
|
|
50521
|
-
},{}],
|
|
50526
|
+
},{}],308:[function(require,module,exports){
|
|
50522
50527
|
"use strict";
|
|
50523
50528
|
/*!
|
|
50524
50529
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50589,7 +50594,7 @@ __decorate([
|
|
|
50589
50594
|
], DefaultEqualityComparator.prototype, "equals", null);
|
|
50590
50595
|
exports.DefaultEqualityComparator = DefaultEqualityComparator;
|
|
50591
50596
|
|
|
50592
|
-
},{"../Decorators":
|
|
50597
|
+
},{"../Decorators":199,"./MurmurHash":314,"./ObjectEqualityComparator":315}],309:[function(require,module,exports){
|
|
50593
50598
|
"use strict";
|
|
50594
50599
|
/*!
|
|
50595
50600
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50883,7 +50888,7 @@ __decorate([
|
|
|
50883
50888
|
], IntegerList.prototype, "toString", null);
|
|
50884
50889
|
exports.IntegerList = IntegerList;
|
|
50885
50890
|
|
|
50886
|
-
},{"../Decorators":
|
|
50891
|
+
},{"../Decorators":199,"./Arrays":305}],310:[function(require,module,exports){
|
|
50887
50892
|
"use strict";
|
|
50888
50893
|
/*!
|
|
50889
50894
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50913,7 +50918,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
|
|
|
50913
50918
|
}
|
|
50914
50919
|
exports.IntegerStack = IntegerStack;
|
|
50915
50920
|
|
|
50916
|
-
},{"./IntegerList":
|
|
50921
|
+
},{"./IntegerList":309}],311:[function(require,module,exports){
|
|
50917
50922
|
"use strict";
|
|
50918
50923
|
/*!
|
|
50919
50924
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51056,7 +51061,7 @@ __decorate([
|
|
|
51056
51061
|
], Interval.prototype, "toString", null);
|
|
51057
51062
|
exports.Interval = Interval;
|
|
51058
51063
|
|
|
51059
|
-
},{"../Decorators":
|
|
51064
|
+
},{"../Decorators":199}],312:[function(require,module,exports){
|
|
51060
51065
|
"use strict";
|
|
51061
51066
|
/*!
|
|
51062
51067
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51702,7 +51707,7 @@ __decorate([
|
|
|
51702
51707
|
], IntervalSet, "subtract", null);
|
|
51703
51708
|
exports.IntervalSet = IntervalSet;
|
|
51704
51709
|
|
|
51705
|
-
},{"../Decorators":
|
|
51710
|
+
},{"../Decorators":199,"../Lexer":207,"../Token":224,"./ArrayEqualityComparator":304,"./IntegerList":309,"./Interval":311,"./MurmurHash":314}],313:[function(require,module,exports){
|
|
51706
51711
|
"use strict";
|
|
51707
51712
|
/*!
|
|
51708
51713
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51735,7 +51740,7 @@ class MultiMap extends Map {
|
|
|
51735
51740
|
}
|
|
51736
51741
|
exports.MultiMap = MultiMap;
|
|
51737
51742
|
|
|
51738
|
-
},{}],
|
|
51743
|
+
},{}],314:[function(require,module,exports){
|
|
51739
51744
|
"use strict";
|
|
51740
51745
|
/*!
|
|
51741
51746
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51850,7 +51855,7 @@ var MurmurHash;
|
|
|
51850
51855
|
}
|
|
51851
51856
|
})(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
|
|
51852
51857
|
|
|
51853
|
-
},{}],
|
|
51858
|
+
},{}],315:[function(require,module,exports){
|
|
51854
51859
|
"use strict";
|
|
51855
51860
|
/*!
|
|
51856
51861
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51909,7 +51914,7 @@ __decorate([
|
|
|
51909
51914
|
], ObjectEqualityComparator.prototype, "equals", null);
|
|
51910
51915
|
exports.ObjectEqualityComparator = ObjectEqualityComparator;
|
|
51911
51916
|
|
|
51912
|
-
},{"../Decorators":
|
|
51917
|
+
},{"../Decorators":199}],316:[function(require,module,exports){
|
|
51913
51918
|
"use strict";
|
|
51914
51919
|
/*!
|
|
51915
51920
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51938,7 +51943,7 @@ class ParseCancellationException extends Error {
|
|
|
51938
51943
|
}
|
|
51939
51944
|
exports.ParseCancellationException = ParseCancellationException;
|
|
51940
51945
|
|
|
51941
|
-
},{}],
|
|
51946
|
+
},{}],317:[function(require,module,exports){
|
|
51942
51947
|
"use strict";
|
|
51943
51948
|
/*!
|
|
51944
51949
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51992,7 +51997,7 @@ class UUID {
|
|
|
51992
51997
|
}
|
|
51993
51998
|
exports.UUID = UUID;
|
|
51994
51999
|
|
|
51995
|
-
},{"./MurmurHash":
|
|
52000
|
+
},{"./MurmurHash":314}],318:[function(require,module,exports){
|
|
51996
52001
|
"use strict";
|
|
51997
52002
|
/*!
|
|
51998
52003
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52167,7 +52172,7 @@ exports.toCharArray = toCharArray;
|
|
|
52167
52172
|
// return s;
|
|
52168
52173
|
// }
|
|
52169
52174
|
|
|
52170
|
-
},{}],
|
|
52175
|
+
},{}],319:[function(require,module,exports){
|
|
52171
52176
|
"use strict";
|
|
52172
52177
|
/*!
|
|
52173
52178
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52203,7 +52208,7 @@ __decorate([
|
|
|
52203
52208
|
], ErrorNode.prototype, "accept", null);
|
|
52204
52209
|
exports.ErrorNode = ErrorNode;
|
|
52205
52210
|
|
|
52206
|
-
},{"../Decorators":
|
|
52211
|
+
},{"../Decorators":199,"./TerminalNode":322}],320:[function(require,module,exports){
|
|
52207
52212
|
"use strict";
|
|
52208
52213
|
/*!
|
|
52209
52214
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52308,7 +52313,7 @@ exports.ParseTreeWalker = ParseTreeWalker;
|
|
|
52308
52313
|
ParseTreeWalker.DEFAULT = new ParseTreeWalker();
|
|
52309
52314
|
})(ParseTreeWalker = exports.ParseTreeWalker || (exports.ParseTreeWalker = {}));
|
|
52310
52315
|
|
|
52311
|
-
},{"./ErrorNode":
|
|
52316
|
+
},{"./ErrorNode":319,"./RuleNode":321,"./TerminalNode":322}],321:[function(require,module,exports){
|
|
52312
52317
|
"use strict";
|
|
52313
52318
|
/*!
|
|
52314
52319
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52320,7 +52325,7 @@ class RuleNode {
|
|
|
52320
52325
|
}
|
|
52321
52326
|
exports.RuleNode = RuleNode;
|
|
52322
52327
|
|
|
52323
|
-
},{}],
|
|
52328
|
+
},{}],322:[function(require,module,exports){
|
|
52324
52329
|
"use strict";
|
|
52325
52330
|
/*!
|
|
52326
52331
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52412,7 +52417,7 @@ __decorate([
|
|
|
52412
52417
|
], TerminalNode.prototype, "toString", null);
|
|
52413
52418
|
exports.TerminalNode = TerminalNode;
|
|
52414
52419
|
|
|
52415
|
-
},{"../Decorators":
|
|
52420
|
+
},{"../Decorators":199,"../Token":224,"../misc/Interval":311}],323:[function(require,module,exports){
|
|
52416
52421
|
"use strict";
|
|
52417
52422
|
/*!
|
|
52418
52423
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52656,7 +52661,7 @@ __decorate([
|
|
|
52656
52661
|
], Trees, "getRootOfSubtreeEnclosingRegion", null);
|
|
52657
52662
|
exports.Trees = Trees;
|
|
52658
52663
|
|
|
52659
|
-
},{"../CommonToken":
|
|
52664
|
+
},{"../CommonToken":195,"../Decorators":199,"../Parser":212,"../ParserRuleContext":215,"../Token":224,"../atn/ATN":232,"../misc/Utils":318,"./ErrorNode":319,"./RuleNode":321,"./TerminalNode":322}],324:[function(require,module,exports){
|
|
52660
52665
|
"use strict";
|
|
52661
52666
|
/*!
|
|
52662
52667
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52680,7 +52685,7 @@ class Chunk {
|
|
|
52680
52685
|
}
|
|
52681
52686
|
exports.Chunk = Chunk;
|
|
52682
52687
|
|
|
52683
|
-
},{}],
|
|
52688
|
+
},{}],325:[function(require,module,exports){
|
|
52684
52689
|
"use strict";
|
|
52685
52690
|
/*!
|
|
52686
52691
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52860,7 +52865,7 @@ ParseTreeMatch = __decorate([
|
|
|
52860
52865
|
], ParseTreeMatch);
|
|
52861
52866
|
exports.ParseTreeMatch = ParseTreeMatch;
|
|
52862
52867
|
|
|
52863
|
-
},{"../../Decorators":
|
|
52868
|
+
},{"../../Decorators":199}],326:[function(require,module,exports){
|
|
52864
52869
|
"use strict";
|
|
52865
52870
|
/*!
|
|
52866
52871
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53018,7 +53023,7 @@ ParseTreePattern = __decorate([
|
|
|
53018
53023
|
], ParseTreePattern);
|
|
53019
53024
|
exports.ParseTreePattern = ParseTreePattern;
|
|
53020
53025
|
|
|
53021
|
-
},{"../../Decorators":
|
|
53026
|
+
},{"../../Decorators":199,"../xpath/XPath":332}],327:[function(require,module,exports){
|
|
53022
53027
|
"use strict";
|
|
53023
53028
|
/*!
|
|
53024
53029
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53496,7 +53501,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
|
|
|
53496
53501
|
ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
|
|
53497
53502
|
})(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
|
|
53498
53503
|
|
|
53499
|
-
},{"../../BailErrorStrategy":
|
|
53504
|
+
},{"../../BailErrorStrategy":189,"../../CharStreams":192,"../../CommonTokenStream":197,"../../Decorators":199,"../../ListTokenSource":210,"../../ParserInterpreter":214,"../../ParserRuleContext":215,"../../RecognitionException":218,"../../Token":224,"../../misc/MultiMap":313,"../../misc/ParseCancellationException":316,"../RuleNode":321,"../TerminalNode":322,"./ParseTreeMatch":325,"./ParseTreePattern":326,"./RuleTagToken":328,"./TagChunk":329,"./TextChunk":330,"./TokenTagToken":331}],328:[function(require,module,exports){
|
|
53500
53505
|
"use strict";
|
|
53501
53506
|
/*!
|
|
53502
53507
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53694,7 +53699,7 @@ RuleTagToken = __decorate([
|
|
|
53694
53699
|
], RuleTagToken);
|
|
53695
53700
|
exports.RuleTagToken = RuleTagToken;
|
|
53696
53701
|
|
|
53697
|
-
},{"../../Decorators":
|
|
53702
|
+
},{"../../Decorators":199,"../../Token":224}],329:[function(require,module,exports){
|
|
53698
53703
|
"use strict";
|
|
53699
53704
|
/*!
|
|
53700
53705
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53781,7 +53786,7 @@ __decorate([
|
|
|
53781
53786
|
], TagChunk.prototype, "toString", null);
|
|
53782
53787
|
exports.TagChunk = TagChunk;
|
|
53783
53788
|
|
|
53784
|
-
},{"../../Decorators":
|
|
53789
|
+
},{"../../Decorators":199,"./Chunk":324}],330:[function(require,module,exports){
|
|
53785
53790
|
"use strict";
|
|
53786
53791
|
/*!
|
|
53787
53792
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53851,7 +53856,7 @@ TextChunk = __decorate([
|
|
|
53851
53856
|
], TextChunk);
|
|
53852
53857
|
exports.TextChunk = TextChunk;
|
|
53853
53858
|
|
|
53854
|
-
},{"../../Decorators":
|
|
53859
|
+
},{"../../Decorators":199,"./Chunk":324}],331:[function(require,module,exports){
|
|
53855
53860
|
"use strict";
|
|
53856
53861
|
/*!
|
|
53857
53862
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53946,7 +53951,7 @@ TokenTagToken = __decorate([
|
|
|
53946
53951
|
], TokenTagToken);
|
|
53947
53952
|
exports.TokenTagToken = TokenTagToken;
|
|
53948
53953
|
|
|
53949
|
-
},{"../../CommonToken":
|
|
53954
|
+
},{"../../CommonToken":195,"../../Decorators":199}],332:[function(require,module,exports){
|
|
53950
53955
|
"use strict";
|
|
53951
53956
|
/*!
|
|
53952
53957
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54143,7 +54148,7 @@ exports.XPath = XPath;
|
|
|
54143
54148
|
XPath.WILDCARD = "*"; // word not operator/separator
|
|
54144
54149
|
XPath.NOT = "!"; // word for invert operator
|
|
54145
54150
|
|
|
54146
|
-
},{"../../CharStreams":
|
|
54151
|
+
},{"../../CharStreams":192,"../../CommonTokenStream":197,"../../LexerNoViableAltException":209,"../../ParserRuleContext":215,"../../Token":224,"./XPathLexer":334,"./XPathLexerErrorListener":335,"./XPathRuleAnywhereElement":336,"./XPathRuleElement":337,"./XPathTokenAnywhereElement":338,"./XPathTokenElement":339,"./XPathWildcardAnywhereElement":340,"./XPathWildcardElement":341}],333:[function(require,module,exports){
|
|
54147
54152
|
"use strict";
|
|
54148
54153
|
/*!
|
|
54149
54154
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54178,7 +54183,7 @@ __decorate([
|
|
|
54178
54183
|
], XPathElement.prototype, "toString", null);
|
|
54179
54184
|
exports.XPathElement = XPathElement;
|
|
54180
54185
|
|
|
54181
|
-
},{"../../Decorators":
|
|
54186
|
+
},{"../../Decorators":199}],334:[function(require,module,exports){
|
|
54182
54187
|
"use strict";
|
|
54183
54188
|
// Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
54184
54189
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -54653,7 +54658,7 @@ XPathLexer._serializedATN = Utils.join([
|
|
|
54653
54658
|
XPathLexer._serializedATNSegment1,
|
|
54654
54659
|
], "");
|
|
54655
54660
|
|
|
54656
|
-
},{"../../Lexer":
|
|
54661
|
+
},{"../../Lexer":207,"../../VocabularyImpl":230,"../../atn/ATNDeserializer":236,"../../atn/LexerATNSimulator":257,"../../misc/Utils":318}],335:[function(require,module,exports){
|
|
54657
54662
|
"use strict";
|
|
54658
54663
|
/*!
|
|
54659
54664
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54678,7 +54683,7 @@ __decorate([
|
|
|
54678
54683
|
], XPathLexerErrorListener.prototype, "syntaxError", null);
|
|
54679
54684
|
exports.XPathLexerErrorListener = XPathLexerErrorListener;
|
|
54680
54685
|
|
|
54681
|
-
},{"../../Decorators":
|
|
54686
|
+
},{"../../Decorators":199}],336:[function(require,module,exports){
|
|
54682
54687
|
"use strict";
|
|
54683
54688
|
/*!
|
|
54684
54689
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54712,7 +54717,7 @@ __decorate([
|
|
|
54712
54717
|
], XPathRuleAnywhereElement.prototype, "evaluate", null);
|
|
54713
54718
|
exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
|
|
54714
54719
|
|
|
54715
|
-
},{"../../Decorators":
|
|
54720
|
+
},{"../../Decorators":199,"../Trees":323,"./XPathElement":333}],337:[function(require,module,exports){
|
|
54716
54721
|
"use strict";
|
|
54717
54722
|
/*!
|
|
54718
54723
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54755,7 +54760,7 @@ __decorate([
|
|
|
54755
54760
|
], XPathRuleElement.prototype, "evaluate", null);
|
|
54756
54761
|
exports.XPathRuleElement = XPathRuleElement;
|
|
54757
54762
|
|
|
54758
|
-
},{"../../Decorators":
|
|
54763
|
+
},{"../../Decorators":199,"../../ParserRuleContext":215,"../Trees":323,"./XPathElement":333}],338:[function(require,module,exports){
|
|
54759
54764
|
"use strict";
|
|
54760
54765
|
/*!
|
|
54761
54766
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54787,7 +54792,7 @@ __decorate([
|
|
|
54787
54792
|
], XPathTokenAnywhereElement.prototype, "evaluate", null);
|
|
54788
54793
|
exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
|
|
54789
54794
|
|
|
54790
|
-
},{"../../Decorators":
|
|
54795
|
+
},{"../../Decorators":199,"../Trees":323,"./XPathElement":333}],339:[function(require,module,exports){
|
|
54791
54796
|
"use strict";
|
|
54792
54797
|
/*!
|
|
54793
54798
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54830,7 +54835,7 @@ __decorate([
|
|
|
54830
54835
|
], XPathTokenElement.prototype, "evaluate", null);
|
|
54831
54836
|
exports.XPathTokenElement = XPathTokenElement;
|
|
54832
54837
|
|
|
54833
|
-
},{"../../Decorators":
|
|
54838
|
+
},{"../../Decorators":199,"../TerminalNode":322,"../Trees":323,"./XPathElement":333}],340:[function(require,module,exports){
|
|
54834
54839
|
"use strict";
|
|
54835
54840
|
/*!
|
|
54836
54841
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54866,7 +54871,7 @@ __decorate([
|
|
|
54866
54871
|
], XPathWildcardAnywhereElement.prototype, "evaluate", null);
|
|
54867
54872
|
exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
|
|
54868
54873
|
|
|
54869
|
-
},{"../../Decorators":
|
|
54874
|
+
},{"../../Decorators":199,"../Trees":323,"./XPath":332,"./XPathElement":333}],341:[function(require,module,exports){
|
|
54870
54875
|
"use strict";
|
|
54871
54876
|
/*!
|
|
54872
54877
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54906,7 +54911,7 @@ __decorate([
|
|
|
54906
54911
|
], XPathWildcardElement.prototype, "evaluate", null);
|
|
54907
54912
|
exports.XPathWildcardElement = XPathWildcardElement;
|
|
54908
54913
|
|
|
54909
|
-
},{"../../Decorators":
|
|
54914
|
+
},{"../../Decorators":199,"../Trees":323,"./XPath":332,"./XPathElement":333}],342:[function(require,module,exports){
|
|
54910
54915
|
(function (global){(function (){
|
|
54911
54916
|
'use strict';
|
|
54912
54917
|
|
|
@@ -55416,7 +55421,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
55416
55421
|
};
|
|
55417
55422
|
|
|
55418
55423
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
55419
|
-
},{"object.assign/polyfill":
|
|
55424
|
+
},{"object.assign/polyfill":399,"util/":345}],343:[function(require,module,exports){
|
|
55420
55425
|
if (typeof Object.create === 'function') {
|
|
55421
55426
|
// implementation from standard node.js 'util' module
|
|
55422
55427
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -55441,14 +55446,14 @@ if (typeof Object.create === 'function') {
|
|
|
55441
55446
|
}
|
|
55442
55447
|
}
|
|
55443
55448
|
|
|
55444
|
-
},{}],
|
|
55449
|
+
},{}],344:[function(require,module,exports){
|
|
55445
55450
|
module.exports = function isBuffer(arg) {
|
|
55446
55451
|
return arg && typeof arg === 'object'
|
|
55447
55452
|
&& typeof arg.copy === 'function'
|
|
55448
55453
|
&& typeof arg.fill === 'function'
|
|
55449
55454
|
&& typeof arg.readUInt8 === 'function';
|
|
55450
55455
|
}
|
|
55451
|
-
},{}],
|
|
55456
|
+
},{}],345:[function(require,module,exports){
|
|
55452
55457
|
(function (process,global){(function (){
|
|
55453
55458
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
55454
55459
|
//
|
|
@@ -56038,7 +56043,7 @@ function hasOwnProperty(obj, prop) {
|
|
|
56038
56043
|
}
|
|
56039
56044
|
|
|
56040
56045
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
56041
|
-
},{"./support/isBuffer":
|
|
56046
|
+
},{"./support/isBuffer":344,"_process":401,"inherits":343}],346:[function(require,module,exports){
|
|
56042
56047
|
(function (global){(function (){
|
|
56043
56048
|
'use strict';
|
|
56044
56049
|
|
|
@@ -56059,7 +56064,7 @@ module.exports = function availableTypedArrays() {
|
|
|
56059
56064
|
};
|
|
56060
56065
|
|
|
56061
56066
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
56062
|
-
},{"possible-typed-array-names":
|
|
56067
|
+
},{"possible-typed-array-names":400}],347:[function(require,module,exports){
|
|
56063
56068
|
(function (process,global){(function (){
|
|
56064
56069
|
module.exports = process.hrtime || hrtime
|
|
56065
56070
|
|
|
@@ -56090,7 +56095,7 @@ function hrtime(previousTimestamp){
|
|
|
56090
56095
|
return [seconds,nanoseconds]
|
|
56091
56096
|
}
|
|
56092
56097
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
56093
|
-
},{"_process":
|
|
56098
|
+
},{"_process":401}],348:[function(require,module,exports){
|
|
56094
56099
|
'use strict';
|
|
56095
56100
|
|
|
56096
56101
|
var bind = require('function-bind');
|
|
@@ -56102,7 +56107,7 @@ var $reflectApply = require('./reflectApply');
|
|
|
56102
56107
|
/** @type {import('./actualApply')} */
|
|
56103
56108
|
module.exports = $reflectApply || bind.call($call, $apply);
|
|
56104
56109
|
|
|
56105
|
-
},{"./functionApply":
|
|
56110
|
+
},{"./functionApply":350,"./functionCall":351,"./reflectApply":353,"function-bind":369}],349:[function(require,module,exports){
|
|
56106
56111
|
'use strict';
|
|
56107
56112
|
|
|
56108
56113
|
var bind = require('function-bind');
|
|
@@ -56114,19 +56119,19 @@ module.exports = function applyBind() {
|
|
|
56114
56119
|
return actualApply(bind, $apply, arguments);
|
|
56115
56120
|
};
|
|
56116
56121
|
|
|
56117
|
-
},{"./actualApply":
|
|
56122
|
+
},{"./actualApply":348,"./functionApply":350,"function-bind":369}],350:[function(require,module,exports){
|
|
56118
56123
|
'use strict';
|
|
56119
56124
|
|
|
56120
56125
|
/** @type {import('./functionApply')} */
|
|
56121
56126
|
module.exports = Function.prototype.apply;
|
|
56122
56127
|
|
|
56123
|
-
},{}],
|
|
56128
|
+
},{}],351:[function(require,module,exports){
|
|
56124
56129
|
'use strict';
|
|
56125
56130
|
|
|
56126
56131
|
/** @type {import('./functionCall')} */
|
|
56127
56132
|
module.exports = Function.prototype.call;
|
|
56128
56133
|
|
|
56129
|
-
},{}],
|
|
56134
|
+
},{}],352:[function(require,module,exports){
|
|
56130
56135
|
'use strict';
|
|
56131
56136
|
|
|
56132
56137
|
var bind = require('function-bind');
|
|
@@ -56143,13 +56148,13 @@ module.exports = function callBindBasic(args) {
|
|
|
56143
56148
|
return $actualApply(bind, $call, args);
|
|
56144
56149
|
};
|
|
56145
56150
|
|
|
56146
|
-
},{"./actualApply":
|
|
56151
|
+
},{"./actualApply":348,"./functionCall":351,"es-errors/type":364,"function-bind":369}],353:[function(require,module,exports){
|
|
56147
56152
|
'use strict';
|
|
56148
56153
|
|
|
56149
56154
|
/** @type {import('./reflectApply')} */
|
|
56150
56155
|
module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
|
|
56151
56156
|
|
|
56152
|
-
},{}],
|
|
56157
|
+
},{}],354:[function(require,module,exports){
|
|
56153
56158
|
'use strict';
|
|
56154
56159
|
|
|
56155
56160
|
var setFunctionLength = require('set-function-length');
|
|
@@ -56175,7 +56180,7 @@ if ($defineProperty) {
|
|
|
56175
56180
|
module.exports.apply = applyBind;
|
|
56176
56181
|
}
|
|
56177
56182
|
|
|
56178
|
-
},{"call-bind-apply-helpers":
|
|
56183
|
+
},{"call-bind-apply-helpers":352,"call-bind-apply-helpers/applyBind":349,"es-define-property":358,"set-function-length":403}],355:[function(require,module,exports){
|
|
56179
56184
|
'use strict';
|
|
56180
56185
|
|
|
56181
56186
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -56196,7 +56201,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
56196
56201
|
return intrinsic;
|
|
56197
56202
|
};
|
|
56198
56203
|
|
|
56199
|
-
},{"call-bind-apply-helpers":
|
|
56204
|
+
},{"call-bind-apply-helpers":352,"get-intrinsic":370}],356:[function(require,module,exports){
|
|
56200
56205
|
'use strict';
|
|
56201
56206
|
|
|
56202
56207
|
var $defineProperty = require('es-define-property');
|
|
@@ -56254,7 +56259,7 @@ module.exports = function defineDataProperty(
|
|
|
56254
56259
|
}
|
|
56255
56260
|
};
|
|
56256
56261
|
|
|
56257
|
-
},{"es-define-property":
|
|
56262
|
+
},{"es-define-property":358,"es-errors/syntax":363,"es-errors/type":364,"gopd":375}],357:[function(require,module,exports){
|
|
56258
56263
|
'use strict';
|
|
56259
56264
|
|
|
56260
56265
|
var callBind = require('call-bind-apply-helpers');
|
|
@@ -56286,7 +56291,7 @@ module.exports = desc && typeof desc.get === 'function'
|
|
|
56286
56291
|
}
|
|
56287
56292
|
: false;
|
|
56288
56293
|
|
|
56289
|
-
},{"call-bind-apply-helpers":
|
|
56294
|
+
},{"call-bind-apply-helpers":352,"gopd":375}],358:[function(require,module,exports){
|
|
56290
56295
|
'use strict';
|
|
56291
56296
|
|
|
56292
56297
|
/** @type {import('.')} */
|
|
@@ -56302,55 +56307,55 @@ if ($defineProperty) {
|
|
|
56302
56307
|
|
|
56303
56308
|
module.exports = $defineProperty;
|
|
56304
56309
|
|
|
56305
|
-
},{}],
|
|
56310
|
+
},{}],359:[function(require,module,exports){
|
|
56306
56311
|
'use strict';
|
|
56307
56312
|
|
|
56308
56313
|
/** @type {import('./eval')} */
|
|
56309
56314
|
module.exports = EvalError;
|
|
56310
56315
|
|
|
56311
|
-
},{}],
|
|
56316
|
+
},{}],360:[function(require,module,exports){
|
|
56312
56317
|
'use strict';
|
|
56313
56318
|
|
|
56314
56319
|
/** @type {import('.')} */
|
|
56315
56320
|
module.exports = Error;
|
|
56316
56321
|
|
|
56317
|
-
},{}],
|
|
56322
|
+
},{}],361:[function(require,module,exports){
|
|
56318
56323
|
'use strict';
|
|
56319
56324
|
|
|
56320
56325
|
/** @type {import('./range')} */
|
|
56321
56326
|
module.exports = RangeError;
|
|
56322
56327
|
|
|
56323
|
-
},{}],
|
|
56328
|
+
},{}],362:[function(require,module,exports){
|
|
56324
56329
|
'use strict';
|
|
56325
56330
|
|
|
56326
56331
|
/** @type {import('./ref')} */
|
|
56327
56332
|
module.exports = ReferenceError;
|
|
56328
56333
|
|
|
56329
|
-
},{}],
|
|
56334
|
+
},{}],363:[function(require,module,exports){
|
|
56330
56335
|
'use strict';
|
|
56331
56336
|
|
|
56332
56337
|
/** @type {import('./syntax')} */
|
|
56333
56338
|
module.exports = SyntaxError;
|
|
56334
56339
|
|
|
56335
|
-
},{}],
|
|
56340
|
+
},{}],364:[function(require,module,exports){
|
|
56336
56341
|
'use strict';
|
|
56337
56342
|
|
|
56338
56343
|
/** @type {import('./type')} */
|
|
56339
56344
|
module.exports = TypeError;
|
|
56340
56345
|
|
|
56341
|
-
},{}],
|
|
56346
|
+
},{}],365:[function(require,module,exports){
|
|
56342
56347
|
'use strict';
|
|
56343
56348
|
|
|
56344
56349
|
/** @type {import('./uri')} */
|
|
56345
56350
|
module.exports = URIError;
|
|
56346
56351
|
|
|
56347
|
-
},{}],
|
|
56352
|
+
},{}],366:[function(require,module,exports){
|
|
56348
56353
|
'use strict';
|
|
56349
56354
|
|
|
56350
56355
|
/** @type {import('.')} */
|
|
56351
56356
|
module.exports = Object;
|
|
56352
56357
|
|
|
56353
|
-
},{}],
|
|
56358
|
+
},{}],367:[function(require,module,exports){
|
|
56354
56359
|
'use strict';
|
|
56355
56360
|
|
|
56356
56361
|
var isCallable = require('is-callable');
|
|
@@ -56421,7 +56426,7 @@ module.exports = function forEach(list, iterator, thisArg) {
|
|
|
56421
56426
|
}
|
|
56422
56427
|
};
|
|
56423
56428
|
|
|
56424
|
-
},{"is-callable":
|
|
56429
|
+
},{"is-callable":383}],368:[function(require,module,exports){
|
|
56425
56430
|
'use strict';
|
|
56426
56431
|
|
|
56427
56432
|
/* eslint no-invalid-this: 1 */
|
|
@@ -56507,14 +56512,14 @@ module.exports = function bind(that) {
|
|
|
56507
56512
|
return bound;
|
|
56508
56513
|
};
|
|
56509
56514
|
|
|
56510
|
-
},{}],
|
|
56515
|
+
},{}],369:[function(require,module,exports){
|
|
56511
56516
|
'use strict';
|
|
56512
56517
|
|
|
56513
56518
|
var implementation = require('./implementation');
|
|
56514
56519
|
|
|
56515
56520
|
module.exports = Function.prototype.bind || implementation;
|
|
56516
56521
|
|
|
56517
|
-
},{"./implementation":
|
|
56522
|
+
},{"./implementation":368}],370:[function(require,module,exports){
|
|
56518
56523
|
'use strict';
|
|
56519
56524
|
|
|
56520
56525
|
var undefined;
|
|
@@ -56894,7 +56899,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
56894
56899
|
return value;
|
|
56895
56900
|
};
|
|
56896
56901
|
|
|
56897
|
-
},{"call-bind-apply-helpers/functionApply":
|
|
56902
|
+
},{"call-bind-apply-helpers/functionApply":350,"call-bind-apply-helpers/functionCall":351,"es-define-property":358,"es-errors":360,"es-errors/eval":359,"es-errors/range":361,"es-errors/ref":362,"es-errors/syntax":363,"es-errors/type":364,"es-errors/uri":365,"es-object-atoms":366,"function-bind":369,"get-proto":373,"get-proto/Object.getPrototypeOf":371,"get-proto/Reflect.getPrototypeOf":372,"gopd":375,"has-symbols":377,"hasown":380,"math-intrinsics/abs":387,"math-intrinsics/floor":388,"math-intrinsics/max":390,"math-intrinsics/min":391,"math-intrinsics/pow":392,"math-intrinsics/round":393,"math-intrinsics/sign":394}],371:[function(require,module,exports){
|
|
56898
56903
|
'use strict';
|
|
56899
56904
|
|
|
56900
56905
|
var $Object = require('es-object-atoms');
|
|
@@ -56902,13 +56907,13 @@ var $Object = require('es-object-atoms');
|
|
|
56902
56907
|
/** @type {import('./Object.getPrototypeOf')} */
|
|
56903
56908
|
module.exports = $Object.getPrototypeOf || null;
|
|
56904
56909
|
|
|
56905
|
-
},{"es-object-atoms":
|
|
56910
|
+
},{"es-object-atoms":366}],372:[function(require,module,exports){
|
|
56906
56911
|
'use strict';
|
|
56907
56912
|
|
|
56908
56913
|
/** @type {import('./Reflect.getPrototypeOf')} */
|
|
56909
56914
|
module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
|
|
56910
56915
|
|
|
56911
|
-
},{}],
|
|
56916
|
+
},{}],373:[function(require,module,exports){
|
|
56912
56917
|
'use strict';
|
|
56913
56918
|
|
|
56914
56919
|
var reflectGetProto = require('./Reflect.getPrototypeOf');
|
|
@@ -56937,13 +56942,13 @@ module.exports = reflectGetProto
|
|
|
56937
56942
|
}
|
|
56938
56943
|
: null;
|
|
56939
56944
|
|
|
56940
|
-
},{"./Object.getPrototypeOf":
|
|
56945
|
+
},{"./Object.getPrototypeOf":371,"./Reflect.getPrototypeOf":372,"dunder-proto/get":357}],374:[function(require,module,exports){
|
|
56941
56946
|
'use strict';
|
|
56942
56947
|
|
|
56943
56948
|
/** @type {import('./gOPD')} */
|
|
56944
56949
|
module.exports = Object.getOwnPropertyDescriptor;
|
|
56945
56950
|
|
|
56946
|
-
},{}],
|
|
56951
|
+
},{}],375:[function(require,module,exports){
|
|
56947
56952
|
'use strict';
|
|
56948
56953
|
|
|
56949
56954
|
/** @type {import('.')} */
|
|
@@ -56960,7 +56965,7 @@ if ($gOPD) {
|
|
|
56960
56965
|
|
|
56961
56966
|
module.exports = $gOPD;
|
|
56962
56967
|
|
|
56963
|
-
},{"./gOPD":
|
|
56968
|
+
},{"./gOPD":374}],376:[function(require,module,exports){
|
|
56964
56969
|
'use strict';
|
|
56965
56970
|
|
|
56966
56971
|
var $defineProperty = require('es-define-property');
|
|
@@ -56984,7 +56989,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
|
|
|
56984
56989
|
|
|
56985
56990
|
module.exports = hasPropertyDescriptors;
|
|
56986
56991
|
|
|
56987
|
-
},{"es-define-property":
|
|
56992
|
+
},{"es-define-property":358}],377:[function(require,module,exports){
|
|
56988
56993
|
'use strict';
|
|
56989
56994
|
|
|
56990
56995
|
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
|
@@ -57000,7 +57005,7 @@ module.exports = function hasNativeSymbols() {
|
|
|
57000
57005
|
return hasSymbolSham();
|
|
57001
57006
|
};
|
|
57002
57007
|
|
|
57003
|
-
},{"./shams":
|
|
57008
|
+
},{"./shams":378}],378:[function(require,module,exports){
|
|
57004
57009
|
'use strict';
|
|
57005
57010
|
|
|
57006
57011
|
/** @type {import('./shams')} */
|
|
@@ -57047,7 +57052,7 @@ module.exports = function hasSymbols() {
|
|
|
57047
57052
|
return true;
|
|
57048
57053
|
};
|
|
57049
57054
|
|
|
57050
|
-
},{}],
|
|
57055
|
+
},{}],379:[function(require,module,exports){
|
|
57051
57056
|
'use strict';
|
|
57052
57057
|
|
|
57053
57058
|
var hasSymbols = require('has-symbols/shams');
|
|
@@ -57057,7 +57062,7 @@ module.exports = function hasToStringTagShams() {
|
|
|
57057
57062
|
return hasSymbols() && !!Symbol.toStringTag;
|
|
57058
57063
|
};
|
|
57059
57064
|
|
|
57060
|
-
},{"has-symbols/shams":
|
|
57065
|
+
},{"has-symbols/shams":378}],380:[function(require,module,exports){
|
|
57061
57066
|
'use strict';
|
|
57062
57067
|
|
|
57063
57068
|
var call = Function.prototype.call;
|
|
@@ -57067,7 +57072,7 @@ var bind = require('function-bind');
|
|
|
57067
57072
|
/** @type {import('.')} */
|
|
57068
57073
|
module.exports = bind.call(call, $hasOwn);
|
|
57069
57074
|
|
|
57070
|
-
},{"function-bind":
|
|
57075
|
+
},{"function-bind":369}],381:[function(require,module,exports){
|
|
57071
57076
|
if (typeof Object.create === 'function') {
|
|
57072
57077
|
// implementation from standard node.js 'util' module
|
|
57073
57078
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -57096,7 +57101,7 @@ if (typeof Object.create === 'function') {
|
|
|
57096
57101
|
}
|
|
57097
57102
|
}
|
|
57098
57103
|
|
|
57099
|
-
},{}],
|
|
57104
|
+
},{}],382:[function(require,module,exports){
|
|
57100
57105
|
'use strict';
|
|
57101
57106
|
|
|
57102
57107
|
var hasToStringTag = require('has-tostringtag/shams')();
|
|
@@ -57142,7 +57147,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
|
57142
57147
|
/** @type {import('.')} */
|
|
57143
57148
|
module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
57144
57149
|
|
|
57145
|
-
},{"call-bound":
|
|
57150
|
+
},{"call-bound":355,"has-tostringtag/shams":379}],383:[function(require,module,exports){
|
|
57146
57151
|
'use strict';
|
|
57147
57152
|
|
|
57148
57153
|
var fnToStr = Function.prototype.toString;
|
|
@@ -57245,7 +57250,7 @@ module.exports = reflectApply
|
|
|
57245
57250
|
return tryFunctionObject(value);
|
|
57246
57251
|
};
|
|
57247
57252
|
|
|
57248
|
-
},{}],
|
|
57253
|
+
},{}],384:[function(require,module,exports){
|
|
57249
57254
|
'use strict';
|
|
57250
57255
|
|
|
57251
57256
|
var callBound = require('call-bound');
|
|
@@ -57294,7 +57299,7 @@ module.exports = function isGeneratorFunction(fn) {
|
|
|
57294
57299
|
return getProto(fn) === GeneratorFunction;
|
|
57295
57300
|
};
|
|
57296
57301
|
|
|
57297
|
-
},{"call-bound":
|
|
57302
|
+
},{"call-bound":355,"get-proto":373,"has-tostringtag/shams":379,"safe-regex-test":402}],385:[function(require,module,exports){
|
|
57298
57303
|
'use strict';
|
|
57299
57304
|
|
|
57300
57305
|
var callBound = require('call-bound');
|
|
@@ -57365,7 +57370,7 @@ if (hasToStringTag) {
|
|
|
57365
57370
|
|
|
57366
57371
|
module.exports = fn;
|
|
57367
57372
|
|
|
57368
|
-
},{"call-bound":
|
|
57373
|
+
},{"call-bound":355,"gopd":375,"has-tostringtag/shams":379,"hasown":380}],386:[function(require,module,exports){
|
|
57369
57374
|
'use strict';
|
|
57370
57375
|
|
|
57371
57376
|
var whichTypedArray = require('which-typed-array');
|
|
@@ -57375,19 +57380,19 @@ module.exports = function isTypedArray(value) {
|
|
|
57375
57380
|
return !!whichTypedArray(value);
|
|
57376
57381
|
};
|
|
57377
57382
|
|
|
57378
|
-
},{"which-typed-array":
|
|
57383
|
+
},{"which-typed-array":407}],387:[function(require,module,exports){
|
|
57379
57384
|
'use strict';
|
|
57380
57385
|
|
|
57381
57386
|
/** @type {import('./abs')} */
|
|
57382
57387
|
module.exports = Math.abs;
|
|
57383
57388
|
|
|
57384
|
-
},{}],
|
|
57389
|
+
},{}],388:[function(require,module,exports){
|
|
57385
57390
|
'use strict';
|
|
57386
57391
|
|
|
57387
57392
|
/** @type {import('./floor')} */
|
|
57388
57393
|
module.exports = Math.floor;
|
|
57389
57394
|
|
|
57390
|
-
},{}],
|
|
57395
|
+
},{}],389:[function(require,module,exports){
|
|
57391
57396
|
'use strict';
|
|
57392
57397
|
|
|
57393
57398
|
/** @type {import('./isNaN')} */
|
|
@@ -57395,31 +57400,31 @@ module.exports = Number.isNaN || function isNaN(a) {
|
|
|
57395
57400
|
return a !== a;
|
|
57396
57401
|
};
|
|
57397
57402
|
|
|
57398
|
-
},{}],
|
|
57403
|
+
},{}],390:[function(require,module,exports){
|
|
57399
57404
|
'use strict';
|
|
57400
57405
|
|
|
57401
57406
|
/** @type {import('./max')} */
|
|
57402
57407
|
module.exports = Math.max;
|
|
57403
57408
|
|
|
57404
|
-
},{}],
|
|
57409
|
+
},{}],391:[function(require,module,exports){
|
|
57405
57410
|
'use strict';
|
|
57406
57411
|
|
|
57407
57412
|
/** @type {import('./min')} */
|
|
57408
57413
|
module.exports = Math.min;
|
|
57409
57414
|
|
|
57410
|
-
},{}],
|
|
57415
|
+
},{}],392:[function(require,module,exports){
|
|
57411
57416
|
'use strict';
|
|
57412
57417
|
|
|
57413
57418
|
/** @type {import('./pow')} */
|
|
57414
57419
|
module.exports = Math.pow;
|
|
57415
57420
|
|
|
57416
|
-
},{}],
|
|
57421
|
+
},{}],393:[function(require,module,exports){
|
|
57417
57422
|
'use strict';
|
|
57418
57423
|
|
|
57419
57424
|
/** @type {import('./round')} */
|
|
57420
57425
|
module.exports = Math.round;
|
|
57421
57426
|
|
|
57422
|
-
},{}],
|
|
57427
|
+
},{}],394:[function(require,module,exports){
|
|
57423
57428
|
'use strict';
|
|
57424
57429
|
|
|
57425
57430
|
var $isNaN = require('./isNaN');
|
|
@@ -57432,7 +57437,7 @@ module.exports = function sign(number) {
|
|
|
57432
57437
|
return number < 0 ? -1 : +1;
|
|
57433
57438
|
};
|
|
57434
57439
|
|
|
57435
|
-
},{"./isNaN":
|
|
57440
|
+
},{"./isNaN":389}],395:[function(require,module,exports){
|
|
57436
57441
|
'use strict';
|
|
57437
57442
|
|
|
57438
57443
|
var keysShim;
|
|
@@ -57556,7 +57561,7 @@ if (!Object.keys) {
|
|
|
57556
57561
|
}
|
|
57557
57562
|
module.exports = keysShim;
|
|
57558
57563
|
|
|
57559
|
-
},{"./isArguments":
|
|
57564
|
+
},{"./isArguments":397}],396:[function(require,module,exports){
|
|
57560
57565
|
'use strict';
|
|
57561
57566
|
|
|
57562
57567
|
var slice = Array.prototype.slice;
|
|
@@ -57590,7 +57595,7 @@ keysShim.shim = function shimObjectKeys() {
|
|
|
57590
57595
|
|
|
57591
57596
|
module.exports = keysShim;
|
|
57592
57597
|
|
|
57593
|
-
},{"./implementation":
|
|
57598
|
+
},{"./implementation":395,"./isArguments":397}],397:[function(require,module,exports){
|
|
57594
57599
|
'use strict';
|
|
57595
57600
|
|
|
57596
57601
|
var toStr = Object.prototype.toString;
|
|
@@ -57609,7 +57614,7 @@ module.exports = function isArguments(value) {
|
|
|
57609
57614
|
return isArgs;
|
|
57610
57615
|
};
|
|
57611
57616
|
|
|
57612
|
-
},{}],
|
|
57617
|
+
},{}],398:[function(require,module,exports){
|
|
57613
57618
|
'use strict';
|
|
57614
57619
|
|
|
57615
57620
|
// modified from https://github.com/es-shims/es6-shim
|
|
@@ -57657,7 +57662,7 @@ module.exports = function assign(target, source1) {
|
|
|
57657
57662
|
return to; // step 4
|
|
57658
57663
|
};
|
|
57659
57664
|
|
|
57660
|
-
},{"call-bound":
|
|
57665
|
+
},{"call-bound":355,"es-object-atoms":366,"has-symbols/shams":378,"object-keys":396}],399:[function(require,module,exports){
|
|
57661
57666
|
'use strict';
|
|
57662
57667
|
|
|
57663
57668
|
var implementation = require('./implementation');
|
|
@@ -57714,7 +57719,7 @@ module.exports = function getPolyfill() {
|
|
|
57714
57719
|
return Object.assign;
|
|
57715
57720
|
};
|
|
57716
57721
|
|
|
57717
|
-
},{"./implementation":
|
|
57722
|
+
},{"./implementation":398}],400:[function(require,module,exports){
|
|
57718
57723
|
'use strict';
|
|
57719
57724
|
|
|
57720
57725
|
/** @type {import('.')} */
|
|
@@ -57733,7 +57738,7 @@ module.exports = [
|
|
|
57733
57738
|
'BigUint64Array'
|
|
57734
57739
|
];
|
|
57735
57740
|
|
|
57736
|
-
},{}],
|
|
57741
|
+
},{}],401:[function(require,module,exports){
|
|
57737
57742
|
// shim for using process in browser
|
|
57738
57743
|
var process = module.exports = {};
|
|
57739
57744
|
|
|
@@ -57919,7 +57924,7 @@ process.chdir = function (dir) {
|
|
|
57919
57924
|
};
|
|
57920
57925
|
process.umask = function() { return 0; };
|
|
57921
57926
|
|
|
57922
|
-
},{}],
|
|
57927
|
+
},{}],402:[function(require,module,exports){
|
|
57923
57928
|
'use strict';
|
|
57924
57929
|
|
|
57925
57930
|
var callBound = require('call-bound');
|
|
@@ -57938,7 +57943,7 @@ module.exports = function regexTester(regex) {
|
|
|
57938
57943
|
};
|
|
57939
57944
|
};
|
|
57940
57945
|
|
|
57941
|
-
},{"call-bound":
|
|
57946
|
+
},{"call-bound":355,"es-errors/type":364,"is-regex":385}],403:[function(require,module,exports){
|
|
57942
57947
|
'use strict';
|
|
57943
57948
|
|
|
57944
57949
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -57982,9 +57987,9 @@ module.exports = function setFunctionLength(fn, length) {
|
|
|
57982
57987
|
return fn;
|
|
57983
57988
|
};
|
|
57984
57989
|
|
|
57985
|
-
},{"define-data-property":
|
|
57986
|
-
arguments[4][
|
|
57987
|
-
},{"dup":
|
|
57990
|
+
},{"define-data-property":356,"es-errors/type":364,"get-intrinsic":370,"gopd":375,"has-property-descriptors":376}],404:[function(require,module,exports){
|
|
57991
|
+
arguments[4][344][0].apply(exports,arguments)
|
|
57992
|
+
},{"dup":344}],405:[function(require,module,exports){
|
|
57988
57993
|
// Currently in sync with Node.js lib/internal/util/types.js
|
|
57989
57994
|
// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
|
|
57990
57995
|
|
|
@@ -58320,7 +58325,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
|
|
|
58320
58325
|
});
|
|
58321
58326
|
});
|
|
58322
58327
|
|
|
58323
|
-
},{"is-arguments":
|
|
58328
|
+
},{"is-arguments":382,"is-generator-function":384,"is-typed-array":386,"which-typed-array":407}],406:[function(require,module,exports){
|
|
58324
58329
|
(function (process){(function (){
|
|
58325
58330
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
58326
58331
|
//
|
|
@@ -59039,7 +59044,7 @@ function callbackify(original) {
|
|
|
59039
59044
|
exports.callbackify = callbackify;
|
|
59040
59045
|
|
|
59041
59046
|
}).call(this)}).call(this,require('_process'))
|
|
59042
|
-
},{"./support/isBuffer":
|
|
59047
|
+
},{"./support/isBuffer":404,"./support/types":405,"_process":401,"inherits":381}],407:[function(require,module,exports){
|
|
59043
59048
|
(function (global){(function (){
|
|
59044
59049
|
'use strict';
|
|
59045
59050
|
|
|
@@ -59160,5 +59165,5 @@ module.exports = function whichTypedArray(value) {
|
|
|
59160
59165
|
};
|
|
59161
59166
|
|
|
59162
59167
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
59163
|
-
},{"available-typed-arrays":
|
|
59168
|
+
},{"available-typed-arrays":346,"call-bind":354,"call-bound":355,"for-each":367,"get-proto":373,"gopd":375,"has-tostringtag/shams":379}]},{},[106])(106)
|
|
59164
59169
|
});
|