@designliquido/delegua 0.44.2 → 0.45.1
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/interpretador/interpretador.d.ts.map +1 -1
- package/interpretador/interpretador.js +5 -0
- package/interpretador/interpretador.js.map +1 -1
- package/package.json +1 -1
- package/umd/delegua.js +444 -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 };
|
|
@@ -11288,6 +11286,11 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
11288
11286
|
}
|
|
11289
11287
|
return objeto[expressao.simbolo.lexema] || null;
|
|
11290
11288
|
}
|
|
11289
|
+
// A partir daqui, presume-se que o objeto é uma das estruturas
|
|
11290
|
+
// de Delégua.
|
|
11291
|
+
if (objeto instanceof estruturas_1.DeleguaModulo) {
|
|
11292
|
+
return objeto.componentes[expressao.simbolo.lexema] || null;
|
|
11293
|
+
}
|
|
11291
11294
|
let tipoObjeto = variavelObjeto.tipo;
|
|
11292
11295
|
if (tipoObjeto === null || tipoObjeto === undefined) {
|
|
11293
11296
|
tipoObjeto = (0, inferenciador_1.inferirTipoVariavel)(variavelObjeto);
|
|
@@ -11444,7 +11447,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
11444
11447
|
}
|
|
11445
11448
|
exports.Interpretador = Interpretador;
|
|
11446
11449
|
|
|
11447
|
-
},{"../bibliotecas/primitivas-dicionario":
|
|
11450
|
+
},{"../bibliotecas/primitivas-dicionario":18,"../bibliotecas/primitivas-numero":19,"../bibliotecas/primitivas-texto":20,"../bibliotecas/primitivas-vetor":21,"../excecoes":101,"../inferenciador":107,"../quebras":164,"../tipos-de-dados/delegua":165,"../tipos-de-dados/primitivos":166,"./estruturas":137,"./interpretador-base":143}],145:[function(require,module,exports){
|
|
11448
11451
|
"use strict";
|
|
11449
11452
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11450
11453
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -11708,7 +11711,7 @@ class PilhaEscoposExecucao {
|
|
|
11708
11711
|
}
|
|
11709
11712
|
exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
|
|
11710
11713
|
|
|
11711
|
-
},{"../excecoes":
|
|
11714
|
+
},{"../excecoes":101,"../inferenciador":107,"../lexador":157,"../tipos-de-dados/delegua":165,"./estruturas":137}],146:[function(require,module,exports){
|
|
11712
11715
|
"use strict";
|
|
11713
11716
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
11714
11717
|
if (k2 === undefined) k2 = k;
|
|
@@ -11731,7 +11734,7 @@ __exportStar(require("./lexador-guarani"), exports);
|
|
|
11731
11734
|
__exportStar(require("./lexador-portugol-ipt"), exports);
|
|
11732
11735
|
__exportStar(require("./lexador-tenda"), exports);
|
|
11733
11736
|
|
|
11734
|
-
},{"./lexador-egua-classico":
|
|
11737
|
+
},{"./lexador-egua-classico":147,"./lexador-guarani":148,"./lexador-pitugues":149,"./lexador-portugol-ipt":150,"./lexador-tenda":151}],147:[function(require,module,exports){
|
|
11735
11738
|
"use strict";
|
|
11736
11739
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11737
11740
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -12021,7 +12024,7 @@ class LexadorEguaClassico {
|
|
|
12021
12024
|
}
|
|
12022
12025
|
exports.LexadorEguaClassico = LexadorEguaClassico;
|
|
12023
12026
|
|
|
12024
|
-
},{"../../tipos-de-simbolos/egua-classico":
|
|
12027
|
+
},{"../../tipos-de-simbolos/egua-classico":169,"../simbolo":163,"./palavras-reservadas/egua-classico":152}],148:[function(require,module,exports){
|
|
12025
12028
|
"use strict";
|
|
12026
12029
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12027
12030
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -12140,7 +12143,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
|
|
|
12140
12143
|
}
|
|
12141
12144
|
exports.LexadorGuarani = LexadorGuarani;
|
|
12142
12145
|
|
|
12143
|
-
},{"../../tipos-de-simbolos/guarani":
|
|
12146
|
+
},{"../../tipos-de-simbolos/guarani":170,"../lexador-base":159,"./palavras-reservadas/guarani":153}],149:[function(require,module,exports){
|
|
12144
12147
|
"use strict";
|
|
12145
12148
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12146
12149
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -12543,7 +12546,7 @@ class LexadorPitugues {
|
|
|
12543
12546
|
}
|
|
12544
12547
|
exports.LexadorPitugues = LexadorPitugues;
|
|
12545
12548
|
|
|
12546
|
-
},{"../../tipos-de-simbolos/pitugues":
|
|
12549
|
+
},{"../../tipos-de-simbolos/pitugues":172,"../simbolo":163,"./palavras-reservadas/pitugues":154,"browser-process-hrtime":347}],150:[function(require,module,exports){
|
|
12547
12550
|
"use strict";
|
|
12548
12551
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12549
12552
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -12784,7 +12787,7 @@ class LexadorPortugolIpt {
|
|
|
12784
12787
|
}
|
|
12785
12788
|
exports.LexadorPortugolIpt = LexadorPortugolIpt;
|
|
12786
12789
|
|
|
12787
|
-
},{"../../tipos-de-simbolos/portugol-ipt":
|
|
12790
|
+
},{"../../tipos-de-simbolos/portugol-ipt":173,"../simbolo":163,"./palavras-reservadas/portugol-ipt":155}],151:[function(require,module,exports){
|
|
12788
12791
|
"use strict";
|
|
12789
12792
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12790
12793
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13184,7 +13187,7 @@ class LexadorTenda {
|
|
|
13184
13187
|
}
|
|
13185
13188
|
exports.LexadorTenda = LexadorTenda;
|
|
13186
13189
|
|
|
13187
|
-
},{"../../tipos-de-simbolos/tenda":
|
|
13190
|
+
},{"../../tipos-de-simbolos/tenda":174,"../simbolo":163,"./palavras-reservadas/tenda":156,"browser-process-hrtime":347}],152:[function(require,module,exports){
|
|
13188
13191
|
"use strict";
|
|
13189
13192
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13190
13193
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13225,7 +13228,7 @@ exports.palavrasReservadas = {
|
|
|
13225
13228
|
verdadeiro: egua_classico_1.default.VERDADEIRO,
|
|
13226
13229
|
};
|
|
13227
13230
|
|
|
13228
|
-
},{"../../../tipos-de-simbolos/egua-classico":
|
|
13231
|
+
},{"../../../tipos-de-simbolos/egua-classico":169}],153:[function(require,module,exports){
|
|
13229
13232
|
"use strict";
|
|
13230
13233
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13231
13234
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13237,7 +13240,7 @@ exports.palavrasReservadas = {
|
|
|
13237
13240
|
hai: guarani_1.default.HAI,
|
|
13238
13241
|
};
|
|
13239
13242
|
|
|
13240
|
-
},{"../../../tipos-de-simbolos/guarani":
|
|
13243
|
+
},{"../../../tipos-de-simbolos/guarani":170}],154:[function(require,module,exports){
|
|
13241
13244
|
"use strict";
|
|
13242
13245
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13243
13246
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13300,7 +13303,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
13300
13303
|
verdadeiro: pitugues_1.default.VERDADEIRO,
|
|
13301
13304
|
};
|
|
13302
13305
|
|
|
13303
|
-
},{"../../../tipos-de-simbolos/pitugues":
|
|
13306
|
+
},{"../../../tipos-de-simbolos/pitugues":172}],155:[function(require,module,exports){
|
|
13304
13307
|
"use strict";
|
|
13305
13308
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13306
13309
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13322,7 +13325,7 @@ exports.palavrasReservadas = {
|
|
|
13322
13325
|
senão: portugol_ipt_1.default.SENAO,
|
|
13323
13326
|
};
|
|
13324
13327
|
|
|
13325
|
-
},{"../../../tipos-de-simbolos/portugol-ipt":
|
|
13328
|
+
},{"../../../tipos-de-simbolos/portugol-ipt":173}],156:[function(require,module,exports){
|
|
13326
13329
|
"use strict";
|
|
13327
13330
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13328
13331
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13376,7 +13379,7 @@ exports.palavrasReservadas = {
|
|
|
13376
13379
|
verdadeiro: tenda_1.default.VERDADEIRO,
|
|
13377
13380
|
};
|
|
13378
13381
|
|
|
13379
|
-
},{"../../../tipos-de-simbolos/tenda":
|
|
13382
|
+
},{"../../../tipos-de-simbolos/tenda":174}],157:[function(require,module,exports){
|
|
13380
13383
|
"use strict";
|
|
13381
13384
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13382
13385
|
if (k2 === undefined) k2 = k;
|
|
@@ -13399,7 +13402,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
|
|
|
13399
13402
|
__exportStar(require("./micro-lexador"), exports);
|
|
13400
13403
|
__exportStar(require("./simbolo"), exports);
|
|
13401
13404
|
|
|
13402
|
-
},{"./dialetos":
|
|
13405
|
+
},{"./dialetos":146,"./lexador":160,"./lexador-base-linha-unica":158,"./micro-lexador":161,"./simbolo":163}],158:[function(require,module,exports){
|
|
13403
13406
|
"use strict";
|
|
13404
13407
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13405
13408
|
exports.LexadorBaseLinhaUnica = void 0;
|
|
@@ -13483,7 +13486,7 @@ class LexadorBaseLinhaUnica {
|
|
|
13483
13486
|
}
|
|
13484
13487
|
exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
|
|
13485
13488
|
|
|
13486
|
-
},{"./simbolo":
|
|
13489
|
+
},{"./simbolo":163}],159:[function(require,module,exports){
|
|
13487
13490
|
"use strict";
|
|
13488
13491
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13489
13492
|
exports.LexadorBase = void 0;
|
|
@@ -13597,7 +13600,7 @@ class LexadorBase {
|
|
|
13597
13600
|
}
|
|
13598
13601
|
exports.LexadorBase = LexadorBase;
|
|
13599
13602
|
|
|
13600
|
-
},{"./simbolo":
|
|
13603
|
+
},{"./simbolo":163}],160:[function(require,module,exports){
|
|
13601
13604
|
"use strict";
|
|
13602
13605
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13603
13606
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14057,7 +14060,7 @@ class Lexador {
|
|
|
14057
14060
|
}
|
|
14058
14061
|
exports.Lexador = Lexador;
|
|
14059
14062
|
|
|
14060
|
-
},{"../tipos-de-simbolos/delegua":
|
|
14063
|
+
},{"../tipos-de-simbolos/delegua":168,"./palavras-reservadas":162,"./simbolo":163,"browser-process-hrtime":347}],161:[function(require,module,exports){
|
|
14061
14064
|
"use strict";
|
|
14062
14065
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14063
14066
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14272,7 +14275,7 @@ class MicroLexador {
|
|
|
14272
14275
|
}
|
|
14273
14276
|
exports.MicroLexador = MicroLexador;
|
|
14274
14277
|
|
|
14275
|
-
},{"../tipos-de-simbolos/microgramaticas/delegua":
|
|
14278
|
+
},{"../tipos-de-simbolos/microgramaticas/delegua":171,"./palavras-reservadas":162,"./simbolo":163}],162:[function(require,module,exports){
|
|
14276
14279
|
"use strict";
|
|
14277
14280
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14278
14281
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14335,7 +14338,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
14335
14338
|
verdadeiro: delegua_1.default.VERDADEIRO,
|
|
14336
14339
|
};
|
|
14337
14340
|
|
|
14338
|
-
},{"../tipos-de-simbolos/delegua":
|
|
14341
|
+
},{"../tipos-de-simbolos/delegua":168}],163:[function(require,module,exports){
|
|
14339
14342
|
"use strict";
|
|
14340
14343
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14341
14344
|
exports.Simbolo = void 0;
|
|
@@ -14353,7 +14356,7 @@ class Simbolo {
|
|
|
14353
14356
|
}
|
|
14354
14357
|
exports.Simbolo = Simbolo;
|
|
14355
14358
|
|
|
14356
|
-
},{}],
|
|
14359
|
+
},{}],164:[function(require,module,exports){
|
|
14357
14360
|
"use strict";
|
|
14358
14361
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14359
14362
|
exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
|
|
@@ -14377,7 +14380,7 @@ class ContinuarQuebra extends Quebra {
|
|
|
14377
14380
|
}
|
|
14378
14381
|
exports.ContinuarQuebra = ContinuarQuebra;
|
|
14379
14382
|
|
|
14380
|
-
},{}],
|
|
14383
|
+
},{}],165:[function(require,module,exports){
|
|
14381
14384
|
"use strict";
|
|
14382
14385
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14383
14386
|
exports.default = {
|
|
@@ -14407,7 +14410,7 @@ exports.default = {
|
|
|
14407
14410
|
VETOR_TEXTO: 'texto[]',
|
|
14408
14411
|
};
|
|
14409
14412
|
|
|
14410
|
-
},{}],
|
|
14413
|
+
},{}],166:[function(require,module,exports){
|
|
14411
14414
|
"use strict";
|
|
14412
14415
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14413
14416
|
exports.default = {
|
|
@@ -14426,7 +14429,7 @@ exports.default = {
|
|
|
14426
14429
|
TEXTO: 'string',
|
|
14427
14430
|
};
|
|
14428
14431
|
|
|
14429
|
-
},{}],
|
|
14432
|
+
},{}],167:[function(require,module,exports){
|
|
14430
14433
|
"use strict";
|
|
14431
14434
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14432
14435
|
exports.default = {
|
|
@@ -14452,7 +14455,7 @@ exports.default = {
|
|
|
14452
14455
|
VIRGULA: 'VIRGULA',
|
|
14453
14456
|
};
|
|
14454
14457
|
|
|
14455
|
-
},{}],
|
|
14458
|
+
},{}],168:[function(require,module,exports){
|
|
14456
14459
|
"use strict";
|
|
14457
14460
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14458
14461
|
exports.default = {
|
|
@@ -14547,7 +14550,7 @@ exports.default = {
|
|
|
14547
14550
|
VIRGULA: 'VIRGULA',
|
|
14548
14551
|
};
|
|
14549
14552
|
|
|
14550
|
-
},{}],
|
|
14553
|
+
},{}],169:[function(require,module,exports){
|
|
14551
14554
|
"use strict";
|
|
14552
14555
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14553
14556
|
exports.default = {
|
|
@@ -14625,7 +14628,7 @@ exports.default = {
|
|
|
14625
14628
|
VIRGULA: 'VIRGULA',
|
|
14626
14629
|
};
|
|
14627
14630
|
|
|
14628
|
-
},{}],
|
|
14631
|
+
},{}],170:[function(require,module,exports){
|
|
14629
14632
|
"use strict";
|
|
14630
14633
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14631
14634
|
exports.default = {
|
|
@@ -14642,7 +14645,7 @@ exports.default = {
|
|
|
14642
14645
|
VIRGULA: 'VIRGULA',
|
|
14643
14646
|
};
|
|
14644
14647
|
|
|
14645
|
-
},{}],
|
|
14648
|
+
},{}],171:[function(require,module,exports){
|
|
14646
14649
|
"use strict";
|
|
14647
14650
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14648
14651
|
exports.default = {
|
|
@@ -14691,7 +14694,7 @@ exports.default = {
|
|
|
14691
14694
|
VIRGULA: 'VIRGULA',
|
|
14692
14695
|
};
|
|
14693
14696
|
|
|
14694
|
-
},{}],
|
|
14697
|
+
},{}],172:[function(require,module,exports){
|
|
14695
14698
|
"use strict";
|
|
14696
14699
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14697
14700
|
exports.default = {
|
|
@@ -14774,7 +14777,7 @@ exports.default = {
|
|
|
14774
14777
|
VIRGULA: 'VIRGULA',
|
|
14775
14778
|
};
|
|
14776
14779
|
|
|
14777
|
-
},{}],
|
|
14780
|
+
},{}],173:[function(require,module,exports){
|
|
14778
14781
|
"use strict";
|
|
14779
14782
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14780
14783
|
exports.default = {
|
|
@@ -14813,7 +14816,7 @@ exports.default = {
|
|
|
14813
14816
|
VIRGULA: 'VIRGULA',
|
|
14814
14817
|
};
|
|
14815
14818
|
|
|
14816
|
-
},{}],
|
|
14819
|
+
},{}],174:[function(require,module,exports){
|
|
14817
14820
|
"use strict";
|
|
14818
14821
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14819
14822
|
// Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
|
|
@@ -14916,7 +14919,7 @@ exports.default = {
|
|
|
14916
14919
|
VIRGULA: 'VIRGULA',
|
|
14917
14920
|
};
|
|
14918
14921
|
|
|
14919
|
-
},{}],
|
|
14922
|
+
},{}],175:[function(require,module,exports){
|
|
14920
14923
|
"use strict";
|
|
14921
14924
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14922
14925
|
if (k2 === undefined) k2 = k;
|
|
@@ -14942,7 +14945,7 @@ __exportStar(require("./tradutor-reverso-javascript"), exports);
|
|
|
14942
14945
|
__exportStar(require("./tradutor-reverso-python"), exports);
|
|
14943
14946
|
__exportStar(require("./tradutor-reverso-tenda"), exports);
|
|
14944
14947
|
|
|
14945
|
-
},{"./tradutor-assemblyscript":
|
|
14948
|
+
},{"./tradutor-assemblyscript":178,"./tradutor-javascript":179,"./tradutor-mermaidjs":180,"./tradutor-portugol-ipt":181,"./tradutor-python":182,"./tradutor-reverso-javascript":183,"./tradutor-reverso-python":184,"./tradutor-reverso-tenda":185}],176:[function(require,module,exports){
|
|
14946
14949
|
"use strict";
|
|
14947
14950
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
14948
14951
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -16182,7 +16185,7 @@ __decorate([
|
|
|
16182
16185
|
Decorators_1.Override
|
|
16183
16186
|
], Python3Lexer.prototype, "nextToken", null);
|
|
16184
16187
|
|
|
16185
|
-
},{"./python3-parser":
|
|
16188
|
+
},{"./python3-parser":177,"antlr4ts/CommonToken":195,"antlr4ts/Decorators":199,"antlr4ts/Lexer":207,"antlr4ts/Token":224,"antlr4ts/VocabularyImpl":230,"antlr4ts/atn/ATNDeserializer":236,"antlr4ts/atn/LexerATNSimulator":257,"antlr4ts/misc/Utils":318}],177:[function(require,module,exports){
|
|
16186
16189
|
"use strict";
|
|
16187
16190
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
16188
16191
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -27429,7 +27432,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
27429
27432
|
}
|
|
27430
27433
|
exports.Yield_argContext = Yield_argContext;
|
|
27431
27434
|
|
|
27432
|
-
},{"antlr4ts/FailedPredicateException":
|
|
27435
|
+
},{"antlr4ts/FailedPredicateException":203,"antlr4ts/NoViableAltException":211,"antlr4ts/Parser":212,"antlr4ts/ParserRuleContext":215,"antlr4ts/RecognitionException":218,"antlr4ts/Token":224,"antlr4ts/VocabularyImpl":230,"antlr4ts/atn/ATN":232,"antlr4ts/atn/ATNDeserializer":236,"antlr4ts/atn/ParserATNSimulator":273,"antlr4ts/misc/Utils":318}],178:[function(require,module,exports){
|
|
27433
27436
|
"use strict";
|
|
27434
27437
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27435
27438
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28063,7 +28066,7 @@ class TradutorAssemblyScript {
|
|
|
28063
28066
|
}
|
|
28064
28067
|
exports.TradutorAssemblyScript = TradutorAssemblyScript;
|
|
28065
28068
|
|
|
28066
|
-
},{"../construtos":
|
|
28069
|
+
},{"../construtos":44,"../declaracoes":84,"../tipos-de-simbolos/delegua":168}],179:[function(require,module,exports){
|
|
28067
28070
|
"use strict";
|
|
28068
28071
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28069
28072
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28802,7 +28805,7 @@ class TradutorJavaScript {
|
|
|
28802
28805
|
}
|
|
28803
28806
|
exports.TradutorJavaScript = TradutorJavaScript;
|
|
28804
28807
|
|
|
28805
|
-
},{"../construtos":
|
|
28808
|
+
},{"../construtos":44,"../declaracoes":84,"../tipos-de-simbolos/delegua":168}],180:[function(require,module,exports){
|
|
28806
28809
|
"use strict";
|
|
28807
28810
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28808
28811
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29253,7 +29256,7 @@ class TradutorMermaidJs {
|
|
|
29253
29256
|
}
|
|
29254
29257
|
exports.TradutorMermaidJs = TradutorMermaidJs;
|
|
29255
29258
|
|
|
29256
|
-
},{"../tipos-de-simbolos/delegua":
|
|
29259
|
+
},{"../tipos-de-simbolos/delegua":168}],181:[function(require,module,exports){
|
|
29257
29260
|
"use strict";
|
|
29258
29261
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29259
29262
|
exports.TradutorPortugolIpt = void 0;
|
|
@@ -29315,7 +29318,7 @@ class TradutorPortugolIpt {
|
|
|
29315
29318
|
}
|
|
29316
29319
|
exports.TradutorPortugolIpt = TradutorPortugolIpt;
|
|
29317
29320
|
|
|
29318
|
-
},{"../avaliador-sintatico/dialetos":
|
|
29321
|
+
},{"../avaliador-sintatico/dialetos":8,"../lexador/dialetos":146}],182:[function(require,module,exports){
|
|
29319
29322
|
"use strict";
|
|
29320
29323
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29321
29324
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29955,7 +29958,7 @@ class TradutorPython {
|
|
|
29955
29958
|
}
|
|
29956
29959
|
exports.TradutorPython = TradutorPython;
|
|
29957
29960
|
|
|
29958
|
-
},{"../construtos":
|
|
29961
|
+
},{"../construtos":44,"../declaracoes":84,"../tipos-de-simbolos/delegua":168}],183:[function(require,module,exports){
|
|
29959
29962
|
"use strict";
|
|
29960
29963
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29961
29964
|
exports.TradutorReversoJavaScript = void 0;
|
|
@@ -30350,7 +30353,7 @@ class TradutorReversoJavaScript {
|
|
|
30350
30353
|
}
|
|
30351
30354
|
exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
|
|
30352
30355
|
|
|
30353
|
-
},{}],
|
|
30356
|
+
},{}],184:[function(require,module,exports){
|
|
30354
30357
|
"use strict";
|
|
30355
30358
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30356
30359
|
exports.TradutorReversoPython = void 0;
|
|
@@ -30423,7 +30426,7 @@ class TradutorReversoPython {
|
|
|
30423
30426
|
}
|
|
30424
30427
|
exports.TradutorReversoPython = TradutorReversoPython;
|
|
30425
30428
|
|
|
30426
|
-
},{"./python/python3-lexer":
|
|
30429
|
+
},{"./python/python3-lexer":176,"./python/python3-parser":177,"antlr4ts":301,"antlr4ts/tree/ParseTreeWalker":320}],185:[function(require,module,exports){
|
|
30427
30430
|
"use strict";
|
|
30428
30431
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
30429
30432
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -31008,7 +31011,7 @@ class TradutorReversoTenda {
|
|
|
31008
31011
|
}
|
|
31009
31012
|
exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
31010
31013
|
|
|
31011
|
-
},{"../construtos":
|
|
31014
|
+
},{"../construtos":44,"../tipos-de-simbolos/tenda":174}],186:[function(require,module,exports){
|
|
31012
31015
|
"use strict";
|
|
31013
31016
|
/*!
|
|
31014
31017
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31016,7 +31019,7 @@ exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
|
31016
31019
|
*/
|
|
31017
31020
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31018
31021
|
|
|
31019
|
-
},{}],
|
|
31022
|
+
},{}],187:[function(require,module,exports){
|
|
31020
31023
|
"use strict";
|
|
31021
31024
|
/*!
|
|
31022
31025
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31024,7 +31027,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
31024
31027
|
*/
|
|
31025
31028
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31026
31029
|
|
|
31027
|
-
},{}],
|
|
31030
|
+
},{}],188:[function(require,module,exports){
|
|
31028
31031
|
"use strict";
|
|
31029
31032
|
/*!
|
|
31030
31033
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31186,7 +31189,7 @@ __decorate([
|
|
|
31186
31189
|
], ANTLRInputStream.prototype, "toString", null);
|
|
31187
31190
|
exports.ANTLRInputStream = ANTLRInputStream;
|
|
31188
31191
|
|
|
31189
|
-
},{"./Decorators":
|
|
31192
|
+
},{"./Decorators":199,"./IntStream":205,"assert":342}],189:[function(require,module,exports){
|
|
31190
31193
|
"use strict";
|
|
31191
31194
|
/*!
|
|
31192
31195
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31269,7 +31272,7 @@ __decorate([
|
|
|
31269
31272
|
], BailErrorStrategy.prototype, "sync", null);
|
|
31270
31273
|
exports.BailErrorStrategy = BailErrorStrategy;
|
|
31271
31274
|
|
|
31272
|
-
},{"./Decorators":
|
|
31275
|
+
},{"./Decorators":199,"./DefaultErrorStrategy":200,"./InputMismatchException":204,"./misc/ParseCancellationException":316}],190:[function(require,module,exports){
|
|
31273
31276
|
"use strict";
|
|
31274
31277
|
/*!
|
|
31275
31278
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31759,7 +31762,7 @@ BufferedTokenStream = __decorate([
|
|
|
31759
31762
|
], BufferedTokenStream);
|
|
31760
31763
|
exports.BufferedTokenStream = BufferedTokenStream;
|
|
31761
31764
|
|
|
31762
|
-
},{"./CommonToken":
|
|
31765
|
+
},{"./CommonToken":195,"./Decorators":199,"./Lexer":207,"./Token":224,"./misc/Interval":311,"assert":342}],191:[function(require,module,exports){
|
|
31763
31766
|
"use strict";
|
|
31764
31767
|
/*!
|
|
31765
31768
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31767,7 +31770,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
|
|
|
31767
31770
|
*/
|
|
31768
31771
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31769
31772
|
|
|
31770
|
-
},{}],
|
|
31773
|
+
},{}],192:[function(require,module,exports){
|
|
31771
31774
|
"use strict";
|
|
31772
31775
|
/*!
|
|
31773
31776
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -31901,7 +31904,7 @@ var CharStreams;
|
|
|
31901
31904
|
// }
|
|
31902
31905
|
})(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
|
|
31903
31906
|
|
|
31904
|
-
},{"./CodePointBuffer":
|
|
31907
|
+
},{"./CodePointBuffer":193,"./CodePointCharStream":194,"./IntStream":205}],193:[function(require,module,exports){
|
|
31905
31908
|
"use strict";
|
|
31906
31909
|
/*!
|
|
31907
31910
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32136,7 +32139,7 @@ exports.CodePointBuffer = CodePointBuffer;
|
|
|
32136
32139
|
CodePointBuffer.Builder = Builder;
|
|
32137
32140
|
})(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
|
|
32138
32141
|
|
|
32139
|
-
},{"./misc/Character":
|
|
32142
|
+
},{"./misc/Character":307,"assert":342}],194:[function(require,module,exports){
|
|
32140
32143
|
"use strict";
|
|
32141
32144
|
/*!
|
|
32142
32145
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32286,7 +32289,7 @@ __decorate([
|
|
|
32286
32289
|
], CodePointCharStream.prototype, "getText", null);
|
|
32287
32290
|
exports.CodePointCharStream = CodePointCharStream;
|
|
32288
32291
|
|
|
32289
|
-
},{"./Decorators":
|
|
32292
|
+
},{"./Decorators":199,"./IntStream":205,"./misc/Interval":311,"assert":342}],195:[function(require,module,exports){
|
|
32290
32293
|
"use strict";
|
|
32291
32294
|
/*!
|
|
32292
32295
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32516,7 +32519,7 @@ CommonToken = __decorate([
|
|
|
32516
32519
|
], CommonToken);
|
|
32517
32520
|
exports.CommonToken = CommonToken;
|
|
32518
32521
|
|
|
32519
|
-
},{"./Decorators":
|
|
32522
|
+
},{"./Decorators":199,"./Token":224,"./misc/Interval":311}],196:[function(require,module,exports){
|
|
32520
32523
|
"use strict";
|
|
32521
32524
|
/*!
|
|
32522
32525
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32580,7 +32583,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
|
|
|
32580
32583
|
CommonTokenFactory.DEFAULT = new CommonTokenFactory();
|
|
32581
32584
|
})(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
|
|
32582
32585
|
|
|
32583
|
-
},{"./CommonToken":
|
|
32586
|
+
},{"./CommonToken":195,"./Decorators":199,"./misc/Interval":311}],197:[function(require,module,exports){
|
|
32584
32587
|
"use strict";
|
|
32585
32588
|
/*!
|
|
32586
32589
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32707,7 +32710,7 @@ CommonTokenStream = __decorate([
|
|
|
32707
32710
|
], CommonTokenStream);
|
|
32708
32711
|
exports.CommonTokenStream = CommonTokenStream;
|
|
32709
32712
|
|
|
32710
|
-
},{"./BufferedTokenStream":
|
|
32713
|
+
},{"./BufferedTokenStream":190,"./Decorators":199,"./Token":224}],198:[function(require,module,exports){
|
|
32711
32714
|
"use strict";
|
|
32712
32715
|
/*!
|
|
32713
32716
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32741,7 +32744,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
|
|
|
32741
32744
|
*/
|
|
32742
32745
|
ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
|
|
32743
32746
|
|
|
32744
|
-
},{}],
|
|
32747
|
+
},{}],199:[function(require,module,exports){
|
|
32745
32748
|
"use strict";
|
|
32746
32749
|
/*!
|
|
32747
32750
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32768,7 +32771,7 @@ function SuppressWarnings(options) {
|
|
|
32768
32771
|
}
|
|
32769
32772
|
exports.SuppressWarnings = SuppressWarnings;
|
|
32770
32773
|
|
|
32771
|
-
},{}],
|
|
32774
|
+
},{}],200:[function(require,module,exports){
|
|
32772
32775
|
"use strict";
|
|
32773
32776
|
/*!
|
|
32774
32777
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33582,7 +33585,7 @@ __decorate([
|
|
|
33582
33585
|
], DefaultErrorStrategy.prototype, "consumeUntil", null);
|
|
33583
33586
|
exports.DefaultErrorStrategy = DefaultErrorStrategy;
|
|
33584
33587
|
|
|
33585
|
-
},{"./Decorators":
|
|
33588
|
+
},{"./Decorators":199,"./FailedPredicateException":203,"./InputMismatchException":204,"./NoViableAltException":211,"./Token":224,"./atn/ATNState":238,"./atn/ATNStateType":239,"./atn/PredictionContext":279,"./misc/IntervalSet":312}],201:[function(require,module,exports){
|
|
33586
33589
|
"use strict";
|
|
33587
33590
|
/*!
|
|
33588
33591
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33658,7 +33661,7 @@ var Dependents;
|
|
|
33658
33661
|
Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
|
|
33659
33662
|
})(Dependents = exports.Dependents || (exports.Dependents = {}));
|
|
33660
33663
|
|
|
33661
|
-
},{}],
|
|
33664
|
+
},{}],202:[function(require,module,exports){
|
|
33662
33665
|
"use strict";
|
|
33663
33666
|
/*!
|
|
33664
33667
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33806,7 +33809,7 @@ __decorate([
|
|
|
33806
33809
|
], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
|
|
33807
33810
|
exports.DiagnosticErrorListener = DiagnosticErrorListener;
|
|
33808
33811
|
|
|
33809
|
-
},{"./Decorators":
|
|
33812
|
+
},{"./Decorators":199,"./misc/BitSet":306,"./misc/Interval":311}],203:[function(require,module,exports){
|
|
33810
33813
|
"use strict";
|
|
33811
33814
|
/*!
|
|
33812
33815
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33871,7 +33874,7 @@ FailedPredicateException = __decorate([
|
|
|
33871
33874
|
], FailedPredicateException);
|
|
33872
33875
|
exports.FailedPredicateException = FailedPredicateException;
|
|
33873
33876
|
|
|
33874
|
-
},{"./Decorators":
|
|
33877
|
+
},{"./Decorators":199,"./RecognitionException":218,"./atn/PredicateTransition":278}],204:[function(require,module,exports){
|
|
33875
33878
|
"use strict";
|
|
33876
33879
|
/*!
|
|
33877
33880
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33911,7 +33914,7 @@ InputMismatchException = __decorate([
|
|
|
33911
33914
|
], InputMismatchException);
|
|
33912
33915
|
exports.InputMismatchException = InputMismatchException;
|
|
33913
33916
|
|
|
33914
|
-
},{"./Decorators":
|
|
33917
|
+
},{"./Decorators":199,"./RecognitionException":218}],205:[function(require,module,exports){
|
|
33915
33918
|
"use strict";
|
|
33916
33919
|
/*!
|
|
33917
33920
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33934,7 +33937,7 @@ var IntStream;
|
|
|
33934
33937
|
IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
|
|
33935
33938
|
})(IntStream = exports.IntStream || (exports.IntStream = {}));
|
|
33936
33939
|
|
|
33937
|
-
},{}],
|
|
33940
|
+
},{}],206:[function(require,module,exports){
|
|
33938
33941
|
"use strict";
|
|
33939
33942
|
/*!
|
|
33940
33943
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33981,7 +33984,7 @@ __decorate([
|
|
|
33981
33984
|
], InterpreterRuleContext.prototype, "ruleIndex", null);
|
|
33982
33985
|
exports.InterpreterRuleContext = InterpreterRuleContext;
|
|
33983
33986
|
|
|
33984
|
-
},{"./Decorators":
|
|
33987
|
+
},{"./Decorators":199,"./ParserRuleContext":215}],207:[function(require,module,exports){
|
|
33985
33988
|
"use strict";
|
|
33986
33989
|
/*!
|
|
33987
33990
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34317,7 +34320,7 @@ __decorate([
|
|
|
34317
34320
|
], Lexer.prototype, "charPositionInLine", null);
|
|
34318
34321
|
exports.Lexer = Lexer;
|
|
34319
34322
|
|
|
34320
|
-
},{"./CommonTokenFactory":
|
|
34323
|
+
},{"./CommonTokenFactory":196,"./Decorators":199,"./IntStream":205,"./LexerNoViableAltException":209,"./Recognizer":219,"./Token":224,"./atn/LexerATNSimulator":257,"./misc/IntegerStack":310,"./misc/Interval":311}],208:[function(require,module,exports){
|
|
34321
34324
|
"use strict";
|
|
34322
34325
|
/*!
|
|
34323
34326
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34397,7 +34400,7 @@ LexerInterpreter = __decorate([
|
|
|
34397
34400
|
], LexerInterpreter);
|
|
34398
34401
|
exports.LexerInterpreter = LexerInterpreter;
|
|
34399
34402
|
|
|
34400
|
-
},{"./Decorators":
|
|
34403
|
+
},{"./Decorators":199,"./Lexer":207,"./atn/LexerATNSimulator":257}],209:[function(require,module,exports){
|
|
34401
34404
|
"use strict";
|
|
34402
34405
|
/*!
|
|
34403
34406
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34454,7 +34457,7 @@ LexerNoViableAltException = __decorate([
|
|
|
34454
34457
|
], LexerNoViableAltException);
|
|
34455
34458
|
exports.LexerNoViableAltException = LexerNoViableAltException;
|
|
34456
34459
|
|
|
34457
|
-
},{"./Decorators":
|
|
34460
|
+
},{"./Decorators":199,"./RecognitionException":218,"./misc/Interval":311,"./misc/Utils":318}],210:[function(require,module,exports){
|
|
34458
34461
|
"use strict";
|
|
34459
34462
|
/*!
|
|
34460
34463
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34664,7 +34667,7 @@ ListTokenSource = __decorate([
|
|
|
34664
34667
|
], ListTokenSource);
|
|
34665
34668
|
exports.ListTokenSource = ListTokenSource;
|
|
34666
34669
|
|
|
34667
|
-
},{"./CommonTokenFactory":
|
|
34670
|
+
},{"./CommonTokenFactory":196,"./Decorators":199,"./Token":224}],211:[function(require,module,exports){
|
|
34668
34671
|
"use strict";
|
|
34669
34672
|
/*!
|
|
34670
34673
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34719,7 +34722,7 @@ __decorate([
|
|
|
34719
34722
|
], NoViableAltException.prototype, "_startToken", void 0);
|
|
34720
34723
|
exports.NoViableAltException = NoViableAltException;
|
|
34721
34724
|
|
|
34722
|
-
},{"./Decorators":
|
|
34725
|
+
},{"./Decorators":199,"./Parser":212,"./RecognitionException":218}],212:[function(require,module,exports){
|
|
34723
34726
|
(function (process){(function (){
|
|
34724
34727
|
"use strict";
|
|
34725
34728
|
/*!
|
|
@@ -35565,7 +35568,7 @@ __decorate([
|
|
|
35565
35568
|
exports.Parser = Parser;
|
|
35566
35569
|
|
|
35567
35570
|
}).call(this)}).call(this,require('_process'))
|
|
35568
|
-
},{"./Decorators":
|
|
35571
|
+
},{"./Decorators":199,"./DefaultErrorStrategy":200,"./Lexer":207,"./ProxyParserErrorListener":217,"./Recognizer":219,"./Token":224,"./atn/ATNDeserializationOptions":235,"./atn/ATNDeserializer":236,"./atn/ParseInfo":272,"./atn/ParserATNSimulator":273,"./atn/ProfilingATNSimulator":282,"./misc/IntegerStack":310,"./misc/Utils":318,"./tree/ErrorNode":319,"./tree/TerminalNode":322,"./tree/pattern/ParseTreePatternMatcher":327,"_process":401}],213:[function(require,module,exports){
|
|
35569
35572
|
"use strict";
|
|
35570
35573
|
/*!
|
|
35571
35574
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35573,7 +35576,7 @@ exports.Parser = Parser;
|
|
|
35573
35576
|
*/
|
|
35574
35577
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
35575
35578
|
|
|
35576
|
-
},{}],
|
|
35579
|
+
},{}],214:[function(require,module,exports){
|
|
35577
35580
|
"use strict";
|
|
35578
35581
|
/*!
|
|
35579
35582
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35981,7 +35984,7 @@ ParserInterpreter = __decorate([
|
|
|
35981
35984
|
], ParserInterpreter);
|
|
35982
35985
|
exports.ParserInterpreter = ParserInterpreter;
|
|
35983
35986
|
|
|
35984
|
-
},{"./Decorators":
|
|
35987
|
+
},{"./Decorators":199,"./FailedPredicateException":203,"./InputMismatchException":204,"./InterpreterRuleContext":206,"./Parser":212,"./RecognitionException":218,"./Token":224,"./atn/ATNState":238,"./atn/ATNStateType":239,"./atn/LoopEndState":269,"./atn/ParserATNSimulator":273,"./atn/StarLoopEntryState":291,"./misc/BitSet":306}],215:[function(require,module,exports){
|
|
35985
35988
|
"use strict";
|
|
35986
35989
|
/*!
|
|
35987
35990
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36282,7 +36285,7 @@ __decorate([
|
|
|
36282
36285
|
], ParserRuleContext.prototype, "sourceInterval", null);
|
|
36283
36286
|
exports.ParserRuleContext = ParserRuleContext;
|
|
36284
36287
|
|
|
36285
|
-
},{"./Decorators":
|
|
36288
|
+
},{"./Decorators":199,"./RuleContext":220,"./misc/Interval":311,"./tree/ErrorNode":319,"./tree/TerminalNode":322}],216:[function(require,module,exports){
|
|
36286
36289
|
"use strict";
|
|
36287
36290
|
/*!
|
|
36288
36291
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36332,7 +36335,7 @@ __decorate([
|
|
|
36332
36335
|
], ProxyErrorListener.prototype, "syntaxError", null);
|
|
36333
36336
|
exports.ProxyErrorListener = ProxyErrorListener;
|
|
36334
36337
|
|
|
36335
|
-
},{"./Decorators":
|
|
36338
|
+
},{"./Decorators":199}],217:[function(require,module,exports){
|
|
36336
36339
|
"use strict";
|
|
36337
36340
|
/*!
|
|
36338
36341
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36391,7 +36394,7 @@ __decorate([
|
|
|
36391
36394
|
], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
|
|
36392
36395
|
exports.ProxyParserErrorListener = ProxyParserErrorListener;
|
|
36393
36396
|
|
|
36394
|
-
},{"./Decorators":
|
|
36397
|
+
},{"./Decorators":199,"./ProxyErrorListener":216}],218:[function(require,module,exports){
|
|
36395
36398
|
"use strict";
|
|
36396
36399
|
/*!
|
|
36397
36400
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36496,7 +36499,7 @@ class RecognitionException extends Error {
|
|
|
36496
36499
|
}
|
|
36497
36500
|
exports.RecognitionException = RecognitionException;
|
|
36498
36501
|
|
|
36499
|
-
},{}],
|
|
36502
|
+
},{}],219:[function(require,module,exports){
|
|
36500
36503
|
"use strict";
|
|
36501
36504
|
/*!
|
|
36502
36505
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36715,7 +36718,7 @@ __decorate([
|
|
|
36715
36718
|
], Recognizer.prototype, "getErrorListeners", null);
|
|
36716
36719
|
exports.Recognizer = Recognizer;
|
|
36717
36720
|
|
|
36718
|
-
},{"./ConsoleErrorListener":
|
|
36721
|
+
},{"./ConsoleErrorListener":198,"./Decorators":199,"./ProxyErrorListener":216,"./Token":224,"./misc/Utils":318}],220:[function(require,module,exports){
|
|
36719
36722
|
"use strict";
|
|
36720
36723
|
/*!
|
|
36721
36724
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36932,7 +36935,7 @@ __decorate([
|
|
|
36932
36935
|
], RuleContext.prototype, "toStringTree", null);
|
|
36933
36936
|
exports.RuleContext = RuleContext;
|
|
36934
36937
|
|
|
36935
|
-
},{"./Decorators":
|
|
36938
|
+
},{"./Decorators":199,"./ParserRuleContext":215,"./Recognizer":219,"./atn/ATN":232,"./misc/Interval":311,"./tree/RuleNode":321,"./tree/Trees":323}],221:[function(require,module,exports){
|
|
36936
36939
|
"use strict";
|
|
36937
36940
|
/*!
|
|
36938
36941
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36983,7 +36986,7 @@ __decorate([
|
|
|
36983
36986
|
], RuleContextWithAltNum.prototype, "altNumber", null);
|
|
36984
36987
|
exports.RuleContextWithAltNum = RuleContextWithAltNum;
|
|
36985
36988
|
|
|
36986
|
-
},{"./Decorators":
|
|
36989
|
+
},{"./Decorators":199,"./ParserRuleContext":215,"./atn/ATN":232}],222:[function(require,module,exports){
|
|
36987
36990
|
"use strict";
|
|
36988
36991
|
/*!
|
|
36989
36992
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37006,7 +37009,7 @@ function RuleDependency(dependency) {
|
|
|
37006
37009
|
}
|
|
37007
37010
|
exports.RuleDependency = RuleDependency;
|
|
37008
37011
|
|
|
37009
|
-
},{}],
|
|
37012
|
+
},{}],223:[function(require,module,exports){
|
|
37010
37013
|
"use strict";
|
|
37011
37014
|
/*!
|
|
37012
37015
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37025,7 +37028,7 @@ function RuleVersion(version) {
|
|
|
37025
37028
|
}
|
|
37026
37029
|
exports.RuleVersion = RuleVersion;
|
|
37027
37030
|
|
|
37028
|
-
},{}],
|
|
37031
|
+
},{}],224:[function(require,module,exports){
|
|
37029
37032
|
"use strict";
|
|
37030
37033
|
/*!
|
|
37031
37034
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37065,7 +37068,7 @@ var Token;
|
|
|
37065
37068
|
Token.MIN_USER_CHANNEL_VALUE = 2;
|
|
37066
37069
|
})(Token = exports.Token || (exports.Token = {}));
|
|
37067
37070
|
|
|
37068
|
-
},{"./IntStream":
|
|
37071
|
+
},{"./IntStream":205}],225:[function(require,module,exports){
|
|
37069
37072
|
"use strict";
|
|
37070
37073
|
/*!
|
|
37071
37074
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37073,7 +37076,7 @@ var Token;
|
|
|
37073
37076
|
*/
|
|
37074
37077
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37075
37078
|
|
|
37076
|
-
},{}],
|
|
37079
|
+
},{}],226:[function(require,module,exports){
|
|
37077
37080
|
"use strict";
|
|
37078
37081
|
/*!
|
|
37079
37082
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37081,7 +37084,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
37081
37084
|
*/
|
|
37082
37085
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37083
37086
|
|
|
37084
|
-
},{}],
|
|
37087
|
+
},{}],227:[function(require,module,exports){
|
|
37085
37088
|
"use strict";
|
|
37086
37089
|
/*!
|
|
37087
37090
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37089,7 +37092,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
37089
37092
|
*/
|
|
37090
37093
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37091
37094
|
|
|
37092
|
-
},{}],
|
|
37095
|
+
},{}],228:[function(require,module,exports){
|
|
37093
37096
|
"use strict";
|
|
37094
37097
|
/*!
|
|
37095
37098
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37597,7 +37600,7 @@ __decorate([
|
|
|
37597
37600
|
Decorators_1.Override
|
|
37598
37601
|
], ReplaceOp.prototype, "toString", null);
|
|
37599
37602
|
|
|
37600
|
-
},{"./Decorators":
|
|
37603
|
+
},{"./Decorators":199,"./Token":224,"./misc/Interval":311}],229:[function(require,module,exports){
|
|
37601
37604
|
"use strict";
|
|
37602
37605
|
/*!
|
|
37603
37606
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37605,7 +37608,7 @@ __decorate([
|
|
|
37605
37608
|
*/
|
|
37606
37609
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37607
37610
|
|
|
37608
|
-
},{}],
|
|
37611
|
+
},{}],230:[function(require,module,exports){
|
|
37609
37612
|
"use strict";
|
|
37610
37613
|
/*!
|
|
37611
37614
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37725,7 +37728,7 @@ __decorate([
|
|
|
37725
37728
|
], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
|
|
37726
37729
|
exports.VocabularyImpl = VocabularyImpl;
|
|
37727
37730
|
|
|
37728
|
-
},{"./Decorators":
|
|
37731
|
+
},{"./Decorators":199,"./Token":224}],231:[function(require,module,exports){
|
|
37729
37732
|
"use strict";
|
|
37730
37733
|
/*!
|
|
37731
37734
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37733,7 +37736,7 @@ exports.VocabularyImpl = VocabularyImpl;
|
|
|
37733
37736
|
*/
|
|
37734
37737
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37735
37738
|
|
|
37736
|
-
},{}],
|
|
37739
|
+
},{}],232:[function(require,module,exports){
|
|
37737
37740
|
"use strict";
|
|
37738
37741
|
/*!
|
|
37739
37742
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37955,7 +37958,7 @@ exports.ATN = ATN;
|
|
|
37955
37958
|
})(ATN = exports.ATN || (exports.ATN = {}));
|
|
37956
37959
|
exports.ATN = ATN;
|
|
37957
37960
|
|
|
37958
|
-
},{"../Decorators":
|
|
37961
|
+
},{"../Decorators":199,"../Token":224,"../dfa/DFA":297,"../misc/Array2DHashMap":302,"../misc/IntervalSet":312,"../misc/ObjectEqualityComparator":315,"./InvalidState":255,"./LL1Analyzer":256,"./PredictionContext":279,"assert":342}],233:[function(require,module,exports){
|
|
37959
37962
|
"use strict";
|
|
37960
37963
|
/*!
|
|
37961
37964
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38480,7 +38483,7 @@ ActionSemanticContextATNConfig = __decorate([
|
|
|
38480
38483
|
__param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
|
|
38481
38484
|
], ActionSemanticContextATNConfig);
|
|
38482
38485
|
|
|
38483
|
-
},{"../Decorators":
|
|
38486
|
+
},{"../Decorators":199,"../misc/Array2DHashMap":302,"../misc/MurmurHash":314,"../misc/ObjectEqualityComparator":315,"./DecisionState":252,"./PredictionContext":279,"./SemanticContext":287,"assert":342}],234:[function(require,module,exports){
|
|
38484
38487
|
"use strict";
|
|
38485
38488
|
/*!
|
|
38486
38489
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38927,7 +38930,7 @@ __decorate([
|
|
|
38927
38930
|
], ATNConfigSet.prototype, "hashCode", null);
|
|
38928
38931
|
exports.ATNConfigSet = ATNConfigSet;
|
|
38929
38932
|
|
|
38930
|
-
},{"../Decorators":
|
|
38933
|
+
},{"../Decorators":199,"../misc/Array2DHashMap":302,"../misc/Array2DHashSet":303,"../misc/ArrayEqualityComparator":304,"../misc/BitSet":306,"../misc/ObjectEqualityComparator":315,"../misc/Utils":318,"./ATN":232,"./ATNConfig":233,"./PredictionContext":279,"./PredictionContextCache":280,"./SemanticContext":287,"assert":342}],235:[function(require,module,exports){
|
|
38931
38934
|
"use strict";
|
|
38932
38935
|
/*!
|
|
38933
38936
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39006,7 +39009,7 @@ __decorate([
|
|
|
39006
39009
|
], ATNDeserializationOptions, "defaultOptions", null);
|
|
39007
39010
|
exports.ATNDeserializationOptions = ATNDeserializationOptions;
|
|
39008
39011
|
|
|
39009
|
-
},{"../Decorators":
|
|
39012
|
+
},{"../Decorators":199}],236:[function(require,module,exports){
|
|
39010
39013
|
"use strict";
|
|
39011
39014
|
/*!
|
|
39012
39015
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40093,7 +40096,7 @@ __decorate([
|
|
|
40093
40096
|
], ATNDeserializer.prototype, "edgeFactory", null);
|
|
40094
40097
|
exports.ATNDeserializer = ATNDeserializer;
|
|
40095
40098
|
|
|
40096
|
-
},{"../Decorators":
|
|
40099
|
+
},{"../Decorators":199,"../Token":224,"../dfa/DFA":297,"../misc/Array2DHashSet":303,"../misc/BitSet":306,"../misc/IntervalSet":312,"../misc/UUID":317,"./ATN":232,"./ATNDeserializationOptions":235,"./ATNStateType":239,"./ActionTransition":241,"./AtomTransition":243,"./BasicBlockStartState":244,"./BasicState":245,"./BlockEndState":246,"./BlockStartState":247,"./DecisionState":252,"./EpsilonTransition":253,"./InvalidState":255,"./LexerChannelAction":259,"./LexerCustomAction":260,"./LexerModeAction":262,"./LexerMoreAction":263,"./LexerPopModeAction":264,"./LexerPushModeAction":265,"./LexerSkipAction":266,"./LexerTypeAction":267,"./LoopEndState":269,"./NotSetTransition":270,"./ParserATNSimulator":273,"./PlusBlockStartState":274,"./PlusLoopbackState":275,"./PrecedencePredicateTransition":276,"./PredicateTransition":278,"./RangeTransition":283,"./RuleStartState":284,"./RuleStopState":285,"./RuleTransition":286,"./SetTransition":288,"./StarBlockStartState":290,"./StarLoopEntryState":291,"./StarLoopbackState":292,"./TokensStartState":293,"./WildcardTransition":295}],237:[function(require,module,exports){
|
|
40097
40100
|
"use strict";
|
|
40098
40101
|
/*!
|
|
40099
40102
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40157,7 +40160,7 @@ exports.ATNSimulator = ATNSimulator;
|
|
|
40157
40160
|
})(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
|
|
40158
40161
|
exports.ATNSimulator = ATNSimulator;
|
|
40159
40162
|
|
|
40160
|
-
},{"../Decorators":
|
|
40163
|
+
},{"../Decorators":199,"../dfa/DFAState":299,"./ATNConfigSet":234,"./PredictionContext":279}],238:[function(require,module,exports){
|
|
40161
40164
|
"use strict";
|
|
40162
40165
|
/*!
|
|
40163
40166
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40344,7 +40347,7 @@ exports.ATNState = ATNState;
|
|
|
40344
40347
|
ATNState.INVALID_STATE_NUMBER = -1;
|
|
40345
40348
|
})(ATNState = exports.ATNState || (exports.ATNState = {}));
|
|
40346
40349
|
|
|
40347
|
-
},{"../Decorators":
|
|
40350
|
+
},{"../Decorators":199}],239:[function(require,module,exports){
|
|
40348
40351
|
"use strict";
|
|
40349
40352
|
/*!
|
|
40350
40353
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40370,7 +40373,7 @@ var ATNStateType;
|
|
|
40370
40373
|
ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
|
|
40371
40374
|
})(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
|
|
40372
40375
|
|
|
40373
|
-
},{}],
|
|
40376
|
+
},{}],240:[function(require,module,exports){
|
|
40374
40377
|
"use strict";
|
|
40375
40378
|
/*!
|
|
40376
40379
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40390,7 +40393,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
|
|
|
40390
40393
|
}
|
|
40391
40394
|
exports.AbstractPredicateTransition = AbstractPredicateTransition;
|
|
40392
40395
|
|
|
40393
|
-
},{"./Transition":
|
|
40396
|
+
},{"./Transition":294}],241:[function(require,module,exports){
|
|
40394
40397
|
"use strict";
|
|
40395
40398
|
/*!
|
|
40396
40399
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40446,7 +40449,7 @@ ActionTransition = __decorate([
|
|
|
40446
40449
|
], ActionTransition);
|
|
40447
40450
|
exports.ActionTransition = ActionTransition;
|
|
40448
40451
|
|
|
40449
|
-
},{"../Decorators":
|
|
40452
|
+
},{"../Decorators":199,"./Transition":294}],242:[function(require,module,exports){
|
|
40450
40453
|
"use strict";
|
|
40451
40454
|
/*!
|
|
40452
40455
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40533,7 +40536,7 @@ AmbiguityInfo = __decorate([
|
|
|
40533
40536
|
], AmbiguityInfo);
|
|
40534
40537
|
exports.AmbiguityInfo = AmbiguityInfo;
|
|
40535
40538
|
|
|
40536
|
-
},{"../Decorators":
|
|
40539
|
+
},{"../Decorators":199,"./DecisionEventInfo":250}],243:[function(require,module,exports){
|
|
40537
40540
|
"use strict";
|
|
40538
40541
|
/*!
|
|
40539
40542
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40591,7 +40594,7 @@ AtomTransition = __decorate([
|
|
|
40591
40594
|
], AtomTransition);
|
|
40592
40595
|
exports.AtomTransition = AtomTransition;
|
|
40593
40596
|
|
|
40594
|
-
},{"../Decorators":
|
|
40597
|
+
},{"../Decorators":199,"../misc/IntervalSet":312,"./Transition":294}],244:[function(require,module,exports){
|
|
40595
40598
|
"use strict";
|
|
40596
40599
|
/*!
|
|
40597
40600
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40623,7 +40626,7 @@ __decorate([
|
|
|
40623
40626
|
], BasicBlockStartState.prototype, "stateType", null);
|
|
40624
40627
|
exports.BasicBlockStartState = BasicBlockStartState;
|
|
40625
40628
|
|
|
40626
|
-
},{"../Decorators":
|
|
40629
|
+
},{"../Decorators":199,"./ATNStateType":239,"./BlockStartState":247}],245:[function(require,module,exports){
|
|
40627
40630
|
"use strict";
|
|
40628
40631
|
/*!
|
|
40629
40632
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40655,7 +40658,7 @@ __decorate([
|
|
|
40655
40658
|
], BasicState.prototype, "stateType", null);
|
|
40656
40659
|
exports.BasicState = BasicState;
|
|
40657
40660
|
|
|
40658
|
-
},{"../Decorators":
|
|
40661
|
+
},{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],246:[function(require,module,exports){
|
|
40659
40662
|
"use strict";
|
|
40660
40663
|
/*!
|
|
40661
40664
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40684,7 +40687,7 @@ __decorate([
|
|
|
40684
40687
|
], BlockEndState.prototype, "stateType", null);
|
|
40685
40688
|
exports.BlockEndState = BlockEndState;
|
|
40686
40689
|
|
|
40687
|
-
},{"../Decorators":
|
|
40690
|
+
},{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],247:[function(require,module,exports){
|
|
40688
40691
|
"use strict";
|
|
40689
40692
|
/*!
|
|
40690
40693
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40698,7 +40701,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
|
|
|
40698
40701
|
}
|
|
40699
40702
|
exports.BlockStartState = BlockStartState;
|
|
40700
40703
|
|
|
40701
|
-
},{"./DecisionState":
|
|
40704
|
+
},{"./DecisionState":252}],248:[function(require,module,exports){
|
|
40702
40705
|
"use strict";
|
|
40703
40706
|
/*!
|
|
40704
40707
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40768,7 +40771,7 @@ __decorate([
|
|
|
40768
40771
|
], ConflictInfo.prototype, "hashCode", null);
|
|
40769
40772
|
exports.ConflictInfo = ConflictInfo;
|
|
40770
40773
|
|
|
40771
|
-
},{"../Decorators":
|
|
40774
|
+
},{"../Decorators":199,"../misc/Utils":318}],249:[function(require,module,exports){
|
|
40772
40775
|
"use strict";
|
|
40773
40776
|
/*!
|
|
40774
40777
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40828,7 +40831,7 @@ ContextSensitivityInfo = __decorate([
|
|
|
40828
40831
|
], ContextSensitivityInfo);
|
|
40829
40832
|
exports.ContextSensitivityInfo = ContextSensitivityInfo;
|
|
40830
40833
|
|
|
40831
|
-
},{"../Decorators":
|
|
40834
|
+
},{"../Decorators":199,"./DecisionEventInfo":250}],250:[function(require,module,exports){
|
|
40832
40835
|
"use strict";
|
|
40833
40836
|
/*!
|
|
40834
40837
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40880,7 +40883,7 @@ DecisionEventInfo = __decorate([
|
|
|
40880
40883
|
], DecisionEventInfo);
|
|
40881
40884
|
exports.DecisionEventInfo = DecisionEventInfo;
|
|
40882
40885
|
|
|
40883
|
-
},{"../Decorators":
|
|
40886
|
+
},{"../Decorators":199}],251:[function(require,module,exports){
|
|
40884
40887
|
"use strict";
|
|
40885
40888
|
/*!
|
|
40886
40889
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41093,7 +41096,7 @@ __decorate([
|
|
|
41093
41096
|
], DecisionInfo.prototype, "toString", null);
|
|
41094
41097
|
exports.DecisionInfo = DecisionInfo;
|
|
41095
41098
|
|
|
41096
|
-
},{"../Decorators":
|
|
41099
|
+
},{"../Decorators":199}],252:[function(require,module,exports){
|
|
41097
41100
|
"use strict";
|
|
41098
41101
|
/*!
|
|
41099
41102
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41113,7 +41116,7 @@ class DecisionState extends ATNState_1.ATNState {
|
|
|
41113
41116
|
}
|
|
41114
41117
|
exports.DecisionState = DecisionState;
|
|
41115
41118
|
|
|
41116
|
-
},{"./ATNState":
|
|
41119
|
+
},{"./ATNState":238}],253:[function(require,module,exports){
|
|
41117
41120
|
"use strict";
|
|
41118
41121
|
/*!
|
|
41119
41122
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41179,7 +41182,7 @@ EpsilonTransition = __decorate([
|
|
|
41179
41182
|
], EpsilonTransition);
|
|
41180
41183
|
exports.EpsilonTransition = EpsilonTransition;
|
|
41181
41184
|
|
|
41182
|
-
},{"../Decorators":
|
|
41185
|
+
},{"../Decorators":199,"./Transition":294}],254:[function(require,module,exports){
|
|
41183
41186
|
"use strict";
|
|
41184
41187
|
/*!
|
|
41185
41188
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41232,7 +41235,7 @@ ErrorInfo = __decorate([
|
|
|
41232
41235
|
], ErrorInfo);
|
|
41233
41236
|
exports.ErrorInfo = ErrorInfo;
|
|
41234
41237
|
|
|
41235
|
-
},{"../Decorators":
|
|
41238
|
+
},{"../Decorators":199,"./DecisionEventInfo":250}],255:[function(require,module,exports){
|
|
41236
41239
|
"use strict";
|
|
41237
41240
|
/*!
|
|
41238
41241
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41263,7 +41266,7 @@ __decorate([
|
|
|
41263
41266
|
], InvalidState.prototype, "stateType", null);
|
|
41264
41267
|
exports.InvalidState = InvalidState;
|
|
41265
41268
|
|
|
41266
|
-
},{"../Decorators":
|
|
41269
|
+
},{"../Decorators":199,"./ATNStateType":239,"./BasicState":245}],256:[function(require,module,exports){
|
|
41267
41270
|
"use strict";
|
|
41268
41271
|
/*!
|
|
41269
41272
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41485,7 +41488,7 @@ LL1Analyzer = __decorate([
|
|
|
41485
41488
|
], LL1Analyzer);
|
|
41486
41489
|
exports.LL1Analyzer = LL1Analyzer;
|
|
41487
41490
|
|
|
41488
|
-
},{"../Decorators":
|
|
41491
|
+
},{"../Decorators":199,"../Token":224,"../misc/Array2DHashSet":303,"../misc/BitSet":306,"../misc/IntervalSet":312,"../misc/ObjectEqualityComparator":315,"./ATNConfig":233,"./AbstractPredicateTransition":240,"./NotSetTransition":270,"./PredictionContext":279,"./RuleStopState":285,"./RuleTransition":286,"./WildcardTransition":295}],257:[function(require,module,exports){
|
|
41489
41492
|
"use strict";
|
|
41490
41493
|
/*!
|
|
41491
41494
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42202,7 +42205,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
|
|
|
42202
42205
|
})(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
|
|
42203
42206
|
exports.LexerATNSimulator = LexerATNSimulator;
|
|
42204
42207
|
|
|
42205
|
-
},{"../Decorators":
|
|
42208
|
+
},{"../Decorators":199,"../IntStream":205,"../Lexer":207,"../LexerNoViableAltException":209,"../Token":224,"../dfa/AcceptStateInfo":296,"../dfa/DFAState":299,"../misc/Interval":311,"./ATN":232,"./ATNConfig":233,"./ATNConfigSet":234,"./ATNSimulator":237,"./LexerActionExecutor":258,"./OrderedATNConfigSet":271,"./PredictionContext":279,"./RuleStopState":285,"assert":342}],258:[function(require,module,exports){
|
|
42206
42209
|
"use strict";
|
|
42207
42210
|
/*!
|
|
42208
42211
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42403,7 +42406,7 @@ LexerActionExecutor = __decorate([
|
|
|
42403
42406
|
], LexerActionExecutor);
|
|
42404
42407
|
exports.LexerActionExecutor = LexerActionExecutor;
|
|
42405
42408
|
|
|
42406
|
-
},{"../Decorators":
|
|
42409
|
+
},{"../Decorators":199,"../misc/ArrayEqualityComparator":304,"../misc/MurmurHash":314,"./LexerIndexedCustomAction":261}],259:[function(require,module,exports){
|
|
42407
42410
|
"use strict";
|
|
42408
42411
|
/*!
|
|
42409
42412
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42508,7 +42511,7 @@ __decorate([
|
|
|
42508
42511
|
], LexerChannelAction.prototype, "toString", null);
|
|
42509
42512
|
exports.LexerChannelAction = LexerChannelAction;
|
|
42510
42513
|
|
|
42511
|
-
},{"../Decorators":
|
|
42514
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],260:[function(require,module,exports){
|
|
42512
42515
|
"use strict";
|
|
42513
42516
|
/*!
|
|
42514
42517
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42637,7 +42640,7 @@ __decorate([
|
|
|
42637
42640
|
], LexerCustomAction.prototype, "equals", null);
|
|
42638
42641
|
exports.LexerCustomAction = LexerCustomAction;
|
|
42639
42642
|
|
|
42640
|
-
},{"../Decorators":
|
|
42643
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],261:[function(require,module,exports){
|
|
42641
42644
|
"use strict";
|
|
42642
42645
|
/*!
|
|
42643
42646
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42772,7 +42775,7 @@ LexerIndexedCustomAction = __decorate([
|
|
|
42772
42775
|
], LexerIndexedCustomAction);
|
|
42773
42776
|
exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
|
|
42774
42777
|
|
|
42775
|
-
},{"../Decorators":
|
|
42778
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],262:[function(require,module,exports){
|
|
42776
42779
|
"use strict";
|
|
42777
42780
|
/*!
|
|
42778
42781
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42877,7 +42880,7 @@ __decorate([
|
|
|
42877
42880
|
], LexerModeAction.prototype, "toString", null);
|
|
42878
42881
|
exports.LexerModeAction = LexerModeAction;
|
|
42879
42882
|
|
|
42880
|
-
},{"../Decorators":
|
|
42883
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],263:[function(require,module,exports){
|
|
42881
42884
|
"use strict";
|
|
42882
42885
|
/*!
|
|
42883
42886
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42973,7 +42976,7 @@ exports.LexerMoreAction = LexerMoreAction;
|
|
|
42973
42976
|
LexerMoreAction.INSTANCE = new LexerMoreAction();
|
|
42974
42977
|
})(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
|
|
42975
42978
|
|
|
42976
|
-
},{"../Decorators":
|
|
42979
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],264:[function(require,module,exports){
|
|
42977
42980
|
"use strict";
|
|
42978
42981
|
/*!
|
|
42979
42982
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43069,7 +43072,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
|
|
|
43069
43072
|
LexerPopModeAction.INSTANCE = new LexerPopModeAction();
|
|
43070
43073
|
})(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
|
|
43071
43074
|
|
|
43072
|
-
},{"../Decorators":
|
|
43075
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],265:[function(require,module,exports){
|
|
43073
43076
|
"use strict";
|
|
43074
43077
|
/*!
|
|
43075
43078
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43174,7 +43177,7 @@ __decorate([
|
|
|
43174
43177
|
], LexerPushModeAction.prototype, "toString", null);
|
|
43175
43178
|
exports.LexerPushModeAction = LexerPushModeAction;
|
|
43176
43179
|
|
|
43177
|
-
},{"../Decorators":
|
|
43180
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],266:[function(require,module,exports){
|
|
43178
43181
|
"use strict";
|
|
43179
43182
|
/*!
|
|
43180
43183
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43270,7 +43273,7 @@ exports.LexerSkipAction = LexerSkipAction;
|
|
|
43270
43273
|
LexerSkipAction.INSTANCE = new LexerSkipAction();
|
|
43271
43274
|
})(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
|
|
43272
43275
|
|
|
43273
|
-
},{"../Decorators":
|
|
43276
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],267:[function(require,module,exports){
|
|
43274
43277
|
"use strict";
|
|
43275
43278
|
/*!
|
|
43276
43279
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43374,7 +43377,7 @@ __decorate([
|
|
|
43374
43377
|
], LexerTypeAction.prototype, "toString", null);
|
|
43375
43378
|
exports.LexerTypeAction = LexerTypeAction;
|
|
43376
43379
|
|
|
43377
|
-
},{"../Decorators":
|
|
43380
|
+
},{"../Decorators":199,"../misc/MurmurHash":314}],268:[function(require,module,exports){
|
|
43378
43381
|
"use strict";
|
|
43379
43382
|
/*!
|
|
43380
43383
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43426,7 +43429,7 @@ LookaheadEventInfo = __decorate([
|
|
|
43426
43429
|
], LookaheadEventInfo);
|
|
43427
43430
|
exports.LookaheadEventInfo = LookaheadEventInfo;
|
|
43428
43431
|
|
|
43429
|
-
},{"../Decorators":
|
|
43432
|
+
},{"../Decorators":199,"./DecisionEventInfo":250}],269:[function(require,module,exports){
|
|
43430
43433
|
"use strict";
|
|
43431
43434
|
/*!
|
|
43432
43435
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43455,7 +43458,7 @@ __decorate([
|
|
|
43455
43458
|
], LoopEndState.prototype, "stateType", null);
|
|
43456
43459
|
exports.LoopEndState = LoopEndState;
|
|
43457
43460
|
|
|
43458
|
-
},{"../Decorators":
|
|
43461
|
+
},{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],270:[function(require,module,exports){
|
|
43459
43462
|
"use strict";
|
|
43460
43463
|
/*!
|
|
43461
43464
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43504,7 +43507,7 @@ NotSetTransition = __decorate([
|
|
|
43504
43507
|
], NotSetTransition);
|
|
43505
43508
|
exports.NotSetTransition = NotSetTransition;
|
|
43506
43509
|
|
|
43507
|
-
},{"../Decorators":
|
|
43510
|
+
},{"../Decorators":199,"./SetTransition":288}],271:[function(require,module,exports){
|
|
43508
43511
|
"use strict";
|
|
43509
43512
|
/*!
|
|
43510
43513
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43559,7 +43562,7 @@ __decorate([
|
|
|
43559
43562
|
], OrderedATNConfigSet.prototype, "canMerge", null);
|
|
43560
43563
|
exports.OrderedATNConfigSet = OrderedATNConfigSet;
|
|
43561
43564
|
|
|
43562
|
-
},{"../Decorators":
|
|
43565
|
+
},{"../Decorators":199,"./ATNConfigSet":234}],272:[function(require,module,exports){
|
|
43563
43566
|
"use strict";
|
|
43564
43567
|
/*!
|
|
43565
43568
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43721,7 +43724,7 @@ ParseInfo = __decorate([
|
|
|
43721
43724
|
], ParseInfo);
|
|
43722
43725
|
exports.ParseInfo = ParseInfo;
|
|
43723
43726
|
|
|
43724
|
-
},{"../Decorators":
|
|
43727
|
+
},{"../Decorators":199}],273:[function(require,module,exports){
|
|
43725
43728
|
"use strict";
|
|
43726
43729
|
/*!
|
|
43727
43730
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45994,7 +45997,7 @@ ParserATNSimulator = __decorate([
|
|
|
45994
45997
|
], ParserATNSimulator);
|
|
45995
45998
|
exports.ParserATNSimulator = ParserATNSimulator;
|
|
45996
45999
|
|
|
45997
|
-
},{"../Decorators":
|
|
46000
|
+
},{"../Decorators":199,"../IntStream":205,"../NoViableAltException":211,"../ParserRuleContext":215,"../Token":224,"../VocabularyImpl":230,"../dfa/AcceptStateInfo":296,"../dfa/DFAState":299,"../misc/Array2DHashSet":303,"../misc/Arrays":305,"../misc/BitSet":306,"../misc/IntegerList":309,"../misc/Interval":311,"../misc/ObjectEqualityComparator":315,"./ATN":232,"./ATNConfig":233,"./ATNConfigSet":234,"./ATNSimulator":237,"./ATNStateType":239,"./ActionTransition":241,"./AtomTransition":243,"./ConflictInfo":248,"./DecisionState":252,"./NotSetTransition":270,"./PredictionContext":279,"./PredictionContextCache":280,"./PredictionMode":281,"./RuleStopState":285,"./RuleTransition":286,"./SemanticContext":287,"./SetTransition":288,"./SimulatorState":289,"assert":342}],274:[function(require,module,exports){
|
|
45998
46001
|
"use strict";
|
|
45999
46002
|
/*!
|
|
46000
46003
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46027,7 +46030,7 @@ __decorate([
|
|
|
46027
46030
|
], PlusBlockStartState.prototype, "stateType", null);
|
|
46028
46031
|
exports.PlusBlockStartState = PlusBlockStartState;
|
|
46029
46032
|
|
|
46030
|
-
},{"../Decorators":
|
|
46033
|
+
},{"../Decorators":199,"./ATNStateType":239,"./BlockStartState":247}],275:[function(require,module,exports){
|
|
46031
46034
|
"use strict";
|
|
46032
46035
|
/*!
|
|
46033
46036
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46058,7 +46061,7 @@ __decorate([
|
|
|
46058
46061
|
], PlusLoopbackState.prototype, "stateType", null);
|
|
46059
46062
|
exports.PlusLoopbackState = PlusLoopbackState;
|
|
46060
46063
|
|
|
46061
|
-
},{"../Decorators":
|
|
46064
|
+
},{"../Decorators":199,"./ATNStateType":239,"./DecisionState":252}],276:[function(require,module,exports){
|
|
46062
46065
|
"use strict";
|
|
46063
46066
|
/*!
|
|
46064
46067
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46121,7 +46124,7 @@ PrecedencePredicateTransition = __decorate([
|
|
|
46121
46124
|
], PrecedencePredicateTransition);
|
|
46122
46125
|
exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
|
|
46123
46126
|
|
|
46124
|
-
},{"../Decorators":
|
|
46127
|
+
},{"../Decorators":199,"./AbstractPredicateTransition":240,"./SemanticContext":287}],277:[function(require,module,exports){
|
|
46125
46128
|
"use strict";
|
|
46126
46129
|
/*!
|
|
46127
46130
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46184,7 +46187,7 @@ PredicateEvalInfo = __decorate([
|
|
|
46184
46187
|
], PredicateEvalInfo);
|
|
46185
46188
|
exports.PredicateEvalInfo = PredicateEvalInfo;
|
|
46186
46189
|
|
|
46187
|
-
},{"../Decorators":
|
|
46190
|
+
},{"../Decorators":199,"./DecisionEventInfo":250}],278:[function(require,module,exports){
|
|
46188
46191
|
"use strict";
|
|
46189
46192
|
/*!
|
|
46190
46193
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46250,7 +46253,7 @@ PredicateTransition = __decorate([
|
|
|
46250
46253
|
], PredicateTransition);
|
|
46251
46254
|
exports.PredicateTransition = PredicateTransition;
|
|
46252
46255
|
|
|
46253
|
-
},{"../Decorators":
|
|
46256
|
+
},{"../Decorators":199,"./AbstractPredicateTransition":240,"./SemanticContext":287}],279:[function(require,module,exports){
|
|
46254
46257
|
"use strict";
|
|
46255
46258
|
/*!
|
|
46256
46259
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46941,7 +46944,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
|
|
|
46941
46944
|
PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
|
|
46942
46945
|
})(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
|
|
46943
46946
|
|
|
46944
|
-
},{"../Decorators":
|
|
46947
|
+
},{"../Decorators":199,"../misc/Array2DHashMap":302,"../misc/Array2DHashSet":303,"../misc/Arrays":305,"../misc/MurmurHash":314,"./PredictionContextCache":280,"assert":342}],280:[function(require,module,exports){
|
|
46945
46948
|
"use strict";
|
|
46946
46949
|
/*!
|
|
46947
46950
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47082,7 +47085,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
|
|
|
47082
47085
|
PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
|
|
47083
47086
|
})(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
|
|
47084
47087
|
|
|
47085
|
-
},{"../Decorators":
|
|
47088
|
+
},{"../Decorators":199,"../misc/Array2DHashMap":302,"../misc/ObjectEqualityComparator":315,"./PredictionContext":279,"assert":342}],281:[function(require,module,exports){
|
|
47086
47089
|
"use strict";
|
|
47087
47090
|
/*!
|
|
47088
47091
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47243,7 +47246,7 @@ var PredictionMode;
|
|
|
47243
47246
|
PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
|
|
47244
47247
|
})(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
|
|
47245
47248
|
|
|
47246
|
-
},{"../Decorators":
|
|
47249
|
+
},{"../Decorators":199,"../misc/Array2DHashMap":302,"../misc/MurmurHash":314,"./RuleStopState":285}],282:[function(require,module,exports){
|
|
47247
47250
|
(function (process){(function (){
|
|
47248
47251
|
"use strict";
|
|
47249
47252
|
/*!
|
|
@@ -47512,7 +47515,7 @@ __decorate([
|
|
|
47512
47515
|
exports.ProfilingATNSimulator = ProfilingATNSimulator;
|
|
47513
47516
|
|
|
47514
47517
|
}).call(this)}).call(this,require('_process'))
|
|
47515
|
-
},{"../Decorators":
|
|
47518
|
+
},{"../Decorators":199,"./ATN":232,"./ATNSimulator":237,"./AmbiguityInfo":242,"./ContextSensitivityInfo":249,"./DecisionInfo":251,"./ErrorInfo":254,"./LookaheadEventInfo":268,"./ParserATNSimulator":273,"./PredicateEvalInfo":277,"./SemanticContext":287,"./SimulatorState":289,"_process":401}],283:[function(require,module,exports){
|
|
47516
47519
|
"use strict";
|
|
47517
47520
|
/*!
|
|
47518
47521
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47570,7 +47573,7 @@ RangeTransition = __decorate([
|
|
|
47570
47573
|
], RangeTransition);
|
|
47571
47574
|
exports.RangeTransition = RangeTransition;
|
|
47572
47575
|
|
|
47573
|
-
},{"../Decorators":
|
|
47576
|
+
},{"../Decorators":199,"../misc/IntervalSet":312,"./Transition":294}],284:[function(require,module,exports){
|
|
47574
47577
|
"use strict";
|
|
47575
47578
|
/*!
|
|
47576
47579
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47603,7 +47606,7 @@ __decorate([
|
|
|
47603
47606
|
], RuleStartState.prototype, "stateType", null);
|
|
47604
47607
|
exports.RuleStartState = RuleStartState;
|
|
47605
47608
|
|
|
47606
|
-
},{"../Decorators":
|
|
47609
|
+
},{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],285:[function(require,module,exports){
|
|
47607
47610
|
"use strict";
|
|
47608
47611
|
/*!
|
|
47609
47612
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47642,7 +47645,7 @@ __decorate([
|
|
|
47642
47645
|
], RuleStopState.prototype, "stateType", null);
|
|
47643
47646
|
exports.RuleStopState = RuleStopState;
|
|
47644
47647
|
|
|
47645
|
-
},{"../Decorators":
|
|
47648
|
+
},{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],286:[function(require,module,exports){
|
|
47646
47649
|
"use strict";
|
|
47647
47650
|
/*!
|
|
47648
47651
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47698,7 +47701,7 @@ RuleTransition = __decorate([
|
|
|
47698
47701
|
], RuleTransition);
|
|
47699
47702
|
exports.RuleTransition = RuleTransition;
|
|
47700
47703
|
|
|
47701
|
-
},{"../Decorators":
|
|
47704
|
+
},{"../Decorators":199,"./Transition":294}],287:[function(require,module,exports){
|
|
47702
47705
|
"use strict";
|
|
47703
47706
|
/*!
|
|
47704
47707
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48178,7 +48181,7 @@ exports.SemanticContext = SemanticContext;
|
|
|
48178
48181
|
SemanticContext.OR = OR;
|
|
48179
48182
|
})(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
|
|
48180
48183
|
|
|
48181
|
-
},{"../Decorators":
|
|
48184
|
+
},{"../Decorators":199,"../misc/Array2DHashSet":303,"../misc/ArrayEqualityComparator":304,"../misc/MurmurHash":314,"../misc/ObjectEqualityComparator":315,"../misc/Utils":318}],288:[function(require,module,exports){
|
|
48182
48185
|
"use strict";
|
|
48183
48186
|
/*!
|
|
48184
48187
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48244,7 +48247,7 @@ SetTransition = __decorate([
|
|
|
48244
48247
|
], SetTransition);
|
|
48245
48248
|
exports.SetTransition = SetTransition;
|
|
48246
48249
|
|
|
48247
|
-
},{"../Decorators":
|
|
48250
|
+
},{"../Decorators":199,"../Token":224,"../misc/IntervalSet":312,"./Transition":294}],289:[function(require,module,exports){
|
|
48248
48251
|
"use strict";
|
|
48249
48252
|
/*!
|
|
48250
48253
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48280,7 +48283,7 @@ SimulatorState = __decorate([
|
|
|
48280
48283
|
], SimulatorState);
|
|
48281
48284
|
exports.SimulatorState = SimulatorState;
|
|
48282
48285
|
|
|
48283
|
-
},{"../Decorators":
|
|
48286
|
+
},{"../Decorators":199,"../ParserRuleContext":215}],290:[function(require,module,exports){
|
|
48284
48287
|
"use strict";
|
|
48285
48288
|
/*!
|
|
48286
48289
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48308,7 +48311,7 @@ __decorate([
|
|
|
48308
48311
|
], StarBlockStartState.prototype, "stateType", null);
|
|
48309
48312
|
exports.StarBlockStartState = StarBlockStartState;
|
|
48310
48313
|
|
|
48311
|
-
},{"../Decorators":
|
|
48314
|
+
},{"../Decorators":199,"./ATNStateType":239,"./BlockStartState":247}],291:[function(require,module,exports){
|
|
48312
48315
|
"use strict";
|
|
48313
48316
|
/*!
|
|
48314
48317
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48365,7 +48368,7 @@ __decorate([
|
|
|
48365
48368
|
], StarLoopEntryState.prototype, "stateType", null);
|
|
48366
48369
|
exports.StarLoopEntryState = StarLoopEntryState;
|
|
48367
48370
|
|
|
48368
|
-
},{"../Decorators":
|
|
48371
|
+
},{"../Decorators":199,"../misc/BitSet":306,"./ATNStateType":239,"./DecisionState":252}],292:[function(require,module,exports){
|
|
48369
48372
|
"use strict";
|
|
48370
48373
|
/*!
|
|
48371
48374
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48396,7 +48399,7 @@ __decorate([
|
|
|
48396
48399
|
], StarLoopbackState.prototype, "stateType", null);
|
|
48397
48400
|
exports.StarLoopbackState = StarLoopbackState;
|
|
48398
48401
|
|
|
48399
|
-
},{"../Decorators":
|
|
48402
|
+
},{"../Decorators":199,"./ATNState":238,"./ATNStateType":239}],293:[function(require,module,exports){
|
|
48400
48403
|
"use strict";
|
|
48401
48404
|
/*!
|
|
48402
48405
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48425,7 +48428,7 @@ __decorate([
|
|
|
48425
48428
|
], TokensStartState.prototype, "stateType", null);
|
|
48426
48429
|
exports.TokensStartState = TokensStartState;
|
|
48427
48430
|
|
|
48428
|
-
},{"../Decorators":
|
|
48431
|
+
},{"../Decorators":199,"./ATNStateType":239,"./DecisionState":252}],294:[function(require,module,exports){
|
|
48429
48432
|
"use strict";
|
|
48430
48433
|
/*!
|
|
48431
48434
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48499,7 +48502,7 @@ Transition = __decorate([
|
|
|
48499
48502
|
], Transition);
|
|
48500
48503
|
exports.Transition = Transition;
|
|
48501
48504
|
|
|
48502
|
-
},{"../Decorators":
|
|
48505
|
+
},{"../Decorators":199}],295:[function(require,module,exports){
|
|
48503
48506
|
"use strict";
|
|
48504
48507
|
/*!
|
|
48505
48508
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48547,7 +48550,7 @@ WildcardTransition = __decorate([
|
|
|
48547
48550
|
], WildcardTransition);
|
|
48548
48551
|
exports.WildcardTransition = WildcardTransition;
|
|
48549
48552
|
|
|
48550
|
-
},{"../Decorators":
|
|
48553
|
+
},{"../Decorators":199,"./Transition":294}],296:[function(require,module,exports){
|
|
48551
48554
|
"use strict";
|
|
48552
48555
|
/*!
|
|
48553
48556
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48589,7 +48592,7 @@ class AcceptStateInfo {
|
|
|
48589
48592
|
}
|
|
48590
48593
|
exports.AcceptStateInfo = AcceptStateInfo;
|
|
48591
48594
|
|
|
48592
|
-
},{}],
|
|
48595
|
+
},{}],297:[function(require,module,exports){
|
|
48593
48596
|
"use strict";
|
|
48594
48597
|
/*!
|
|
48595
48598
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48764,7 +48767,7 @@ DFA = __decorate([
|
|
|
48764
48767
|
], DFA);
|
|
48765
48768
|
exports.DFA = DFA;
|
|
48766
48769
|
|
|
48767
|
-
},{"../Decorators":
|
|
48770
|
+
},{"../Decorators":199,"../VocabularyImpl":230,"../atn/ATNConfigSet":234,"../atn/StarLoopEntryState":291,"../misc/Array2DHashSet":303,"../misc/ObjectEqualityComparator":315,"./DFASerializer":298,"./DFAState":299,"./LexerDFASerializer":300}],298:[function(require,module,exports){
|
|
48768
48771
|
"use strict";
|
|
48769
48772
|
/*!
|
|
48770
48773
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48906,7 +48909,7 @@ __decorate([
|
|
|
48906
48909
|
], DFASerializer.prototype, "toString", null);
|
|
48907
48910
|
exports.DFASerializer = DFASerializer;
|
|
48908
48911
|
|
|
48909
|
-
},{"../Decorators":
|
|
48912
|
+
},{"../Decorators":199,"../Recognizer":219,"../VocabularyImpl":230,"../atn/ATNSimulator":237,"../atn/PredictionContext":279}],299:[function(require,module,exports){
|
|
48910
48913
|
"use strict";
|
|
48911
48914
|
/*!
|
|
48912
48915
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49137,7 +49140,7 @@ exports.DFAState = DFAState;
|
|
|
49137
49140
|
DFAState.PredPrediction = PredPrediction;
|
|
49138
49141
|
})(DFAState = exports.DFAState || (exports.DFAState = {}));
|
|
49139
49142
|
|
|
49140
|
-
},{"../Decorators":
|
|
49143
|
+
},{"../Decorators":199,"../atn/ATN":232,"../atn/PredictionContext":279,"../misc/BitSet":306,"../misc/MurmurHash":314,"assert":342}],300:[function(require,module,exports){
|
|
49141
49144
|
"use strict";
|
|
49142
49145
|
/*!
|
|
49143
49146
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49174,7 +49177,7 @@ LexerDFASerializer = __decorate([
|
|
|
49174
49177
|
], LexerDFASerializer);
|
|
49175
49178
|
exports.LexerDFASerializer = LexerDFASerializer;
|
|
49176
49179
|
|
|
49177
|
-
},{"../Decorators":
|
|
49180
|
+
},{"../Decorators":199,"../VocabularyImpl":230,"./DFASerializer":298}],301:[function(require,module,exports){
|
|
49178
49181
|
"use strict";
|
|
49179
49182
|
/*!
|
|
49180
49183
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49240,7 +49243,7 @@ __exportStar(require("./Vocabulary"), exports);
|
|
|
49240
49243
|
__exportStar(require("./VocabularyImpl"), exports);
|
|
49241
49244
|
__exportStar(require("./WritableToken"), exports);
|
|
49242
49245
|
|
|
49243
|
-
},{"./ANTLRErrorListener":
|
|
49246
|
+
},{"./ANTLRErrorListener":186,"./ANTLRErrorStrategy":187,"./ANTLRInputStream":188,"./BailErrorStrategy":189,"./BufferedTokenStream":190,"./CharStream":191,"./CharStreams":192,"./CodePointBuffer":193,"./CodePointCharStream":194,"./CommonToken":195,"./CommonTokenFactory":196,"./CommonTokenStream":197,"./ConsoleErrorListener":198,"./DefaultErrorStrategy":200,"./Dependents":201,"./DiagnosticErrorListener":202,"./FailedPredicateException":203,"./InputMismatchException":204,"./IntStream":205,"./InterpreterRuleContext":206,"./Lexer":207,"./LexerInterpreter":208,"./LexerNoViableAltException":209,"./ListTokenSource":210,"./NoViableAltException":211,"./Parser":212,"./ParserErrorListener":213,"./ParserInterpreter":214,"./ParserRuleContext":215,"./ProxyErrorListener":216,"./ProxyParserErrorListener":217,"./RecognitionException":218,"./Recognizer":219,"./RuleContext":220,"./RuleContextWithAltNum":221,"./RuleDependency":222,"./RuleVersion":223,"./Token":224,"./TokenFactory":225,"./TokenSource":226,"./TokenStream":227,"./TokenStreamRewriter":228,"./Vocabulary":229,"./VocabularyImpl":230,"./WritableToken":231}],302:[function(require,module,exports){
|
|
49244
49247
|
"use strict";
|
|
49245
49248
|
/*!
|
|
49246
49249
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49323,7 +49326,7 @@ class Array2DHashMap {
|
|
|
49323
49326
|
}
|
|
49324
49327
|
exports.Array2DHashMap = Array2DHashMap;
|
|
49325
49328
|
|
|
49326
|
-
},{"./Array2DHashSet":
|
|
49329
|
+
},{"./Array2DHashSet":303}],303:[function(require,module,exports){
|
|
49327
49330
|
"use strict";
|
|
49328
49331
|
/*!
|
|
49329
49332
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49690,7 +49693,7 @@ __decorate([
|
|
|
49690
49693
|
], Array2DHashSet.prototype, "createBuckets", null);
|
|
49691
49694
|
exports.Array2DHashSet = Array2DHashSet;
|
|
49692
49695
|
|
|
49693
|
-
},{"../Decorators":
|
|
49696
|
+
},{"../Decorators":199,"./DefaultEqualityComparator":308,"./MurmurHash":314,"assert":342}],304:[function(require,module,exports){
|
|
49694
49697
|
"use strict";
|
|
49695
49698
|
/*!
|
|
49696
49699
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49762,7 +49765,7 @@ __decorate([
|
|
|
49762
49765
|
], ArrayEqualityComparator.prototype, "equals", null);
|
|
49763
49766
|
exports.ArrayEqualityComparator = ArrayEqualityComparator;
|
|
49764
49767
|
|
|
49765
|
-
},{"../Decorators":
|
|
49768
|
+
},{"../Decorators":199,"./MurmurHash":314,"./ObjectEqualityComparator":315}],305:[function(require,module,exports){
|
|
49766
49769
|
"use strict";
|
|
49767
49770
|
/*!
|
|
49768
49771
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49832,7 +49835,7 @@ var Arrays;
|
|
|
49832
49835
|
Arrays.toString = toString;
|
|
49833
49836
|
})(Arrays = exports.Arrays || (exports.Arrays = {}));
|
|
49834
49837
|
|
|
49835
|
-
},{}],
|
|
49838
|
+
},{}],306:[function(require,module,exports){
|
|
49836
49839
|
"use strict";
|
|
49837
49840
|
/*!
|
|
49838
49841
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50504,7 +50507,7 @@ class BitSetIterator {
|
|
|
50504
50507
|
[Symbol.iterator]() { return this; }
|
|
50505
50508
|
}
|
|
50506
50509
|
|
|
50507
|
-
},{"./MurmurHash":
|
|
50510
|
+
},{"./MurmurHash":314,"util":406}],307:[function(require,module,exports){
|
|
50508
50511
|
"use strict";
|
|
50509
50512
|
/*!
|
|
50510
50513
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50525,7 +50528,7 @@ function isSupplementaryCodePoint(ch) {
|
|
|
50525
50528
|
}
|
|
50526
50529
|
exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
|
|
50527
50530
|
|
|
50528
|
-
},{}],
|
|
50531
|
+
},{}],308:[function(require,module,exports){
|
|
50529
50532
|
"use strict";
|
|
50530
50533
|
/*!
|
|
50531
50534
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50596,7 +50599,7 @@ __decorate([
|
|
|
50596
50599
|
], DefaultEqualityComparator.prototype, "equals", null);
|
|
50597
50600
|
exports.DefaultEqualityComparator = DefaultEqualityComparator;
|
|
50598
50601
|
|
|
50599
|
-
},{"../Decorators":
|
|
50602
|
+
},{"../Decorators":199,"./MurmurHash":314,"./ObjectEqualityComparator":315}],309:[function(require,module,exports){
|
|
50600
50603
|
"use strict";
|
|
50601
50604
|
/*!
|
|
50602
50605
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50890,7 +50893,7 @@ __decorate([
|
|
|
50890
50893
|
], IntegerList.prototype, "toString", null);
|
|
50891
50894
|
exports.IntegerList = IntegerList;
|
|
50892
50895
|
|
|
50893
|
-
},{"../Decorators":
|
|
50896
|
+
},{"../Decorators":199,"./Arrays":305}],310:[function(require,module,exports){
|
|
50894
50897
|
"use strict";
|
|
50895
50898
|
/*!
|
|
50896
50899
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50920,7 +50923,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
|
|
|
50920
50923
|
}
|
|
50921
50924
|
exports.IntegerStack = IntegerStack;
|
|
50922
50925
|
|
|
50923
|
-
},{"./IntegerList":
|
|
50926
|
+
},{"./IntegerList":309}],311:[function(require,module,exports){
|
|
50924
50927
|
"use strict";
|
|
50925
50928
|
/*!
|
|
50926
50929
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51063,7 +51066,7 @@ __decorate([
|
|
|
51063
51066
|
], Interval.prototype, "toString", null);
|
|
51064
51067
|
exports.Interval = Interval;
|
|
51065
51068
|
|
|
51066
|
-
},{"../Decorators":
|
|
51069
|
+
},{"../Decorators":199}],312:[function(require,module,exports){
|
|
51067
51070
|
"use strict";
|
|
51068
51071
|
/*!
|
|
51069
51072
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51709,7 +51712,7 @@ __decorate([
|
|
|
51709
51712
|
], IntervalSet, "subtract", null);
|
|
51710
51713
|
exports.IntervalSet = IntervalSet;
|
|
51711
51714
|
|
|
51712
|
-
},{"../Decorators":
|
|
51715
|
+
},{"../Decorators":199,"../Lexer":207,"../Token":224,"./ArrayEqualityComparator":304,"./IntegerList":309,"./Interval":311,"./MurmurHash":314}],313:[function(require,module,exports){
|
|
51713
51716
|
"use strict";
|
|
51714
51717
|
/*!
|
|
51715
51718
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51742,7 +51745,7 @@ class MultiMap extends Map {
|
|
|
51742
51745
|
}
|
|
51743
51746
|
exports.MultiMap = MultiMap;
|
|
51744
51747
|
|
|
51745
|
-
},{}],
|
|
51748
|
+
},{}],314:[function(require,module,exports){
|
|
51746
51749
|
"use strict";
|
|
51747
51750
|
/*!
|
|
51748
51751
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51857,7 +51860,7 @@ var MurmurHash;
|
|
|
51857
51860
|
}
|
|
51858
51861
|
})(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
|
|
51859
51862
|
|
|
51860
|
-
},{}],
|
|
51863
|
+
},{}],315:[function(require,module,exports){
|
|
51861
51864
|
"use strict";
|
|
51862
51865
|
/*!
|
|
51863
51866
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51916,7 +51919,7 @@ __decorate([
|
|
|
51916
51919
|
], ObjectEqualityComparator.prototype, "equals", null);
|
|
51917
51920
|
exports.ObjectEqualityComparator = ObjectEqualityComparator;
|
|
51918
51921
|
|
|
51919
|
-
},{"../Decorators":
|
|
51922
|
+
},{"../Decorators":199}],316:[function(require,module,exports){
|
|
51920
51923
|
"use strict";
|
|
51921
51924
|
/*!
|
|
51922
51925
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51945,7 +51948,7 @@ class ParseCancellationException extends Error {
|
|
|
51945
51948
|
}
|
|
51946
51949
|
exports.ParseCancellationException = ParseCancellationException;
|
|
51947
51950
|
|
|
51948
|
-
},{}],
|
|
51951
|
+
},{}],317:[function(require,module,exports){
|
|
51949
51952
|
"use strict";
|
|
51950
51953
|
/*!
|
|
51951
51954
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51999,7 +52002,7 @@ class UUID {
|
|
|
51999
52002
|
}
|
|
52000
52003
|
exports.UUID = UUID;
|
|
52001
52004
|
|
|
52002
|
-
},{"./MurmurHash":
|
|
52005
|
+
},{"./MurmurHash":314}],318:[function(require,module,exports){
|
|
52003
52006
|
"use strict";
|
|
52004
52007
|
/*!
|
|
52005
52008
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52174,7 +52177,7 @@ exports.toCharArray = toCharArray;
|
|
|
52174
52177
|
// return s;
|
|
52175
52178
|
// }
|
|
52176
52179
|
|
|
52177
|
-
},{}],
|
|
52180
|
+
},{}],319:[function(require,module,exports){
|
|
52178
52181
|
"use strict";
|
|
52179
52182
|
/*!
|
|
52180
52183
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52210,7 +52213,7 @@ __decorate([
|
|
|
52210
52213
|
], ErrorNode.prototype, "accept", null);
|
|
52211
52214
|
exports.ErrorNode = ErrorNode;
|
|
52212
52215
|
|
|
52213
|
-
},{"../Decorators":
|
|
52216
|
+
},{"../Decorators":199,"./TerminalNode":322}],320:[function(require,module,exports){
|
|
52214
52217
|
"use strict";
|
|
52215
52218
|
/*!
|
|
52216
52219
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52315,7 +52318,7 @@ exports.ParseTreeWalker = ParseTreeWalker;
|
|
|
52315
52318
|
ParseTreeWalker.DEFAULT = new ParseTreeWalker();
|
|
52316
52319
|
})(ParseTreeWalker = exports.ParseTreeWalker || (exports.ParseTreeWalker = {}));
|
|
52317
52320
|
|
|
52318
|
-
},{"./ErrorNode":
|
|
52321
|
+
},{"./ErrorNode":319,"./RuleNode":321,"./TerminalNode":322}],321:[function(require,module,exports){
|
|
52319
52322
|
"use strict";
|
|
52320
52323
|
/*!
|
|
52321
52324
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52327,7 +52330,7 @@ class RuleNode {
|
|
|
52327
52330
|
}
|
|
52328
52331
|
exports.RuleNode = RuleNode;
|
|
52329
52332
|
|
|
52330
|
-
},{}],
|
|
52333
|
+
},{}],322:[function(require,module,exports){
|
|
52331
52334
|
"use strict";
|
|
52332
52335
|
/*!
|
|
52333
52336
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52419,7 +52422,7 @@ __decorate([
|
|
|
52419
52422
|
], TerminalNode.prototype, "toString", null);
|
|
52420
52423
|
exports.TerminalNode = TerminalNode;
|
|
52421
52424
|
|
|
52422
|
-
},{"../Decorators":
|
|
52425
|
+
},{"../Decorators":199,"../Token":224,"../misc/Interval":311}],323:[function(require,module,exports){
|
|
52423
52426
|
"use strict";
|
|
52424
52427
|
/*!
|
|
52425
52428
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52663,7 +52666,7 @@ __decorate([
|
|
|
52663
52666
|
], Trees, "getRootOfSubtreeEnclosingRegion", null);
|
|
52664
52667
|
exports.Trees = Trees;
|
|
52665
52668
|
|
|
52666
|
-
},{"../CommonToken":
|
|
52669
|
+
},{"../CommonToken":195,"../Decorators":199,"../Parser":212,"../ParserRuleContext":215,"../Token":224,"../atn/ATN":232,"../misc/Utils":318,"./ErrorNode":319,"./RuleNode":321,"./TerminalNode":322}],324:[function(require,module,exports){
|
|
52667
52670
|
"use strict";
|
|
52668
52671
|
/*!
|
|
52669
52672
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52687,7 +52690,7 @@ class Chunk {
|
|
|
52687
52690
|
}
|
|
52688
52691
|
exports.Chunk = Chunk;
|
|
52689
52692
|
|
|
52690
|
-
},{}],
|
|
52693
|
+
},{}],325:[function(require,module,exports){
|
|
52691
52694
|
"use strict";
|
|
52692
52695
|
/*!
|
|
52693
52696
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52867,7 +52870,7 @@ ParseTreeMatch = __decorate([
|
|
|
52867
52870
|
], ParseTreeMatch);
|
|
52868
52871
|
exports.ParseTreeMatch = ParseTreeMatch;
|
|
52869
52872
|
|
|
52870
|
-
},{"../../Decorators":
|
|
52873
|
+
},{"../../Decorators":199}],326:[function(require,module,exports){
|
|
52871
52874
|
"use strict";
|
|
52872
52875
|
/*!
|
|
52873
52876
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53025,7 +53028,7 @@ ParseTreePattern = __decorate([
|
|
|
53025
53028
|
], ParseTreePattern);
|
|
53026
53029
|
exports.ParseTreePattern = ParseTreePattern;
|
|
53027
53030
|
|
|
53028
|
-
},{"../../Decorators":
|
|
53031
|
+
},{"../../Decorators":199,"../xpath/XPath":332}],327:[function(require,module,exports){
|
|
53029
53032
|
"use strict";
|
|
53030
53033
|
/*!
|
|
53031
53034
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53503,7 +53506,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
|
|
|
53503
53506
|
ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
|
|
53504
53507
|
})(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
|
|
53505
53508
|
|
|
53506
|
-
},{"../../BailErrorStrategy":
|
|
53509
|
+
},{"../../BailErrorStrategy":189,"../../CharStreams":192,"../../CommonTokenStream":197,"../../Decorators":199,"../../ListTokenSource":210,"../../ParserInterpreter":214,"../../ParserRuleContext":215,"../../RecognitionException":218,"../../Token":224,"../../misc/MultiMap":313,"../../misc/ParseCancellationException":316,"../RuleNode":321,"../TerminalNode":322,"./ParseTreeMatch":325,"./ParseTreePattern":326,"./RuleTagToken":328,"./TagChunk":329,"./TextChunk":330,"./TokenTagToken":331}],328:[function(require,module,exports){
|
|
53507
53510
|
"use strict";
|
|
53508
53511
|
/*!
|
|
53509
53512
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53701,7 +53704,7 @@ RuleTagToken = __decorate([
|
|
|
53701
53704
|
], RuleTagToken);
|
|
53702
53705
|
exports.RuleTagToken = RuleTagToken;
|
|
53703
53706
|
|
|
53704
|
-
},{"../../Decorators":
|
|
53707
|
+
},{"../../Decorators":199,"../../Token":224}],329:[function(require,module,exports){
|
|
53705
53708
|
"use strict";
|
|
53706
53709
|
/*!
|
|
53707
53710
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53788,7 +53791,7 @@ __decorate([
|
|
|
53788
53791
|
], TagChunk.prototype, "toString", null);
|
|
53789
53792
|
exports.TagChunk = TagChunk;
|
|
53790
53793
|
|
|
53791
|
-
},{"../../Decorators":
|
|
53794
|
+
},{"../../Decorators":199,"./Chunk":324}],330:[function(require,module,exports){
|
|
53792
53795
|
"use strict";
|
|
53793
53796
|
/*!
|
|
53794
53797
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53858,7 +53861,7 @@ TextChunk = __decorate([
|
|
|
53858
53861
|
], TextChunk);
|
|
53859
53862
|
exports.TextChunk = TextChunk;
|
|
53860
53863
|
|
|
53861
|
-
},{"../../Decorators":
|
|
53864
|
+
},{"../../Decorators":199,"./Chunk":324}],331:[function(require,module,exports){
|
|
53862
53865
|
"use strict";
|
|
53863
53866
|
/*!
|
|
53864
53867
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53953,7 +53956,7 @@ TokenTagToken = __decorate([
|
|
|
53953
53956
|
], TokenTagToken);
|
|
53954
53957
|
exports.TokenTagToken = TokenTagToken;
|
|
53955
53958
|
|
|
53956
|
-
},{"../../CommonToken":
|
|
53959
|
+
},{"../../CommonToken":195,"../../Decorators":199}],332:[function(require,module,exports){
|
|
53957
53960
|
"use strict";
|
|
53958
53961
|
/*!
|
|
53959
53962
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54150,7 +54153,7 @@ exports.XPath = XPath;
|
|
|
54150
54153
|
XPath.WILDCARD = "*"; // word not operator/separator
|
|
54151
54154
|
XPath.NOT = "!"; // word for invert operator
|
|
54152
54155
|
|
|
54153
|
-
},{"../../CharStreams":
|
|
54156
|
+
},{"../../CharStreams":192,"../../CommonTokenStream":197,"../../LexerNoViableAltException":209,"../../ParserRuleContext":215,"../../Token":224,"./XPathLexer":334,"./XPathLexerErrorListener":335,"./XPathRuleAnywhereElement":336,"./XPathRuleElement":337,"./XPathTokenAnywhereElement":338,"./XPathTokenElement":339,"./XPathWildcardAnywhereElement":340,"./XPathWildcardElement":341}],333:[function(require,module,exports){
|
|
54154
54157
|
"use strict";
|
|
54155
54158
|
/*!
|
|
54156
54159
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54185,7 +54188,7 @@ __decorate([
|
|
|
54185
54188
|
], XPathElement.prototype, "toString", null);
|
|
54186
54189
|
exports.XPathElement = XPathElement;
|
|
54187
54190
|
|
|
54188
|
-
},{"../../Decorators":
|
|
54191
|
+
},{"../../Decorators":199}],334:[function(require,module,exports){
|
|
54189
54192
|
"use strict";
|
|
54190
54193
|
// Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
54191
54194
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -54660,7 +54663,7 @@ XPathLexer._serializedATN = Utils.join([
|
|
|
54660
54663
|
XPathLexer._serializedATNSegment1,
|
|
54661
54664
|
], "");
|
|
54662
54665
|
|
|
54663
|
-
},{"../../Lexer":
|
|
54666
|
+
},{"../../Lexer":207,"../../VocabularyImpl":230,"../../atn/ATNDeserializer":236,"../../atn/LexerATNSimulator":257,"../../misc/Utils":318}],335:[function(require,module,exports){
|
|
54664
54667
|
"use strict";
|
|
54665
54668
|
/*!
|
|
54666
54669
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54685,7 +54688,7 @@ __decorate([
|
|
|
54685
54688
|
], XPathLexerErrorListener.prototype, "syntaxError", null);
|
|
54686
54689
|
exports.XPathLexerErrorListener = XPathLexerErrorListener;
|
|
54687
54690
|
|
|
54688
|
-
},{"../../Decorators":
|
|
54691
|
+
},{"../../Decorators":199}],336:[function(require,module,exports){
|
|
54689
54692
|
"use strict";
|
|
54690
54693
|
/*!
|
|
54691
54694
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54719,7 +54722,7 @@ __decorate([
|
|
|
54719
54722
|
], XPathRuleAnywhereElement.prototype, "evaluate", null);
|
|
54720
54723
|
exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
|
|
54721
54724
|
|
|
54722
|
-
},{"../../Decorators":
|
|
54725
|
+
},{"../../Decorators":199,"../Trees":323,"./XPathElement":333}],337:[function(require,module,exports){
|
|
54723
54726
|
"use strict";
|
|
54724
54727
|
/*!
|
|
54725
54728
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54762,7 +54765,7 @@ __decorate([
|
|
|
54762
54765
|
], XPathRuleElement.prototype, "evaluate", null);
|
|
54763
54766
|
exports.XPathRuleElement = XPathRuleElement;
|
|
54764
54767
|
|
|
54765
|
-
},{"../../Decorators":
|
|
54768
|
+
},{"../../Decorators":199,"../../ParserRuleContext":215,"../Trees":323,"./XPathElement":333}],338:[function(require,module,exports){
|
|
54766
54769
|
"use strict";
|
|
54767
54770
|
/*!
|
|
54768
54771
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54794,7 +54797,7 @@ __decorate([
|
|
|
54794
54797
|
], XPathTokenAnywhereElement.prototype, "evaluate", null);
|
|
54795
54798
|
exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
|
|
54796
54799
|
|
|
54797
|
-
},{"../../Decorators":
|
|
54800
|
+
},{"../../Decorators":199,"../Trees":323,"./XPathElement":333}],339:[function(require,module,exports){
|
|
54798
54801
|
"use strict";
|
|
54799
54802
|
/*!
|
|
54800
54803
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54837,7 +54840,7 @@ __decorate([
|
|
|
54837
54840
|
], XPathTokenElement.prototype, "evaluate", null);
|
|
54838
54841
|
exports.XPathTokenElement = XPathTokenElement;
|
|
54839
54842
|
|
|
54840
|
-
},{"../../Decorators":
|
|
54843
|
+
},{"../../Decorators":199,"../TerminalNode":322,"../Trees":323,"./XPathElement":333}],340:[function(require,module,exports){
|
|
54841
54844
|
"use strict";
|
|
54842
54845
|
/*!
|
|
54843
54846
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54873,7 +54876,7 @@ __decorate([
|
|
|
54873
54876
|
], XPathWildcardAnywhereElement.prototype, "evaluate", null);
|
|
54874
54877
|
exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
|
|
54875
54878
|
|
|
54876
|
-
},{"../../Decorators":
|
|
54879
|
+
},{"../../Decorators":199,"../Trees":323,"./XPath":332,"./XPathElement":333}],341:[function(require,module,exports){
|
|
54877
54880
|
"use strict";
|
|
54878
54881
|
/*!
|
|
54879
54882
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54913,7 +54916,7 @@ __decorate([
|
|
|
54913
54916
|
], XPathWildcardElement.prototype, "evaluate", null);
|
|
54914
54917
|
exports.XPathWildcardElement = XPathWildcardElement;
|
|
54915
54918
|
|
|
54916
|
-
},{"../../Decorators":
|
|
54919
|
+
},{"../../Decorators":199,"../Trees":323,"./XPath":332,"./XPathElement":333}],342:[function(require,module,exports){
|
|
54917
54920
|
(function (global){(function (){
|
|
54918
54921
|
'use strict';
|
|
54919
54922
|
|
|
@@ -55423,7 +55426,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
55423
55426
|
};
|
|
55424
55427
|
|
|
55425
55428
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
55426
|
-
},{"object.assign/polyfill":
|
|
55429
|
+
},{"object.assign/polyfill":399,"util/":345}],343:[function(require,module,exports){
|
|
55427
55430
|
if (typeof Object.create === 'function') {
|
|
55428
55431
|
// implementation from standard node.js 'util' module
|
|
55429
55432
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -55448,14 +55451,14 @@ if (typeof Object.create === 'function') {
|
|
|
55448
55451
|
}
|
|
55449
55452
|
}
|
|
55450
55453
|
|
|
55451
|
-
},{}],
|
|
55454
|
+
},{}],344:[function(require,module,exports){
|
|
55452
55455
|
module.exports = function isBuffer(arg) {
|
|
55453
55456
|
return arg && typeof arg === 'object'
|
|
55454
55457
|
&& typeof arg.copy === 'function'
|
|
55455
55458
|
&& typeof arg.fill === 'function'
|
|
55456
55459
|
&& typeof arg.readUInt8 === 'function';
|
|
55457
55460
|
}
|
|
55458
|
-
},{}],
|
|
55461
|
+
},{}],345:[function(require,module,exports){
|
|
55459
55462
|
(function (process,global){(function (){
|
|
55460
55463
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
55461
55464
|
//
|
|
@@ -56045,7 +56048,7 @@ function hasOwnProperty(obj, prop) {
|
|
|
56045
56048
|
}
|
|
56046
56049
|
|
|
56047
56050
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
56048
|
-
},{"./support/isBuffer":
|
|
56051
|
+
},{"./support/isBuffer":344,"_process":401,"inherits":343}],346:[function(require,module,exports){
|
|
56049
56052
|
(function (global){(function (){
|
|
56050
56053
|
'use strict';
|
|
56051
56054
|
|
|
@@ -56066,7 +56069,7 @@ module.exports = function availableTypedArrays() {
|
|
|
56066
56069
|
};
|
|
56067
56070
|
|
|
56068
56071
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
56069
|
-
},{"possible-typed-array-names":
|
|
56072
|
+
},{"possible-typed-array-names":400}],347:[function(require,module,exports){
|
|
56070
56073
|
(function (process,global){(function (){
|
|
56071
56074
|
module.exports = process.hrtime || hrtime
|
|
56072
56075
|
|
|
@@ -56097,7 +56100,7 @@ function hrtime(previousTimestamp){
|
|
|
56097
56100
|
return [seconds,nanoseconds]
|
|
56098
56101
|
}
|
|
56099
56102
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
56100
|
-
},{"_process":
|
|
56103
|
+
},{"_process":401}],348:[function(require,module,exports){
|
|
56101
56104
|
'use strict';
|
|
56102
56105
|
|
|
56103
56106
|
var bind = require('function-bind');
|
|
@@ -56109,7 +56112,7 @@ var $reflectApply = require('./reflectApply');
|
|
|
56109
56112
|
/** @type {import('./actualApply')} */
|
|
56110
56113
|
module.exports = $reflectApply || bind.call($call, $apply);
|
|
56111
56114
|
|
|
56112
|
-
},{"./functionApply":
|
|
56115
|
+
},{"./functionApply":350,"./functionCall":351,"./reflectApply":353,"function-bind":369}],349:[function(require,module,exports){
|
|
56113
56116
|
'use strict';
|
|
56114
56117
|
|
|
56115
56118
|
var bind = require('function-bind');
|
|
@@ -56121,19 +56124,19 @@ module.exports = function applyBind() {
|
|
|
56121
56124
|
return actualApply(bind, $apply, arguments);
|
|
56122
56125
|
};
|
|
56123
56126
|
|
|
56124
|
-
},{"./actualApply":
|
|
56127
|
+
},{"./actualApply":348,"./functionApply":350,"function-bind":369}],350:[function(require,module,exports){
|
|
56125
56128
|
'use strict';
|
|
56126
56129
|
|
|
56127
56130
|
/** @type {import('./functionApply')} */
|
|
56128
56131
|
module.exports = Function.prototype.apply;
|
|
56129
56132
|
|
|
56130
|
-
},{}],
|
|
56133
|
+
},{}],351:[function(require,module,exports){
|
|
56131
56134
|
'use strict';
|
|
56132
56135
|
|
|
56133
56136
|
/** @type {import('./functionCall')} */
|
|
56134
56137
|
module.exports = Function.prototype.call;
|
|
56135
56138
|
|
|
56136
|
-
},{}],
|
|
56139
|
+
},{}],352:[function(require,module,exports){
|
|
56137
56140
|
'use strict';
|
|
56138
56141
|
|
|
56139
56142
|
var bind = require('function-bind');
|
|
@@ -56150,13 +56153,13 @@ module.exports = function callBindBasic(args) {
|
|
|
56150
56153
|
return $actualApply(bind, $call, args);
|
|
56151
56154
|
};
|
|
56152
56155
|
|
|
56153
|
-
},{"./actualApply":
|
|
56156
|
+
},{"./actualApply":348,"./functionCall":351,"es-errors/type":364,"function-bind":369}],353:[function(require,module,exports){
|
|
56154
56157
|
'use strict';
|
|
56155
56158
|
|
|
56156
56159
|
/** @type {import('./reflectApply')} */
|
|
56157
56160
|
module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
|
|
56158
56161
|
|
|
56159
|
-
},{}],
|
|
56162
|
+
},{}],354:[function(require,module,exports){
|
|
56160
56163
|
'use strict';
|
|
56161
56164
|
|
|
56162
56165
|
var setFunctionLength = require('set-function-length');
|
|
@@ -56182,7 +56185,7 @@ if ($defineProperty) {
|
|
|
56182
56185
|
module.exports.apply = applyBind;
|
|
56183
56186
|
}
|
|
56184
56187
|
|
|
56185
|
-
},{"call-bind-apply-helpers":
|
|
56188
|
+
},{"call-bind-apply-helpers":352,"call-bind-apply-helpers/applyBind":349,"es-define-property":358,"set-function-length":403}],355:[function(require,module,exports){
|
|
56186
56189
|
'use strict';
|
|
56187
56190
|
|
|
56188
56191
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -56203,7 +56206,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
56203
56206
|
return intrinsic;
|
|
56204
56207
|
};
|
|
56205
56208
|
|
|
56206
|
-
},{"call-bind-apply-helpers":
|
|
56209
|
+
},{"call-bind-apply-helpers":352,"get-intrinsic":370}],356:[function(require,module,exports){
|
|
56207
56210
|
'use strict';
|
|
56208
56211
|
|
|
56209
56212
|
var $defineProperty = require('es-define-property');
|
|
@@ -56261,7 +56264,7 @@ module.exports = function defineDataProperty(
|
|
|
56261
56264
|
}
|
|
56262
56265
|
};
|
|
56263
56266
|
|
|
56264
|
-
},{"es-define-property":
|
|
56267
|
+
},{"es-define-property":358,"es-errors/syntax":363,"es-errors/type":364,"gopd":375}],357:[function(require,module,exports){
|
|
56265
56268
|
'use strict';
|
|
56266
56269
|
|
|
56267
56270
|
var callBind = require('call-bind-apply-helpers');
|
|
@@ -56293,7 +56296,7 @@ module.exports = desc && typeof desc.get === 'function'
|
|
|
56293
56296
|
}
|
|
56294
56297
|
: false;
|
|
56295
56298
|
|
|
56296
|
-
},{"call-bind-apply-helpers":
|
|
56299
|
+
},{"call-bind-apply-helpers":352,"gopd":375}],358:[function(require,module,exports){
|
|
56297
56300
|
'use strict';
|
|
56298
56301
|
|
|
56299
56302
|
/** @type {import('.')} */
|
|
@@ -56309,55 +56312,55 @@ if ($defineProperty) {
|
|
|
56309
56312
|
|
|
56310
56313
|
module.exports = $defineProperty;
|
|
56311
56314
|
|
|
56312
|
-
},{}],
|
|
56315
|
+
},{}],359:[function(require,module,exports){
|
|
56313
56316
|
'use strict';
|
|
56314
56317
|
|
|
56315
56318
|
/** @type {import('./eval')} */
|
|
56316
56319
|
module.exports = EvalError;
|
|
56317
56320
|
|
|
56318
|
-
},{}],
|
|
56321
|
+
},{}],360:[function(require,module,exports){
|
|
56319
56322
|
'use strict';
|
|
56320
56323
|
|
|
56321
56324
|
/** @type {import('.')} */
|
|
56322
56325
|
module.exports = Error;
|
|
56323
56326
|
|
|
56324
|
-
},{}],
|
|
56327
|
+
},{}],361:[function(require,module,exports){
|
|
56325
56328
|
'use strict';
|
|
56326
56329
|
|
|
56327
56330
|
/** @type {import('./range')} */
|
|
56328
56331
|
module.exports = RangeError;
|
|
56329
56332
|
|
|
56330
|
-
},{}],
|
|
56333
|
+
},{}],362:[function(require,module,exports){
|
|
56331
56334
|
'use strict';
|
|
56332
56335
|
|
|
56333
56336
|
/** @type {import('./ref')} */
|
|
56334
56337
|
module.exports = ReferenceError;
|
|
56335
56338
|
|
|
56336
|
-
},{}],
|
|
56339
|
+
},{}],363:[function(require,module,exports){
|
|
56337
56340
|
'use strict';
|
|
56338
56341
|
|
|
56339
56342
|
/** @type {import('./syntax')} */
|
|
56340
56343
|
module.exports = SyntaxError;
|
|
56341
56344
|
|
|
56342
|
-
},{}],
|
|
56345
|
+
},{}],364:[function(require,module,exports){
|
|
56343
56346
|
'use strict';
|
|
56344
56347
|
|
|
56345
56348
|
/** @type {import('./type')} */
|
|
56346
56349
|
module.exports = TypeError;
|
|
56347
56350
|
|
|
56348
|
-
},{}],
|
|
56351
|
+
},{}],365:[function(require,module,exports){
|
|
56349
56352
|
'use strict';
|
|
56350
56353
|
|
|
56351
56354
|
/** @type {import('./uri')} */
|
|
56352
56355
|
module.exports = URIError;
|
|
56353
56356
|
|
|
56354
|
-
},{}],
|
|
56357
|
+
},{}],366:[function(require,module,exports){
|
|
56355
56358
|
'use strict';
|
|
56356
56359
|
|
|
56357
56360
|
/** @type {import('.')} */
|
|
56358
56361
|
module.exports = Object;
|
|
56359
56362
|
|
|
56360
|
-
},{}],
|
|
56363
|
+
},{}],367:[function(require,module,exports){
|
|
56361
56364
|
'use strict';
|
|
56362
56365
|
|
|
56363
56366
|
var isCallable = require('is-callable');
|
|
@@ -56428,7 +56431,7 @@ module.exports = function forEach(list, iterator, thisArg) {
|
|
|
56428
56431
|
}
|
|
56429
56432
|
};
|
|
56430
56433
|
|
|
56431
|
-
},{"is-callable":
|
|
56434
|
+
},{"is-callable":383}],368:[function(require,module,exports){
|
|
56432
56435
|
'use strict';
|
|
56433
56436
|
|
|
56434
56437
|
/* eslint no-invalid-this: 1 */
|
|
@@ -56514,14 +56517,14 @@ module.exports = function bind(that) {
|
|
|
56514
56517
|
return bound;
|
|
56515
56518
|
};
|
|
56516
56519
|
|
|
56517
|
-
},{}],
|
|
56520
|
+
},{}],369:[function(require,module,exports){
|
|
56518
56521
|
'use strict';
|
|
56519
56522
|
|
|
56520
56523
|
var implementation = require('./implementation');
|
|
56521
56524
|
|
|
56522
56525
|
module.exports = Function.prototype.bind || implementation;
|
|
56523
56526
|
|
|
56524
|
-
},{"./implementation":
|
|
56527
|
+
},{"./implementation":368}],370:[function(require,module,exports){
|
|
56525
56528
|
'use strict';
|
|
56526
56529
|
|
|
56527
56530
|
var undefined;
|
|
@@ -56901,7 +56904,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
56901
56904
|
return value;
|
|
56902
56905
|
};
|
|
56903
56906
|
|
|
56904
|
-
},{"call-bind-apply-helpers/functionApply":
|
|
56907
|
+
},{"call-bind-apply-helpers/functionApply":350,"call-bind-apply-helpers/functionCall":351,"es-define-property":358,"es-errors":360,"es-errors/eval":359,"es-errors/range":361,"es-errors/ref":362,"es-errors/syntax":363,"es-errors/type":364,"es-errors/uri":365,"es-object-atoms":366,"function-bind":369,"get-proto":373,"get-proto/Object.getPrototypeOf":371,"get-proto/Reflect.getPrototypeOf":372,"gopd":375,"has-symbols":377,"hasown":380,"math-intrinsics/abs":387,"math-intrinsics/floor":388,"math-intrinsics/max":390,"math-intrinsics/min":391,"math-intrinsics/pow":392,"math-intrinsics/round":393,"math-intrinsics/sign":394}],371:[function(require,module,exports){
|
|
56905
56908
|
'use strict';
|
|
56906
56909
|
|
|
56907
56910
|
var $Object = require('es-object-atoms');
|
|
@@ -56909,13 +56912,13 @@ var $Object = require('es-object-atoms');
|
|
|
56909
56912
|
/** @type {import('./Object.getPrototypeOf')} */
|
|
56910
56913
|
module.exports = $Object.getPrototypeOf || null;
|
|
56911
56914
|
|
|
56912
|
-
},{"es-object-atoms":
|
|
56915
|
+
},{"es-object-atoms":366}],372:[function(require,module,exports){
|
|
56913
56916
|
'use strict';
|
|
56914
56917
|
|
|
56915
56918
|
/** @type {import('./Reflect.getPrototypeOf')} */
|
|
56916
56919
|
module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
|
|
56917
56920
|
|
|
56918
|
-
},{}],
|
|
56921
|
+
},{}],373:[function(require,module,exports){
|
|
56919
56922
|
'use strict';
|
|
56920
56923
|
|
|
56921
56924
|
var reflectGetProto = require('./Reflect.getPrototypeOf');
|
|
@@ -56944,13 +56947,13 @@ module.exports = reflectGetProto
|
|
|
56944
56947
|
}
|
|
56945
56948
|
: null;
|
|
56946
56949
|
|
|
56947
|
-
},{"./Object.getPrototypeOf":
|
|
56950
|
+
},{"./Object.getPrototypeOf":371,"./Reflect.getPrototypeOf":372,"dunder-proto/get":357}],374:[function(require,module,exports){
|
|
56948
56951
|
'use strict';
|
|
56949
56952
|
|
|
56950
56953
|
/** @type {import('./gOPD')} */
|
|
56951
56954
|
module.exports = Object.getOwnPropertyDescriptor;
|
|
56952
56955
|
|
|
56953
|
-
},{}],
|
|
56956
|
+
},{}],375:[function(require,module,exports){
|
|
56954
56957
|
'use strict';
|
|
56955
56958
|
|
|
56956
56959
|
/** @type {import('.')} */
|
|
@@ -56967,7 +56970,7 @@ if ($gOPD) {
|
|
|
56967
56970
|
|
|
56968
56971
|
module.exports = $gOPD;
|
|
56969
56972
|
|
|
56970
|
-
},{"./gOPD":
|
|
56973
|
+
},{"./gOPD":374}],376:[function(require,module,exports){
|
|
56971
56974
|
'use strict';
|
|
56972
56975
|
|
|
56973
56976
|
var $defineProperty = require('es-define-property');
|
|
@@ -56991,7 +56994,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
|
|
|
56991
56994
|
|
|
56992
56995
|
module.exports = hasPropertyDescriptors;
|
|
56993
56996
|
|
|
56994
|
-
},{"es-define-property":
|
|
56997
|
+
},{"es-define-property":358}],377:[function(require,module,exports){
|
|
56995
56998
|
'use strict';
|
|
56996
56999
|
|
|
56997
57000
|
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
|
@@ -57007,7 +57010,7 @@ module.exports = function hasNativeSymbols() {
|
|
|
57007
57010
|
return hasSymbolSham();
|
|
57008
57011
|
};
|
|
57009
57012
|
|
|
57010
|
-
},{"./shams":
|
|
57013
|
+
},{"./shams":378}],378:[function(require,module,exports){
|
|
57011
57014
|
'use strict';
|
|
57012
57015
|
|
|
57013
57016
|
/** @type {import('./shams')} */
|
|
@@ -57054,7 +57057,7 @@ module.exports = function hasSymbols() {
|
|
|
57054
57057
|
return true;
|
|
57055
57058
|
};
|
|
57056
57059
|
|
|
57057
|
-
},{}],
|
|
57060
|
+
},{}],379:[function(require,module,exports){
|
|
57058
57061
|
'use strict';
|
|
57059
57062
|
|
|
57060
57063
|
var hasSymbols = require('has-symbols/shams');
|
|
@@ -57064,7 +57067,7 @@ module.exports = function hasToStringTagShams() {
|
|
|
57064
57067
|
return hasSymbols() && !!Symbol.toStringTag;
|
|
57065
57068
|
};
|
|
57066
57069
|
|
|
57067
|
-
},{"has-symbols/shams":
|
|
57070
|
+
},{"has-symbols/shams":378}],380:[function(require,module,exports){
|
|
57068
57071
|
'use strict';
|
|
57069
57072
|
|
|
57070
57073
|
var call = Function.prototype.call;
|
|
@@ -57074,7 +57077,7 @@ var bind = require('function-bind');
|
|
|
57074
57077
|
/** @type {import('.')} */
|
|
57075
57078
|
module.exports = bind.call(call, $hasOwn);
|
|
57076
57079
|
|
|
57077
|
-
},{"function-bind":
|
|
57080
|
+
},{"function-bind":369}],381:[function(require,module,exports){
|
|
57078
57081
|
if (typeof Object.create === 'function') {
|
|
57079
57082
|
// implementation from standard node.js 'util' module
|
|
57080
57083
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -57103,7 +57106,7 @@ if (typeof Object.create === 'function') {
|
|
|
57103
57106
|
}
|
|
57104
57107
|
}
|
|
57105
57108
|
|
|
57106
|
-
},{}],
|
|
57109
|
+
},{}],382:[function(require,module,exports){
|
|
57107
57110
|
'use strict';
|
|
57108
57111
|
|
|
57109
57112
|
var hasToStringTag = require('has-tostringtag/shams')();
|
|
@@ -57149,7 +57152,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
|
57149
57152
|
/** @type {import('.')} */
|
|
57150
57153
|
module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
57151
57154
|
|
|
57152
|
-
},{"call-bound":
|
|
57155
|
+
},{"call-bound":355,"has-tostringtag/shams":379}],383:[function(require,module,exports){
|
|
57153
57156
|
'use strict';
|
|
57154
57157
|
|
|
57155
57158
|
var fnToStr = Function.prototype.toString;
|
|
@@ -57252,7 +57255,7 @@ module.exports = reflectApply
|
|
|
57252
57255
|
return tryFunctionObject(value);
|
|
57253
57256
|
};
|
|
57254
57257
|
|
|
57255
|
-
},{}],
|
|
57258
|
+
},{}],384:[function(require,module,exports){
|
|
57256
57259
|
'use strict';
|
|
57257
57260
|
|
|
57258
57261
|
var callBound = require('call-bound');
|
|
@@ -57301,7 +57304,7 @@ module.exports = function isGeneratorFunction(fn) {
|
|
|
57301
57304
|
return getProto(fn) === GeneratorFunction;
|
|
57302
57305
|
};
|
|
57303
57306
|
|
|
57304
|
-
},{"call-bound":
|
|
57307
|
+
},{"call-bound":355,"get-proto":373,"has-tostringtag/shams":379,"safe-regex-test":402}],385:[function(require,module,exports){
|
|
57305
57308
|
'use strict';
|
|
57306
57309
|
|
|
57307
57310
|
var callBound = require('call-bound');
|
|
@@ -57372,7 +57375,7 @@ if (hasToStringTag) {
|
|
|
57372
57375
|
|
|
57373
57376
|
module.exports = fn;
|
|
57374
57377
|
|
|
57375
|
-
},{"call-bound":
|
|
57378
|
+
},{"call-bound":355,"gopd":375,"has-tostringtag/shams":379,"hasown":380}],386:[function(require,module,exports){
|
|
57376
57379
|
'use strict';
|
|
57377
57380
|
|
|
57378
57381
|
var whichTypedArray = require('which-typed-array');
|
|
@@ -57382,19 +57385,19 @@ module.exports = function isTypedArray(value) {
|
|
|
57382
57385
|
return !!whichTypedArray(value);
|
|
57383
57386
|
};
|
|
57384
57387
|
|
|
57385
|
-
},{"which-typed-array":
|
|
57388
|
+
},{"which-typed-array":407}],387:[function(require,module,exports){
|
|
57386
57389
|
'use strict';
|
|
57387
57390
|
|
|
57388
57391
|
/** @type {import('./abs')} */
|
|
57389
57392
|
module.exports = Math.abs;
|
|
57390
57393
|
|
|
57391
|
-
},{}],
|
|
57394
|
+
},{}],388:[function(require,module,exports){
|
|
57392
57395
|
'use strict';
|
|
57393
57396
|
|
|
57394
57397
|
/** @type {import('./floor')} */
|
|
57395
57398
|
module.exports = Math.floor;
|
|
57396
57399
|
|
|
57397
|
-
},{}],
|
|
57400
|
+
},{}],389:[function(require,module,exports){
|
|
57398
57401
|
'use strict';
|
|
57399
57402
|
|
|
57400
57403
|
/** @type {import('./isNaN')} */
|
|
@@ -57402,31 +57405,31 @@ module.exports = Number.isNaN || function isNaN(a) {
|
|
|
57402
57405
|
return a !== a;
|
|
57403
57406
|
};
|
|
57404
57407
|
|
|
57405
|
-
},{}],
|
|
57408
|
+
},{}],390:[function(require,module,exports){
|
|
57406
57409
|
'use strict';
|
|
57407
57410
|
|
|
57408
57411
|
/** @type {import('./max')} */
|
|
57409
57412
|
module.exports = Math.max;
|
|
57410
57413
|
|
|
57411
|
-
},{}],
|
|
57414
|
+
},{}],391:[function(require,module,exports){
|
|
57412
57415
|
'use strict';
|
|
57413
57416
|
|
|
57414
57417
|
/** @type {import('./min')} */
|
|
57415
57418
|
module.exports = Math.min;
|
|
57416
57419
|
|
|
57417
|
-
},{}],
|
|
57420
|
+
},{}],392:[function(require,module,exports){
|
|
57418
57421
|
'use strict';
|
|
57419
57422
|
|
|
57420
57423
|
/** @type {import('./pow')} */
|
|
57421
57424
|
module.exports = Math.pow;
|
|
57422
57425
|
|
|
57423
|
-
},{}],
|
|
57426
|
+
},{}],393:[function(require,module,exports){
|
|
57424
57427
|
'use strict';
|
|
57425
57428
|
|
|
57426
57429
|
/** @type {import('./round')} */
|
|
57427
57430
|
module.exports = Math.round;
|
|
57428
57431
|
|
|
57429
|
-
},{}],
|
|
57432
|
+
},{}],394:[function(require,module,exports){
|
|
57430
57433
|
'use strict';
|
|
57431
57434
|
|
|
57432
57435
|
var $isNaN = require('./isNaN');
|
|
@@ -57439,7 +57442,7 @@ module.exports = function sign(number) {
|
|
|
57439
57442
|
return number < 0 ? -1 : +1;
|
|
57440
57443
|
};
|
|
57441
57444
|
|
|
57442
|
-
},{"./isNaN":
|
|
57445
|
+
},{"./isNaN":389}],395:[function(require,module,exports){
|
|
57443
57446
|
'use strict';
|
|
57444
57447
|
|
|
57445
57448
|
var keysShim;
|
|
@@ -57563,7 +57566,7 @@ if (!Object.keys) {
|
|
|
57563
57566
|
}
|
|
57564
57567
|
module.exports = keysShim;
|
|
57565
57568
|
|
|
57566
|
-
},{"./isArguments":
|
|
57569
|
+
},{"./isArguments":397}],396:[function(require,module,exports){
|
|
57567
57570
|
'use strict';
|
|
57568
57571
|
|
|
57569
57572
|
var slice = Array.prototype.slice;
|
|
@@ -57597,7 +57600,7 @@ keysShim.shim = function shimObjectKeys() {
|
|
|
57597
57600
|
|
|
57598
57601
|
module.exports = keysShim;
|
|
57599
57602
|
|
|
57600
|
-
},{"./implementation":
|
|
57603
|
+
},{"./implementation":395,"./isArguments":397}],397:[function(require,module,exports){
|
|
57601
57604
|
'use strict';
|
|
57602
57605
|
|
|
57603
57606
|
var toStr = Object.prototype.toString;
|
|
@@ -57616,7 +57619,7 @@ module.exports = function isArguments(value) {
|
|
|
57616
57619
|
return isArgs;
|
|
57617
57620
|
};
|
|
57618
57621
|
|
|
57619
|
-
},{}],
|
|
57622
|
+
},{}],398:[function(require,module,exports){
|
|
57620
57623
|
'use strict';
|
|
57621
57624
|
|
|
57622
57625
|
// modified from https://github.com/es-shims/es6-shim
|
|
@@ -57664,7 +57667,7 @@ module.exports = function assign(target, source1) {
|
|
|
57664
57667
|
return to; // step 4
|
|
57665
57668
|
};
|
|
57666
57669
|
|
|
57667
|
-
},{"call-bound":
|
|
57670
|
+
},{"call-bound":355,"es-object-atoms":366,"has-symbols/shams":378,"object-keys":396}],399:[function(require,module,exports){
|
|
57668
57671
|
'use strict';
|
|
57669
57672
|
|
|
57670
57673
|
var implementation = require('./implementation');
|
|
@@ -57721,7 +57724,7 @@ module.exports = function getPolyfill() {
|
|
|
57721
57724
|
return Object.assign;
|
|
57722
57725
|
};
|
|
57723
57726
|
|
|
57724
|
-
},{"./implementation":
|
|
57727
|
+
},{"./implementation":398}],400:[function(require,module,exports){
|
|
57725
57728
|
'use strict';
|
|
57726
57729
|
|
|
57727
57730
|
/** @type {import('.')} */
|
|
@@ -57740,7 +57743,7 @@ module.exports = [
|
|
|
57740
57743
|
'BigUint64Array'
|
|
57741
57744
|
];
|
|
57742
57745
|
|
|
57743
|
-
},{}],
|
|
57746
|
+
},{}],401:[function(require,module,exports){
|
|
57744
57747
|
// shim for using process in browser
|
|
57745
57748
|
var process = module.exports = {};
|
|
57746
57749
|
|
|
@@ -57926,7 +57929,7 @@ process.chdir = function (dir) {
|
|
|
57926
57929
|
};
|
|
57927
57930
|
process.umask = function() { return 0; };
|
|
57928
57931
|
|
|
57929
|
-
},{}],
|
|
57932
|
+
},{}],402:[function(require,module,exports){
|
|
57930
57933
|
'use strict';
|
|
57931
57934
|
|
|
57932
57935
|
var callBound = require('call-bound');
|
|
@@ -57945,7 +57948,7 @@ module.exports = function regexTester(regex) {
|
|
|
57945
57948
|
};
|
|
57946
57949
|
};
|
|
57947
57950
|
|
|
57948
|
-
},{"call-bound":
|
|
57951
|
+
},{"call-bound":355,"es-errors/type":364,"is-regex":385}],403:[function(require,module,exports){
|
|
57949
57952
|
'use strict';
|
|
57950
57953
|
|
|
57951
57954
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -57989,9 +57992,9 @@ module.exports = function setFunctionLength(fn, length) {
|
|
|
57989
57992
|
return fn;
|
|
57990
57993
|
};
|
|
57991
57994
|
|
|
57992
|
-
},{"define-data-property":
|
|
57993
|
-
arguments[4][
|
|
57994
|
-
},{"dup":
|
|
57995
|
+
},{"define-data-property":356,"es-errors/type":364,"get-intrinsic":370,"gopd":375,"has-property-descriptors":376}],404:[function(require,module,exports){
|
|
57996
|
+
arguments[4][344][0].apply(exports,arguments)
|
|
57997
|
+
},{"dup":344}],405:[function(require,module,exports){
|
|
57995
57998
|
// Currently in sync with Node.js lib/internal/util/types.js
|
|
57996
57999
|
// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
|
|
57997
58000
|
|
|
@@ -58327,7 +58330,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
|
|
|
58327
58330
|
});
|
|
58328
58331
|
});
|
|
58329
58332
|
|
|
58330
|
-
},{"is-arguments":
|
|
58333
|
+
},{"is-arguments":382,"is-generator-function":384,"is-typed-array":386,"which-typed-array":407}],406:[function(require,module,exports){
|
|
58331
58334
|
(function (process){(function (){
|
|
58332
58335
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
58333
58336
|
//
|
|
@@ -59046,7 +59049,7 @@ function callbackify(original) {
|
|
|
59046
59049
|
exports.callbackify = callbackify;
|
|
59047
59050
|
|
|
59048
59051
|
}).call(this)}).call(this,require('_process'))
|
|
59049
|
-
},{"./support/isBuffer":
|
|
59052
|
+
},{"./support/isBuffer":404,"./support/types":405,"_process":401,"inherits":381}],407:[function(require,module,exports){
|
|
59050
59053
|
(function (global){(function (){
|
|
59051
59054
|
'use strict';
|
|
59052
59055
|
|
|
@@ -59167,5 +59170,5 @@ module.exports = function whichTypedArray(value) {
|
|
|
59167
59170
|
};
|
|
59168
59171
|
|
|
59169
59172
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
59170
|
-
},{"available-typed-arrays":
|
|
59173
|
+
},{"available-typed-arrays":346,"call-bind":354,"call-bound":355,"for-each":367,"get-proto":373,"gopd":375,"has-tostringtag/shams":379}]},{},[106])(106)
|
|
59171
59174
|
});
|