@designliquido/delegua 1.22.0 → 1.22.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/analisador-semantico/analisador-semantico.d.ts.map +1 -1
- package/analisador-semantico/analisador-semantico.js +31 -3
- package/analisador-semantico/analisador-semantico.js.map +1 -1
- package/analisador-semantico/tabela-diagnosticos-semanticos.d.ts.map +1 -1
- package/analisador-semantico/tabela-diagnosticos-semanticos.js +5 -0
- package/analisador-semantico/tabela-diagnosticos-semanticos.js.map +1 -1
- package/avaliador-sintatico/avaliador-sintatico.d.ts.map +1 -1
- package/avaliador-sintatico/avaliador-sintatico.js +15 -2
- package/avaliador-sintatico/avaliador-sintatico.js.map +1 -1
- package/bin/package.json +1 -1
- package/interfaces/erros/correcao-implementacao-metodo-interface.d.ts +8 -0
- package/interfaces/erros/correcao-implementacao-metodo-interface.d.ts.map +1 -0
- package/interfaces/erros/correcao-implementacao-metodo-interface.js +3 -0
- package/interfaces/erros/correcao-implementacao-metodo-interface.js.map +1 -0
- package/interfaces/erros/diagnostico-analisador-semantico-interface.d.ts +2 -0
- package/interfaces/erros/diagnostico-analisador-semantico-interface.d.ts.map +1 -1
- package/interfaces/erros/diagnostico-analisador-semantico-interface.js.map +1 -1
- package/interfaces/erros/index.d.ts +1 -0
- package/interfaces/erros/index.d.ts.map +1 -1
- package/interfaces/erros/index.js +1 -0
- package/interfaces/erros/index.js.map +1 -1
- package/interpretador/interpretador-base.d.ts +17 -0
- package/interpretador/interpretador-base.d.ts.map +1 -1
- package/interpretador/interpretador-base.js +12 -0
- package/interpretador/interpretador-base.js.map +1 -1
- package/package.json +1 -1
- package/umd/delegua.js +417 -354
package/umd/delegua.js
CHANGED
|
@@ -494,7 +494,7 @@ class AnalisadorSemanticoBase {
|
|
|
494
494
|
}
|
|
495
495
|
exports.AnalisadorSemanticoBase = AnalisadorSemanticoBase;
|
|
496
496
|
|
|
497
|
-
},{"../construtos":67,"../declaracoes":116,"../interfaces":
|
|
497
|
+
},{"../construtos":67,"../declaracoes":116,"../interfaces":176,"../quebras":247,"./gerenciador-escopos":5,"./tabela-diagnosticos-semanticos":8}],2:[function(require,module,exports){
|
|
498
498
|
"use strict";
|
|
499
499
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
500
500
|
exports.AnalisadorSemantico = void 0;
|
|
@@ -1642,10 +1642,38 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
1642
1642
|
const classeDef = this.classesRegistradas.get(tipoObjeto);
|
|
1643
1643
|
if (!classeDef)
|
|
1644
1644
|
return;
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1645
|
+
// Busca o membro na classe e em toda a hierarquia de superclasses
|
|
1646
|
+
const encontrarMembroNaHierarquia = (classe) => {
|
|
1647
|
+
const encontrado = classe.metodos.find((m) => m.simbolo.lexema === nomeMembro) ??
|
|
1648
|
+
classe.propriedades.find((p) => p.nome.lexema === nomeMembro);
|
|
1649
|
+
if (encontrado)
|
|
1650
|
+
return encontrado;
|
|
1651
|
+
for (const sc of classe.superClasses) {
|
|
1652
|
+
const pai = this.classesRegistradas.get(sc.simbolo.lexema);
|
|
1653
|
+
if (pai) {
|
|
1654
|
+
const membroPai = encontrarMembroNaHierarquia(pai);
|
|
1655
|
+
if (membroPai)
|
|
1656
|
+
return membroPai;
|
|
1657
|
+
}
|
|
1658
|
+
}
|
|
1659
|
+
return undefined;
|
|
1660
|
+
};
|
|
1661
|
+
const membro = encontrarMembroNaHierarquia(classeDef);
|
|
1662
|
+
if (!membro) {
|
|
1663
|
+
const mensagemErro = `Método não encontrado na classe '${tipoObjeto}': ${nomeMembro}.`;
|
|
1664
|
+
this.erro(expressao.simbolo, mensagemErro, 'SEMANTICO_METODO_NAO_ENCONTRADO');
|
|
1665
|
+
const diagnostico = this.diagnosticos.find((d) => d.linha === expressao.simbolo.linha && d.mensagem === mensagemErro);
|
|
1666
|
+
if (diagnostico) {
|
|
1667
|
+
diagnostico.correcaoMetodo = {
|
|
1668
|
+
tipo: 'implementar-metodo',
|
|
1669
|
+
nomeClasse: tipoObjeto,
|
|
1670
|
+
nomeMetodo: nomeMembro,
|
|
1671
|
+
linhaDeclaracaoClasse: classeDef.linha,
|
|
1672
|
+
hashArquivoClasse: classeDef.hashArquivo,
|
|
1673
|
+
};
|
|
1674
|
+
}
|
|
1648
1675
|
return;
|
|
1676
|
+
}
|
|
1649
1677
|
if (membro.acesso === 'privado') {
|
|
1650
1678
|
if (this.classeAtualEmAnalise?.simbolo.lexema !== tipoObjeto) {
|
|
1651
1679
|
this.erro(expressao.simbolo, `Membro '${nomeMembro}' é privado e não pode ser acessado fora da classe '${tipoObjeto}'.`);
|
|
@@ -1856,7 +1884,7 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
1856
1884
|
}
|
|
1857
1885
|
exports.AnalisadorSemantico = AnalisadorSemantico;
|
|
1858
1886
|
|
|
1859
|
-
},{"../avaliador-sintatico/comum":12,"../avaliador-sintatico/micro-avaliador-sintatico":25,"../construtos":67,"../declaracoes":116,"../interfaces/erros":
|
|
1887
|
+
},{"../avaliador-sintatico/comum":12,"../avaliador-sintatico/micro-avaliador-sintatico":25,"../construtos":67,"../declaracoes":116,"../interfaces/erros":173,"../lexador/micro-lexador":244,"./analisador-semantico-base":1,"./gerenciador-escopos":5,"./pilha-variaveis":7}],3:[function(require,module,exports){
|
|
1860
1888
|
"use strict";
|
|
1861
1889
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1862
1890
|
|
|
@@ -2022,6 +2050,11 @@ exports.TABELA_ERROS_SEMANTICOS = [
|
|
|
2022
2050
|
descricao: 'Quantidade ou tipo de parametros invalida para funcao.',
|
|
2023
2051
|
padroesMensagem: [/funcao.*espera.*parametr/i, /parametr.*diferente/i],
|
|
2024
2052
|
},
|
|
2053
|
+
{
|
|
2054
|
+
codigoDiagnostico: 'SEMANTICO_METODO_NAO_ENCONTRADO',
|
|
2055
|
+
descricao: 'Metodo nao encontrado na classe.',
|
|
2056
|
+
padroesMensagem: [/m[eé]todo n[aã]o encontrado na classe/i],
|
|
2057
|
+
},
|
|
2025
2058
|
{
|
|
2026
2059
|
codigoDiagnostico: 'SEMANTICO_ERRO_GENERICO',
|
|
2027
2060
|
descricao: 'Erro semantico nao categorizado.',
|
|
@@ -2063,7 +2096,7 @@ function inferirCodigoDiagnosticoSemantico(mensagem, severidade) {
|
|
|
2063
2096
|
return 'SEMANTICO_DIAGNOSTICO_GENERICO';
|
|
2064
2097
|
}
|
|
2065
2098
|
|
|
2066
|
-
},{"../interfaces":
|
|
2099
|
+
},{"../interfaces":176}],9:[function(require,module,exports){
|
|
2067
2100
|
"use strict";
|
|
2068
2101
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2069
2102
|
|
|
@@ -2343,7 +2376,7 @@ class AvaliadorSintaticoBase {
|
|
|
2343
2376
|
}
|
|
2344
2377
|
exports.AvaliadorSintaticoBase = AvaliadorSintaticoBase;
|
|
2345
2378
|
|
|
2346
|
-
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/comum":
|
|
2379
|
+
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/comum":252,"./erro-avaliador-sintatico":21}],11:[function(require,module,exports){
|
|
2347
2380
|
"use strict";
|
|
2348
2381
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
2349
2382
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -2435,10 +2468,23 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
2435
2468
|
if (this.simbolos[this.atual].lexema in this.interfacesDeclaradas) {
|
|
2436
2469
|
return this.simbolos[this.atual].lexema;
|
|
2437
2470
|
}
|
|
2438
|
-
const
|
|
2471
|
+
const lexemaOriginal = this.simbolos[this.atual].lexema;
|
|
2472
|
+
const lexemaElementar = lexemaOriginal.toLowerCase();
|
|
2439
2473
|
const tipoElementarResolvido = tipos.find((tipo) => tipo === lexemaElementar);
|
|
2440
2474
|
if (!tipoElementarResolvido) {
|
|
2441
|
-
|
|
2475
|
+
// Mantém o avaliador sintático sincronizado mesmo com tipos não reconhecidos
|
|
2476
|
+
// (ex.: anotações vindas de módulos externos ainda não resolvidos).
|
|
2477
|
+
// Assim evitamos que o próximo token (como '[') seja interpretado
|
|
2478
|
+
// como início de outra produção e gere erros encadeados.
|
|
2479
|
+
if (this.verificarTipoProximoSimbolo(delegua_2.default.COLCHETE_ESQUERDO)) {
|
|
2480
|
+
this.avancarEDevolverAnterior();
|
|
2481
|
+
if (!this.verificarTipoProximoSimbolo(delegua_2.default.COLCHETE_DIREITO)) {
|
|
2482
|
+
throw this.erro(this.simbolos[this.atual], `Esperado símbolo de fechamento do vetor: ']'. Atual: ${this.simbolos[this.atual].lexema}`);
|
|
2483
|
+
}
|
|
2484
|
+
this.avancarEDevolverAnterior();
|
|
2485
|
+
return `${lexemaOriginal}[]`;
|
|
2486
|
+
}
|
|
2487
|
+
return lexemaOriginal;
|
|
2442
2488
|
}
|
|
2443
2489
|
if ((tipoElementarResolvido === 'funcao' || tipoElementarResolvido === 'função') &&
|
|
2444
2490
|
this.verificarTipoProximoSimbolo(delegua_2.default.MENOR)) {
|
|
@@ -5460,7 +5506,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
5460
5506
|
}
|
|
5461
5507
|
exports.AvaliadorSintatico = AvaliadorSintatico;
|
|
5462
5508
|
|
|
5463
|
-
},{"../bibliotecas/primitivas-dicionario":31,"../bibliotecas/primitivas-numero":32,"../bibliotecas/primitivas-texto":33,"../bibliotecas/primitivas-vetor":34,"../construtos":67,"../construtos/tuplas":86,"../declaracoes":116,"../inferenciador":146,"../informacao-elemento-sintatico":147,"../lexador/simbolo":
|
|
5509
|
+
},{"../bibliotecas/primitivas-dicionario":31,"../bibliotecas/primitivas-numero":32,"../bibliotecas/primitivas-texto":33,"../bibliotecas/primitivas-vetor":34,"../construtos":67,"../construtos/tuplas":86,"../declaracoes":116,"../inferenciador":146,"../informacao-elemento-sintatico":147,"../lexador/simbolo":246,"../tipos-de-dados/delegua":248,"../tipos-de-simbolos/delegua":253,"./avaliador-sintatico-base":10,"./comum":12,"./elemento-montao-tipos":20,"./erro-avaliador-sintatico":21,"./informacao-escopo":23,"./montao-tipos":26,"./pilha-escopos":27,"browser-process-hrtime":446}],12:[function(require,module,exports){
|
|
5464
5510
|
"use strict";
|
|
5465
5511
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5466
5512
|
exports.buscarRetornos = buscarRetornos;
|
|
@@ -6235,7 +6281,7 @@ class AvaliadorSintaticoEguaClassico {
|
|
|
6235
6281
|
}
|
|
6236
6282
|
exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
|
|
6237
6283
|
|
|
6238
|
-
},{"../../construtos":67,"../../declaracoes":116,"../../tipos-de-simbolos/egua-classico":
|
|
6284
|
+
},{"../../construtos":67,"../../declaracoes":116,"../../tipos-de-simbolos/egua-classico":254,"../erro-avaliador-sintatico":21}],14:[function(require,module,exports){
|
|
6239
6285
|
"use strict";
|
|
6240
6286
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
6241
6287
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -8044,7 +8090,7 @@ class AvaliadorSintaticoPitugues {
|
|
|
8044
8090
|
}
|
|
8045
8091
|
exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
|
|
8046
8092
|
|
|
8047
|
-
},{"../../bibliotecas/dialetos/pitugues/primitivas-tupla":30,"../../bibliotecas/primitivas-dicionario":31,"../../bibliotecas/primitivas-numero":32,"../../bibliotecas/primitivas-texto":33,"../../bibliotecas/primitivas-vetor":34,"../../construtos":67,"../../declaracoes":116,"../../inferenciador":146,"../../informacao-elemento-sintatico":147,"../../lexador":
|
|
8093
|
+
},{"../../bibliotecas/dialetos/pitugues/primitivas-tupla":30,"../../bibliotecas/primitivas-dicionario":31,"../../bibliotecas/primitivas-numero":32,"../../bibliotecas/primitivas-texto":33,"../../bibliotecas/primitivas-vetor":34,"../../construtos":67,"../../declaracoes":116,"../../inferenciador":146,"../../informacao-elemento-sintatico":147,"../../lexador":238,"../../lexador/micro-lexador-pitugues":243,"../../tipos-de-dados/dialetos/pitugues":249,"../../tipos-de-simbolos/pitugues":257,"../comum":12,"../erro-avaliador-sintatico":21,"../informacao-escopo":23,"../pilha-escopos":27,"./micro-avaliador-sintatico-pitugues":19,"browser-process-hrtime":446}],15:[function(require,module,exports){
|
|
8048
8094
|
"use strict";
|
|
8049
8095
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8050
8096
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -8592,7 +8638,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
|
|
|
8592
8638
|
}
|
|
8593
8639
|
exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
|
|
8594
8640
|
|
|
8595
|
-
},{"../../construtos":67,"../../declaracoes":116,"../../lexador/simbolo":
|
|
8641
|
+
},{"../../construtos":67,"../../declaracoes":116,"../../lexador/simbolo":246,"../../tipos-de-simbolos/portugol-ipt":258,"../avaliador-sintatico-base":10}],16:[function(require,module,exports){
|
|
8596
8642
|
"use strict";
|
|
8597
8643
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8598
8644
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -9559,7 +9605,7 @@ class AvaliadorSintaticoPrisma extends avaliador_sintatico_base_1.AvaliadorSinta
|
|
|
9559
9605
|
}
|
|
9560
9606
|
exports.AvaliadorSintaticoPrisma = AvaliadorSintaticoPrisma;
|
|
9561
9607
|
|
|
9562
|
-
},{"../../bibliotecas/primitivas-dicionario":31,"../../bibliotecas/primitivas-numero":32,"../../bibliotecas/primitivas-texto":33,"../../bibliotecas/primitivas-vetor":34,"../../construtos":67,"../../declaracoes":116,"../../inferenciador":146,"../../informacao-elemento-sintatico":147,"../../lexador":
|
|
9608
|
+
},{"../../bibliotecas/primitivas-dicionario":31,"../../bibliotecas/primitivas-numero":32,"../../bibliotecas/primitivas-texto":33,"../../bibliotecas/primitivas-vetor":34,"../../construtos":67,"../../declaracoes":116,"../../inferenciador":146,"../../informacao-elemento-sintatico":147,"../../lexador":238,"../../tipos-de-simbolos/prisma":259,"../avaliador-sintatico-base":10,"../comum":12,"../erro-avaliador-sintatico":21,"../informacao-escopo":23,"../pilha-escopos":27,"browser-process-hrtime":446}],17:[function(require,module,exports){
|
|
9563
9609
|
"use strict";
|
|
9564
9610
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
9565
9611
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -10571,7 +10617,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
|
|
|
10571
10617
|
}
|
|
10572
10618
|
exports.AvaliadorSintaticoTenda = AvaliadorSintaticoTenda;
|
|
10573
10619
|
|
|
10574
|
-
},{"../../bibliotecas/primitivas-dicionario":31,"../../bibliotecas/primitivas-numero":32,"../../bibliotecas/primitivas-texto":33,"../../bibliotecas/primitivas-vetor":34,"../../construtos":67,"../../construtos/tuplas":86,"../../declaracoes":116,"../../inferenciador":146,"../../informacao-elemento-sintatico":147,"../../lexador/simbolo":
|
|
10620
|
+
},{"../../bibliotecas/primitivas-dicionario":31,"../../bibliotecas/primitivas-numero":32,"../../bibliotecas/primitivas-texto":33,"../../bibliotecas/primitivas-vetor":34,"../../construtos":67,"../../construtos/tuplas":86,"../../declaracoes":116,"../../inferenciador":146,"../../informacao-elemento-sintatico":147,"../../lexador/simbolo":246,"../../tipos-de-dados/delegua":248,"../../tipos-de-simbolos/tenda":260,"../avaliador-sintatico-base":10,"./../erro-avaliador-sintatico":21,"./../informacao-escopo":23,"./../pilha-escopos":27,"browser-process-hrtime":446}],18:[function(require,module,exports){
|
|
10575
10621
|
"use strict";
|
|
10576
10622
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10577
10623
|
if (k2 === undefined) k2 = k;
|
|
@@ -10840,7 +10886,7 @@ class MicroAvaliadorSintaticoPitugues extends micro_avaliador_sintatico_base_1.M
|
|
|
10840
10886
|
}
|
|
10841
10887
|
exports.MicroAvaliadorSintaticoPitugues = MicroAvaliadorSintaticoPitugues;
|
|
10842
10888
|
|
|
10843
|
-
},{"../../construtos":67,"../../declaracoes":116,"../../inferenciador":146,"../../tipos-de-simbolos/pitugues":
|
|
10889
|
+
},{"../../construtos":67,"../../declaracoes":116,"../../inferenciador":146,"../../tipos-de-simbolos/pitugues":257,"../micro-avaliador-sintatico-base":24}],20:[function(require,module,exports){
|
|
10844
10890
|
"use strict";
|
|
10845
10891
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10846
10892
|
exports.ElementoMontaoTipos = void 0;
|
|
@@ -11026,7 +11072,7 @@ class MicroAvaliadorSintaticoBase {
|
|
|
11026
11072
|
}
|
|
11027
11073
|
exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
|
|
11028
11074
|
|
|
11029
|
-
},{"../construtos":67,"../tipos-de-simbolos/comum":
|
|
11075
|
+
},{"../construtos":67,"../tipos-de-simbolos/comum":252,"./erro-avaliador-sintatico":21}],25:[function(require,module,exports){
|
|
11030
11076
|
"use strict";
|
|
11031
11077
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11032
11078
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -11259,7 +11305,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
|
|
|
11259
11305
|
}
|
|
11260
11306
|
exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
|
|
11261
11307
|
|
|
11262
|
-
},{"../construtos":67,"../tipos-de-simbolos/microgramaticas/delegua":
|
|
11308
|
+
},{"../construtos":67,"../tipos-de-simbolos/microgramaticas/delegua":256,"./micro-avaliador-sintatico-base":24}],26:[function(require,module,exports){
|
|
11263
11309
|
"use strict";
|
|
11264
11310
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11265
11311
|
exports.MontaoTipos = void 0;
|
|
@@ -12601,7 +12647,7 @@ async function vetor(interpretador, tupla) {
|
|
|
12601
12647
|
return resultadoFinal;
|
|
12602
12648
|
}
|
|
12603
12649
|
|
|
12604
|
-
},{"../construtos":67,"../excecoes":140,"../interpretador/estruturas":
|
|
12650
|
+
},{"../construtos":67,"../excecoes":140,"../interpretador/estruturas":209,"../interpretador/estruturas/descritor-tipo-classe":207,"../interpretador/estruturas/funcao-padrao":208,"../interpretador/estruturas/objeto-delegua-classe":214,"../quebras":247}],30:[function(require,module,exports){
|
|
12605
12651
|
"use strict";
|
|
12606
12652
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12607
12653
|
const excecoes_1 = require("../../../excecoes");
|
|
@@ -13709,7 +13755,7 @@ function construirModuloAfirmar() {
|
|
|
13709
13755
|
return modulo;
|
|
13710
13756
|
}
|
|
13711
13757
|
|
|
13712
|
-
},{"../../excecoes/erro-de-assertiva":138,"../../interpretador/estruturas/funcao-padrao":
|
|
13758
|
+
},{"../../excecoes/erro-de-assertiva":138,"../../interpretador/estruturas/funcao-padrao":208,"../../interpretador/estruturas/modulo":212}],36:[function(require,module,exports){
|
|
13713
13759
|
"use strict";
|
|
13714
13760
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13715
13761
|
exports.construirModuloDeTestes = construirModuloDeTestes;
|
|
@@ -13776,7 +13822,7 @@ function construirModuloDeTestes(interpretador, registro) {
|
|
|
13776
13822
|
return modulo;
|
|
13777
13823
|
}
|
|
13778
13824
|
|
|
13779
|
-
},{"../../excecoes/erro-de-assertiva":138,"../../interpretador/estruturas/funcao-padrao":
|
|
13825
|
+
},{"../../excecoes/erro-de-assertiva":138,"../../interpretador/estruturas/funcao-padrao":208,"../../interpretador/estruturas/modulo":212,"./modulo-afirmar":35}],37:[function(require,module,exports){
|
|
13780
13826
|
"use strict";
|
|
13781
13827
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13782
13828
|
exports.RegistroTestes = void 0;
|
|
@@ -17363,7 +17409,7 @@ class RegraParadigmaConsistente {
|
|
|
17363
17409
|
}
|
|
17364
17410
|
exports.RegraParadigmaConsistente = RegraParadigmaConsistente;
|
|
17365
17411
|
|
|
17366
|
-
},{"../../construtos/leia":69,"../../declaracoes":116,"../../lexador/mapeamento-paradigmas":
|
|
17412
|
+
},{"../../construtos/leia":69,"../../declaracoes":116,"../../lexador/mapeamento-paradigmas":242}],138:[function(require,module,exports){
|
|
17367
17413
|
"use strict";
|
|
17368
17414
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17369
17415
|
exports.ErroDeAssertiva = void 0;
|
|
@@ -18374,7 +18420,7 @@ class FormatadorDelegua {
|
|
|
18374
18420
|
}
|
|
18375
18421
|
exports.FormatadorDelegua = FormatadorDelegua;
|
|
18376
18422
|
|
|
18377
|
-
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/delegua":
|
|
18423
|
+
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/delegua":253}],142:[function(require,module,exports){
|
|
18378
18424
|
"use strict";
|
|
18379
18425
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
18380
18426
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -18846,7 +18892,7 @@ class FormatadorPitugues {
|
|
|
18846
18892
|
}
|
|
18847
18893
|
exports.FormatadorPitugues = FormatadorPitugues;
|
|
18848
18894
|
|
|
18849
|
-
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/pitugues":
|
|
18895
|
+
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/pitugues":257}],143:[function(require,module,exports){
|
|
18850
18896
|
"use strict";
|
|
18851
18897
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18852
18898
|
if (k2 === undefined) k2 = k;
|
|
@@ -18939,7 +18985,7 @@ __exportStar(require("./interpretador"), exports);
|
|
|
18939
18985
|
__exportStar(require("./lexador"), exports);
|
|
18940
18986
|
__exportStar(require("./tradutores"), exports);
|
|
18941
18987
|
|
|
18942
|
-
},{"./analisador-semantico":6,"./avaliador-sintatico":22,"./construtos":67,"./declaracoes":116,"./estilizador":131,"./formatadores":143,"./geracao-identificadores":144,"./interfaces":
|
|
18988
|
+
},{"./analisador-semantico":6,"./avaliador-sintatico":22,"./construtos":67,"./declaracoes":116,"./estilizador":131,"./formatadores":143,"./geracao-identificadores":144,"./interfaces":176,"./interpretador":218,"./lexador":238,"./tradutores":261}],146:[function(require,module,exports){
|
|
18943
18989
|
"use strict";
|
|
18944
18990
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
18945
18991
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -19065,7 +19111,7 @@ function inferirTipoVariavel(variavel) {
|
|
|
19065
19111
|
}
|
|
19066
19112
|
}
|
|
19067
19113
|
|
|
19068
|
-
},{"./tipos-de-dados/delegua":
|
|
19114
|
+
},{"./tipos-de-dados/delegua":248,"./tipos-de-dados/primitivos":250,"./tipos-de-simbolos/delegua":253}],147:[function(require,module,exports){
|
|
19069
19115
|
"use strict";
|
|
19070
19116
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19071
19117
|
exports.InformacaoElementoSintatico = void 0;
|
|
@@ -19256,6 +19302,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
19256
19302
|
},{}],170:[function(require,module,exports){
|
|
19257
19303
|
"use strict";
|
|
19258
19304
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19305
|
+
|
|
19306
|
+
},{}],171:[function(require,module,exports){
|
|
19307
|
+
"use strict";
|
|
19308
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19259
19309
|
exports.DiagnosticoSeveridade = void 0;
|
|
19260
19310
|
var DiagnosticoSeveridade;
|
|
19261
19311
|
(function (DiagnosticoSeveridade) {
|
|
@@ -19265,11 +19315,11 @@ var DiagnosticoSeveridade;
|
|
|
19265
19315
|
DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
|
|
19266
19316
|
})(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
|
|
19267
19317
|
|
|
19268
|
-
},{}],
|
|
19318
|
+
},{}],172:[function(require,module,exports){
|
|
19269
19319
|
"use strict";
|
|
19270
19320
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19271
19321
|
|
|
19272
|
-
},{}],
|
|
19322
|
+
},{}],173:[function(require,module,exports){
|
|
19273
19323
|
"use strict";
|
|
19274
19324
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19275
19325
|
if (k2 === undefined) k2 = k;
|
|
@@ -19286,19 +19336,20 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
19286
19336
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
19287
19337
|
};
|
|
19288
19338
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19339
|
+
__exportStar(require("./correcao-implementacao-metodo-interface"), exports);
|
|
19289
19340
|
__exportStar(require("./correcao-sugerida-interface"), exports);
|
|
19290
19341
|
__exportStar(require("./diagnostico-analisador-semantico-interface"), exports);
|
|
19291
19342
|
__exportStar(require("./erro-interpretador-interface"), exports);
|
|
19292
19343
|
|
|
19293
|
-
},{"./correcao-
|
|
19344
|
+
},{"./correcao-implementacao-metodo-interface":169,"./correcao-sugerida-interface":170,"./diagnostico-analisador-semantico-interface":171,"./erro-interpretador-interface":172}],174:[function(require,module,exports){
|
|
19294
19345
|
"use strict";
|
|
19295
19346
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19296
19347
|
|
|
19297
|
-
},{}],
|
|
19348
|
+
},{}],175:[function(require,module,exports){
|
|
19298
19349
|
"use strict";
|
|
19299
19350
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19300
19351
|
|
|
19301
|
-
},{}],
|
|
19352
|
+
},{}],176:[function(require,module,exports){
|
|
19302
19353
|
"use strict";
|
|
19303
19354
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19304
19355
|
if (k2 === undefined) k2 = k;
|
|
@@ -19347,11 +19398,7 @@ __exportStar(require("./erros"), exports);
|
|
|
19347
19398
|
__exportStar(require("./retornos"), exports);
|
|
19348
19399
|
__exportStar(require("./tradutores"), exports);
|
|
19349
19400
|
|
|
19350
|
-
},{"./avaliador-sintatico":150,"./componente-modulo-classe-interface":152,"./componente-modulo-funcao-interface":153,"./construtos":156,"./declaracoes":158,"./delegua":161,"./depuracao":164,"./egua-classico":165,"./entrada-tabela-diagnostico-semantico-interface":167,"./entrada-tabela-diagnosticos-sintatico-interface":168,"./erros":
|
|
19351
|
-
"use strict";
|
|
19352
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19353
|
-
|
|
19354
|
-
},{}],177:[function(require,module,exports){
|
|
19401
|
+
},{"./avaliador-sintatico":150,"./componente-modulo-classe-interface":152,"./componente-modulo-funcao-interface":153,"./construtos":156,"./declaracoes":158,"./delegua":161,"./depuracao":164,"./egua-classico":165,"./entrada-tabela-diagnostico-semantico-interface":167,"./entrada-tabela-diagnosticos-sintatico-interface":168,"./erros":173,"./estilizador/estilizador-interface":174,"./formatador-comum-interface":175,"./interpretador-com-depuracao-interface":177,"./interpretador-interface":178,"./iteravel-interface":179,"./lexador-interface":180,"./modulo-interface":181,"./parametro-interface":182,"./pilha-interface":183,"./primitiva-interface":184,"./resolvedor-interface":185,"./resultado-parcial-interpretador-interface":186,"./retornos":187,"./retornos/retorno-execucao-interface":190,"./simbolo-interface":193,"./tradutores":195,"./tradutores/tradutor-interface":196,"./variavel-interface":197,"./visitante-comum-interface":198,"./visitante-delegua-interface":199}],177:[function(require,module,exports){
|
|
19355
19402
|
"use strict";
|
|
19356
19403
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19357
19404
|
|
|
@@ -19389,6 +19436,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
19389
19436
|
|
|
19390
19437
|
},{}],186:[function(require,module,exports){
|
|
19391
19438
|
"use strict";
|
|
19439
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19440
|
+
|
|
19441
|
+
},{}],187:[function(require,module,exports){
|
|
19442
|
+
"use strict";
|
|
19392
19443
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19393
19444
|
if (k2 === undefined) k2 = k;
|
|
19394
19445
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -19410,11 +19461,7 @@ __exportStar(require("./retorno-execucao-interface"), exports);
|
|
|
19410
19461
|
__exportStar(require("./retorno-interpretador-interface"), exports);
|
|
19411
19462
|
__exportStar(require("./retorno-lexador-interface"), exports);
|
|
19412
19463
|
|
|
19413
|
-
},{"./retorno-analisador-semantico-interface":
|
|
19414
|
-
"use strict";
|
|
19415
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19416
|
-
|
|
19417
|
-
},{}],188:[function(require,module,exports){
|
|
19464
|
+
},{"./retorno-analisador-semantico-interface":188,"./retorno-avaliador-sintatico-interface":189,"./retorno-execucao-interface":190,"./retorno-interpretador-interface":191,"./retorno-lexador-interface":192}],188:[function(require,module,exports){
|
|
19418
19465
|
"use strict";
|
|
19419
19466
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19420
19467
|
|
|
@@ -19440,6 +19487,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
19440
19487
|
|
|
19441
19488
|
},{}],194:[function(require,module,exports){
|
|
19442
19489
|
"use strict";
|
|
19490
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19491
|
+
|
|
19492
|
+
},{}],195:[function(require,module,exports){
|
|
19493
|
+
"use strict";
|
|
19443
19494
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19444
19495
|
if (k2 === undefined) k2 = k;
|
|
19445
19496
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -19458,11 +19509,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
19458
19509
|
__exportStar(require("./contexto-funcao-interface"), exports);
|
|
19459
19510
|
__exportStar(require("./tradutor-interface"), exports);
|
|
19460
19511
|
|
|
19461
|
-
},{"./contexto-funcao-interface":
|
|
19462
|
-
"use strict";
|
|
19463
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19464
|
-
|
|
19465
|
-
},{}],196:[function(require,module,exports){
|
|
19512
|
+
},{"./contexto-funcao-interface":194,"./tradutor-interface":196}],196:[function(require,module,exports){
|
|
19466
19513
|
"use strict";
|
|
19467
19514
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19468
19515
|
|
|
@@ -19476,6 +19523,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
19476
19523
|
|
|
19477
19524
|
},{}],199:[function(require,module,exports){
|
|
19478
19525
|
"use strict";
|
|
19526
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19527
|
+
|
|
19528
|
+
},{}],200:[function(require,module,exports){
|
|
19529
|
+
"use strict";
|
|
19479
19530
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19480
19531
|
if (k2 === undefined) k2 = k;
|
|
19481
19532
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -20089,7 +20140,7 @@ function obterAjudaFuncaoPadrao(funcaoPadrao) {
|
|
|
20089
20140
|
}
|
|
20090
20141
|
}
|
|
20091
20142
|
|
|
20092
|
-
},{"../bibliotecas/biblioteca-global":29,"../construtos":67,"./estruturas/delegua-funcao":
|
|
20143
|
+
},{"../bibliotecas/biblioteca-global":29,"../construtos":67,"./estruturas/delegua-funcao":206,"./estruturas/descritor-tipo-classe":207,"./estruturas/funcao-padrao":208,"./estruturas/objeto-delegua-classe":214}],201:[function(require,module,exports){
|
|
20093
20144
|
"use strict";
|
|
20094
20145
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20095
20146
|
exports.EspacoMemoria = void 0;
|
|
@@ -20114,7 +20165,7 @@ class EspacoMemoria {
|
|
|
20114
20165
|
}
|
|
20115
20166
|
exports.EspacoMemoria = EspacoMemoria;
|
|
20116
20167
|
|
|
20117
|
-
},{}],
|
|
20168
|
+
},{}],202:[function(require,module,exports){
|
|
20118
20169
|
"use strict";
|
|
20119
20170
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20120
20171
|
exports.Chamavel = void 0;
|
|
@@ -20131,7 +20182,7 @@ class Chamavel {
|
|
|
20131
20182
|
}
|
|
20132
20183
|
exports.Chamavel = Chamavel;
|
|
20133
20184
|
|
|
20134
|
-
},{}],
|
|
20185
|
+
},{}],203:[function(require,module,exports){
|
|
20135
20186
|
"use strict";
|
|
20136
20187
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20137
20188
|
exports.ClasseDeModulo = void 0;
|
|
@@ -20152,7 +20203,7 @@ class ClasseDeModulo extends chamavel_1.Chamavel {
|
|
|
20152
20203
|
}
|
|
20153
20204
|
exports.ClasseDeModulo = ClasseDeModulo;
|
|
20154
20205
|
|
|
20155
|
-
},{"./chamavel":
|
|
20206
|
+
},{"./chamavel":202}],204:[function(require,module,exports){
|
|
20156
20207
|
"use strict";
|
|
20157
20208
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20158
20209
|
exports.ClassePadrao = void 0;
|
|
@@ -20193,7 +20244,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
|
|
|
20193
20244
|
}
|
|
20194
20245
|
exports.ClassePadrao = ClassePadrao;
|
|
20195
20246
|
|
|
20196
|
-
},{"./chamavel":
|
|
20247
|
+
},{"./chamavel":202}],205:[function(require,module,exports){
|
|
20197
20248
|
"use strict";
|
|
20198
20249
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20199
20250
|
exports.DeleguaFuncaoNativa = void 0;
|
|
@@ -20236,7 +20287,7 @@ class DeleguaFuncaoNativa extends delegua_funcao_1.DeleguaFuncao {
|
|
|
20236
20287
|
}
|
|
20237
20288
|
exports.DeleguaFuncaoNativa = DeleguaFuncaoNativa;
|
|
20238
20289
|
|
|
20239
|
-
},{"./delegua-funcao":
|
|
20290
|
+
},{"./delegua-funcao":206}],206:[function(require,module,exports){
|
|
20240
20291
|
"use strict";
|
|
20241
20292
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20242
20293
|
exports.DeleguaFuncao = void 0;
|
|
@@ -20428,7 +20479,7 @@ function tipoDeDados(valor) {
|
|
|
20428
20479
|
}
|
|
20429
20480
|
}
|
|
20430
20481
|
|
|
20431
|
-
},{"../../declaracoes":116,"../../quebras":
|
|
20482
|
+
},{"../../declaracoes":116,"../../quebras":247,"../espaco-memoria":201,"./chamavel":202,"./objeto-delegua-classe":214}],207:[function(require,module,exports){
|
|
20432
20483
|
"use strict";
|
|
20433
20484
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20434
20485
|
exports.DescritorTipoClasse = void 0;
|
|
@@ -20743,7 +20794,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
|
|
|
20743
20794
|
}
|
|
20744
20795
|
exports.DescritorTipoClasse = DescritorTipoClasse;
|
|
20745
20796
|
|
|
20746
|
-
},{"../../excecoes":140,"./chamavel":
|
|
20797
|
+
},{"../../excecoes":140,"./chamavel":202,"./metodo-polimorfico":210,"./objeto-delegua-classe":214}],208:[function(require,module,exports){
|
|
20747
20798
|
"use strict";
|
|
20748
20799
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20749
20800
|
exports.FuncaoPadrao = void 0;
|
|
@@ -20782,7 +20833,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
|
|
|
20782
20833
|
}
|
|
20783
20834
|
exports.FuncaoPadrao = FuncaoPadrao;
|
|
20784
20835
|
|
|
20785
|
-
},{"./chamavel":
|
|
20836
|
+
},{"./chamavel":202}],209:[function(require,module,exports){
|
|
20786
20837
|
"use strict";
|
|
20787
20838
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
20788
20839
|
if (k2 === undefined) k2 = k;
|
|
@@ -20815,7 +20866,7 @@ __exportStar(require("./objeto-padrao"), exports);
|
|
|
20815
20866
|
__exportStar(require("./referencia-montao"), exports);
|
|
20816
20867
|
__exportStar(require("./super-proxy"), exports);
|
|
20817
20868
|
|
|
20818
|
-
},{"./chamavel":
|
|
20869
|
+
},{"./chamavel":202,"./classe-de-modulo":203,"./classe-padrao":204,"./delegua-funcao":206,"./delegua-funcao-nativa":205,"./descritor-tipo-classe":207,"./funcao-padrao":208,"./metodo-polimorfico":210,"./metodo-primitiva":211,"./modulo":212,"./objeto-base":213,"./objeto-delegua-classe":214,"./objeto-padrao":215,"./referencia-montao":216,"./super-proxy":217}],210:[function(require,module,exports){
|
|
20819
20870
|
"use strict";
|
|
20820
20871
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20821
20872
|
exports.MetodoPolimorfico = void 0;
|
|
@@ -20993,7 +21044,7 @@ class MetodoPolimorfico extends chamavel_1.Chamavel {
|
|
|
20993
21044
|
}
|
|
20994
21045
|
exports.MetodoPolimorfico = MetodoPolimorfico;
|
|
20995
21046
|
|
|
20996
|
-
},{"../../excecoes":140,"../../inferenciador":146,"./chamavel":
|
|
21047
|
+
},{"../../excecoes":140,"../../inferenciador":146,"./chamavel":202}],211:[function(require,module,exports){
|
|
20997
21048
|
"use strict";
|
|
20998
21049
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20999
21050
|
exports.MetodoPrimitiva = void 0;
|
|
@@ -21039,7 +21090,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
|
|
|
21039
21090
|
}
|
|
21040
21091
|
exports.MetodoPrimitiva = MetodoPrimitiva;
|
|
21041
21092
|
|
|
21042
|
-
},{"./chamavel":
|
|
21093
|
+
},{"./chamavel":202}],212:[function(require,module,exports){
|
|
21043
21094
|
"use strict";
|
|
21044
21095
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21045
21096
|
exports.DeleguaModulo = void 0;
|
|
@@ -21065,7 +21116,7 @@ class DeleguaModulo {
|
|
|
21065
21116
|
}
|
|
21066
21117
|
exports.DeleguaModulo = DeleguaModulo;
|
|
21067
21118
|
|
|
21068
|
-
},{}],
|
|
21119
|
+
},{}],213:[function(require,module,exports){
|
|
21069
21120
|
"use strict";
|
|
21070
21121
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21071
21122
|
exports.OBJETO_BASE = void 0;
|
|
@@ -21139,7 +21190,7 @@ function criarDescritorObjeto() {
|
|
|
21139
21190
|
}
|
|
21140
21191
|
exports.OBJETO_BASE = criarDescritorObjeto();
|
|
21141
21192
|
|
|
21142
|
-
},{"./delegua-funcao-nativa":
|
|
21193
|
+
},{"./delegua-funcao-nativa":205,"./descritor-tipo-classe":207}],214:[function(require,module,exports){
|
|
21143
21194
|
"use strict";
|
|
21144
21195
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21145
21196
|
exports.ObjetoDeleguaClasse = void 0;
|
|
@@ -21321,7 +21372,7 @@ class ObjetoDeleguaClasse {
|
|
|
21321
21372
|
}
|
|
21322
21373
|
exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
|
|
21323
21374
|
|
|
21324
|
-
},{"../../excecoes":140}],
|
|
21375
|
+
},{"../../excecoes":140}],215:[function(require,module,exports){
|
|
21325
21376
|
"use strict";
|
|
21326
21377
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21327
21378
|
exports.ObjetoPadrao = void 0;
|
|
@@ -21355,7 +21406,7 @@ class ObjetoPadrao {
|
|
|
21355
21406
|
}
|
|
21356
21407
|
exports.ObjetoPadrao = ObjetoPadrao;
|
|
21357
21408
|
|
|
21358
|
-
},{}],
|
|
21409
|
+
},{}],216:[function(require,module,exports){
|
|
21359
21410
|
"use strict";
|
|
21360
21411
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21361
21412
|
exports.ReferenciaMontao = void 0;
|
|
@@ -21380,7 +21431,7 @@ class ReferenciaMontao {
|
|
|
21380
21431
|
}
|
|
21381
21432
|
exports.ReferenciaMontao = ReferenciaMontao;
|
|
21382
21433
|
|
|
21383
|
-
},{}],
|
|
21434
|
+
},{}],217:[function(require,module,exports){
|
|
21384
21435
|
"use strict";
|
|
21385
21436
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21386
21437
|
exports.SuperProxy = void 0;
|
|
@@ -21419,7 +21470,7 @@ class SuperProxy extends chamavel_1.Chamavel {
|
|
|
21419
21470
|
}
|
|
21420
21471
|
exports.SuperProxy = SuperProxy;
|
|
21421
21472
|
|
|
21422
|
-
},{"./chamavel":
|
|
21473
|
+
},{"./chamavel":202}],218:[function(require,module,exports){
|
|
21423
21474
|
"use strict";
|
|
21424
21475
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
21425
21476
|
if (k2 === undefined) k2 = k;
|
|
@@ -21440,7 +21491,7 @@ __exportStar(require("./estruturas"), exports);
|
|
|
21440
21491
|
__exportStar(require("./interpretador"), exports);
|
|
21441
21492
|
__exportStar(require("./interpretador-base"), exports);
|
|
21442
21493
|
|
|
21443
|
-
},{"./estruturas":
|
|
21494
|
+
},{"./estruturas":209,"./interpretador":220,"./interpretador-base":219}],219:[function(require,module,exports){
|
|
21444
21495
|
"use strict";
|
|
21445
21496
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21446
21497
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21751,6 +21802,9 @@ class InterpretadorBase {
|
|
|
21751
21802
|
/* if (expressao === null || expressao === undefined) {
|
|
21752
21803
|
console.log('Aqui');
|
|
21753
21804
|
} */
|
|
21805
|
+
if (expressao.hashArquivo >= 0 && expressao.linha >= 0) {
|
|
21806
|
+
this.registrarExpressao?.(expressao.hashArquivo, expressao.linha);
|
|
21807
|
+
}
|
|
21754
21808
|
return await expressao.aceitar(this);
|
|
21755
21809
|
}
|
|
21756
21810
|
/**
|
|
@@ -22522,6 +22576,7 @@ class InterpretadorBase {
|
|
|
22522
22576
|
!this.eVerdadeiro(await this.avaliar(declaracao.condicao))) {
|
|
22523
22577
|
break;
|
|
22524
22578
|
}
|
|
22579
|
+
this.registrarRamo?.(declaracao.hashArquivo, declaracao.linha, 'iteracao');
|
|
22525
22580
|
try {
|
|
22526
22581
|
await this.cederControle(++iteracoes);
|
|
22527
22582
|
retornoExecucao = await this.executar(declaracao.corpo);
|
|
@@ -22570,6 +22625,7 @@ class InterpretadorBase {
|
|
|
22570
22625
|
let iteracoes = 0;
|
|
22571
22626
|
while (!(retornoExecucao && retornoExecucao.valorRetornado instanceof quebras_1.Quebra) &&
|
|
22572
22627
|
declaracao.posicaoAtual < valorVetorResolvido.length) {
|
|
22628
|
+
this.registrarRamo?.(declaracao.hashArquivo, declaracao.linha, 'iteracao');
|
|
22573
22629
|
try {
|
|
22574
22630
|
await this.cederControle(++iteracoes);
|
|
22575
22631
|
if (declaracao.variavelIteracao instanceof construtos_1.Variavel) {
|
|
@@ -22614,18 +22670,22 @@ class InterpretadorBase {
|
|
|
22614
22670
|
async visitarDeclaracaoSe(declaracao) {
|
|
22615
22671
|
const avaliacaoCondicaoSe = await this.avaliar(declaracao.condicao);
|
|
22616
22672
|
if (this.eVerdadeiro(avaliacaoCondicaoSe)) {
|
|
22673
|
+
this.registrarRamo?.(declaracao.hashArquivo, declaracao.linha, 'verdadeiro');
|
|
22617
22674
|
return await this.executar(declaracao.caminhoEntao);
|
|
22618
22675
|
}
|
|
22619
22676
|
const declaracaoCaminhosSeSenao = declaracao.caminhosSeSenao || [];
|
|
22620
22677
|
for (let i = 0; i < declaracaoCaminhosSeSenao.length; i++) {
|
|
22621
22678
|
const atual = declaracaoCaminhosSeSenao[i];
|
|
22622
22679
|
if (this.eVerdadeiro(await this.avaliar(atual.condicao))) {
|
|
22680
|
+
this.registrarRamo?.(declaracao.hashArquivo, declaracao.linha, 'verdadeiro');
|
|
22623
22681
|
return await this.executar(atual.caminho);
|
|
22624
22682
|
}
|
|
22625
22683
|
}
|
|
22626
22684
|
if (declaracao.caminhoSenao) {
|
|
22685
|
+
this.registrarRamo?.(declaracao.hashArquivo, declaracao.linha, 'senao');
|
|
22627
22686
|
return await this.executar(declaracao.caminhoSenao);
|
|
22628
22687
|
}
|
|
22688
|
+
this.registrarRamo?.(declaracao.hashArquivo, declaracao.linha, 'falso');
|
|
22629
22689
|
return null;
|
|
22630
22690
|
}
|
|
22631
22691
|
async visitarDeclaracaoEnquanto(declaracao) {
|
|
@@ -22633,6 +22693,7 @@ class InterpretadorBase {
|
|
|
22633
22693
|
let iteracoes = 0;
|
|
22634
22694
|
while (!(retornoExecucao && retornoExecucao.valorRetornado instanceof quebras_1.Quebra) &&
|
|
22635
22695
|
this.eVerdadeiro(await this.avaliar(declaracao.condicao))) {
|
|
22696
|
+
this.registrarRamo?.(declaracao.hashArquivo, declaracao.linha, 'iteracao');
|
|
22636
22697
|
try {
|
|
22637
22698
|
await this.cederControle(++iteracoes);
|
|
22638
22699
|
retornoExecucao = await this.executar(declaracao.corpo);
|
|
@@ -22682,6 +22743,7 @@ class InterpretadorBase {
|
|
|
22682
22743
|
}
|
|
22683
22744
|
}
|
|
22684
22745
|
if (caminhoPadrao !== null && !encontrado) {
|
|
22746
|
+
this.registrarRamo?.(declaracao.hashArquivo, declaracao.linha, 'caso-padrao');
|
|
22685
22747
|
await this.executarBloco(caminhoPadrao.declaracoes);
|
|
22686
22748
|
}
|
|
22687
22749
|
}
|
|
@@ -22698,6 +22760,7 @@ class InterpretadorBase {
|
|
|
22698
22760
|
let retornoExecucao = undefined;
|
|
22699
22761
|
let iteracoes = 0;
|
|
22700
22762
|
do {
|
|
22763
|
+
this.registrarRamo?.(declaracao.hashArquivo, declaracao.linha, 'iteracao');
|
|
22701
22764
|
try {
|
|
22702
22765
|
await this.cederControle(++iteracoes);
|
|
22703
22766
|
retornoExecucao = await this.executar(declaracao.caminhoFazer);
|
|
@@ -23655,7 +23718,7 @@ class InterpretadorBase {
|
|
|
23655
23718
|
}
|
|
23656
23719
|
exports.InterpretadorBase = InterpretadorBase;
|
|
23657
23720
|
|
|
23658
|
-
},{"../avaliador-sintatico":22,"../bibliotecas/primitivas-dicionario":31,"../bibliotecas/primitivas-vetor":34,"../construtos":67,"../excecoes":140,"../inferenciador":146,"../lexador":
|
|
23721
|
+
},{"../avaliador-sintatico":22,"../bibliotecas/primitivas-dicionario":31,"../bibliotecas/primitivas-vetor":34,"../construtos":67,"../excecoes":140,"../inferenciador":146,"../lexador":238,"../quebras":247,"../tipos-de-dados/delegua":248,"../tipos-de-dados/primitivos":250,"../tipos-de-simbolos/delegua":253,"./espaco-memoria":201,"./estruturas":209,"./estruturas/metodo-primitiva":211,"./pilha-escopos-execucao":222,"browser-process-hrtime":446}],220:[function(require,module,exports){
|
|
23659
23722
|
"use strict";
|
|
23660
23723
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
23661
23724
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -25178,7 +25241,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
25178
25241
|
}
|
|
25179
25242
|
exports.Interpretador = Interpretador;
|
|
25180
25243
|
|
|
25181
|
-
},{"../bibliotecas/dialetos/pitugues/primitivas-tupla":30,"../bibliotecas/primitivas-dicionario":31,"../bibliotecas/primitivas-numero":32,"../bibliotecas/primitivas-texto":33,"../bibliotecas/primitivas-vetor":34,"../bibliotecas/testes/modulo-testes":36,"../bibliotecas/testes/registro-testes":37,"../construtos":67,"../declaracoes":116,"../excecoes":140,"../inferenciador":146,"../quebras":
|
|
25244
|
+
},{"../bibliotecas/dialetos/pitugues/primitivas-tupla":30,"../bibliotecas/primitivas-dicionario":31,"../bibliotecas/primitivas-numero":32,"../bibliotecas/primitivas-texto":33,"../bibliotecas/primitivas-vetor":34,"../bibliotecas/testes/modulo-testes":36,"../bibliotecas/testes/registro-testes":37,"../construtos":67,"../declaracoes":116,"../excecoes":140,"../inferenciador":146,"../quebras":247,"../tipos-de-dados/delegua":248,"../tipos-de-dados/primitivos":250,"../tipos-de-simbolos/delegua":253,"./comum":200,"./estruturas":209,"./interpretador-base":219,"./montao":221}],221:[function(require,module,exports){
|
|
25182
25245
|
"use strict";
|
|
25183
25246
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25184
25247
|
exports.Montao = void 0;
|
|
@@ -25235,7 +25298,7 @@ class Montao {
|
|
|
25235
25298
|
}
|
|
25236
25299
|
exports.Montao = Montao;
|
|
25237
25300
|
|
|
25238
|
-
},{"../excecoes":140,"../geracao-identificadores":144}],
|
|
25301
|
+
},{"../excecoes":140,"../geracao-identificadores":144}],222:[function(require,module,exports){
|
|
25239
25302
|
"use strict";
|
|
25240
25303
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25241
25304
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -25566,7 +25629,7 @@ class PilhaEscoposExecucao {
|
|
|
25566
25629
|
}
|
|
25567
25630
|
exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
|
|
25568
25631
|
|
|
25569
|
-
},{"../excecoes":140,"../inferenciador":146,"../lexador":
|
|
25632
|
+
},{"../excecoes":140,"../inferenciador":146,"../lexador":238,"../tipos-de-dados/delegua":248,"./estruturas":209}],223:[function(require,module,exports){
|
|
25570
25633
|
"use strict";
|
|
25571
25634
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
25572
25635
|
if (k2 === undefined) k2 = k;
|
|
@@ -25591,7 +25654,7 @@ __exportStar(require("./lexador-portugol-ipt"), exports);
|
|
|
25591
25654
|
__exportStar(require("./lexador-prisma"), exports);
|
|
25592
25655
|
__exportStar(require("./lexador-tenda"), exports);
|
|
25593
25656
|
|
|
25594
|
-
},{"./lexador-calango":
|
|
25657
|
+
},{"./lexador-calango":224,"./lexador-egua-classico":225,"./lexador-guarani":226,"./lexador-pitugues":227,"./lexador-portugol-ipt":228,"./lexador-prisma":229,"./lexador-tenda":230}],224:[function(require,module,exports){
|
|
25595
25658
|
"use strict";
|
|
25596
25659
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25597
25660
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -25906,7 +25969,7 @@ class LexadorCalango {
|
|
|
25906
25969
|
}
|
|
25907
25970
|
exports.LexadorCalango = LexadorCalango;
|
|
25908
25971
|
|
|
25909
|
-
},{"../../tipos-de-simbolos/calango":
|
|
25972
|
+
},{"../../tipos-de-simbolos/calango":251,"../simbolo":246,"./palavras-reservadas/calango":231}],225:[function(require,module,exports){
|
|
25910
25973
|
"use strict";
|
|
25911
25974
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25912
25975
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26199,7 +26262,7 @@ class LexadorEguaClassico {
|
|
|
26199
26262
|
}
|
|
26200
26263
|
exports.LexadorEguaClassico = LexadorEguaClassico;
|
|
26201
26264
|
|
|
26202
|
-
},{"../../tipos-de-simbolos/egua-classico":
|
|
26265
|
+
},{"../../tipos-de-simbolos/egua-classico":254,"../simbolo":246,"./palavras-reservadas/egua-classico":232}],226:[function(require,module,exports){
|
|
26203
26266
|
"use strict";
|
|
26204
26267
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26205
26268
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26318,7 +26381,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
|
|
|
26318
26381
|
}
|
|
26319
26382
|
exports.LexadorGuarani = LexadorGuarani;
|
|
26320
26383
|
|
|
26321
|
-
},{"../../tipos-de-simbolos/guarani":
|
|
26384
|
+
},{"../../tipos-de-simbolos/guarani":255,"../lexador-base":240,"./palavras-reservadas/guarani":233}],227:[function(require,module,exports){
|
|
26322
26385
|
"use strict";
|
|
26323
26386
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26324
26387
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26861,7 +26924,7 @@ class LexadorPitugues {
|
|
|
26861
26924
|
}
|
|
26862
26925
|
exports.LexadorPitugues = LexadorPitugues;
|
|
26863
26926
|
|
|
26864
|
-
},{"../../tipos-de-simbolos/pitugues":
|
|
26927
|
+
},{"../../tipos-de-simbolos/pitugues":257,"../simbolo":246,"./palavras-reservadas/pitugues":234,"browser-process-hrtime":446}],228:[function(require,module,exports){
|
|
26865
26928
|
"use strict";
|
|
26866
26929
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26867
26930
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27170,7 +27233,7 @@ class LexadorPortugolIpt {
|
|
|
27170
27233
|
}
|
|
27171
27234
|
exports.LexadorPortugolIpt = LexadorPortugolIpt;
|
|
27172
27235
|
|
|
27173
|
-
},{"../../tipos-de-simbolos/portugol-ipt":
|
|
27236
|
+
},{"../../tipos-de-simbolos/portugol-ipt":258,"../simbolo":246,"./palavras-reservadas/portugol-ipt":235}],229:[function(require,module,exports){
|
|
27174
27237
|
"use strict";
|
|
27175
27238
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27176
27239
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27571,7 +27634,7 @@ class LexadorPrisma {
|
|
|
27571
27634
|
}
|
|
27572
27635
|
exports.LexadorPrisma = LexadorPrisma;
|
|
27573
27636
|
|
|
27574
|
-
},{"../../tipos-de-simbolos/prisma":
|
|
27637
|
+
},{"../../tipos-de-simbolos/prisma":259,"../simbolo":246,"./palavras-reservadas/prisma":236,"browser-process-hrtime":446}],230:[function(require,module,exports){
|
|
27575
27638
|
"use strict";
|
|
27576
27639
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27577
27640
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27965,7 +28028,7 @@ class LexadorTenda {
|
|
|
27965
28028
|
}
|
|
27966
28029
|
exports.LexadorTenda = LexadorTenda;
|
|
27967
28030
|
|
|
27968
|
-
},{"../../tipos-de-simbolos/tenda":
|
|
28031
|
+
},{"../../tipos-de-simbolos/tenda":260,"../simbolo":246,"./palavras-reservadas/tenda":237,"browser-process-hrtime":446}],231:[function(require,module,exports){
|
|
27969
28032
|
"use strict";
|
|
27970
28033
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27971
28034
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28013,7 +28076,7 @@ exports.default = {
|
|
|
28013
28076
|
verdadeiro: calango_1.default.VERDADEIRO,
|
|
28014
28077
|
};
|
|
28015
28078
|
|
|
28016
|
-
},{"../../../tipos-de-simbolos/calango":
|
|
28079
|
+
},{"../../../tipos-de-simbolos/calango":251}],232:[function(require,module,exports){
|
|
28017
28080
|
"use strict";
|
|
28018
28081
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28019
28082
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28054,7 +28117,7 @@ exports.palavrasReservadas = {
|
|
|
28054
28117
|
verdadeiro: egua_classico_1.default.VERDADEIRO,
|
|
28055
28118
|
};
|
|
28056
28119
|
|
|
28057
|
-
},{"../../../tipos-de-simbolos/egua-classico":
|
|
28120
|
+
},{"../../../tipos-de-simbolos/egua-classico":254}],233:[function(require,module,exports){
|
|
28058
28121
|
"use strict";
|
|
28059
28122
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28060
28123
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28066,7 +28129,7 @@ exports.palavrasReservadas = {
|
|
|
28066
28129
|
hai: guarani_1.default.HAI,
|
|
28067
28130
|
};
|
|
28068
28131
|
|
|
28069
|
-
},{"../../../tipos-de-simbolos/guarani":
|
|
28132
|
+
},{"../../../tipos-de-simbolos/guarani":255}],234:[function(require,module,exports){
|
|
28070
28133
|
"use strict";
|
|
28071
28134
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28072
28135
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28128,7 +28191,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
28128
28191
|
verdadeiro: pitugues_1.default.VERDADEIRO,
|
|
28129
28192
|
};
|
|
28130
28193
|
|
|
28131
|
-
},{"../../../tipos-de-simbolos/pitugues":
|
|
28194
|
+
},{"../../../tipos-de-simbolos/pitugues":257}],235:[function(require,module,exports){
|
|
28132
28195
|
"use strict";
|
|
28133
28196
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28134
28197
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28188,7 +28251,7 @@ exports.palavrasReservadas = {
|
|
|
28188
28251
|
não: portugol_ipt_1.default.NAO,
|
|
28189
28252
|
};
|
|
28190
28253
|
|
|
28191
|
-
},{"../../../tipos-de-simbolos/portugol-ipt":
|
|
28254
|
+
},{"../../../tipos-de-simbolos/portugol-ipt":258}],236:[function(require,module,exports){
|
|
28192
28255
|
"use strict";
|
|
28193
28256
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28194
28257
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28239,7 +28302,7 @@ exports.palavrasReservadas = {
|
|
|
28239
28302
|
verdadeiro: prisma_1.default.VERDADEIRO,
|
|
28240
28303
|
};
|
|
28241
28304
|
|
|
28242
|
-
},{"../../../tipos-de-simbolos/prisma":
|
|
28305
|
+
},{"../../../tipos-de-simbolos/prisma":259}],237:[function(require,module,exports){
|
|
28243
28306
|
"use strict";
|
|
28244
28307
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28245
28308
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28297,7 +28360,7 @@ exports.palavrasReservadas = {
|
|
|
28297
28360
|
Texto: tenda_1.default.BIBLIOTECA_GLOBAL,
|
|
28298
28361
|
};
|
|
28299
28362
|
|
|
28300
|
-
},{"../../../tipos-de-simbolos/tenda":
|
|
28363
|
+
},{"../../../tipos-de-simbolos/tenda":260}],238:[function(require,module,exports){
|
|
28301
28364
|
"use strict";
|
|
28302
28365
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
28303
28366
|
if (k2 === undefined) k2 = k;
|
|
@@ -28320,7 +28383,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
|
|
|
28320
28383
|
__exportStar(require("./micro-lexador"), exports);
|
|
28321
28384
|
__exportStar(require("./simbolo"), exports);
|
|
28322
28385
|
|
|
28323
|
-
},{"./dialetos":
|
|
28386
|
+
},{"./dialetos":223,"./lexador":241,"./lexador-base-linha-unica":239,"./micro-lexador":244,"./simbolo":246}],239:[function(require,module,exports){
|
|
28324
28387
|
"use strict";
|
|
28325
28388
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28326
28389
|
exports.LexadorBaseLinhaUnica = void 0;
|
|
@@ -28409,7 +28472,7 @@ class LexadorBaseLinhaUnica {
|
|
|
28409
28472
|
}
|
|
28410
28473
|
exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
|
|
28411
28474
|
|
|
28412
|
-
},{"./simbolo":
|
|
28475
|
+
},{"./simbolo":246}],240:[function(require,module,exports){
|
|
28413
28476
|
"use strict";
|
|
28414
28477
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28415
28478
|
exports.LexadorBase = void 0;
|
|
@@ -28548,7 +28611,7 @@ class LexadorBase {
|
|
|
28548
28611
|
}
|
|
28549
28612
|
exports.LexadorBase = LexadorBase;
|
|
28550
28613
|
|
|
28551
|
-
},{"./simbolo":
|
|
28614
|
+
},{"./simbolo":246}],241:[function(require,module,exports){
|
|
28552
28615
|
"use strict";
|
|
28553
28616
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28554
28617
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29222,7 +29285,7 @@ class Lexador {
|
|
|
29222
29285
|
}
|
|
29223
29286
|
exports.Lexador = Lexador;
|
|
29224
29287
|
|
|
29225
|
-
},{"../tipos-de-simbolos/delegua":
|
|
29288
|
+
},{"../tipos-de-simbolos/delegua":253,"./palavras-reservadas":245,"./simbolo":246,"browser-process-hrtime":446}],242:[function(require,module,exports){
|
|
29226
29289
|
"use strict";
|
|
29227
29290
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29228
29291
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29405,7 +29468,7 @@ function pertenceAoParadigma(lexema, paradigma) {
|
|
|
29405
29468
|
return paradigmaLexema === paradigma;
|
|
29406
29469
|
}
|
|
29407
29470
|
|
|
29408
|
-
},{"../tipos-de-simbolos/delegua":
|
|
29471
|
+
},{"../tipos-de-simbolos/delegua":253}],243:[function(require,module,exports){
|
|
29409
29472
|
"use strict";
|
|
29410
29473
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29411
29474
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29625,7 +29688,7 @@ class MicroLexadorPitugues {
|
|
|
29625
29688
|
}
|
|
29626
29689
|
exports.MicroLexadorPitugues = MicroLexadorPitugues;
|
|
29627
29690
|
|
|
29628
|
-
},{"../tipos-de-simbolos/pitugues":
|
|
29691
|
+
},{"../tipos-de-simbolos/pitugues":257,"./palavras-reservadas":245,"./simbolo":246}],244:[function(require,module,exports){
|
|
29629
29692
|
"use strict";
|
|
29630
29693
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29631
29694
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29863,7 +29926,7 @@ class MicroLexador {
|
|
|
29863
29926
|
}
|
|
29864
29927
|
exports.MicroLexador = MicroLexador;
|
|
29865
29928
|
|
|
29866
|
-
},{"../tipos-de-simbolos/microgramaticas/delegua":
|
|
29929
|
+
},{"../tipos-de-simbolos/microgramaticas/delegua":256,"./palavras-reservadas":245,"./simbolo":246}],245:[function(require,module,exports){
|
|
29867
29930
|
"use strict";
|
|
29868
29931
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29869
29932
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29964,7 +30027,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
29964
30027
|
verdadeiro: delegua_1.default.VERDADEIRO,
|
|
29965
30028
|
};
|
|
29966
30029
|
|
|
29967
|
-
},{"../tipos-de-simbolos/delegua":
|
|
30030
|
+
},{"../tipos-de-simbolos/delegua":253}],246:[function(require,module,exports){
|
|
29968
30031
|
"use strict";
|
|
29969
30032
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29970
30033
|
exports.Simbolo = void 0;
|
|
@@ -29985,7 +30048,7 @@ class Simbolo {
|
|
|
29985
30048
|
}
|
|
29986
30049
|
exports.Simbolo = Simbolo;
|
|
29987
30050
|
|
|
29988
|
-
},{}],
|
|
30051
|
+
},{}],247:[function(require,module,exports){
|
|
29989
30052
|
"use strict";
|
|
29990
30053
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29991
30054
|
exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
|
|
@@ -30010,7 +30073,7 @@ class ContinuarQuebra extends Quebra {
|
|
|
30010
30073
|
}
|
|
30011
30074
|
exports.ContinuarQuebra = ContinuarQuebra;
|
|
30012
30075
|
|
|
30013
|
-
},{}],
|
|
30076
|
+
},{}],248:[function(require,module,exports){
|
|
30014
30077
|
"use strict";
|
|
30015
30078
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30016
30079
|
exports.default = {
|
|
@@ -30044,7 +30107,7 @@ exports.default = {
|
|
|
30044
30107
|
VETOR_TEXTO: 'texto[]',
|
|
30045
30108
|
};
|
|
30046
30109
|
|
|
30047
|
-
},{}],
|
|
30110
|
+
},{}],249:[function(require,module,exports){
|
|
30048
30111
|
"use strict";
|
|
30049
30112
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30050
30113
|
exports.default = {
|
|
@@ -30074,7 +30137,7 @@ exports.default = {
|
|
|
30074
30137
|
VETOR_TEXTO: 'texto[]',
|
|
30075
30138
|
};
|
|
30076
30139
|
|
|
30077
|
-
},{}],
|
|
30140
|
+
},{}],250:[function(require,module,exports){
|
|
30078
30141
|
"use strict";
|
|
30079
30142
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30080
30143
|
exports.default = {
|
|
@@ -30093,7 +30156,7 @@ exports.default = {
|
|
|
30093
30156
|
TEXTO: 'string',
|
|
30094
30157
|
};
|
|
30095
30158
|
|
|
30096
|
-
},{}],
|
|
30159
|
+
},{}],251:[function(require,module,exports){
|
|
30097
30160
|
"use strict";
|
|
30098
30161
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30099
30162
|
exports.default = {
|
|
@@ -30165,7 +30228,7 @@ exports.default = {
|
|
|
30165
30228
|
VIRGULA: 'VIRGULA',
|
|
30166
30229
|
};
|
|
30167
30230
|
|
|
30168
|
-
},{}],
|
|
30231
|
+
},{}],252:[function(require,module,exports){
|
|
30169
30232
|
"use strict";
|
|
30170
30233
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30171
30234
|
exports.default = {
|
|
@@ -30192,7 +30255,7 @@ exports.default = {
|
|
|
30192
30255
|
VIRGULA: 'VIRGULA',
|
|
30193
30256
|
};
|
|
30194
30257
|
|
|
30195
|
-
},{}],
|
|
30258
|
+
},{}],253:[function(require,module,exports){
|
|
30196
30259
|
"use strict";
|
|
30197
30260
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30198
30261
|
exports.default = {
|
|
@@ -30308,7 +30371,7 @@ exports.default = {
|
|
|
30308
30371
|
VIRGULA: 'VIRGULA',
|
|
30309
30372
|
};
|
|
30310
30373
|
|
|
30311
|
-
},{}],
|
|
30374
|
+
},{}],254:[function(require,module,exports){
|
|
30312
30375
|
"use strict";
|
|
30313
30376
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30314
30377
|
exports.default = {
|
|
@@ -30386,7 +30449,7 @@ exports.default = {
|
|
|
30386
30449
|
VIRGULA: 'VIRGULA',
|
|
30387
30450
|
};
|
|
30388
30451
|
|
|
30389
|
-
},{}],
|
|
30452
|
+
},{}],255:[function(require,module,exports){
|
|
30390
30453
|
"use strict";
|
|
30391
30454
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30392
30455
|
exports.default = {
|
|
@@ -30403,7 +30466,7 @@ exports.default = {
|
|
|
30403
30466
|
VIRGULA: 'VIRGULA',
|
|
30404
30467
|
};
|
|
30405
30468
|
|
|
30406
|
-
},{}],
|
|
30469
|
+
},{}],256:[function(require,module,exports){
|
|
30407
30470
|
"use strict";
|
|
30408
30471
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30409
30472
|
exports.default = {
|
|
@@ -30456,7 +30519,7 @@ exports.default = {
|
|
|
30456
30519
|
VIRGULA: 'VIRGULA',
|
|
30457
30520
|
};
|
|
30458
30521
|
|
|
30459
|
-
},{}],
|
|
30522
|
+
},{}],257:[function(require,module,exports){
|
|
30460
30523
|
"use strict";
|
|
30461
30524
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30462
30525
|
exports.default = {
|
|
@@ -30551,7 +30614,7 @@ exports.default = {
|
|
|
30551
30614
|
VIRGULA: 'VIRGULA',
|
|
30552
30615
|
};
|
|
30553
30616
|
|
|
30554
|
-
},{}],
|
|
30617
|
+
},{}],258:[function(require,module,exports){
|
|
30555
30618
|
"use strict";
|
|
30556
30619
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30557
30620
|
exports.default = {
|
|
@@ -30630,7 +30693,7 @@ exports.default = {
|
|
|
30630
30693
|
VARIAVEL: 'VARIAVEL',
|
|
30631
30694
|
};
|
|
30632
30695
|
|
|
30633
|
-
},{}],
|
|
30696
|
+
},{}],259:[function(require,module,exports){
|
|
30634
30697
|
"use strict";
|
|
30635
30698
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30636
30699
|
exports.default = {
|
|
@@ -30714,7 +30777,7 @@ exports.default = {
|
|
|
30714
30777
|
VIRGULA: 'VIRGULA',
|
|
30715
30778
|
};
|
|
30716
30779
|
|
|
30717
|
-
},{}],
|
|
30780
|
+
},{}],260:[function(require,module,exports){
|
|
30718
30781
|
"use strict";
|
|
30719
30782
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30720
30783
|
// Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
|
|
@@ -30809,7 +30872,7 @@ exports.default = {
|
|
|
30809
30872
|
VIRGULA: 'VIRGULA',
|
|
30810
30873
|
};
|
|
30811
30874
|
|
|
30812
|
-
},{}],
|
|
30875
|
+
},{}],261:[function(require,module,exports){
|
|
30813
30876
|
"use strict";
|
|
30814
30877
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
30815
30878
|
if (k2 === undefined) k2 = k;
|
|
@@ -30842,7 +30905,7 @@ __exportStar(require("./tradutor-reverso-python"), exports);
|
|
|
30842
30905
|
__exportStar(require("./tradutor-reverso-tenda"), exports);
|
|
30843
30906
|
__exportStar(require("./tradutor-ruby"), exports);
|
|
30844
30907
|
|
|
30845
|
-
},{"./tradutor-assembly-arm":
|
|
30908
|
+
},{"./tradutor-assembly-arm":270,"./tradutor-assembly-risc-v":271,"./tradutor-assembly-x64":272,"./tradutor-assemblyscript":273,"./tradutor-elixir":274,"./tradutor-javascript":275,"./tradutor-mermaidjs":276,"./tradutor-portugol-ipt":277,"./tradutor-python":278,"./tradutor-reverso-calango":279,"./tradutor-reverso-javascript":280,"./tradutor-reverso-python":281,"./tradutor-reverso-tenda":282,"./tradutor-ruby":283,"./tradutor-webassembly":284}],262:[function(require,module,exports){
|
|
30846
30909
|
"use strict";
|
|
30847
30910
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30848
30911
|
exports.ArestaFluxograma = void 0;
|
|
@@ -30854,7 +30917,7 @@ class ArestaFluxograma {
|
|
|
30854
30917
|
}
|
|
30855
30918
|
exports.ArestaFluxograma = ArestaFluxograma;
|
|
30856
30919
|
|
|
30857
|
-
},{}],
|
|
30920
|
+
},{}],263:[function(require,module,exports){
|
|
30858
30921
|
"use strict";
|
|
30859
30922
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
30860
30923
|
if (k2 === undefined) k2 = k;
|
|
@@ -30877,7 +30940,7 @@ __exportStar(require("./subgrafo-funcao"), exports);
|
|
|
30877
30940
|
__exportStar(require("./subgrafo-metodo"), exports);
|
|
30878
30941
|
__exportStar(require("./vertice-fluxograma"), exports);
|
|
30879
30942
|
|
|
30880
|
-
},{"./aresta-fluxograma":
|
|
30943
|
+
},{"./aresta-fluxograma":262,"./subgrafo-classe":264,"./subgrafo-funcao":265,"./subgrafo-metodo":266,"./vertice-fluxograma":267}],264:[function(require,module,exports){
|
|
30881
30944
|
"use strict";
|
|
30882
30945
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30883
30946
|
exports.SubgrafoClasse = void 0;
|
|
@@ -30923,7 +30986,7 @@ class SubgrafoClasse {
|
|
|
30923
30986
|
}
|
|
30924
30987
|
exports.SubgrafoClasse = SubgrafoClasse;
|
|
30925
30988
|
|
|
30926
|
-
},{}],
|
|
30989
|
+
},{}],265:[function(require,module,exports){
|
|
30927
30990
|
"use strict";
|
|
30928
30991
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30929
30992
|
exports.SubgrafoFuncao = void 0;
|
|
@@ -30938,7 +31001,7 @@ class SubgrafoFuncao {
|
|
|
30938
31001
|
}
|
|
30939
31002
|
exports.SubgrafoFuncao = SubgrafoFuncao;
|
|
30940
31003
|
|
|
30941
|
-
},{}],
|
|
31004
|
+
},{}],266:[function(require,module,exports){
|
|
30942
31005
|
"use strict";
|
|
30943
31006
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30944
31007
|
exports.SubgrafoMetodo = void 0;
|
|
@@ -30955,7 +31018,7 @@ class SubgrafoMetodo {
|
|
|
30955
31018
|
}
|
|
30956
31019
|
exports.SubgrafoMetodo = SubgrafoMetodo;
|
|
30957
31020
|
|
|
30958
|
-
},{}],
|
|
31021
|
+
},{}],267:[function(require,module,exports){
|
|
30959
31022
|
"use strict";
|
|
30960
31023
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30961
31024
|
exports.VerticeFluxograma = void 0;
|
|
@@ -30972,7 +31035,7 @@ class VerticeFluxograma {
|
|
|
30972
31035
|
}
|
|
30973
31036
|
exports.VerticeFluxograma = VerticeFluxograma;
|
|
30974
31037
|
|
|
30975
|
-
},{}],
|
|
31038
|
+
},{}],268:[function(require,module,exports){
|
|
30976
31039
|
"use strict";
|
|
30977
31040
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
30978
31041
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -32212,7 +32275,7 @@ __decorate([
|
|
|
32212
32275
|
Decorators_1.Override
|
|
32213
32276
|
], Python3Lexer.prototype, "nextToken", null);
|
|
32214
32277
|
|
|
32215
|
-
},{"./python3-parser":
|
|
32278
|
+
},{"./python3-parser":269,"antlr4ts/CommonToken":294,"antlr4ts/Decorators":298,"antlr4ts/Lexer":306,"antlr4ts/Token":323,"antlr4ts/VocabularyImpl":329,"antlr4ts/atn/ATNDeserializer":335,"antlr4ts/atn/LexerATNSimulator":356,"antlr4ts/misc/Utils":417}],269:[function(require,module,exports){
|
|
32216
32279
|
"use strict";
|
|
32217
32280
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
32218
32281
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -43459,7 +43522,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
43459
43522
|
}
|
|
43460
43523
|
exports.Yield_argContext = Yield_argContext;
|
|
43461
43524
|
|
|
43462
|
-
},{"antlr4ts/FailedPredicateException":
|
|
43525
|
+
},{"antlr4ts/FailedPredicateException":302,"antlr4ts/NoViableAltException":310,"antlr4ts/Parser":311,"antlr4ts/ParserRuleContext":314,"antlr4ts/RecognitionException":317,"antlr4ts/Token":323,"antlr4ts/VocabularyImpl":329,"antlr4ts/atn/ATN":331,"antlr4ts/atn/ATNDeserializer":335,"antlr4ts/atn/ParserATNSimulator":372,"antlr4ts/misc/Utils":417}],270:[function(require,module,exports){
|
|
43463
43526
|
"use strict";
|
|
43464
43527
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
43465
43528
|
exports.TradutorAssemblyARM = void 0;
|
|
@@ -44171,7 +44234,7 @@ ${labelFim}:`;
|
|
|
44171
44234
|
}
|
|
44172
44235
|
exports.TradutorAssemblyARM = TradutorAssemblyARM;
|
|
44173
44236
|
|
|
44174
|
-
},{"../construtos":67,"../declaracoes":116}],
|
|
44237
|
+
},{"../construtos":67,"../declaracoes":116}],271:[function(require,module,exports){
|
|
44175
44238
|
"use strict";
|
|
44176
44239
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44177
44240
|
exports.TradutorAssemblyRISCV = void 0;
|
|
@@ -44860,7 +44923,7 @@ ${labelSenao}:`;
|
|
|
44860
44923
|
}
|
|
44861
44924
|
exports.TradutorAssemblyRISCV = TradutorAssemblyRISCV;
|
|
44862
44925
|
|
|
44863
|
-
},{"../construtos":67,"../declaracoes":116}],
|
|
44926
|
+
},{"../construtos":67,"../declaracoes":116}],272:[function(require,module,exports){
|
|
44864
44927
|
"use strict";
|
|
44865
44928
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44866
44929
|
exports.TradutorAssemblyX64 = void 0;
|
|
@@ -45635,7 +45698,7 @@ __delegua_print_int:
|
|
|
45635
45698
|
}
|
|
45636
45699
|
exports.TradutorAssemblyX64 = TradutorAssemblyX64;
|
|
45637
45700
|
|
|
45638
|
-
},{"../construtos":67,"../declaracoes":116}],
|
|
45701
|
+
},{"../construtos":67,"../declaracoes":116}],273:[function(require,module,exports){
|
|
45639
45702
|
"use strict";
|
|
45640
45703
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
45641
45704
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -46850,7 +46913,7 @@ class TradutorAssemblyScript {
|
|
|
46850
46913
|
}
|
|
46851
46914
|
exports.TradutorAssemblyScript = TradutorAssemblyScript;
|
|
46852
46915
|
|
|
46853
|
-
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/delegua":
|
|
46916
|
+
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/delegua":253}],274:[function(require,module,exports){
|
|
46854
46917
|
"use strict";
|
|
46855
46918
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
46856
46919
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -47811,7 +47874,7 @@ class TradutorElixir {
|
|
|
47811
47874
|
}
|
|
47812
47875
|
exports.TradutorElixir = TradutorElixir;
|
|
47813
47876
|
|
|
47814
|
-
},{"../tipos-de-simbolos/delegua":
|
|
47877
|
+
},{"../tipos-de-simbolos/delegua":253}],275:[function(require,module,exports){
|
|
47815
47878
|
"use strict";
|
|
47816
47879
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
47817
47880
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -48603,7 +48666,7 @@ class TradutorJavaScript {
|
|
|
48603
48666
|
}
|
|
48604
48667
|
exports.TradutorJavaScript = TradutorJavaScript;
|
|
48605
48668
|
|
|
48606
|
-
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/delegua":
|
|
48669
|
+
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/delegua":253}],276:[function(require,module,exports){
|
|
48607
48670
|
"use strict";
|
|
48608
48671
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
48609
48672
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -49432,7 +49495,7 @@ class TradutorMermaidJs {
|
|
|
49432
49495
|
}
|
|
49433
49496
|
exports.TradutorMermaidJs = TradutorMermaidJs;
|
|
49434
49497
|
|
|
49435
|
-
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/delegua":
|
|
49498
|
+
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/delegua":253,"./mermaid":263}],277:[function(require,module,exports){
|
|
49436
49499
|
"use strict";
|
|
49437
49500
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
49438
49501
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -49814,7 +49877,7 @@ class TradutorPortugolIpt {
|
|
|
49814
49877
|
}
|
|
49815
49878
|
exports.TradutorPortugolIpt = TradutorPortugolIpt;
|
|
49816
49879
|
|
|
49817
|
-
},{"../avaliador-sintatico/dialetos":18,"../construtos":67,"../declaracoes":116,"../lexador/dialetos":
|
|
49880
|
+
},{"../avaliador-sintatico/dialetos":18,"../construtos":67,"../declaracoes":116,"../lexador/dialetos":223,"../tipos-de-simbolos/portugol-ipt":258}],278:[function(require,module,exports){
|
|
49818
49881
|
"use strict";
|
|
49819
49882
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
49820
49883
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -50499,7 +50562,7 @@ class TradutorPython {
|
|
|
50499
50562
|
}
|
|
50500
50563
|
exports.TradutorPython = TradutorPython;
|
|
50501
50564
|
|
|
50502
|
-
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/delegua":
|
|
50565
|
+
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/delegua":253}],279:[function(require,module,exports){
|
|
50503
50566
|
"use strict";
|
|
50504
50567
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
50505
50568
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -50853,7 +50916,7 @@ class TradutorReversoCalango {
|
|
|
50853
50916
|
}
|
|
50854
50917
|
exports.TradutorReversoCalango = TradutorReversoCalango;
|
|
50855
50918
|
|
|
50856
|
-
},{"../tipos-de-simbolos/calango":
|
|
50919
|
+
},{"../tipos-de-simbolos/calango":251}],280:[function(require,module,exports){
|
|
50857
50920
|
"use strict";
|
|
50858
50921
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50859
50922
|
exports.TradutorReversoJavaScript = void 0;
|
|
@@ -51248,7 +51311,7 @@ class TradutorReversoJavaScript {
|
|
|
51248
51311
|
}
|
|
51249
51312
|
exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
|
|
51250
51313
|
|
|
51251
|
-
},{}],
|
|
51314
|
+
},{}],281:[function(require,module,exports){
|
|
51252
51315
|
"use strict";
|
|
51253
51316
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51254
51317
|
exports.TradutorReversoPython = void 0;
|
|
@@ -51901,7 +51964,7 @@ class TradutorReversoPython extends AbstractParseTreeVisitor_1.AbstractParseTree
|
|
|
51901
51964
|
}
|
|
51902
51965
|
exports.TradutorReversoPython = TradutorReversoPython;
|
|
51903
51966
|
|
|
51904
|
-
},{"./python/python3-lexer":
|
|
51967
|
+
},{"./python/python3-lexer":268,"./python/python3-parser":269,"antlr4ts":400,"antlr4ts/tree/AbstractParseTreeVisitor":418}],282:[function(require,module,exports){
|
|
51905
51968
|
"use strict";
|
|
51906
51969
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
51907
51970
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -52492,7 +52555,7 @@ class TradutorReversoTenda {
|
|
|
52492
52555
|
}
|
|
52493
52556
|
exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
52494
52557
|
|
|
52495
|
-
},{"../construtos":67,"../tipos-de-simbolos/tenda":
|
|
52558
|
+
},{"../construtos":67,"../tipos-de-simbolos/tenda":260}],283:[function(require,module,exports){
|
|
52496
52559
|
"use strict";
|
|
52497
52560
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
52498
52561
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -53179,7 +53242,7 @@ class TradutorRuby {
|
|
|
53179
53242
|
}
|
|
53180
53243
|
exports.TradutorRuby = TradutorRuby;
|
|
53181
53244
|
|
|
53182
|
-
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/delegua":
|
|
53245
|
+
},{"../construtos":67,"../declaracoes":116,"../tipos-de-simbolos/delegua":253}],284:[function(require,module,exports){
|
|
53183
53246
|
"use strict";
|
|
53184
53247
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53185
53248
|
exports.TradutorWebAssembly = void 0;
|
|
@@ -54066,7 +54129,7 @@ process.exit(codigoSaida);
|
|
|
54066
54129
|
}
|
|
54067
54130
|
exports.TradutorWebAssembly = TradutorWebAssembly;
|
|
54068
54131
|
|
|
54069
|
-
},{"../construtos":67,"../declaracoes":116}],
|
|
54132
|
+
},{"../construtos":67,"../declaracoes":116}],285:[function(require,module,exports){
|
|
54070
54133
|
"use strict";
|
|
54071
54134
|
/*!
|
|
54072
54135
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54074,7 +54137,7 @@ exports.TradutorWebAssembly = TradutorWebAssembly;
|
|
|
54074
54137
|
*/
|
|
54075
54138
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54076
54139
|
|
|
54077
|
-
},{}],
|
|
54140
|
+
},{}],286:[function(require,module,exports){
|
|
54078
54141
|
"use strict";
|
|
54079
54142
|
/*!
|
|
54080
54143
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54082,7 +54145,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
54082
54145
|
*/
|
|
54083
54146
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54084
54147
|
|
|
54085
|
-
},{}],
|
|
54148
|
+
},{}],287:[function(require,module,exports){
|
|
54086
54149
|
"use strict";
|
|
54087
54150
|
/*!
|
|
54088
54151
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54244,7 +54307,7 @@ __decorate([
|
|
|
54244
54307
|
], ANTLRInputStream.prototype, "toString", null);
|
|
54245
54308
|
exports.ANTLRInputStream = ANTLRInputStream;
|
|
54246
54309
|
|
|
54247
|
-
},{"./Decorators":
|
|
54310
|
+
},{"./Decorators":298,"./IntStream":304,"assert":441}],288:[function(require,module,exports){
|
|
54248
54311
|
"use strict";
|
|
54249
54312
|
/*!
|
|
54250
54313
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54327,7 +54390,7 @@ __decorate([
|
|
|
54327
54390
|
], BailErrorStrategy.prototype, "sync", null);
|
|
54328
54391
|
exports.BailErrorStrategy = BailErrorStrategy;
|
|
54329
54392
|
|
|
54330
|
-
},{"./Decorators":
|
|
54393
|
+
},{"./Decorators":298,"./DefaultErrorStrategy":299,"./InputMismatchException":303,"./misc/ParseCancellationException":415}],289:[function(require,module,exports){
|
|
54331
54394
|
"use strict";
|
|
54332
54395
|
/*!
|
|
54333
54396
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54817,7 +54880,7 @@ BufferedTokenStream = __decorate([
|
|
|
54817
54880
|
], BufferedTokenStream);
|
|
54818
54881
|
exports.BufferedTokenStream = BufferedTokenStream;
|
|
54819
54882
|
|
|
54820
|
-
},{"./CommonToken":
|
|
54883
|
+
},{"./CommonToken":294,"./Decorators":298,"./Lexer":306,"./Token":323,"./misc/Interval":410,"assert":441}],290:[function(require,module,exports){
|
|
54821
54884
|
"use strict";
|
|
54822
54885
|
/*!
|
|
54823
54886
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54825,7 +54888,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
|
|
|
54825
54888
|
*/
|
|
54826
54889
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54827
54890
|
|
|
54828
|
-
},{}],
|
|
54891
|
+
},{}],291:[function(require,module,exports){
|
|
54829
54892
|
"use strict";
|
|
54830
54893
|
/*!
|
|
54831
54894
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54959,7 +55022,7 @@ var CharStreams;
|
|
|
54959
55022
|
// }
|
|
54960
55023
|
})(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
|
|
54961
55024
|
|
|
54962
|
-
},{"./CodePointBuffer":
|
|
55025
|
+
},{"./CodePointBuffer":292,"./CodePointCharStream":293,"./IntStream":304}],292:[function(require,module,exports){
|
|
54963
55026
|
"use strict";
|
|
54964
55027
|
/*!
|
|
54965
55028
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55194,7 +55257,7 @@ exports.CodePointBuffer = CodePointBuffer;
|
|
|
55194
55257
|
CodePointBuffer.Builder = Builder;
|
|
55195
55258
|
})(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
|
|
55196
55259
|
|
|
55197
|
-
},{"./misc/Character":
|
|
55260
|
+
},{"./misc/Character":406,"assert":441}],293:[function(require,module,exports){
|
|
55198
55261
|
"use strict";
|
|
55199
55262
|
/*!
|
|
55200
55263
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55344,7 +55407,7 @@ __decorate([
|
|
|
55344
55407
|
], CodePointCharStream.prototype, "getText", null);
|
|
55345
55408
|
exports.CodePointCharStream = CodePointCharStream;
|
|
55346
55409
|
|
|
55347
|
-
},{"./Decorators":
|
|
55410
|
+
},{"./Decorators":298,"./IntStream":304,"./misc/Interval":410,"assert":441}],294:[function(require,module,exports){
|
|
55348
55411
|
"use strict";
|
|
55349
55412
|
/*!
|
|
55350
55413
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55574,7 +55637,7 @@ CommonToken = __decorate([
|
|
|
55574
55637
|
], CommonToken);
|
|
55575
55638
|
exports.CommonToken = CommonToken;
|
|
55576
55639
|
|
|
55577
|
-
},{"./Decorators":
|
|
55640
|
+
},{"./Decorators":298,"./Token":323,"./misc/Interval":410}],295:[function(require,module,exports){
|
|
55578
55641
|
"use strict";
|
|
55579
55642
|
/*!
|
|
55580
55643
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55638,7 +55701,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
|
|
|
55638
55701
|
CommonTokenFactory.DEFAULT = new CommonTokenFactory();
|
|
55639
55702
|
})(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
|
|
55640
55703
|
|
|
55641
|
-
},{"./CommonToken":
|
|
55704
|
+
},{"./CommonToken":294,"./Decorators":298,"./misc/Interval":410}],296:[function(require,module,exports){
|
|
55642
55705
|
"use strict";
|
|
55643
55706
|
/*!
|
|
55644
55707
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55765,7 +55828,7 @@ CommonTokenStream = __decorate([
|
|
|
55765
55828
|
], CommonTokenStream);
|
|
55766
55829
|
exports.CommonTokenStream = CommonTokenStream;
|
|
55767
55830
|
|
|
55768
|
-
},{"./BufferedTokenStream":
|
|
55831
|
+
},{"./BufferedTokenStream":289,"./Decorators":298,"./Token":323}],297:[function(require,module,exports){
|
|
55769
55832
|
"use strict";
|
|
55770
55833
|
/*!
|
|
55771
55834
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55799,7 +55862,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
|
|
|
55799
55862
|
*/
|
|
55800
55863
|
ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
|
|
55801
55864
|
|
|
55802
|
-
},{}],
|
|
55865
|
+
},{}],298:[function(require,module,exports){
|
|
55803
55866
|
"use strict";
|
|
55804
55867
|
/*!
|
|
55805
55868
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55826,7 +55889,7 @@ function SuppressWarnings(options) {
|
|
|
55826
55889
|
}
|
|
55827
55890
|
exports.SuppressWarnings = SuppressWarnings;
|
|
55828
55891
|
|
|
55829
|
-
},{}],
|
|
55892
|
+
},{}],299:[function(require,module,exports){
|
|
55830
55893
|
"use strict";
|
|
55831
55894
|
/*!
|
|
55832
55895
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56640,7 +56703,7 @@ __decorate([
|
|
|
56640
56703
|
], DefaultErrorStrategy.prototype, "consumeUntil", null);
|
|
56641
56704
|
exports.DefaultErrorStrategy = DefaultErrorStrategy;
|
|
56642
56705
|
|
|
56643
|
-
},{"./Decorators":
|
|
56706
|
+
},{"./Decorators":298,"./FailedPredicateException":302,"./InputMismatchException":303,"./NoViableAltException":310,"./Token":323,"./atn/ATNState":337,"./atn/ATNStateType":338,"./atn/PredictionContext":378,"./misc/IntervalSet":411}],300:[function(require,module,exports){
|
|
56644
56707
|
"use strict";
|
|
56645
56708
|
/*!
|
|
56646
56709
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56716,7 +56779,7 @@ var Dependents;
|
|
|
56716
56779
|
Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
|
|
56717
56780
|
})(Dependents = exports.Dependents || (exports.Dependents = {}));
|
|
56718
56781
|
|
|
56719
|
-
},{}],
|
|
56782
|
+
},{}],301:[function(require,module,exports){
|
|
56720
56783
|
"use strict";
|
|
56721
56784
|
/*!
|
|
56722
56785
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56864,7 +56927,7 @@ __decorate([
|
|
|
56864
56927
|
], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
|
|
56865
56928
|
exports.DiagnosticErrorListener = DiagnosticErrorListener;
|
|
56866
56929
|
|
|
56867
|
-
},{"./Decorators":
|
|
56930
|
+
},{"./Decorators":298,"./misc/BitSet":405,"./misc/Interval":410}],302:[function(require,module,exports){
|
|
56868
56931
|
"use strict";
|
|
56869
56932
|
/*!
|
|
56870
56933
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56929,7 +56992,7 @@ FailedPredicateException = __decorate([
|
|
|
56929
56992
|
], FailedPredicateException);
|
|
56930
56993
|
exports.FailedPredicateException = FailedPredicateException;
|
|
56931
56994
|
|
|
56932
|
-
},{"./Decorators":
|
|
56995
|
+
},{"./Decorators":298,"./RecognitionException":317,"./atn/PredicateTransition":377}],303:[function(require,module,exports){
|
|
56933
56996
|
"use strict";
|
|
56934
56997
|
/*!
|
|
56935
56998
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56969,7 +57032,7 @@ InputMismatchException = __decorate([
|
|
|
56969
57032
|
], InputMismatchException);
|
|
56970
57033
|
exports.InputMismatchException = InputMismatchException;
|
|
56971
57034
|
|
|
56972
|
-
},{"./Decorators":
|
|
57035
|
+
},{"./Decorators":298,"./RecognitionException":317}],304:[function(require,module,exports){
|
|
56973
57036
|
"use strict";
|
|
56974
57037
|
/*!
|
|
56975
57038
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56992,7 +57055,7 @@ var IntStream;
|
|
|
56992
57055
|
IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
|
|
56993
57056
|
})(IntStream = exports.IntStream || (exports.IntStream = {}));
|
|
56994
57057
|
|
|
56995
|
-
},{}],
|
|
57058
|
+
},{}],305:[function(require,module,exports){
|
|
56996
57059
|
"use strict";
|
|
56997
57060
|
/*!
|
|
56998
57061
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57039,7 +57102,7 @@ __decorate([
|
|
|
57039
57102
|
], InterpreterRuleContext.prototype, "ruleIndex", null);
|
|
57040
57103
|
exports.InterpreterRuleContext = InterpreterRuleContext;
|
|
57041
57104
|
|
|
57042
|
-
},{"./Decorators":
|
|
57105
|
+
},{"./Decorators":298,"./ParserRuleContext":314}],306:[function(require,module,exports){
|
|
57043
57106
|
"use strict";
|
|
57044
57107
|
/*!
|
|
57045
57108
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57375,7 +57438,7 @@ __decorate([
|
|
|
57375
57438
|
], Lexer.prototype, "charPositionInLine", null);
|
|
57376
57439
|
exports.Lexer = Lexer;
|
|
57377
57440
|
|
|
57378
|
-
},{"./CommonTokenFactory":
|
|
57441
|
+
},{"./CommonTokenFactory":295,"./Decorators":298,"./IntStream":304,"./LexerNoViableAltException":308,"./Recognizer":318,"./Token":323,"./atn/LexerATNSimulator":356,"./misc/IntegerStack":409,"./misc/Interval":410}],307:[function(require,module,exports){
|
|
57379
57442
|
"use strict";
|
|
57380
57443
|
/*!
|
|
57381
57444
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57455,7 +57518,7 @@ LexerInterpreter = __decorate([
|
|
|
57455
57518
|
], LexerInterpreter);
|
|
57456
57519
|
exports.LexerInterpreter = LexerInterpreter;
|
|
57457
57520
|
|
|
57458
|
-
},{"./Decorators":
|
|
57521
|
+
},{"./Decorators":298,"./Lexer":306,"./atn/LexerATNSimulator":356}],308:[function(require,module,exports){
|
|
57459
57522
|
"use strict";
|
|
57460
57523
|
/*!
|
|
57461
57524
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57512,7 +57575,7 @@ LexerNoViableAltException = __decorate([
|
|
|
57512
57575
|
], LexerNoViableAltException);
|
|
57513
57576
|
exports.LexerNoViableAltException = LexerNoViableAltException;
|
|
57514
57577
|
|
|
57515
|
-
},{"./Decorators":
|
|
57578
|
+
},{"./Decorators":298,"./RecognitionException":317,"./misc/Interval":410,"./misc/Utils":417}],309:[function(require,module,exports){
|
|
57516
57579
|
"use strict";
|
|
57517
57580
|
/*!
|
|
57518
57581
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57722,7 +57785,7 @@ ListTokenSource = __decorate([
|
|
|
57722
57785
|
], ListTokenSource);
|
|
57723
57786
|
exports.ListTokenSource = ListTokenSource;
|
|
57724
57787
|
|
|
57725
|
-
},{"./CommonTokenFactory":
|
|
57788
|
+
},{"./CommonTokenFactory":295,"./Decorators":298,"./Token":323}],310:[function(require,module,exports){
|
|
57726
57789
|
"use strict";
|
|
57727
57790
|
/*!
|
|
57728
57791
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57777,7 +57840,7 @@ __decorate([
|
|
|
57777
57840
|
], NoViableAltException.prototype, "_startToken", void 0);
|
|
57778
57841
|
exports.NoViableAltException = NoViableAltException;
|
|
57779
57842
|
|
|
57780
|
-
},{"./Decorators":
|
|
57843
|
+
},{"./Decorators":298,"./Parser":311,"./RecognitionException":317}],311:[function(require,module,exports){
|
|
57781
57844
|
(function (process){(function (){
|
|
57782
57845
|
"use strict";
|
|
57783
57846
|
/*!
|
|
@@ -58623,7 +58686,7 @@ __decorate([
|
|
|
58623
58686
|
exports.Parser = Parser;
|
|
58624
58687
|
|
|
58625
58688
|
}).call(this)}).call(this,require('_process'))
|
|
58626
|
-
},{"./Decorators":
|
|
58689
|
+
},{"./Decorators":298,"./DefaultErrorStrategy":299,"./Lexer":306,"./ProxyParserErrorListener":316,"./Recognizer":318,"./Token":323,"./atn/ATNDeserializationOptions":334,"./atn/ATNDeserializer":335,"./atn/ParseInfo":371,"./atn/ParserATNSimulator":372,"./atn/ProfilingATNSimulator":381,"./misc/IntegerStack":409,"./misc/Utils":417,"./tree/ErrorNode":419,"./tree/TerminalNode":421,"./tree/pattern/ParseTreePatternMatcher":426,"_process":500}],312:[function(require,module,exports){
|
|
58627
58690
|
"use strict";
|
|
58628
58691
|
/*!
|
|
58629
58692
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58631,7 +58694,7 @@ exports.Parser = Parser;
|
|
|
58631
58694
|
*/
|
|
58632
58695
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58633
58696
|
|
|
58634
|
-
},{}],
|
|
58697
|
+
},{}],313:[function(require,module,exports){
|
|
58635
58698
|
"use strict";
|
|
58636
58699
|
/*!
|
|
58637
58700
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59039,7 +59102,7 @@ ParserInterpreter = __decorate([
|
|
|
59039
59102
|
], ParserInterpreter);
|
|
59040
59103
|
exports.ParserInterpreter = ParserInterpreter;
|
|
59041
59104
|
|
|
59042
|
-
},{"./Decorators":
|
|
59105
|
+
},{"./Decorators":298,"./FailedPredicateException":302,"./InputMismatchException":303,"./InterpreterRuleContext":305,"./Parser":311,"./RecognitionException":317,"./Token":323,"./atn/ATNState":337,"./atn/ATNStateType":338,"./atn/LoopEndState":368,"./atn/ParserATNSimulator":372,"./atn/StarLoopEntryState":390,"./misc/BitSet":405}],314:[function(require,module,exports){
|
|
59043
59106
|
"use strict";
|
|
59044
59107
|
/*!
|
|
59045
59108
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59340,7 +59403,7 @@ __decorate([
|
|
|
59340
59403
|
], ParserRuleContext.prototype, "sourceInterval", null);
|
|
59341
59404
|
exports.ParserRuleContext = ParserRuleContext;
|
|
59342
59405
|
|
|
59343
|
-
},{"./Decorators":
|
|
59406
|
+
},{"./Decorators":298,"./RuleContext":319,"./misc/Interval":410,"./tree/ErrorNode":419,"./tree/TerminalNode":421}],315:[function(require,module,exports){
|
|
59344
59407
|
"use strict";
|
|
59345
59408
|
/*!
|
|
59346
59409
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59390,7 +59453,7 @@ __decorate([
|
|
|
59390
59453
|
], ProxyErrorListener.prototype, "syntaxError", null);
|
|
59391
59454
|
exports.ProxyErrorListener = ProxyErrorListener;
|
|
59392
59455
|
|
|
59393
|
-
},{"./Decorators":
|
|
59456
|
+
},{"./Decorators":298}],316:[function(require,module,exports){
|
|
59394
59457
|
"use strict";
|
|
59395
59458
|
/*!
|
|
59396
59459
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59449,7 +59512,7 @@ __decorate([
|
|
|
59449
59512
|
], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
|
|
59450
59513
|
exports.ProxyParserErrorListener = ProxyParserErrorListener;
|
|
59451
59514
|
|
|
59452
|
-
},{"./Decorators":
|
|
59515
|
+
},{"./Decorators":298,"./ProxyErrorListener":315}],317:[function(require,module,exports){
|
|
59453
59516
|
"use strict";
|
|
59454
59517
|
/*!
|
|
59455
59518
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59554,7 +59617,7 @@ class RecognitionException extends Error {
|
|
|
59554
59617
|
}
|
|
59555
59618
|
exports.RecognitionException = RecognitionException;
|
|
59556
59619
|
|
|
59557
|
-
},{}],
|
|
59620
|
+
},{}],318:[function(require,module,exports){
|
|
59558
59621
|
"use strict";
|
|
59559
59622
|
/*!
|
|
59560
59623
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59773,7 +59836,7 @@ __decorate([
|
|
|
59773
59836
|
], Recognizer.prototype, "getErrorListeners", null);
|
|
59774
59837
|
exports.Recognizer = Recognizer;
|
|
59775
59838
|
|
|
59776
|
-
},{"./ConsoleErrorListener":
|
|
59839
|
+
},{"./ConsoleErrorListener":297,"./Decorators":298,"./ProxyErrorListener":315,"./Token":323,"./misc/Utils":417}],319:[function(require,module,exports){
|
|
59777
59840
|
"use strict";
|
|
59778
59841
|
/*!
|
|
59779
59842
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59990,7 +60053,7 @@ __decorate([
|
|
|
59990
60053
|
], RuleContext.prototype, "toStringTree", null);
|
|
59991
60054
|
exports.RuleContext = RuleContext;
|
|
59992
60055
|
|
|
59993
|
-
},{"./Decorators":
|
|
60056
|
+
},{"./Decorators":298,"./ParserRuleContext":314,"./Recognizer":318,"./atn/ATN":331,"./misc/Interval":410,"./tree/RuleNode":420,"./tree/Trees":422}],320:[function(require,module,exports){
|
|
59994
60057
|
"use strict";
|
|
59995
60058
|
/*!
|
|
59996
60059
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60041,7 +60104,7 @@ __decorate([
|
|
|
60041
60104
|
], RuleContextWithAltNum.prototype, "altNumber", null);
|
|
60042
60105
|
exports.RuleContextWithAltNum = RuleContextWithAltNum;
|
|
60043
60106
|
|
|
60044
|
-
},{"./Decorators":
|
|
60107
|
+
},{"./Decorators":298,"./ParserRuleContext":314,"./atn/ATN":331}],321:[function(require,module,exports){
|
|
60045
60108
|
"use strict";
|
|
60046
60109
|
/*!
|
|
60047
60110
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60064,7 +60127,7 @@ function RuleDependency(dependency) {
|
|
|
60064
60127
|
}
|
|
60065
60128
|
exports.RuleDependency = RuleDependency;
|
|
60066
60129
|
|
|
60067
|
-
},{}],
|
|
60130
|
+
},{}],322:[function(require,module,exports){
|
|
60068
60131
|
"use strict";
|
|
60069
60132
|
/*!
|
|
60070
60133
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60083,7 +60146,7 @@ function RuleVersion(version) {
|
|
|
60083
60146
|
}
|
|
60084
60147
|
exports.RuleVersion = RuleVersion;
|
|
60085
60148
|
|
|
60086
|
-
},{}],
|
|
60149
|
+
},{}],323:[function(require,module,exports){
|
|
60087
60150
|
"use strict";
|
|
60088
60151
|
/*!
|
|
60089
60152
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60123,7 +60186,7 @@ var Token;
|
|
|
60123
60186
|
Token.MIN_USER_CHANNEL_VALUE = 2;
|
|
60124
60187
|
})(Token = exports.Token || (exports.Token = {}));
|
|
60125
60188
|
|
|
60126
|
-
},{"./IntStream":
|
|
60189
|
+
},{"./IntStream":304}],324:[function(require,module,exports){
|
|
60127
60190
|
"use strict";
|
|
60128
60191
|
/*!
|
|
60129
60192
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60131,7 +60194,7 @@ var Token;
|
|
|
60131
60194
|
*/
|
|
60132
60195
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
60133
60196
|
|
|
60134
|
-
},{}],
|
|
60197
|
+
},{}],325:[function(require,module,exports){
|
|
60135
60198
|
"use strict";
|
|
60136
60199
|
/*!
|
|
60137
60200
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60139,7 +60202,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
60139
60202
|
*/
|
|
60140
60203
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
60141
60204
|
|
|
60142
|
-
},{}],
|
|
60205
|
+
},{}],326:[function(require,module,exports){
|
|
60143
60206
|
"use strict";
|
|
60144
60207
|
/*!
|
|
60145
60208
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60147,7 +60210,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
60147
60210
|
*/
|
|
60148
60211
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
60149
60212
|
|
|
60150
|
-
},{}],
|
|
60213
|
+
},{}],327:[function(require,module,exports){
|
|
60151
60214
|
"use strict";
|
|
60152
60215
|
/*!
|
|
60153
60216
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60655,7 +60718,7 @@ __decorate([
|
|
|
60655
60718
|
Decorators_1.Override
|
|
60656
60719
|
], ReplaceOp.prototype, "toString", null);
|
|
60657
60720
|
|
|
60658
|
-
},{"./Decorators":
|
|
60721
|
+
},{"./Decorators":298,"./Token":323,"./misc/Interval":410}],328:[function(require,module,exports){
|
|
60659
60722
|
"use strict";
|
|
60660
60723
|
/*!
|
|
60661
60724
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60663,7 +60726,7 @@ __decorate([
|
|
|
60663
60726
|
*/
|
|
60664
60727
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
60665
60728
|
|
|
60666
|
-
},{}],
|
|
60729
|
+
},{}],329:[function(require,module,exports){
|
|
60667
60730
|
"use strict";
|
|
60668
60731
|
/*!
|
|
60669
60732
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60783,7 +60846,7 @@ __decorate([
|
|
|
60783
60846
|
], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
|
|
60784
60847
|
exports.VocabularyImpl = VocabularyImpl;
|
|
60785
60848
|
|
|
60786
|
-
},{"./Decorators":
|
|
60849
|
+
},{"./Decorators":298,"./Token":323}],330:[function(require,module,exports){
|
|
60787
60850
|
"use strict";
|
|
60788
60851
|
/*!
|
|
60789
60852
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60791,7 +60854,7 @@ exports.VocabularyImpl = VocabularyImpl;
|
|
|
60791
60854
|
*/
|
|
60792
60855
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
60793
60856
|
|
|
60794
|
-
},{}],
|
|
60857
|
+
},{}],331:[function(require,module,exports){
|
|
60795
60858
|
"use strict";
|
|
60796
60859
|
/*!
|
|
60797
60860
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61013,7 +61076,7 @@ exports.ATN = ATN;
|
|
|
61013
61076
|
})(ATN = exports.ATN || (exports.ATN = {}));
|
|
61014
61077
|
exports.ATN = ATN;
|
|
61015
61078
|
|
|
61016
|
-
},{"../Decorators":
|
|
61079
|
+
},{"../Decorators":298,"../Token":323,"../dfa/DFA":396,"../misc/Array2DHashMap":401,"../misc/IntervalSet":411,"../misc/ObjectEqualityComparator":414,"./InvalidState":354,"./LL1Analyzer":355,"./PredictionContext":378,"assert":441}],332:[function(require,module,exports){
|
|
61017
61080
|
"use strict";
|
|
61018
61081
|
/*!
|
|
61019
61082
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61538,7 +61601,7 @@ ActionSemanticContextATNConfig = __decorate([
|
|
|
61538
61601
|
__param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
|
|
61539
61602
|
], ActionSemanticContextATNConfig);
|
|
61540
61603
|
|
|
61541
|
-
},{"../Decorators":
|
|
61604
|
+
},{"../Decorators":298,"../misc/Array2DHashMap":401,"../misc/MurmurHash":413,"../misc/ObjectEqualityComparator":414,"./DecisionState":351,"./PredictionContext":378,"./SemanticContext":386,"assert":441}],333:[function(require,module,exports){
|
|
61542
61605
|
"use strict";
|
|
61543
61606
|
/*!
|
|
61544
61607
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61985,7 +62048,7 @@ __decorate([
|
|
|
61985
62048
|
], ATNConfigSet.prototype, "hashCode", null);
|
|
61986
62049
|
exports.ATNConfigSet = ATNConfigSet;
|
|
61987
62050
|
|
|
61988
|
-
},{"../Decorators":
|
|
62051
|
+
},{"../Decorators":298,"../misc/Array2DHashMap":401,"../misc/Array2DHashSet":402,"../misc/ArrayEqualityComparator":403,"../misc/BitSet":405,"../misc/ObjectEqualityComparator":414,"../misc/Utils":417,"./ATN":331,"./ATNConfig":332,"./PredictionContext":378,"./PredictionContextCache":379,"./SemanticContext":386,"assert":441}],334:[function(require,module,exports){
|
|
61989
62052
|
"use strict";
|
|
61990
62053
|
/*!
|
|
61991
62054
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62064,7 +62127,7 @@ __decorate([
|
|
|
62064
62127
|
], ATNDeserializationOptions, "defaultOptions", null);
|
|
62065
62128
|
exports.ATNDeserializationOptions = ATNDeserializationOptions;
|
|
62066
62129
|
|
|
62067
|
-
},{"../Decorators":
|
|
62130
|
+
},{"../Decorators":298}],335:[function(require,module,exports){
|
|
62068
62131
|
"use strict";
|
|
62069
62132
|
/*!
|
|
62070
62133
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63151,7 +63214,7 @@ __decorate([
|
|
|
63151
63214
|
], ATNDeserializer.prototype, "edgeFactory", null);
|
|
63152
63215
|
exports.ATNDeserializer = ATNDeserializer;
|
|
63153
63216
|
|
|
63154
|
-
},{"../Decorators":
|
|
63217
|
+
},{"../Decorators":298,"../Token":323,"../dfa/DFA":396,"../misc/Array2DHashSet":402,"../misc/BitSet":405,"../misc/IntervalSet":411,"../misc/UUID":416,"./ATN":331,"./ATNDeserializationOptions":334,"./ATNStateType":338,"./ActionTransition":340,"./AtomTransition":342,"./BasicBlockStartState":343,"./BasicState":344,"./BlockEndState":345,"./BlockStartState":346,"./DecisionState":351,"./EpsilonTransition":352,"./InvalidState":354,"./LexerChannelAction":358,"./LexerCustomAction":359,"./LexerModeAction":361,"./LexerMoreAction":362,"./LexerPopModeAction":363,"./LexerPushModeAction":364,"./LexerSkipAction":365,"./LexerTypeAction":366,"./LoopEndState":368,"./NotSetTransition":369,"./ParserATNSimulator":372,"./PlusBlockStartState":373,"./PlusLoopbackState":374,"./PrecedencePredicateTransition":375,"./PredicateTransition":377,"./RangeTransition":382,"./RuleStartState":383,"./RuleStopState":384,"./RuleTransition":385,"./SetTransition":387,"./StarBlockStartState":389,"./StarLoopEntryState":390,"./StarLoopbackState":391,"./TokensStartState":392,"./WildcardTransition":394}],336:[function(require,module,exports){
|
|
63155
63218
|
"use strict";
|
|
63156
63219
|
/*!
|
|
63157
63220
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63215,7 +63278,7 @@ exports.ATNSimulator = ATNSimulator;
|
|
|
63215
63278
|
})(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
|
|
63216
63279
|
exports.ATNSimulator = ATNSimulator;
|
|
63217
63280
|
|
|
63218
|
-
},{"../Decorators":
|
|
63281
|
+
},{"../Decorators":298,"../dfa/DFAState":398,"./ATNConfigSet":333,"./PredictionContext":378}],337:[function(require,module,exports){
|
|
63219
63282
|
"use strict";
|
|
63220
63283
|
/*!
|
|
63221
63284
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63402,7 +63465,7 @@ exports.ATNState = ATNState;
|
|
|
63402
63465
|
ATNState.INVALID_STATE_NUMBER = -1;
|
|
63403
63466
|
})(ATNState = exports.ATNState || (exports.ATNState = {}));
|
|
63404
63467
|
|
|
63405
|
-
},{"../Decorators":
|
|
63468
|
+
},{"../Decorators":298}],338:[function(require,module,exports){
|
|
63406
63469
|
"use strict";
|
|
63407
63470
|
/*!
|
|
63408
63471
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63428,7 +63491,7 @@ var ATNStateType;
|
|
|
63428
63491
|
ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
|
|
63429
63492
|
})(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
|
|
63430
63493
|
|
|
63431
|
-
},{}],
|
|
63494
|
+
},{}],339:[function(require,module,exports){
|
|
63432
63495
|
"use strict";
|
|
63433
63496
|
/*!
|
|
63434
63497
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63448,7 +63511,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
|
|
|
63448
63511
|
}
|
|
63449
63512
|
exports.AbstractPredicateTransition = AbstractPredicateTransition;
|
|
63450
63513
|
|
|
63451
|
-
},{"./Transition":
|
|
63514
|
+
},{"./Transition":393}],340:[function(require,module,exports){
|
|
63452
63515
|
"use strict";
|
|
63453
63516
|
/*!
|
|
63454
63517
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63504,7 +63567,7 @@ ActionTransition = __decorate([
|
|
|
63504
63567
|
], ActionTransition);
|
|
63505
63568
|
exports.ActionTransition = ActionTransition;
|
|
63506
63569
|
|
|
63507
|
-
},{"../Decorators":
|
|
63570
|
+
},{"../Decorators":298,"./Transition":393}],341:[function(require,module,exports){
|
|
63508
63571
|
"use strict";
|
|
63509
63572
|
/*!
|
|
63510
63573
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63591,7 +63654,7 @@ AmbiguityInfo = __decorate([
|
|
|
63591
63654
|
], AmbiguityInfo);
|
|
63592
63655
|
exports.AmbiguityInfo = AmbiguityInfo;
|
|
63593
63656
|
|
|
63594
|
-
},{"../Decorators":
|
|
63657
|
+
},{"../Decorators":298,"./DecisionEventInfo":349}],342:[function(require,module,exports){
|
|
63595
63658
|
"use strict";
|
|
63596
63659
|
/*!
|
|
63597
63660
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63649,7 +63712,7 @@ AtomTransition = __decorate([
|
|
|
63649
63712
|
], AtomTransition);
|
|
63650
63713
|
exports.AtomTransition = AtomTransition;
|
|
63651
63714
|
|
|
63652
|
-
},{"../Decorators":
|
|
63715
|
+
},{"../Decorators":298,"../misc/IntervalSet":411,"./Transition":393}],343:[function(require,module,exports){
|
|
63653
63716
|
"use strict";
|
|
63654
63717
|
/*!
|
|
63655
63718
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63681,7 +63744,7 @@ __decorate([
|
|
|
63681
63744
|
], BasicBlockStartState.prototype, "stateType", null);
|
|
63682
63745
|
exports.BasicBlockStartState = BasicBlockStartState;
|
|
63683
63746
|
|
|
63684
|
-
},{"../Decorators":
|
|
63747
|
+
},{"../Decorators":298,"./ATNStateType":338,"./BlockStartState":346}],344:[function(require,module,exports){
|
|
63685
63748
|
"use strict";
|
|
63686
63749
|
/*!
|
|
63687
63750
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63713,7 +63776,7 @@ __decorate([
|
|
|
63713
63776
|
], BasicState.prototype, "stateType", null);
|
|
63714
63777
|
exports.BasicState = BasicState;
|
|
63715
63778
|
|
|
63716
|
-
},{"../Decorators":
|
|
63779
|
+
},{"../Decorators":298,"./ATNState":337,"./ATNStateType":338}],345:[function(require,module,exports){
|
|
63717
63780
|
"use strict";
|
|
63718
63781
|
/*!
|
|
63719
63782
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63742,7 +63805,7 @@ __decorate([
|
|
|
63742
63805
|
], BlockEndState.prototype, "stateType", null);
|
|
63743
63806
|
exports.BlockEndState = BlockEndState;
|
|
63744
63807
|
|
|
63745
|
-
},{"../Decorators":
|
|
63808
|
+
},{"../Decorators":298,"./ATNState":337,"./ATNStateType":338}],346:[function(require,module,exports){
|
|
63746
63809
|
"use strict";
|
|
63747
63810
|
/*!
|
|
63748
63811
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63756,7 +63819,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
|
|
|
63756
63819
|
}
|
|
63757
63820
|
exports.BlockStartState = BlockStartState;
|
|
63758
63821
|
|
|
63759
|
-
},{"./DecisionState":
|
|
63822
|
+
},{"./DecisionState":351}],347:[function(require,module,exports){
|
|
63760
63823
|
"use strict";
|
|
63761
63824
|
/*!
|
|
63762
63825
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63826,7 +63889,7 @@ __decorate([
|
|
|
63826
63889
|
], ConflictInfo.prototype, "hashCode", null);
|
|
63827
63890
|
exports.ConflictInfo = ConflictInfo;
|
|
63828
63891
|
|
|
63829
|
-
},{"../Decorators":
|
|
63892
|
+
},{"../Decorators":298,"../misc/Utils":417}],348:[function(require,module,exports){
|
|
63830
63893
|
"use strict";
|
|
63831
63894
|
/*!
|
|
63832
63895
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63886,7 +63949,7 @@ ContextSensitivityInfo = __decorate([
|
|
|
63886
63949
|
], ContextSensitivityInfo);
|
|
63887
63950
|
exports.ContextSensitivityInfo = ContextSensitivityInfo;
|
|
63888
63951
|
|
|
63889
|
-
},{"../Decorators":
|
|
63952
|
+
},{"../Decorators":298,"./DecisionEventInfo":349}],349:[function(require,module,exports){
|
|
63890
63953
|
"use strict";
|
|
63891
63954
|
/*!
|
|
63892
63955
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63938,7 +64001,7 @@ DecisionEventInfo = __decorate([
|
|
|
63938
64001
|
], DecisionEventInfo);
|
|
63939
64002
|
exports.DecisionEventInfo = DecisionEventInfo;
|
|
63940
64003
|
|
|
63941
|
-
},{"../Decorators":
|
|
64004
|
+
},{"../Decorators":298}],350:[function(require,module,exports){
|
|
63942
64005
|
"use strict";
|
|
63943
64006
|
/*!
|
|
63944
64007
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64151,7 +64214,7 @@ __decorate([
|
|
|
64151
64214
|
], DecisionInfo.prototype, "toString", null);
|
|
64152
64215
|
exports.DecisionInfo = DecisionInfo;
|
|
64153
64216
|
|
|
64154
|
-
},{"../Decorators":
|
|
64217
|
+
},{"../Decorators":298}],351:[function(require,module,exports){
|
|
64155
64218
|
"use strict";
|
|
64156
64219
|
/*!
|
|
64157
64220
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64171,7 +64234,7 @@ class DecisionState extends ATNState_1.ATNState {
|
|
|
64171
64234
|
}
|
|
64172
64235
|
exports.DecisionState = DecisionState;
|
|
64173
64236
|
|
|
64174
|
-
},{"./ATNState":
|
|
64237
|
+
},{"./ATNState":337}],352:[function(require,module,exports){
|
|
64175
64238
|
"use strict";
|
|
64176
64239
|
/*!
|
|
64177
64240
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64237,7 +64300,7 @@ EpsilonTransition = __decorate([
|
|
|
64237
64300
|
], EpsilonTransition);
|
|
64238
64301
|
exports.EpsilonTransition = EpsilonTransition;
|
|
64239
64302
|
|
|
64240
|
-
},{"../Decorators":
|
|
64303
|
+
},{"../Decorators":298,"./Transition":393}],353:[function(require,module,exports){
|
|
64241
64304
|
"use strict";
|
|
64242
64305
|
/*!
|
|
64243
64306
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64290,7 +64353,7 @@ ErrorInfo = __decorate([
|
|
|
64290
64353
|
], ErrorInfo);
|
|
64291
64354
|
exports.ErrorInfo = ErrorInfo;
|
|
64292
64355
|
|
|
64293
|
-
},{"../Decorators":
|
|
64356
|
+
},{"../Decorators":298,"./DecisionEventInfo":349}],354:[function(require,module,exports){
|
|
64294
64357
|
"use strict";
|
|
64295
64358
|
/*!
|
|
64296
64359
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64321,7 +64384,7 @@ __decorate([
|
|
|
64321
64384
|
], InvalidState.prototype, "stateType", null);
|
|
64322
64385
|
exports.InvalidState = InvalidState;
|
|
64323
64386
|
|
|
64324
|
-
},{"../Decorators":
|
|
64387
|
+
},{"../Decorators":298,"./ATNStateType":338,"./BasicState":344}],355:[function(require,module,exports){
|
|
64325
64388
|
"use strict";
|
|
64326
64389
|
/*!
|
|
64327
64390
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64543,7 +64606,7 @@ LL1Analyzer = __decorate([
|
|
|
64543
64606
|
], LL1Analyzer);
|
|
64544
64607
|
exports.LL1Analyzer = LL1Analyzer;
|
|
64545
64608
|
|
|
64546
|
-
},{"../Decorators":
|
|
64609
|
+
},{"../Decorators":298,"../Token":323,"../misc/Array2DHashSet":402,"../misc/BitSet":405,"../misc/IntervalSet":411,"../misc/ObjectEqualityComparator":414,"./ATNConfig":332,"./AbstractPredicateTransition":339,"./NotSetTransition":369,"./PredictionContext":378,"./RuleStopState":384,"./RuleTransition":385,"./WildcardTransition":394}],356:[function(require,module,exports){
|
|
64547
64610
|
"use strict";
|
|
64548
64611
|
/*!
|
|
64549
64612
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65260,7 +65323,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
|
|
|
65260
65323
|
})(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
|
|
65261
65324
|
exports.LexerATNSimulator = LexerATNSimulator;
|
|
65262
65325
|
|
|
65263
|
-
},{"../Decorators":
|
|
65326
|
+
},{"../Decorators":298,"../IntStream":304,"../Lexer":306,"../LexerNoViableAltException":308,"../Token":323,"../dfa/AcceptStateInfo":395,"../dfa/DFAState":398,"../misc/Interval":410,"./ATN":331,"./ATNConfig":332,"./ATNConfigSet":333,"./ATNSimulator":336,"./LexerActionExecutor":357,"./OrderedATNConfigSet":370,"./PredictionContext":378,"./RuleStopState":384,"assert":441}],357:[function(require,module,exports){
|
|
65264
65327
|
"use strict";
|
|
65265
65328
|
/*!
|
|
65266
65329
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65461,7 +65524,7 @@ LexerActionExecutor = __decorate([
|
|
|
65461
65524
|
], LexerActionExecutor);
|
|
65462
65525
|
exports.LexerActionExecutor = LexerActionExecutor;
|
|
65463
65526
|
|
|
65464
|
-
},{"../Decorators":
|
|
65527
|
+
},{"../Decorators":298,"../misc/ArrayEqualityComparator":403,"../misc/MurmurHash":413,"./LexerIndexedCustomAction":360}],358:[function(require,module,exports){
|
|
65465
65528
|
"use strict";
|
|
65466
65529
|
/*!
|
|
65467
65530
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65566,7 +65629,7 @@ __decorate([
|
|
|
65566
65629
|
], LexerChannelAction.prototype, "toString", null);
|
|
65567
65630
|
exports.LexerChannelAction = LexerChannelAction;
|
|
65568
65631
|
|
|
65569
|
-
},{"../Decorators":
|
|
65632
|
+
},{"../Decorators":298,"../misc/MurmurHash":413}],359:[function(require,module,exports){
|
|
65570
65633
|
"use strict";
|
|
65571
65634
|
/*!
|
|
65572
65635
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65695,7 +65758,7 @@ __decorate([
|
|
|
65695
65758
|
], LexerCustomAction.prototype, "equals", null);
|
|
65696
65759
|
exports.LexerCustomAction = LexerCustomAction;
|
|
65697
65760
|
|
|
65698
|
-
},{"../Decorators":
|
|
65761
|
+
},{"../Decorators":298,"../misc/MurmurHash":413}],360:[function(require,module,exports){
|
|
65699
65762
|
"use strict";
|
|
65700
65763
|
/*!
|
|
65701
65764
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65830,7 +65893,7 @@ LexerIndexedCustomAction = __decorate([
|
|
|
65830
65893
|
], LexerIndexedCustomAction);
|
|
65831
65894
|
exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
|
|
65832
65895
|
|
|
65833
|
-
},{"../Decorators":
|
|
65896
|
+
},{"../Decorators":298,"../misc/MurmurHash":413}],361:[function(require,module,exports){
|
|
65834
65897
|
"use strict";
|
|
65835
65898
|
/*!
|
|
65836
65899
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65935,7 +65998,7 @@ __decorate([
|
|
|
65935
65998
|
], LexerModeAction.prototype, "toString", null);
|
|
65936
65999
|
exports.LexerModeAction = LexerModeAction;
|
|
65937
66000
|
|
|
65938
|
-
},{"../Decorators":
|
|
66001
|
+
},{"../Decorators":298,"../misc/MurmurHash":413}],362:[function(require,module,exports){
|
|
65939
66002
|
"use strict";
|
|
65940
66003
|
/*!
|
|
65941
66004
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66031,7 +66094,7 @@ exports.LexerMoreAction = LexerMoreAction;
|
|
|
66031
66094
|
LexerMoreAction.INSTANCE = new LexerMoreAction();
|
|
66032
66095
|
})(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
|
|
66033
66096
|
|
|
66034
|
-
},{"../Decorators":
|
|
66097
|
+
},{"../Decorators":298,"../misc/MurmurHash":413}],363:[function(require,module,exports){
|
|
66035
66098
|
"use strict";
|
|
66036
66099
|
/*!
|
|
66037
66100
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66127,7 +66190,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
|
|
|
66127
66190
|
LexerPopModeAction.INSTANCE = new LexerPopModeAction();
|
|
66128
66191
|
})(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
|
|
66129
66192
|
|
|
66130
|
-
},{"../Decorators":
|
|
66193
|
+
},{"../Decorators":298,"../misc/MurmurHash":413}],364:[function(require,module,exports){
|
|
66131
66194
|
"use strict";
|
|
66132
66195
|
/*!
|
|
66133
66196
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66232,7 +66295,7 @@ __decorate([
|
|
|
66232
66295
|
], LexerPushModeAction.prototype, "toString", null);
|
|
66233
66296
|
exports.LexerPushModeAction = LexerPushModeAction;
|
|
66234
66297
|
|
|
66235
|
-
},{"../Decorators":
|
|
66298
|
+
},{"../Decorators":298,"../misc/MurmurHash":413}],365:[function(require,module,exports){
|
|
66236
66299
|
"use strict";
|
|
66237
66300
|
/*!
|
|
66238
66301
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66328,7 +66391,7 @@ exports.LexerSkipAction = LexerSkipAction;
|
|
|
66328
66391
|
LexerSkipAction.INSTANCE = new LexerSkipAction();
|
|
66329
66392
|
})(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
|
|
66330
66393
|
|
|
66331
|
-
},{"../Decorators":
|
|
66394
|
+
},{"../Decorators":298,"../misc/MurmurHash":413}],366:[function(require,module,exports){
|
|
66332
66395
|
"use strict";
|
|
66333
66396
|
/*!
|
|
66334
66397
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66432,7 +66495,7 @@ __decorate([
|
|
|
66432
66495
|
], LexerTypeAction.prototype, "toString", null);
|
|
66433
66496
|
exports.LexerTypeAction = LexerTypeAction;
|
|
66434
66497
|
|
|
66435
|
-
},{"../Decorators":
|
|
66498
|
+
},{"../Decorators":298,"../misc/MurmurHash":413}],367:[function(require,module,exports){
|
|
66436
66499
|
"use strict";
|
|
66437
66500
|
/*!
|
|
66438
66501
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66484,7 +66547,7 @@ LookaheadEventInfo = __decorate([
|
|
|
66484
66547
|
], LookaheadEventInfo);
|
|
66485
66548
|
exports.LookaheadEventInfo = LookaheadEventInfo;
|
|
66486
66549
|
|
|
66487
|
-
},{"../Decorators":
|
|
66550
|
+
},{"../Decorators":298,"./DecisionEventInfo":349}],368:[function(require,module,exports){
|
|
66488
66551
|
"use strict";
|
|
66489
66552
|
/*!
|
|
66490
66553
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66513,7 +66576,7 @@ __decorate([
|
|
|
66513
66576
|
], LoopEndState.prototype, "stateType", null);
|
|
66514
66577
|
exports.LoopEndState = LoopEndState;
|
|
66515
66578
|
|
|
66516
|
-
},{"../Decorators":
|
|
66579
|
+
},{"../Decorators":298,"./ATNState":337,"./ATNStateType":338}],369:[function(require,module,exports){
|
|
66517
66580
|
"use strict";
|
|
66518
66581
|
/*!
|
|
66519
66582
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66562,7 +66625,7 @@ NotSetTransition = __decorate([
|
|
|
66562
66625
|
], NotSetTransition);
|
|
66563
66626
|
exports.NotSetTransition = NotSetTransition;
|
|
66564
66627
|
|
|
66565
|
-
},{"../Decorators":
|
|
66628
|
+
},{"../Decorators":298,"./SetTransition":387}],370:[function(require,module,exports){
|
|
66566
66629
|
"use strict";
|
|
66567
66630
|
/*!
|
|
66568
66631
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66617,7 +66680,7 @@ __decorate([
|
|
|
66617
66680
|
], OrderedATNConfigSet.prototype, "canMerge", null);
|
|
66618
66681
|
exports.OrderedATNConfigSet = OrderedATNConfigSet;
|
|
66619
66682
|
|
|
66620
|
-
},{"../Decorators":
|
|
66683
|
+
},{"../Decorators":298,"./ATNConfigSet":333}],371:[function(require,module,exports){
|
|
66621
66684
|
"use strict";
|
|
66622
66685
|
/*!
|
|
66623
66686
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66779,7 +66842,7 @@ ParseInfo = __decorate([
|
|
|
66779
66842
|
], ParseInfo);
|
|
66780
66843
|
exports.ParseInfo = ParseInfo;
|
|
66781
66844
|
|
|
66782
|
-
},{"../Decorators":
|
|
66845
|
+
},{"../Decorators":298}],372:[function(require,module,exports){
|
|
66783
66846
|
"use strict";
|
|
66784
66847
|
/*!
|
|
66785
66848
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69052,7 +69115,7 @@ ParserATNSimulator = __decorate([
|
|
|
69052
69115
|
], ParserATNSimulator);
|
|
69053
69116
|
exports.ParserATNSimulator = ParserATNSimulator;
|
|
69054
69117
|
|
|
69055
|
-
},{"../Decorators":
|
|
69118
|
+
},{"../Decorators":298,"../IntStream":304,"../NoViableAltException":310,"../ParserRuleContext":314,"../Token":323,"../VocabularyImpl":329,"../dfa/AcceptStateInfo":395,"../dfa/DFAState":398,"../misc/Array2DHashSet":402,"../misc/Arrays":404,"../misc/BitSet":405,"../misc/IntegerList":408,"../misc/Interval":410,"../misc/ObjectEqualityComparator":414,"./ATN":331,"./ATNConfig":332,"./ATNConfigSet":333,"./ATNSimulator":336,"./ATNStateType":338,"./ActionTransition":340,"./AtomTransition":342,"./ConflictInfo":347,"./DecisionState":351,"./NotSetTransition":369,"./PredictionContext":378,"./PredictionContextCache":379,"./PredictionMode":380,"./RuleStopState":384,"./RuleTransition":385,"./SemanticContext":386,"./SetTransition":387,"./SimulatorState":388,"assert":441}],373:[function(require,module,exports){
|
|
69056
69119
|
"use strict";
|
|
69057
69120
|
/*!
|
|
69058
69121
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69085,7 +69148,7 @@ __decorate([
|
|
|
69085
69148
|
], PlusBlockStartState.prototype, "stateType", null);
|
|
69086
69149
|
exports.PlusBlockStartState = PlusBlockStartState;
|
|
69087
69150
|
|
|
69088
|
-
},{"../Decorators":
|
|
69151
|
+
},{"../Decorators":298,"./ATNStateType":338,"./BlockStartState":346}],374:[function(require,module,exports){
|
|
69089
69152
|
"use strict";
|
|
69090
69153
|
/*!
|
|
69091
69154
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69116,7 +69179,7 @@ __decorate([
|
|
|
69116
69179
|
], PlusLoopbackState.prototype, "stateType", null);
|
|
69117
69180
|
exports.PlusLoopbackState = PlusLoopbackState;
|
|
69118
69181
|
|
|
69119
|
-
},{"../Decorators":
|
|
69182
|
+
},{"../Decorators":298,"./ATNStateType":338,"./DecisionState":351}],375:[function(require,module,exports){
|
|
69120
69183
|
"use strict";
|
|
69121
69184
|
/*!
|
|
69122
69185
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69179,7 +69242,7 @@ PrecedencePredicateTransition = __decorate([
|
|
|
69179
69242
|
], PrecedencePredicateTransition);
|
|
69180
69243
|
exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
|
|
69181
69244
|
|
|
69182
|
-
},{"../Decorators":
|
|
69245
|
+
},{"../Decorators":298,"./AbstractPredicateTransition":339,"./SemanticContext":386}],376:[function(require,module,exports){
|
|
69183
69246
|
"use strict";
|
|
69184
69247
|
/*!
|
|
69185
69248
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69242,7 +69305,7 @@ PredicateEvalInfo = __decorate([
|
|
|
69242
69305
|
], PredicateEvalInfo);
|
|
69243
69306
|
exports.PredicateEvalInfo = PredicateEvalInfo;
|
|
69244
69307
|
|
|
69245
|
-
},{"../Decorators":
|
|
69308
|
+
},{"../Decorators":298,"./DecisionEventInfo":349}],377:[function(require,module,exports){
|
|
69246
69309
|
"use strict";
|
|
69247
69310
|
/*!
|
|
69248
69311
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69308,7 +69371,7 @@ PredicateTransition = __decorate([
|
|
|
69308
69371
|
], PredicateTransition);
|
|
69309
69372
|
exports.PredicateTransition = PredicateTransition;
|
|
69310
69373
|
|
|
69311
|
-
},{"../Decorators":
|
|
69374
|
+
},{"../Decorators":298,"./AbstractPredicateTransition":339,"./SemanticContext":386}],378:[function(require,module,exports){
|
|
69312
69375
|
"use strict";
|
|
69313
69376
|
/*!
|
|
69314
69377
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69999,7 +70062,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
|
|
|
69999
70062
|
PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
|
|
70000
70063
|
})(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
|
|
70001
70064
|
|
|
70002
|
-
},{"../Decorators":
|
|
70065
|
+
},{"../Decorators":298,"../misc/Array2DHashMap":401,"../misc/Array2DHashSet":402,"../misc/Arrays":404,"../misc/MurmurHash":413,"./PredictionContextCache":379,"assert":441}],379:[function(require,module,exports){
|
|
70003
70066
|
"use strict";
|
|
70004
70067
|
/*!
|
|
70005
70068
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70140,7 +70203,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
|
|
|
70140
70203
|
PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
|
|
70141
70204
|
})(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
|
|
70142
70205
|
|
|
70143
|
-
},{"../Decorators":
|
|
70206
|
+
},{"../Decorators":298,"../misc/Array2DHashMap":401,"../misc/ObjectEqualityComparator":414,"./PredictionContext":378,"assert":441}],380:[function(require,module,exports){
|
|
70144
70207
|
"use strict";
|
|
70145
70208
|
/*!
|
|
70146
70209
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70301,7 +70364,7 @@ var PredictionMode;
|
|
|
70301
70364
|
PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
|
|
70302
70365
|
})(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
|
|
70303
70366
|
|
|
70304
|
-
},{"../Decorators":
|
|
70367
|
+
},{"../Decorators":298,"../misc/Array2DHashMap":401,"../misc/MurmurHash":413,"./RuleStopState":384}],381:[function(require,module,exports){
|
|
70305
70368
|
(function (process){(function (){
|
|
70306
70369
|
"use strict";
|
|
70307
70370
|
/*!
|
|
@@ -70570,7 +70633,7 @@ __decorate([
|
|
|
70570
70633
|
exports.ProfilingATNSimulator = ProfilingATNSimulator;
|
|
70571
70634
|
|
|
70572
70635
|
}).call(this)}).call(this,require('_process'))
|
|
70573
|
-
},{"../Decorators":
|
|
70636
|
+
},{"../Decorators":298,"./ATN":331,"./ATNSimulator":336,"./AmbiguityInfo":341,"./ContextSensitivityInfo":348,"./DecisionInfo":350,"./ErrorInfo":353,"./LookaheadEventInfo":367,"./ParserATNSimulator":372,"./PredicateEvalInfo":376,"./SemanticContext":386,"./SimulatorState":388,"_process":500}],382:[function(require,module,exports){
|
|
70574
70637
|
"use strict";
|
|
70575
70638
|
/*!
|
|
70576
70639
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70628,7 +70691,7 @@ RangeTransition = __decorate([
|
|
|
70628
70691
|
], RangeTransition);
|
|
70629
70692
|
exports.RangeTransition = RangeTransition;
|
|
70630
70693
|
|
|
70631
|
-
},{"../Decorators":
|
|
70694
|
+
},{"../Decorators":298,"../misc/IntervalSet":411,"./Transition":393}],383:[function(require,module,exports){
|
|
70632
70695
|
"use strict";
|
|
70633
70696
|
/*!
|
|
70634
70697
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70661,7 +70724,7 @@ __decorate([
|
|
|
70661
70724
|
], RuleStartState.prototype, "stateType", null);
|
|
70662
70725
|
exports.RuleStartState = RuleStartState;
|
|
70663
70726
|
|
|
70664
|
-
},{"../Decorators":
|
|
70727
|
+
},{"../Decorators":298,"./ATNState":337,"./ATNStateType":338}],384:[function(require,module,exports){
|
|
70665
70728
|
"use strict";
|
|
70666
70729
|
/*!
|
|
70667
70730
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70700,7 +70763,7 @@ __decorate([
|
|
|
70700
70763
|
], RuleStopState.prototype, "stateType", null);
|
|
70701
70764
|
exports.RuleStopState = RuleStopState;
|
|
70702
70765
|
|
|
70703
|
-
},{"../Decorators":
|
|
70766
|
+
},{"../Decorators":298,"./ATNState":337,"./ATNStateType":338}],385:[function(require,module,exports){
|
|
70704
70767
|
"use strict";
|
|
70705
70768
|
/*!
|
|
70706
70769
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70756,7 +70819,7 @@ RuleTransition = __decorate([
|
|
|
70756
70819
|
], RuleTransition);
|
|
70757
70820
|
exports.RuleTransition = RuleTransition;
|
|
70758
70821
|
|
|
70759
|
-
},{"../Decorators":
|
|
70822
|
+
},{"../Decorators":298,"./Transition":393}],386:[function(require,module,exports){
|
|
70760
70823
|
"use strict";
|
|
70761
70824
|
/*!
|
|
70762
70825
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71236,7 +71299,7 @@ exports.SemanticContext = SemanticContext;
|
|
|
71236
71299
|
SemanticContext.OR = OR;
|
|
71237
71300
|
})(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
|
|
71238
71301
|
|
|
71239
|
-
},{"../Decorators":
|
|
71302
|
+
},{"../Decorators":298,"../misc/Array2DHashSet":402,"../misc/ArrayEqualityComparator":403,"../misc/MurmurHash":413,"../misc/ObjectEqualityComparator":414,"../misc/Utils":417}],387:[function(require,module,exports){
|
|
71240
71303
|
"use strict";
|
|
71241
71304
|
/*!
|
|
71242
71305
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71302,7 +71365,7 @@ SetTransition = __decorate([
|
|
|
71302
71365
|
], SetTransition);
|
|
71303
71366
|
exports.SetTransition = SetTransition;
|
|
71304
71367
|
|
|
71305
|
-
},{"../Decorators":
|
|
71368
|
+
},{"../Decorators":298,"../Token":323,"../misc/IntervalSet":411,"./Transition":393}],388:[function(require,module,exports){
|
|
71306
71369
|
"use strict";
|
|
71307
71370
|
/*!
|
|
71308
71371
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71338,7 +71401,7 @@ SimulatorState = __decorate([
|
|
|
71338
71401
|
], SimulatorState);
|
|
71339
71402
|
exports.SimulatorState = SimulatorState;
|
|
71340
71403
|
|
|
71341
|
-
},{"../Decorators":
|
|
71404
|
+
},{"../Decorators":298,"../ParserRuleContext":314}],389:[function(require,module,exports){
|
|
71342
71405
|
"use strict";
|
|
71343
71406
|
/*!
|
|
71344
71407
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71366,7 +71429,7 @@ __decorate([
|
|
|
71366
71429
|
], StarBlockStartState.prototype, "stateType", null);
|
|
71367
71430
|
exports.StarBlockStartState = StarBlockStartState;
|
|
71368
71431
|
|
|
71369
|
-
},{"../Decorators":
|
|
71432
|
+
},{"../Decorators":298,"./ATNStateType":338,"./BlockStartState":346}],390:[function(require,module,exports){
|
|
71370
71433
|
"use strict";
|
|
71371
71434
|
/*!
|
|
71372
71435
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71423,7 +71486,7 @@ __decorate([
|
|
|
71423
71486
|
], StarLoopEntryState.prototype, "stateType", null);
|
|
71424
71487
|
exports.StarLoopEntryState = StarLoopEntryState;
|
|
71425
71488
|
|
|
71426
|
-
},{"../Decorators":
|
|
71489
|
+
},{"../Decorators":298,"../misc/BitSet":405,"./ATNStateType":338,"./DecisionState":351}],391:[function(require,module,exports){
|
|
71427
71490
|
"use strict";
|
|
71428
71491
|
/*!
|
|
71429
71492
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71454,7 +71517,7 @@ __decorate([
|
|
|
71454
71517
|
], StarLoopbackState.prototype, "stateType", null);
|
|
71455
71518
|
exports.StarLoopbackState = StarLoopbackState;
|
|
71456
71519
|
|
|
71457
|
-
},{"../Decorators":
|
|
71520
|
+
},{"../Decorators":298,"./ATNState":337,"./ATNStateType":338}],392:[function(require,module,exports){
|
|
71458
71521
|
"use strict";
|
|
71459
71522
|
/*!
|
|
71460
71523
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71483,7 +71546,7 @@ __decorate([
|
|
|
71483
71546
|
], TokensStartState.prototype, "stateType", null);
|
|
71484
71547
|
exports.TokensStartState = TokensStartState;
|
|
71485
71548
|
|
|
71486
|
-
},{"../Decorators":
|
|
71549
|
+
},{"../Decorators":298,"./ATNStateType":338,"./DecisionState":351}],393:[function(require,module,exports){
|
|
71487
71550
|
"use strict";
|
|
71488
71551
|
/*!
|
|
71489
71552
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71557,7 +71620,7 @@ Transition = __decorate([
|
|
|
71557
71620
|
], Transition);
|
|
71558
71621
|
exports.Transition = Transition;
|
|
71559
71622
|
|
|
71560
|
-
},{"../Decorators":
|
|
71623
|
+
},{"../Decorators":298}],394:[function(require,module,exports){
|
|
71561
71624
|
"use strict";
|
|
71562
71625
|
/*!
|
|
71563
71626
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71605,7 +71668,7 @@ WildcardTransition = __decorate([
|
|
|
71605
71668
|
], WildcardTransition);
|
|
71606
71669
|
exports.WildcardTransition = WildcardTransition;
|
|
71607
71670
|
|
|
71608
|
-
},{"../Decorators":
|
|
71671
|
+
},{"../Decorators":298,"./Transition":393}],395:[function(require,module,exports){
|
|
71609
71672
|
"use strict";
|
|
71610
71673
|
/*!
|
|
71611
71674
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71647,7 +71710,7 @@ class AcceptStateInfo {
|
|
|
71647
71710
|
}
|
|
71648
71711
|
exports.AcceptStateInfo = AcceptStateInfo;
|
|
71649
71712
|
|
|
71650
|
-
},{}],
|
|
71713
|
+
},{}],396:[function(require,module,exports){
|
|
71651
71714
|
"use strict";
|
|
71652
71715
|
/*!
|
|
71653
71716
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71822,7 +71885,7 @@ DFA = __decorate([
|
|
|
71822
71885
|
], DFA);
|
|
71823
71886
|
exports.DFA = DFA;
|
|
71824
71887
|
|
|
71825
|
-
},{"../Decorators":
|
|
71888
|
+
},{"../Decorators":298,"../VocabularyImpl":329,"../atn/ATNConfigSet":333,"../atn/StarLoopEntryState":390,"../misc/Array2DHashSet":402,"../misc/ObjectEqualityComparator":414,"./DFASerializer":397,"./DFAState":398,"./LexerDFASerializer":399}],397:[function(require,module,exports){
|
|
71826
71889
|
"use strict";
|
|
71827
71890
|
/*!
|
|
71828
71891
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71964,7 +72027,7 @@ __decorate([
|
|
|
71964
72027
|
], DFASerializer.prototype, "toString", null);
|
|
71965
72028
|
exports.DFASerializer = DFASerializer;
|
|
71966
72029
|
|
|
71967
|
-
},{"../Decorators":
|
|
72030
|
+
},{"../Decorators":298,"../Recognizer":318,"../VocabularyImpl":329,"../atn/ATNSimulator":336,"../atn/PredictionContext":378}],398:[function(require,module,exports){
|
|
71968
72031
|
"use strict";
|
|
71969
72032
|
/*!
|
|
71970
72033
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72195,7 +72258,7 @@ exports.DFAState = DFAState;
|
|
|
72195
72258
|
DFAState.PredPrediction = PredPrediction;
|
|
72196
72259
|
})(DFAState = exports.DFAState || (exports.DFAState = {}));
|
|
72197
72260
|
|
|
72198
|
-
},{"../Decorators":
|
|
72261
|
+
},{"../Decorators":298,"../atn/ATN":331,"../atn/PredictionContext":378,"../misc/BitSet":405,"../misc/MurmurHash":413,"assert":441}],399:[function(require,module,exports){
|
|
72199
72262
|
"use strict";
|
|
72200
72263
|
/*!
|
|
72201
72264
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72232,7 +72295,7 @@ LexerDFASerializer = __decorate([
|
|
|
72232
72295
|
], LexerDFASerializer);
|
|
72233
72296
|
exports.LexerDFASerializer = LexerDFASerializer;
|
|
72234
72297
|
|
|
72235
|
-
},{"../Decorators":
|
|
72298
|
+
},{"../Decorators":298,"../VocabularyImpl":329,"./DFASerializer":397}],400:[function(require,module,exports){
|
|
72236
72299
|
"use strict";
|
|
72237
72300
|
/*!
|
|
72238
72301
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72298,7 +72361,7 @@ __exportStar(require("./Vocabulary"), exports);
|
|
|
72298
72361
|
__exportStar(require("./VocabularyImpl"), exports);
|
|
72299
72362
|
__exportStar(require("./WritableToken"), exports);
|
|
72300
72363
|
|
|
72301
|
-
},{"./ANTLRErrorListener":
|
|
72364
|
+
},{"./ANTLRErrorListener":285,"./ANTLRErrorStrategy":286,"./ANTLRInputStream":287,"./BailErrorStrategy":288,"./BufferedTokenStream":289,"./CharStream":290,"./CharStreams":291,"./CodePointBuffer":292,"./CodePointCharStream":293,"./CommonToken":294,"./CommonTokenFactory":295,"./CommonTokenStream":296,"./ConsoleErrorListener":297,"./DefaultErrorStrategy":299,"./Dependents":300,"./DiagnosticErrorListener":301,"./FailedPredicateException":302,"./InputMismatchException":303,"./IntStream":304,"./InterpreterRuleContext":305,"./Lexer":306,"./LexerInterpreter":307,"./LexerNoViableAltException":308,"./ListTokenSource":309,"./NoViableAltException":310,"./Parser":311,"./ParserErrorListener":312,"./ParserInterpreter":313,"./ParserRuleContext":314,"./ProxyErrorListener":315,"./ProxyParserErrorListener":316,"./RecognitionException":317,"./Recognizer":318,"./RuleContext":319,"./RuleContextWithAltNum":320,"./RuleDependency":321,"./RuleVersion":322,"./Token":323,"./TokenFactory":324,"./TokenSource":325,"./TokenStream":326,"./TokenStreamRewriter":327,"./Vocabulary":328,"./VocabularyImpl":329,"./WritableToken":330}],401:[function(require,module,exports){
|
|
72302
72365
|
"use strict";
|
|
72303
72366
|
/*!
|
|
72304
72367
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72381,7 +72444,7 @@ class Array2DHashMap {
|
|
|
72381
72444
|
}
|
|
72382
72445
|
exports.Array2DHashMap = Array2DHashMap;
|
|
72383
72446
|
|
|
72384
|
-
},{"./Array2DHashSet":
|
|
72447
|
+
},{"./Array2DHashSet":402}],402:[function(require,module,exports){
|
|
72385
72448
|
"use strict";
|
|
72386
72449
|
/*!
|
|
72387
72450
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72748,7 +72811,7 @@ __decorate([
|
|
|
72748
72811
|
], Array2DHashSet.prototype, "createBuckets", null);
|
|
72749
72812
|
exports.Array2DHashSet = Array2DHashSet;
|
|
72750
72813
|
|
|
72751
|
-
},{"../Decorators":
|
|
72814
|
+
},{"../Decorators":298,"./DefaultEqualityComparator":407,"./MurmurHash":413,"assert":441}],403:[function(require,module,exports){
|
|
72752
72815
|
"use strict";
|
|
72753
72816
|
/*!
|
|
72754
72817
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72820,7 +72883,7 @@ __decorate([
|
|
|
72820
72883
|
], ArrayEqualityComparator.prototype, "equals", null);
|
|
72821
72884
|
exports.ArrayEqualityComparator = ArrayEqualityComparator;
|
|
72822
72885
|
|
|
72823
|
-
},{"../Decorators":
|
|
72886
|
+
},{"../Decorators":298,"./MurmurHash":413,"./ObjectEqualityComparator":414}],404:[function(require,module,exports){
|
|
72824
72887
|
"use strict";
|
|
72825
72888
|
/*!
|
|
72826
72889
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72890,7 +72953,7 @@ var Arrays;
|
|
|
72890
72953
|
Arrays.toString = toString;
|
|
72891
72954
|
})(Arrays = exports.Arrays || (exports.Arrays = {}));
|
|
72892
72955
|
|
|
72893
|
-
},{}],
|
|
72956
|
+
},{}],405:[function(require,module,exports){
|
|
72894
72957
|
"use strict";
|
|
72895
72958
|
/*!
|
|
72896
72959
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73562,7 +73625,7 @@ class BitSetIterator {
|
|
|
73562
73625
|
[Symbol.iterator]() { return this; }
|
|
73563
73626
|
}
|
|
73564
73627
|
|
|
73565
|
-
},{"./MurmurHash":
|
|
73628
|
+
},{"./MurmurHash":413,"util":505}],406:[function(require,module,exports){
|
|
73566
73629
|
"use strict";
|
|
73567
73630
|
/*!
|
|
73568
73631
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73583,7 +73646,7 @@ function isSupplementaryCodePoint(ch) {
|
|
|
73583
73646
|
}
|
|
73584
73647
|
exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
|
|
73585
73648
|
|
|
73586
|
-
},{}],
|
|
73649
|
+
},{}],407:[function(require,module,exports){
|
|
73587
73650
|
"use strict";
|
|
73588
73651
|
/*!
|
|
73589
73652
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73654,7 +73717,7 @@ __decorate([
|
|
|
73654
73717
|
], DefaultEqualityComparator.prototype, "equals", null);
|
|
73655
73718
|
exports.DefaultEqualityComparator = DefaultEqualityComparator;
|
|
73656
73719
|
|
|
73657
|
-
},{"../Decorators":
|
|
73720
|
+
},{"../Decorators":298,"./MurmurHash":413,"./ObjectEqualityComparator":414}],408:[function(require,module,exports){
|
|
73658
73721
|
"use strict";
|
|
73659
73722
|
/*!
|
|
73660
73723
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73948,7 +74011,7 @@ __decorate([
|
|
|
73948
74011
|
], IntegerList.prototype, "toString", null);
|
|
73949
74012
|
exports.IntegerList = IntegerList;
|
|
73950
74013
|
|
|
73951
|
-
},{"../Decorators":
|
|
74014
|
+
},{"../Decorators":298,"./Arrays":404}],409:[function(require,module,exports){
|
|
73952
74015
|
"use strict";
|
|
73953
74016
|
/*!
|
|
73954
74017
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73978,7 +74041,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
|
|
|
73978
74041
|
}
|
|
73979
74042
|
exports.IntegerStack = IntegerStack;
|
|
73980
74043
|
|
|
73981
|
-
},{"./IntegerList":
|
|
74044
|
+
},{"./IntegerList":408}],410:[function(require,module,exports){
|
|
73982
74045
|
"use strict";
|
|
73983
74046
|
/*!
|
|
73984
74047
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74121,7 +74184,7 @@ __decorate([
|
|
|
74121
74184
|
], Interval.prototype, "toString", null);
|
|
74122
74185
|
exports.Interval = Interval;
|
|
74123
74186
|
|
|
74124
|
-
},{"../Decorators":
|
|
74187
|
+
},{"../Decorators":298}],411:[function(require,module,exports){
|
|
74125
74188
|
"use strict";
|
|
74126
74189
|
/*!
|
|
74127
74190
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74767,7 +74830,7 @@ __decorate([
|
|
|
74767
74830
|
], IntervalSet, "subtract", null);
|
|
74768
74831
|
exports.IntervalSet = IntervalSet;
|
|
74769
74832
|
|
|
74770
|
-
},{"../Decorators":
|
|
74833
|
+
},{"../Decorators":298,"../Lexer":306,"../Token":323,"./ArrayEqualityComparator":403,"./IntegerList":408,"./Interval":410,"./MurmurHash":413}],412:[function(require,module,exports){
|
|
74771
74834
|
"use strict";
|
|
74772
74835
|
/*!
|
|
74773
74836
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74800,7 +74863,7 @@ class MultiMap extends Map {
|
|
|
74800
74863
|
}
|
|
74801
74864
|
exports.MultiMap = MultiMap;
|
|
74802
74865
|
|
|
74803
|
-
},{}],
|
|
74866
|
+
},{}],413:[function(require,module,exports){
|
|
74804
74867
|
"use strict";
|
|
74805
74868
|
/*!
|
|
74806
74869
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74915,7 +74978,7 @@ var MurmurHash;
|
|
|
74915
74978
|
}
|
|
74916
74979
|
})(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
|
|
74917
74980
|
|
|
74918
|
-
},{}],
|
|
74981
|
+
},{}],414:[function(require,module,exports){
|
|
74919
74982
|
"use strict";
|
|
74920
74983
|
/*!
|
|
74921
74984
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74974,7 +75037,7 @@ __decorate([
|
|
|
74974
75037
|
], ObjectEqualityComparator.prototype, "equals", null);
|
|
74975
75038
|
exports.ObjectEqualityComparator = ObjectEqualityComparator;
|
|
74976
75039
|
|
|
74977
|
-
},{"../Decorators":
|
|
75040
|
+
},{"../Decorators":298}],415:[function(require,module,exports){
|
|
74978
75041
|
"use strict";
|
|
74979
75042
|
/*!
|
|
74980
75043
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75003,7 +75066,7 @@ class ParseCancellationException extends Error {
|
|
|
75003
75066
|
}
|
|
75004
75067
|
exports.ParseCancellationException = ParseCancellationException;
|
|
75005
75068
|
|
|
75006
|
-
},{}],
|
|
75069
|
+
},{}],416:[function(require,module,exports){
|
|
75007
75070
|
"use strict";
|
|
75008
75071
|
/*!
|
|
75009
75072
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75057,7 +75120,7 @@ class UUID {
|
|
|
75057
75120
|
}
|
|
75058
75121
|
exports.UUID = UUID;
|
|
75059
75122
|
|
|
75060
|
-
},{"./MurmurHash":
|
|
75123
|
+
},{"./MurmurHash":413}],417:[function(require,module,exports){
|
|
75061
75124
|
"use strict";
|
|
75062
75125
|
/*!
|
|
75063
75126
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75232,7 +75295,7 @@ exports.toCharArray = toCharArray;
|
|
|
75232
75295
|
// return s;
|
|
75233
75296
|
// }
|
|
75234
75297
|
|
|
75235
|
-
},{}],
|
|
75298
|
+
},{}],418:[function(require,module,exports){
|
|
75236
75299
|
"use strict";
|
|
75237
75300
|
/*!
|
|
75238
75301
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75377,7 +75440,7 @@ __decorate([
|
|
|
75377
75440
|
], AbstractParseTreeVisitor.prototype, "shouldVisitNextChild", null);
|
|
75378
75441
|
exports.AbstractParseTreeVisitor = AbstractParseTreeVisitor;
|
|
75379
75442
|
|
|
75380
|
-
},{"../Decorators":
|
|
75443
|
+
},{"../Decorators":298}],419:[function(require,module,exports){
|
|
75381
75444
|
"use strict";
|
|
75382
75445
|
/*!
|
|
75383
75446
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75413,7 +75476,7 @@ __decorate([
|
|
|
75413
75476
|
], ErrorNode.prototype, "accept", null);
|
|
75414
75477
|
exports.ErrorNode = ErrorNode;
|
|
75415
75478
|
|
|
75416
|
-
},{"../Decorators":
|
|
75479
|
+
},{"../Decorators":298,"./TerminalNode":421}],420:[function(require,module,exports){
|
|
75417
75480
|
"use strict";
|
|
75418
75481
|
/*!
|
|
75419
75482
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75425,7 +75488,7 @@ class RuleNode {
|
|
|
75425
75488
|
}
|
|
75426
75489
|
exports.RuleNode = RuleNode;
|
|
75427
75490
|
|
|
75428
|
-
},{}],
|
|
75491
|
+
},{}],421:[function(require,module,exports){
|
|
75429
75492
|
"use strict";
|
|
75430
75493
|
/*!
|
|
75431
75494
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75517,7 +75580,7 @@ __decorate([
|
|
|
75517
75580
|
], TerminalNode.prototype, "toString", null);
|
|
75518
75581
|
exports.TerminalNode = TerminalNode;
|
|
75519
75582
|
|
|
75520
|
-
},{"../Decorators":
|
|
75583
|
+
},{"../Decorators":298,"../Token":323,"../misc/Interval":410}],422:[function(require,module,exports){
|
|
75521
75584
|
"use strict";
|
|
75522
75585
|
/*!
|
|
75523
75586
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75761,7 +75824,7 @@ __decorate([
|
|
|
75761
75824
|
], Trees, "getRootOfSubtreeEnclosingRegion", null);
|
|
75762
75825
|
exports.Trees = Trees;
|
|
75763
75826
|
|
|
75764
|
-
},{"../CommonToken":
|
|
75827
|
+
},{"../CommonToken":294,"../Decorators":298,"../Parser":311,"../ParserRuleContext":314,"../Token":323,"../atn/ATN":331,"../misc/Utils":417,"./ErrorNode":419,"./RuleNode":420,"./TerminalNode":421}],423:[function(require,module,exports){
|
|
75765
75828
|
"use strict";
|
|
75766
75829
|
/*!
|
|
75767
75830
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75785,7 +75848,7 @@ class Chunk {
|
|
|
75785
75848
|
}
|
|
75786
75849
|
exports.Chunk = Chunk;
|
|
75787
75850
|
|
|
75788
|
-
},{}],
|
|
75851
|
+
},{}],424:[function(require,module,exports){
|
|
75789
75852
|
"use strict";
|
|
75790
75853
|
/*!
|
|
75791
75854
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75965,7 +76028,7 @@ ParseTreeMatch = __decorate([
|
|
|
75965
76028
|
], ParseTreeMatch);
|
|
75966
76029
|
exports.ParseTreeMatch = ParseTreeMatch;
|
|
75967
76030
|
|
|
75968
|
-
},{"../../Decorators":
|
|
76031
|
+
},{"../../Decorators":298}],425:[function(require,module,exports){
|
|
75969
76032
|
"use strict";
|
|
75970
76033
|
/*!
|
|
75971
76034
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76123,7 +76186,7 @@ ParseTreePattern = __decorate([
|
|
|
76123
76186
|
], ParseTreePattern);
|
|
76124
76187
|
exports.ParseTreePattern = ParseTreePattern;
|
|
76125
76188
|
|
|
76126
|
-
},{"../../Decorators":
|
|
76189
|
+
},{"../../Decorators":298,"../xpath/XPath":431}],426:[function(require,module,exports){
|
|
76127
76190
|
"use strict";
|
|
76128
76191
|
/*!
|
|
76129
76192
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76601,7 +76664,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
|
|
|
76601
76664
|
ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
|
|
76602
76665
|
})(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
|
|
76603
76666
|
|
|
76604
|
-
},{"../../BailErrorStrategy":
|
|
76667
|
+
},{"../../BailErrorStrategy":288,"../../CharStreams":291,"../../CommonTokenStream":296,"../../Decorators":298,"../../ListTokenSource":309,"../../ParserInterpreter":313,"../../ParserRuleContext":314,"../../RecognitionException":317,"../../Token":323,"../../misc/MultiMap":412,"../../misc/ParseCancellationException":415,"../RuleNode":420,"../TerminalNode":421,"./ParseTreeMatch":424,"./ParseTreePattern":425,"./RuleTagToken":427,"./TagChunk":428,"./TextChunk":429,"./TokenTagToken":430}],427:[function(require,module,exports){
|
|
76605
76668
|
"use strict";
|
|
76606
76669
|
/*!
|
|
76607
76670
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76799,7 +76862,7 @@ RuleTagToken = __decorate([
|
|
|
76799
76862
|
], RuleTagToken);
|
|
76800
76863
|
exports.RuleTagToken = RuleTagToken;
|
|
76801
76864
|
|
|
76802
|
-
},{"../../Decorators":
|
|
76865
|
+
},{"../../Decorators":298,"../../Token":323}],428:[function(require,module,exports){
|
|
76803
76866
|
"use strict";
|
|
76804
76867
|
/*!
|
|
76805
76868
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76886,7 +76949,7 @@ __decorate([
|
|
|
76886
76949
|
], TagChunk.prototype, "toString", null);
|
|
76887
76950
|
exports.TagChunk = TagChunk;
|
|
76888
76951
|
|
|
76889
|
-
},{"../../Decorators":
|
|
76952
|
+
},{"../../Decorators":298,"./Chunk":423}],429:[function(require,module,exports){
|
|
76890
76953
|
"use strict";
|
|
76891
76954
|
/*!
|
|
76892
76955
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76956,7 +77019,7 @@ TextChunk = __decorate([
|
|
|
76956
77019
|
], TextChunk);
|
|
76957
77020
|
exports.TextChunk = TextChunk;
|
|
76958
77021
|
|
|
76959
|
-
},{"../../Decorators":
|
|
77022
|
+
},{"../../Decorators":298,"./Chunk":423}],430:[function(require,module,exports){
|
|
76960
77023
|
"use strict";
|
|
76961
77024
|
/*!
|
|
76962
77025
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77051,7 +77114,7 @@ TokenTagToken = __decorate([
|
|
|
77051
77114
|
], TokenTagToken);
|
|
77052
77115
|
exports.TokenTagToken = TokenTagToken;
|
|
77053
77116
|
|
|
77054
|
-
},{"../../CommonToken":
|
|
77117
|
+
},{"../../CommonToken":294,"../../Decorators":298}],431:[function(require,module,exports){
|
|
77055
77118
|
"use strict";
|
|
77056
77119
|
/*!
|
|
77057
77120
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77248,7 +77311,7 @@ exports.XPath = XPath;
|
|
|
77248
77311
|
XPath.WILDCARD = "*"; // word not operator/separator
|
|
77249
77312
|
XPath.NOT = "!"; // word for invert operator
|
|
77250
77313
|
|
|
77251
|
-
},{"../../CharStreams":
|
|
77314
|
+
},{"../../CharStreams":291,"../../CommonTokenStream":296,"../../LexerNoViableAltException":308,"../../ParserRuleContext":314,"../../Token":323,"./XPathLexer":433,"./XPathLexerErrorListener":434,"./XPathRuleAnywhereElement":435,"./XPathRuleElement":436,"./XPathTokenAnywhereElement":437,"./XPathTokenElement":438,"./XPathWildcardAnywhereElement":439,"./XPathWildcardElement":440}],432:[function(require,module,exports){
|
|
77252
77315
|
"use strict";
|
|
77253
77316
|
/*!
|
|
77254
77317
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77283,7 +77346,7 @@ __decorate([
|
|
|
77283
77346
|
], XPathElement.prototype, "toString", null);
|
|
77284
77347
|
exports.XPathElement = XPathElement;
|
|
77285
77348
|
|
|
77286
|
-
},{"../../Decorators":
|
|
77349
|
+
},{"../../Decorators":298}],433:[function(require,module,exports){
|
|
77287
77350
|
"use strict";
|
|
77288
77351
|
// Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
77289
77352
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -77758,7 +77821,7 @@ XPathLexer._serializedATN = Utils.join([
|
|
|
77758
77821
|
XPathLexer._serializedATNSegment1,
|
|
77759
77822
|
], "");
|
|
77760
77823
|
|
|
77761
|
-
},{"../../Lexer":
|
|
77824
|
+
},{"../../Lexer":306,"../../VocabularyImpl":329,"../../atn/ATNDeserializer":335,"../../atn/LexerATNSimulator":356,"../../misc/Utils":417}],434:[function(require,module,exports){
|
|
77762
77825
|
"use strict";
|
|
77763
77826
|
/*!
|
|
77764
77827
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77783,7 +77846,7 @@ __decorate([
|
|
|
77783
77846
|
], XPathLexerErrorListener.prototype, "syntaxError", null);
|
|
77784
77847
|
exports.XPathLexerErrorListener = XPathLexerErrorListener;
|
|
77785
77848
|
|
|
77786
|
-
},{"../../Decorators":
|
|
77849
|
+
},{"../../Decorators":298}],435:[function(require,module,exports){
|
|
77787
77850
|
"use strict";
|
|
77788
77851
|
/*!
|
|
77789
77852
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77817,7 +77880,7 @@ __decorate([
|
|
|
77817
77880
|
], XPathRuleAnywhereElement.prototype, "evaluate", null);
|
|
77818
77881
|
exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
|
|
77819
77882
|
|
|
77820
|
-
},{"../../Decorators":
|
|
77883
|
+
},{"../../Decorators":298,"../Trees":422,"./XPathElement":432}],436:[function(require,module,exports){
|
|
77821
77884
|
"use strict";
|
|
77822
77885
|
/*!
|
|
77823
77886
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77860,7 +77923,7 @@ __decorate([
|
|
|
77860
77923
|
], XPathRuleElement.prototype, "evaluate", null);
|
|
77861
77924
|
exports.XPathRuleElement = XPathRuleElement;
|
|
77862
77925
|
|
|
77863
|
-
},{"../../Decorators":
|
|
77926
|
+
},{"../../Decorators":298,"../../ParserRuleContext":314,"../Trees":422,"./XPathElement":432}],437:[function(require,module,exports){
|
|
77864
77927
|
"use strict";
|
|
77865
77928
|
/*!
|
|
77866
77929
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77892,7 +77955,7 @@ __decorate([
|
|
|
77892
77955
|
], XPathTokenAnywhereElement.prototype, "evaluate", null);
|
|
77893
77956
|
exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
|
|
77894
77957
|
|
|
77895
|
-
},{"../../Decorators":
|
|
77958
|
+
},{"../../Decorators":298,"../Trees":422,"./XPathElement":432}],438:[function(require,module,exports){
|
|
77896
77959
|
"use strict";
|
|
77897
77960
|
/*!
|
|
77898
77961
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77935,7 +77998,7 @@ __decorate([
|
|
|
77935
77998
|
], XPathTokenElement.prototype, "evaluate", null);
|
|
77936
77999
|
exports.XPathTokenElement = XPathTokenElement;
|
|
77937
78000
|
|
|
77938
|
-
},{"../../Decorators":
|
|
78001
|
+
},{"../../Decorators":298,"../TerminalNode":421,"../Trees":422,"./XPathElement":432}],439:[function(require,module,exports){
|
|
77939
78002
|
"use strict";
|
|
77940
78003
|
/*!
|
|
77941
78004
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77971,7 +78034,7 @@ __decorate([
|
|
|
77971
78034
|
], XPathWildcardAnywhereElement.prototype, "evaluate", null);
|
|
77972
78035
|
exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
|
|
77973
78036
|
|
|
77974
|
-
},{"../../Decorators":
|
|
78037
|
+
},{"../../Decorators":298,"../Trees":422,"./XPath":431,"./XPathElement":432}],440:[function(require,module,exports){
|
|
77975
78038
|
"use strict";
|
|
77976
78039
|
/*!
|
|
77977
78040
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -78011,7 +78074,7 @@ __decorate([
|
|
|
78011
78074
|
], XPathWildcardElement.prototype, "evaluate", null);
|
|
78012
78075
|
exports.XPathWildcardElement = XPathWildcardElement;
|
|
78013
78076
|
|
|
78014
|
-
},{"../../Decorators":
|
|
78077
|
+
},{"../../Decorators":298,"../Trees":422,"./XPath":431,"./XPathElement":432}],441:[function(require,module,exports){
|
|
78015
78078
|
(function (global){(function (){
|
|
78016
78079
|
'use strict';
|
|
78017
78080
|
|
|
@@ -78521,7 +78584,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
78521
78584
|
};
|
|
78522
78585
|
|
|
78523
78586
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
78524
|
-
},{"object.assign/polyfill":
|
|
78587
|
+
},{"object.assign/polyfill":498,"util/":444}],442:[function(require,module,exports){
|
|
78525
78588
|
if (typeof Object.create === 'function') {
|
|
78526
78589
|
// implementation from standard node.js 'util' module
|
|
78527
78590
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -78546,14 +78609,14 @@ if (typeof Object.create === 'function') {
|
|
|
78546
78609
|
}
|
|
78547
78610
|
}
|
|
78548
78611
|
|
|
78549
|
-
},{}],
|
|
78612
|
+
},{}],443:[function(require,module,exports){
|
|
78550
78613
|
module.exports = function isBuffer(arg) {
|
|
78551
78614
|
return arg && typeof arg === 'object'
|
|
78552
78615
|
&& typeof arg.copy === 'function'
|
|
78553
78616
|
&& typeof arg.fill === 'function'
|
|
78554
78617
|
&& typeof arg.readUInt8 === 'function';
|
|
78555
78618
|
}
|
|
78556
|
-
},{}],
|
|
78619
|
+
},{}],444:[function(require,module,exports){
|
|
78557
78620
|
(function (process,global){(function (){
|
|
78558
78621
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
78559
78622
|
//
|
|
@@ -79143,7 +79206,7 @@ function hasOwnProperty(obj, prop) {
|
|
|
79143
79206
|
}
|
|
79144
79207
|
|
|
79145
79208
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
79146
|
-
},{"./support/isBuffer":
|
|
79209
|
+
},{"./support/isBuffer":443,"_process":500,"inherits":442}],445:[function(require,module,exports){
|
|
79147
79210
|
(function (global){(function (){
|
|
79148
79211
|
'use strict';
|
|
79149
79212
|
|
|
@@ -79164,7 +79227,7 @@ module.exports = function availableTypedArrays() {
|
|
|
79164
79227
|
};
|
|
79165
79228
|
|
|
79166
79229
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
79167
|
-
},{"possible-typed-array-names":
|
|
79230
|
+
},{"possible-typed-array-names":499}],446:[function(require,module,exports){
|
|
79168
79231
|
(function (process,global){(function (){
|
|
79169
79232
|
module.exports = process.hrtime || hrtime
|
|
79170
79233
|
|
|
@@ -79195,7 +79258,7 @@ function hrtime(previousTimestamp){
|
|
|
79195
79258
|
return [seconds,nanoseconds]
|
|
79196
79259
|
}
|
|
79197
79260
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
79198
|
-
},{"_process":
|
|
79261
|
+
},{"_process":500}],447:[function(require,module,exports){
|
|
79199
79262
|
'use strict';
|
|
79200
79263
|
|
|
79201
79264
|
var bind = require('function-bind');
|
|
@@ -79207,7 +79270,7 @@ var $reflectApply = require('./reflectApply');
|
|
|
79207
79270
|
/** @type {import('./actualApply')} */
|
|
79208
79271
|
module.exports = $reflectApply || bind.call($call, $apply);
|
|
79209
79272
|
|
|
79210
|
-
},{"./functionApply":
|
|
79273
|
+
},{"./functionApply":449,"./functionCall":450,"./reflectApply":452,"function-bind":468}],448:[function(require,module,exports){
|
|
79211
79274
|
'use strict';
|
|
79212
79275
|
|
|
79213
79276
|
var bind = require('function-bind');
|
|
@@ -79219,19 +79282,19 @@ module.exports = function applyBind() {
|
|
|
79219
79282
|
return actualApply(bind, $apply, arguments);
|
|
79220
79283
|
};
|
|
79221
79284
|
|
|
79222
|
-
},{"./actualApply":
|
|
79285
|
+
},{"./actualApply":447,"./functionApply":449,"function-bind":468}],449:[function(require,module,exports){
|
|
79223
79286
|
'use strict';
|
|
79224
79287
|
|
|
79225
79288
|
/** @type {import('./functionApply')} */
|
|
79226
79289
|
module.exports = Function.prototype.apply;
|
|
79227
79290
|
|
|
79228
|
-
},{}],
|
|
79291
|
+
},{}],450:[function(require,module,exports){
|
|
79229
79292
|
'use strict';
|
|
79230
79293
|
|
|
79231
79294
|
/** @type {import('./functionCall')} */
|
|
79232
79295
|
module.exports = Function.prototype.call;
|
|
79233
79296
|
|
|
79234
|
-
},{}],
|
|
79297
|
+
},{}],451:[function(require,module,exports){
|
|
79235
79298
|
'use strict';
|
|
79236
79299
|
|
|
79237
79300
|
var bind = require('function-bind');
|
|
@@ -79248,13 +79311,13 @@ module.exports = function callBindBasic(args) {
|
|
|
79248
79311
|
return $actualApply(bind, $call, args);
|
|
79249
79312
|
};
|
|
79250
79313
|
|
|
79251
|
-
},{"./actualApply":
|
|
79314
|
+
},{"./actualApply":447,"./functionCall":450,"es-errors/type":463,"function-bind":468}],452:[function(require,module,exports){
|
|
79252
79315
|
'use strict';
|
|
79253
79316
|
|
|
79254
79317
|
/** @type {import('./reflectApply')} */
|
|
79255
79318
|
module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
|
|
79256
79319
|
|
|
79257
|
-
},{}],
|
|
79320
|
+
},{}],453:[function(require,module,exports){
|
|
79258
79321
|
'use strict';
|
|
79259
79322
|
|
|
79260
79323
|
var setFunctionLength = require('set-function-length');
|
|
@@ -79280,7 +79343,7 @@ if ($defineProperty) {
|
|
|
79280
79343
|
module.exports.apply = applyBind;
|
|
79281
79344
|
}
|
|
79282
79345
|
|
|
79283
|
-
},{"call-bind-apply-helpers":
|
|
79346
|
+
},{"call-bind-apply-helpers":451,"call-bind-apply-helpers/applyBind":448,"es-define-property":457,"set-function-length":502}],454:[function(require,module,exports){
|
|
79284
79347
|
'use strict';
|
|
79285
79348
|
|
|
79286
79349
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -79301,7 +79364,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
79301
79364
|
return intrinsic;
|
|
79302
79365
|
};
|
|
79303
79366
|
|
|
79304
|
-
},{"call-bind-apply-helpers":
|
|
79367
|
+
},{"call-bind-apply-helpers":451,"get-intrinsic":469}],455:[function(require,module,exports){
|
|
79305
79368
|
'use strict';
|
|
79306
79369
|
|
|
79307
79370
|
var $defineProperty = require('es-define-property');
|
|
@@ -79359,7 +79422,7 @@ module.exports = function defineDataProperty(
|
|
|
79359
79422
|
}
|
|
79360
79423
|
};
|
|
79361
79424
|
|
|
79362
|
-
},{"es-define-property":
|
|
79425
|
+
},{"es-define-property":457,"es-errors/syntax":462,"es-errors/type":463,"gopd":474}],456:[function(require,module,exports){
|
|
79363
79426
|
'use strict';
|
|
79364
79427
|
|
|
79365
79428
|
var callBind = require('call-bind-apply-helpers');
|
|
@@ -79391,7 +79454,7 @@ module.exports = desc && typeof desc.get === 'function'
|
|
|
79391
79454
|
}
|
|
79392
79455
|
: false;
|
|
79393
79456
|
|
|
79394
|
-
},{"call-bind-apply-helpers":
|
|
79457
|
+
},{"call-bind-apply-helpers":451,"gopd":474}],457:[function(require,module,exports){
|
|
79395
79458
|
'use strict';
|
|
79396
79459
|
|
|
79397
79460
|
/** @type {import('.')} */
|
|
@@ -79407,55 +79470,55 @@ if ($defineProperty) {
|
|
|
79407
79470
|
|
|
79408
79471
|
module.exports = $defineProperty;
|
|
79409
79472
|
|
|
79410
|
-
},{}],
|
|
79473
|
+
},{}],458:[function(require,module,exports){
|
|
79411
79474
|
'use strict';
|
|
79412
79475
|
|
|
79413
79476
|
/** @type {import('./eval')} */
|
|
79414
79477
|
module.exports = EvalError;
|
|
79415
79478
|
|
|
79416
|
-
},{}],
|
|
79479
|
+
},{}],459:[function(require,module,exports){
|
|
79417
79480
|
'use strict';
|
|
79418
79481
|
|
|
79419
79482
|
/** @type {import('.')} */
|
|
79420
79483
|
module.exports = Error;
|
|
79421
79484
|
|
|
79422
|
-
},{}],
|
|
79485
|
+
},{}],460:[function(require,module,exports){
|
|
79423
79486
|
'use strict';
|
|
79424
79487
|
|
|
79425
79488
|
/** @type {import('./range')} */
|
|
79426
79489
|
module.exports = RangeError;
|
|
79427
79490
|
|
|
79428
|
-
},{}],
|
|
79491
|
+
},{}],461:[function(require,module,exports){
|
|
79429
79492
|
'use strict';
|
|
79430
79493
|
|
|
79431
79494
|
/** @type {import('./ref')} */
|
|
79432
79495
|
module.exports = ReferenceError;
|
|
79433
79496
|
|
|
79434
|
-
},{}],
|
|
79497
|
+
},{}],462:[function(require,module,exports){
|
|
79435
79498
|
'use strict';
|
|
79436
79499
|
|
|
79437
79500
|
/** @type {import('./syntax')} */
|
|
79438
79501
|
module.exports = SyntaxError;
|
|
79439
79502
|
|
|
79440
|
-
},{}],
|
|
79503
|
+
},{}],463:[function(require,module,exports){
|
|
79441
79504
|
'use strict';
|
|
79442
79505
|
|
|
79443
79506
|
/** @type {import('./type')} */
|
|
79444
79507
|
module.exports = TypeError;
|
|
79445
79508
|
|
|
79446
|
-
},{}],
|
|
79509
|
+
},{}],464:[function(require,module,exports){
|
|
79447
79510
|
'use strict';
|
|
79448
79511
|
|
|
79449
79512
|
/** @type {import('./uri')} */
|
|
79450
79513
|
module.exports = URIError;
|
|
79451
79514
|
|
|
79452
|
-
},{}],
|
|
79515
|
+
},{}],465:[function(require,module,exports){
|
|
79453
79516
|
'use strict';
|
|
79454
79517
|
|
|
79455
79518
|
/** @type {import('.')} */
|
|
79456
79519
|
module.exports = Object;
|
|
79457
79520
|
|
|
79458
|
-
},{}],
|
|
79521
|
+
},{}],466:[function(require,module,exports){
|
|
79459
79522
|
'use strict';
|
|
79460
79523
|
|
|
79461
79524
|
var isCallable = require('is-callable');
|
|
@@ -79526,7 +79589,7 @@ module.exports = function forEach(list, iterator, thisArg) {
|
|
|
79526
79589
|
}
|
|
79527
79590
|
};
|
|
79528
79591
|
|
|
79529
|
-
},{"is-callable":
|
|
79592
|
+
},{"is-callable":482}],467:[function(require,module,exports){
|
|
79530
79593
|
'use strict';
|
|
79531
79594
|
|
|
79532
79595
|
/* eslint no-invalid-this: 1 */
|
|
@@ -79612,14 +79675,14 @@ module.exports = function bind(that) {
|
|
|
79612
79675
|
return bound;
|
|
79613
79676
|
};
|
|
79614
79677
|
|
|
79615
|
-
},{}],
|
|
79678
|
+
},{}],468:[function(require,module,exports){
|
|
79616
79679
|
'use strict';
|
|
79617
79680
|
|
|
79618
79681
|
var implementation = require('./implementation');
|
|
79619
79682
|
|
|
79620
79683
|
module.exports = Function.prototype.bind || implementation;
|
|
79621
79684
|
|
|
79622
|
-
},{"./implementation":
|
|
79685
|
+
},{"./implementation":467}],469:[function(require,module,exports){
|
|
79623
79686
|
'use strict';
|
|
79624
79687
|
|
|
79625
79688
|
var undefined;
|
|
@@ -79999,7 +80062,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
79999
80062
|
return value;
|
|
80000
80063
|
};
|
|
80001
80064
|
|
|
80002
|
-
},{"call-bind-apply-helpers/functionApply":
|
|
80065
|
+
},{"call-bind-apply-helpers/functionApply":449,"call-bind-apply-helpers/functionCall":450,"es-define-property":457,"es-errors":459,"es-errors/eval":458,"es-errors/range":460,"es-errors/ref":461,"es-errors/syntax":462,"es-errors/type":463,"es-errors/uri":464,"es-object-atoms":465,"function-bind":468,"get-proto":472,"get-proto/Object.getPrototypeOf":470,"get-proto/Reflect.getPrototypeOf":471,"gopd":474,"has-symbols":476,"hasown":479,"math-intrinsics/abs":486,"math-intrinsics/floor":487,"math-intrinsics/max":489,"math-intrinsics/min":490,"math-intrinsics/pow":491,"math-intrinsics/round":492,"math-intrinsics/sign":493}],470:[function(require,module,exports){
|
|
80003
80066
|
'use strict';
|
|
80004
80067
|
|
|
80005
80068
|
var $Object = require('es-object-atoms');
|
|
@@ -80007,13 +80070,13 @@ var $Object = require('es-object-atoms');
|
|
|
80007
80070
|
/** @type {import('./Object.getPrototypeOf')} */
|
|
80008
80071
|
module.exports = $Object.getPrototypeOf || null;
|
|
80009
80072
|
|
|
80010
|
-
},{"es-object-atoms":
|
|
80073
|
+
},{"es-object-atoms":465}],471:[function(require,module,exports){
|
|
80011
80074
|
'use strict';
|
|
80012
80075
|
|
|
80013
80076
|
/** @type {import('./Reflect.getPrototypeOf')} */
|
|
80014
80077
|
module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
|
|
80015
80078
|
|
|
80016
|
-
},{}],
|
|
80079
|
+
},{}],472:[function(require,module,exports){
|
|
80017
80080
|
'use strict';
|
|
80018
80081
|
|
|
80019
80082
|
var reflectGetProto = require('./Reflect.getPrototypeOf');
|
|
@@ -80042,13 +80105,13 @@ module.exports = reflectGetProto
|
|
|
80042
80105
|
}
|
|
80043
80106
|
: null;
|
|
80044
80107
|
|
|
80045
|
-
},{"./Object.getPrototypeOf":
|
|
80108
|
+
},{"./Object.getPrototypeOf":470,"./Reflect.getPrototypeOf":471,"dunder-proto/get":456}],473:[function(require,module,exports){
|
|
80046
80109
|
'use strict';
|
|
80047
80110
|
|
|
80048
80111
|
/** @type {import('./gOPD')} */
|
|
80049
80112
|
module.exports = Object.getOwnPropertyDescriptor;
|
|
80050
80113
|
|
|
80051
|
-
},{}],
|
|
80114
|
+
},{}],474:[function(require,module,exports){
|
|
80052
80115
|
'use strict';
|
|
80053
80116
|
|
|
80054
80117
|
/** @type {import('.')} */
|
|
@@ -80065,7 +80128,7 @@ if ($gOPD) {
|
|
|
80065
80128
|
|
|
80066
80129
|
module.exports = $gOPD;
|
|
80067
80130
|
|
|
80068
|
-
},{"./gOPD":
|
|
80131
|
+
},{"./gOPD":473}],475:[function(require,module,exports){
|
|
80069
80132
|
'use strict';
|
|
80070
80133
|
|
|
80071
80134
|
var $defineProperty = require('es-define-property');
|
|
@@ -80089,7 +80152,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
|
|
|
80089
80152
|
|
|
80090
80153
|
module.exports = hasPropertyDescriptors;
|
|
80091
80154
|
|
|
80092
|
-
},{"es-define-property":
|
|
80155
|
+
},{"es-define-property":457}],476:[function(require,module,exports){
|
|
80093
80156
|
'use strict';
|
|
80094
80157
|
|
|
80095
80158
|
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
|
@@ -80105,7 +80168,7 @@ module.exports = function hasNativeSymbols() {
|
|
|
80105
80168
|
return hasSymbolSham();
|
|
80106
80169
|
};
|
|
80107
80170
|
|
|
80108
|
-
},{"./shams":
|
|
80171
|
+
},{"./shams":477}],477:[function(require,module,exports){
|
|
80109
80172
|
'use strict';
|
|
80110
80173
|
|
|
80111
80174
|
/** @type {import('./shams')} */
|
|
@@ -80152,7 +80215,7 @@ module.exports = function hasSymbols() {
|
|
|
80152
80215
|
return true;
|
|
80153
80216
|
};
|
|
80154
80217
|
|
|
80155
|
-
},{}],
|
|
80218
|
+
},{}],478:[function(require,module,exports){
|
|
80156
80219
|
'use strict';
|
|
80157
80220
|
|
|
80158
80221
|
var hasSymbols = require('has-symbols/shams');
|
|
@@ -80162,7 +80225,7 @@ module.exports = function hasToStringTagShams() {
|
|
|
80162
80225
|
return hasSymbols() && !!Symbol.toStringTag;
|
|
80163
80226
|
};
|
|
80164
80227
|
|
|
80165
|
-
},{"has-symbols/shams":
|
|
80228
|
+
},{"has-symbols/shams":477}],479:[function(require,module,exports){
|
|
80166
80229
|
'use strict';
|
|
80167
80230
|
|
|
80168
80231
|
var call = Function.prototype.call;
|
|
@@ -80172,7 +80235,7 @@ var bind = require('function-bind');
|
|
|
80172
80235
|
/** @type {import('.')} */
|
|
80173
80236
|
module.exports = bind.call(call, $hasOwn);
|
|
80174
80237
|
|
|
80175
|
-
},{"function-bind":
|
|
80238
|
+
},{"function-bind":468}],480:[function(require,module,exports){
|
|
80176
80239
|
if (typeof Object.create === 'function') {
|
|
80177
80240
|
// implementation from standard node.js 'util' module
|
|
80178
80241
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -80201,7 +80264,7 @@ if (typeof Object.create === 'function') {
|
|
|
80201
80264
|
}
|
|
80202
80265
|
}
|
|
80203
80266
|
|
|
80204
|
-
},{}],
|
|
80267
|
+
},{}],481:[function(require,module,exports){
|
|
80205
80268
|
'use strict';
|
|
80206
80269
|
|
|
80207
80270
|
var hasToStringTag = require('has-tostringtag/shams')();
|
|
@@ -80247,7 +80310,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
|
80247
80310
|
/** @type {import('.')} */
|
|
80248
80311
|
module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
80249
80312
|
|
|
80250
|
-
},{"call-bound":
|
|
80313
|
+
},{"call-bound":454,"has-tostringtag/shams":478}],482:[function(require,module,exports){
|
|
80251
80314
|
'use strict';
|
|
80252
80315
|
|
|
80253
80316
|
var fnToStr = Function.prototype.toString;
|
|
@@ -80350,7 +80413,7 @@ module.exports = reflectApply
|
|
|
80350
80413
|
return tryFunctionObject(value);
|
|
80351
80414
|
};
|
|
80352
80415
|
|
|
80353
|
-
},{}],
|
|
80416
|
+
},{}],483:[function(require,module,exports){
|
|
80354
80417
|
'use strict';
|
|
80355
80418
|
|
|
80356
80419
|
var callBound = require('call-bound');
|
|
@@ -80399,7 +80462,7 @@ module.exports = function isGeneratorFunction(fn) {
|
|
|
80399
80462
|
return getProto(fn) === GeneratorFunction;
|
|
80400
80463
|
};
|
|
80401
80464
|
|
|
80402
|
-
},{"call-bound":
|
|
80465
|
+
},{"call-bound":454,"get-proto":472,"has-tostringtag/shams":478,"safe-regex-test":501}],484:[function(require,module,exports){
|
|
80403
80466
|
'use strict';
|
|
80404
80467
|
|
|
80405
80468
|
var callBound = require('call-bound');
|
|
@@ -80470,7 +80533,7 @@ if (hasToStringTag) {
|
|
|
80470
80533
|
|
|
80471
80534
|
module.exports = fn;
|
|
80472
80535
|
|
|
80473
|
-
},{"call-bound":
|
|
80536
|
+
},{"call-bound":454,"gopd":474,"has-tostringtag/shams":478,"hasown":479}],485:[function(require,module,exports){
|
|
80474
80537
|
'use strict';
|
|
80475
80538
|
|
|
80476
80539
|
var whichTypedArray = require('which-typed-array');
|
|
@@ -80480,19 +80543,19 @@ module.exports = function isTypedArray(value) {
|
|
|
80480
80543
|
return !!whichTypedArray(value);
|
|
80481
80544
|
};
|
|
80482
80545
|
|
|
80483
|
-
},{"which-typed-array":
|
|
80546
|
+
},{"which-typed-array":506}],486:[function(require,module,exports){
|
|
80484
80547
|
'use strict';
|
|
80485
80548
|
|
|
80486
80549
|
/** @type {import('./abs')} */
|
|
80487
80550
|
module.exports = Math.abs;
|
|
80488
80551
|
|
|
80489
|
-
},{}],
|
|
80552
|
+
},{}],487:[function(require,module,exports){
|
|
80490
80553
|
'use strict';
|
|
80491
80554
|
|
|
80492
80555
|
/** @type {import('./floor')} */
|
|
80493
80556
|
module.exports = Math.floor;
|
|
80494
80557
|
|
|
80495
|
-
},{}],
|
|
80558
|
+
},{}],488:[function(require,module,exports){
|
|
80496
80559
|
'use strict';
|
|
80497
80560
|
|
|
80498
80561
|
/** @type {import('./isNaN')} */
|
|
@@ -80500,31 +80563,31 @@ module.exports = Number.isNaN || function isNaN(a) {
|
|
|
80500
80563
|
return a !== a;
|
|
80501
80564
|
};
|
|
80502
80565
|
|
|
80503
|
-
},{}],
|
|
80566
|
+
},{}],489:[function(require,module,exports){
|
|
80504
80567
|
'use strict';
|
|
80505
80568
|
|
|
80506
80569
|
/** @type {import('./max')} */
|
|
80507
80570
|
module.exports = Math.max;
|
|
80508
80571
|
|
|
80509
|
-
},{}],
|
|
80572
|
+
},{}],490:[function(require,module,exports){
|
|
80510
80573
|
'use strict';
|
|
80511
80574
|
|
|
80512
80575
|
/** @type {import('./min')} */
|
|
80513
80576
|
module.exports = Math.min;
|
|
80514
80577
|
|
|
80515
|
-
},{}],
|
|
80578
|
+
},{}],491:[function(require,module,exports){
|
|
80516
80579
|
'use strict';
|
|
80517
80580
|
|
|
80518
80581
|
/** @type {import('./pow')} */
|
|
80519
80582
|
module.exports = Math.pow;
|
|
80520
80583
|
|
|
80521
|
-
},{}],
|
|
80584
|
+
},{}],492:[function(require,module,exports){
|
|
80522
80585
|
'use strict';
|
|
80523
80586
|
|
|
80524
80587
|
/** @type {import('./round')} */
|
|
80525
80588
|
module.exports = Math.round;
|
|
80526
80589
|
|
|
80527
|
-
},{}],
|
|
80590
|
+
},{}],493:[function(require,module,exports){
|
|
80528
80591
|
'use strict';
|
|
80529
80592
|
|
|
80530
80593
|
var $isNaN = require('./isNaN');
|
|
@@ -80537,7 +80600,7 @@ module.exports = function sign(number) {
|
|
|
80537
80600
|
return number < 0 ? -1 : +1;
|
|
80538
80601
|
};
|
|
80539
80602
|
|
|
80540
|
-
},{"./isNaN":
|
|
80603
|
+
},{"./isNaN":488}],494:[function(require,module,exports){
|
|
80541
80604
|
'use strict';
|
|
80542
80605
|
|
|
80543
80606
|
var keysShim;
|
|
@@ -80661,7 +80724,7 @@ if (!Object.keys) {
|
|
|
80661
80724
|
}
|
|
80662
80725
|
module.exports = keysShim;
|
|
80663
80726
|
|
|
80664
|
-
},{"./isArguments":
|
|
80727
|
+
},{"./isArguments":496}],495:[function(require,module,exports){
|
|
80665
80728
|
'use strict';
|
|
80666
80729
|
|
|
80667
80730
|
var slice = Array.prototype.slice;
|
|
@@ -80695,7 +80758,7 @@ keysShim.shim = function shimObjectKeys() {
|
|
|
80695
80758
|
|
|
80696
80759
|
module.exports = keysShim;
|
|
80697
80760
|
|
|
80698
|
-
},{"./implementation":
|
|
80761
|
+
},{"./implementation":494,"./isArguments":496}],496:[function(require,module,exports){
|
|
80699
80762
|
'use strict';
|
|
80700
80763
|
|
|
80701
80764
|
var toStr = Object.prototype.toString;
|
|
@@ -80714,7 +80777,7 @@ module.exports = function isArguments(value) {
|
|
|
80714
80777
|
return isArgs;
|
|
80715
80778
|
};
|
|
80716
80779
|
|
|
80717
|
-
},{}],
|
|
80780
|
+
},{}],497:[function(require,module,exports){
|
|
80718
80781
|
'use strict';
|
|
80719
80782
|
|
|
80720
80783
|
// modified from https://github.com/es-shims/es6-shim
|
|
@@ -80762,7 +80825,7 @@ module.exports = function assign(target, source1) {
|
|
|
80762
80825
|
return to; // step 4
|
|
80763
80826
|
};
|
|
80764
80827
|
|
|
80765
|
-
},{"call-bound":
|
|
80828
|
+
},{"call-bound":454,"es-object-atoms":465,"has-symbols/shams":477,"object-keys":495}],498:[function(require,module,exports){
|
|
80766
80829
|
'use strict';
|
|
80767
80830
|
|
|
80768
80831
|
var implementation = require('./implementation');
|
|
@@ -80819,7 +80882,7 @@ module.exports = function getPolyfill() {
|
|
|
80819
80882
|
return Object.assign;
|
|
80820
80883
|
};
|
|
80821
80884
|
|
|
80822
|
-
},{"./implementation":
|
|
80885
|
+
},{"./implementation":497}],499:[function(require,module,exports){
|
|
80823
80886
|
'use strict';
|
|
80824
80887
|
|
|
80825
80888
|
/** @type {import('.')} */
|
|
@@ -80838,7 +80901,7 @@ module.exports = [
|
|
|
80838
80901
|
'BigUint64Array'
|
|
80839
80902
|
];
|
|
80840
80903
|
|
|
80841
|
-
},{}],
|
|
80904
|
+
},{}],500:[function(require,module,exports){
|
|
80842
80905
|
// shim for using process in browser
|
|
80843
80906
|
var process = module.exports = {};
|
|
80844
80907
|
|
|
@@ -81024,7 +81087,7 @@ process.chdir = function (dir) {
|
|
|
81024
81087
|
};
|
|
81025
81088
|
process.umask = function() { return 0; };
|
|
81026
81089
|
|
|
81027
|
-
},{}],
|
|
81090
|
+
},{}],501:[function(require,module,exports){
|
|
81028
81091
|
'use strict';
|
|
81029
81092
|
|
|
81030
81093
|
var callBound = require('call-bound');
|
|
@@ -81043,7 +81106,7 @@ module.exports = function regexTester(regex) {
|
|
|
81043
81106
|
};
|
|
81044
81107
|
};
|
|
81045
81108
|
|
|
81046
|
-
},{"call-bound":
|
|
81109
|
+
},{"call-bound":454,"es-errors/type":463,"is-regex":484}],502:[function(require,module,exports){
|
|
81047
81110
|
'use strict';
|
|
81048
81111
|
|
|
81049
81112
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -81087,9 +81150,9 @@ module.exports = function setFunctionLength(fn, length) {
|
|
|
81087
81150
|
return fn;
|
|
81088
81151
|
};
|
|
81089
81152
|
|
|
81090
|
-
},{"define-data-property":
|
|
81091
|
-
arguments[4][
|
|
81092
|
-
},{"dup":
|
|
81153
|
+
},{"define-data-property":455,"es-errors/type":463,"get-intrinsic":469,"gopd":474,"has-property-descriptors":475}],503:[function(require,module,exports){
|
|
81154
|
+
arguments[4][443][0].apply(exports,arguments)
|
|
81155
|
+
},{"dup":443}],504:[function(require,module,exports){
|
|
81093
81156
|
// Currently in sync with Node.js lib/internal/util/types.js
|
|
81094
81157
|
// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
|
|
81095
81158
|
|
|
@@ -81425,7 +81488,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
|
|
|
81425
81488
|
});
|
|
81426
81489
|
});
|
|
81427
81490
|
|
|
81428
|
-
},{"is-arguments":
|
|
81491
|
+
},{"is-arguments":481,"is-generator-function":483,"is-typed-array":485,"which-typed-array":506}],505:[function(require,module,exports){
|
|
81429
81492
|
(function (process){(function (){
|
|
81430
81493
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
81431
81494
|
//
|
|
@@ -82144,7 +82207,7 @@ function callbackify(original) {
|
|
|
82144
82207
|
exports.callbackify = callbackify;
|
|
82145
82208
|
|
|
82146
82209
|
}).call(this)}).call(this,require('_process'))
|
|
82147
|
-
},{"./support/isBuffer":
|
|
82210
|
+
},{"./support/isBuffer":503,"./support/types":504,"_process":500,"inherits":480}],506:[function(require,module,exports){
|
|
82148
82211
|
(function (global){(function (){
|
|
82149
82212
|
'use strict';
|
|
82150
82213
|
|
|
@@ -82265,5 +82328,5 @@ module.exports = function whichTypedArray(value) {
|
|
|
82265
82328
|
};
|
|
82266
82329
|
|
|
82267
82330
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
82268
|
-
},{"available-typed-arrays":
|
|
82331
|
+
},{"available-typed-arrays":445,"call-bind":453,"call-bound":454,"for-each":466,"get-proto":472,"gopd":474,"has-tostringtag/shams":478}]},{},[145])(145)
|
|
82269
82332
|
});
|