@designliquido/delegua 0.44.2 → 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 +7 -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 +439 -441
package/umd/delegua.js
CHANGED
|
@@ -19,7 +19,13 @@ class AvaliadorSintaticoBase {
|
|
|
19
19
|
if (this.verificarTipoSimboloAtual(tipo))
|
|
20
20
|
return this.avancarEDevolverAnterior();
|
|
21
21
|
let simboloErro = this.simbolos[this.atual];
|
|
22
|
-
if (this.
|
|
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) {
|
|
23
29
|
simboloErro = this.simbolos[this.simbolos.length - 1];
|
|
24
30
|
}
|
|
25
31
|
throw this.erro(simboloErro, mensagemDeErro);
|
|
@@ -238,7 +244,7 @@ class AvaliadorSintaticoBase {
|
|
|
238
244
|
}
|
|
239
245
|
exports.AvaliadorSintaticoBase = AvaliadorSintaticoBase;
|
|
240
246
|
|
|
241
|
-
},{"../construtos":
|
|
247
|
+
},{"../construtos":44,"../declaracoes":84,"../tipos-de-simbolos/comum":167,"./erro-avaliador-sintatico":9}],2:[function(require,module,exports){
|
|
242
248
|
"use strict";
|
|
243
249
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
244
250
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -261,6 +267,7 @@ const primitivas_dicionario_1 = __importDefault(require("../bibliotecas/primitiv
|
|
|
261
267
|
const primitivas_numero_1 = __importDefault(require("../bibliotecas/primitivas-numero"));
|
|
262
268
|
const primitivas_texto_1 = __importDefault(require("../bibliotecas/primitivas-texto"));
|
|
263
269
|
const primitivas_vetor_1 = __importDefault(require("../bibliotecas/primitivas-vetor"));
|
|
270
|
+
const comum_1 = require("./comum");
|
|
264
271
|
/**
|
|
265
272
|
* O avaliador sintático (_Parser_) é responsável por transformar os símbolos do Lexador em estruturas de alto nível.
|
|
266
273
|
* Essas estruturas de alto nível são as partes que executam lógica de programação de fato.
|
|
@@ -283,23 +290,10 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
283
290
|
this.tiposDefinidosEmCodigo = {};
|
|
284
291
|
this.tiposDeFerramentasExternas = {};
|
|
285
292
|
this.primitivasConhecidas = {};
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
this.primitivasConhecidas[nomePrimitivaNumero] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(nomePrimitivaNumero, 'número', dadosPrimitiva.argumentos);
|
|
291
|
-
}
|
|
292
|
-
for (const [nomePrimitivaTexto, dadosPrimitiva] of Object.entries(primitivas_texto_1.default)) {
|
|
293
|
-
this.primitivasConhecidas[nomePrimitivaTexto] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(nomePrimitivaTexto, 'texto', dadosPrimitiva.argumentos);
|
|
294
|
-
}
|
|
295
|
-
for (const [nomePrimitivaVetor, dadosPrimitiva] of Object.entries(primitivas_vetor_1.default)) {
|
|
296
|
-
this.primitivasConhecidas[nomePrimitivaVetor] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(nomePrimitivaVetor, 'vetor', dadosPrimitiva.argumentos);
|
|
297
|
-
}
|
|
298
|
-
// TODO: Por enquanto não há necessidade de validar argumentos aqui, mas isso pode mudar no futuro.
|
|
299
|
-
this.primitivasConhecidas['inteiro'] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('inteiro', 'inteiro');
|
|
300
|
-
this.primitivasConhecidas['numero'] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('numero', 'número');
|
|
301
|
-
this.primitivasConhecidas['número'] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('número', 'número');
|
|
302
|
-
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);
|
|
303
297
|
this.pilhaEscopos = new pilha_escopos_1.PilhaEscopos();
|
|
304
298
|
}
|
|
305
299
|
verificarDefinicaoTipoAtual() {
|
|
@@ -682,8 +676,8 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
682
676
|
}
|
|
683
677
|
}
|
|
684
678
|
if (tipoPrimitiva !== undefined &&
|
|
685
|
-
this.primitivasConhecidas.hasOwnProperty(entidadeChamadaResolvidaVariavel.simbolo.lexema)) {
|
|
686
|
-
var informacoesPrimitiva = this.primitivasConhecidas[entidadeChamadaResolvidaVariavel.simbolo.lexema];
|
|
679
|
+
this.primitivasConhecidas[tipoPrimitiva].hasOwnProperty(entidadeChamadaResolvidaVariavel.simbolo.lexema)) {
|
|
680
|
+
var informacoesPrimitiva = this.primitivasConhecidas[tipoPrimitiva][entidadeChamadaResolvidaVariavel.simbolo.lexema];
|
|
687
681
|
const erros = this.validarArgumentosEntidadeChamada(informacoesPrimitiva.argumentos, argumentos);
|
|
688
682
|
if (erros.length > 0) {
|
|
689
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`), '')}`);
|
|
@@ -1361,8 +1355,10 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1361
1355
|
// e a chamada normalmente é feita para uma primitiva.
|
|
1362
1356
|
// A inferência, portanto, ocorre pelo uso da primitiva.
|
|
1363
1357
|
const entidadeChamadaAcessoMetodoOuPropriedade = entidadeChamadaChamada;
|
|
1364
|
-
|
|
1365
|
-
|
|
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
|
+
}
|
|
1366
1362
|
}
|
|
1367
1363
|
throw new erro_avaliador_sintatico_1.ErroAvaliadorSintatico(entidadeChamadaAcessoMetodoOuPropriedade.simbolo, `Primitiva '${entidadeChamadaAcessoMetodoOuPropriedade.simbolo.lexema}' não existe.`);
|
|
1368
1364
|
case 'AcessoPropriedade':
|
|
@@ -1876,7 +1872,19 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1876
1872
|
}
|
|
1877
1873
|
exports.AvaliadorSintatico = AvaliadorSintatico;
|
|
1878
1874
|
|
|
1879
|
-
},{"../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){
|
|
1880
1888
|
"use strict";
|
|
1881
1889
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
1882
1890
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -2531,7 +2539,7 @@ class AvaliadorSintaticoEguaClassico {
|
|
|
2531
2539
|
}
|
|
2532
2540
|
exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
|
|
2533
2541
|
|
|
2534
|
-
},{"../../construtos":
|
|
2542
|
+
},{"../../construtos":44,"../../declaracoes":84,"../../tipos-de-simbolos/egua-classico":169,"../erro-avaliador-sintatico":9}],5:[function(require,module,exports){
|
|
2535
2543
|
"use strict";
|
|
2536
2544
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
2537
2545
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -2552,6 +2560,7 @@ const primitivas_dicionario_1 = __importDefault(require("../../bibliotecas/primi
|
|
|
2552
2560
|
const primitivas_numero_1 = __importDefault(require("../../bibliotecas/primitivas-numero"));
|
|
2553
2561
|
const primitivas_texto_1 = __importDefault(require("../../bibliotecas/primitivas-texto"));
|
|
2554
2562
|
const primitivas_vetor_1 = __importDefault(require("../../bibliotecas/primitivas-vetor"));
|
|
2563
|
+
const comum_1 = require("../comum");
|
|
2555
2564
|
/**
|
|
2556
2565
|
* O avaliador sintático (_Parser_) é responsável por transformar os símbolos do Lexador em estruturas de alto nível.
|
|
2557
2566
|
* Essas estruturas de alto nível são as partes que executam lógica de programação de fato.
|
|
@@ -2569,23 +2578,10 @@ class AvaliadorSintaticoPitugues {
|
|
|
2569
2578
|
this.pilhaEscopos = new pilha_escopos_1.PilhaEscopos();
|
|
2570
2579
|
this.primitivasConhecidas = {};
|
|
2571
2580
|
this.tiposDefinidosEmCodigo = {};
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
this.primitivasConhecidas[nomePrimitivaNumero] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(nomePrimitivaNumero, 'número', dadosPrimitiva.argumentos);
|
|
2577
|
-
}
|
|
2578
|
-
for (const [nomePrimitivaTexto, dadosPrimitiva] of Object.entries(primitivas_texto_1.default)) {
|
|
2579
|
-
this.primitivasConhecidas[nomePrimitivaTexto] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(nomePrimitivaTexto, 'texto', dadosPrimitiva.argumentos);
|
|
2580
|
-
}
|
|
2581
|
-
for (const [nomePrimitivaVetor, dadosPrimitiva] of Object.entries(primitivas_vetor_1.default)) {
|
|
2582
|
-
this.primitivasConhecidas[nomePrimitivaVetor] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante(nomePrimitivaVetor, 'vetor', dadosPrimitiva.argumentos);
|
|
2583
|
-
}
|
|
2584
|
-
// TODO: Por enquanto não há necessidade de validar argumentos aqui, mas isso pode mudar no futuro.
|
|
2585
|
-
this.primitivasConhecidas['inteiro'] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('inteiro', 'inteiro');
|
|
2586
|
-
this.primitivasConhecidas['numero'] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('numero', 'número');
|
|
2587
|
-
this.primitivasConhecidas['número'] = new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('número', 'número');
|
|
2588
|
-
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);
|
|
2589
2585
|
}
|
|
2590
2586
|
logicaComumInferenciaTiposVariaveisEConstantes(inicializador, tipo) {
|
|
2591
2587
|
if (tipo !== 'qualquer') {
|
|
@@ -2615,8 +2611,10 @@ class AvaliadorSintaticoPitugues {
|
|
|
2615
2611
|
// e a chamada normalmente é feita para uma primitiva.
|
|
2616
2612
|
// A inferência, portanto, ocorre pelo uso da primitiva.
|
|
2617
2613
|
const entidadeChamadaAcessoMetodoOuPropriedade = entidadeChamadaChamada;
|
|
2618
|
-
|
|
2619
|
-
|
|
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
|
+
}
|
|
2620
2618
|
}
|
|
2621
2619
|
throw new erro_avaliador_sintatico_1.ErroAvaliadorSintatico(entidadeChamadaAcessoMetodoOuPropriedade.simbolo, `Primitiva '${entidadeChamadaAcessoMetodoOuPropriedade.simbolo.lexema}' não existe.`);
|
|
2622
2620
|
case 'AcessoPropriedade':
|
|
@@ -3571,7 +3569,7 @@ class AvaliadorSintaticoPitugues {
|
|
|
3571
3569
|
}
|
|
3572
3570
|
exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
|
|
3573
3571
|
|
|
3574
|
-
},{"../../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){
|
|
3575
3573
|
"use strict";
|
|
3576
3574
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3577
3575
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -3740,7 +3738,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
|
|
|
3740
3738
|
}
|
|
3741
3739
|
exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
|
|
3742
3740
|
|
|
3743
|
-
},{"../../construtos":
|
|
3741
|
+
},{"../../construtos":44,"../../declaracoes":84,"../../tipos-de-simbolos/portugol-ipt":173,"../avaliador-sintatico-base":1}],7:[function(require,module,exports){
|
|
3744
3742
|
"use strict";
|
|
3745
3743
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3746
3744
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -4828,7 +4826,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
|
|
|
4828
4826
|
}
|
|
4829
4827
|
exports.AvaliadorSintaticoTenda = AvaliadorSintaticoTenda;
|
|
4830
4828
|
|
|
4831
|
-
},{"../../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){
|
|
4832
4830
|
"use strict";
|
|
4833
4831
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4834
4832
|
if (k2 === undefined) k2 = k;
|
|
@@ -4850,7 +4848,7 @@ __exportStar(require("./avaliador-sintatico-pitugues"), exports);
|
|
|
4850
4848
|
__exportStar(require("./avaliador-sintatico-portugol-ipt"), exports);
|
|
4851
4849
|
__exportStar(require("./avaliador-sintatico-tenda"), exports);
|
|
4852
4850
|
|
|
4853
|
-
},{"./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){
|
|
4854
4852
|
"use strict";
|
|
4855
4853
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4856
4854
|
exports.ErroAvaliadorSintatico = void 0;
|
|
@@ -4865,7 +4863,7 @@ class ErroAvaliadorSintatico extends Error {
|
|
|
4865
4863
|
}
|
|
4866
4864
|
exports.ErroAvaliadorSintatico = ErroAvaliadorSintatico;
|
|
4867
4865
|
|
|
4868
|
-
},{}],
|
|
4866
|
+
},{}],10:[function(require,module,exports){
|
|
4869
4867
|
"use strict";
|
|
4870
4868
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4871
4869
|
if (k2 === undefined) k2 = k;
|
|
@@ -4891,7 +4889,7 @@ __exportStar(require("./micro-avaliador-sintatico"), exports);
|
|
|
4891
4889
|
__exportStar(require("./pilha-escopos"), exports);
|
|
4892
4890
|
__exportStar(require("./retornos"), exports);
|
|
4893
4891
|
|
|
4894
|
-
},{"./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){
|
|
4895
4893
|
"use strict";
|
|
4896
4894
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4897
4895
|
exports.InformacaoEscopo = void 0;
|
|
@@ -4903,7 +4901,7 @@ class InformacaoEscopo {
|
|
|
4903
4901
|
}
|
|
4904
4902
|
exports.InformacaoEscopo = InformacaoEscopo;
|
|
4905
4903
|
|
|
4906
|
-
},{}],
|
|
4904
|
+
},{}],12:[function(require,module,exports){
|
|
4907
4905
|
"use strict";
|
|
4908
4906
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4909
4907
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -5021,7 +5019,7 @@ class MicroAvaliadorSintaticoBase {
|
|
|
5021
5019
|
}
|
|
5022
5020
|
exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
|
|
5023
5021
|
|
|
5024
|
-
},{"../construtos":
|
|
5022
|
+
},{"../construtos":44,"../tipos-de-simbolos/comum":167,"./erro-avaliador-sintatico":9}],13:[function(require,module,exports){
|
|
5025
5023
|
"use strict";
|
|
5026
5024
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
5027
5025
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -5227,7 +5225,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
|
|
|
5227
5225
|
}
|
|
5228
5226
|
exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
|
|
5229
5227
|
|
|
5230
|
-
},{"../construtos":
|
|
5228
|
+
},{"../construtos":44,"../tipos-de-simbolos/microgramaticas/delegua":171,"./micro-avaliador-sintatico-base":12}],14:[function(require,module,exports){
|
|
5231
5229
|
"use strict";
|
|
5232
5230
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5233
5231
|
exports.PilhaEscopos = void 0;
|
|
@@ -5283,7 +5281,7 @@ class PilhaEscopos {
|
|
|
5283
5281
|
}
|
|
5284
5282
|
exports.PilhaEscopos = PilhaEscopos;
|
|
5285
5283
|
|
|
5286
|
-
},{}],
|
|
5284
|
+
},{}],15:[function(require,module,exports){
|
|
5287
5285
|
"use strict";
|
|
5288
5286
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5289
5287
|
if (k2 === undefined) k2 = k;
|
|
@@ -5302,11 +5300,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
5302
5300
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5303
5301
|
__exportStar(require("./retorno-primario"), exports);
|
|
5304
5302
|
|
|
5305
|
-
},{"./retorno-primario":
|
|
5303
|
+
},{"./retorno-primario":16}],16:[function(require,module,exports){
|
|
5306
5304
|
"use strict";
|
|
5307
5305
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5308
5306
|
|
|
5309
|
-
},{}],
|
|
5307
|
+
},{}],17:[function(require,module,exports){
|
|
5310
5308
|
"use strict";
|
|
5311
5309
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5312
5310
|
exports.aleatorio = aleatorio;
|
|
@@ -5855,7 +5853,7 @@ async function tupla(interpretador, vetor) {
|
|
|
5855
5853
|
}
|
|
5856
5854
|
}
|
|
5857
5855
|
|
|
5858
|
-
},{"../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){
|
|
5859
5857
|
"use strict";
|
|
5860
5858
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5861
5859
|
exports.default = {
|
|
@@ -5875,7 +5873,7 @@ exports.default = {
|
|
|
5875
5873
|
},
|
|
5876
5874
|
};
|
|
5877
5875
|
|
|
5878
|
-
},{}],
|
|
5876
|
+
},{}],19:[function(require,module,exports){
|
|
5879
5877
|
"use strict";
|
|
5880
5878
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5881
5879
|
exports.default = {
|
|
@@ -5902,7 +5900,7 @@ exports.default = {
|
|
|
5902
5900
|
},
|
|
5903
5901
|
};
|
|
5904
5902
|
|
|
5905
|
-
},{}],
|
|
5903
|
+
},{}],20:[function(require,module,exports){
|
|
5906
5904
|
"use strict";
|
|
5907
5905
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5908
5906
|
const informacao_variavel_ou_constante_1 = require("../informacao-variavel-ou-constante");
|
|
@@ -5991,7 +5989,7 @@ exports.default = {
|
|
|
5991
5989
|
},
|
|
5992
5990
|
};
|
|
5993
5991
|
|
|
5994
|
-
},{"../informacao-variavel-ou-constante":
|
|
5992
|
+
},{"../informacao-variavel-ou-constante":108}],21:[function(require,module,exports){
|
|
5995
5993
|
"use strict";
|
|
5996
5994
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5997
5995
|
const informacao_variavel_ou_constante_1 = require("../informacao-variavel-ou-constante");
|
|
@@ -6158,7 +6156,7 @@ exports.default = {
|
|
|
6158
6156
|
},
|
|
6159
6157
|
};
|
|
6160
6158
|
|
|
6161
|
-
},{"../informacao-variavel-ou-constante":
|
|
6159
|
+
},{"../informacao-variavel-ou-constante":108}],22:[function(require,module,exports){
|
|
6162
6160
|
"use strict";
|
|
6163
6161
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6164
6162
|
exports.AcessoElementoMatriz = void 0;
|
|
@@ -6177,7 +6175,7 @@ class AcessoElementoMatriz {
|
|
|
6177
6175
|
}
|
|
6178
6176
|
exports.AcessoElementoMatriz = AcessoElementoMatriz;
|
|
6179
6177
|
|
|
6180
|
-
},{}],
|
|
6178
|
+
},{}],23:[function(require,module,exports){
|
|
6181
6179
|
"use strict";
|
|
6182
6180
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6183
6181
|
exports.AcessoIndiceVariavel = void 0;
|
|
@@ -6199,7 +6197,7 @@ class AcessoIndiceVariavel {
|
|
|
6199
6197
|
}
|
|
6200
6198
|
exports.AcessoIndiceVariavel = AcessoIndiceVariavel;
|
|
6201
6199
|
|
|
6202
|
-
},{}],
|
|
6200
|
+
},{}],24:[function(require,module,exports){
|
|
6203
6201
|
"use strict";
|
|
6204
6202
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6205
6203
|
exports.AcessoMetodoOuPropriedade = void 0;
|
|
@@ -6223,7 +6221,7 @@ class AcessoMetodoOuPropriedade {
|
|
|
6223
6221
|
}
|
|
6224
6222
|
exports.AcessoMetodoOuPropriedade = AcessoMetodoOuPropriedade;
|
|
6225
6223
|
|
|
6226
|
-
},{}],
|
|
6224
|
+
},{}],25:[function(require,module,exports){
|
|
6227
6225
|
"use strict";
|
|
6228
6226
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6229
6227
|
exports.AcessoMetodo = void 0;
|
|
@@ -6242,7 +6240,7 @@ class AcessoMetodo {
|
|
|
6242
6240
|
}
|
|
6243
6241
|
exports.AcessoMetodo = AcessoMetodo;
|
|
6244
6242
|
|
|
6245
|
-
},{}],
|
|
6243
|
+
},{}],26:[function(require,module,exports){
|
|
6246
6244
|
"use strict";
|
|
6247
6245
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6248
6246
|
exports.AcessoPropriedade = void 0;
|
|
@@ -6260,7 +6258,7 @@ class AcessoPropriedade {
|
|
|
6260
6258
|
}
|
|
6261
6259
|
exports.AcessoPropriedade = AcessoPropriedade;
|
|
6262
6260
|
|
|
6263
|
-
},{}],
|
|
6261
|
+
},{}],27:[function(require,module,exports){
|
|
6264
6262
|
"use strict";
|
|
6265
6263
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6266
6264
|
exports.Agrupamento = void 0;
|
|
@@ -6282,7 +6280,7 @@ class Agrupamento {
|
|
|
6282
6280
|
}
|
|
6283
6281
|
exports.Agrupamento = Agrupamento;
|
|
6284
6282
|
|
|
6285
|
-
},{}],
|
|
6283
|
+
},{}],28:[function(require,module,exports){
|
|
6286
6284
|
"use strict";
|
|
6287
6285
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6288
6286
|
exports.ArgumentoReferenciaFuncao = void 0;
|
|
@@ -6303,7 +6301,7 @@ class ArgumentoReferenciaFuncao {
|
|
|
6303
6301
|
}
|
|
6304
6302
|
exports.ArgumentoReferenciaFuncao = ArgumentoReferenciaFuncao;
|
|
6305
6303
|
|
|
6306
|
-
},{}],
|
|
6304
|
+
},{}],29:[function(require,module,exports){
|
|
6307
6305
|
"use strict";
|
|
6308
6306
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6309
6307
|
exports.AtribuicaoPorIndice = void 0;
|
|
@@ -6321,7 +6319,7 @@ class AtribuicaoPorIndice {
|
|
|
6321
6319
|
}
|
|
6322
6320
|
exports.AtribuicaoPorIndice = AtribuicaoPorIndice;
|
|
6323
6321
|
|
|
6324
|
-
},{}],
|
|
6322
|
+
},{}],30:[function(require,module,exports){
|
|
6325
6323
|
"use strict";
|
|
6326
6324
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6327
6325
|
exports.AtribuicaoPorIndicesMatriz = void 0;
|
|
@@ -6340,7 +6338,7 @@ class AtribuicaoPorIndicesMatriz {
|
|
|
6340
6338
|
}
|
|
6341
6339
|
exports.AtribuicaoPorIndicesMatriz = AtribuicaoPorIndicesMatriz;
|
|
6342
6340
|
|
|
6343
|
-
},{}],
|
|
6341
|
+
},{}],31:[function(require,module,exports){
|
|
6344
6342
|
"use strict";
|
|
6345
6343
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6346
6344
|
exports.Atribuir = void 0;
|
|
@@ -6369,7 +6367,7 @@ class Atribuir {
|
|
|
6369
6367
|
}
|
|
6370
6368
|
exports.Atribuir = Atribuir;
|
|
6371
6369
|
|
|
6372
|
-
},{}],
|
|
6370
|
+
},{}],32:[function(require,module,exports){
|
|
6373
6371
|
"use strict";
|
|
6374
6372
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6375
6373
|
exports.Binario = void 0;
|
|
@@ -6428,7 +6426,7 @@ class Binario {
|
|
|
6428
6426
|
}
|
|
6429
6427
|
exports.Binario = Binario;
|
|
6430
6428
|
|
|
6431
|
-
},{}],
|
|
6429
|
+
},{}],33:[function(require,module,exports){
|
|
6432
6430
|
"use strict";
|
|
6433
6431
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6434
6432
|
exports.Chamada = void 0;
|
|
@@ -6450,7 +6448,7 @@ class Chamada {
|
|
|
6450
6448
|
}
|
|
6451
6449
|
exports.Chamada = Chamada;
|
|
6452
6450
|
|
|
6453
|
-
},{"../geracao-identificadores":
|
|
6451
|
+
},{"../geracao-identificadores":105}],34:[function(require,module,exports){
|
|
6454
6452
|
"use strict";
|
|
6455
6453
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6456
6454
|
exports.ComponenteLinguagem = void 0;
|
|
@@ -6470,7 +6468,7 @@ class ComponenteLinguagem {
|
|
|
6470
6468
|
}
|
|
6471
6469
|
exports.ComponenteLinguagem = ComponenteLinguagem;
|
|
6472
6470
|
|
|
6473
|
-
},{}],
|
|
6471
|
+
},{}],35:[function(require,module,exports){
|
|
6474
6472
|
"use strict";
|
|
6475
6473
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6476
6474
|
exports.Constante = void 0;
|
|
@@ -6489,11 +6487,11 @@ class Constante {
|
|
|
6489
6487
|
}
|
|
6490
6488
|
exports.Constante = Constante;
|
|
6491
6489
|
|
|
6492
|
-
},{}],
|
|
6490
|
+
},{}],36:[function(require,module,exports){
|
|
6493
6491
|
"use strict";
|
|
6494
6492
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6495
6493
|
|
|
6496
|
-
},{}],
|
|
6494
|
+
},{}],37:[function(require,module,exports){
|
|
6497
6495
|
"use strict";
|
|
6498
6496
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6499
6497
|
exports.Decorador = void 0;
|
|
@@ -6514,7 +6512,7 @@ class Decorador {
|
|
|
6514
6512
|
}
|
|
6515
6513
|
exports.Decorador = Decorador;
|
|
6516
6514
|
|
|
6517
|
-
},{}],
|
|
6515
|
+
},{}],38:[function(require,module,exports){
|
|
6518
6516
|
"use strict";
|
|
6519
6517
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6520
6518
|
exports.DefinirValor = void 0;
|
|
@@ -6532,7 +6530,7 @@ class DefinirValor {
|
|
|
6532
6530
|
}
|
|
6533
6531
|
exports.DefinirValor = DefinirValor;
|
|
6534
6532
|
|
|
6535
|
-
},{}],
|
|
6533
|
+
},{}],39:[function(require,module,exports){
|
|
6536
6534
|
"use strict";
|
|
6537
6535
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6538
6536
|
exports.Dicionario = void 0;
|
|
@@ -6550,7 +6548,7 @@ class Dicionario {
|
|
|
6550
6548
|
}
|
|
6551
6549
|
exports.Dicionario = Dicionario;
|
|
6552
6550
|
|
|
6553
|
-
},{}],
|
|
6551
|
+
},{}],40:[function(require,module,exports){
|
|
6554
6552
|
"use strict";
|
|
6555
6553
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6556
6554
|
exports.ExpressaoRegular = void 0;
|
|
@@ -6567,7 +6565,7 @@ class ExpressaoRegular {
|
|
|
6567
6565
|
}
|
|
6568
6566
|
exports.ExpressaoRegular = ExpressaoRegular;
|
|
6569
6567
|
|
|
6570
|
-
},{}],
|
|
6568
|
+
},{}],41:[function(require,module,exports){
|
|
6571
6569
|
"use strict";
|
|
6572
6570
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6573
6571
|
exports.FimPara = void 0;
|
|
@@ -6594,7 +6592,7 @@ class FimPara {
|
|
|
6594
6592
|
}
|
|
6595
6593
|
exports.FimPara = FimPara;
|
|
6596
6594
|
|
|
6597
|
-
},{}],
|
|
6595
|
+
},{}],42:[function(require,module,exports){
|
|
6598
6596
|
"use strict";
|
|
6599
6597
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6600
6598
|
exports.FormatacaoEscrita = void 0;
|
|
@@ -6617,7 +6615,7 @@ class FormatacaoEscrita {
|
|
|
6617
6615
|
}
|
|
6618
6616
|
exports.FormatacaoEscrita = FormatacaoEscrita;
|
|
6619
6617
|
|
|
6620
|
-
},{}],
|
|
6618
|
+
},{}],43:[function(require,module,exports){
|
|
6621
6619
|
"use strict";
|
|
6622
6620
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6623
6621
|
exports.FuncaoConstruto = void 0;
|
|
@@ -6635,7 +6633,7 @@ class FuncaoConstruto {
|
|
|
6635
6633
|
}
|
|
6636
6634
|
exports.FuncaoConstruto = FuncaoConstruto;
|
|
6637
6635
|
|
|
6638
|
-
},{}],
|
|
6636
|
+
},{}],44:[function(require,module,exports){
|
|
6639
6637
|
"use strict";
|
|
6640
6638
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6641
6639
|
if (k2 === undefined) k2 = k;
|
|
@@ -6686,7 +6684,7 @@ __exportStar(require("./unario"), exports);
|
|
|
6686
6684
|
__exportStar(require("./variavel"), exports);
|
|
6687
6685
|
__exportStar(require("./vetor"), exports);
|
|
6688
6686
|
|
|
6689
|
-
},{"./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){
|
|
6690
6688
|
"use strict";
|
|
6691
6689
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6692
6690
|
exports.Isto = void 0;
|
|
@@ -6702,7 +6700,7 @@ class Isto {
|
|
|
6702
6700
|
}
|
|
6703
6701
|
exports.Isto = Isto;
|
|
6704
6702
|
|
|
6705
|
-
},{}],
|
|
6703
|
+
},{}],46:[function(require,module,exports){
|
|
6706
6704
|
"use strict";
|
|
6707
6705
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6708
6706
|
exports.Leia = void 0;
|
|
@@ -6725,7 +6723,7 @@ class Leia {
|
|
|
6725
6723
|
}
|
|
6726
6724
|
exports.Leia = Leia;
|
|
6727
6725
|
|
|
6728
|
-
},{"../geracao-identificadores":
|
|
6726
|
+
},{"../geracao-identificadores":105}],47:[function(require,module,exports){
|
|
6729
6727
|
"use strict";
|
|
6730
6728
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6731
6729
|
exports.Literal = void 0;
|
|
@@ -6742,7 +6740,7 @@ class Literal {
|
|
|
6742
6740
|
}
|
|
6743
6741
|
exports.Literal = Literal;
|
|
6744
6742
|
|
|
6745
|
-
},{}],
|
|
6743
|
+
},{}],48:[function(require,module,exports){
|
|
6746
6744
|
"use strict";
|
|
6747
6745
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6748
6746
|
exports.Logico = void 0;
|
|
@@ -6760,7 +6758,7 @@ class Logico {
|
|
|
6760
6758
|
}
|
|
6761
6759
|
exports.Logico = Logico;
|
|
6762
6760
|
|
|
6763
|
-
},{}],
|
|
6761
|
+
},{}],49:[function(require,module,exports){
|
|
6764
6762
|
"use strict";
|
|
6765
6763
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6766
6764
|
exports.ReferenciaFuncao = void 0;
|
|
@@ -6778,7 +6776,7 @@ class ReferenciaFuncao {
|
|
|
6778
6776
|
}
|
|
6779
6777
|
exports.ReferenciaFuncao = ReferenciaFuncao;
|
|
6780
6778
|
|
|
6781
|
-
},{}],
|
|
6779
|
+
},{}],50:[function(require,module,exports){
|
|
6782
6780
|
"use strict";
|
|
6783
6781
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6784
6782
|
exports.Super = void 0;
|
|
@@ -6795,7 +6793,7 @@ class Super {
|
|
|
6795
6793
|
}
|
|
6796
6794
|
exports.Super = Super;
|
|
6797
6795
|
|
|
6798
|
-
},{}],
|
|
6796
|
+
},{}],51:[function(require,module,exports){
|
|
6799
6797
|
"use strict";
|
|
6800
6798
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6801
6799
|
exports.TipoDe = void 0;
|
|
@@ -6816,7 +6814,7 @@ class TipoDe {
|
|
|
6816
6814
|
}
|
|
6817
6815
|
exports.TipoDe = TipoDe;
|
|
6818
6816
|
|
|
6819
|
-
},{}],
|
|
6817
|
+
},{}],52:[function(require,module,exports){
|
|
6820
6818
|
"use strict";
|
|
6821
6819
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6822
6820
|
exports.Deceto = void 0;
|
|
@@ -6850,7 +6848,7 @@ class Deceto extends tupla_1.Tupla {
|
|
|
6850
6848
|
}
|
|
6851
6849
|
exports.Deceto = Deceto;
|
|
6852
6850
|
|
|
6853
|
-
},{"./tupla":
|
|
6851
|
+
},{"./tupla":62}],53:[function(require,module,exports){
|
|
6854
6852
|
"use strict";
|
|
6855
6853
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6856
6854
|
exports.Dupla = void 0;
|
|
@@ -6864,7 +6862,7 @@ class Dupla extends tupla_1.Tupla {
|
|
|
6864
6862
|
}
|
|
6865
6863
|
exports.Dupla = Dupla;
|
|
6866
6864
|
|
|
6867
|
-
},{"./tupla":
|
|
6865
|
+
},{"./tupla":62}],54:[function(require,module,exports){
|
|
6868
6866
|
"use strict";
|
|
6869
6867
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6870
6868
|
if (k2 === undefined) k2 = k;
|
|
@@ -6933,7 +6931,7 @@ class SeletorTuplas {
|
|
|
6933
6931
|
}
|
|
6934
6932
|
exports.SeletorTuplas = SeletorTuplas;
|
|
6935
6933
|
|
|
6936
|
-
},{"./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){
|
|
6937
6935
|
"use strict";
|
|
6938
6936
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6939
6937
|
exports.Noneto = void 0;
|
|
@@ -6960,7 +6958,7 @@ class Noneto extends tupla_1.Tupla {
|
|
|
6960
6958
|
}
|
|
6961
6959
|
exports.Noneto = Noneto;
|
|
6962
6960
|
|
|
6963
|
-
},{"./tupla":
|
|
6961
|
+
},{"./tupla":62}],56:[function(require,module,exports){
|
|
6964
6962
|
"use strict";
|
|
6965
6963
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6966
6964
|
exports.Octeto = void 0;
|
|
@@ -6986,7 +6984,7 @@ class Octeto extends tupla_1.Tupla {
|
|
|
6986
6984
|
}
|
|
6987
6985
|
exports.Octeto = Octeto;
|
|
6988
6986
|
|
|
6989
|
-
},{"./tupla":
|
|
6987
|
+
},{"./tupla":62}],57:[function(require,module,exports){
|
|
6990
6988
|
"use strict";
|
|
6991
6989
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6992
6990
|
exports.Quarteto = void 0;
|
|
@@ -7002,7 +7000,7 @@ class Quarteto extends tupla_1.Tupla {
|
|
|
7002
7000
|
}
|
|
7003
7001
|
exports.Quarteto = Quarteto;
|
|
7004
7002
|
|
|
7005
|
-
},{"./tupla":
|
|
7003
|
+
},{"./tupla":62}],58:[function(require,module,exports){
|
|
7006
7004
|
"use strict";
|
|
7007
7005
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7008
7006
|
exports.Quinteto = void 0;
|
|
@@ -7019,7 +7017,7 @@ class Quinteto extends tupla_1.Tupla {
|
|
|
7019
7017
|
}
|
|
7020
7018
|
exports.Quinteto = Quinteto;
|
|
7021
7019
|
|
|
7022
|
-
},{"./tupla":
|
|
7020
|
+
},{"./tupla":62}],59:[function(require,module,exports){
|
|
7023
7021
|
"use strict";
|
|
7024
7022
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7025
7023
|
exports.Septeto = void 0;
|
|
@@ -7044,7 +7042,7 @@ class Septeto extends tupla_1.Tupla {
|
|
|
7044
7042
|
}
|
|
7045
7043
|
exports.Septeto = Septeto;
|
|
7046
7044
|
|
|
7047
|
-
},{"./tupla":
|
|
7045
|
+
},{"./tupla":62}],60:[function(require,module,exports){
|
|
7048
7046
|
"use strict";
|
|
7049
7047
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7050
7048
|
exports.Sexteto = void 0;
|
|
@@ -7062,7 +7060,7 @@ class Sexteto extends tupla_1.Tupla {
|
|
|
7062
7060
|
}
|
|
7063
7061
|
exports.Sexteto = Sexteto;
|
|
7064
7062
|
|
|
7065
|
-
},{"./tupla":
|
|
7063
|
+
},{"./tupla":62}],61:[function(require,module,exports){
|
|
7066
7064
|
"use strict";
|
|
7067
7065
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7068
7066
|
exports.Trio = void 0;
|
|
@@ -7077,7 +7075,7 @@ class Trio extends tupla_1.Tupla {
|
|
|
7077
7075
|
}
|
|
7078
7076
|
exports.Trio = Trio;
|
|
7079
7077
|
|
|
7080
|
-
},{"./tupla":
|
|
7078
|
+
},{"./tupla":62}],62:[function(require,module,exports){
|
|
7081
7079
|
"use strict";
|
|
7082
7080
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7083
7081
|
exports.Tupla = void 0;
|
|
@@ -7088,7 +7086,7 @@ class Tupla {
|
|
|
7088
7086
|
}
|
|
7089
7087
|
exports.Tupla = Tupla;
|
|
7090
7088
|
|
|
7091
|
-
},{}],
|
|
7089
|
+
},{}],63:[function(require,module,exports){
|
|
7092
7090
|
"use strict";
|
|
7093
7091
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7094
7092
|
exports.Unario = void 0;
|
|
@@ -7106,7 +7104,7 @@ class Unario {
|
|
|
7106
7104
|
}
|
|
7107
7105
|
exports.Unario = Unario;
|
|
7108
7106
|
|
|
7109
|
-
},{}],
|
|
7107
|
+
},{}],64:[function(require,module,exports){
|
|
7110
7108
|
"use strict";
|
|
7111
7109
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7112
7110
|
exports.Variavel = void 0;
|
|
@@ -7123,7 +7121,7 @@ class Variavel {
|
|
|
7123
7121
|
}
|
|
7124
7122
|
exports.Variavel = Variavel;
|
|
7125
7123
|
|
|
7126
|
-
},{}],
|
|
7124
|
+
},{}],65:[function(require,module,exports){
|
|
7127
7125
|
"use strict";
|
|
7128
7126
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7129
7127
|
exports.Vetor = void 0;
|
|
@@ -7146,7 +7144,7 @@ class Vetor {
|
|
|
7146
7144
|
}
|
|
7147
7145
|
exports.Vetor = Vetor;
|
|
7148
7146
|
|
|
7149
|
-
},{}],
|
|
7147
|
+
},{}],66:[function(require,module,exports){
|
|
7150
7148
|
"use strict";
|
|
7151
7149
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7152
7150
|
exports.Aleatorio = void 0;
|
|
@@ -7163,7 +7161,7 @@ class Aleatorio extends declaracao_1.Declaracao {
|
|
|
7163
7161
|
}
|
|
7164
7162
|
exports.Aleatorio = Aleatorio;
|
|
7165
7163
|
|
|
7166
|
-
},{"./declaracao":
|
|
7164
|
+
},{"./declaracao":74}],67:[function(require,module,exports){
|
|
7167
7165
|
"use strict";
|
|
7168
7166
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7169
7167
|
exports.Bloco = void 0;
|
|
@@ -7179,7 +7177,7 @@ class Bloco extends declaracao_1.Declaracao {
|
|
|
7179
7177
|
}
|
|
7180
7178
|
exports.Bloco = Bloco;
|
|
7181
7179
|
|
|
7182
|
-
},{"./declaracao":
|
|
7180
|
+
},{"./declaracao":74}],68:[function(require,module,exports){
|
|
7183
7181
|
"use strict";
|
|
7184
7182
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7185
7183
|
exports.CabecalhoPrograma = void 0;
|
|
@@ -7195,7 +7193,7 @@ class CabecalhoPrograma extends declaracao_1.Declaracao {
|
|
|
7195
7193
|
}
|
|
7196
7194
|
exports.CabecalhoPrograma = CabecalhoPrograma;
|
|
7197
7195
|
|
|
7198
|
-
},{"./declaracao":
|
|
7196
|
+
},{"./declaracao":74}],69:[function(require,module,exports){
|
|
7199
7197
|
"use strict";
|
|
7200
7198
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7201
7199
|
exports.Classe = void 0;
|
|
@@ -7215,7 +7213,7 @@ class Classe extends declaracao_1.Declaracao {
|
|
|
7215
7213
|
}
|
|
7216
7214
|
exports.Classe = Classe;
|
|
7217
7215
|
|
|
7218
|
-
},{"./declaracao":
|
|
7216
|
+
},{"./declaracao":74}],70:[function(require,module,exports){
|
|
7219
7217
|
"use strict";
|
|
7220
7218
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7221
7219
|
exports.Comentario = void 0;
|
|
@@ -7237,7 +7235,7 @@ class Comentario extends declaracao_1.Declaracao {
|
|
|
7237
7235
|
}
|
|
7238
7236
|
exports.Comentario = Comentario;
|
|
7239
7237
|
|
|
7240
|
-
},{"./declaracao":
|
|
7238
|
+
},{"./declaracao":74}],71:[function(require,module,exports){
|
|
7241
7239
|
"use strict";
|
|
7242
7240
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7243
7241
|
exports.ConstMultiplo = void 0;
|
|
@@ -7258,7 +7256,7 @@ class ConstMultiplo extends declaracao_1.Declaracao {
|
|
|
7258
7256
|
}
|
|
7259
7257
|
exports.ConstMultiplo = ConstMultiplo;
|
|
7260
7258
|
|
|
7261
|
-
},{"./declaracao":
|
|
7259
|
+
},{"./declaracao":74}],72:[function(require,module,exports){
|
|
7262
7260
|
"use strict";
|
|
7263
7261
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7264
7262
|
exports.Const = void 0;
|
|
@@ -7286,7 +7284,7 @@ class Const extends declaracao_1.Declaracao {
|
|
|
7286
7284
|
}
|
|
7287
7285
|
exports.Const = Const;
|
|
7288
7286
|
|
|
7289
|
-
},{"./declaracao":
|
|
7287
|
+
},{"./declaracao":74}],73:[function(require,module,exports){
|
|
7290
7288
|
"use strict";
|
|
7291
7289
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7292
7290
|
exports.Continua = void 0;
|
|
@@ -7301,7 +7299,7 @@ class Continua extends declaracao_1.Declaracao {
|
|
|
7301
7299
|
}
|
|
7302
7300
|
exports.Continua = Continua;
|
|
7303
7301
|
|
|
7304
|
-
},{"./declaracao":
|
|
7302
|
+
},{"./declaracao":74}],74:[function(require,module,exports){
|
|
7305
7303
|
"use strict";
|
|
7306
7304
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7307
7305
|
exports.Declaracao = void 0;
|
|
@@ -7321,7 +7319,7 @@ class Declaracao {
|
|
|
7321
7319
|
}
|
|
7322
7320
|
exports.Declaracao = Declaracao;
|
|
7323
7321
|
|
|
7324
|
-
},{}],
|
|
7322
|
+
},{}],75:[function(require,module,exports){
|
|
7325
7323
|
"use strict";
|
|
7326
7324
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7327
7325
|
exports.Enquanto = void 0;
|
|
@@ -7338,7 +7336,7 @@ class Enquanto extends declaracao_1.Declaracao {
|
|
|
7338
7336
|
}
|
|
7339
7337
|
exports.Enquanto = Enquanto;
|
|
7340
7338
|
|
|
7341
|
-
},{"./declaracao":
|
|
7339
|
+
},{"./declaracao":74}],76:[function(require,module,exports){
|
|
7342
7340
|
"use strict";
|
|
7343
7341
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7344
7342
|
exports.Escolha = void 0;
|
|
@@ -7359,7 +7357,7 @@ class Escolha extends declaracao_1.Declaracao {
|
|
|
7359
7357
|
}
|
|
7360
7358
|
exports.Escolha = Escolha;
|
|
7361
7359
|
|
|
7362
|
-
},{"./declaracao":
|
|
7360
|
+
},{"./declaracao":74}],77:[function(require,module,exports){
|
|
7363
7361
|
"use strict";
|
|
7364
7362
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7365
7363
|
exports.EscrevaMesmaLinha = void 0;
|
|
@@ -7375,7 +7373,7 @@ class EscrevaMesmaLinha extends declaracao_1.Declaracao {
|
|
|
7375
7373
|
}
|
|
7376
7374
|
exports.EscrevaMesmaLinha = EscrevaMesmaLinha;
|
|
7377
7375
|
|
|
7378
|
-
},{"./declaracao":
|
|
7376
|
+
},{"./declaracao":74}],78:[function(require,module,exports){
|
|
7379
7377
|
"use strict";
|
|
7380
7378
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7381
7379
|
exports.Escreva = void 0;
|
|
@@ -7391,7 +7389,7 @@ class Escreva extends declaracao_1.Declaracao {
|
|
|
7391
7389
|
}
|
|
7392
7390
|
exports.Escreva = Escreva;
|
|
7393
7391
|
|
|
7394
|
-
},{"./declaracao":
|
|
7392
|
+
},{"./declaracao":74}],79:[function(require,module,exports){
|
|
7395
7393
|
"use strict";
|
|
7396
7394
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7397
7395
|
exports.Expressao = void 0;
|
|
@@ -7407,7 +7405,7 @@ class Expressao extends declaracao_1.Declaracao {
|
|
|
7407
7405
|
}
|
|
7408
7406
|
exports.Expressao = Expressao;
|
|
7409
7407
|
|
|
7410
|
-
},{"./declaracao":
|
|
7408
|
+
},{"./declaracao":74}],80:[function(require,module,exports){
|
|
7411
7409
|
"use strict";
|
|
7412
7410
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7413
7411
|
exports.Falhar = void 0;
|
|
@@ -7424,7 +7422,7 @@ class Falhar extends declaracao_1.Declaracao {
|
|
|
7424
7422
|
}
|
|
7425
7423
|
exports.Falhar = Falhar;
|
|
7426
7424
|
|
|
7427
|
-
},{"./declaracao":
|
|
7425
|
+
},{"./declaracao":74}],81:[function(require,module,exports){
|
|
7428
7426
|
"use strict";
|
|
7429
7427
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7430
7428
|
exports.Fazer = void 0;
|
|
@@ -7441,7 +7439,7 @@ class Fazer extends declaracao_1.Declaracao {
|
|
|
7441
7439
|
}
|
|
7442
7440
|
exports.Fazer = Fazer;
|
|
7443
7441
|
|
|
7444
|
-
},{"./declaracao":
|
|
7442
|
+
},{"./declaracao":74}],82:[function(require,module,exports){
|
|
7445
7443
|
"use strict";
|
|
7446
7444
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7447
7445
|
exports.FuncaoDeclaracao = void 0;
|
|
@@ -7465,7 +7463,7 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
|
|
|
7465
7463
|
}
|
|
7466
7464
|
exports.FuncaoDeclaracao = FuncaoDeclaracao;
|
|
7467
7465
|
|
|
7468
|
-
},{"../geracao-identificadores":
|
|
7466
|
+
},{"../geracao-identificadores":105,"./declaracao":74}],83:[function(require,module,exports){
|
|
7469
7467
|
"use strict";
|
|
7470
7468
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7471
7469
|
exports.Importar = void 0;
|
|
@@ -7486,7 +7484,7 @@ class Importar extends declaracao_1.Declaracao {
|
|
|
7486
7484
|
}
|
|
7487
7485
|
exports.Importar = Importar;
|
|
7488
7486
|
|
|
7489
|
-
},{"./declaracao":
|
|
7487
|
+
},{"./declaracao":74}],84:[function(require,module,exports){
|
|
7490
7488
|
"use strict";
|
|
7491
7489
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7492
7490
|
if (k2 === undefined) k2 = k;
|
|
@@ -7534,7 +7532,7 @@ __exportStar(require("./tente"), exports);
|
|
|
7534
7532
|
__exportStar(require("./var"), exports);
|
|
7535
7533
|
__exportStar(require("./var-multiplo"), exports);
|
|
7536
7534
|
|
|
7537
|
-
},{"./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){
|
|
7538
7536
|
"use strict";
|
|
7539
7537
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7540
7538
|
exports.InicioAlgoritmo = void 0;
|
|
@@ -7549,7 +7547,7 @@ class InicioAlgoritmo extends declaracao_1.Declaracao {
|
|
|
7549
7547
|
}
|
|
7550
7548
|
exports.InicioAlgoritmo = InicioAlgoritmo;
|
|
7551
7549
|
|
|
7552
|
-
},{"./declaracao":
|
|
7550
|
+
},{"./declaracao":74}],86:[function(require,module,exports){
|
|
7553
7551
|
"use strict";
|
|
7554
7552
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7555
7553
|
exports.ParaCada = void 0;
|
|
@@ -7568,7 +7566,7 @@ class ParaCada extends declaracao_1.Declaracao {
|
|
|
7568
7566
|
}
|
|
7569
7567
|
exports.ParaCada = ParaCada;
|
|
7570
7568
|
|
|
7571
|
-
},{"./declaracao":
|
|
7569
|
+
},{"./declaracao":74}],87:[function(require,module,exports){
|
|
7572
7570
|
"use strict";
|
|
7573
7571
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7574
7572
|
exports.Para = void 0;
|
|
@@ -7594,7 +7592,7 @@ class Para extends declaracao_1.Declaracao {
|
|
|
7594
7592
|
}
|
|
7595
7593
|
exports.Para = Para;
|
|
7596
7594
|
|
|
7597
|
-
},{"./declaracao":
|
|
7595
|
+
},{"./declaracao":74}],88:[function(require,module,exports){
|
|
7598
7596
|
"use strict";
|
|
7599
7597
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7600
7598
|
exports.PropriedadeClasse = void 0;
|
|
@@ -7612,7 +7610,7 @@ class PropriedadeClasse extends declaracao_1.Declaracao {
|
|
|
7612
7610
|
}
|
|
7613
7611
|
exports.PropriedadeClasse = PropriedadeClasse;
|
|
7614
7612
|
|
|
7615
|
-
},{"./declaracao":
|
|
7613
|
+
},{"./declaracao":74}],89:[function(require,module,exports){
|
|
7616
7614
|
"use strict";
|
|
7617
7615
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7618
7616
|
exports.Retorna = void 0;
|
|
@@ -7635,7 +7633,7 @@ class Retorna extends declaracao_1.Declaracao {
|
|
|
7635
7633
|
}
|
|
7636
7634
|
exports.Retorna = Retorna;
|
|
7637
7635
|
|
|
7638
|
-
},{"./declaracao":
|
|
7636
|
+
},{"./declaracao":74}],90:[function(require,module,exports){
|
|
7639
7637
|
"use strict";
|
|
7640
7638
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7641
7639
|
exports.Se = void 0;
|
|
@@ -7654,7 +7652,7 @@ class Se extends declaracao_1.Declaracao {
|
|
|
7654
7652
|
}
|
|
7655
7653
|
exports.Se = Se;
|
|
7656
7654
|
|
|
7657
|
-
},{"./declaracao":
|
|
7655
|
+
},{"./declaracao":74}],91:[function(require,module,exports){
|
|
7658
7656
|
"use strict";
|
|
7659
7657
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7660
7658
|
exports.Sustar = void 0;
|
|
@@ -7669,7 +7667,7 @@ class Sustar extends declaracao_1.Declaracao {
|
|
|
7669
7667
|
}
|
|
7670
7668
|
exports.Sustar = Sustar;
|
|
7671
7669
|
|
|
7672
|
-
},{"./declaracao":
|
|
7670
|
+
},{"./declaracao":74}],92:[function(require,module,exports){
|
|
7673
7671
|
"use strict";
|
|
7674
7672
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7675
7673
|
exports.TendoComo = void 0;
|
|
@@ -7692,7 +7690,7 @@ class TendoComo extends declaracao_1.Declaracao {
|
|
|
7692
7690
|
}
|
|
7693
7691
|
exports.TendoComo = TendoComo;
|
|
7694
7692
|
|
|
7695
|
-
},{"./declaracao":
|
|
7693
|
+
},{"./declaracao":74}],93:[function(require,module,exports){
|
|
7696
7694
|
"use strict";
|
|
7697
7695
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7698
7696
|
exports.Tente = void 0;
|
|
@@ -7714,7 +7712,7 @@ class Tente extends declaracao_1.Declaracao {
|
|
|
7714
7712
|
}
|
|
7715
7713
|
exports.Tente = Tente;
|
|
7716
7714
|
|
|
7717
|
-
},{"./declaracao":
|
|
7715
|
+
},{"./declaracao":74}],94:[function(require,module,exports){
|
|
7718
7716
|
"use strict";
|
|
7719
7717
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7720
7718
|
exports.VarMultiplo = void 0;
|
|
@@ -7736,7 +7734,7 @@ class VarMultiplo extends declaracao_1.Declaracao {
|
|
|
7736
7734
|
}
|
|
7737
7735
|
exports.VarMultiplo = VarMultiplo;
|
|
7738
7736
|
|
|
7739
|
-
},{"./declaracao":
|
|
7737
|
+
},{"./declaracao":74}],95:[function(require,module,exports){
|
|
7740
7738
|
"use strict";
|
|
7741
7739
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7742
7740
|
exports.Var = void 0;
|
|
@@ -7766,7 +7764,7 @@ class Var extends declaracao_1.Declaracao {
|
|
|
7766
7764
|
}
|
|
7767
7765
|
exports.Var = Var;
|
|
7768
7766
|
|
|
7769
|
-
},{"./declaracao":
|
|
7767
|
+
},{"./declaracao":74}],96:[function(require,module,exports){
|
|
7770
7768
|
"use strict";
|
|
7771
7769
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7772
7770
|
exports.default = cyrb53;
|
|
@@ -7790,7 +7788,7 @@ function cyrb53(nomeArquivo, semente = 0) {
|
|
|
7790
7788
|
return 4294967296 * (2097151 & h2) + (h1 >>> 0);
|
|
7791
7789
|
}
|
|
7792
7790
|
|
|
7793
|
-
},{}],
|
|
7791
|
+
},{}],97:[function(require,module,exports){
|
|
7794
7792
|
"use strict";
|
|
7795
7793
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7796
7794
|
if (k2 === undefined) k2 = k;
|
|
@@ -7815,11 +7813,11 @@ var cyrb53_1 = require("./cyrb53");
|
|
|
7815
7813
|
Object.defineProperty(exports, "cyrb53", { enumerable: true, get: function () { return __importDefault(cyrb53_1).default; } });
|
|
7816
7814
|
__exportStar(require("./ponto-parada"), exports);
|
|
7817
7815
|
|
|
7818
|
-
},{"./cyrb53":
|
|
7816
|
+
},{"./cyrb53":96,"./ponto-parada":98}],98:[function(require,module,exports){
|
|
7819
7817
|
"use strict";
|
|
7820
7818
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7821
7819
|
|
|
7822
|
-
},{}],
|
|
7820
|
+
},{}],99:[function(require,module,exports){
|
|
7823
7821
|
"use strict";
|
|
7824
7822
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7825
7823
|
exports.EspacoVariaveis = void 0;
|
|
@@ -7841,7 +7839,7 @@ class EspacoVariaveis {
|
|
|
7841
7839
|
}
|
|
7842
7840
|
exports.EspacoVariaveis = EspacoVariaveis;
|
|
7843
7841
|
|
|
7844
|
-
},{}],
|
|
7842
|
+
},{}],100:[function(require,module,exports){
|
|
7845
7843
|
"use strict";
|
|
7846
7844
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7847
7845
|
exports.ErroEmTempoDeExecucao = void 0;
|
|
@@ -7856,7 +7854,7 @@ class ErroEmTempoDeExecucao extends Error {
|
|
|
7856
7854
|
}
|
|
7857
7855
|
exports.ErroEmTempoDeExecucao = ErroEmTempoDeExecucao;
|
|
7858
7856
|
|
|
7859
|
-
},{}],
|
|
7857
|
+
},{}],101:[function(require,module,exports){
|
|
7860
7858
|
"use strict";
|
|
7861
7859
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7862
7860
|
if (k2 === undefined) k2 = k;
|
|
@@ -7875,7 +7873,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
7875
7873
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7876
7874
|
__exportStar(require("./erro-em-tempo-de-execucao"), exports);
|
|
7877
7875
|
|
|
7878
|
-
},{"./erro-em-tempo-de-execucao":
|
|
7876
|
+
},{"./erro-em-tempo-de-execucao":100}],102:[function(require,module,exports){
|
|
7879
7877
|
"use strict";
|
|
7880
7878
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
7881
7879
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -8578,7 +8576,7 @@ class FormatadorDelegua {
|
|
|
8578
8576
|
}
|
|
8579
8577
|
exports.FormatadorDelegua = FormatadorDelegua;
|
|
8580
8578
|
|
|
8581
|
-
},{"../construtos":
|
|
8579
|
+
},{"../construtos":44,"../tipos-de-simbolos/delegua":168}],103:[function(require,module,exports){
|
|
8582
8580
|
"use strict";
|
|
8583
8581
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8584
8582
|
exports.FormatadorPitugues = void 0;
|
|
@@ -8754,7 +8752,7 @@ class FormatadorPitugues {
|
|
|
8754
8752
|
}
|
|
8755
8753
|
exports.FormatadorPitugues = FormatadorPitugues;
|
|
8756
8754
|
|
|
8757
|
-
},{}],
|
|
8755
|
+
},{}],104:[function(require,module,exports){
|
|
8758
8756
|
"use strict";
|
|
8759
8757
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
8760
8758
|
if (k2 === undefined) k2 = k;
|
|
@@ -8774,7 +8772,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
8774
8772
|
__exportStar(require("./formatador-delegua"), exports);
|
|
8775
8773
|
__exportStar(require("./formatador-pitugues"), exports);
|
|
8776
8774
|
|
|
8777
|
-
},{"./formatador-delegua":
|
|
8775
|
+
},{"./formatador-delegua":102,"./formatador-pitugues":103}],105:[function(require,module,exports){
|
|
8778
8776
|
"use strict";
|
|
8779
8777
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8780
8778
|
exports.uuidv4 = uuidv4;
|
|
@@ -8798,7 +8796,7 @@ function uuidv4() {
|
|
|
8798
8796
|
});
|
|
8799
8797
|
}
|
|
8800
8798
|
|
|
8801
|
-
},{}],
|
|
8799
|
+
},{}],106:[function(require,module,exports){
|
|
8802
8800
|
"use strict";
|
|
8803
8801
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
8804
8802
|
if (k2 === undefined) k2 = k;
|
|
@@ -8827,7 +8825,7 @@ __exportStar(require("./interpretador"), exports);
|
|
|
8827
8825
|
__exportStar(require("./lexador"), exports);
|
|
8828
8826
|
__exportStar(require("./tradutores"), exports);
|
|
8829
8827
|
|
|
8830
|
-
},{"./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){
|
|
8831
8829
|
"use strict";
|
|
8832
8830
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8833
8831
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -8954,7 +8952,7 @@ function tipoInferenciaParaTipoDadosElementar(tipoInferencia) {
|
|
|
8954
8952
|
}
|
|
8955
8953
|
}
|
|
8956
8954
|
|
|
8957
|
-
},{"./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){
|
|
8958
8956
|
"use strict";
|
|
8959
8957
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8960
8958
|
exports.InformacaoVariavelOuConstante = void 0;
|
|
@@ -8971,15 +8969,15 @@ class InformacaoVariavelOuConstante {
|
|
|
8971
8969
|
}
|
|
8972
8970
|
exports.InformacaoVariavelOuConstante = InformacaoVariavelOuConstante;
|
|
8973
8971
|
|
|
8974
|
-
},{}],
|
|
8972
|
+
},{}],109:[function(require,module,exports){
|
|
8975
8973
|
"use strict";
|
|
8976
8974
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8977
8975
|
|
|
8978
|
-
},{}],
|
|
8976
|
+
},{}],110:[function(require,module,exports){
|
|
8979
8977
|
"use strict";
|
|
8980
8978
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8981
8979
|
|
|
8982
|
-
},{}],
|
|
8980
|
+
},{}],111:[function(require,module,exports){
|
|
8983
8981
|
"use strict";
|
|
8984
8982
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8985
8983
|
exports.DiagnosticoSeveridade = void 0;
|
|
@@ -8991,7 +8989,7 @@ var DiagnosticoSeveridade;
|
|
|
8991
8989
|
DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
|
|
8992
8990
|
})(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
|
|
8993
8991
|
|
|
8994
|
-
},{}],
|
|
8992
|
+
},{}],112:[function(require,module,exports){
|
|
8995
8993
|
"use strict";
|
|
8996
8994
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
8997
8995
|
if (k2 === undefined) k2 = k;
|
|
@@ -9010,11 +9008,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
9010
9008
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9011
9009
|
__exportStar(require("./diagnostico-analisador-semantico"), exports);
|
|
9012
9010
|
|
|
9013
|
-
},{"./diagnostico-analisador-semantico":
|
|
9011
|
+
},{"./diagnostico-analisador-semantico":111}],113:[function(require,module,exports){
|
|
9014
9012
|
"use strict";
|
|
9015
9013
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9016
9014
|
|
|
9017
|
-
},{}],
|
|
9015
|
+
},{}],114:[function(require,module,exports){
|
|
9018
9016
|
"use strict";
|
|
9019
9017
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9020
9018
|
if (k2 === undefined) k2 = k;
|
|
@@ -9049,11 +9047,7 @@ __exportStar(require("./construtos"), exports);
|
|
|
9049
9047
|
__exportStar(require("./erros"), exports);
|
|
9050
9048
|
__exportStar(require("./retornos"), exports);
|
|
9051
9049
|
|
|
9052
|
-
},{"./avaliador-sintatico-interface":
|
|
9053
|
-
"use strict";
|
|
9054
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9055
|
-
|
|
9056
|
-
},{}],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){
|
|
9057
9051
|
"use strict";
|
|
9058
9052
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9059
9053
|
|
|
@@ -9079,6 +9073,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
9079
9073
|
|
|
9080
9074
|
},{}],121:[function(require,module,exports){
|
|
9081
9075
|
"use strict";
|
|
9076
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9077
|
+
|
|
9078
|
+
},{}],122:[function(require,module,exports){
|
|
9079
|
+
"use strict";
|
|
9082
9080
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9083
9081
|
if (k2 === undefined) k2 = k;
|
|
9084
9082
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -9099,11 +9097,7 @@ __exportStar(require("./retorno-execucao-interface"), exports);
|
|
|
9099
9097
|
__exportStar(require("./retorno-interpretador"), exports);
|
|
9100
9098
|
__exportStar(require("./retorno-lexador"), exports);
|
|
9101
9099
|
|
|
9102
|
-
},{"./retorno-avaliador-sintatico":
|
|
9103
|
-
"use strict";
|
|
9104
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9105
|
-
|
|
9106
|
-
},{}],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){
|
|
9107
9101
|
"use strict";
|
|
9108
9102
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9109
9103
|
|
|
@@ -9133,6 +9127,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
9133
9127
|
|
|
9134
9128
|
},{}],130:[function(require,module,exports){
|
|
9135
9129
|
"use strict";
|
|
9130
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9131
|
+
|
|
9132
|
+
},{}],131:[function(require,module,exports){
|
|
9133
|
+
"use strict";
|
|
9136
9134
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9137
9135
|
if (k2 === undefined) k2 = k;
|
|
9138
9136
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -9196,7 +9194,7 @@ function carregarBibliotecasGlobais(pilhaEscoposExecucao) {
|
|
|
9196
9194
|
pilhaEscoposExecucao.definirVariavel('tupla', new funcao_padrao_1.FuncaoPadrao(1, bibliotecaGlobal.tupla));
|
|
9197
9195
|
}
|
|
9198
9196
|
|
|
9199
|
-
},{"../bibliotecas/biblioteca-global":
|
|
9197
|
+
},{"../bibliotecas/biblioteca-global":17,"./estruturas/funcao-padrao":136}],132:[function(require,module,exports){
|
|
9200
9198
|
"use strict";
|
|
9201
9199
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9202
9200
|
exports.Chamavel = void 0;
|
|
@@ -9210,7 +9208,7 @@ class Chamavel {
|
|
|
9210
9208
|
}
|
|
9211
9209
|
exports.Chamavel = Chamavel;
|
|
9212
9210
|
|
|
9213
|
-
},{}],
|
|
9211
|
+
},{}],133:[function(require,module,exports){
|
|
9214
9212
|
"use strict";
|
|
9215
9213
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9216
9214
|
exports.ClassePadrao = void 0;
|
|
@@ -9251,7 +9249,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
|
|
|
9251
9249
|
}
|
|
9252
9250
|
exports.ClassePadrao = ClassePadrao;
|
|
9253
9251
|
|
|
9254
|
-
},{"./chamavel":
|
|
9252
|
+
},{"./chamavel":132}],134:[function(require,module,exports){
|
|
9255
9253
|
"use strict";
|
|
9256
9254
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9257
9255
|
exports.DeleguaFuncao = void 0;
|
|
@@ -9409,7 +9407,7 @@ class DeleguaFuncao extends chamavel_1.Chamavel {
|
|
|
9409
9407
|
}
|
|
9410
9408
|
exports.DeleguaFuncao = DeleguaFuncao;
|
|
9411
9409
|
|
|
9412
|
-
},{"../../declaracoes":
|
|
9410
|
+
},{"../../declaracoes":84,"../../espaco-variaveis":99,"../../inferenciador":107,"../../quebras":164,"./chamavel":132}],135:[function(require,module,exports){
|
|
9413
9411
|
"use strict";
|
|
9414
9412
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9415
9413
|
exports.DescritorTipoClasse = void 0;
|
|
@@ -9490,7 +9488,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
|
|
|
9490
9488
|
}
|
|
9491
9489
|
exports.DescritorTipoClasse = DescritorTipoClasse;
|
|
9492
9490
|
|
|
9493
|
-
},{"../../excecoes":
|
|
9491
|
+
},{"../../excecoes":101,"./chamavel":132,"./objeto-delegua-classe":140}],136:[function(require,module,exports){
|
|
9494
9492
|
"use strict";
|
|
9495
9493
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9496
9494
|
exports.FuncaoPadrao = void 0;
|
|
@@ -9526,7 +9524,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
|
|
|
9526
9524
|
}
|
|
9527
9525
|
exports.FuncaoPadrao = FuncaoPadrao;
|
|
9528
9526
|
|
|
9529
|
-
},{"./chamavel":
|
|
9527
|
+
},{"./chamavel":132}],137:[function(require,module,exports){
|
|
9530
9528
|
"use strict";
|
|
9531
9529
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9532
9530
|
if (k2 === undefined) k2 = k;
|
|
@@ -9553,7 +9551,7 @@ __exportStar(require("./modulo"), exports);
|
|
|
9553
9551
|
__exportStar(require("./objeto-delegua-classe"), exports);
|
|
9554
9552
|
__exportStar(require("./objeto-padrao"), exports);
|
|
9555
9553
|
|
|
9556
|
-
},{"./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){
|
|
9557
9555
|
"use strict";
|
|
9558
9556
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9559
9557
|
exports.MetodoPrimitiva = void 0;
|
|
@@ -9595,7 +9593,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
|
|
|
9595
9593
|
}
|
|
9596
9594
|
exports.MetodoPrimitiva = MetodoPrimitiva;
|
|
9597
9595
|
|
|
9598
|
-
},{"./chamavel":
|
|
9596
|
+
},{"./chamavel":132}],139:[function(require,module,exports){
|
|
9599
9597
|
"use strict";
|
|
9600
9598
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9601
9599
|
exports.DeleguaModulo = void 0;
|
|
@@ -9621,7 +9619,7 @@ class DeleguaModulo {
|
|
|
9621
9619
|
}
|
|
9622
9620
|
exports.DeleguaModulo = DeleguaModulo;
|
|
9623
9621
|
|
|
9624
|
-
},{}],
|
|
9622
|
+
},{}],140:[function(require,module,exports){
|
|
9625
9623
|
"use strict";
|
|
9626
9624
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9627
9625
|
exports.ObjetoDeleguaClasse = void 0;
|
|
@@ -9689,7 +9687,7 @@ class ObjetoDeleguaClasse {
|
|
|
9689
9687
|
}
|
|
9690
9688
|
exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
|
|
9691
9689
|
|
|
9692
|
-
},{"../../excecoes":
|
|
9690
|
+
},{"../../excecoes":101}],141:[function(require,module,exports){
|
|
9693
9691
|
"use strict";
|
|
9694
9692
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9695
9693
|
exports.ObjetoPadrao = void 0;
|
|
@@ -9723,7 +9721,7 @@ class ObjetoPadrao {
|
|
|
9723
9721
|
}
|
|
9724
9722
|
exports.ObjetoPadrao = ObjetoPadrao;
|
|
9725
9723
|
|
|
9726
|
-
},{}],
|
|
9724
|
+
},{}],142:[function(require,module,exports){
|
|
9727
9725
|
"use strict";
|
|
9728
9726
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9729
9727
|
if (k2 === undefined) k2 = k;
|
|
@@ -9743,7 +9741,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
9743
9741
|
__exportStar(require("./interpretador"), exports);
|
|
9744
9742
|
__exportStar(require("./interpretador-base"), exports);
|
|
9745
9743
|
|
|
9746
|
-
},{"./interpretador":
|
|
9744
|
+
},{"./interpretador":144,"./interpretador-base":143}],143:[function(require,module,exports){
|
|
9747
9745
|
(function (process){(function (){
|
|
9748
9746
|
"use strict";
|
|
9749
9747
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
@@ -11155,7 +11153,7 @@ class InterpretadorBase {
|
|
|
11155
11153
|
exports.InterpretadorBase = InterpretadorBase;
|
|
11156
11154
|
|
|
11157
11155
|
}).call(this)}).call(this,require('_process'))
|
|
11158
|
-
},{"../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){
|
|
11159
11157
|
"use strict";
|
|
11160
11158
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11161
11159
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -11444,7 +11442,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
11444
11442
|
}
|
|
11445
11443
|
exports.Interpretador = Interpretador;
|
|
11446
11444
|
|
|
11447
|
-
},{"../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){
|
|
11448
11446
|
"use strict";
|
|
11449
11447
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11450
11448
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -11708,7 +11706,7 @@ class PilhaEscoposExecucao {
|
|
|
11708
11706
|
}
|
|
11709
11707
|
exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
|
|
11710
11708
|
|
|
11711
|
-
},{"../excecoes":
|
|
11709
|
+
},{"../excecoes":101,"../inferenciador":107,"../lexador":157,"../tipos-de-dados/delegua":165,"./estruturas":137}],146:[function(require,module,exports){
|
|
11712
11710
|
"use strict";
|
|
11713
11711
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
11714
11712
|
if (k2 === undefined) k2 = k;
|
|
@@ -11731,7 +11729,7 @@ __exportStar(require("./lexador-guarani"), exports);
|
|
|
11731
11729
|
__exportStar(require("./lexador-portugol-ipt"), exports);
|
|
11732
11730
|
__exportStar(require("./lexador-tenda"), exports);
|
|
11733
11731
|
|
|
11734
|
-
},{"./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){
|
|
11735
11733
|
"use strict";
|
|
11736
11734
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11737
11735
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -12021,7 +12019,7 @@ class LexadorEguaClassico {
|
|
|
12021
12019
|
}
|
|
12022
12020
|
exports.LexadorEguaClassico = LexadorEguaClassico;
|
|
12023
12021
|
|
|
12024
|
-
},{"../../tipos-de-simbolos/egua-classico":
|
|
12022
|
+
},{"../../tipos-de-simbolos/egua-classico":169,"../simbolo":163,"./palavras-reservadas/egua-classico":152}],148:[function(require,module,exports){
|
|
12025
12023
|
"use strict";
|
|
12026
12024
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12027
12025
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -12140,7 +12138,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
|
|
|
12140
12138
|
}
|
|
12141
12139
|
exports.LexadorGuarani = LexadorGuarani;
|
|
12142
12140
|
|
|
12143
|
-
},{"../../tipos-de-simbolos/guarani":
|
|
12141
|
+
},{"../../tipos-de-simbolos/guarani":170,"../lexador-base":159,"./palavras-reservadas/guarani":153}],149:[function(require,module,exports){
|
|
12144
12142
|
"use strict";
|
|
12145
12143
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12146
12144
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -12543,7 +12541,7 @@ class LexadorPitugues {
|
|
|
12543
12541
|
}
|
|
12544
12542
|
exports.LexadorPitugues = LexadorPitugues;
|
|
12545
12543
|
|
|
12546
|
-
},{"../../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){
|
|
12547
12545
|
"use strict";
|
|
12548
12546
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12549
12547
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -12784,7 +12782,7 @@ class LexadorPortugolIpt {
|
|
|
12784
12782
|
}
|
|
12785
12783
|
exports.LexadorPortugolIpt = LexadorPortugolIpt;
|
|
12786
12784
|
|
|
12787
|
-
},{"../../tipos-de-simbolos/portugol-ipt":
|
|
12785
|
+
},{"../../tipos-de-simbolos/portugol-ipt":173,"../simbolo":163,"./palavras-reservadas/portugol-ipt":155}],151:[function(require,module,exports){
|
|
12788
12786
|
"use strict";
|
|
12789
12787
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12790
12788
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13184,7 +13182,7 @@ class LexadorTenda {
|
|
|
13184
13182
|
}
|
|
13185
13183
|
exports.LexadorTenda = LexadorTenda;
|
|
13186
13184
|
|
|
13187
|
-
},{"../../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){
|
|
13188
13186
|
"use strict";
|
|
13189
13187
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13190
13188
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13225,7 +13223,7 @@ exports.palavrasReservadas = {
|
|
|
13225
13223
|
verdadeiro: egua_classico_1.default.VERDADEIRO,
|
|
13226
13224
|
};
|
|
13227
13225
|
|
|
13228
|
-
},{"../../../tipos-de-simbolos/egua-classico":
|
|
13226
|
+
},{"../../../tipos-de-simbolos/egua-classico":169}],153:[function(require,module,exports){
|
|
13229
13227
|
"use strict";
|
|
13230
13228
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13231
13229
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13237,7 +13235,7 @@ exports.palavrasReservadas = {
|
|
|
13237
13235
|
hai: guarani_1.default.HAI,
|
|
13238
13236
|
};
|
|
13239
13237
|
|
|
13240
|
-
},{"../../../tipos-de-simbolos/guarani":
|
|
13238
|
+
},{"../../../tipos-de-simbolos/guarani":170}],154:[function(require,module,exports){
|
|
13241
13239
|
"use strict";
|
|
13242
13240
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13243
13241
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13300,7 +13298,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
13300
13298
|
verdadeiro: pitugues_1.default.VERDADEIRO,
|
|
13301
13299
|
};
|
|
13302
13300
|
|
|
13303
|
-
},{"../../../tipos-de-simbolos/pitugues":
|
|
13301
|
+
},{"../../../tipos-de-simbolos/pitugues":172}],155:[function(require,module,exports){
|
|
13304
13302
|
"use strict";
|
|
13305
13303
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13306
13304
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13322,7 +13320,7 @@ exports.palavrasReservadas = {
|
|
|
13322
13320
|
senão: portugol_ipt_1.default.SENAO,
|
|
13323
13321
|
};
|
|
13324
13322
|
|
|
13325
|
-
},{"../../../tipos-de-simbolos/portugol-ipt":
|
|
13323
|
+
},{"../../../tipos-de-simbolos/portugol-ipt":173}],156:[function(require,module,exports){
|
|
13326
13324
|
"use strict";
|
|
13327
13325
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13328
13326
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13376,7 +13374,7 @@ exports.palavrasReservadas = {
|
|
|
13376
13374
|
verdadeiro: tenda_1.default.VERDADEIRO,
|
|
13377
13375
|
};
|
|
13378
13376
|
|
|
13379
|
-
},{"../../../tipos-de-simbolos/tenda":
|
|
13377
|
+
},{"../../../tipos-de-simbolos/tenda":174}],157:[function(require,module,exports){
|
|
13380
13378
|
"use strict";
|
|
13381
13379
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13382
13380
|
if (k2 === undefined) k2 = k;
|
|
@@ -13399,7 +13397,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
|
|
|
13399
13397
|
__exportStar(require("./micro-lexador"), exports);
|
|
13400
13398
|
__exportStar(require("./simbolo"), exports);
|
|
13401
13399
|
|
|
13402
|
-
},{"./dialetos":
|
|
13400
|
+
},{"./dialetos":146,"./lexador":160,"./lexador-base-linha-unica":158,"./micro-lexador":161,"./simbolo":163}],158:[function(require,module,exports){
|
|
13403
13401
|
"use strict";
|
|
13404
13402
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13405
13403
|
exports.LexadorBaseLinhaUnica = void 0;
|
|
@@ -13483,7 +13481,7 @@ class LexadorBaseLinhaUnica {
|
|
|
13483
13481
|
}
|
|
13484
13482
|
exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
|
|
13485
13483
|
|
|
13486
|
-
},{"./simbolo":
|
|
13484
|
+
},{"./simbolo":163}],159:[function(require,module,exports){
|
|
13487
13485
|
"use strict";
|
|
13488
13486
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13489
13487
|
exports.LexadorBase = void 0;
|
|
@@ -13597,7 +13595,7 @@ class LexadorBase {
|
|
|
13597
13595
|
}
|
|
13598
13596
|
exports.LexadorBase = LexadorBase;
|
|
13599
13597
|
|
|
13600
|
-
},{"./simbolo":
|
|
13598
|
+
},{"./simbolo":163}],160:[function(require,module,exports){
|
|
13601
13599
|
"use strict";
|
|
13602
13600
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13603
13601
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14057,7 +14055,7 @@ class Lexador {
|
|
|
14057
14055
|
}
|
|
14058
14056
|
exports.Lexador = Lexador;
|
|
14059
14057
|
|
|
14060
|
-
},{"../tipos-de-simbolos/delegua":
|
|
14058
|
+
},{"../tipos-de-simbolos/delegua":168,"./palavras-reservadas":162,"./simbolo":163,"browser-process-hrtime":347}],161:[function(require,module,exports){
|
|
14061
14059
|
"use strict";
|
|
14062
14060
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14063
14061
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14272,7 +14270,7 @@ class MicroLexador {
|
|
|
14272
14270
|
}
|
|
14273
14271
|
exports.MicroLexador = MicroLexador;
|
|
14274
14272
|
|
|
14275
|
-
},{"../tipos-de-simbolos/microgramaticas/delegua":
|
|
14273
|
+
},{"../tipos-de-simbolos/microgramaticas/delegua":171,"./palavras-reservadas":162,"./simbolo":163}],162:[function(require,module,exports){
|
|
14276
14274
|
"use strict";
|
|
14277
14275
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14278
14276
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14335,7 +14333,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
14335
14333
|
verdadeiro: delegua_1.default.VERDADEIRO,
|
|
14336
14334
|
};
|
|
14337
14335
|
|
|
14338
|
-
},{"../tipos-de-simbolos/delegua":
|
|
14336
|
+
},{"../tipos-de-simbolos/delegua":168}],163:[function(require,module,exports){
|
|
14339
14337
|
"use strict";
|
|
14340
14338
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14341
14339
|
exports.Simbolo = void 0;
|
|
@@ -14353,7 +14351,7 @@ class Simbolo {
|
|
|
14353
14351
|
}
|
|
14354
14352
|
exports.Simbolo = Simbolo;
|
|
14355
14353
|
|
|
14356
|
-
},{}],
|
|
14354
|
+
},{}],164:[function(require,module,exports){
|
|
14357
14355
|
"use strict";
|
|
14358
14356
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14359
14357
|
exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
|
|
@@ -14377,7 +14375,7 @@ class ContinuarQuebra extends Quebra {
|
|
|
14377
14375
|
}
|
|
14378
14376
|
exports.ContinuarQuebra = ContinuarQuebra;
|
|
14379
14377
|
|
|
14380
|
-
},{}],
|
|
14378
|
+
},{}],165:[function(require,module,exports){
|
|
14381
14379
|
"use strict";
|
|
14382
14380
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14383
14381
|
exports.default = {
|
|
@@ -14407,7 +14405,7 @@ exports.default = {
|
|
|
14407
14405
|
VETOR_TEXTO: 'texto[]',
|
|
14408
14406
|
};
|
|
14409
14407
|
|
|
14410
|
-
},{}],
|
|
14408
|
+
},{}],166:[function(require,module,exports){
|
|
14411
14409
|
"use strict";
|
|
14412
14410
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14413
14411
|
exports.default = {
|
|
@@ -14426,7 +14424,7 @@ exports.default = {
|
|
|
14426
14424
|
TEXTO: 'string',
|
|
14427
14425
|
};
|
|
14428
14426
|
|
|
14429
|
-
},{}],
|
|
14427
|
+
},{}],167:[function(require,module,exports){
|
|
14430
14428
|
"use strict";
|
|
14431
14429
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14432
14430
|
exports.default = {
|
|
@@ -14452,7 +14450,7 @@ exports.default = {
|
|
|
14452
14450
|
VIRGULA: 'VIRGULA',
|
|
14453
14451
|
};
|
|
14454
14452
|
|
|
14455
|
-
},{}],
|
|
14453
|
+
},{}],168:[function(require,module,exports){
|
|
14456
14454
|
"use strict";
|
|
14457
14455
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14458
14456
|
exports.default = {
|
|
@@ -14547,7 +14545,7 @@ exports.default = {
|
|
|
14547
14545
|
VIRGULA: 'VIRGULA',
|
|
14548
14546
|
};
|
|
14549
14547
|
|
|
14550
|
-
},{}],
|
|
14548
|
+
},{}],169:[function(require,module,exports){
|
|
14551
14549
|
"use strict";
|
|
14552
14550
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14553
14551
|
exports.default = {
|
|
@@ -14625,7 +14623,7 @@ exports.default = {
|
|
|
14625
14623
|
VIRGULA: 'VIRGULA',
|
|
14626
14624
|
};
|
|
14627
14625
|
|
|
14628
|
-
},{}],
|
|
14626
|
+
},{}],170:[function(require,module,exports){
|
|
14629
14627
|
"use strict";
|
|
14630
14628
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14631
14629
|
exports.default = {
|
|
@@ -14642,7 +14640,7 @@ exports.default = {
|
|
|
14642
14640
|
VIRGULA: 'VIRGULA',
|
|
14643
14641
|
};
|
|
14644
14642
|
|
|
14645
|
-
},{}],
|
|
14643
|
+
},{}],171:[function(require,module,exports){
|
|
14646
14644
|
"use strict";
|
|
14647
14645
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14648
14646
|
exports.default = {
|
|
@@ -14691,7 +14689,7 @@ exports.default = {
|
|
|
14691
14689
|
VIRGULA: 'VIRGULA',
|
|
14692
14690
|
};
|
|
14693
14691
|
|
|
14694
|
-
},{}],
|
|
14692
|
+
},{}],172:[function(require,module,exports){
|
|
14695
14693
|
"use strict";
|
|
14696
14694
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14697
14695
|
exports.default = {
|
|
@@ -14774,7 +14772,7 @@ exports.default = {
|
|
|
14774
14772
|
VIRGULA: 'VIRGULA',
|
|
14775
14773
|
};
|
|
14776
14774
|
|
|
14777
|
-
},{}],
|
|
14775
|
+
},{}],173:[function(require,module,exports){
|
|
14778
14776
|
"use strict";
|
|
14779
14777
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14780
14778
|
exports.default = {
|
|
@@ -14813,7 +14811,7 @@ exports.default = {
|
|
|
14813
14811
|
VIRGULA: 'VIRGULA',
|
|
14814
14812
|
};
|
|
14815
14813
|
|
|
14816
|
-
},{}],
|
|
14814
|
+
},{}],174:[function(require,module,exports){
|
|
14817
14815
|
"use strict";
|
|
14818
14816
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14819
14817
|
// Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
|
|
@@ -14916,7 +14914,7 @@ exports.default = {
|
|
|
14916
14914
|
VIRGULA: 'VIRGULA',
|
|
14917
14915
|
};
|
|
14918
14916
|
|
|
14919
|
-
},{}],
|
|
14917
|
+
},{}],175:[function(require,module,exports){
|
|
14920
14918
|
"use strict";
|
|
14921
14919
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14922
14920
|
if (k2 === undefined) k2 = k;
|
|
@@ -14942,7 +14940,7 @@ __exportStar(require("./tradutor-reverso-javascript"), exports);
|
|
|
14942
14940
|
__exportStar(require("./tradutor-reverso-python"), exports);
|
|
14943
14941
|
__exportStar(require("./tradutor-reverso-tenda"), exports);
|
|
14944
14942
|
|
|
14945
|
-
},{"./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){
|
|
14946
14944
|
"use strict";
|
|
14947
14945
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
14948
14946
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -16182,7 +16180,7 @@ __decorate([
|
|
|
16182
16180
|
Decorators_1.Override
|
|
16183
16181
|
], Python3Lexer.prototype, "nextToken", null);
|
|
16184
16182
|
|
|
16185
|
-
},{"./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){
|
|
16186
16184
|
"use strict";
|
|
16187
16185
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
16188
16186
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -27429,7 +27427,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
27429
27427
|
}
|
|
27430
27428
|
exports.Yield_argContext = Yield_argContext;
|
|
27431
27429
|
|
|
27432
|
-
},{"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){
|
|
27433
27431
|
"use strict";
|
|
27434
27432
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27435
27433
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28063,7 +28061,7 @@ class TradutorAssemblyScript {
|
|
|
28063
28061
|
}
|
|
28064
28062
|
exports.TradutorAssemblyScript = TradutorAssemblyScript;
|
|
28065
28063
|
|
|
28066
|
-
},{"../construtos":
|
|
28064
|
+
},{"../construtos":44,"../declaracoes":84,"../tipos-de-simbolos/delegua":168}],179:[function(require,module,exports){
|
|
28067
28065
|
"use strict";
|
|
28068
28066
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28069
28067
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28802,7 +28800,7 @@ class TradutorJavaScript {
|
|
|
28802
28800
|
}
|
|
28803
28801
|
exports.TradutorJavaScript = TradutorJavaScript;
|
|
28804
28802
|
|
|
28805
|
-
},{"../construtos":
|
|
28803
|
+
},{"../construtos":44,"../declaracoes":84,"../tipos-de-simbolos/delegua":168}],180:[function(require,module,exports){
|
|
28806
28804
|
"use strict";
|
|
28807
28805
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28808
28806
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29253,7 +29251,7 @@ class TradutorMermaidJs {
|
|
|
29253
29251
|
}
|
|
29254
29252
|
exports.TradutorMermaidJs = TradutorMermaidJs;
|
|
29255
29253
|
|
|
29256
|
-
},{"../tipos-de-simbolos/delegua":
|
|
29254
|
+
},{"../tipos-de-simbolos/delegua":168}],181:[function(require,module,exports){
|
|
29257
29255
|
"use strict";
|
|
29258
29256
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29259
29257
|
exports.TradutorPortugolIpt = void 0;
|
|
@@ -29315,7 +29313,7 @@ class TradutorPortugolIpt {
|
|
|
29315
29313
|
}
|
|
29316
29314
|
exports.TradutorPortugolIpt = TradutorPortugolIpt;
|
|
29317
29315
|
|
|
29318
|
-
},{"../avaliador-sintatico/dialetos":
|
|
29316
|
+
},{"../avaliador-sintatico/dialetos":8,"../lexador/dialetos":146}],182:[function(require,module,exports){
|
|
29319
29317
|
"use strict";
|
|
29320
29318
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29321
29319
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29955,7 +29953,7 @@ class TradutorPython {
|
|
|
29955
29953
|
}
|
|
29956
29954
|
exports.TradutorPython = TradutorPython;
|
|
29957
29955
|
|
|
29958
|
-
},{"../construtos":
|
|
29956
|
+
},{"../construtos":44,"../declaracoes":84,"../tipos-de-simbolos/delegua":168}],183:[function(require,module,exports){
|
|
29959
29957
|
"use strict";
|
|
29960
29958
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29961
29959
|
exports.TradutorReversoJavaScript = void 0;
|
|
@@ -30350,7 +30348,7 @@ class TradutorReversoJavaScript {
|
|
|
30350
30348
|
}
|
|
30351
30349
|
exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
|
|
30352
30350
|
|
|
30353
|
-
},{}],
|
|
30351
|
+
},{}],184:[function(require,module,exports){
|
|
30354
30352
|
"use strict";
|
|
30355
30353
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30356
30354
|
exports.TradutorReversoPython = void 0;
|
|
@@ -30423,7 +30421,7 @@ class TradutorReversoPython {
|
|
|
30423
30421
|
}
|
|
30424
30422
|
exports.TradutorReversoPython = TradutorReversoPython;
|
|
30425
30423
|
|
|
30426
|
-
},{"./python/python3-lexer":
|
|
30424
|
+
},{"./python/python3-lexer":176,"./python/python3-parser":177,"antlr4ts":301,"antlr4ts/tree/ParseTreeWalker":320}],185:[function(require,module,exports){
|
|
30427
30425
|
"use strict";
|
|
30428
30426
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
30429
30427
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -31008,7 +31006,7 @@ class TradutorReversoTenda {
|
|
|
31008
31006
|
}
|
|
31009
31007
|
exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
31010
31008
|
|
|
31011
|
-
},{"../construtos":
|
|
31009
|
+
},{"../construtos":44,"../tipos-de-simbolos/tenda":174}],186:[function(require,module,exports){
|
|
31012
31010
|
"use strict";
|
|
31013
31011
|
/*!
|
|
31014
31012
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31016,7 +31014,7 @@ exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
|
31016
31014
|
*/
|
|
31017
31015
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31018
31016
|
|
|
31019
|
-
},{}],
|
|
31017
|
+
},{}],187:[function(require,module,exports){
|
|
31020
31018
|
"use strict";
|
|
31021
31019
|
/*!
|
|
31022
31020
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31024,7 +31022,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
31024
31022
|
*/
|
|
31025
31023
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31026
31024
|
|
|
31027
|
-
},{}],
|
|
31025
|
+
},{}],188:[function(require,module,exports){
|
|
31028
31026
|
"use strict";
|
|
31029
31027
|
/*!
|
|
31030
31028
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31186,7 +31184,7 @@ __decorate([
|
|
|
31186
31184
|
], ANTLRInputStream.prototype, "toString", null);
|
|
31187
31185
|
exports.ANTLRInputStream = ANTLRInputStream;
|
|
31188
31186
|
|
|
31189
|
-
},{"./Decorators":
|
|
31187
|
+
},{"./Decorators":199,"./IntStream":205,"assert":342}],189:[function(require,module,exports){
|
|
31190
31188
|
"use strict";
|
|
31191
31189
|
/*!
|
|
31192
31190
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31269,7 +31267,7 @@ __decorate([
|
|
|
31269
31267
|
], BailErrorStrategy.prototype, "sync", null);
|
|
31270
31268
|
exports.BailErrorStrategy = BailErrorStrategy;
|
|
31271
31269
|
|
|
31272
|
-
},{"./Decorators":
|
|
31270
|
+
},{"./Decorators":199,"./DefaultErrorStrategy":200,"./InputMismatchException":204,"./misc/ParseCancellationException":316}],190:[function(require,module,exports){
|
|
31273
31271
|
"use strict";
|
|
31274
31272
|
/*!
|
|
31275
31273
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31759,7 +31757,7 @@ BufferedTokenStream = __decorate([
|
|
|
31759
31757
|
], BufferedTokenStream);
|
|
31760
31758
|
exports.BufferedTokenStream = BufferedTokenStream;
|
|
31761
31759
|
|
|
31762
|
-
},{"./CommonToken":
|
|
31760
|
+
},{"./CommonToken":195,"./Decorators":199,"./Lexer":207,"./Token":224,"./misc/Interval":311,"assert":342}],191:[function(require,module,exports){
|
|
31763
31761
|
"use strict";
|
|
31764
31762
|
/*!
|
|
31765
31763
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31767,7 +31765,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
|
|
|
31767
31765
|
*/
|
|
31768
31766
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31769
31767
|
|
|
31770
|
-
},{}],
|
|
31768
|
+
},{}],192:[function(require,module,exports){
|
|
31771
31769
|
"use strict";
|
|
31772
31770
|
/*!
|
|
31773
31771
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31901,7 +31899,7 @@ var CharStreams;
|
|
|
31901
31899
|
// }
|
|
31902
31900
|
})(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
|
|
31903
31901
|
|
|
31904
|
-
},{"./CodePointBuffer":
|
|
31902
|
+
},{"./CodePointBuffer":193,"./CodePointCharStream":194,"./IntStream":205}],193:[function(require,module,exports){
|
|
31905
31903
|
"use strict";
|
|
31906
31904
|
/*!
|
|
31907
31905
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32136,7 +32134,7 @@ exports.CodePointBuffer = CodePointBuffer;
|
|
|
32136
32134
|
CodePointBuffer.Builder = Builder;
|
|
32137
32135
|
})(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
|
|
32138
32136
|
|
|
32139
|
-
},{"./misc/Character":
|
|
32137
|
+
},{"./misc/Character":307,"assert":342}],194:[function(require,module,exports){
|
|
32140
32138
|
"use strict";
|
|
32141
32139
|
/*!
|
|
32142
32140
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32286,7 +32284,7 @@ __decorate([
|
|
|
32286
32284
|
], CodePointCharStream.prototype, "getText", null);
|
|
32287
32285
|
exports.CodePointCharStream = CodePointCharStream;
|
|
32288
32286
|
|
|
32289
|
-
},{"./Decorators":
|
|
32287
|
+
},{"./Decorators":199,"./IntStream":205,"./misc/Interval":311,"assert":342}],195:[function(require,module,exports){
|
|
32290
32288
|
"use strict";
|
|
32291
32289
|
/*!
|
|
32292
32290
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32516,7 +32514,7 @@ CommonToken = __decorate([
|
|
|
32516
32514
|
], CommonToken);
|
|
32517
32515
|
exports.CommonToken = CommonToken;
|
|
32518
32516
|
|
|
32519
|
-
},{"./Decorators":
|
|
32517
|
+
},{"./Decorators":199,"./Token":224,"./misc/Interval":311}],196:[function(require,module,exports){
|
|
32520
32518
|
"use strict";
|
|
32521
32519
|
/*!
|
|
32522
32520
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32580,7 +32578,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
|
|
|
32580
32578
|
CommonTokenFactory.DEFAULT = new CommonTokenFactory();
|
|
32581
32579
|
})(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
|
|
32582
32580
|
|
|
32583
|
-
},{"./CommonToken":
|
|
32581
|
+
},{"./CommonToken":195,"./Decorators":199,"./misc/Interval":311}],197:[function(require,module,exports){
|
|
32584
32582
|
"use strict";
|
|
32585
32583
|
/*!
|
|
32586
32584
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32707,7 +32705,7 @@ CommonTokenStream = __decorate([
|
|
|
32707
32705
|
], CommonTokenStream);
|
|
32708
32706
|
exports.CommonTokenStream = CommonTokenStream;
|
|
32709
32707
|
|
|
32710
|
-
},{"./BufferedTokenStream":
|
|
32708
|
+
},{"./BufferedTokenStream":190,"./Decorators":199,"./Token":224}],198:[function(require,module,exports){
|
|
32711
32709
|
"use strict";
|
|
32712
32710
|
/*!
|
|
32713
32711
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32741,7 +32739,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
|
|
|
32741
32739
|
*/
|
|
32742
32740
|
ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
|
|
32743
32741
|
|
|
32744
|
-
},{}],
|
|
32742
|
+
},{}],199:[function(require,module,exports){
|
|
32745
32743
|
"use strict";
|
|
32746
32744
|
/*!
|
|
32747
32745
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32768,7 +32766,7 @@ function SuppressWarnings(options) {
|
|
|
32768
32766
|
}
|
|
32769
32767
|
exports.SuppressWarnings = SuppressWarnings;
|
|
32770
32768
|
|
|
32771
|
-
},{}],
|
|
32769
|
+
},{}],200:[function(require,module,exports){
|
|
32772
32770
|
"use strict";
|
|
32773
32771
|
/*!
|
|
32774
32772
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33582,7 +33580,7 @@ __decorate([
|
|
|
33582
33580
|
], DefaultErrorStrategy.prototype, "consumeUntil", null);
|
|
33583
33581
|
exports.DefaultErrorStrategy = DefaultErrorStrategy;
|
|
33584
33582
|
|
|
33585
|
-
},{"./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){
|
|
33586
33584
|
"use strict";
|
|
33587
33585
|
/*!
|
|
33588
33586
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33658,7 +33656,7 @@ var Dependents;
|
|
|
33658
33656
|
Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
|
|
33659
33657
|
})(Dependents = exports.Dependents || (exports.Dependents = {}));
|
|
33660
33658
|
|
|
33661
|
-
},{}],
|
|
33659
|
+
},{}],202:[function(require,module,exports){
|
|
33662
33660
|
"use strict";
|
|
33663
33661
|
/*!
|
|
33664
33662
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33806,7 +33804,7 @@ __decorate([
|
|
|
33806
33804
|
], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
|
|
33807
33805
|
exports.DiagnosticErrorListener = DiagnosticErrorListener;
|
|
33808
33806
|
|
|
33809
|
-
},{"./Decorators":
|
|
33807
|
+
},{"./Decorators":199,"./misc/BitSet":306,"./misc/Interval":311}],203:[function(require,module,exports){
|
|
33810
33808
|
"use strict";
|
|
33811
33809
|
/*!
|
|
33812
33810
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33871,7 +33869,7 @@ FailedPredicateException = __decorate([
|
|
|
33871
33869
|
], FailedPredicateException);
|
|
33872
33870
|
exports.FailedPredicateException = FailedPredicateException;
|
|
33873
33871
|
|
|
33874
|
-
},{"./Decorators":
|
|
33872
|
+
},{"./Decorators":199,"./RecognitionException":218,"./atn/PredicateTransition":278}],204:[function(require,module,exports){
|
|
33875
33873
|
"use strict";
|
|
33876
33874
|
/*!
|
|
33877
33875
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33911,7 +33909,7 @@ InputMismatchException = __decorate([
|
|
|
33911
33909
|
], InputMismatchException);
|
|
33912
33910
|
exports.InputMismatchException = InputMismatchException;
|
|
33913
33911
|
|
|
33914
|
-
},{"./Decorators":
|
|
33912
|
+
},{"./Decorators":199,"./RecognitionException":218}],205:[function(require,module,exports){
|
|
33915
33913
|
"use strict";
|
|
33916
33914
|
/*!
|
|
33917
33915
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33934,7 +33932,7 @@ var IntStream;
|
|
|
33934
33932
|
IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
|
|
33935
33933
|
})(IntStream = exports.IntStream || (exports.IntStream = {}));
|
|
33936
33934
|
|
|
33937
|
-
},{}],
|
|
33935
|
+
},{}],206:[function(require,module,exports){
|
|
33938
33936
|
"use strict";
|
|
33939
33937
|
/*!
|
|
33940
33938
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33981,7 +33979,7 @@ __decorate([
|
|
|
33981
33979
|
], InterpreterRuleContext.prototype, "ruleIndex", null);
|
|
33982
33980
|
exports.InterpreterRuleContext = InterpreterRuleContext;
|
|
33983
33981
|
|
|
33984
|
-
},{"./Decorators":
|
|
33982
|
+
},{"./Decorators":199,"./ParserRuleContext":215}],207:[function(require,module,exports){
|
|
33985
33983
|
"use strict";
|
|
33986
33984
|
/*!
|
|
33987
33985
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34317,7 +34315,7 @@ __decorate([
|
|
|
34317
34315
|
], Lexer.prototype, "charPositionInLine", null);
|
|
34318
34316
|
exports.Lexer = Lexer;
|
|
34319
34317
|
|
|
34320
|
-
},{"./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){
|
|
34321
34319
|
"use strict";
|
|
34322
34320
|
/*!
|
|
34323
34321
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34397,7 +34395,7 @@ LexerInterpreter = __decorate([
|
|
|
34397
34395
|
], LexerInterpreter);
|
|
34398
34396
|
exports.LexerInterpreter = LexerInterpreter;
|
|
34399
34397
|
|
|
34400
|
-
},{"./Decorators":
|
|
34398
|
+
},{"./Decorators":199,"./Lexer":207,"./atn/LexerATNSimulator":257}],209:[function(require,module,exports){
|
|
34401
34399
|
"use strict";
|
|
34402
34400
|
/*!
|
|
34403
34401
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34454,7 +34452,7 @@ LexerNoViableAltException = __decorate([
|
|
|
34454
34452
|
], LexerNoViableAltException);
|
|
34455
34453
|
exports.LexerNoViableAltException = LexerNoViableAltException;
|
|
34456
34454
|
|
|
34457
|
-
},{"./Decorators":
|
|
34455
|
+
},{"./Decorators":199,"./RecognitionException":218,"./misc/Interval":311,"./misc/Utils":318}],210:[function(require,module,exports){
|
|
34458
34456
|
"use strict";
|
|
34459
34457
|
/*!
|
|
34460
34458
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34664,7 +34662,7 @@ ListTokenSource = __decorate([
|
|
|
34664
34662
|
], ListTokenSource);
|
|
34665
34663
|
exports.ListTokenSource = ListTokenSource;
|
|
34666
34664
|
|
|
34667
|
-
},{"./CommonTokenFactory":
|
|
34665
|
+
},{"./CommonTokenFactory":196,"./Decorators":199,"./Token":224}],211:[function(require,module,exports){
|
|
34668
34666
|
"use strict";
|
|
34669
34667
|
/*!
|
|
34670
34668
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34719,7 +34717,7 @@ __decorate([
|
|
|
34719
34717
|
], NoViableAltException.prototype, "_startToken", void 0);
|
|
34720
34718
|
exports.NoViableAltException = NoViableAltException;
|
|
34721
34719
|
|
|
34722
|
-
},{"./Decorators":
|
|
34720
|
+
},{"./Decorators":199,"./Parser":212,"./RecognitionException":218}],212:[function(require,module,exports){
|
|
34723
34721
|
(function (process){(function (){
|
|
34724
34722
|
"use strict";
|
|
34725
34723
|
/*!
|
|
@@ -35565,7 +35563,7 @@ __decorate([
|
|
|
35565
35563
|
exports.Parser = Parser;
|
|
35566
35564
|
|
|
35567
35565
|
}).call(this)}).call(this,require('_process'))
|
|
35568
|
-
},{"./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){
|
|
35569
35567
|
"use strict";
|
|
35570
35568
|
/*!
|
|
35571
35569
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35573,7 +35571,7 @@ exports.Parser = Parser;
|
|
|
35573
35571
|
*/
|
|
35574
35572
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
35575
35573
|
|
|
35576
|
-
},{}],
|
|
35574
|
+
},{}],214:[function(require,module,exports){
|
|
35577
35575
|
"use strict";
|
|
35578
35576
|
/*!
|
|
35579
35577
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35981,7 +35979,7 @@ ParserInterpreter = __decorate([
|
|
|
35981
35979
|
], ParserInterpreter);
|
|
35982
35980
|
exports.ParserInterpreter = ParserInterpreter;
|
|
35983
35981
|
|
|
35984
|
-
},{"./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){
|
|
35985
35983
|
"use strict";
|
|
35986
35984
|
/*!
|
|
35987
35985
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36282,7 +36280,7 @@ __decorate([
|
|
|
36282
36280
|
], ParserRuleContext.prototype, "sourceInterval", null);
|
|
36283
36281
|
exports.ParserRuleContext = ParserRuleContext;
|
|
36284
36282
|
|
|
36285
|
-
},{"./Decorators":
|
|
36283
|
+
},{"./Decorators":199,"./RuleContext":220,"./misc/Interval":311,"./tree/ErrorNode":319,"./tree/TerminalNode":322}],216:[function(require,module,exports){
|
|
36286
36284
|
"use strict";
|
|
36287
36285
|
/*!
|
|
36288
36286
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36332,7 +36330,7 @@ __decorate([
|
|
|
36332
36330
|
], ProxyErrorListener.prototype, "syntaxError", null);
|
|
36333
36331
|
exports.ProxyErrorListener = ProxyErrorListener;
|
|
36334
36332
|
|
|
36335
|
-
},{"./Decorators":
|
|
36333
|
+
},{"./Decorators":199}],217:[function(require,module,exports){
|
|
36336
36334
|
"use strict";
|
|
36337
36335
|
/*!
|
|
36338
36336
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36391,7 +36389,7 @@ __decorate([
|
|
|
36391
36389
|
], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
|
|
36392
36390
|
exports.ProxyParserErrorListener = ProxyParserErrorListener;
|
|
36393
36391
|
|
|
36394
|
-
},{"./Decorators":
|
|
36392
|
+
},{"./Decorators":199,"./ProxyErrorListener":216}],218:[function(require,module,exports){
|
|
36395
36393
|
"use strict";
|
|
36396
36394
|
/*!
|
|
36397
36395
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36496,7 +36494,7 @@ class RecognitionException extends Error {
|
|
|
36496
36494
|
}
|
|
36497
36495
|
exports.RecognitionException = RecognitionException;
|
|
36498
36496
|
|
|
36499
|
-
},{}],
|
|
36497
|
+
},{}],219:[function(require,module,exports){
|
|
36500
36498
|
"use strict";
|
|
36501
36499
|
/*!
|
|
36502
36500
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36715,7 +36713,7 @@ __decorate([
|
|
|
36715
36713
|
], Recognizer.prototype, "getErrorListeners", null);
|
|
36716
36714
|
exports.Recognizer = Recognizer;
|
|
36717
36715
|
|
|
36718
|
-
},{"./ConsoleErrorListener":
|
|
36716
|
+
},{"./ConsoleErrorListener":198,"./Decorators":199,"./ProxyErrorListener":216,"./Token":224,"./misc/Utils":318}],220:[function(require,module,exports){
|
|
36719
36717
|
"use strict";
|
|
36720
36718
|
/*!
|
|
36721
36719
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36932,7 +36930,7 @@ __decorate([
|
|
|
36932
36930
|
], RuleContext.prototype, "toStringTree", null);
|
|
36933
36931
|
exports.RuleContext = RuleContext;
|
|
36934
36932
|
|
|
36935
|
-
},{"./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){
|
|
36936
36934
|
"use strict";
|
|
36937
36935
|
/*!
|
|
36938
36936
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36983,7 +36981,7 @@ __decorate([
|
|
|
36983
36981
|
], RuleContextWithAltNum.prototype, "altNumber", null);
|
|
36984
36982
|
exports.RuleContextWithAltNum = RuleContextWithAltNum;
|
|
36985
36983
|
|
|
36986
|
-
},{"./Decorators":
|
|
36984
|
+
},{"./Decorators":199,"./ParserRuleContext":215,"./atn/ATN":232}],222:[function(require,module,exports){
|
|
36987
36985
|
"use strict";
|
|
36988
36986
|
/*!
|
|
36989
36987
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37006,7 +37004,7 @@ function RuleDependency(dependency) {
|
|
|
37006
37004
|
}
|
|
37007
37005
|
exports.RuleDependency = RuleDependency;
|
|
37008
37006
|
|
|
37009
|
-
},{}],
|
|
37007
|
+
},{}],223:[function(require,module,exports){
|
|
37010
37008
|
"use strict";
|
|
37011
37009
|
/*!
|
|
37012
37010
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37025,7 +37023,7 @@ function RuleVersion(version) {
|
|
|
37025
37023
|
}
|
|
37026
37024
|
exports.RuleVersion = RuleVersion;
|
|
37027
37025
|
|
|
37028
|
-
},{}],
|
|
37026
|
+
},{}],224:[function(require,module,exports){
|
|
37029
37027
|
"use strict";
|
|
37030
37028
|
/*!
|
|
37031
37029
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37065,7 +37063,7 @@ var Token;
|
|
|
37065
37063
|
Token.MIN_USER_CHANNEL_VALUE = 2;
|
|
37066
37064
|
})(Token = exports.Token || (exports.Token = {}));
|
|
37067
37065
|
|
|
37068
|
-
},{"./IntStream":
|
|
37066
|
+
},{"./IntStream":205}],225:[function(require,module,exports){
|
|
37069
37067
|
"use strict";
|
|
37070
37068
|
/*!
|
|
37071
37069
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37073,7 +37071,7 @@ var Token;
|
|
|
37073
37071
|
*/
|
|
37074
37072
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37075
37073
|
|
|
37076
|
-
},{}],
|
|
37074
|
+
},{}],226:[function(require,module,exports){
|
|
37077
37075
|
"use strict";
|
|
37078
37076
|
/*!
|
|
37079
37077
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37081,7 +37079,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
37081
37079
|
*/
|
|
37082
37080
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37083
37081
|
|
|
37084
|
-
},{}],
|
|
37082
|
+
},{}],227:[function(require,module,exports){
|
|
37085
37083
|
"use strict";
|
|
37086
37084
|
/*!
|
|
37087
37085
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37089,7 +37087,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
37089
37087
|
*/
|
|
37090
37088
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37091
37089
|
|
|
37092
|
-
},{}],
|
|
37090
|
+
},{}],228:[function(require,module,exports){
|
|
37093
37091
|
"use strict";
|
|
37094
37092
|
/*!
|
|
37095
37093
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37597,7 +37595,7 @@ __decorate([
|
|
|
37597
37595
|
Decorators_1.Override
|
|
37598
37596
|
], ReplaceOp.prototype, "toString", null);
|
|
37599
37597
|
|
|
37600
|
-
},{"./Decorators":
|
|
37598
|
+
},{"./Decorators":199,"./Token":224,"./misc/Interval":311}],229:[function(require,module,exports){
|
|
37601
37599
|
"use strict";
|
|
37602
37600
|
/*!
|
|
37603
37601
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37605,7 +37603,7 @@ __decorate([
|
|
|
37605
37603
|
*/
|
|
37606
37604
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37607
37605
|
|
|
37608
|
-
},{}],
|
|
37606
|
+
},{}],230:[function(require,module,exports){
|
|
37609
37607
|
"use strict";
|
|
37610
37608
|
/*!
|
|
37611
37609
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37725,7 +37723,7 @@ __decorate([
|
|
|
37725
37723
|
], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
|
|
37726
37724
|
exports.VocabularyImpl = VocabularyImpl;
|
|
37727
37725
|
|
|
37728
|
-
},{"./Decorators":
|
|
37726
|
+
},{"./Decorators":199,"./Token":224}],231:[function(require,module,exports){
|
|
37729
37727
|
"use strict";
|
|
37730
37728
|
/*!
|
|
37731
37729
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37733,7 +37731,7 @@ exports.VocabularyImpl = VocabularyImpl;
|
|
|
37733
37731
|
*/
|
|
37734
37732
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37735
37733
|
|
|
37736
|
-
},{}],
|
|
37734
|
+
},{}],232:[function(require,module,exports){
|
|
37737
37735
|
"use strict";
|
|
37738
37736
|
/*!
|
|
37739
37737
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37955,7 +37953,7 @@ exports.ATN = ATN;
|
|
|
37955
37953
|
})(ATN = exports.ATN || (exports.ATN = {}));
|
|
37956
37954
|
exports.ATN = ATN;
|
|
37957
37955
|
|
|
37958
|
-
},{"../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){
|
|
37959
37957
|
"use strict";
|
|
37960
37958
|
/*!
|
|
37961
37959
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38480,7 +38478,7 @@ ActionSemanticContextATNConfig = __decorate([
|
|
|
38480
38478
|
__param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
|
|
38481
38479
|
], ActionSemanticContextATNConfig);
|
|
38482
38480
|
|
|
38483
|
-
},{"../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){
|
|
38484
38482
|
"use strict";
|
|
38485
38483
|
/*!
|
|
38486
38484
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38927,7 +38925,7 @@ __decorate([
|
|
|
38927
38925
|
], ATNConfigSet.prototype, "hashCode", null);
|
|
38928
38926
|
exports.ATNConfigSet = ATNConfigSet;
|
|
38929
38927
|
|
|
38930
|
-
},{"../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){
|
|
38931
38929
|
"use strict";
|
|
38932
38930
|
/*!
|
|
38933
38931
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39006,7 +39004,7 @@ __decorate([
|
|
|
39006
39004
|
], ATNDeserializationOptions, "defaultOptions", null);
|
|
39007
39005
|
exports.ATNDeserializationOptions = ATNDeserializationOptions;
|
|
39008
39006
|
|
|
39009
|
-
},{"../Decorators":
|
|
39007
|
+
},{"../Decorators":199}],236:[function(require,module,exports){
|
|
39010
39008
|
"use strict";
|
|
39011
39009
|
/*!
|
|
39012
39010
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40093,7 +40091,7 @@ __decorate([
|
|
|
40093
40091
|
], ATNDeserializer.prototype, "edgeFactory", null);
|
|
40094
40092
|
exports.ATNDeserializer = ATNDeserializer;
|
|
40095
40093
|
|
|
40096
|
-
},{"../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){
|
|
40097
40095
|
"use strict";
|
|
40098
40096
|
/*!
|
|
40099
40097
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40157,7 +40155,7 @@ exports.ATNSimulator = ATNSimulator;
|
|
|
40157
40155
|
})(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
|
|
40158
40156
|
exports.ATNSimulator = ATNSimulator;
|
|
40159
40157
|
|
|
40160
|
-
},{"../Decorators":
|
|
40158
|
+
},{"../Decorators":199,"../dfa/DFAState":299,"./ATNConfigSet":234,"./PredictionContext":279}],238:[function(require,module,exports){
|
|
40161
40159
|
"use strict";
|
|
40162
40160
|
/*!
|
|
40163
40161
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40344,7 +40342,7 @@ exports.ATNState = ATNState;
|
|
|
40344
40342
|
ATNState.INVALID_STATE_NUMBER = -1;
|
|
40345
40343
|
})(ATNState = exports.ATNState || (exports.ATNState = {}));
|
|
40346
40344
|
|
|
40347
|
-
},{"../Decorators":
|
|
40345
|
+
},{"../Decorators":199}],239:[function(require,module,exports){
|
|
40348
40346
|
"use strict";
|
|
40349
40347
|
/*!
|
|
40350
40348
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40370,7 +40368,7 @@ var ATNStateType;
|
|
|
40370
40368
|
ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
|
|
40371
40369
|
})(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
|
|
40372
40370
|
|
|
40373
|
-
},{}],
|
|
40371
|
+
},{}],240:[function(require,module,exports){
|
|
40374
40372
|
"use strict";
|
|
40375
40373
|
/*!
|
|
40376
40374
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40390,7 +40388,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
|
|
|
40390
40388
|
}
|
|
40391
40389
|
exports.AbstractPredicateTransition = AbstractPredicateTransition;
|
|
40392
40390
|
|
|
40393
|
-
},{"./Transition":
|
|
40391
|
+
},{"./Transition":294}],241:[function(require,module,exports){
|
|
40394
40392
|
"use strict";
|
|
40395
40393
|
/*!
|
|
40396
40394
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40446,7 +40444,7 @@ ActionTransition = __decorate([
|
|
|
40446
40444
|
], ActionTransition);
|
|
40447
40445
|
exports.ActionTransition = ActionTransition;
|
|
40448
40446
|
|
|
40449
|
-
},{"../Decorators":
|
|
40447
|
+
},{"../Decorators":199,"./Transition":294}],242:[function(require,module,exports){
|
|
40450
40448
|
"use strict";
|
|
40451
40449
|
/*!
|
|
40452
40450
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40533,7 +40531,7 @@ AmbiguityInfo = __decorate([
|
|
|
40533
40531
|
], AmbiguityInfo);
|
|
40534
40532
|
exports.AmbiguityInfo = AmbiguityInfo;
|
|
40535
40533
|
|
|
40536
|
-
},{"../Decorators":
|
|
40534
|
+
},{"../Decorators":199,"./DecisionEventInfo":250}],243:[function(require,module,exports){
|
|
40537
40535
|
"use strict";
|
|
40538
40536
|
/*!
|
|
40539
40537
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40591,7 +40589,7 @@ AtomTransition = __decorate([
|
|
|
40591
40589
|
], AtomTransition);
|
|
40592
40590
|
exports.AtomTransition = AtomTransition;
|
|
40593
40591
|
|
|
40594
|
-
},{"../Decorators":
|
|
40592
|
+
},{"../Decorators":199,"../misc/IntervalSet":312,"./Transition":294}],244:[function(require,module,exports){
|
|
40595
40593
|
"use strict";
|
|
40596
40594
|
/*!
|
|
40597
40595
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40623,7 +40621,7 @@ __decorate([
|
|
|
40623
40621
|
], BasicBlockStartState.prototype, "stateType", null);
|
|
40624
40622
|
exports.BasicBlockStartState = BasicBlockStartState;
|
|
40625
40623
|
|
|
40626
|
-
},{"../Decorators":
|
|
40624
|
+
},{"../Decorators":199,"./ATNStateType":239,"./BlockStartState":247}],245:[function(require,module,exports){
|
|
40627
40625
|
"use strict";
|
|
40628
40626
|
/*!
|
|
40629
40627
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40655,7 +40653,7 @@ __decorate([
|
|
|
40655
40653
|
], BasicState.prototype, "stateType", null);
|
|
40656
40654
|
exports.BasicState = BasicState;
|
|
40657
40655
|
|
|
40658
|
-
},{"../Decorators":
|
|
40656
|
+
},{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],246:[function(require,module,exports){
|
|
40659
40657
|
"use strict";
|
|
40660
40658
|
/*!
|
|
40661
40659
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40684,7 +40682,7 @@ __decorate([
|
|
|
40684
40682
|
], BlockEndState.prototype, "stateType", null);
|
|
40685
40683
|
exports.BlockEndState = BlockEndState;
|
|
40686
40684
|
|
|
40687
|
-
},{"../Decorators":
|
|
40685
|
+
},{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],247:[function(require,module,exports){
|
|
40688
40686
|
"use strict";
|
|
40689
40687
|
/*!
|
|
40690
40688
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40698,7 +40696,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
|
|
|
40698
40696
|
}
|
|
40699
40697
|
exports.BlockStartState = BlockStartState;
|
|
40700
40698
|
|
|
40701
|
-
},{"./DecisionState":
|
|
40699
|
+
},{"./DecisionState":252}],248:[function(require,module,exports){
|
|
40702
40700
|
"use strict";
|
|
40703
40701
|
/*!
|
|
40704
40702
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40768,7 +40766,7 @@ __decorate([
|
|
|
40768
40766
|
], ConflictInfo.prototype, "hashCode", null);
|
|
40769
40767
|
exports.ConflictInfo = ConflictInfo;
|
|
40770
40768
|
|
|
40771
|
-
},{"../Decorators":
|
|
40769
|
+
},{"../Decorators":199,"../misc/Utils":318}],249:[function(require,module,exports){
|
|
40772
40770
|
"use strict";
|
|
40773
40771
|
/*!
|
|
40774
40772
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40828,7 +40826,7 @@ ContextSensitivityInfo = __decorate([
|
|
|
40828
40826
|
], ContextSensitivityInfo);
|
|
40829
40827
|
exports.ContextSensitivityInfo = ContextSensitivityInfo;
|
|
40830
40828
|
|
|
40831
|
-
},{"../Decorators":
|
|
40829
|
+
},{"../Decorators":199,"./DecisionEventInfo":250}],250:[function(require,module,exports){
|
|
40832
40830
|
"use strict";
|
|
40833
40831
|
/*!
|
|
40834
40832
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40880,7 +40878,7 @@ DecisionEventInfo = __decorate([
|
|
|
40880
40878
|
], DecisionEventInfo);
|
|
40881
40879
|
exports.DecisionEventInfo = DecisionEventInfo;
|
|
40882
40880
|
|
|
40883
|
-
},{"../Decorators":
|
|
40881
|
+
},{"../Decorators":199}],251:[function(require,module,exports){
|
|
40884
40882
|
"use strict";
|
|
40885
40883
|
/*!
|
|
40886
40884
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41093,7 +41091,7 @@ __decorate([
|
|
|
41093
41091
|
], DecisionInfo.prototype, "toString", null);
|
|
41094
41092
|
exports.DecisionInfo = DecisionInfo;
|
|
41095
41093
|
|
|
41096
|
-
},{"../Decorators":
|
|
41094
|
+
},{"../Decorators":199}],252:[function(require,module,exports){
|
|
41097
41095
|
"use strict";
|
|
41098
41096
|
/*!
|
|
41099
41097
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41113,7 +41111,7 @@ class DecisionState extends ATNState_1.ATNState {
|
|
|
41113
41111
|
}
|
|
41114
41112
|
exports.DecisionState = DecisionState;
|
|
41115
41113
|
|
|
41116
|
-
},{"./ATNState":
|
|
41114
|
+
},{"./ATNState":238}],253:[function(require,module,exports){
|
|
41117
41115
|
"use strict";
|
|
41118
41116
|
/*!
|
|
41119
41117
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41179,7 +41177,7 @@ EpsilonTransition = __decorate([
|
|
|
41179
41177
|
], EpsilonTransition);
|
|
41180
41178
|
exports.EpsilonTransition = EpsilonTransition;
|
|
41181
41179
|
|
|
41182
|
-
},{"../Decorators":
|
|
41180
|
+
},{"../Decorators":199,"./Transition":294}],254:[function(require,module,exports){
|
|
41183
41181
|
"use strict";
|
|
41184
41182
|
/*!
|
|
41185
41183
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41232,7 +41230,7 @@ ErrorInfo = __decorate([
|
|
|
41232
41230
|
], ErrorInfo);
|
|
41233
41231
|
exports.ErrorInfo = ErrorInfo;
|
|
41234
41232
|
|
|
41235
|
-
},{"../Decorators":
|
|
41233
|
+
},{"../Decorators":199,"./DecisionEventInfo":250}],255:[function(require,module,exports){
|
|
41236
41234
|
"use strict";
|
|
41237
41235
|
/*!
|
|
41238
41236
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41263,7 +41261,7 @@ __decorate([
|
|
|
41263
41261
|
], InvalidState.prototype, "stateType", null);
|
|
41264
41262
|
exports.InvalidState = InvalidState;
|
|
41265
41263
|
|
|
41266
|
-
},{"../Decorators":
|
|
41264
|
+
},{"../Decorators":199,"./ATNStateType":239,"./BasicState":245}],256:[function(require,module,exports){
|
|
41267
41265
|
"use strict";
|
|
41268
41266
|
/*!
|
|
41269
41267
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41485,7 +41483,7 @@ LL1Analyzer = __decorate([
|
|
|
41485
41483
|
], LL1Analyzer);
|
|
41486
41484
|
exports.LL1Analyzer = LL1Analyzer;
|
|
41487
41485
|
|
|
41488
|
-
},{"../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){
|
|
41489
41487
|
"use strict";
|
|
41490
41488
|
/*!
|
|
41491
41489
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42202,7 +42200,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
|
|
|
42202
42200
|
})(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
|
|
42203
42201
|
exports.LexerATNSimulator = LexerATNSimulator;
|
|
42204
42202
|
|
|
42205
|
-
},{"../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){
|
|
42206
42204
|
"use strict";
|
|
42207
42205
|
/*!
|
|
42208
42206
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42403,7 +42401,7 @@ LexerActionExecutor = __decorate([
|
|
|
42403
42401
|
], LexerActionExecutor);
|
|
42404
42402
|
exports.LexerActionExecutor = LexerActionExecutor;
|
|
42405
42403
|
|
|
42406
|
-
},{"../Decorators":
|
|
42404
|
+
},{"../Decorators":199,"../misc/ArrayEqualityComparator":304,"../misc/MurmurHash":314,"./LexerIndexedCustomAction":261}],259:[function(require,module,exports){
|
|
42407
42405
|
"use strict";
|
|
42408
42406
|
/*!
|
|
42409
42407
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42508,7 +42506,7 @@ __decorate([
|
|
|
42508
42506
|
], LexerChannelAction.prototype, "toString", null);
|
|
42509
42507
|
exports.LexerChannelAction = LexerChannelAction;
|
|
42510
42508
|
|
|
42511
|
-
},{"../Decorators":
|
|
42509
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],260:[function(require,module,exports){
|
|
42512
42510
|
"use strict";
|
|
42513
42511
|
/*!
|
|
42514
42512
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42637,7 +42635,7 @@ __decorate([
|
|
|
42637
42635
|
], LexerCustomAction.prototype, "equals", null);
|
|
42638
42636
|
exports.LexerCustomAction = LexerCustomAction;
|
|
42639
42637
|
|
|
42640
|
-
},{"../Decorators":
|
|
42638
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],261:[function(require,module,exports){
|
|
42641
42639
|
"use strict";
|
|
42642
42640
|
/*!
|
|
42643
42641
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42772,7 +42770,7 @@ LexerIndexedCustomAction = __decorate([
|
|
|
42772
42770
|
], LexerIndexedCustomAction);
|
|
42773
42771
|
exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
|
|
42774
42772
|
|
|
42775
|
-
},{"../Decorators":
|
|
42773
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],262:[function(require,module,exports){
|
|
42776
42774
|
"use strict";
|
|
42777
42775
|
/*!
|
|
42778
42776
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42877,7 +42875,7 @@ __decorate([
|
|
|
42877
42875
|
], LexerModeAction.prototype, "toString", null);
|
|
42878
42876
|
exports.LexerModeAction = LexerModeAction;
|
|
42879
42877
|
|
|
42880
|
-
},{"../Decorators":
|
|
42878
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],263:[function(require,module,exports){
|
|
42881
42879
|
"use strict";
|
|
42882
42880
|
/*!
|
|
42883
42881
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42973,7 +42971,7 @@ exports.LexerMoreAction = LexerMoreAction;
|
|
|
42973
42971
|
LexerMoreAction.INSTANCE = new LexerMoreAction();
|
|
42974
42972
|
})(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
|
|
42975
42973
|
|
|
42976
|
-
},{"../Decorators":
|
|
42974
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],264:[function(require,module,exports){
|
|
42977
42975
|
"use strict";
|
|
42978
42976
|
/*!
|
|
42979
42977
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43069,7 +43067,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
|
|
|
43069
43067
|
LexerPopModeAction.INSTANCE = new LexerPopModeAction();
|
|
43070
43068
|
})(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
|
|
43071
43069
|
|
|
43072
|
-
},{"../Decorators":
|
|
43070
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],265:[function(require,module,exports){
|
|
43073
43071
|
"use strict";
|
|
43074
43072
|
/*!
|
|
43075
43073
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43174,7 +43172,7 @@ __decorate([
|
|
|
43174
43172
|
], LexerPushModeAction.prototype, "toString", null);
|
|
43175
43173
|
exports.LexerPushModeAction = LexerPushModeAction;
|
|
43176
43174
|
|
|
43177
|
-
},{"../Decorators":
|
|
43175
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],266:[function(require,module,exports){
|
|
43178
43176
|
"use strict";
|
|
43179
43177
|
/*!
|
|
43180
43178
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43270,7 +43268,7 @@ exports.LexerSkipAction = LexerSkipAction;
|
|
|
43270
43268
|
LexerSkipAction.INSTANCE = new LexerSkipAction();
|
|
43271
43269
|
})(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
|
|
43272
43270
|
|
|
43273
|
-
},{"../Decorators":
|
|
43271
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],267:[function(require,module,exports){
|
|
43274
43272
|
"use strict";
|
|
43275
43273
|
/*!
|
|
43276
43274
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43374,7 +43372,7 @@ __decorate([
|
|
|
43374
43372
|
], LexerTypeAction.prototype, "toString", null);
|
|
43375
43373
|
exports.LexerTypeAction = LexerTypeAction;
|
|
43376
43374
|
|
|
43377
|
-
},{"../Decorators":
|
|
43375
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],268:[function(require,module,exports){
|
|
43378
43376
|
"use strict";
|
|
43379
43377
|
/*!
|
|
43380
43378
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43426,7 +43424,7 @@ LookaheadEventInfo = __decorate([
|
|
|
43426
43424
|
], LookaheadEventInfo);
|
|
43427
43425
|
exports.LookaheadEventInfo = LookaheadEventInfo;
|
|
43428
43426
|
|
|
43429
|
-
},{"../Decorators":
|
|
43427
|
+
},{"../Decorators":199,"./DecisionEventInfo":250}],269:[function(require,module,exports){
|
|
43430
43428
|
"use strict";
|
|
43431
43429
|
/*!
|
|
43432
43430
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43455,7 +43453,7 @@ __decorate([
|
|
|
43455
43453
|
], LoopEndState.prototype, "stateType", null);
|
|
43456
43454
|
exports.LoopEndState = LoopEndState;
|
|
43457
43455
|
|
|
43458
|
-
},{"../Decorators":
|
|
43456
|
+
},{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],270:[function(require,module,exports){
|
|
43459
43457
|
"use strict";
|
|
43460
43458
|
/*!
|
|
43461
43459
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43504,7 +43502,7 @@ NotSetTransition = __decorate([
|
|
|
43504
43502
|
], NotSetTransition);
|
|
43505
43503
|
exports.NotSetTransition = NotSetTransition;
|
|
43506
43504
|
|
|
43507
|
-
},{"../Decorators":
|
|
43505
|
+
},{"../Decorators":199,"./SetTransition":288}],271:[function(require,module,exports){
|
|
43508
43506
|
"use strict";
|
|
43509
43507
|
/*!
|
|
43510
43508
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43559,7 +43557,7 @@ __decorate([
|
|
|
43559
43557
|
], OrderedATNConfigSet.prototype, "canMerge", null);
|
|
43560
43558
|
exports.OrderedATNConfigSet = OrderedATNConfigSet;
|
|
43561
43559
|
|
|
43562
|
-
},{"../Decorators":
|
|
43560
|
+
},{"../Decorators":199,"./ATNConfigSet":234}],272:[function(require,module,exports){
|
|
43563
43561
|
"use strict";
|
|
43564
43562
|
/*!
|
|
43565
43563
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43721,7 +43719,7 @@ ParseInfo = __decorate([
|
|
|
43721
43719
|
], ParseInfo);
|
|
43722
43720
|
exports.ParseInfo = ParseInfo;
|
|
43723
43721
|
|
|
43724
|
-
},{"../Decorators":
|
|
43722
|
+
},{"../Decorators":199}],273:[function(require,module,exports){
|
|
43725
43723
|
"use strict";
|
|
43726
43724
|
/*!
|
|
43727
43725
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45994,7 +45992,7 @@ ParserATNSimulator = __decorate([
|
|
|
45994
45992
|
], ParserATNSimulator);
|
|
45995
45993
|
exports.ParserATNSimulator = ParserATNSimulator;
|
|
45996
45994
|
|
|
45997
|
-
},{"../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){
|
|
45998
45996
|
"use strict";
|
|
45999
45997
|
/*!
|
|
46000
45998
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46027,7 +46025,7 @@ __decorate([
|
|
|
46027
46025
|
], PlusBlockStartState.prototype, "stateType", null);
|
|
46028
46026
|
exports.PlusBlockStartState = PlusBlockStartState;
|
|
46029
46027
|
|
|
46030
|
-
},{"../Decorators":
|
|
46028
|
+
},{"../Decorators":199,"./ATNStateType":239,"./BlockStartState":247}],275:[function(require,module,exports){
|
|
46031
46029
|
"use strict";
|
|
46032
46030
|
/*!
|
|
46033
46031
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46058,7 +46056,7 @@ __decorate([
|
|
|
46058
46056
|
], PlusLoopbackState.prototype, "stateType", null);
|
|
46059
46057
|
exports.PlusLoopbackState = PlusLoopbackState;
|
|
46060
46058
|
|
|
46061
|
-
},{"../Decorators":
|
|
46059
|
+
},{"../Decorators":199,"./ATNStateType":239,"./DecisionState":252}],276:[function(require,module,exports){
|
|
46062
46060
|
"use strict";
|
|
46063
46061
|
/*!
|
|
46064
46062
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46121,7 +46119,7 @@ PrecedencePredicateTransition = __decorate([
|
|
|
46121
46119
|
], PrecedencePredicateTransition);
|
|
46122
46120
|
exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
|
|
46123
46121
|
|
|
46124
|
-
},{"../Decorators":
|
|
46122
|
+
},{"../Decorators":199,"./AbstractPredicateTransition":240,"./SemanticContext":287}],277:[function(require,module,exports){
|
|
46125
46123
|
"use strict";
|
|
46126
46124
|
/*!
|
|
46127
46125
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46184,7 +46182,7 @@ PredicateEvalInfo = __decorate([
|
|
|
46184
46182
|
], PredicateEvalInfo);
|
|
46185
46183
|
exports.PredicateEvalInfo = PredicateEvalInfo;
|
|
46186
46184
|
|
|
46187
|
-
},{"../Decorators":
|
|
46185
|
+
},{"../Decorators":199,"./DecisionEventInfo":250}],278:[function(require,module,exports){
|
|
46188
46186
|
"use strict";
|
|
46189
46187
|
/*!
|
|
46190
46188
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46250,7 +46248,7 @@ PredicateTransition = __decorate([
|
|
|
46250
46248
|
], PredicateTransition);
|
|
46251
46249
|
exports.PredicateTransition = PredicateTransition;
|
|
46252
46250
|
|
|
46253
|
-
},{"../Decorators":
|
|
46251
|
+
},{"../Decorators":199,"./AbstractPredicateTransition":240,"./SemanticContext":287}],279:[function(require,module,exports){
|
|
46254
46252
|
"use strict";
|
|
46255
46253
|
/*!
|
|
46256
46254
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46941,7 +46939,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
|
|
|
46941
46939
|
PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
|
|
46942
46940
|
})(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
|
|
46943
46941
|
|
|
46944
|
-
},{"../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){
|
|
46945
46943
|
"use strict";
|
|
46946
46944
|
/*!
|
|
46947
46945
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47082,7 +47080,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
|
|
|
47082
47080
|
PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
|
|
47083
47081
|
})(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
|
|
47084
47082
|
|
|
47085
|
-
},{"../Decorators":
|
|
47083
|
+
},{"../Decorators":199,"../misc/Array2DHashMap":302,"../misc/ObjectEqualityComparator":315,"./PredictionContext":279,"assert":342}],281:[function(require,module,exports){
|
|
47086
47084
|
"use strict";
|
|
47087
47085
|
/*!
|
|
47088
47086
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47243,7 +47241,7 @@ var PredictionMode;
|
|
|
47243
47241
|
PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
|
|
47244
47242
|
})(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
|
|
47245
47243
|
|
|
47246
|
-
},{"../Decorators":
|
|
47244
|
+
},{"../Decorators":199,"../misc/Array2DHashMap":302,"../misc/MurmurHash":314,"./RuleStopState":285}],282:[function(require,module,exports){
|
|
47247
47245
|
(function (process){(function (){
|
|
47248
47246
|
"use strict";
|
|
47249
47247
|
/*!
|
|
@@ -47512,7 +47510,7 @@ __decorate([
|
|
|
47512
47510
|
exports.ProfilingATNSimulator = ProfilingATNSimulator;
|
|
47513
47511
|
|
|
47514
47512
|
}).call(this)}).call(this,require('_process'))
|
|
47515
|
-
},{"../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){
|
|
47516
47514
|
"use strict";
|
|
47517
47515
|
/*!
|
|
47518
47516
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47570,7 +47568,7 @@ RangeTransition = __decorate([
|
|
|
47570
47568
|
], RangeTransition);
|
|
47571
47569
|
exports.RangeTransition = RangeTransition;
|
|
47572
47570
|
|
|
47573
|
-
},{"../Decorators":
|
|
47571
|
+
},{"../Decorators":199,"../misc/IntervalSet":312,"./Transition":294}],284:[function(require,module,exports){
|
|
47574
47572
|
"use strict";
|
|
47575
47573
|
/*!
|
|
47576
47574
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47603,7 +47601,7 @@ __decorate([
|
|
|
47603
47601
|
], RuleStartState.prototype, "stateType", null);
|
|
47604
47602
|
exports.RuleStartState = RuleStartState;
|
|
47605
47603
|
|
|
47606
|
-
},{"../Decorators":
|
|
47604
|
+
},{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],285:[function(require,module,exports){
|
|
47607
47605
|
"use strict";
|
|
47608
47606
|
/*!
|
|
47609
47607
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47642,7 +47640,7 @@ __decorate([
|
|
|
47642
47640
|
], RuleStopState.prototype, "stateType", null);
|
|
47643
47641
|
exports.RuleStopState = RuleStopState;
|
|
47644
47642
|
|
|
47645
|
-
},{"../Decorators":
|
|
47643
|
+
},{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],286:[function(require,module,exports){
|
|
47646
47644
|
"use strict";
|
|
47647
47645
|
/*!
|
|
47648
47646
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47698,7 +47696,7 @@ RuleTransition = __decorate([
|
|
|
47698
47696
|
], RuleTransition);
|
|
47699
47697
|
exports.RuleTransition = RuleTransition;
|
|
47700
47698
|
|
|
47701
|
-
},{"../Decorators":
|
|
47699
|
+
},{"../Decorators":199,"./Transition":294}],287:[function(require,module,exports){
|
|
47702
47700
|
"use strict";
|
|
47703
47701
|
/*!
|
|
47704
47702
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48178,7 +48176,7 @@ exports.SemanticContext = SemanticContext;
|
|
|
48178
48176
|
SemanticContext.OR = OR;
|
|
48179
48177
|
})(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
|
|
48180
48178
|
|
|
48181
|
-
},{"../Decorators":
|
|
48179
|
+
},{"../Decorators":199,"../misc/Array2DHashSet":303,"../misc/ArrayEqualityComparator":304,"../misc/MurmurHash":314,"../misc/ObjectEqualityComparator":315,"../misc/Utils":318}],288:[function(require,module,exports){
|
|
48182
48180
|
"use strict";
|
|
48183
48181
|
/*!
|
|
48184
48182
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48244,7 +48242,7 @@ SetTransition = __decorate([
|
|
|
48244
48242
|
], SetTransition);
|
|
48245
48243
|
exports.SetTransition = SetTransition;
|
|
48246
48244
|
|
|
48247
|
-
},{"../Decorators":
|
|
48245
|
+
},{"../Decorators":199,"../Token":224,"../misc/IntervalSet":312,"./Transition":294}],289:[function(require,module,exports){
|
|
48248
48246
|
"use strict";
|
|
48249
48247
|
/*!
|
|
48250
48248
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48280,7 +48278,7 @@ SimulatorState = __decorate([
|
|
|
48280
48278
|
], SimulatorState);
|
|
48281
48279
|
exports.SimulatorState = SimulatorState;
|
|
48282
48280
|
|
|
48283
|
-
},{"../Decorators":
|
|
48281
|
+
},{"../Decorators":199,"../ParserRuleContext":215}],290:[function(require,module,exports){
|
|
48284
48282
|
"use strict";
|
|
48285
48283
|
/*!
|
|
48286
48284
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48308,7 +48306,7 @@ __decorate([
|
|
|
48308
48306
|
], StarBlockStartState.prototype, "stateType", null);
|
|
48309
48307
|
exports.StarBlockStartState = StarBlockStartState;
|
|
48310
48308
|
|
|
48311
|
-
},{"../Decorators":
|
|
48309
|
+
},{"../Decorators":199,"./ATNStateType":239,"./BlockStartState":247}],291:[function(require,module,exports){
|
|
48312
48310
|
"use strict";
|
|
48313
48311
|
/*!
|
|
48314
48312
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48365,7 +48363,7 @@ __decorate([
|
|
|
48365
48363
|
], StarLoopEntryState.prototype, "stateType", null);
|
|
48366
48364
|
exports.StarLoopEntryState = StarLoopEntryState;
|
|
48367
48365
|
|
|
48368
|
-
},{"../Decorators":
|
|
48366
|
+
},{"../Decorators":199,"../misc/BitSet":306,"./ATNStateType":239,"./DecisionState":252}],292:[function(require,module,exports){
|
|
48369
48367
|
"use strict";
|
|
48370
48368
|
/*!
|
|
48371
48369
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48396,7 +48394,7 @@ __decorate([
|
|
|
48396
48394
|
], StarLoopbackState.prototype, "stateType", null);
|
|
48397
48395
|
exports.StarLoopbackState = StarLoopbackState;
|
|
48398
48396
|
|
|
48399
|
-
},{"../Decorators":
|
|
48397
|
+
},{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],293:[function(require,module,exports){
|
|
48400
48398
|
"use strict";
|
|
48401
48399
|
/*!
|
|
48402
48400
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48425,7 +48423,7 @@ __decorate([
|
|
|
48425
48423
|
], TokensStartState.prototype, "stateType", null);
|
|
48426
48424
|
exports.TokensStartState = TokensStartState;
|
|
48427
48425
|
|
|
48428
|
-
},{"../Decorators":
|
|
48426
|
+
},{"../Decorators":199,"./ATNStateType":239,"./DecisionState":252}],294:[function(require,module,exports){
|
|
48429
48427
|
"use strict";
|
|
48430
48428
|
/*!
|
|
48431
48429
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48499,7 +48497,7 @@ Transition = __decorate([
|
|
|
48499
48497
|
], Transition);
|
|
48500
48498
|
exports.Transition = Transition;
|
|
48501
48499
|
|
|
48502
|
-
},{"../Decorators":
|
|
48500
|
+
},{"../Decorators":199}],295:[function(require,module,exports){
|
|
48503
48501
|
"use strict";
|
|
48504
48502
|
/*!
|
|
48505
48503
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48547,7 +48545,7 @@ WildcardTransition = __decorate([
|
|
|
48547
48545
|
], WildcardTransition);
|
|
48548
48546
|
exports.WildcardTransition = WildcardTransition;
|
|
48549
48547
|
|
|
48550
|
-
},{"../Decorators":
|
|
48548
|
+
},{"../Decorators":199,"./Transition":294}],296:[function(require,module,exports){
|
|
48551
48549
|
"use strict";
|
|
48552
48550
|
/*!
|
|
48553
48551
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48589,7 +48587,7 @@ class AcceptStateInfo {
|
|
|
48589
48587
|
}
|
|
48590
48588
|
exports.AcceptStateInfo = AcceptStateInfo;
|
|
48591
48589
|
|
|
48592
|
-
},{}],
|
|
48590
|
+
},{}],297:[function(require,module,exports){
|
|
48593
48591
|
"use strict";
|
|
48594
48592
|
/*!
|
|
48595
48593
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48764,7 +48762,7 @@ DFA = __decorate([
|
|
|
48764
48762
|
], DFA);
|
|
48765
48763
|
exports.DFA = DFA;
|
|
48766
48764
|
|
|
48767
|
-
},{"../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){
|
|
48768
48766
|
"use strict";
|
|
48769
48767
|
/*!
|
|
48770
48768
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48906,7 +48904,7 @@ __decorate([
|
|
|
48906
48904
|
], DFASerializer.prototype, "toString", null);
|
|
48907
48905
|
exports.DFASerializer = DFASerializer;
|
|
48908
48906
|
|
|
48909
|
-
},{"../Decorators":
|
|
48907
|
+
},{"../Decorators":199,"../Recognizer":219,"../VocabularyImpl":230,"../atn/ATNSimulator":237,"../atn/PredictionContext":279}],299:[function(require,module,exports){
|
|
48910
48908
|
"use strict";
|
|
48911
48909
|
/*!
|
|
48912
48910
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49137,7 +49135,7 @@ exports.DFAState = DFAState;
|
|
|
49137
49135
|
DFAState.PredPrediction = PredPrediction;
|
|
49138
49136
|
})(DFAState = exports.DFAState || (exports.DFAState = {}));
|
|
49139
49137
|
|
|
49140
|
-
},{"../Decorators":
|
|
49138
|
+
},{"../Decorators":199,"../atn/ATN":232,"../atn/PredictionContext":279,"../misc/BitSet":306,"../misc/MurmurHash":314,"assert":342}],300:[function(require,module,exports){
|
|
49141
49139
|
"use strict";
|
|
49142
49140
|
/*!
|
|
49143
49141
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49174,7 +49172,7 @@ LexerDFASerializer = __decorate([
|
|
|
49174
49172
|
], LexerDFASerializer);
|
|
49175
49173
|
exports.LexerDFASerializer = LexerDFASerializer;
|
|
49176
49174
|
|
|
49177
|
-
},{"../Decorators":
|
|
49175
|
+
},{"../Decorators":199,"../VocabularyImpl":230,"./DFASerializer":298}],301:[function(require,module,exports){
|
|
49178
49176
|
"use strict";
|
|
49179
49177
|
/*!
|
|
49180
49178
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49240,7 +49238,7 @@ __exportStar(require("./Vocabulary"), exports);
|
|
|
49240
49238
|
__exportStar(require("./VocabularyImpl"), exports);
|
|
49241
49239
|
__exportStar(require("./WritableToken"), exports);
|
|
49242
49240
|
|
|
49243
|
-
},{"./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){
|
|
49244
49242
|
"use strict";
|
|
49245
49243
|
/*!
|
|
49246
49244
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49323,7 +49321,7 @@ class Array2DHashMap {
|
|
|
49323
49321
|
}
|
|
49324
49322
|
exports.Array2DHashMap = Array2DHashMap;
|
|
49325
49323
|
|
|
49326
|
-
},{"./Array2DHashSet":
|
|
49324
|
+
},{"./Array2DHashSet":303}],303:[function(require,module,exports){
|
|
49327
49325
|
"use strict";
|
|
49328
49326
|
/*!
|
|
49329
49327
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49690,7 +49688,7 @@ __decorate([
|
|
|
49690
49688
|
], Array2DHashSet.prototype, "createBuckets", null);
|
|
49691
49689
|
exports.Array2DHashSet = Array2DHashSet;
|
|
49692
49690
|
|
|
49693
|
-
},{"../Decorators":
|
|
49691
|
+
},{"../Decorators":199,"./DefaultEqualityComparator":308,"./MurmurHash":314,"assert":342}],304:[function(require,module,exports){
|
|
49694
49692
|
"use strict";
|
|
49695
49693
|
/*!
|
|
49696
49694
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49762,7 +49760,7 @@ __decorate([
|
|
|
49762
49760
|
], ArrayEqualityComparator.prototype, "equals", null);
|
|
49763
49761
|
exports.ArrayEqualityComparator = ArrayEqualityComparator;
|
|
49764
49762
|
|
|
49765
|
-
},{"../Decorators":
|
|
49763
|
+
},{"../Decorators":199,"./MurmurHash":314,"./ObjectEqualityComparator":315}],305:[function(require,module,exports){
|
|
49766
49764
|
"use strict";
|
|
49767
49765
|
/*!
|
|
49768
49766
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49832,7 +49830,7 @@ var Arrays;
|
|
|
49832
49830
|
Arrays.toString = toString;
|
|
49833
49831
|
})(Arrays = exports.Arrays || (exports.Arrays = {}));
|
|
49834
49832
|
|
|
49835
|
-
},{}],
|
|
49833
|
+
},{}],306:[function(require,module,exports){
|
|
49836
49834
|
"use strict";
|
|
49837
49835
|
/*!
|
|
49838
49836
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50504,7 +50502,7 @@ class BitSetIterator {
|
|
|
50504
50502
|
[Symbol.iterator]() { return this; }
|
|
50505
50503
|
}
|
|
50506
50504
|
|
|
50507
|
-
},{"./MurmurHash":
|
|
50505
|
+
},{"./MurmurHash":314,"util":406}],307:[function(require,module,exports){
|
|
50508
50506
|
"use strict";
|
|
50509
50507
|
/*!
|
|
50510
50508
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50525,7 +50523,7 @@ function isSupplementaryCodePoint(ch) {
|
|
|
50525
50523
|
}
|
|
50526
50524
|
exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
|
|
50527
50525
|
|
|
50528
|
-
},{}],
|
|
50526
|
+
},{}],308:[function(require,module,exports){
|
|
50529
50527
|
"use strict";
|
|
50530
50528
|
/*!
|
|
50531
50529
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50596,7 +50594,7 @@ __decorate([
|
|
|
50596
50594
|
], DefaultEqualityComparator.prototype, "equals", null);
|
|
50597
50595
|
exports.DefaultEqualityComparator = DefaultEqualityComparator;
|
|
50598
50596
|
|
|
50599
|
-
},{"../Decorators":
|
|
50597
|
+
},{"../Decorators":199,"./MurmurHash":314,"./ObjectEqualityComparator":315}],309:[function(require,module,exports){
|
|
50600
50598
|
"use strict";
|
|
50601
50599
|
/*!
|
|
50602
50600
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50890,7 +50888,7 @@ __decorate([
|
|
|
50890
50888
|
], IntegerList.prototype, "toString", null);
|
|
50891
50889
|
exports.IntegerList = IntegerList;
|
|
50892
50890
|
|
|
50893
|
-
},{"../Decorators":
|
|
50891
|
+
},{"../Decorators":199,"./Arrays":305}],310:[function(require,module,exports){
|
|
50894
50892
|
"use strict";
|
|
50895
50893
|
/*!
|
|
50896
50894
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50920,7 +50918,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
|
|
|
50920
50918
|
}
|
|
50921
50919
|
exports.IntegerStack = IntegerStack;
|
|
50922
50920
|
|
|
50923
|
-
},{"./IntegerList":
|
|
50921
|
+
},{"./IntegerList":309}],311:[function(require,module,exports){
|
|
50924
50922
|
"use strict";
|
|
50925
50923
|
/*!
|
|
50926
50924
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51063,7 +51061,7 @@ __decorate([
|
|
|
51063
51061
|
], Interval.prototype, "toString", null);
|
|
51064
51062
|
exports.Interval = Interval;
|
|
51065
51063
|
|
|
51066
|
-
},{"../Decorators":
|
|
51064
|
+
},{"../Decorators":199}],312:[function(require,module,exports){
|
|
51067
51065
|
"use strict";
|
|
51068
51066
|
/*!
|
|
51069
51067
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51709,7 +51707,7 @@ __decorate([
|
|
|
51709
51707
|
], IntervalSet, "subtract", null);
|
|
51710
51708
|
exports.IntervalSet = IntervalSet;
|
|
51711
51709
|
|
|
51712
|
-
},{"../Decorators":
|
|
51710
|
+
},{"../Decorators":199,"../Lexer":207,"../Token":224,"./ArrayEqualityComparator":304,"./IntegerList":309,"./Interval":311,"./MurmurHash":314}],313:[function(require,module,exports){
|
|
51713
51711
|
"use strict";
|
|
51714
51712
|
/*!
|
|
51715
51713
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51742,7 +51740,7 @@ class MultiMap extends Map {
|
|
|
51742
51740
|
}
|
|
51743
51741
|
exports.MultiMap = MultiMap;
|
|
51744
51742
|
|
|
51745
|
-
},{}],
|
|
51743
|
+
},{}],314:[function(require,module,exports){
|
|
51746
51744
|
"use strict";
|
|
51747
51745
|
/*!
|
|
51748
51746
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51857,7 +51855,7 @@ var MurmurHash;
|
|
|
51857
51855
|
}
|
|
51858
51856
|
})(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
|
|
51859
51857
|
|
|
51860
|
-
},{}],
|
|
51858
|
+
},{}],315:[function(require,module,exports){
|
|
51861
51859
|
"use strict";
|
|
51862
51860
|
/*!
|
|
51863
51861
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51916,7 +51914,7 @@ __decorate([
|
|
|
51916
51914
|
], ObjectEqualityComparator.prototype, "equals", null);
|
|
51917
51915
|
exports.ObjectEqualityComparator = ObjectEqualityComparator;
|
|
51918
51916
|
|
|
51919
|
-
},{"../Decorators":
|
|
51917
|
+
},{"../Decorators":199}],316:[function(require,module,exports){
|
|
51920
51918
|
"use strict";
|
|
51921
51919
|
/*!
|
|
51922
51920
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51945,7 +51943,7 @@ class ParseCancellationException extends Error {
|
|
|
51945
51943
|
}
|
|
51946
51944
|
exports.ParseCancellationException = ParseCancellationException;
|
|
51947
51945
|
|
|
51948
|
-
},{}],
|
|
51946
|
+
},{}],317:[function(require,module,exports){
|
|
51949
51947
|
"use strict";
|
|
51950
51948
|
/*!
|
|
51951
51949
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51999,7 +51997,7 @@ class UUID {
|
|
|
51999
51997
|
}
|
|
52000
51998
|
exports.UUID = UUID;
|
|
52001
51999
|
|
|
52002
|
-
},{"./MurmurHash":
|
|
52000
|
+
},{"./MurmurHash":314}],318:[function(require,module,exports){
|
|
52003
52001
|
"use strict";
|
|
52004
52002
|
/*!
|
|
52005
52003
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52174,7 +52172,7 @@ exports.toCharArray = toCharArray;
|
|
|
52174
52172
|
// return s;
|
|
52175
52173
|
// }
|
|
52176
52174
|
|
|
52177
|
-
},{}],
|
|
52175
|
+
},{}],319:[function(require,module,exports){
|
|
52178
52176
|
"use strict";
|
|
52179
52177
|
/*!
|
|
52180
52178
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52210,7 +52208,7 @@ __decorate([
|
|
|
52210
52208
|
], ErrorNode.prototype, "accept", null);
|
|
52211
52209
|
exports.ErrorNode = ErrorNode;
|
|
52212
52210
|
|
|
52213
|
-
},{"../Decorators":
|
|
52211
|
+
},{"../Decorators":199,"./TerminalNode":322}],320:[function(require,module,exports){
|
|
52214
52212
|
"use strict";
|
|
52215
52213
|
/*!
|
|
52216
52214
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52315,7 +52313,7 @@ exports.ParseTreeWalker = ParseTreeWalker;
|
|
|
52315
52313
|
ParseTreeWalker.DEFAULT = new ParseTreeWalker();
|
|
52316
52314
|
})(ParseTreeWalker = exports.ParseTreeWalker || (exports.ParseTreeWalker = {}));
|
|
52317
52315
|
|
|
52318
|
-
},{"./ErrorNode":
|
|
52316
|
+
},{"./ErrorNode":319,"./RuleNode":321,"./TerminalNode":322}],321:[function(require,module,exports){
|
|
52319
52317
|
"use strict";
|
|
52320
52318
|
/*!
|
|
52321
52319
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52327,7 +52325,7 @@ class RuleNode {
|
|
|
52327
52325
|
}
|
|
52328
52326
|
exports.RuleNode = RuleNode;
|
|
52329
52327
|
|
|
52330
|
-
},{}],
|
|
52328
|
+
},{}],322:[function(require,module,exports){
|
|
52331
52329
|
"use strict";
|
|
52332
52330
|
/*!
|
|
52333
52331
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52419,7 +52417,7 @@ __decorate([
|
|
|
52419
52417
|
], TerminalNode.prototype, "toString", null);
|
|
52420
52418
|
exports.TerminalNode = TerminalNode;
|
|
52421
52419
|
|
|
52422
|
-
},{"../Decorators":
|
|
52420
|
+
},{"../Decorators":199,"../Token":224,"../misc/Interval":311}],323:[function(require,module,exports){
|
|
52423
52421
|
"use strict";
|
|
52424
52422
|
/*!
|
|
52425
52423
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52663,7 +52661,7 @@ __decorate([
|
|
|
52663
52661
|
], Trees, "getRootOfSubtreeEnclosingRegion", null);
|
|
52664
52662
|
exports.Trees = Trees;
|
|
52665
52663
|
|
|
52666
|
-
},{"../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){
|
|
52667
52665
|
"use strict";
|
|
52668
52666
|
/*!
|
|
52669
52667
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52687,7 +52685,7 @@ class Chunk {
|
|
|
52687
52685
|
}
|
|
52688
52686
|
exports.Chunk = Chunk;
|
|
52689
52687
|
|
|
52690
|
-
},{}],
|
|
52688
|
+
},{}],325:[function(require,module,exports){
|
|
52691
52689
|
"use strict";
|
|
52692
52690
|
/*!
|
|
52693
52691
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52867,7 +52865,7 @@ ParseTreeMatch = __decorate([
|
|
|
52867
52865
|
], ParseTreeMatch);
|
|
52868
52866
|
exports.ParseTreeMatch = ParseTreeMatch;
|
|
52869
52867
|
|
|
52870
|
-
},{"../../Decorators":
|
|
52868
|
+
},{"../../Decorators":199}],326:[function(require,module,exports){
|
|
52871
52869
|
"use strict";
|
|
52872
52870
|
/*!
|
|
52873
52871
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53025,7 +53023,7 @@ ParseTreePattern = __decorate([
|
|
|
53025
53023
|
], ParseTreePattern);
|
|
53026
53024
|
exports.ParseTreePattern = ParseTreePattern;
|
|
53027
53025
|
|
|
53028
|
-
},{"../../Decorators":
|
|
53026
|
+
},{"../../Decorators":199,"../xpath/XPath":332}],327:[function(require,module,exports){
|
|
53029
53027
|
"use strict";
|
|
53030
53028
|
/*!
|
|
53031
53029
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53503,7 +53501,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
|
|
|
53503
53501
|
ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
|
|
53504
53502
|
})(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
|
|
53505
53503
|
|
|
53506
|
-
},{"../../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){
|
|
53507
53505
|
"use strict";
|
|
53508
53506
|
/*!
|
|
53509
53507
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53701,7 +53699,7 @@ RuleTagToken = __decorate([
|
|
|
53701
53699
|
], RuleTagToken);
|
|
53702
53700
|
exports.RuleTagToken = RuleTagToken;
|
|
53703
53701
|
|
|
53704
|
-
},{"../../Decorators":
|
|
53702
|
+
},{"../../Decorators":199,"../../Token":224}],329:[function(require,module,exports){
|
|
53705
53703
|
"use strict";
|
|
53706
53704
|
/*!
|
|
53707
53705
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53788,7 +53786,7 @@ __decorate([
|
|
|
53788
53786
|
], TagChunk.prototype, "toString", null);
|
|
53789
53787
|
exports.TagChunk = TagChunk;
|
|
53790
53788
|
|
|
53791
|
-
},{"../../Decorators":
|
|
53789
|
+
},{"../../Decorators":199,"./Chunk":324}],330:[function(require,module,exports){
|
|
53792
53790
|
"use strict";
|
|
53793
53791
|
/*!
|
|
53794
53792
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53858,7 +53856,7 @@ TextChunk = __decorate([
|
|
|
53858
53856
|
], TextChunk);
|
|
53859
53857
|
exports.TextChunk = TextChunk;
|
|
53860
53858
|
|
|
53861
|
-
},{"../../Decorators":
|
|
53859
|
+
},{"../../Decorators":199,"./Chunk":324}],331:[function(require,module,exports){
|
|
53862
53860
|
"use strict";
|
|
53863
53861
|
/*!
|
|
53864
53862
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53953,7 +53951,7 @@ TokenTagToken = __decorate([
|
|
|
53953
53951
|
], TokenTagToken);
|
|
53954
53952
|
exports.TokenTagToken = TokenTagToken;
|
|
53955
53953
|
|
|
53956
|
-
},{"../../CommonToken":
|
|
53954
|
+
},{"../../CommonToken":195,"../../Decorators":199}],332:[function(require,module,exports){
|
|
53957
53955
|
"use strict";
|
|
53958
53956
|
/*!
|
|
53959
53957
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54150,7 +54148,7 @@ exports.XPath = XPath;
|
|
|
54150
54148
|
XPath.WILDCARD = "*"; // word not operator/separator
|
|
54151
54149
|
XPath.NOT = "!"; // word for invert operator
|
|
54152
54150
|
|
|
54153
|
-
},{"../../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){
|
|
54154
54152
|
"use strict";
|
|
54155
54153
|
/*!
|
|
54156
54154
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54185,7 +54183,7 @@ __decorate([
|
|
|
54185
54183
|
], XPathElement.prototype, "toString", null);
|
|
54186
54184
|
exports.XPathElement = XPathElement;
|
|
54187
54185
|
|
|
54188
|
-
},{"../../Decorators":
|
|
54186
|
+
},{"../../Decorators":199}],334:[function(require,module,exports){
|
|
54189
54187
|
"use strict";
|
|
54190
54188
|
// Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
54191
54189
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -54660,7 +54658,7 @@ XPathLexer._serializedATN = Utils.join([
|
|
|
54660
54658
|
XPathLexer._serializedATNSegment1,
|
|
54661
54659
|
], "");
|
|
54662
54660
|
|
|
54663
|
-
},{"../../Lexer":
|
|
54661
|
+
},{"../../Lexer":207,"../../VocabularyImpl":230,"../../atn/ATNDeserializer":236,"../../atn/LexerATNSimulator":257,"../../misc/Utils":318}],335:[function(require,module,exports){
|
|
54664
54662
|
"use strict";
|
|
54665
54663
|
/*!
|
|
54666
54664
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54685,7 +54683,7 @@ __decorate([
|
|
|
54685
54683
|
], XPathLexerErrorListener.prototype, "syntaxError", null);
|
|
54686
54684
|
exports.XPathLexerErrorListener = XPathLexerErrorListener;
|
|
54687
54685
|
|
|
54688
|
-
},{"../../Decorators":
|
|
54686
|
+
},{"../../Decorators":199}],336:[function(require,module,exports){
|
|
54689
54687
|
"use strict";
|
|
54690
54688
|
/*!
|
|
54691
54689
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54719,7 +54717,7 @@ __decorate([
|
|
|
54719
54717
|
], XPathRuleAnywhereElement.prototype, "evaluate", null);
|
|
54720
54718
|
exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
|
|
54721
54719
|
|
|
54722
|
-
},{"../../Decorators":
|
|
54720
|
+
},{"../../Decorators":199,"../Trees":323,"./XPathElement":333}],337:[function(require,module,exports){
|
|
54723
54721
|
"use strict";
|
|
54724
54722
|
/*!
|
|
54725
54723
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54762,7 +54760,7 @@ __decorate([
|
|
|
54762
54760
|
], XPathRuleElement.prototype, "evaluate", null);
|
|
54763
54761
|
exports.XPathRuleElement = XPathRuleElement;
|
|
54764
54762
|
|
|
54765
|
-
},{"../../Decorators":
|
|
54763
|
+
},{"../../Decorators":199,"../../ParserRuleContext":215,"../Trees":323,"./XPathElement":333}],338:[function(require,module,exports){
|
|
54766
54764
|
"use strict";
|
|
54767
54765
|
/*!
|
|
54768
54766
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54794,7 +54792,7 @@ __decorate([
|
|
|
54794
54792
|
], XPathTokenAnywhereElement.prototype, "evaluate", null);
|
|
54795
54793
|
exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
|
|
54796
54794
|
|
|
54797
|
-
},{"../../Decorators":
|
|
54795
|
+
},{"../../Decorators":199,"../Trees":323,"./XPathElement":333}],339:[function(require,module,exports){
|
|
54798
54796
|
"use strict";
|
|
54799
54797
|
/*!
|
|
54800
54798
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54837,7 +54835,7 @@ __decorate([
|
|
|
54837
54835
|
], XPathTokenElement.prototype, "evaluate", null);
|
|
54838
54836
|
exports.XPathTokenElement = XPathTokenElement;
|
|
54839
54837
|
|
|
54840
|
-
},{"../../Decorators":
|
|
54838
|
+
},{"../../Decorators":199,"../TerminalNode":322,"../Trees":323,"./XPathElement":333}],340:[function(require,module,exports){
|
|
54841
54839
|
"use strict";
|
|
54842
54840
|
/*!
|
|
54843
54841
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54873,7 +54871,7 @@ __decorate([
|
|
|
54873
54871
|
], XPathWildcardAnywhereElement.prototype, "evaluate", null);
|
|
54874
54872
|
exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
|
|
54875
54873
|
|
|
54876
|
-
},{"../../Decorators":
|
|
54874
|
+
},{"../../Decorators":199,"../Trees":323,"./XPath":332,"./XPathElement":333}],341:[function(require,module,exports){
|
|
54877
54875
|
"use strict";
|
|
54878
54876
|
/*!
|
|
54879
54877
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54913,7 +54911,7 @@ __decorate([
|
|
|
54913
54911
|
], XPathWildcardElement.prototype, "evaluate", null);
|
|
54914
54912
|
exports.XPathWildcardElement = XPathWildcardElement;
|
|
54915
54913
|
|
|
54916
|
-
},{"../../Decorators":
|
|
54914
|
+
},{"../../Decorators":199,"../Trees":323,"./XPath":332,"./XPathElement":333}],342:[function(require,module,exports){
|
|
54917
54915
|
(function (global){(function (){
|
|
54918
54916
|
'use strict';
|
|
54919
54917
|
|
|
@@ -55423,7 +55421,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
55423
55421
|
};
|
|
55424
55422
|
|
|
55425
55423
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
55426
|
-
},{"object.assign/polyfill":
|
|
55424
|
+
},{"object.assign/polyfill":399,"util/":345}],343:[function(require,module,exports){
|
|
55427
55425
|
if (typeof Object.create === 'function') {
|
|
55428
55426
|
// implementation from standard node.js 'util' module
|
|
55429
55427
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -55448,14 +55446,14 @@ if (typeof Object.create === 'function') {
|
|
|
55448
55446
|
}
|
|
55449
55447
|
}
|
|
55450
55448
|
|
|
55451
|
-
},{}],
|
|
55449
|
+
},{}],344:[function(require,module,exports){
|
|
55452
55450
|
module.exports = function isBuffer(arg) {
|
|
55453
55451
|
return arg && typeof arg === 'object'
|
|
55454
55452
|
&& typeof arg.copy === 'function'
|
|
55455
55453
|
&& typeof arg.fill === 'function'
|
|
55456
55454
|
&& typeof arg.readUInt8 === 'function';
|
|
55457
55455
|
}
|
|
55458
|
-
},{}],
|
|
55456
|
+
},{}],345:[function(require,module,exports){
|
|
55459
55457
|
(function (process,global){(function (){
|
|
55460
55458
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
55461
55459
|
//
|
|
@@ -56045,7 +56043,7 @@ function hasOwnProperty(obj, prop) {
|
|
|
56045
56043
|
}
|
|
56046
56044
|
|
|
56047
56045
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
56048
|
-
},{"./support/isBuffer":
|
|
56046
|
+
},{"./support/isBuffer":344,"_process":401,"inherits":343}],346:[function(require,module,exports){
|
|
56049
56047
|
(function (global){(function (){
|
|
56050
56048
|
'use strict';
|
|
56051
56049
|
|
|
@@ -56066,7 +56064,7 @@ module.exports = function availableTypedArrays() {
|
|
|
56066
56064
|
};
|
|
56067
56065
|
|
|
56068
56066
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
56069
|
-
},{"possible-typed-array-names":
|
|
56067
|
+
},{"possible-typed-array-names":400}],347:[function(require,module,exports){
|
|
56070
56068
|
(function (process,global){(function (){
|
|
56071
56069
|
module.exports = process.hrtime || hrtime
|
|
56072
56070
|
|
|
@@ -56097,7 +56095,7 @@ function hrtime(previousTimestamp){
|
|
|
56097
56095
|
return [seconds,nanoseconds]
|
|
56098
56096
|
}
|
|
56099
56097
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
56100
|
-
},{"_process":
|
|
56098
|
+
},{"_process":401}],348:[function(require,module,exports){
|
|
56101
56099
|
'use strict';
|
|
56102
56100
|
|
|
56103
56101
|
var bind = require('function-bind');
|
|
@@ -56109,7 +56107,7 @@ var $reflectApply = require('./reflectApply');
|
|
|
56109
56107
|
/** @type {import('./actualApply')} */
|
|
56110
56108
|
module.exports = $reflectApply || bind.call($call, $apply);
|
|
56111
56109
|
|
|
56112
|
-
},{"./functionApply":
|
|
56110
|
+
},{"./functionApply":350,"./functionCall":351,"./reflectApply":353,"function-bind":369}],349:[function(require,module,exports){
|
|
56113
56111
|
'use strict';
|
|
56114
56112
|
|
|
56115
56113
|
var bind = require('function-bind');
|
|
@@ -56121,19 +56119,19 @@ module.exports = function applyBind() {
|
|
|
56121
56119
|
return actualApply(bind, $apply, arguments);
|
|
56122
56120
|
};
|
|
56123
56121
|
|
|
56124
|
-
},{"./actualApply":
|
|
56122
|
+
},{"./actualApply":348,"./functionApply":350,"function-bind":369}],350:[function(require,module,exports){
|
|
56125
56123
|
'use strict';
|
|
56126
56124
|
|
|
56127
56125
|
/** @type {import('./functionApply')} */
|
|
56128
56126
|
module.exports = Function.prototype.apply;
|
|
56129
56127
|
|
|
56130
|
-
},{}],
|
|
56128
|
+
},{}],351:[function(require,module,exports){
|
|
56131
56129
|
'use strict';
|
|
56132
56130
|
|
|
56133
56131
|
/** @type {import('./functionCall')} */
|
|
56134
56132
|
module.exports = Function.prototype.call;
|
|
56135
56133
|
|
|
56136
|
-
},{}],
|
|
56134
|
+
},{}],352:[function(require,module,exports){
|
|
56137
56135
|
'use strict';
|
|
56138
56136
|
|
|
56139
56137
|
var bind = require('function-bind');
|
|
@@ -56150,13 +56148,13 @@ module.exports = function callBindBasic(args) {
|
|
|
56150
56148
|
return $actualApply(bind, $call, args);
|
|
56151
56149
|
};
|
|
56152
56150
|
|
|
56153
|
-
},{"./actualApply":
|
|
56151
|
+
},{"./actualApply":348,"./functionCall":351,"es-errors/type":364,"function-bind":369}],353:[function(require,module,exports){
|
|
56154
56152
|
'use strict';
|
|
56155
56153
|
|
|
56156
56154
|
/** @type {import('./reflectApply')} */
|
|
56157
56155
|
module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
|
|
56158
56156
|
|
|
56159
|
-
},{}],
|
|
56157
|
+
},{}],354:[function(require,module,exports){
|
|
56160
56158
|
'use strict';
|
|
56161
56159
|
|
|
56162
56160
|
var setFunctionLength = require('set-function-length');
|
|
@@ -56182,7 +56180,7 @@ if ($defineProperty) {
|
|
|
56182
56180
|
module.exports.apply = applyBind;
|
|
56183
56181
|
}
|
|
56184
56182
|
|
|
56185
|
-
},{"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){
|
|
56186
56184
|
'use strict';
|
|
56187
56185
|
|
|
56188
56186
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -56203,7 +56201,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
56203
56201
|
return intrinsic;
|
|
56204
56202
|
};
|
|
56205
56203
|
|
|
56206
|
-
},{"call-bind-apply-helpers":
|
|
56204
|
+
},{"call-bind-apply-helpers":352,"get-intrinsic":370}],356:[function(require,module,exports){
|
|
56207
56205
|
'use strict';
|
|
56208
56206
|
|
|
56209
56207
|
var $defineProperty = require('es-define-property');
|
|
@@ -56261,7 +56259,7 @@ module.exports = function defineDataProperty(
|
|
|
56261
56259
|
}
|
|
56262
56260
|
};
|
|
56263
56261
|
|
|
56264
|
-
},{"es-define-property":
|
|
56262
|
+
},{"es-define-property":358,"es-errors/syntax":363,"es-errors/type":364,"gopd":375}],357:[function(require,module,exports){
|
|
56265
56263
|
'use strict';
|
|
56266
56264
|
|
|
56267
56265
|
var callBind = require('call-bind-apply-helpers');
|
|
@@ -56293,7 +56291,7 @@ module.exports = desc && typeof desc.get === 'function'
|
|
|
56293
56291
|
}
|
|
56294
56292
|
: false;
|
|
56295
56293
|
|
|
56296
|
-
},{"call-bind-apply-helpers":
|
|
56294
|
+
},{"call-bind-apply-helpers":352,"gopd":375}],358:[function(require,module,exports){
|
|
56297
56295
|
'use strict';
|
|
56298
56296
|
|
|
56299
56297
|
/** @type {import('.')} */
|
|
@@ -56309,55 +56307,55 @@ if ($defineProperty) {
|
|
|
56309
56307
|
|
|
56310
56308
|
module.exports = $defineProperty;
|
|
56311
56309
|
|
|
56312
|
-
},{}],
|
|
56310
|
+
},{}],359:[function(require,module,exports){
|
|
56313
56311
|
'use strict';
|
|
56314
56312
|
|
|
56315
56313
|
/** @type {import('./eval')} */
|
|
56316
56314
|
module.exports = EvalError;
|
|
56317
56315
|
|
|
56318
|
-
},{}],
|
|
56316
|
+
},{}],360:[function(require,module,exports){
|
|
56319
56317
|
'use strict';
|
|
56320
56318
|
|
|
56321
56319
|
/** @type {import('.')} */
|
|
56322
56320
|
module.exports = Error;
|
|
56323
56321
|
|
|
56324
|
-
},{}],
|
|
56322
|
+
},{}],361:[function(require,module,exports){
|
|
56325
56323
|
'use strict';
|
|
56326
56324
|
|
|
56327
56325
|
/** @type {import('./range')} */
|
|
56328
56326
|
module.exports = RangeError;
|
|
56329
56327
|
|
|
56330
|
-
},{}],
|
|
56328
|
+
},{}],362:[function(require,module,exports){
|
|
56331
56329
|
'use strict';
|
|
56332
56330
|
|
|
56333
56331
|
/** @type {import('./ref')} */
|
|
56334
56332
|
module.exports = ReferenceError;
|
|
56335
56333
|
|
|
56336
|
-
},{}],
|
|
56334
|
+
},{}],363:[function(require,module,exports){
|
|
56337
56335
|
'use strict';
|
|
56338
56336
|
|
|
56339
56337
|
/** @type {import('./syntax')} */
|
|
56340
56338
|
module.exports = SyntaxError;
|
|
56341
56339
|
|
|
56342
|
-
},{}],
|
|
56340
|
+
},{}],364:[function(require,module,exports){
|
|
56343
56341
|
'use strict';
|
|
56344
56342
|
|
|
56345
56343
|
/** @type {import('./type')} */
|
|
56346
56344
|
module.exports = TypeError;
|
|
56347
56345
|
|
|
56348
|
-
},{}],
|
|
56346
|
+
},{}],365:[function(require,module,exports){
|
|
56349
56347
|
'use strict';
|
|
56350
56348
|
|
|
56351
56349
|
/** @type {import('./uri')} */
|
|
56352
56350
|
module.exports = URIError;
|
|
56353
56351
|
|
|
56354
|
-
},{}],
|
|
56352
|
+
},{}],366:[function(require,module,exports){
|
|
56355
56353
|
'use strict';
|
|
56356
56354
|
|
|
56357
56355
|
/** @type {import('.')} */
|
|
56358
56356
|
module.exports = Object;
|
|
56359
56357
|
|
|
56360
|
-
},{}],
|
|
56358
|
+
},{}],367:[function(require,module,exports){
|
|
56361
56359
|
'use strict';
|
|
56362
56360
|
|
|
56363
56361
|
var isCallable = require('is-callable');
|
|
@@ -56428,7 +56426,7 @@ module.exports = function forEach(list, iterator, thisArg) {
|
|
|
56428
56426
|
}
|
|
56429
56427
|
};
|
|
56430
56428
|
|
|
56431
|
-
},{"is-callable":
|
|
56429
|
+
},{"is-callable":383}],368:[function(require,module,exports){
|
|
56432
56430
|
'use strict';
|
|
56433
56431
|
|
|
56434
56432
|
/* eslint no-invalid-this: 1 */
|
|
@@ -56514,14 +56512,14 @@ module.exports = function bind(that) {
|
|
|
56514
56512
|
return bound;
|
|
56515
56513
|
};
|
|
56516
56514
|
|
|
56517
|
-
},{}],
|
|
56515
|
+
},{}],369:[function(require,module,exports){
|
|
56518
56516
|
'use strict';
|
|
56519
56517
|
|
|
56520
56518
|
var implementation = require('./implementation');
|
|
56521
56519
|
|
|
56522
56520
|
module.exports = Function.prototype.bind || implementation;
|
|
56523
56521
|
|
|
56524
|
-
},{"./implementation":
|
|
56522
|
+
},{"./implementation":368}],370:[function(require,module,exports){
|
|
56525
56523
|
'use strict';
|
|
56526
56524
|
|
|
56527
56525
|
var undefined;
|
|
@@ -56901,7 +56899,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
56901
56899
|
return value;
|
|
56902
56900
|
};
|
|
56903
56901
|
|
|
56904
|
-
},{"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){
|
|
56905
56903
|
'use strict';
|
|
56906
56904
|
|
|
56907
56905
|
var $Object = require('es-object-atoms');
|
|
@@ -56909,13 +56907,13 @@ var $Object = require('es-object-atoms');
|
|
|
56909
56907
|
/** @type {import('./Object.getPrototypeOf')} */
|
|
56910
56908
|
module.exports = $Object.getPrototypeOf || null;
|
|
56911
56909
|
|
|
56912
|
-
},{"es-object-atoms":
|
|
56910
|
+
},{"es-object-atoms":366}],372:[function(require,module,exports){
|
|
56913
56911
|
'use strict';
|
|
56914
56912
|
|
|
56915
56913
|
/** @type {import('./Reflect.getPrototypeOf')} */
|
|
56916
56914
|
module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
|
|
56917
56915
|
|
|
56918
|
-
},{}],
|
|
56916
|
+
},{}],373:[function(require,module,exports){
|
|
56919
56917
|
'use strict';
|
|
56920
56918
|
|
|
56921
56919
|
var reflectGetProto = require('./Reflect.getPrototypeOf');
|
|
@@ -56944,13 +56942,13 @@ module.exports = reflectGetProto
|
|
|
56944
56942
|
}
|
|
56945
56943
|
: null;
|
|
56946
56944
|
|
|
56947
|
-
},{"./Object.getPrototypeOf":
|
|
56945
|
+
},{"./Object.getPrototypeOf":371,"./Reflect.getPrototypeOf":372,"dunder-proto/get":357}],374:[function(require,module,exports){
|
|
56948
56946
|
'use strict';
|
|
56949
56947
|
|
|
56950
56948
|
/** @type {import('./gOPD')} */
|
|
56951
56949
|
module.exports = Object.getOwnPropertyDescriptor;
|
|
56952
56950
|
|
|
56953
|
-
},{}],
|
|
56951
|
+
},{}],375:[function(require,module,exports){
|
|
56954
56952
|
'use strict';
|
|
56955
56953
|
|
|
56956
56954
|
/** @type {import('.')} */
|
|
@@ -56967,7 +56965,7 @@ if ($gOPD) {
|
|
|
56967
56965
|
|
|
56968
56966
|
module.exports = $gOPD;
|
|
56969
56967
|
|
|
56970
|
-
},{"./gOPD":
|
|
56968
|
+
},{"./gOPD":374}],376:[function(require,module,exports){
|
|
56971
56969
|
'use strict';
|
|
56972
56970
|
|
|
56973
56971
|
var $defineProperty = require('es-define-property');
|
|
@@ -56991,7 +56989,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
|
|
|
56991
56989
|
|
|
56992
56990
|
module.exports = hasPropertyDescriptors;
|
|
56993
56991
|
|
|
56994
|
-
},{"es-define-property":
|
|
56992
|
+
},{"es-define-property":358}],377:[function(require,module,exports){
|
|
56995
56993
|
'use strict';
|
|
56996
56994
|
|
|
56997
56995
|
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
|
@@ -57007,7 +57005,7 @@ module.exports = function hasNativeSymbols() {
|
|
|
57007
57005
|
return hasSymbolSham();
|
|
57008
57006
|
};
|
|
57009
57007
|
|
|
57010
|
-
},{"./shams":
|
|
57008
|
+
},{"./shams":378}],378:[function(require,module,exports){
|
|
57011
57009
|
'use strict';
|
|
57012
57010
|
|
|
57013
57011
|
/** @type {import('./shams')} */
|
|
@@ -57054,7 +57052,7 @@ module.exports = function hasSymbols() {
|
|
|
57054
57052
|
return true;
|
|
57055
57053
|
};
|
|
57056
57054
|
|
|
57057
|
-
},{}],
|
|
57055
|
+
},{}],379:[function(require,module,exports){
|
|
57058
57056
|
'use strict';
|
|
57059
57057
|
|
|
57060
57058
|
var hasSymbols = require('has-symbols/shams');
|
|
@@ -57064,7 +57062,7 @@ module.exports = function hasToStringTagShams() {
|
|
|
57064
57062
|
return hasSymbols() && !!Symbol.toStringTag;
|
|
57065
57063
|
};
|
|
57066
57064
|
|
|
57067
|
-
},{"has-symbols/shams":
|
|
57065
|
+
},{"has-symbols/shams":378}],380:[function(require,module,exports){
|
|
57068
57066
|
'use strict';
|
|
57069
57067
|
|
|
57070
57068
|
var call = Function.prototype.call;
|
|
@@ -57074,7 +57072,7 @@ var bind = require('function-bind');
|
|
|
57074
57072
|
/** @type {import('.')} */
|
|
57075
57073
|
module.exports = bind.call(call, $hasOwn);
|
|
57076
57074
|
|
|
57077
|
-
},{"function-bind":
|
|
57075
|
+
},{"function-bind":369}],381:[function(require,module,exports){
|
|
57078
57076
|
if (typeof Object.create === 'function') {
|
|
57079
57077
|
// implementation from standard node.js 'util' module
|
|
57080
57078
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -57103,7 +57101,7 @@ if (typeof Object.create === 'function') {
|
|
|
57103
57101
|
}
|
|
57104
57102
|
}
|
|
57105
57103
|
|
|
57106
|
-
},{}],
|
|
57104
|
+
},{}],382:[function(require,module,exports){
|
|
57107
57105
|
'use strict';
|
|
57108
57106
|
|
|
57109
57107
|
var hasToStringTag = require('has-tostringtag/shams')();
|
|
@@ -57149,7 +57147,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
|
57149
57147
|
/** @type {import('.')} */
|
|
57150
57148
|
module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
57151
57149
|
|
|
57152
|
-
},{"call-bound":
|
|
57150
|
+
},{"call-bound":355,"has-tostringtag/shams":379}],383:[function(require,module,exports){
|
|
57153
57151
|
'use strict';
|
|
57154
57152
|
|
|
57155
57153
|
var fnToStr = Function.prototype.toString;
|
|
@@ -57252,7 +57250,7 @@ module.exports = reflectApply
|
|
|
57252
57250
|
return tryFunctionObject(value);
|
|
57253
57251
|
};
|
|
57254
57252
|
|
|
57255
|
-
},{}],
|
|
57253
|
+
},{}],384:[function(require,module,exports){
|
|
57256
57254
|
'use strict';
|
|
57257
57255
|
|
|
57258
57256
|
var callBound = require('call-bound');
|
|
@@ -57301,7 +57299,7 @@ module.exports = function isGeneratorFunction(fn) {
|
|
|
57301
57299
|
return getProto(fn) === GeneratorFunction;
|
|
57302
57300
|
};
|
|
57303
57301
|
|
|
57304
|
-
},{"call-bound":
|
|
57302
|
+
},{"call-bound":355,"get-proto":373,"has-tostringtag/shams":379,"safe-regex-test":402}],385:[function(require,module,exports){
|
|
57305
57303
|
'use strict';
|
|
57306
57304
|
|
|
57307
57305
|
var callBound = require('call-bound');
|
|
@@ -57372,7 +57370,7 @@ if (hasToStringTag) {
|
|
|
57372
57370
|
|
|
57373
57371
|
module.exports = fn;
|
|
57374
57372
|
|
|
57375
|
-
},{"call-bound":
|
|
57373
|
+
},{"call-bound":355,"gopd":375,"has-tostringtag/shams":379,"hasown":380}],386:[function(require,module,exports){
|
|
57376
57374
|
'use strict';
|
|
57377
57375
|
|
|
57378
57376
|
var whichTypedArray = require('which-typed-array');
|
|
@@ -57382,19 +57380,19 @@ module.exports = function isTypedArray(value) {
|
|
|
57382
57380
|
return !!whichTypedArray(value);
|
|
57383
57381
|
};
|
|
57384
57382
|
|
|
57385
|
-
},{"which-typed-array":
|
|
57383
|
+
},{"which-typed-array":407}],387:[function(require,module,exports){
|
|
57386
57384
|
'use strict';
|
|
57387
57385
|
|
|
57388
57386
|
/** @type {import('./abs')} */
|
|
57389
57387
|
module.exports = Math.abs;
|
|
57390
57388
|
|
|
57391
|
-
},{}],
|
|
57389
|
+
},{}],388:[function(require,module,exports){
|
|
57392
57390
|
'use strict';
|
|
57393
57391
|
|
|
57394
57392
|
/** @type {import('./floor')} */
|
|
57395
57393
|
module.exports = Math.floor;
|
|
57396
57394
|
|
|
57397
|
-
},{}],
|
|
57395
|
+
},{}],389:[function(require,module,exports){
|
|
57398
57396
|
'use strict';
|
|
57399
57397
|
|
|
57400
57398
|
/** @type {import('./isNaN')} */
|
|
@@ -57402,31 +57400,31 @@ module.exports = Number.isNaN || function isNaN(a) {
|
|
|
57402
57400
|
return a !== a;
|
|
57403
57401
|
};
|
|
57404
57402
|
|
|
57405
|
-
},{}],
|
|
57403
|
+
},{}],390:[function(require,module,exports){
|
|
57406
57404
|
'use strict';
|
|
57407
57405
|
|
|
57408
57406
|
/** @type {import('./max')} */
|
|
57409
57407
|
module.exports = Math.max;
|
|
57410
57408
|
|
|
57411
|
-
},{}],
|
|
57409
|
+
},{}],391:[function(require,module,exports){
|
|
57412
57410
|
'use strict';
|
|
57413
57411
|
|
|
57414
57412
|
/** @type {import('./min')} */
|
|
57415
57413
|
module.exports = Math.min;
|
|
57416
57414
|
|
|
57417
|
-
},{}],
|
|
57415
|
+
},{}],392:[function(require,module,exports){
|
|
57418
57416
|
'use strict';
|
|
57419
57417
|
|
|
57420
57418
|
/** @type {import('./pow')} */
|
|
57421
57419
|
module.exports = Math.pow;
|
|
57422
57420
|
|
|
57423
|
-
},{}],
|
|
57421
|
+
},{}],393:[function(require,module,exports){
|
|
57424
57422
|
'use strict';
|
|
57425
57423
|
|
|
57426
57424
|
/** @type {import('./round')} */
|
|
57427
57425
|
module.exports = Math.round;
|
|
57428
57426
|
|
|
57429
|
-
},{}],
|
|
57427
|
+
},{}],394:[function(require,module,exports){
|
|
57430
57428
|
'use strict';
|
|
57431
57429
|
|
|
57432
57430
|
var $isNaN = require('./isNaN');
|
|
@@ -57439,7 +57437,7 @@ module.exports = function sign(number) {
|
|
|
57439
57437
|
return number < 0 ? -1 : +1;
|
|
57440
57438
|
};
|
|
57441
57439
|
|
|
57442
|
-
},{"./isNaN":
|
|
57440
|
+
},{"./isNaN":389}],395:[function(require,module,exports){
|
|
57443
57441
|
'use strict';
|
|
57444
57442
|
|
|
57445
57443
|
var keysShim;
|
|
@@ -57563,7 +57561,7 @@ if (!Object.keys) {
|
|
|
57563
57561
|
}
|
|
57564
57562
|
module.exports = keysShim;
|
|
57565
57563
|
|
|
57566
|
-
},{"./isArguments":
|
|
57564
|
+
},{"./isArguments":397}],396:[function(require,module,exports){
|
|
57567
57565
|
'use strict';
|
|
57568
57566
|
|
|
57569
57567
|
var slice = Array.prototype.slice;
|
|
@@ -57597,7 +57595,7 @@ keysShim.shim = function shimObjectKeys() {
|
|
|
57597
57595
|
|
|
57598
57596
|
module.exports = keysShim;
|
|
57599
57597
|
|
|
57600
|
-
},{"./implementation":
|
|
57598
|
+
},{"./implementation":395,"./isArguments":397}],397:[function(require,module,exports){
|
|
57601
57599
|
'use strict';
|
|
57602
57600
|
|
|
57603
57601
|
var toStr = Object.prototype.toString;
|
|
@@ -57616,7 +57614,7 @@ module.exports = function isArguments(value) {
|
|
|
57616
57614
|
return isArgs;
|
|
57617
57615
|
};
|
|
57618
57616
|
|
|
57619
|
-
},{}],
|
|
57617
|
+
},{}],398:[function(require,module,exports){
|
|
57620
57618
|
'use strict';
|
|
57621
57619
|
|
|
57622
57620
|
// modified from https://github.com/es-shims/es6-shim
|
|
@@ -57664,7 +57662,7 @@ module.exports = function assign(target, source1) {
|
|
|
57664
57662
|
return to; // step 4
|
|
57665
57663
|
};
|
|
57666
57664
|
|
|
57667
|
-
},{"call-bound":
|
|
57665
|
+
},{"call-bound":355,"es-object-atoms":366,"has-symbols/shams":378,"object-keys":396}],399:[function(require,module,exports){
|
|
57668
57666
|
'use strict';
|
|
57669
57667
|
|
|
57670
57668
|
var implementation = require('./implementation');
|
|
@@ -57721,7 +57719,7 @@ module.exports = function getPolyfill() {
|
|
|
57721
57719
|
return Object.assign;
|
|
57722
57720
|
};
|
|
57723
57721
|
|
|
57724
|
-
},{"./implementation":
|
|
57722
|
+
},{"./implementation":398}],400:[function(require,module,exports){
|
|
57725
57723
|
'use strict';
|
|
57726
57724
|
|
|
57727
57725
|
/** @type {import('.')} */
|
|
@@ -57740,7 +57738,7 @@ module.exports = [
|
|
|
57740
57738
|
'BigUint64Array'
|
|
57741
57739
|
];
|
|
57742
57740
|
|
|
57743
|
-
},{}],
|
|
57741
|
+
},{}],401:[function(require,module,exports){
|
|
57744
57742
|
// shim for using process in browser
|
|
57745
57743
|
var process = module.exports = {};
|
|
57746
57744
|
|
|
@@ -57926,7 +57924,7 @@ process.chdir = function (dir) {
|
|
|
57926
57924
|
};
|
|
57927
57925
|
process.umask = function() { return 0; };
|
|
57928
57926
|
|
|
57929
|
-
},{}],
|
|
57927
|
+
},{}],402:[function(require,module,exports){
|
|
57930
57928
|
'use strict';
|
|
57931
57929
|
|
|
57932
57930
|
var callBound = require('call-bound');
|
|
@@ -57945,7 +57943,7 @@ module.exports = function regexTester(regex) {
|
|
|
57945
57943
|
};
|
|
57946
57944
|
};
|
|
57947
57945
|
|
|
57948
|
-
},{"call-bound":
|
|
57946
|
+
},{"call-bound":355,"es-errors/type":364,"is-regex":385}],403:[function(require,module,exports){
|
|
57949
57947
|
'use strict';
|
|
57950
57948
|
|
|
57951
57949
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -57989,9 +57987,9 @@ module.exports = function setFunctionLength(fn, length) {
|
|
|
57989
57987
|
return fn;
|
|
57990
57988
|
};
|
|
57991
57989
|
|
|
57992
|
-
},{"define-data-property":
|
|
57993
|
-
arguments[4][
|
|
57994
|
-
},{"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){
|
|
57995
57993
|
// Currently in sync with Node.js lib/internal/util/types.js
|
|
57996
57994
|
// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
|
|
57997
57995
|
|
|
@@ -58327,7 +58325,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
|
|
|
58327
58325
|
});
|
|
58328
58326
|
});
|
|
58329
58327
|
|
|
58330
|
-
},{"is-arguments":
|
|
58328
|
+
},{"is-arguments":382,"is-generator-function":384,"is-typed-array":386,"which-typed-array":407}],406:[function(require,module,exports){
|
|
58331
58329
|
(function (process){(function (){
|
|
58332
58330
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
58333
58331
|
//
|
|
@@ -59046,7 +59044,7 @@ function callbackify(original) {
|
|
|
59046
59044
|
exports.callbackify = callbackify;
|
|
59047
59045
|
|
|
59048
59046
|
}).call(this)}).call(this,require('_process'))
|
|
59049
|
-
},{"./support/isBuffer":
|
|
59047
|
+
},{"./support/isBuffer":404,"./support/types":405,"_process":401,"inherits":381}],407:[function(require,module,exports){
|
|
59050
59048
|
(function (global){(function (){
|
|
59051
59049
|
'use strict';
|
|
59052
59050
|
|
|
@@ -59167,5 +59165,5 @@ module.exports = function whichTypedArray(value) {
|
|
|
59167
59165
|
};
|
|
59168
59166
|
|
|
59169
59167
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
59170
|
-
},{"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)
|
|
59171
59169
|
});
|