@designliquido/delegua 0.49.3 → 0.50.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-base.d.ts +3 -1
- package/analisador-semantico/analisador-semantico-base.d.ts.map +1 -1
- package/analisador-semantico/analisador-semantico-base.js +8 -0
- package/analisador-semantico/analisador-semantico-base.js.map +1 -1
- package/analisador-semantico/analisador-semantico.d.ts.map +1 -1
- package/analisador-semantico/analisador-semantico.js +13 -12
- package/analisador-semantico/analisador-semantico.js.map +1 -1
- package/avaliador-sintatico/avaliador-sintatico.d.ts.map +1 -1
- package/avaliador-sintatico/avaliador-sintatico.js +34 -7
- package/avaliador-sintatico/avaliador-sintatico.js.map +1 -1
- package/bibliotecas/primitivas-numero.d.ts.map +1 -1
- package/bibliotecas/primitivas-numero.js +31 -0
- package/bibliotecas/primitivas-numero.js.map +1 -1
- package/bin/package.json +1 -1
- package/construtos/comentario-como-construto.d.ts +15 -0
- package/construtos/comentario-como-construto.d.ts.map +1 -0
- package/construtos/comentario-como-construto.js +20 -0
- package/construtos/comentario-como-construto.js.map +1 -0
- package/construtos/index.d.ts +2 -0
- package/construtos/index.d.ts.map +1 -1
- package/construtos/index.js +2 -0
- package/construtos/index.js.map +1 -1
- package/construtos/separador.d.ts +10 -0
- package/construtos/separador.d.ts.map +1 -0
- package/construtos/separador.js +15 -0
- package/construtos/separador.js.map +1 -0
- package/construtos/vetor.d.ts +2 -2
- package/construtos/vetor.d.ts.map +1 -1
- package/construtos/vetor.js.map +1 -1
- package/formatadores/formatador-delegua.d.ts +3 -1
- package/formatadores/formatador-delegua.d.ts.map +1 -1
- package/formatadores/formatador-delegua.js +6 -0
- package/formatadores/formatador-delegua.js.map +1 -1
- package/formatadores/formatador-pitugues.d.ts +3 -1
- package/formatadores/formatador-pitugues.d.ts.map +1 -1
- package/formatadores/formatador-pitugues.js +6 -0
- package/formatadores/formatador-pitugues.js.map +1 -1
- package/inferenciador.d.ts.map +1 -1
- package/inferenciador.js +1 -1
- package/inferenciador.js.map +1 -1
- package/interfaces/visitante-comum-interface.d.ts +4 -2
- package/interfaces/visitante-comum-interface.d.ts.map +1 -1
- package/interpretador/dialetos/egua-classico/interpretador-egua-classico.d.ts +3 -1
- package/interpretador/dialetos/egua-classico/interpretador-egua-classico.d.ts.map +1 -1
- package/interpretador/dialetos/egua-classico/interpretador-egua-classico.js +6 -0
- package/interpretador/dialetos/egua-classico/interpretador-egua-classico.js.map +1 -1
- package/interpretador/dialetos/egua-classico/resolvedor/resolvedor.d.ts +3 -1
- package/interpretador/dialetos/egua-classico/resolvedor/resolvedor.d.ts.map +1 -1
- package/interpretador/dialetos/egua-classico/resolvedor/resolvedor.js +6 -0
- package/interpretador/dialetos/egua-classico/resolvedor/resolvedor.js.map +1 -1
- package/interpretador/dialetos/portugol-ipt/interpretador-portugol-ipt.d.ts +3 -1
- package/interpretador/dialetos/portugol-ipt/interpretador-portugol-ipt.d.ts.map +1 -1
- package/interpretador/dialetos/portugol-ipt/interpretador-portugol-ipt.js +6 -0
- package/interpretador/dialetos/portugol-ipt/interpretador-portugol-ipt.js.map +1 -1
- package/interpretador/interpretador-base.d.ts +3 -1
- package/interpretador/interpretador-base.d.ts.map +1 -1
- package/interpretador/interpretador-base.js +7 -1
- package/interpretador/interpretador-base.js.map +1 -1
- package/interpretador/interpretador.d.ts +12 -1
- package/interpretador/interpretador.d.ts.map +1 -1
- package/interpretador/interpretador.js +32 -11
- package/interpretador/interpretador.js.map +1 -1
- package/lexador/lexador.js +8 -8
- package/lexador/lexador.js.map +1 -1
- package/package.json +1 -1
- package/tradutores/tradutor-assemblyscript.d.ts +4 -2
- package/tradutores/tradutor-assemblyscript.d.ts.map +1 -1
- package/tradutores/tradutor-assemblyscript.js +6 -5
- package/tradutores/tradutor-assemblyscript.js.map +1 -1
- package/tradutores/tradutor-javascript.d.ts +4 -1
- package/tradutores/tradutor-javascript.d.ts.map +1 -1
- package/tradutores/tradutor-javascript.js +6 -4
- package/tradutores/tradutor-javascript.js.map +1 -1
- package/tradutores/tradutor-mermaidjs.d.ts +5 -2
- package/tradutores/tradutor-mermaidjs.d.ts.map +1 -1
- package/tradutores/tradutor-mermaidjs.js +7 -5
- package/tradutores/tradutor-mermaidjs.js.map +1 -1
- package/tradutores/tradutor-python.d.ts +4 -2
- package/tradutores/tradutor-python.d.ts.map +1 -1
- package/tradutores/tradutor-python.js +6 -5
- package/tradutores/tradutor-python.js.map +1 -1
- package/umd/delegua.js +582 -440
package/umd/delegua.js
CHANGED
|
@@ -238,7 +238,7 @@ class AvaliadorSintaticoBase {
|
|
|
238
238
|
}
|
|
239
239
|
exports.AvaliadorSintaticoBase = AvaliadorSintaticoBase;
|
|
240
240
|
|
|
241
|
-
},{"../construtos":
|
|
241
|
+
},{"../construtos":45,"../declaracoes":87,"../tipos-de-simbolos/comum":172,"./erro-avaliador-sintatico":9}],2:[function(require,module,exports){
|
|
242
242
|
"use strict";
|
|
243
243
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
244
244
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -396,17 +396,44 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
396
396
|
if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.COLCHETE_DIREITO)) {
|
|
397
397
|
return new construtos_1.Vetor(this.hashArquivo, Number(simboloAtual.linha), [], 0, 'qualquer[]');
|
|
398
398
|
}
|
|
399
|
+
if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.PARENTESE_ESQUERDO)) {
|
|
400
|
+
return this.construtoTupla();
|
|
401
|
+
}
|
|
399
402
|
while (!this.verificarSeSimboloAtualEIgualA(delegua_2.default.COLCHETE_DIREITO)) {
|
|
400
|
-
|
|
401
|
-
|
|
403
|
+
switch (this.simbolos[this.atual].tipo) {
|
|
404
|
+
case delegua_2.default.VIRGULA:
|
|
405
|
+
const simboloVirgula = this.avancarEDevolverAnterior();
|
|
406
|
+
valores.push(new construtos_1.Separador(simboloVirgula));
|
|
407
|
+
break;
|
|
408
|
+
case delegua_2.default.COMENTARIO:
|
|
409
|
+
const simboloComentario = this.avancarEDevolverAnterior();
|
|
410
|
+
valores.push(new construtos_1.ComentarioComoConstruto(simboloComentario));
|
|
411
|
+
break;
|
|
412
|
+
default:
|
|
413
|
+
const valor = this.atribuir();
|
|
414
|
+
valores.push(valor);
|
|
415
|
+
break;
|
|
402
416
|
}
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
417
|
+
}
|
|
418
|
+
// Remover comentários, verificar se vírgulas fazem sentido.
|
|
419
|
+
const valoresSemComentarios = valores.filter(v => v.constructor.name !== 'ComentarioComoConstruto');
|
|
420
|
+
let elementoSeparador = false; // O primeiro elemento não pode ser separador.
|
|
421
|
+
for (const elemento of valoresSemComentarios) {
|
|
422
|
+
if (elementoSeparador) {
|
|
423
|
+
if (elemento.constructor.name !== 'Separador') {
|
|
424
|
+
throw this.erro(elemento.simbolo, 'Não podem haver duas vírgulas seguidas em uma definição de vetor, ou definição de vetor começando em vírgula.');
|
|
425
|
+
}
|
|
426
|
+
elementoSeparador = false;
|
|
427
|
+
}
|
|
428
|
+
else {
|
|
429
|
+
if (elemento.constructor.name === 'Separador') {
|
|
430
|
+
throw this.erro(elemento.simbolo, 'Não podem haver duas vírgulas seguidas em uma definição de vetor, ou definição de vetor começando em vírgula.');
|
|
431
|
+
}
|
|
432
|
+
elementoSeparador = true;
|
|
407
433
|
}
|
|
408
434
|
}
|
|
409
|
-
const
|
|
435
|
+
const valoresSemSeparadores = valoresSemComentarios.filter(v => v.constructor.name !== 'Separador');
|
|
436
|
+
const tipoVetor = (0, inferenciador_1.inferirTipoVariavel)(valoresSemSeparadores);
|
|
410
437
|
return new construtos_1.Vetor(this.hashArquivo, Number(simboloAtual.linha), valores, valores.length, tipoVetor);
|
|
411
438
|
case delegua_2.default.EXPRESSAO_REGULAR:
|
|
412
439
|
let valor = '';
|
|
@@ -1944,7 +1971,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1944
1971
|
}
|
|
1945
1972
|
exports.AvaliadorSintatico = AvaliadorSintatico;
|
|
1946
1973
|
|
|
1947
|
-
},{"../bibliotecas/primitivas-dicionario":18,"../bibliotecas/primitivas-numero":19,"../bibliotecas/primitivas-texto":20,"../bibliotecas/primitivas-vetor":21,"../construtos":
|
|
1974
|
+
},{"../bibliotecas/primitivas-dicionario":18,"../bibliotecas/primitivas-numero":19,"../bibliotecas/primitivas-texto":20,"../bibliotecas/primitivas-vetor":21,"../construtos":45,"../construtos/tuplas":57,"../declaracoes":87,"../inferenciador":109,"../informacao-variavel-ou-constante":110,"../tipos-de-dados/delegua":170,"../tipos-de-simbolos/delegua":173,"./avaliador-sintatico-base":1,"./comum":3,"./erro-avaliador-sintatico":9,"./informacao-escopo":11,"./pilha-escopos":14,"browser-process-hrtime":352}],3:[function(require,module,exports){
|
|
1948
1975
|
"use strict";
|
|
1949
1976
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1950
1977
|
exports.registrarPrimitiva = registrarPrimitiva;
|
|
@@ -1956,7 +1983,7 @@ function registrarPrimitiva(primitivasConhecidas, tipo, catalogoPrimitivas) {
|
|
|
1956
1983
|
}
|
|
1957
1984
|
}
|
|
1958
1985
|
|
|
1959
|
-
},{"../informacao-variavel-ou-constante":
|
|
1986
|
+
},{"../informacao-variavel-ou-constante":110}],4:[function(require,module,exports){
|
|
1960
1987
|
"use strict";
|
|
1961
1988
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
1962
1989
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -2611,7 +2638,7 @@ class AvaliadorSintaticoEguaClassico {
|
|
|
2611
2638
|
}
|
|
2612
2639
|
exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
|
|
2613
2640
|
|
|
2614
|
-
},{"../../construtos":
|
|
2641
|
+
},{"../../construtos":45,"../../declaracoes":87,"../../tipos-de-simbolos/egua-classico":174,"../erro-avaliador-sintatico":9}],5:[function(require,module,exports){
|
|
2615
2642
|
"use strict";
|
|
2616
2643
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
2617
2644
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -3645,7 +3672,7 @@ class AvaliadorSintaticoPitugues {
|
|
|
3645
3672
|
}
|
|
3646
3673
|
exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
|
|
3647
3674
|
|
|
3648
|
-
},{"../../bibliotecas/primitivas-dicionario":18,"../../bibliotecas/primitivas-numero":19,"../../bibliotecas/primitivas-texto":20,"../../bibliotecas/primitivas-vetor":21,"../../construtos":
|
|
3675
|
+
},{"../../bibliotecas/primitivas-dicionario":18,"../../bibliotecas/primitivas-numero":19,"../../bibliotecas/primitivas-texto":20,"../../bibliotecas/primitivas-vetor":21,"../../construtos":45,"../../declaracoes":87,"../../inferenciador":109,"../../informacao-variavel-ou-constante":110,"../../lexador":162,"../../tipos-de-simbolos/pitugues":177,"../comum":3,"../erro-avaliador-sintatico":9,"../informacao-escopo":11,"../pilha-escopos":14,"browser-process-hrtime":352}],6:[function(require,module,exports){
|
|
3649
3676
|
"use strict";
|
|
3650
3677
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3651
3678
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -3819,7 +3846,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
|
|
|
3819
3846
|
}
|
|
3820
3847
|
exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
|
|
3821
3848
|
|
|
3822
|
-
},{"../../construtos":
|
|
3849
|
+
},{"../../construtos":45,"../../declaracoes":87,"../../tipos-de-simbolos/portugol-ipt":178,"../avaliador-sintatico-base":1}],7:[function(require,module,exports){
|
|
3823
3850
|
"use strict";
|
|
3824
3851
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3825
3852
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -4807,7 +4834,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
|
|
|
4807
4834
|
}
|
|
4808
4835
|
exports.AvaliadorSintaticoTenda = AvaliadorSintaticoTenda;
|
|
4809
4836
|
|
|
4810
|
-
},{"../../bibliotecas/primitivas-dicionario":18,"../../bibliotecas/primitivas-numero":19,"../../bibliotecas/primitivas-texto":20,"../../bibliotecas/primitivas-vetor":21,"../../construtos":
|
|
4837
|
+
},{"../../bibliotecas/primitivas-dicionario":18,"../../bibliotecas/primitivas-numero":19,"../../bibliotecas/primitivas-texto":20,"../../bibliotecas/primitivas-vetor":21,"../../construtos":45,"../../construtos/tuplas":57,"../../declaracoes":87,"../../inferenciador":109,"../../informacao-variavel-ou-constante":110,"../../lexador/simbolo":168,"../../tipos-de-dados/delegua":170,"../../tipos-de-simbolos/tenda":179,"../avaliador-sintatico-base":1,"./../erro-avaliador-sintatico":9,"./../informacao-escopo":11,"./../pilha-escopos":14,"browser-process-hrtime":352}],8:[function(require,module,exports){
|
|
4811
4838
|
"use strict";
|
|
4812
4839
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4813
4840
|
if (k2 === undefined) k2 = k;
|
|
@@ -5000,7 +5027,7 @@ class MicroAvaliadorSintaticoBase {
|
|
|
5000
5027
|
}
|
|
5001
5028
|
exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
|
|
5002
5029
|
|
|
5003
|
-
},{"../construtos":
|
|
5030
|
+
},{"../construtos":45,"../tipos-de-simbolos/comum":172,"./erro-avaliador-sintatico":9}],13:[function(require,module,exports){
|
|
5004
5031
|
"use strict";
|
|
5005
5032
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
5006
5033
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -5206,7 +5233,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
|
|
|
5206
5233
|
}
|
|
5207
5234
|
exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
|
|
5208
5235
|
|
|
5209
|
-
},{"../construtos":
|
|
5236
|
+
},{"../construtos":45,"../tipos-de-simbolos/microgramaticas/delegua":176,"./micro-avaliador-sintatico-base":12}],14:[function(require,module,exports){
|
|
5210
5237
|
"use strict";
|
|
5211
5238
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5212
5239
|
exports.PilhaEscopos = void 0;
|
|
@@ -5958,7 +5985,7 @@ async function tupla(interpretador, vetor) {
|
|
|
5958
5985
|
}
|
|
5959
5986
|
}
|
|
5960
5987
|
|
|
5961
|
-
},{"../construtos":
|
|
5988
|
+
},{"../construtos":45,"../excecoes":103,"../interpretador/estruturas":140,"../interpretador/estruturas/descritor-tipo-classe":138,"../interpretador/estruturas/funcao-padrao":139,"../interpretador/estruturas/objeto-delegua-classe":143}],18:[function(require,module,exports){
|
|
5962
5989
|
"use strict";
|
|
5963
5990
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5964
5991
|
const informacao_variavel_ou_constante_1 = require("../informacao-variavel-ou-constante");
|
|
@@ -6015,9 +6042,10 @@ exports.default = {
|
|
|
6015
6042
|
},
|
|
6016
6043
|
};
|
|
6017
6044
|
|
|
6018
|
-
},{"../informacao-variavel-ou-constante":
|
|
6045
|
+
},{"../informacao-variavel-ou-constante":110}],19:[function(require,module,exports){
|
|
6019
6046
|
"use strict";
|
|
6020
6047
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6048
|
+
const informacao_variavel_ou_constante_1 = require("../informacao-variavel-ou-constante");
|
|
6021
6049
|
exports.default = {
|
|
6022
6050
|
absoluto: {
|
|
6023
6051
|
tipoRetorno: 'número',
|
|
@@ -6067,9 +6095,39 @@ exports.default = {
|
|
|
6067
6095
|
'\n\n## Formas de uso\n',
|
|
6068
6096
|
exemploCodigo: 'numero.arredondarParaCima()'
|
|
6069
6097
|
},
|
|
6098
|
+
formatar: {
|
|
6099
|
+
tipoRetorno: 'texto',
|
|
6100
|
+
argumentos: [
|
|
6101
|
+
new informacao_variavel_ou_constante_1.InformacaoVariavelOuConstante('opcoesFormatacao', 'dicionário', false, [], 'Dicionário com opções de formatação, como número de casas decimais.')
|
|
6102
|
+
],
|
|
6103
|
+
implementacao: (interpretador, nomePrimitiva, valor, opcoes) => {
|
|
6104
|
+
let minimoCasasDecimais = 2;
|
|
6105
|
+
if (opcoes && opcoes.casasDecimais !== undefined) {
|
|
6106
|
+
minimoCasasDecimais = opcoes.casasDecimais;
|
|
6107
|
+
}
|
|
6108
|
+
let maximoCasasDecimais = 2;
|
|
6109
|
+
if (opcoes && opcoes.maximoCasasDecimais !== undefined) {
|
|
6110
|
+
maximoCasasDecimais = opcoes.maximoCasasDecimais;
|
|
6111
|
+
}
|
|
6112
|
+
return Promise.resolve(valor.toLocaleString('pt-BR', {
|
|
6113
|
+
minimumFractionDigits: minimoCasasDecimais,
|
|
6114
|
+
maximumFractionDigits: maximoCasasDecimais
|
|
6115
|
+
}));
|
|
6116
|
+
},
|
|
6117
|
+
assinaturaFormato: 'número.formatar(opcoesFormatacao)',
|
|
6118
|
+
documentacao: '# `número.formatar(opcoesFormatacao)`\n\n' +
|
|
6119
|
+
'Formata um número para o padrão brasileiro, com separador de milhar e vírgula como separador decimal.' +
|
|
6120
|
+
'\n\n ## Exemplo de Código\n' +
|
|
6121
|
+
'\n\n```delegua\n' +
|
|
6122
|
+
'var n = 1234.56\n' +
|
|
6123
|
+
'escreva(n.formatar()) // 1.234,56\n' +
|
|
6124
|
+
'escreva(n.formatar({ minimoCasasDecimais: 2, maximoCasasDecimais: 3 })) // 1.234,568\n```' +
|
|
6125
|
+
'\n\n## Formas de uso\n',
|
|
6126
|
+
exemploCodigo: 'numero.formatar({ maximoCasasDecimais: 2 })'
|
|
6127
|
+
}
|
|
6070
6128
|
};
|
|
6071
6129
|
|
|
6072
|
-
},{}],20:[function(require,module,exports){
|
|
6130
|
+
},{"../informacao-variavel-ou-constante":110}],20:[function(require,module,exports){
|
|
6073
6131
|
"use strict";
|
|
6074
6132
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6075
6133
|
const informacao_variavel_ou_constante_1 = require("../informacao-variavel-ou-constante");
|
|
@@ -6272,7 +6330,7 @@ exports.default = {
|
|
|
6272
6330
|
},
|
|
6273
6331
|
};
|
|
6274
6332
|
|
|
6275
|
-
},{"../informacao-variavel-ou-constante":
|
|
6333
|
+
},{"../informacao-variavel-ou-constante":110}],21:[function(require,module,exports){
|
|
6276
6334
|
"use strict";
|
|
6277
6335
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6278
6336
|
const informacao_variavel_ou_constante_1 = require("../informacao-variavel-ou-constante");
|
|
@@ -6616,7 +6674,7 @@ exports.default = {
|
|
|
6616
6674
|
},
|
|
6617
6675
|
};
|
|
6618
6676
|
|
|
6619
|
-
},{"../informacao-variavel-ou-constante":
|
|
6677
|
+
},{"../informacao-variavel-ou-constante":110}],22:[function(require,module,exports){
|
|
6620
6678
|
"use strict";
|
|
6621
6679
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6622
6680
|
exports.AcessoElementoMatriz = void 0;
|
|
@@ -6908,7 +6966,28 @@ class Chamada {
|
|
|
6908
6966
|
}
|
|
6909
6967
|
exports.Chamada = Chamada;
|
|
6910
6968
|
|
|
6911
|
-
},{"../geracao-identificadores":
|
|
6969
|
+
},{"../geracao-identificadores":107}],34:[function(require,module,exports){
|
|
6970
|
+
"use strict";
|
|
6971
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6972
|
+
exports.ComentarioComoConstruto = void 0;
|
|
6973
|
+
/**
|
|
6974
|
+
* Diferentemente da declaração de comentário, este construto ocorre
|
|
6975
|
+
* dentro de expressões, como por exemplo, em especificação de elementos de um vetor.
|
|
6976
|
+
*/
|
|
6977
|
+
class ComentarioComoConstruto {
|
|
6978
|
+
constructor(simboloComentario) {
|
|
6979
|
+
this.linha = simboloComentario.linha;
|
|
6980
|
+
this.hashArquivo = simboloComentario.hashArquivo;
|
|
6981
|
+
this.conteudo = simboloComentario.lexema || simboloComentario.literal || '';
|
|
6982
|
+
this.multilinha = simboloComentario.tipo === 'COMENTARIO_MULTILINHA';
|
|
6983
|
+
}
|
|
6984
|
+
aceitar(visitante) {
|
|
6985
|
+
return Promise.resolve(visitante.visitarExpressaoComentario(this));
|
|
6986
|
+
}
|
|
6987
|
+
}
|
|
6988
|
+
exports.ComentarioComoConstruto = ComentarioComoConstruto;
|
|
6989
|
+
|
|
6990
|
+
},{}],35:[function(require,module,exports){
|
|
6912
6991
|
"use strict";
|
|
6913
6992
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6914
6993
|
exports.ComponenteLinguagem = void 0;
|
|
@@ -6928,7 +7007,7 @@ class ComponenteLinguagem {
|
|
|
6928
7007
|
}
|
|
6929
7008
|
exports.ComponenteLinguagem = ComponenteLinguagem;
|
|
6930
7009
|
|
|
6931
|
-
},{}],
|
|
7010
|
+
},{}],36:[function(require,module,exports){
|
|
6932
7011
|
"use strict";
|
|
6933
7012
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6934
7013
|
exports.Constante = void 0;
|
|
@@ -6947,11 +7026,11 @@ class Constante {
|
|
|
6947
7026
|
}
|
|
6948
7027
|
exports.Constante = Constante;
|
|
6949
7028
|
|
|
6950
|
-
},{}],
|
|
7029
|
+
},{}],37:[function(require,module,exports){
|
|
6951
7030
|
"use strict";
|
|
6952
7031
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6953
7032
|
|
|
6954
|
-
},{}],
|
|
7033
|
+
},{}],38:[function(require,module,exports){
|
|
6955
7034
|
"use strict";
|
|
6956
7035
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6957
7036
|
exports.Decorador = void 0;
|
|
@@ -6972,7 +7051,7 @@ class Decorador {
|
|
|
6972
7051
|
}
|
|
6973
7052
|
exports.Decorador = Decorador;
|
|
6974
7053
|
|
|
6975
|
-
},{}],
|
|
7054
|
+
},{}],39:[function(require,module,exports){
|
|
6976
7055
|
"use strict";
|
|
6977
7056
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6978
7057
|
exports.DefinirValor = void 0;
|
|
@@ -6990,7 +7069,7 @@ class DefinirValor {
|
|
|
6990
7069
|
}
|
|
6991
7070
|
exports.DefinirValor = DefinirValor;
|
|
6992
7071
|
|
|
6993
|
-
},{}],
|
|
7072
|
+
},{}],40:[function(require,module,exports){
|
|
6994
7073
|
"use strict";
|
|
6995
7074
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6996
7075
|
exports.Dicionario = void 0;
|
|
@@ -7008,7 +7087,7 @@ class Dicionario {
|
|
|
7008
7087
|
}
|
|
7009
7088
|
exports.Dicionario = Dicionario;
|
|
7010
7089
|
|
|
7011
|
-
},{}],
|
|
7090
|
+
},{}],41:[function(require,module,exports){
|
|
7012
7091
|
"use strict";
|
|
7013
7092
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7014
7093
|
exports.ExpressaoRegular = void 0;
|
|
@@ -7025,7 +7104,7 @@ class ExpressaoRegular {
|
|
|
7025
7104
|
}
|
|
7026
7105
|
exports.ExpressaoRegular = ExpressaoRegular;
|
|
7027
7106
|
|
|
7028
|
-
},{}],
|
|
7107
|
+
},{}],42:[function(require,module,exports){
|
|
7029
7108
|
"use strict";
|
|
7030
7109
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7031
7110
|
exports.FimPara = void 0;
|
|
@@ -7052,7 +7131,7 @@ class FimPara {
|
|
|
7052
7131
|
}
|
|
7053
7132
|
exports.FimPara = FimPara;
|
|
7054
7133
|
|
|
7055
|
-
},{}],
|
|
7134
|
+
},{}],43:[function(require,module,exports){
|
|
7056
7135
|
"use strict";
|
|
7057
7136
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7058
7137
|
exports.FormatacaoEscrita = void 0;
|
|
@@ -7075,7 +7154,7 @@ class FormatacaoEscrita {
|
|
|
7075
7154
|
}
|
|
7076
7155
|
exports.FormatacaoEscrita = FormatacaoEscrita;
|
|
7077
7156
|
|
|
7078
|
-
},{}],
|
|
7157
|
+
},{}],44:[function(require,module,exports){
|
|
7079
7158
|
"use strict";
|
|
7080
7159
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7081
7160
|
exports.FuncaoConstruto = void 0;
|
|
@@ -7094,7 +7173,7 @@ class FuncaoConstruto {
|
|
|
7094
7173
|
}
|
|
7095
7174
|
exports.FuncaoConstruto = FuncaoConstruto;
|
|
7096
7175
|
|
|
7097
|
-
},{}],
|
|
7176
|
+
},{}],45:[function(require,module,exports){
|
|
7098
7177
|
"use strict";
|
|
7099
7178
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7100
7179
|
if (k2 === undefined) k2 = k;
|
|
@@ -7123,6 +7202,7 @@ __exportStar(require("./atribuicao-por-indices-matriz"), exports);
|
|
|
7123
7202
|
__exportStar(require("./atribuir"), exports);
|
|
7124
7203
|
__exportStar(require("./binario"), exports);
|
|
7125
7204
|
__exportStar(require("./chamada"), exports);
|
|
7205
|
+
__exportStar(require("./comentario-como-construto"), exports);
|
|
7126
7206
|
__exportStar(require("./componente-linguagem"), exports);
|
|
7127
7207
|
__exportStar(require("./constante"), exports);
|
|
7128
7208
|
__exportStar(require("./construto"), exports);
|
|
@@ -7139,6 +7219,7 @@ __exportStar(require("./literal"), exports);
|
|
|
7139
7219
|
__exportStar(require("./logico"), exports);
|
|
7140
7220
|
__exportStar(require("./referencia-biblioteca-global"), exports);
|
|
7141
7221
|
__exportStar(require("./referencia-funcao"), exports);
|
|
7222
|
+
__exportStar(require("./separador"), exports);
|
|
7142
7223
|
__exportStar(require("./super"), exports);
|
|
7143
7224
|
__exportStar(require("./tipo-de"), exports);
|
|
7144
7225
|
__exportStar(require("./tuplas"), exports);
|
|
@@ -7146,7 +7227,7 @@ __exportStar(require("./unario"), exports);
|
|
|
7146
7227
|
__exportStar(require("./variavel"), exports);
|
|
7147
7228
|
__exportStar(require("./vetor"), exports);
|
|
7148
7229
|
|
|
7149
|
-
},{"./acesso-elemento-matriz":22,"./acesso-indice-variavel":23,"./acesso-metodo":25,"./acesso-metodo-ou-propriedade":24,"./acesso-propriedade":26,"./agrupamento":27,"./argumento-referencia-funcao":28,"./atribuicao-por-indice":29,"./atribuicao-por-indices-matriz":30,"./atribuir":31,"./binario":32,"./chamada":33,"./componente-linguagem":
|
|
7230
|
+
},{"./acesso-elemento-matriz":22,"./acesso-indice-variavel":23,"./acesso-metodo":25,"./acesso-metodo-ou-propriedade":24,"./acesso-propriedade":26,"./agrupamento":27,"./argumento-referencia-funcao":28,"./atribuicao-por-indice":29,"./atribuicao-por-indices-matriz":30,"./atribuir":31,"./binario":32,"./chamada":33,"./comentario-como-construto":34,"./componente-linguagem":35,"./constante":36,"./construto":37,"./decorador":38,"./definir-valor":39,"./dicionario":40,"./expressao-regular":41,"./fim-para":42,"./formatacao-escrita":43,"./funcao":44,"./isto":46,"./leia":47,"./literal":48,"./logico":49,"./referencia-biblioteca-global":50,"./referencia-funcao":51,"./separador":52,"./super":53,"./tipo-de":54,"./tuplas":57,"./unario":66,"./variavel":67,"./vetor":68}],46:[function(require,module,exports){
|
|
7150
7231
|
"use strict";
|
|
7151
7232
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7152
7233
|
exports.Isto = void 0;
|
|
@@ -7162,7 +7243,7 @@ class Isto {
|
|
|
7162
7243
|
}
|
|
7163
7244
|
exports.Isto = Isto;
|
|
7164
7245
|
|
|
7165
|
-
},{}],
|
|
7246
|
+
},{}],47:[function(require,module,exports){
|
|
7166
7247
|
"use strict";
|
|
7167
7248
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7168
7249
|
exports.Leia = void 0;
|
|
@@ -7185,7 +7266,7 @@ class Leia {
|
|
|
7185
7266
|
}
|
|
7186
7267
|
exports.Leia = Leia;
|
|
7187
7268
|
|
|
7188
|
-
},{"../geracao-identificadores":
|
|
7269
|
+
},{"../geracao-identificadores":107}],48:[function(require,module,exports){
|
|
7189
7270
|
"use strict";
|
|
7190
7271
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7191
7272
|
exports.Literal = void 0;
|
|
@@ -7202,7 +7283,7 @@ class Literal {
|
|
|
7202
7283
|
}
|
|
7203
7284
|
exports.Literal = Literal;
|
|
7204
7285
|
|
|
7205
|
-
},{}],
|
|
7286
|
+
},{}],49:[function(require,module,exports){
|
|
7206
7287
|
"use strict";
|
|
7207
7288
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7208
7289
|
exports.Logico = void 0;
|
|
@@ -7220,7 +7301,7 @@ class Logico {
|
|
|
7220
7301
|
}
|
|
7221
7302
|
exports.Logico = Logico;
|
|
7222
7303
|
|
|
7223
|
-
},{}],
|
|
7304
|
+
},{}],50:[function(require,module,exports){
|
|
7224
7305
|
"use strict";
|
|
7225
7306
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7226
7307
|
exports.ReferenciaBibliotecaGlobal = void 0;
|
|
@@ -7240,7 +7321,7 @@ class ReferenciaBibliotecaGlobal {
|
|
|
7240
7321
|
}
|
|
7241
7322
|
exports.ReferenciaBibliotecaGlobal = ReferenciaBibliotecaGlobal;
|
|
7242
7323
|
|
|
7243
|
-
},{}],
|
|
7324
|
+
},{}],51:[function(require,module,exports){
|
|
7244
7325
|
"use strict";
|
|
7245
7326
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7246
7327
|
exports.ReferenciaFuncao = void 0;
|
|
@@ -7258,7 +7339,23 @@ class ReferenciaFuncao {
|
|
|
7258
7339
|
}
|
|
7259
7340
|
exports.ReferenciaFuncao = ReferenciaFuncao;
|
|
7260
7341
|
|
|
7261
|
-
},{}],
|
|
7342
|
+
},{}],52:[function(require,module,exports){
|
|
7343
|
+
"use strict";
|
|
7344
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7345
|
+
exports.Separador = void 0;
|
|
7346
|
+
class Separador {
|
|
7347
|
+
constructor(simboloSeparador) {
|
|
7348
|
+
this.linha = simboloSeparador.linha;
|
|
7349
|
+
this.hashArquivo = simboloSeparador.hashArquivo;
|
|
7350
|
+
this.conteudo = simboloSeparador.lexema || simboloSeparador.literal || '';
|
|
7351
|
+
}
|
|
7352
|
+
aceitar(visitante) {
|
|
7353
|
+
return Promise.resolve(visitante.visitarExpressaoSeparador(this));
|
|
7354
|
+
}
|
|
7355
|
+
}
|
|
7356
|
+
exports.Separador = Separador;
|
|
7357
|
+
|
|
7358
|
+
},{}],53:[function(require,module,exports){
|
|
7262
7359
|
"use strict";
|
|
7263
7360
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7264
7361
|
exports.Super = void 0;
|
|
@@ -7275,7 +7372,7 @@ class Super {
|
|
|
7275
7372
|
}
|
|
7276
7373
|
exports.Super = Super;
|
|
7277
7374
|
|
|
7278
|
-
},{}],
|
|
7375
|
+
},{}],54:[function(require,module,exports){
|
|
7279
7376
|
"use strict";
|
|
7280
7377
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7281
7378
|
exports.TipoDe = void 0;
|
|
@@ -7296,7 +7393,7 @@ class TipoDe {
|
|
|
7296
7393
|
}
|
|
7297
7394
|
exports.TipoDe = TipoDe;
|
|
7298
7395
|
|
|
7299
|
-
},{}],
|
|
7396
|
+
},{}],55:[function(require,module,exports){
|
|
7300
7397
|
"use strict";
|
|
7301
7398
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7302
7399
|
exports.Deceto = void 0;
|
|
@@ -7330,7 +7427,7 @@ class Deceto extends tupla_1.Tupla {
|
|
|
7330
7427
|
}
|
|
7331
7428
|
exports.Deceto = Deceto;
|
|
7332
7429
|
|
|
7333
|
-
},{"./tupla":
|
|
7430
|
+
},{"./tupla":65}],56:[function(require,module,exports){
|
|
7334
7431
|
"use strict";
|
|
7335
7432
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7336
7433
|
exports.Dupla = void 0;
|
|
@@ -7344,7 +7441,7 @@ class Dupla extends tupla_1.Tupla {
|
|
|
7344
7441
|
}
|
|
7345
7442
|
exports.Dupla = Dupla;
|
|
7346
7443
|
|
|
7347
|
-
},{"./tupla":
|
|
7444
|
+
},{"./tupla":65}],57:[function(require,module,exports){
|
|
7348
7445
|
"use strict";
|
|
7349
7446
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7350
7447
|
if (k2 === undefined) k2 = k;
|
|
@@ -7413,7 +7510,7 @@ class SeletorTuplas {
|
|
|
7413
7510
|
}
|
|
7414
7511
|
exports.SeletorTuplas = SeletorTuplas;
|
|
7415
7512
|
|
|
7416
|
-
},{"./deceto":
|
|
7513
|
+
},{"./deceto":55,"./dupla":56,"./noneto":58,"./octeto":59,"./quarteto":60,"./quinteto":61,"./septeto":62,"./sexteto":63,"./trio":64,"./tupla":65}],58:[function(require,module,exports){
|
|
7417
7514
|
"use strict";
|
|
7418
7515
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7419
7516
|
exports.Noneto = void 0;
|
|
@@ -7440,7 +7537,7 @@ class Noneto extends tupla_1.Tupla {
|
|
|
7440
7537
|
}
|
|
7441
7538
|
exports.Noneto = Noneto;
|
|
7442
7539
|
|
|
7443
|
-
},{"./tupla":
|
|
7540
|
+
},{"./tupla":65}],59:[function(require,module,exports){
|
|
7444
7541
|
"use strict";
|
|
7445
7542
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7446
7543
|
exports.Octeto = void 0;
|
|
@@ -7466,7 +7563,7 @@ class Octeto extends tupla_1.Tupla {
|
|
|
7466
7563
|
}
|
|
7467
7564
|
exports.Octeto = Octeto;
|
|
7468
7565
|
|
|
7469
|
-
},{"./tupla":
|
|
7566
|
+
},{"./tupla":65}],60:[function(require,module,exports){
|
|
7470
7567
|
"use strict";
|
|
7471
7568
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7472
7569
|
exports.Quarteto = void 0;
|
|
@@ -7482,7 +7579,7 @@ class Quarteto extends tupla_1.Tupla {
|
|
|
7482
7579
|
}
|
|
7483
7580
|
exports.Quarteto = Quarteto;
|
|
7484
7581
|
|
|
7485
|
-
},{"./tupla":
|
|
7582
|
+
},{"./tupla":65}],61:[function(require,module,exports){
|
|
7486
7583
|
"use strict";
|
|
7487
7584
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7488
7585
|
exports.Quinteto = void 0;
|
|
@@ -7499,7 +7596,7 @@ class Quinteto extends tupla_1.Tupla {
|
|
|
7499
7596
|
}
|
|
7500
7597
|
exports.Quinteto = Quinteto;
|
|
7501
7598
|
|
|
7502
|
-
},{"./tupla":
|
|
7599
|
+
},{"./tupla":65}],62:[function(require,module,exports){
|
|
7503
7600
|
"use strict";
|
|
7504
7601
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7505
7602
|
exports.Septeto = void 0;
|
|
@@ -7524,7 +7621,7 @@ class Septeto extends tupla_1.Tupla {
|
|
|
7524
7621
|
}
|
|
7525
7622
|
exports.Septeto = Septeto;
|
|
7526
7623
|
|
|
7527
|
-
},{"./tupla":
|
|
7624
|
+
},{"./tupla":65}],63:[function(require,module,exports){
|
|
7528
7625
|
"use strict";
|
|
7529
7626
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7530
7627
|
exports.Sexteto = void 0;
|
|
@@ -7542,7 +7639,7 @@ class Sexteto extends tupla_1.Tupla {
|
|
|
7542
7639
|
}
|
|
7543
7640
|
exports.Sexteto = Sexteto;
|
|
7544
7641
|
|
|
7545
|
-
},{"./tupla":
|
|
7642
|
+
},{"./tupla":65}],64:[function(require,module,exports){
|
|
7546
7643
|
"use strict";
|
|
7547
7644
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7548
7645
|
exports.Trio = void 0;
|
|
@@ -7557,7 +7654,7 @@ class Trio extends tupla_1.Tupla {
|
|
|
7557
7654
|
}
|
|
7558
7655
|
exports.Trio = Trio;
|
|
7559
7656
|
|
|
7560
|
-
},{"./tupla":
|
|
7657
|
+
},{"./tupla":65}],65:[function(require,module,exports){
|
|
7561
7658
|
"use strict";
|
|
7562
7659
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7563
7660
|
exports.Tupla = void 0;
|
|
@@ -7568,7 +7665,7 @@ class Tupla {
|
|
|
7568
7665
|
}
|
|
7569
7666
|
exports.Tupla = Tupla;
|
|
7570
7667
|
|
|
7571
|
-
},{}],
|
|
7668
|
+
},{}],66:[function(require,module,exports){
|
|
7572
7669
|
"use strict";
|
|
7573
7670
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7574
7671
|
exports.Unario = void 0;
|
|
@@ -7586,7 +7683,7 @@ class Unario {
|
|
|
7586
7683
|
}
|
|
7587
7684
|
exports.Unario = Unario;
|
|
7588
7685
|
|
|
7589
|
-
},{}],
|
|
7686
|
+
},{}],67:[function(require,module,exports){
|
|
7590
7687
|
"use strict";
|
|
7591
7688
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7592
7689
|
exports.Variavel = void 0;
|
|
@@ -7603,7 +7700,7 @@ class Variavel {
|
|
|
7603
7700
|
}
|
|
7604
7701
|
exports.Variavel = Variavel;
|
|
7605
7702
|
|
|
7606
|
-
},{}],
|
|
7703
|
+
},{}],68:[function(require,module,exports){
|
|
7607
7704
|
"use strict";
|
|
7608
7705
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7609
7706
|
exports.Vetor = void 0;
|
|
@@ -7626,7 +7723,7 @@ class Vetor {
|
|
|
7626
7723
|
}
|
|
7627
7724
|
exports.Vetor = Vetor;
|
|
7628
7725
|
|
|
7629
|
-
},{}],
|
|
7726
|
+
},{}],69:[function(require,module,exports){
|
|
7630
7727
|
"use strict";
|
|
7631
7728
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7632
7729
|
exports.Aleatorio = void 0;
|
|
@@ -7643,7 +7740,7 @@ class Aleatorio extends declaracao_1.Declaracao {
|
|
|
7643
7740
|
}
|
|
7644
7741
|
exports.Aleatorio = Aleatorio;
|
|
7645
7742
|
|
|
7646
|
-
},{"./declaracao":
|
|
7743
|
+
},{"./declaracao":77}],70:[function(require,module,exports){
|
|
7647
7744
|
"use strict";
|
|
7648
7745
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7649
7746
|
exports.Bloco = void 0;
|
|
@@ -7659,7 +7756,7 @@ class Bloco extends declaracao_1.Declaracao {
|
|
|
7659
7756
|
}
|
|
7660
7757
|
exports.Bloco = Bloco;
|
|
7661
7758
|
|
|
7662
|
-
},{"./declaracao":
|
|
7759
|
+
},{"./declaracao":77}],71:[function(require,module,exports){
|
|
7663
7760
|
"use strict";
|
|
7664
7761
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7665
7762
|
exports.CabecalhoPrograma = void 0;
|
|
@@ -7675,7 +7772,7 @@ class CabecalhoPrograma extends declaracao_1.Declaracao {
|
|
|
7675
7772
|
}
|
|
7676
7773
|
exports.CabecalhoPrograma = CabecalhoPrograma;
|
|
7677
7774
|
|
|
7678
|
-
},{"./declaracao":
|
|
7775
|
+
},{"./declaracao":77}],72:[function(require,module,exports){
|
|
7679
7776
|
"use strict";
|
|
7680
7777
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7681
7778
|
exports.Classe = void 0;
|
|
@@ -7695,7 +7792,7 @@ class Classe extends declaracao_1.Declaracao {
|
|
|
7695
7792
|
}
|
|
7696
7793
|
exports.Classe = Classe;
|
|
7697
7794
|
|
|
7698
|
-
},{"./declaracao":
|
|
7795
|
+
},{"./declaracao":77}],73:[function(require,module,exports){
|
|
7699
7796
|
"use strict";
|
|
7700
7797
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7701
7798
|
exports.Comentario = void 0;
|
|
@@ -7717,7 +7814,7 @@ class Comentario extends declaracao_1.Declaracao {
|
|
|
7717
7814
|
}
|
|
7718
7815
|
exports.Comentario = Comentario;
|
|
7719
7816
|
|
|
7720
|
-
},{"./declaracao":
|
|
7817
|
+
},{"./declaracao":77}],74:[function(require,module,exports){
|
|
7721
7818
|
"use strict";
|
|
7722
7819
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7723
7820
|
exports.ConstMultiplo = void 0;
|
|
@@ -7738,7 +7835,7 @@ class ConstMultiplo extends declaracao_1.Declaracao {
|
|
|
7738
7835
|
}
|
|
7739
7836
|
exports.ConstMultiplo = ConstMultiplo;
|
|
7740
7837
|
|
|
7741
|
-
},{"./declaracao":
|
|
7838
|
+
},{"./declaracao":77}],75:[function(require,module,exports){
|
|
7742
7839
|
"use strict";
|
|
7743
7840
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7744
7841
|
exports.Const = void 0;
|
|
@@ -7765,7 +7862,7 @@ class Const extends declaracao_1.Declaracao {
|
|
|
7765
7862
|
}
|
|
7766
7863
|
exports.Const = Const;
|
|
7767
7864
|
|
|
7768
|
-
},{"./declaracao":
|
|
7865
|
+
},{"./declaracao":77}],76:[function(require,module,exports){
|
|
7769
7866
|
"use strict";
|
|
7770
7867
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7771
7868
|
exports.Continua = void 0;
|
|
@@ -7780,7 +7877,7 @@ class Continua extends declaracao_1.Declaracao {
|
|
|
7780
7877
|
}
|
|
7781
7878
|
exports.Continua = Continua;
|
|
7782
7879
|
|
|
7783
|
-
},{"./declaracao":
|
|
7880
|
+
},{"./declaracao":77}],77:[function(require,module,exports){
|
|
7784
7881
|
"use strict";
|
|
7785
7882
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7786
7883
|
exports.Declaracao = void 0;
|
|
@@ -7800,7 +7897,7 @@ class Declaracao {
|
|
|
7800
7897
|
}
|
|
7801
7898
|
exports.Declaracao = Declaracao;
|
|
7802
7899
|
|
|
7803
|
-
},{}],
|
|
7900
|
+
},{}],78:[function(require,module,exports){
|
|
7804
7901
|
"use strict";
|
|
7805
7902
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7806
7903
|
exports.Enquanto = void 0;
|
|
@@ -7817,7 +7914,7 @@ class Enquanto extends declaracao_1.Declaracao {
|
|
|
7817
7914
|
}
|
|
7818
7915
|
exports.Enquanto = Enquanto;
|
|
7819
7916
|
|
|
7820
|
-
},{"./declaracao":
|
|
7917
|
+
},{"./declaracao":77}],79:[function(require,module,exports){
|
|
7821
7918
|
"use strict";
|
|
7822
7919
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7823
7920
|
exports.Escolha = void 0;
|
|
@@ -7838,7 +7935,7 @@ class Escolha extends declaracao_1.Declaracao {
|
|
|
7838
7935
|
}
|
|
7839
7936
|
exports.Escolha = Escolha;
|
|
7840
7937
|
|
|
7841
|
-
},{"./declaracao":
|
|
7938
|
+
},{"./declaracao":77}],80:[function(require,module,exports){
|
|
7842
7939
|
"use strict";
|
|
7843
7940
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7844
7941
|
exports.EscrevaMesmaLinha = void 0;
|
|
@@ -7854,7 +7951,7 @@ class EscrevaMesmaLinha extends declaracao_1.Declaracao {
|
|
|
7854
7951
|
}
|
|
7855
7952
|
exports.EscrevaMesmaLinha = EscrevaMesmaLinha;
|
|
7856
7953
|
|
|
7857
|
-
},{"./declaracao":
|
|
7954
|
+
},{"./declaracao":77}],81:[function(require,module,exports){
|
|
7858
7955
|
"use strict";
|
|
7859
7956
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7860
7957
|
exports.Escreva = void 0;
|
|
@@ -7870,7 +7967,7 @@ class Escreva extends declaracao_1.Declaracao {
|
|
|
7870
7967
|
}
|
|
7871
7968
|
exports.Escreva = Escreva;
|
|
7872
7969
|
|
|
7873
|
-
},{"./declaracao":
|
|
7970
|
+
},{"./declaracao":77}],82:[function(require,module,exports){
|
|
7874
7971
|
"use strict";
|
|
7875
7972
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7876
7973
|
exports.Expressao = void 0;
|
|
@@ -7886,7 +7983,7 @@ class Expressao extends declaracao_1.Declaracao {
|
|
|
7886
7983
|
}
|
|
7887
7984
|
exports.Expressao = Expressao;
|
|
7888
7985
|
|
|
7889
|
-
},{"./declaracao":
|
|
7986
|
+
},{"./declaracao":77}],83:[function(require,module,exports){
|
|
7890
7987
|
"use strict";
|
|
7891
7988
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7892
7989
|
exports.Falhar = void 0;
|
|
@@ -7903,7 +8000,7 @@ class Falhar extends declaracao_1.Declaracao {
|
|
|
7903
8000
|
}
|
|
7904
8001
|
exports.Falhar = Falhar;
|
|
7905
8002
|
|
|
7906
|
-
},{"./declaracao":
|
|
8003
|
+
},{"./declaracao":77}],84:[function(require,module,exports){
|
|
7907
8004
|
"use strict";
|
|
7908
8005
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7909
8006
|
exports.Fazer = void 0;
|
|
@@ -7920,7 +8017,7 @@ class Fazer extends declaracao_1.Declaracao {
|
|
|
7920
8017
|
}
|
|
7921
8018
|
exports.Fazer = Fazer;
|
|
7922
8019
|
|
|
7923
|
-
},{"./declaracao":
|
|
8020
|
+
},{"./declaracao":77}],85:[function(require,module,exports){
|
|
7924
8021
|
"use strict";
|
|
7925
8022
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7926
8023
|
exports.FuncaoDeclaracao = void 0;
|
|
@@ -7944,7 +8041,7 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
|
|
|
7944
8041
|
}
|
|
7945
8042
|
exports.FuncaoDeclaracao = FuncaoDeclaracao;
|
|
7946
8043
|
|
|
7947
|
-
},{"../geracao-identificadores":
|
|
8044
|
+
},{"../geracao-identificadores":107,"./declaracao":77}],86:[function(require,module,exports){
|
|
7948
8045
|
"use strict";
|
|
7949
8046
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7950
8047
|
exports.Importar = void 0;
|
|
@@ -7965,7 +8062,7 @@ class Importar extends declaracao_1.Declaracao {
|
|
|
7965
8062
|
}
|
|
7966
8063
|
exports.Importar = Importar;
|
|
7967
8064
|
|
|
7968
|
-
},{"./declaracao":
|
|
8065
|
+
},{"./declaracao":77}],87:[function(require,module,exports){
|
|
7969
8066
|
"use strict";
|
|
7970
8067
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7971
8068
|
if (k2 === undefined) k2 = k;
|
|
@@ -8013,7 +8110,7 @@ __exportStar(require("./tente"), exports);
|
|
|
8013
8110
|
__exportStar(require("./var"), exports);
|
|
8014
8111
|
__exportStar(require("./var-multiplo"), exports);
|
|
8015
8112
|
|
|
8016
|
-
},{"./aleatorio":
|
|
8113
|
+
},{"./aleatorio":69,"./bloco":70,"./cabecalho-programa":71,"./classe":72,"./comentario":73,"./const":75,"./const-multiplo":74,"./continua":76,"./declaracao":77,"./enquanto":78,"./escolha":79,"./escreva":81,"./escreva-mesma-linha":80,"./expressao":82,"./falhar":83,"./fazer":84,"./funcao":85,"./importar":86,"./inicio-algoritmo":88,"./para":90,"./para-cada":89,"./propriedade-classe":91,"./retorna":92,"./se":93,"./sustar":94,"./tendo-como":95,"./tente":96,"./var":98,"./var-multiplo":97}],88:[function(require,module,exports){
|
|
8017
8114
|
"use strict";
|
|
8018
8115
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8019
8116
|
exports.InicioAlgoritmo = void 0;
|
|
@@ -8028,7 +8125,7 @@ class InicioAlgoritmo extends declaracao_1.Declaracao {
|
|
|
8028
8125
|
}
|
|
8029
8126
|
exports.InicioAlgoritmo = InicioAlgoritmo;
|
|
8030
8127
|
|
|
8031
|
-
},{"./declaracao":
|
|
8128
|
+
},{"./declaracao":77}],89:[function(require,module,exports){
|
|
8032
8129
|
"use strict";
|
|
8033
8130
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8034
8131
|
exports.ParaCada = void 0;
|
|
@@ -8047,7 +8144,7 @@ class ParaCada extends declaracao_1.Declaracao {
|
|
|
8047
8144
|
}
|
|
8048
8145
|
exports.ParaCada = ParaCada;
|
|
8049
8146
|
|
|
8050
|
-
},{"./declaracao":
|
|
8147
|
+
},{"./declaracao":77}],90:[function(require,module,exports){
|
|
8051
8148
|
"use strict";
|
|
8052
8149
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8053
8150
|
exports.Para = void 0;
|
|
@@ -8073,7 +8170,7 @@ class Para extends declaracao_1.Declaracao {
|
|
|
8073
8170
|
}
|
|
8074
8171
|
exports.Para = Para;
|
|
8075
8172
|
|
|
8076
|
-
},{"./declaracao":
|
|
8173
|
+
},{"./declaracao":77}],91:[function(require,module,exports){
|
|
8077
8174
|
"use strict";
|
|
8078
8175
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8079
8176
|
exports.PropriedadeClasse = void 0;
|
|
@@ -8091,7 +8188,7 @@ class PropriedadeClasse extends declaracao_1.Declaracao {
|
|
|
8091
8188
|
}
|
|
8092
8189
|
exports.PropriedadeClasse = PropriedadeClasse;
|
|
8093
8190
|
|
|
8094
|
-
},{"./declaracao":
|
|
8191
|
+
},{"./declaracao":77}],92:[function(require,module,exports){
|
|
8095
8192
|
"use strict";
|
|
8096
8193
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8097
8194
|
exports.Retorna = void 0;
|
|
@@ -8114,7 +8211,7 @@ class Retorna extends declaracao_1.Declaracao {
|
|
|
8114
8211
|
}
|
|
8115
8212
|
exports.Retorna = Retorna;
|
|
8116
8213
|
|
|
8117
|
-
},{"./declaracao":
|
|
8214
|
+
},{"./declaracao":77}],93:[function(require,module,exports){
|
|
8118
8215
|
"use strict";
|
|
8119
8216
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8120
8217
|
exports.Se = void 0;
|
|
@@ -8133,7 +8230,7 @@ class Se extends declaracao_1.Declaracao {
|
|
|
8133
8230
|
}
|
|
8134
8231
|
exports.Se = Se;
|
|
8135
8232
|
|
|
8136
|
-
},{"./declaracao":
|
|
8233
|
+
},{"./declaracao":77}],94:[function(require,module,exports){
|
|
8137
8234
|
"use strict";
|
|
8138
8235
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8139
8236
|
exports.Sustar = void 0;
|
|
@@ -8148,7 +8245,7 @@ class Sustar extends declaracao_1.Declaracao {
|
|
|
8148
8245
|
}
|
|
8149
8246
|
exports.Sustar = Sustar;
|
|
8150
8247
|
|
|
8151
|
-
},{"./declaracao":
|
|
8248
|
+
},{"./declaracao":77}],95:[function(require,module,exports){
|
|
8152
8249
|
"use strict";
|
|
8153
8250
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8154
8251
|
exports.TendoComo = void 0;
|
|
@@ -8171,7 +8268,7 @@ class TendoComo extends declaracao_1.Declaracao {
|
|
|
8171
8268
|
}
|
|
8172
8269
|
exports.TendoComo = TendoComo;
|
|
8173
8270
|
|
|
8174
|
-
},{"./declaracao":
|
|
8271
|
+
},{"./declaracao":77}],96:[function(require,module,exports){
|
|
8175
8272
|
"use strict";
|
|
8176
8273
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8177
8274
|
exports.Tente = void 0;
|
|
@@ -8193,7 +8290,7 @@ class Tente extends declaracao_1.Declaracao {
|
|
|
8193
8290
|
}
|
|
8194
8291
|
exports.Tente = Tente;
|
|
8195
8292
|
|
|
8196
|
-
},{"./declaracao":
|
|
8293
|
+
},{"./declaracao":77}],97:[function(require,module,exports){
|
|
8197
8294
|
"use strict";
|
|
8198
8295
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8199
8296
|
exports.VarMultiplo = void 0;
|
|
@@ -8215,7 +8312,7 @@ class VarMultiplo extends declaracao_1.Declaracao {
|
|
|
8215
8312
|
}
|
|
8216
8313
|
exports.VarMultiplo = VarMultiplo;
|
|
8217
8314
|
|
|
8218
|
-
},{"./declaracao":
|
|
8315
|
+
},{"./declaracao":77}],98:[function(require,module,exports){
|
|
8219
8316
|
"use strict";
|
|
8220
8317
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8221
8318
|
exports.Var = void 0;
|
|
@@ -8244,7 +8341,7 @@ class Var extends declaracao_1.Declaracao {
|
|
|
8244
8341
|
}
|
|
8245
8342
|
exports.Var = Var;
|
|
8246
8343
|
|
|
8247
|
-
},{"./declaracao":
|
|
8344
|
+
},{"./declaracao":77}],99:[function(require,module,exports){
|
|
8248
8345
|
"use strict";
|
|
8249
8346
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8250
8347
|
exports.default = cyrb53;
|
|
@@ -8268,7 +8365,7 @@ function cyrb53(nomeArquivo, semente = 0) {
|
|
|
8268
8365
|
return 4294967296 * (2097151 & h2) + (h1 >>> 0);
|
|
8269
8366
|
}
|
|
8270
8367
|
|
|
8271
|
-
},{}],
|
|
8368
|
+
},{}],100:[function(require,module,exports){
|
|
8272
8369
|
"use strict";
|
|
8273
8370
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
8274
8371
|
if (k2 === undefined) k2 = k;
|
|
@@ -8293,11 +8390,11 @@ var cyrb53_1 = require("./cyrb53");
|
|
|
8293
8390
|
Object.defineProperty(exports, "cyrb53", { enumerable: true, get: function () { return __importDefault(cyrb53_1).default; } });
|
|
8294
8391
|
__exportStar(require("./ponto-parada"), exports);
|
|
8295
8392
|
|
|
8296
|
-
},{"./cyrb53":
|
|
8393
|
+
},{"./cyrb53":99,"./ponto-parada":101}],101:[function(require,module,exports){
|
|
8297
8394
|
"use strict";
|
|
8298
8395
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8299
8396
|
|
|
8300
|
-
},{}],
|
|
8397
|
+
},{}],102:[function(require,module,exports){
|
|
8301
8398
|
"use strict";
|
|
8302
8399
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8303
8400
|
exports.ErroEmTempoDeExecucao = void 0;
|
|
@@ -8312,7 +8409,7 @@ class ErroEmTempoDeExecucao extends Error {
|
|
|
8312
8409
|
}
|
|
8313
8410
|
exports.ErroEmTempoDeExecucao = ErroEmTempoDeExecucao;
|
|
8314
8411
|
|
|
8315
|
-
},{}],
|
|
8412
|
+
},{}],103:[function(require,module,exports){
|
|
8316
8413
|
"use strict";
|
|
8317
8414
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
8318
8415
|
if (k2 === undefined) k2 = k;
|
|
@@ -8331,7 +8428,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
8331
8428
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8332
8429
|
__exportStar(require("./erro-em-tempo-de-execucao"), exports);
|
|
8333
8430
|
|
|
8334
|
-
},{"./erro-em-tempo-de-execucao":
|
|
8431
|
+
},{"./erro-em-tempo-de-execucao":102}],104:[function(require,module,exports){
|
|
8335
8432
|
"use strict";
|
|
8336
8433
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8337
8434
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -8353,6 +8450,12 @@ class FormatadorDelegua {
|
|
|
8353
8450
|
this.devePularLinha = true;
|
|
8354
8451
|
this.deveIndentar = true;
|
|
8355
8452
|
}
|
|
8453
|
+
visitarExpressaoSeparador(expressao) {
|
|
8454
|
+
throw new Error('Método não implementado.');
|
|
8455
|
+
}
|
|
8456
|
+
visitarExpressaoComentario(expressao) {
|
|
8457
|
+
throw new Error('Método não implementado.');
|
|
8458
|
+
}
|
|
8356
8459
|
visitarExpressaoArgumentoReferenciaFuncao(expressao) {
|
|
8357
8460
|
this.codigoFormatado += expressao.simboloFuncao.lexema;
|
|
8358
8461
|
}
|
|
@@ -9054,11 +9157,17 @@ class FormatadorDelegua {
|
|
|
9054
9157
|
}
|
|
9055
9158
|
exports.FormatadorDelegua = FormatadorDelegua;
|
|
9056
9159
|
|
|
9057
|
-
},{"../construtos":
|
|
9160
|
+
},{"../construtos":45,"../tipos-de-simbolos/delegua":173}],105:[function(require,module,exports){
|
|
9058
9161
|
"use strict";
|
|
9059
9162
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9060
9163
|
exports.FormatadorPitugues = void 0;
|
|
9061
9164
|
class FormatadorPitugues {
|
|
9165
|
+
visitarExpressaoSeparador(expressao) {
|
|
9166
|
+
throw new Error('Método não implementado.');
|
|
9167
|
+
}
|
|
9168
|
+
visitarExpressaoComentario(expressao) {
|
|
9169
|
+
throw new Error('Método não implementado.');
|
|
9170
|
+
}
|
|
9062
9171
|
visitarExpressaoArgumentoReferenciaFuncao(expressao) {
|
|
9063
9172
|
throw new Error('Método não implementado.');
|
|
9064
9173
|
}
|
|
@@ -9230,7 +9339,7 @@ class FormatadorPitugues {
|
|
|
9230
9339
|
}
|
|
9231
9340
|
exports.FormatadorPitugues = FormatadorPitugues;
|
|
9232
9341
|
|
|
9233
|
-
},{}],
|
|
9342
|
+
},{}],106:[function(require,module,exports){
|
|
9234
9343
|
"use strict";
|
|
9235
9344
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9236
9345
|
if (k2 === undefined) k2 = k;
|
|
@@ -9250,7 +9359,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
9250
9359
|
__exportStar(require("./formatador-delegua"), exports);
|
|
9251
9360
|
__exportStar(require("./formatador-pitugues"), exports);
|
|
9252
9361
|
|
|
9253
|
-
},{"./formatador-delegua":
|
|
9362
|
+
},{"./formatador-delegua":104,"./formatador-pitugues":105}],107:[function(require,module,exports){
|
|
9254
9363
|
"use strict";
|
|
9255
9364
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9256
9365
|
exports.uuidv4 = uuidv4;
|
|
@@ -9274,7 +9383,7 @@ function uuidv4() {
|
|
|
9274
9383
|
});
|
|
9275
9384
|
}
|
|
9276
9385
|
|
|
9277
|
-
},{}],
|
|
9386
|
+
},{}],108:[function(require,module,exports){
|
|
9278
9387
|
"use strict";
|
|
9279
9388
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9280
9389
|
if (k2 === undefined) k2 = k;
|
|
@@ -9303,7 +9412,7 @@ __exportStar(require("./interpretador"), exports);
|
|
|
9303
9412
|
__exportStar(require("./lexador"), exports);
|
|
9304
9413
|
__exportStar(require("./tradutores"), exports);
|
|
9305
9414
|
|
|
9306
|
-
},{"./avaliador-sintatico":10,"./construtos":
|
|
9415
|
+
},{"./avaliador-sintatico":10,"./construtos":45,"./declaracoes":87,"./depuracao":100,"./formatadores":106,"./interfaces":116,"./interpretador":146,"./lexador":162,"./tradutores":180}],109:[function(require,module,exports){
|
|
9307
9416
|
"use strict";
|
|
9308
9417
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
9309
9418
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -9361,7 +9470,7 @@ function inferirTipoVariavel(variavel) {
|
|
|
9361
9470
|
if (variavel === null) {
|
|
9362
9471
|
return 'nulo';
|
|
9363
9472
|
}
|
|
9364
|
-
const tipo = variavel.constructor.name;
|
|
9473
|
+
const tipo = variavel.constructor ? variavel.constructor.name : typeof variavel;
|
|
9365
9474
|
switch (tipo) {
|
|
9366
9475
|
case 'String':
|
|
9367
9476
|
case 'string':
|
|
@@ -9430,7 +9539,7 @@ function tipoInferenciaParaTipoDadosElementar(tipoInferencia) {
|
|
|
9430
9539
|
}
|
|
9431
9540
|
}
|
|
9432
9541
|
|
|
9433
|
-
},{"./tipos-de-dados/delegua":
|
|
9542
|
+
},{"./tipos-de-dados/delegua":170,"./tipos-de-dados/primitivos":171,"./tipos-de-simbolos/delegua":173}],110:[function(require,module,exports){
|
|
9434
9543
|
"use strict";
|
|
9435
9544
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9436
9545
|
exports.InformacaoVariavelOuConstante = void 0;
|
|
@@ -9449,15 +9558,15 @@ class InformacaoVariavelOuConstante {
|
|
|
9449
9558
|
}
|
|
9450
9559
|
exports.InformacaoVariavelOuConstante = InformacaoVariavelOuConstante;
|
|
9451
9560
|
|
|
9452
|
-
},{}],
|
|
9561
|
+
},{}],111:[function(require,module,exports){
|
|
9453
9562
|
"use strict";
|
|
9454
9563
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9455
9564
|
|
|
9456
|
-
},{}],
|
|
9565
|
+
},{}],112:[function(require,module,exports){
|
|
9457
9566
|
"use strict";
|
|
9458
9567
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9459
9568
|
|
|
9460
|
-
},{}],
|
|
9569
|
+
},{}],113:[function(require,module,exports){
|
|
9461
9570
|
"use strict";
|
|
9462
9571
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9463
9572
|
exports.DiagnosticoSeveridade = void 0;
|
|
@@ -9469,7 +9578,7 @@ var DiagnosticoSeveridade;
|
|
|
9469
9578
|
DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
|
|
9470
9579
|
})(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
|
|
9471
9580
|
|
|
9472
|
-
},{}],
|
|
9581
|
+
},{}],114:[function(require,module,exports){
|
|
9473
9582
|
"use strict";
|
|
9474
9583
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9475
9584
|
if (k2 === undefined) k2 = k;
|
|
@@ -9488,11 +9597,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
9488
9597
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9489
9598
|
__exportStar(require("./diagnostico-analisador-semantico"), exports);
|
|
9490
9599
|
|
|
9491
|
-
},{"./diagnostico-analisador-semantico":
|
|
9600
|
+
},{"./diagnostico-analisador-semantico":113}],115:[function(require,module,exports){
|
|
9492
9601
|
"use strict";
|
|
9493
9602
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9494
9603
|
|
|
9495
|
-
},{}],
|
|
9604
|
+
},{}],116:[function(require,module,exports){
|
|
9496
9605
|
"use strict";
|
|
9497
9606
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9498
9607
|
if (k2 === undefined) k2 = k;
|
|
@@ -9527,35 +9636,35 @@ __exportStar(require("./construtos"), exports);
|
|
|
9527
9636
|
__exportStar(require("./erros"), exports);
|
|
9528
9637
|
__exportStar(require("./retornos"), exports);
|
|
9529
9638
|
|
|
9530
|
-
},{"./avaliador-sintatico-interface":
|
|
9639
|
+
},{"./avaliador-sintatico-interface":111,"./construtos":112,"./erros":114,"./formatador-comum-interface":115,"./interpretador-com-depuracao-interface":117,"./interpretador-interface":118,"./lexador-interface":119,"./parametro-interface":120,"./pilha-interface":121,"./primitiva-interface":122,"./resolvedor-interface":123,"./retornos":124,"./retornos/retorno-execucao-interface":126,"./simbolo-interface":129,"./tradutor-interface":130,"./variavel-interface":131,"./visitante-comum-interface":132}],117:[function(require,module,exports){
|
|
9531
9640
|
"use strict";
|
|
9532
9641
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9533
9642
|
|
|
9534
|
-
},{}],
|
|
9643
|
+
},{}],118:[function(require,module,exports){
|
|
9535
9644
|
"use strict";
|
|
9536
9645
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9537
9646
|
|
|
9538
|
-
},{}],
|
|
9647
|
+
},{}],119:[function(require,module,exports){
|
|
9539
9648
|
"use strict";
|
|
9540
9649
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9541
9650
|
|
|
9542
|
-
},{}],
|
|
9651
|
+
},{}],120:[function(require,module,exports){
|
|
9543
9652
|
"use strict";
|
|
9544
9653
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9545
9654
|
|
|
9546
|
-
},{}],
|
|
9655
|
+
},{}],121:[function(require,module,exports){
|
|
9547
9656
|
"use strict";
|
|
9548
9657
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9549
9658
|
|
|
9550
|
-
},{}],
|
|
9659
|
+
},{}],122:[function(require,module,exports){
|
|
9551
9660
|
"use strict";
|
|
9552
9661
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9553
9662
|
|
|
9554
|
-
},{}],
|
|
9663
|
+
},{}],123:[function(require,module,exports){
|
|
9555
9664
|
"use strict";
|
|
9556
9665
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9557
9666
|
|
|
9558
|
-
},{}],
|
|
9667
|
+
},{}],124:[function(require,module,exports){
|
|
9559
9668
|
"use strict";
|
|
9560
9669
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9561
9670
|
if (k2 === undefined) k2 = k;
|
|
@@ -9577,15 +9686,7 @@ __exportStar(require("./retorno-execucao-interface"), exports);
|
|
|
9577
9686
|
__exportStar(require("./retorno-interpretador"), exports);
|
|
9578
9687
|
__exportStar(require("./retorno-lexador"), exports);
|
|
9579
9688
|
|
|
9580
|
-
},{"./retorno-avaliador-sintatico":
|
|
9581
|
-
"use strict";
|
|
9582
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9583
|
-
|
|
9584
|
-
},{}],124:[function(require,module,exports){
|
|
9585
|
-
"use strict";
|
|
9586
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9587
|
-
|
|
9588
|
-
},{}],125:[function(require,module,exports){
|
|
9689
|
+
},{"./retorno-avaliador-sintatico":125,"./retorno-execucao-interface":126,"./retorno-interpretador":127,"./retorno-lexador":128}],125:[function(require,module,exports){
|
|
9589
9690
|
"use strict";
|
|
9590
9691
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9591
9692
|
|
|
@@ -9611,6 +9712,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
9611
9712
|
|
|
9612
9713
|
},{}],131:[function(require,module,exports){
|
|
9613
9714
|
"use strict";
|
|
9715
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9716
|
+
|
|
9717
|
+
},{}],132:[function(require,module,exports){
|
|
9718
|
+
"use strict";
|
|
9719
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9720
|
+
|
|
9721
|
+
},{}],133:[function(require,module,exports){
|
|
9722
|
+
"use strict";
|
|
9614
9723
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9615
9724
|
if (k2 === undefined) k2 = k;
|
|
9616
9725
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -9674,7 +9783,7 @@ function carregarBibliotecasGlobais(pilhaEscoposExecucao) {
|
|
|
9674
9783
|
pilhaEscoposExecucao.definirVariavel('tupla', new funcao_padrao_1.FuncaoPadrao(1, bibliotecaGlobal.tupla));
|
|
9675
9784
|
}
|
|
9676
9785
|
|
|
9677
|
-
},{"../bibliotecas/biblioteca-global":17,"./estruturas/funcao-padrao":
|
|
9786
|
+
},{"../bibliotecas/biblioteca-global":17,"./estruturas/funcao-padrao":139}],134:[function(require,module,exports){
|
|
9678
9787
|
"use strict";
|
|
9679
9788
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9680
9789
|
exports.EspacoMemoria = void 0;
|
|
@@ -9699,7 +9808,7 @@ class EspacoMemoria {
|
|
|
9699
9808
|
}
|
|
9700
9809
|
exports.EspacoMemoria = EspacoMemoria;
|
|
9701
9810
|
|
|
9702
|
-
},{}],
|
|
9811
|
+
},{}],135:[function(require,module,exports){
|
|
9703
9812
|
"use strict";
|
|
9704
9813
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9705
9814
|
exports.Chamavel = void 0;
|
|
@@ -9713,7 +9822,7 @@ class Chamavel {
|
|
|
9713
9822
|
}
|
|
9714
9823
|
exports.Chamavel = Chamavel;
|
|
9715
9824
|
|
|
9716
|
-
},{}],
|
|
9825
|
+
},{}],136:[function(require,module,exports){
|
|
9717
9826
|
"use strict";
|
|
9718
9827
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9719
9828
|
exports.ClassePadrao = void 0;
|
|
@@ -9754,7 +9863,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
|
|
|
9754
9863
|
}
|
|
9755
9864
|
exports.ClassePadrao = ClassePadrao;
|
|
9756
9865
|
|
|
9757
|
-
},{"./chamavel":
|
|
9866
|
+
},{"./chamavel":135}],137:[function(require,module,exports){
|
|
9758
9867
|
"use strict";
|
|
9759
9868
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9760
9869
|
exports.DeleguaFuncao = void 0;
|
|
@@ -9899,7 +10008,7 @@ class DeleguaFuncao extends chamavel_1.Chamavel {
|
|
|
9899
10008
|
}
|
|
9900
10009
|
exports.DeleguaFuncao = DeleguaFuncao;
|
|
9901
10010
|
|
|
9902
|
-
},{"../../declaracoes":
|
|
10011
|
+
},{"../../declaracoes":87,"../../quebras":169,"../espaco-memoria":134,"./chamavel":135}],138:[function(require,module,exports){
|
|
9903
10012
|
"use strict";
|
|
9904
10013
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9905
10014
|
exports.DescritorTipoClasse = void 0;
|
|
@@ -9980,7 +10089,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
|
|
|
9980
10089
|
}
|
|
9981
10090
|
exports.DescritorTipoClasse = DescritorTipoClasse;
|
|
9982
10091
|
|
|
9983
|
-
},{"../../excecoes":
|
|
10092
|
+
},{"../../excecoes":103,"./chamavel":135,"./objeto-delegua-classe":143}],139:[function(require,module,exports){
|
|
9984
10093
|
"use strict";
|
|
9985
10094
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9986
10095
|
exports.FuncaoPadrao = void 0;
|
|
@@ -10017,7 +10126,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
|
|
|
10017
10126
|
}
|
|
10018
10127
|
exports.FuncaoPadrao = FuncaoPadrao;
|
|
10019
10128
|
|
|
10020
|
-
},{"./chamavel":
|
|
10129
|
+
},{"./chamavel":135}],140:[function(require,module,exports){
|
|
10021
10130
|
"use strict";
|
|
10022
10131
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10023
10132
|
if (k2 === undefined) k2 = k;
|
|
@@ -10045,7 +10154,7 @@ __exportStar(require("./objeto-delegua-classe"), exports);
|
|
|
10045
10154
|
__exportStar(require("./objeto-padrao"), exports);
|
|
10046
10155
|
__exportStar(require("./referencia-montao"), exports);
|
|
10047
10156
|
|
|
10048
|
-
},{"./chamavel":
|
|
10157
|
+
},{"./chamavel":135,"./classe-padrao":136,"./delegua-funcao":137,"./descritor-tipo-classe":138,"./funcao-padrao":139,"./metodo-primitiva":141,"./modulo":142,"./objeto-delegua-classe":143,"./objeto-padrao":144,"./referencia-montao":145}],141:[function(require,module,exports){
|
|
10049
10158
|
"use strict";
|
|
10050
10159
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10051
10160
|
exports.MetodoPrimitiva = void 0;
|
|
@@ -10088,7 +10197,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
|
|
|
10088
10197
|
}
|
|
10089
10198
|
exports.MetodoPrimitiva = MetodoPrimitiva;
|
|
10090
10199
|
|
|
10091
|
-
},{"./chamavel":
|
|
10200
|
+
},{"./chamavel":135}],142:[function(require,module,exports){
|
|
10092
10201
|
"use strict";
|
|
10093
10202
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10094
10203
|
exports.DeleguaModulo = void 0;
|
|
@@ -10114,7 +10223,7 @@ class DeleguaModulo {
|
|
|
10114
10223
|
}
|
|
10115
10224
|
exports.DeleguaModulo = DeleguaModulo;
|
|
10116
10225
|
|
|
10117
|
-
},{}],
|
|
10226
|
+
},{}],143:[function(require,module,exports){
|
|
10118
10227
|
"use strict";
|
|
10119
10228
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10120
10229
|
exports.ObjetoDeleguaClasse = void 0;
|
|
@@ -10182,7 +10291,7 @@ class ObjetoDeleguaClasse {
|
|
|
10182
10291
|
}
|
|
10183
10292
|
exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
|
|
10184
10293
|
|
|
10185
|
-
},{"../../excecoes":
|
|
10294
|
+
},{"../../excecoes":103}],144:[function(require,module,exports){
|
|
10186
10295
|
"use strict";
|
|
10187
10296
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10188
10297
|
exports.ObjetoPadrao = void 0;
|
|
@@ -10216,7 +10325,7 @@ class ObjetoPadrao {
|
|
|
10216
10325
|
}
|
|
10217
10326
|
exports.ObjetoPadrao = ObjetoPadrao;
|
|
10218
10327
|
|
|
10219
|
-
},{}],
|
|
10328
|
+
},{}],145:[function(require,module,exports){
|
|
10220
10329
|
"use strict";
|
|
10221
10330
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10222
10331
|
exports.ReferenciaMontao = void 0;
|
|
@@ -10241,7 +10350,7 @@ class ReferenciaMontao {
|
|
|
10241
10350
|
}
|
|
10242
10351
|
exports.ReferenciaMontao = ReferenciaMontao;
|
|
10243
10352
|
|
|
10244
|
-
},{}],
|
|
10353
|
+
},{}],146:[function(require,module,exports){
|
|
10245
10354
|
"use strict";
|
|
10246
10355
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10247
10356
|
if (k2 === undefined) k2 = k;
|
|
@@ -10261,7 +10370,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
10261
10370
|
__exportStar(require("./interpretador"), exports);
|
|
10262
10371
|
__exportStar(require("./interpretador-base"), exports);
|
|
10263
10372
|
|
|
10264
|
-
},{"./interpretador":
|
|
10373
|
+
},{"./interpretador":148,"./interpretador-base":147}],147:[function(require,module,exports){
|
|
10265
10374
|
(function (process){(function (){
|
|
10266
10375
|
"use strict";
|
|
10267
10376
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
@@ -10337,6 +10446,12 @@ class InterpretadorBase {
|
|
|
10337
10446
|
this.pilhaEscoposExecucao.empilhar(escopoExecucao);
|
|
10338
10447
|
(0, comum_1.carregarBibliotecasGlobais)(this.pilhaEscoposExecucao);
|
|
10339
10448
|
}
|
|
10449
|
+
visitarExpressaoSeparador(expressao) {
|
|
10450
|
+
throw new Error('Método não implementado.');
|
|
10451
|
+
}
|
|
10452
|
+
visitarExpressaoComentario(expressao) {
|
|
10453
|
+
throw new Error('Método não implementado.');
|
|
10454
|
+
}
|
|
10340
10455
|
/**
|
|
10341
10456
|
* Usado para chamadas de métodos de primitiva.
|
|
10342
10457
|
* Sendo uma variável ou constante, a primitiva precisa atualizar a referência
|
|
@@ -11499,7 +11614,7 @@ class InterpretadorBase {
|
|
|
11499
11614
|
for (let i = 0; i < expressao.valores.length; i++) {
|
|
11500
11615
|
valores.push(await this.avaliar(expressao.valores[i]));
|
|
11501
11616
|
}
|
|
11502
|
-
return valores;
|
|
11617
|
+
return valores.filter(v => v);
|
|
11503
11618
|
}
|
|
11504
11619
|
visitarExpressaoSuper(expressao) {
|
|
11505
11620
|
const objeto = this.pilhaEscoposExecucao.obterVariavelPorNome('isto');
|
|
@@ -11698,7 +11813,7 @@ class InterpretadorBase {
|
|
|
11698
11813
|
exports.InterpretadorBase = InterpretadorBase;
|
|
11699
11814
|
|
|
11700
11815
|
}).call(this)}).call(this,require('_process'))
|
|
11701
|
-
},{"../avaliador-sintatico":10,"../bibliotecas/primitivas-dicionario":18,"../construtos":
|
|
11816
|
+
},{"../avaliador-sintatico":10,"../bibliotecas/primitivas-dicionario":18,"../construtos":45,"../excecoes":103,"../inferenciador":109,"../lexador":162,"../quebras":169,"../tipos-de-dados/delegua":170,"../tipos-de-dados/primitivos":171,"../tipos-de-simbolos/delegua":173,"./comum":133,"./espaco-memoria":134,"./estruturas":140,"./estruturas/metodo-primitiva":141,"./pilha-escopos-execucao":150,"_process":406,"browser-process-hrtime":352}],148:[function(require,module,exports){
|
|
11702
11817
|
"use strict";
|
|
11703
11818
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
11704
11819
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -11744,7 +11859,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
11744
11859
|
if (objeto instanceof estruturas_1.ReferenciaMontao) {
|
|
11745
11860
|
return this.resolverReferenciaMontao(objeto);
|
|
11746
11861
|
}
|
|
11747
|
-
if (objeto.hasOwnProperty('valor')) {
|
|
11862
|
+
if (objeto.hasOwnProperty && objeto.hasOwnProperty('valor')) {
|
|
11748
11863
|
if (Array.isArray(objeto.valor)) {
|
|
11749
11864
|
return this.resolverValor(objeto.valor);
|
|
11750
11865
|
}
|
|
@@ -11910,11 +12025,11 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
11910
12025
|
// Por exemplo, `objeto1.metodo1().metodo2()`.
|
|
11911
12026
|
// Como `RetornoQuebra` também possui `valor`, precisamos extrair o
|
|
11912
12027
|
// valor dele primeiro.
|
|
11913
|
-
if (variavelObjeto.constructor.name === 'RetornoQuebra') {
|
|
12028
|
+
if (variavelObjeto.constructor && variavelObjeto.constructor.name === 'RetornoQuebra') {
|
|
11914
12029
|
variavelObjeto = variavelObjeto.valor;
|
|
11915
12030
|
}
|
|
11916
12031
|
const objeto = this.resolverValor(variavelObjeto);
|
|
11917
|
-
if (objeto.constructor.name === 'ObjetoDeleguaClasse') {
|
|
12032
|
+
if (objeto.constructor && objeto.constructor.name === 'ObjetoDeleguaClasse') {
|
|
11918
12033
|
return objeto.obterMetodo(expressao.nomeMetodo) || null;
|
|
11919
12034
|
}
|
|
11920
12035
|
// Objeto simples do JavaScript, ou dicionário de Delégua.
|
|
@@ -11994,11 +12109,11 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
11994
12109
|
// Por exemplo, `objeto1.metodo1().metodo2()`.
|
|
11995
12110
|
// Como `RetornoQuebra` também possui `valor`, precisamos extrair o
|
|
11996
12111
|
// valor dele primeiro.
|
|
11997
|
-
if (variavelObjeto.constructor.name === 'RetornoQuebra') {
|
|
12112
|
+
if (variavelObjeto.constructor && variavelObjeto.constructor.name === 'RetornoQuebra') {
|
|
11998
12113
|
variavelObjeto = variavelObjeto.valor;
|
|
11999
12114
|
}
|
|
12000
12115
|
const objeto = this.resolverValor(variavelObjeto);
|
|
12001
|
-
if (objeto.constructor.name === 'ObjetoDeleguaClasse') {
|
|
12116
|
+
if (objeto.constructor && objeto.constructor.name === 'ObjetoDeleguaClasse') {
|
|
12002
12117
|
return objeto.obter(expressao.simbolo);
|
|
12003
12118
|
}
|
|
12004
12119
|
// Objeto simples do JavaScript, ou dicionário de Delégua.
|
|
@@ -12050,10 +12165,14 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
12050
12165
|
}
|
|
12051
12166
|
break;
|
|
12052
12167
|
}
|
|
12053
|
-
//
|
|
12168
|
+
// Objeto de uma classe JavaScript regular (ou seja, com construtor e propriedades)
|
|
12169
|
+
// que possua a propriedade.
|
|
12054
12170
|
// Exemplos: classes de LinConEs, como `RetornoComando`, ou bibliotecas globais com objetos próprios.
|
|
12055
|
-
if (objeto.hasOwnProperty(expressao.simbolo.lexema)
|
|
12056
|
-
|
|
12171
|
+
if (objeto.hasOwnProperty && objeto.hasOwnProperty(expressao.simbolo.lexema)) {
|
|
12172
|
+
return objeto[expressao.simbolo.lexema];
|
|
12173
|
+
}
|
|
12174
|
+
// Último caso: objeto simples, sem construtor, sem protótipo. Exemplo: {'a': 1, 'b': 2}
|
|
12175
|
+
if (typeof objeto[expressao.simbolo.lexema] !== 'undefined') {
|
|
12057
12176
|
return objeto[expressao.simbolo.lexema];
|
|
12058
12177
|
}
|
|
12059
12178
|
return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(null, `Método ou propriedade para objeto ou primitiva não encontrado: ${expressao.simbolo.lexema}.`, expressao.linha));
|
|
@@ -12065,14 +12184,14 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
12065
12184
|
// Por exemplo, `objeto1.metodo1().metodo2()`.
|
|
12066
12185
|
// Como `RetornoQuebra` também possui `valor`, precisamos extrair o
|
|
12067
12186
|
// valor dele primeiro.
|
|
12068
|
-
if (variavelObjeto.constructor.name === 'RetornoQuebra') {
|
|
12187
|
+
if (variavelObjeto.constructor && variavelObjeto.constructor.name === 'RetornoQuebra') {
|
|
12069
12188
|
variavelObjeto = variavelObjeto.valor;
|
|
12070
12189
|
}
|
|
12071
12190
|
const objeto = this.resolverValor(variavelObjeto);
|
|
12072
12191
|
// Outro caso que `instanceof` simplesmente não funciona para casos em Liquido,
|
|
12073
12192
|
// então testamos também o nome do construtor.
|
|
12074
12193
|
if (objeto instanceof estruturas_1.ObjetoDeleguaClasse ||
|
|
12075
|
-
objeto.constructor.name === 'ObjetoDeleguaClasse') {
|
|
12194
|
+
objeto.constructor && objeto.constructor.name === 'ObjetoDeleguaClasse') {
|
|
12076
12195
|
return objeto.obterMetodo(expressao.nomePropriedade) || null;
|
|
12077
12196
|
}
|
|
12078
12197
|
// Objeto simples do JavaScript, ou dicionário de Delégua.
|
|
@@ -12156,6 +12275,13 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
12156
12275
|
return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(expressao.objeto.nome, 'Somente listas, dicionários, classes e objetos podem ser mudados por índice.', expressao.linha));
|
|
12157
12276
|
}
|
|
12158
12277
|
}
|
|
12278
|
+
/**
|
|
12279
|
+
* Em Delégua e Pituguês, comentários não são importantes para a interpretação.
|
|
12280
|
+
* @param expressao
|
|
12281
|
+
*/
|
|
12282
|
+
async visitarExpressaoComentario(expressao) {
|
|
12283
|
+
return Promise.resolve();
|
|
12284
|
+
}
|
|
12159
12285
|
/**
|
|
12160
12286
|
* Execução de uma expressão de atribuição.
|
|
12161
12287
|
* @param expressao A expressão.
|
|
@@ -12259,6 +12385,14 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
12259
12385
|
}
|
|
12260
12386
|
return retornoQuebra;
|
|
12261
12387
|
}
|
|
12388
|
+
/**
|
|
12389
|
+
* Para Delégua e Pituguês, o separador é apenas um elemento de sintaxe.
|
|
12390
|
+
* Não há qualquer avaliação a ser feita.
|
|
12391
|
+
* @param expressao
|
|
12392
|
+
*/
|
|
12393
|
+
async visitarExpressaoSeparador(expressao) {
|
|
12394
|
+
return Promise.resolve(null);
|
|
12395
|
+
}
|
|
12262
12396
|
async visitarExpressaoTipoDe(expressao) {
|
|
12263
12397
|
let valorTipoDe = expressao.valor;
|
|
12264
12398
|
switch (valorTipoDe.constructor.name) {
|
|
@@ -12296,7 +12430,9 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
12296
12430
|
case 'Variavel':
|
|
12297
12431
|
return valorTipoDe.tipo;
|
|
12298
12432
|
case 'Vetor':
|
|
12299
|
-
|
|
12433
|
+
const vetor = valorTipoDe;
|
|
12434
|
+
const apenasValores = vetor.valores.filter(v => !['ComentarioComoConstruto', 'Separador'].includes(v.constructor.name));
|
|
12435
|
+
return (0, inferenciador_1.inferirTipoVariavel)(apenasValores);
|
|
12300
12436
|
default:
|
|
12301
12437
|
return (0, inferenciador_1.inferirTipoVariavel)(valorTipoDe);
|
|
12302
12438
|
}
|
|
@@ -12360,7 +12496,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
12360
12496
|
}
|
|
12361
12497
|
exports.Interpretador = Interpretador;
|
|
12362
12498
|
|
|
12363
|
-
},{"../bibliotecas/primitivas-dicionario":18,"../bibliotecas/primitivas-numero":19,"../bibliotecas/primitivas-texto":20,"../bibliotecas/primitivas-vetor":21,"../construtos":
|
|
12499
|
+
},{"../bibliotecas/primitivas-dicionario":18,"../bibliotecas/primitivas-numero":19,"../bibliotecas/primitivas-texto":20,"../bibliotecas/primitivas-vetor":21,"../construtos":45,"../excecoes":103,"../inferenciador":109,"../quebras":169,"../tipos-de-dados/delegua":170,"../tipos-de-dados/primitivos":171,"./estruturas":140,"./interpretador-base":147,"./montao":149}],149:[function(require,module,exports){
|
|
12364
12500
|
"use strict";
|
|
12365
12501
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12366
12502
|
exports.Montao = void 0;
|
|
@@ -12417,7 +12553,7 @@ class Montao {
|
|
|
12417
12553
|
}
|
|
12418
12554
|
exports.Montao = Montao;
|
|
12419
12555
|
|
|
12420
|
-
},{"../excecoes":
|
|
12556
|
+
},{"../excecoes":103,"../geracao-identificadores":107}],150:[function(require,module,exports){
|
|
12421
12557
|
"use strict";
|
|
12422
12558
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12423
12559
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -12700,7 +12836,7 @@ class PilhaEscoposExecucao {
|
|
|
12700
12836
|
}
|
|
12701
12837
|
exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
|
|
12702
12838
|
|
|
12703
|
-
},{"../excecoes":
|
|
12839
|
+
},{"../excecoes":103,"../inferenciador":109,"../lexador":162,"../tipos-de-dados/delegua":170,"./estruturas":140}],151:[function(require,module,exports){
|
|
12704
12840
|
"use strict";
|
|
12705
12841
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
12706
12842
|
if (k2 === undefined) k2 = k;
|
|
@@ -12723,7 +12859,7 @@ __exportStar(require("./lexador-guarani"), exports);
|
|
|
12723
12859
|
__exportStar(require("./lexador-portugol-ipt"), exports);
|
|
12724
12860
|
__exportStar(require("./lexador-tenda"), exports);
|
|
12725
12861
|
|
|
12726
|
-
},{"./lexador-egua-classico":
|
|
12862
|
+
},{"./lexador-egua-classico":152,"./lexador-guarani":153,"./lexador-pitugues":154,"./lexador-portugol-ipt":155,"./lexador-tenda":156}],152:[function(require,module,exports){
|
|
12727
12863
|
"use strict";
|
|
12728
12864
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12729
12865
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13013,7 +13149,7 @@ class LexadorEguaClassico {
|
|
|
13013
13149
|
}
|
|
13014
13150
|
exports.LexadorEguaClassico = LexadorEguaClassico;
|
|
13015
13151
|
|
|
13016
|
-
},{"../../tipos-de-simbolos/egua-classico":
|
|
13152
|
+
},{"../../tipos-de-simbolos/egua-classico":174,"../simbolo":168,"./palavras-reservadas/egua-classico":157}],153:[function(require,module,exports){
|
|
13017
13153
|
"use strict";
|
|
13018
13154
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13019
13155
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13132,7 +13268,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
|
|
|
13132
13268
|
}
|
|
13133
13269
|
exports.LexadorGuarani = LexadorGuarani;
|
|
13134
13270
|
|
|
13135
|
-
},{"../../tipos-de-simbolos/guarani":
|
|
13271
|
+
},{"../../tipos-de-simbolos/guarani":175,"../lexador-base":164,"./palavras-reservadas/guarani":158}],154:[function(require,module,exports){
|
|
13136
13272
|
"use strict";
|
|
13137
13273
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13138
13274
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13535,7 +13671,7 @@ class LexadorPitugues {
|
|
|
13535
13671
|
}
|
|
13536
13672
|
exports.LexadorPitugues = LexadorPitugues;
|
|
13537
13673
|
|
|
13538
|
-
},{"../../tipos-de-simbolos/pitugues":
|
|
13674
|
+
},{"../../tipos-de-simbolos/pitugues":177,"../simbolo":168,"./palavras-reservadas/pitugues":159,"browser-process-hrtime":352}],155:[function(require,module,exports){
|
|
13539
13675
|
"use strict";
|
|
13540
13676
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13541
13677
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13787,7 +13923,7 @@ class LexadorPortugolIpt {
|
|
|
13787
13923
|
}
|
|
13788
13924
|
exports.LexadorPortugolIpt = LexadorPortugolIpt;
|
|
13789
13925
|
|
|
13790
|
-
},{"../../tipos-de-simbolos/portugol-ipt":
|
|
13926
|
+
},{"../../tipos-de-simbolos/portugol-ipt":178,"../simbolo":168,"./palavras-reservadas/portugol-ipt":160}],156:[function(require,module,exports){
|
|
13791
13927
|
"use strict";
|
|
13792
13928
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13793
13929
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14178,7 +14314,7 @@ class LexadorTenda {
|
|
|
14178
14314
|
}
|
|
14179
14315
|
exports.LexadorTenda = LexadorTenda;
|
|
14180
14316
|
|
|
14181
|
-
},{"../../tipos-de-simbolos/tenda":
|
|
14317
|
+
},{"../../tipos-de-simbolos/tenda":179,"../simbolo":168,"./palavras-reservadas/tenda":161,"browser-process-hrtime":352}],157:[function(require,module,exports){
|
|
14182
14318
|
"use strict";
|
|
14183
14319
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14184
14320
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14219,7 +14355,7 @@ exports.palavrasReservadas = {
|
|
|
14219
14355
|
verdadeiro: egua_classico_1.default.VERDADEIRO,
|
|
14220
14356
|
};
|
|
14221
14357
|
|
|
14222
|
-
},{"../../../tipos-de-simbolos/egua-classico":
|
|
14358
|
+
},{"../../../tipos-de-simbolos/egua-classico":174}],158:[function(require,module,exports){
|
|
14223
14359
|
"use strict";
|
|
14224
14360
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14225
14361
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14231,7 +14367,7 @@ exports.palavrasReservadas = {
|
|
|
14231
14367
|
hai: guarani_1.default.HAI,
|
|
14232
14368
|
};
|
|
14233
14369
|
|
|
14234
|
-
},{"../../../tipos-de-simbolos/guarani":
|
|
14370
|
+
},{"../../../tipos-de-simbolos/guarani":175}],159:[function(require,module,exports){
|
|
14235
14371
|
"use strict";
|
|
14236
14372
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14237
14373
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14294,7 +14430,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
14294
14430
|
verdadeiro: pitugues_1.default.VERDADEIRO,
|
|
14295
14431
|
};
|
|
14296
14432
|
|
|
14297
|
-
},{"../../../tipos-de-simbolos/pitugues":
|
|
14433
|
+
},{"../../../tipos-de-simbolos/pitugues":177}],160:[function(require,module,exports){
|
|
14298
14434
|
"use strict";
|
|
14299
14435
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14300
14436
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14316,7 +14452,7 @@ exports.palavrasReservadas = {
|
|
|
14316
14452
|
senão: portugol_ipt_1.default.SENAO,
|
|
14317
14453
|
};
|
|
14318
14454
|
|
|
14319
|
-
},{"../../../tipos-de-simbolos/portugol-ipt":
|
|
14455
|
+
},{"../../../tipos-de-simbolos/portugol-ipt":178}],161:[function(require,module,exports){
|
|
14320
14456
|
"use strict";
|
|
14321
14457
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14322
14458
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14374,7 +14510,7 @@ exports.palavrasReservadas = {
|
|
|
14374
14510
|
Texto: tenda_1.default.BIBLIOTECA_GLOBAL,
|
|
14375
14511
|
};
|
|
14376
14512
|
|
|
14377
|
-
},{"../../../tipos-de-simbolos/tenda":
|
|
14513
|
+
},{"../../../tipos-de-simbolos/tenda":179}],162:[function(require,module,exports){
|
|
14378
14514
|
"use strict";
|
|
14379
14515
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14380
14516
|
if (k2 === undefined) k2 = k;
|
|
@@ -14397,7 +14533,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
|
|
|
14397
14533
|
__exportStar(require("./micro-lexador"), exports);
|
|
14398
14534
|
__exportStar(require("./simbolo"), exports);
|
|
14399
14535
|
|
|
14400
|
-
},{"./dialetos":
|
|
14536
|
+
},{"./dialetos":151,"./lexador":165,"./lexador-base-linha-unica":163,"./micro-lexador":166,"./simbolo":168}],163:[function(require,module,exports){
|
|
14401
14537
|
"use strict";
|
|
14402
14538
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14403
14539
|
exports.LexadorBaseLinhaUnica = void 0;
|
|
@@ -14481,7 +14617,7 @@ class LexadorBaseLinhaUnica {
|
|
|
14481
14617
|
}
|
|
14482
14618
|
exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
|
|
14483
14619
|
|
|
14484
|
-
},{"./simbolo":
|
|
14620
|
+
},{"./simbolo":168}],164:[function(require,module,exports){
|
|
14485
14621
|
"use strict";
|
|
14486
14622
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14487
14623
|
exports.LexadorBase = void 0;
|
|
@@ -14595,7 +14731,7 @@ class LexadorBase {
|
|
|
14595
14731
|
}
|
|
14596
14732
|
exports.LexadorBase = LexadorBase;
|
|
14597
14733
|
|
|
14598
|
-
},{"./simbolo":
|
|
14734
|
+
},{"./simbolo":168}],165:[function(require,module,exports){
|
|
14599
14735
|
"use strict";
|
|
14600
14736
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14601
14737
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14794,35 +14930,35 @@ class Lexador {
|
|
|
14794
14930
|
this.avancar();
|
|
14795
14931
|
break;
|
|
14796
14932
|
case '[':
|
|
14797
|
-
this.adicionarSimbolo(delegua_1.default.COLCHETE_ESQUERDO);
|
|
14933
|
+
this.adicionarSimbolo(delegua_1.default.COLCHETE_ESQUERDO, '[');
|
|
14798
14934
|
this.avancar();
|
|
14799
14935
|
break;
|
|
14800
14936
|
case ']':
|
|
14801
|
-
this.adicionarSimbolo(delegua_1.default.COLCHETE_DIREITO);
|
|
14937
|
+
this.adicionarSimbolo(delegua_1.default.COLCHETE_DIREITO, ']');
|
|
14802
14938
|
this.avancar();
|
|
14803
14939
|
break;
|
|
14804
14940
|
case '(':
|
|
14805
|
-
this.adicionarSimbolo(delegua_1.default.PARENTESE_ESQUERDO);
|
|
14941
|
+
this.adicionarSimbolo(delegua_1.default.PARENTESE_ESQUERDO, '(');
|
|
14806
14942
|
this.avancar();
|
|
14807
14943
|
break;
|
|
14808
14944
|
case ')':
|
|
14809
|
-
this.adicionarSimbolo(delegua_1.default.PARENTESE_DIREITO);
|
|
14945
|
+
this.adicionarSimbolo(delegua_1.default.PARENTESE_DIREITO, ')');
|
|
14810
14946
|
this.avancar();
|
|
14811
14947
|
break;
|
|
14812
14948
|
case '{':
|
|
14813
|
-
this.adicionarSimbolo(delegua_1.default.CHAVE_ESQUERDA);
|
|
14949
|
+
this.adicionarSimbolo(delegua_1.default.CHAVE_ESQUERDA, '{');
|
|
14814
14950
|
this.avancar();
|
|
14815
14951
|
break;
|
|
14816
14952
|
case '}':
|
|
14817
|
-
this.adicionarSimbolo(delegua_1.default.CHAVE_DIREITA);
|
|
14953
|
+
this.adicionarSimbolo(delegua_1.default.CHAVE_DIREITA, '}');
|
|
14818
14954
|
this.avancar();
|
|
14819
14955
|
break;
|
|
14820
14956
|
case ',':
|
|
14821
|
-
this.adicionarSimbolo(delegua_1.default.VIRGULA);
|
|
14957
|
+
this.adicionarSimbolo(delegua_1.default.VIRGULA, ',');
|
|
14822
14958
|
this.avancar();
|
|
14823
14959
|
break;
|
|
14824
14960
|
case '.':
|
|
14825
|
-
this.adicionarSimbolo(delegua_1.default.PONTO);
|
|
14961
|
+
this.adicionarSimbolo(delegua_1.default.PONTO, '.');
|
|
14826
14962
|
this.avancar();
|
|
14827
14963
|
break;
|
|
14828
14964
|
case '-':
|
|
@@ -15056,7 +15192,7 @@ class Lexador {
|
|
|
15056
15192
|
}
|
|
15057
15193
|
exports.Lexador = Lexador;
|
|
15058
15194
|
|
|
15059
|
-
},{"../tipos-de-simbolos/delegua":
|
|
15195
|
+
},{"../tipos-de-simbolos/delegua":173,"./palavras-reservadas":167,"./simbolo":168,"browser-process-hrtime":352}],166:[function(require,module,exports){
|
|
15060
15196
|
"use strict";
|
|
15061
15197
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
15062
15198
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -15271,7 +15407,7 @@ class MicroLexador {
|
|
|
15271
15407
|
}
|
|
15272
15408
|
exports.MicroLexador = MicroLexador;
|
|
15273
15409
|
|
|
15274
|
-
},{"../tipos-de-simbolos/microgramaticas/delegua":
|
|
15410
|
+
},{"../tipos-de-simbolos/microgramaticas/delegua":176,"./palavras-reservadas":167,"./simbolo":168}],167:[function(require,module,exports){
|
|
15275
15411
|
"use strict";
|
|
15276
15412
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
15277
15413
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -15335,7 +15471,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
15335
15471
|
verdadeiro: delegua_1.default.VERDADEIRO,
|
|
15336
15472
|
};
|
|
15337
15473
|
|
|
15338
|
-
},{"../tipos-de-simbolos/delegua":
|
|
15474
|
+
},{"../tipos-de-simbolos/delegua":173}],168:[function(require,module,exports){
|
|
15339
15475
|
"use strict";
|
|
15340
15476
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15341
15477
|
exports.Simbolo = void 0;
|
|
@@ -15353,7 +15489,7 @@ class Simbolo {
|
|
|
15353
15489
|
}
|
|
15354
15490
|
exports.Simbolo = Simbolo;
|
|
15355
15491
|
|
|
15356
|
-
},{}],
|
|
15492
|
+
},{}],169:[function(require,module,exports){
|
|
15357
15493
|
"use strict";
|
|
15358
15494
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15359
15495
|
exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
|
|
@@ -15377,7 +15513,7 @@ class ContinuarQuebra extends Quebra {
|
|
|
15377
15513
|
}
|
|
15378
15514
|
exports.ContinuarQuebra = ContinuarQuebra;
|
|
15379
15515
|
|
|
15380
|
-
},{}],
|
|
15516
|
+
},{}],170:[function(require,module,exports){
|
|
15381
15517
|
"use strict";
|
|
15382
15518
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15383
15519
|
exports.default = {
|
|
@@ -15407,7 +15543,7 @@ exports.default = {
|
|
|
15407
15543
|
VETOR_TEXTO: 'texto[]',
|
|
15408
15544
|
};
|
|
15409
15545
|
|
|
15410
|
-
},{}],
|
|
15546
|
+
},{}],171:[function(require,module,exports){
|
|
15411
15547
|
"use strict";
|
|
15412
15548
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15413
15549
|
exports.default = {
|
|
@@ -15426,7 +15562,7 @@ exports.default = {
|
|
|
15426
15562
|
TEXTO: 'string',
|
|
15427
15563
|
};
|
|
15428
15564
|
|
|
15429
|
-
},{}],
|
|
15565
|
+
},{}],172:[function(require,module,exports){
|
|
15430
15566
|
"use strict";
|
|
15431
15567
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15432
15568
|
exports.default = {
|
|
@@ -15452,7 +15588,7 @@ exports.default = {
|
|
|
15452
15588
|
VIRGULA: 'VIRGULA',
|
|
15453
15589
|
};
|
|
15454
15590
|
|
|
15455
|
-
},{}],
|
|
15591
|
+
},{}],173:[function(require,module,exports){
|
|
15456
15592
|
"use strict";
|
|
15457
15593
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15458
15594
|
exports.default = {
|
|
@@ -15547,7 +15683,7 @@ exports.default = {
|
|
|
15547
15683
|
VIRGULA: 'VIRGULA',
|
|
15548
15684
|
};
|
|
15549
15685
|
|
|
15550
|
-
},{}],
|
|
15686
|
+
},{}],174:[function(require,module,exports){
|
|
15551
15687
|
"use strict";
|
|
15552
15688
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15553
15689
|
exports.default = {
|
|
@@ -15625,7 +15761,7 @@ exports.default = {
|
|
|
15625
15761
|
VIRGULA: 'VIRGULA',
|
|
15626
15762
|
};
|
|
15627
15763
|
|
|
15628
|
-
},{}],
|
|
15764
|
+
},{}],175:[function(require,module,exports){
|
|
15629
15765
|
"use strict";
|
|
15630
15766
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15631
15767
|
exports.default = {
|
|
@@ -15642,7 +15778,7 @@ exports.default = {
|
|
|
15642
15778
|
VIRGULA: 'VIRGULA',
|
|
15643
15779
|
};
|
|
15644
15780
|
|
|
15645
|
-
},{}],
|
|
15781
|
+
},{}],176:[function(require,module,exports){
|
|
15646
15782
|
"use strict";
|
|
15647
15783
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15648
15784
|
exports.default = {
|
|
@@ -15691,7 +15827,7 @@ exports.default = {
|
|
|
15691
15827
|
VIRGULA: 'VIRGULA',
|
|
15692
15828
|
};
|
|
15693
15829
|
|
|
15694
|
-
},{}],
|
|
15830
|
+
},{}],177:[function(require,module,exports){
|
|
15695
15831
|
"use strict";
|
|
15696
15832
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15697
15833
|
exports.default = {
|
|
@@ -15774,7 +15910,7 @@ exports.default = {
|
|
|
15774
15910
|
VIRGULA: 'VIRGULA',
|
|
15775
15911
|
};
|
|
15776
15912
|
|
|
15777
|
-
},{}],
|
|
15913
|
+
},{}],178:[function(require,module,exports){
|
|
15778
15914
|
"use strict";
|
|
15779
15915
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15780
15916
|
exports.default = {
|
|
@@ -15813,7 +15949,7 @@ exports.default = {
|
|
|
15813
15949
|
VIRGULA: 'VIRGULA',
|
|
15814
15950
|
};
|
|
15815
15951
|
|
|
15816
|
-
},{}],
|
|
15952
|
+
},{}],179:[function(require,module,exports){
|
|
15817
15953
|
"use strict";
|
|
15818
15954
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15819
15955
|
// Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
|
|
@@ -15908,7 +16044,7 @@ exports.default = {
|
|
|
15908
16044
|
VIRGULA: 'VIRGULA',
|
|
15909
16045
|
};
|
|
15910
16046
|
|
|
15911
|
-
},{}],
|
|
16047
|
+
},{}],180:[function(require,module,exports){
|
|
15912
16048
|
"use strict";
|
|
15913
16049
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15914
16050
|
if (k2 === undefined) k2 = k;
|
|
@@ -15934,7 +16070,7 @@ __exportStar(require("./tradutor-reverso-javascript"), exports);
|
|
|
15934
16070
|
__exportStar(require("./tradutor-reverso-python"), exports);
|
|
15935
16071
|
__exportStar(require("./tradutor-reverso-tenda"), exports);
|
|
15936
16072
|
|
|
15937
|
-
},{"./tradutor-assemblyscript":
|
|
16073
|
+
},{"./tradutor-assemblyscript":183,"./tradutor-javascript":184,"./tradutor-mermaidjs":185,"./tradutor-portugol-ipt":186,"./tradutor-python":187,"./tradutor-reverso-javascript":188,"./tradutor-reverso-python":189,"./tradutor-reverso-tenda":190}],181:[function(require,module,exports){
|
|
15938
16074
|
"use strict";
|
|
15939
16075
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
15940
16076
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -17174,7 +17310,7 @@ __decorate([
|
|
|
17174
17310
|
Decorators_1.Override
|
|
17175
17311
|
], Python3Lexer.prototype, "nextToken", null);
|
|
17176
17312
|
|
|
17177
|
-
},{"./python3-parser":
|
|
17313
|
+
},{"./python3-parser":182,"antlr4ts/CommonToken":200,"antlr4ts/Decorators":204,"antlr4ts/Lexer":212,"antlr4ts/Token":229,"antlr4ts/VocabularyImpl":235,"antlr4ts/atn/ATNDeserializer":241,"antlr4ts/atn/LexerATNSimulator":262,"antlr4ts/misc/Utils":323}],182:[function(require,module,exports){
|
|
17178
17314
|
"use strict";
|
|
17179
17315
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
17180
17316
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -28421,7 +28557,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
28421
28557
|
}
|
|
28422
28558
|
exports.Yield_argContext = Yield_argContext;
|
|
28423
28559
|
|
|
28424
|
-
},{"antlr4ts/FailedPredicateException":
|
|
28560
|
+
},{"antlr4ts/FailedPredicateException":208,"antlr4ts/NoViableAltException":216,"antlr4ts/Parser":217,"antlr4ts/ParserRuleContext":220,"antlr4ts/RecognitionException":223,"antlr4ts/Token":229,"antlr4ts/VocabularyImpl":235,"antlr4ts/atn/ATN":237,"antlr4ts/atn/ATNDeserializer":241,"antlr4ts/atn/ParserATNSimulator":278,"antlr4ts/misc/Utils":323}],183:[function(require,module,exports){
|
|
28425
28561
|
"use strict";
|
|
28426
28562
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28427
28563
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28443,13 +28579,14 @@ class TradutorAssemblyScript {
|
|
|
28443
28579
|
Atribuir: this.traduzirConstrutoAtribuir.bind(this),
|
|
28444
28580
|
Binario: this.traduzirConstrutoBinario.bind(this),
|
|
28445
28581
|
Chamada: this.traduzirConstrutoChamada.bind(this),
|
|
28446
|
-
|
|
28582
|
+
ComentarioComoConstruto: this.traduzirConstrutoComentario.bind(this),
|
|
28447
28583
|
DefinirValor: this.traduzirConstrutoDefinirValor.bind(this),
|
|
28448
28584
|
FuncaoConstruto: this.traduzirFuncaoConstruto.bind(this),
|
|
28449
28585
|
Isto: () => 'this',
|
|
28450
28586
|
Literal: this.traduzirConstrutoLiteral.bind(this),
|
|
28451
28587
|
Logico: this.traduzirConstrutoLogico.bind(this),
|
|
28452
28588
|
ReferenciaFuncao: this.traduzirConstrutoReferenciaFuncao.bind(this),
|
|
28589
|
+
Separador: this.traduzirConstrutoSeparador.bind(this),
|
|
28453
28590
|
TipoDe: this.traduzirConstrutoTipoDe.bind(this),
|
|
28454
28591
|
Unario: this.traduzirConstrutoUnario.bind(this),
|
|
28455
28592
|
Variavel: this.traduzirConstrutoVariavel.bind(this),
|
|
@@ -28574,6 +28711,9 @@ class TradutorAssemblyScript {
|
|
|
28574
28711
|
textoArgumentos = textoArgumentos.slice(0, -2);
|
|
28575
28712
|
return `${referenciaFuncao.simboloFuncao.lexema}(${textoArgumentos})`;
|
|
28576
28713
|
}
|
|
28714
|
+
traduzirConstrutoSeparador(separador) {
|
|
28715
|
+
return `${separador.conteudo} `;
|
|
28716
|
+
}
|
|
28577
28717
|
traduzirDeclaracaoEscreva(declaracaoEscreva) {
|
|
28578
28718
|
let resultado = 'console.log(';
|
|
28579
28719
|
for (const argumento of declaracaoEscreva.argumentos) {
|
|
@@ -28889,10 +29029,7 @@ class TradutorAssemblyScript {
|
|
|
28889
29029
|
}
|
|
28890
29030
|
let resultado = '[';
|
|
28891
29031
|
for (let valor of vetor.valores) {
|
|
28892
|
-
resultado += `${this.dicionarioConstrutos[valor.constructor.name](valor)}
|
|
28893
|
-
}
|
|
28894
|
-
if (vetor.valores.length > 0) {
|
|
28895
|
-
resultado = resultado.slice(0, -2);
|
|
29032
|
+
resultado += `${this.dicionarioConstrutos[valor.constructor.name](valor)}`;
|
|
28896
29033
|
}
|
|
28897
29034
|
resultado += ']';
|
|
28898
29035
|
return resultado;
|
|
@@ -29055,7 +29192,7 @@ class TradutorAssemblyScript {
|
|
|
29055
29192
|
}
|
|
29056
29193
|
exports.TradutorAssemblyScript = TradutorAssemblyScript;
|
|
29057
29194
|
|
|
29058
|
-
},{"../construtos":
|
|
29195
|
+
},{"../construtos":45,"../declaracoes":87,"../tipos-de-simbolos/delegua":173}],184:[function(require,module,exports){
|
|
29059
29196
|
"use strict";
|
|
29060
29197
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29061
29198
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29083,6 +29220,7 @@ class TradutorJavaScript {
|
|
|
29083
29220
|
AtribuicaoPorIndice: this.traduzirConstrutoAtribuicaoPorIndice.bind(this),
|
|
29084
29221
|
Atribuir: this.traduzirConstrutoAtribuir.bind(this),
|
|
29085
29222
|
Binario: this.traduzirConstrutoBinario.bind(this),
|
|
29223
|
+
ComentarioComoConstruto: this.traduzirDeclaracaoComentario.bind(this),
|
|
29086
29224
|
Chamada: this.traduzirConstrutoChamada.bind(this),
|
|
29087
29225
|
DefinirValor: this.traduzirConstrutoDefinirValor.bind(this),
|
|
29088
29226
|
Dicionario: this.traduzirConstrutoDicionario.bind(this),
|
|
@@ -29092,6 +29230,7 @@ class TradutorJavaScript {
|
|
|
29092
29230
|
Literal: this.traduzirConstrutoLiteral.bind(this),
|
|
29093
29231
|
Logico: this.traduzirConstrutoLogico.bind(this),
|
|
29094
29232
|
ReferenciaFuncao: this.traduzirConstrutoReferenciaFuncao.bind(this),
|
|
29233
|
+
Separador: this.traduzirConstrutoSeparador.bind(this),
|
|
29095
29234
|
TipoDe: this.traduzirConstrutoTipoDe.bind(this),
|
|
29096
29235
|
Unario: this.traduzirConstrutoUnario.bind(this),
|
|
29097
29236
|
Variavel: this.traduzirConstrutoVariavel.bind(this),
|
|
@@ -29734,6 +29873,9 @@ class TradutorJavaScript {
|
|
|
29734
29873
|
textoArgumentos = textoArgumentos.slice(0, -2);
|
|
29735
29874
|
return `${referenciaFuncao.simboloFuncao.lexema}(${textoArgumentos})`;
|
|
29736
29875
|
}
|
|
29876
|
+
traduzirConstrutoSeparador(separador) {
|
|
29877
|
+
return `${separador.conteudo} `;
|
|
29878
|
+
}
|
|
29737
29879
|
traduzirConstrutoTipoDe(tipoDe) {
|
|
29738
29880
|
let resultado = 'typeof ';
|
|
29739
29881
|
if (!tipoDe.valor)
|
|
@@ -29759,10 +29901,7 @@ class TradutorJavaScript {
|
|
|
29759
29901
|
}
|
|
29760
29902
|
let resultado = '[';
|
|
29761
29903
|
for (let valor of vetor.valores) {
|
|
29762
|
-
resultado += `${this.dicionarioConstrutos[valor.constructor.name](valor)}
|
|
29763
|
-
}
|
|
29764
|
-
if (vetor.valores.length > 0) {
|
|
29765
|
-
resultado = resultado.slice(0, -2);
|
|
29904
|
+
resultado += `${this.dicionarioConstrutos[valor.constructor.name](valor)}`;
|
|
29766
29905
|
}
|
|
29767
29906
|
resultado += ']';
|
|
29768
29907
|
return resultado;
|
|
@@ -29795,7 +29934,7 @@ class TradutorJavaScript {
|
|
|
29795
29934
|
}
|
|
29796
29935
|
exports.TradutorJavaScript = TradutorJavaScript;
|
|
29797
29936
|
|
|
29798
|
-
},{"../construtos":
|
|
29937
|
+
},{"../construtos":45,"../declaracoes":87,"../tipos-de-simbolos/delegua":173}],185:[function(require,module,exports){
|
|
29799
29938
|
"use strict";
|
|
29800
29939
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29801
29940
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29843,19 +29982,21 @@ class TradutorMermaidJs {
|
|
|
29843
29982
|
Atribuir: this.traduzirConstrutoAtribuir.bind(this),
|
|
29844
29983
|
Binario: this.traduzirConstrutoBinario.bind(this),
|
|
29845
29984
|
Chamada: this.traduzirConstrutoChamada.bind(this),
|
|
29846
|
-
|
|
29985
|
+
ComentarioComoConstruto: () => '',
|
|
29847
29986
|
DefinirValor: this.traduzirConstrutoDefinirValor.bind(this),
|
|
29848
29987
|
Dicionario: this.traduzirConstrutoDicionario.bind(this),
|
|
29849
29988
|
FuncaoConstruto: this.traduzirFuncaoConstruto.bind(this),
|
|
29850
29989
|
Isto: () => 'this',
|
|
29851
29990
|
Leia: this.traduzirConstrutoLeia.bind(this),
|
|
29852
29991
|
Literal: this.traduzirConstrutoLiteral.bind(this),
|
|
29992
|
+
Separador: this.traduzirConstrutoSeparador.bind(this),
|
|
29853
29993
|
Unario: this.traduzirConstrutoUnario.bind(this),
|
|
29854
29994
|
Variavel: this.traduzirConstrutoVariavel.bind(this),
|
|
29855
29995
|
Vetor: this.traduzirConstrutoVetor.bind(this),
|
|
29856
29996
|
};
|
|
29857
29997
|
this.dicionarioDeclaracoes = {
|
|
29858
29998
|
Bloco: this.traduzirDeclaracaoBloco.bind(this),
|
|
29999
|
+
Comentario: () => '',
|
|
29859
30000
|
Const: this.traduzirDeclaracaoConst.bind(this),
|
|
29860
30001
|
Enquanto: this.traduzirDeclaracaoEnquanto.bind(this),
|
|
29861
30002
|
Escolha: this.traduzirDeclaracaoEscolha.bind(this),
|
|
@@ -29955,6 +30096,9 @@ class TradutorMermaidJs {
|
|
|
29955
30096
|
return literal.valor;
|
|
29956
30097
|
}
|
|
29957
30098
|
}
|
|
30099
|
+
traduzirConstrutoSeparador(separador) {
|
|
30100
|
+
return `${separador.conteudo} `;
|
|
30101
|
+
}
|
|
29958
30102
|
traduzirConstrutoUnario(unario) {
|
|
29959
30103
|
const textoOperando = this.dicionarioConstrutos[unario.operando.constructor.name](unario.operando);
|
|
29960
30104
|
let textoOperador = '';
|
|
@@ -29979,11 +30123,8 @@ class TradutorMermaidJs {
|
|
|
29979
30123
|
traduzirConstrutoVetor(vetor) {
|
|
29980
30124
|
let texto = `vetor: `;
|
|
29981
30125
|
for (const elemento of vetor.valores) {
|
|
29982
|
-
|
|
29983
|
-
const textoValor = this.dicionarioConstrutos[elemento.constructor.name](elemento);
|
|
29984
|
-
texto += `${textoValor}, `;
|
|
30126
|
+
texto += this.dicionarioConstrutos[elemento.constructor.name](elemento);
|
|
29985
30127
|
}
|
|
29986
|
-
texto = texto.slice(0, -2);
|
|
29987
30128
|
return texto;
|
|
29988
30129
|
}
|
|
29989
30130
|
logicaComumConexaoArestas(aresta) {
|
|
@@ -30247,7 +30388,7 @@ class TradutorMermaidJs {
|
|
|
30247
30388
|
}
|
|
30248
30389
|
exports.TradutorMermaidJs = TradutorMermaidJs;
|
|
30249
30390
|
|
|
30250
|
-
},{"../tipos-de-simbolos/delegua":
|
|
30391
|
+
},{"../tipos-de-simbolos/delegua":173}],186:[function(require,module,exports){
|
|
30251
30392
|
"use strict";
|
|
30252
30393
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30253
30394
|
exports.TradutorPortugolIpt = void 0;
|
|
@@ -30309,7 +30450,7 @@ class TradutorPortugolIpt {
|
|
|
30309
30450
|
}
|
|
30310
30451
|
exports.TradutorPortugolIpt = TradutorPortugolIpt;
|
|
30311
30452
|
|
|
30312
|
-
},{"../avaliador-sintatico/dialetos":8,"../lexador/dialetos":
|
|
30453
|
+
},{"../avaliador-sintatico/dialetos":8,"../lexador/dialetos":151}],187:[function(require,module,exports){
|
|
30313
30454
|
"use strict";
|
|
30314
30455
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
30315
30456
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -30334,12 +30475,13 @@ class TradutorPython {
|
|
|
30334
30475
|
Atribuir: this.traduzirConstrutoAtribuir.bind(this),
|
|
30335
30476
|
Binario: this.traduzirConstrutoBinario.bind(this),
|
|
30336
30477
|
Chamada: this.traduzirConstrutoChamada.bind(this),
|
|
30337
|
-
|
|
30478
|
+
ComentarioComoConstruto: this.traduzirConstrutoComentario.bind(this),
|
|
30338
30479
|
DefinirValor: this.traduzirConstrutoDefinirValor.bind(this),
|
|
30339
30480
|
Dicionario: this.traduzirConstrutoDicionario.bind(this),
|
|
30340
30481
|
Literal: this.traduzirConstrutoLiteral.bind(this),
|
|
30341
30482
|
Logico: this.traduzirConstrutoLogico.bind(this),
|
|
30342
30483
|
ReferenciaFuncao: this.traduzirConstrutoReferenciaFuncao.bind(this),
|
|
30484
|
+
Separador: this.traduzirConstrutoSeparador.bind(this),
|
|
30343
30485
|
Unario: this.traduzirConstrutoUnario.bind(this),
|
|
30344
30486
|
Variavel: this.traduzirConstrutoVariavel.bind(this),
|
|
30345
30487
|
Vetor: this.traduzirConstrutoVetor.bind(this),
|
|
@@ -30660,6 +30802,9 @@ class TradutorPython {
|
|
|
30660
30802
|
textoArgumentos = textoArgumentos.slice(0, -2);
|
|
30661
30803
|
return `${referenciaFuncao.simboloFuncao.lexema}(${textoArgumentos})`;
|
|
30662
30804
|
}
|
|
30805
|
+
traduzirConstrutoSeparador(separador) {
|
|
30806
|
+
return `${separador.conteudo} `;
|
|
30807
|
+
}
|
|
30663
30808
|
traduzirConstrutoUnario(unario) {
|
|
30664
30809
|
const operador = this.traduzirSimboloOperador(unario.operador);
|
|
30665
30810
|
const operando = this.dicionarioConstrutos[unario.operando.constructor.name](unario.operando);
|
|
@@ -30696,10 +30841,7 @@ class TradutorPython {
|
|
|
30696
30841
|
}
|
|
30697
30842
|
let resultado = '[';
|
|
30698
30843
|
for (let valor of vetor.valores) {
|
|
30699
|
-
resultado += `${this.dicionarioConstrutos[valor.constructor.name](valor)}
|
|
30700
|
-
}
|
|
30701
|
-
if (vetor.valores.length > 0) {
|
|
30702
|
-
resultado = resultado.slice(0, -2);
|
|
30844
|
+
resultado += `${this.dicionarioConstrutos[valor.constructor.name](valor)}`;
|
|
30703
30845
|
}
|
|
30704
30846
|
resultado += ']';
|
|
30705
30847
|
return resultado;
|
|
@@ -30950,7 +31092,7 @@ class TradutorPython {
|
|
|
30950
31092
|
}
|
|
30951
31093
|
exports.TradutorPython = TradutorPython;
|
|
30952
31094
|
|
|
30953
|
-
},{"../construtos":
|
|
31095
|
+
},{"../construtos":45,"../declaracoes":87,"../tipos-de-simbolos/delegua":173}],188:[function(require,module,exports){
|
|
30954
31096
|
"use strict";
|
|
30955
31097
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30956
31098
|
exports.TradutorReversoJavaScript = void 0;
|
|
@@ -31345,7 +31487,7 @@ class TradutorReversoJavaScript {
|
|
|
31345
31487
|
}
|
|
31346
31488
|
exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
|
|
31347
31489
|
|
|
31348
|
-
},{}],
|
|
31490
|
+
},{}],189:[function(require,module,exports){
|
|
31349
31491
|
"use strict";
|
|
31350
31492
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31351
31493
|
exports.TradutorReversoPython = void 0;
|
|
@@ -31418,7 +31560,7 @@ class TradutorReversoPython {
|
|
|
31418
31560
|
}
|
|
31419
31561
|
exports.TradutorReversoPython = TradutorReversoPython;
|
|
31420
31562
|
|
|
31421
|
-
},{"./python/python3-lexer":
|
|
31563
|
+
},{"./python/python3-lexer":181,"./python/python3-parser":182,"antlr4ts":306,"antlr4ts/tree/ParseTreeWalker":325}],190:[function(require,module,exports){
|
|
31422
31564
|
"use strict";
|
|
31423
31565
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
31424
31566
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -32012,7 +32154,7 @@ class TradutorReversoTenda {
|
|
|
32012
32154
|
}
|
|
32013
32155
|
exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
32014
32156
|
|
|
32015
|
-
},{"../construtos":
|
|
32157
|
+
},{"../construtos":45,"../tipos-de-simbolos/tenda":179}],191:[function(require,module,exports){
|
|
32016
32158
|
"use strict";
|
|
32017
32159
|
/*!
|
|
32018
32160
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32020,7 +32162,7 @@ exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
|
32020
32162
|
*/
|
|
32021
32163
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
32022
32164
|
|
|
32023
|
-
},{}],
|
|
32165
|
+
},{}],192:[function(require,module,exports){
|
|
32024
32166
|
"use strict";
|
|
32025
32167
|
/*!
|
|
32026
32168
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32028,7 +32170,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
32028
32170
|
*/
|
|
32029
32171
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
32030
32172
|
|
|
32031
|
-
},{}],
|
|
32173
|
+
},{}],193:[function(require,module,exports){
|
|
32032
32174
|
"use strict";
|
|
32033
32175
|
/*!
|
|
32034
32176
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32190,7 +32332,7 @@ __decorate([
|
|
|
32190
32332
|
], ANTLRInputStream.prototype, "toString", null);
|
|
32191
32333
|
exports.ANTLRInputStream = ANTLRInputStream;
|
|
32192
32334
|
|
|
32193
|
-
},{"./Decorators":
|
|
32335
|
+
},{"./Decorators":204,"./IntStream":210,"assert":347}],194:[function(require,module,exports){
|
|
32194
32336
|
"use strict";
|
|
32195
32337
|
/*!
|
|
32196
32338
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32273,7 +32415,7 @@ __decorate([
|
|
|
32273
32415
|
], BailErrorStrategy.prototype, "sync", null);
|
|
32274
32416
|
exports.BailErrorStrategy = BailErrorStrategy;
|
|
32275
32417
|
|
|
32276
|
-
},{"./Decorators":
|
|
32418
|
+
},{"./Decorators":204,"./DefaultErrorStrategy":205,"./InputMismatchException":209,"./misc/ParseCancellationException":321}],195:[function(require,module,exports){
|
|
32277
32419
|
"use strict";
|
|
32278
32420
|
/*!
|
|
32279
32421
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32763,7 +32905,7 @@ BufferedTokenStream = __decorate([
|
|
|
32763
32905
|
], BufferedTokenStream);
|
|
32764
32906
|
exports.BufferedTokenStream = BufferedTokenStream;
|
|
32765
32907
|
|
|
32766
|
-
},{"./CommonToken":
|
|
32908
|
+
},{"./CommonToken":200,"./Decorators":204,"./Lexer":212,"./Token":229,"./misc/Interval":316,"assert":347}],196:[function(require,module,exports){
|
|
32767
32909
|
"use strict";
|
|
32768
32910
|
/*!
|
|
32769
32911
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32771,7 +32913,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
|
|
|
32771
32913
|
*/
|
|
32772
32914
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
32773
32915
|
|
|
32774
|
-
},{}],
|
|
32916
|
+
},{}],197:[function(require,module,exports){
|
|
32775
32917
|
"use strict";
|
|
32776
32918
|
/*!
|
|
32777
32919
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -32905,7 +33047,7 @@ var CharStreams;
|
|
|
32905
33047
|
// }
|
|
32906
33048
|
})(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
|
|
32907
33049
|
|
|
32908
|
-
},{"./CodePointBuffer":
|
|
33050
|
+
},{"./CodePointBuffer":198,"./CodePointCharStream":199,"./IntStream":210}],198:[function(require,module,exports){
|
|
32909
33051
|
"use strict";
|
|
32910
33052
|
/*!
|
|
32911
33053
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33140,7 +33282,7 @@ exports.CodePointBuffer = CodePointBuffer;
|
|
|
33140
33282
|
CodePointBuffer.Builder = Builder;
|
|
33141
33283
|
})(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
|
|
33142
33284
|
|
|
33143
|
-
},{"./misc/Character":
|
|
33285
|
+
},{"./misc/Character":312,"assert":347}],199:[function(require,module,exports){
|
|
33144
33286
|
"use strict";
|
|
33145
33287
|
/*!
|
|
33146
33288
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33290,7 +33432,7 @@ __decorate([
|
|
|
33290
33432
|
], CodePointCharStream.prototype, "getText", null);
|
|
33291
33433
|
exports.CodePointCharStream = CodePointCharStream;
|
|
33292
33434
|
|
|
33293
|
-
},{"./Decorators":
|
|
33435
|
+
},{"./Decorators":204,"./IntStream":210,"./misc/Interval":316,"assert":347}],200:[function(require,module,exports){
|
|
33294
33436
|
"use strict";
|
|
33295
33437
|
/*!
|
|
33296
33438
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33520,7 +33662,7 @@ CommonToken = __decorate([
|
|
|
33520
33662
|
], CommonToken);
|
|
33521
33663
|
exports.CommonToken = CommonToken;
|
|
33522
33664
|
|
|
33523
|
-
},{"./Decorators":
|
|
33665
|
+
},{"./Decorators":204,"./Token":229,"./misc/Interval":316}],201:[function(require,module,exports){
|
|
33524
33666
|
"use strict";
|
|
33525
33667
|
/*!
|
|
33526
33668
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33584,7 +33726,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
|
|
|
33584
33726
|
CommonTokenFactory.DEFAULT = new CommonTokenFactory();
|
|
33585
33727
|
})(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
|
|
33586
33728
|
|
|
33587
|
-
},{"./CommonToken":
|
|
33729
|
+
},{"./CommonToken":200,"./Decorators":204,"./misc/Interval":316}],202:[function(require,module,exports){
|
|
33588
33730
|
"use strict";
|
|
33589
33731
|
/*!
|
|
33590
33732
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33711,7 +33853,7 @@ CommonTokenStream = __decorate([
|
|
|
33711
33853
|
], CommonTokenStream);
|
|
33712
33854
|
exports.CommonTokenStream = CommonTokenStream;
|
|
33713
33855
|
|
|
33714
|
-
},{"./BufferedTokenStream":
|
|
33856
|
+
},{"./BufferedTokenStream":195,"./Decorators":204,"./Token":229}],203:[function(require,module,exports){
|
|
33715
33857
|
"use strict";
|
|
33716
33858
|
/*!
|
|
33717
33859
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33745,7 +33887,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
|
|
|
33745
33887
|
*/
|
|
33746
33888
|
ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
|
|
33747
33889
|
|
|
33748
|
-
},{}],
|
|
33890
|
+
},{}],204:[function(require,module,exports){
|
|
33749
33891
|
"use strict";
|
|
33750
33892
|
/*!
|
|
33751
33893
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -33772,7 +33914,7 @@ function SuppressWarnings(options) {
|
|
|
33772
33914
|
}
|
|
33773
33915
|
exports.SuppressWarnings = SuppressWarnings;
|
|
33774
33916
|
|
|
33775
|
-
},{}],
|
|
33917
|
+
},{}],205:[function(require,module,exports){
|
|
33776
33918
|
"use strict";
|
|
33777
33919
|
/*!
|
|
33778
33920
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34586,7 +34728,7 @@ __decorate([
|
|
|
34586
34728
|
], DefaultErrorStrategy.prototype, "consumeUntil", null);
|
|
34587
34729
|
exports.DefaultErrorStrategy = DefaultErrorStrategy;
|
|
34588
34730
|
|
|
34589
|
-
},{"./Decorators":
|
|
34731
|
+
},{"./Decorators":204,"./FailedPredicateException":208,"./InputMismatchException":209,"./NoViableAltException":216,"./Token":229,"./atn/ATNState":243,"./atn/ATNStateType":244,"./atn/PredictionContext":284,"./misc/IntervalSet":317}],206:[function(require,module,exports){
|
|
34590
34732
|
"use strict";
|
|
34591
34733
|
/*!
|
|
34592
34734
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34662,7 +34804,7 @@ var Dependents;
|
|
|
34662
34804
|
Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
|
|
34663
34805
|
})(Dependents = exports.Dependents || (exports.Dependents = {}));
|
|
34664
34806
|
|
|
34665
|
-
},{}],
|
|
34807
|
+
},{}],207:[function(require,module,exports){
|
|
34666
34808
|
"use strict";
|
|
34667
34809
|
/*!
|
|
34668
34810
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34810,7 +34952,7 @@ __decorate([
|
|
|
34810
34952
|
], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
|
|
34811
34953
|
exports.DiagnosticErrorListener = DiagnosticErrorListener;
|
|
34812
34954
|
|
|
34813
|
-
},{"./Decorators":
|
|
34955
|
+
},{"./Decorators":204,"./misc/BitSet":311,"./misc/Interval":316}],208:[function(require,module,exports){
|
|
34814
34956
|
"use strict";
|
|
34815
34957
|
/*!
|
|
34816
34958
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34875,7 +35017,7 @@ FailedPredicateException = __decorate([
|
|
|
34875
35017
|
], FailedPredicateException);
|
|
34876
35018
|
exports.FailedPredicateException = FailedPredicateException;
|
|
34877
35019
|
|
|
34878
|
-
},{"./Decorators":
|
|
35020
|
+
},{"./Decorators":204,"./RecognitionException":223,"./atn/PredicateTransition":283}],209:[function(require,module,exports){
|
|
34879
35021
|
"use strict";
|
|
34880
35022
|
/*!
|
|
34881
35023
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34915,7 +35057,7 @@ InputMismatchException = __decorate([
|
|
|
34915
35057
|
], InputMismatchException);
|
|
34916
35058
|
exports.InputMismatchException = InputMismatchException;
|
|
34917
35059
|
|
|
34918
|
-
},{"./Decorators":
|
|
35060
|
+
},{"./Decorators":204,"./RecognitionException":223}],210:[function(require,module,exports){
|
|
34919
35061
|
"use strict";
|
|
34920
35062
|
/*!
|
|
34921
35063
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34938,7 +35080,7 @@ var IntStream;
|
|
|
34938
35080
|
IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
|
|
34939
35081
|
})(IntStream = exports.IntStream || (exports.IntStream = {}));
|
|
34940
35082
|
|
|
34941
|
-
},{}],
|
|
35083
|
+
},{}],211:[function(require,module,exports){
|
|
34942
35084
|
"use strict";
|
|
34943
35085
|
/*!
|
|
34944
35086
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34985,7 +35127,7 @@ __decorate([
|
|
|
34985
35127
|
], InterpreterRuleContext.prototype, "ruleIndex", null);
|
|
34986
35128
|
exports.InterpreterRuleContext = InterpreterRuleContext;
|
|
34987
35129
|
|
|
34988
|
-
},{"./Decorators":
|
|
35130
|
+
},{"./Decorators":204,"./ParserRuleContext":220}],212:[function(require,module,exports){
|
|
34989
35131
|
"use strict";
|
|
34990
35132
|
/*!
|
|
34991
35133
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35321,7 +35463,7 @@ __decorate([
|
|
|
35321
35463
|
], Lexer.prototype, "charPositionInLine", null);
|
|
35322
35464
|
exports.Lexer = Lexer;
|
|
35323
35465
|
|
|
35324
|
-
},{"./CommonTokenFactory":
|
|
35466
|
+
},{"./CommonTokenFactory":201,"./Decorators":204,"./IntStream":210,"./LexerNoViableAltException":214,"./Recognizer":224,"./Token":229,"./atn/LexerATNSimulator":262,"./misc/IntegerStack":315,"./misc/Interval":316}],213:[function(require,module,exports){
|
|
35325
35467
|
"use strict";
|
|
35326
35468
|
/*!
|
|
35327
35469
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35401,7 +35543,7 @@ LexerInterpreter = __decorate([
|
|
|
35401
35543
|
], LexerInterpreter);
|
|
35402
35544
|
exports.LexerInterpreter = LexerInterpreter;
|
|
35403
35545
|
|
|
35404
|
-
},{"./Decorators":
|
|
35546
|
+
},{"./Decorators":204,"./Lexer":212,"./atn/LexerATNSimulator":262}],214:[function(require,module,exports){
|
|
35405
35547
|
"use strict";
|
|
35406
35548
|
/*!
|
|
35407
35549
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35458,7 +35600,7 @@ LexerNoViableAltException = __decorate([
|
|
|
35458
35600
|
], LexerNoViableAltException);
|
|
35459
35601
|
exports.LexerNoViableAltException = LexerNoViableAltException;
|
|
35460
35602
|
|
|
35461
|
-
},{"./Decorators":
|
|
35603
|
+
},{"./Decorators":204,"./RecognitionException":223,"./misc/Interval":316,"./misc/Utils":323}],215:[function(require,module,exports){
|
|
35462
35604
|
"use strict";
|
|
35463
35605
|
/*!
|
|
35464
35606
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35668,7 +35810,7 @@ ListTokenSource = __decorate([
|
|
|
35668
35810
|
], ListTokenSource);
|
|
35669
35811
|
exports.ListTokenSource = ListTokenSource;
|
|
35670
35812
|
|
|
35671
|
-
},{"./CommonTokenFactory":
|
|
35813
|
+
},{"./CommonTokenFactory":201,"./Decorators":204,"./Token":229}],216:[function(require,module,exports){
|
|
35672
35814
|
"use strict";
|
|
35673
35815
|
/*!
|
|
35674
35816
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35723,7 +35865,7 @@ __decorate([
|
|
|
35723
35865
|
], NoViableAltException.prototype, "_startToken", void 0);
|
|
35724
35866
|
exports.NoViableAltException = NoViableAltException;
|
|
35725
35867
|
|
|
35726
|
-
},{"./Decorators":
|
|
35868
|
+
},{"./Decorators":204,"./Parser":217,"./RecognitionException":223}],217:[function(require,module,exports){
|
|
35727
35869
|
(function (process){(function (){
|
|
35728
35870
|
"use strict";
|
|
35729
35871
|
/*!
|
|
@@ -36569,7 +36711,7 @@ __decorate([
|
|
|
36569
36711
|
exports.Parser = Parser;
|
|
36570
36712
|
|
|
36571
36713
|
}).call(this)}).call(this,require('_process'))
|
|
36572
|
-
},{"./Decorators":
|
|
36714
|
+
},{"./Decorators":204,"./DefaultErrorStrategy":205,"./Lexer":212,"./ProxyParserErrorListener":222,"./Recognizer":224,"./Token":229,"./atn/ATNDeserializationOptions":240,"./atn/ATNDeserializer":241,"./atn/ParseInfo":277,"./atn/ParserATNSimulator":278,"./atn/ProfilingATNSimulator":287,"./misc/IntegerStack":315,"./misc/Utils":323,"./tree/ErrorNode":324,"./tree/TerminalNode":327,"./tree/pattern/ParseTreePatternMatcher":332,"_process":406}],218:[function(require,module,exports){
|
|
36573
36715
|
"use strict";
|
|
36574
36716
|
/*!
|
|
36575
36717
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36577,7 +36719,7 @@ exports.Parser = Parser;
|
|
|
36577
36719
|
*/
|
|
36578
36720
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36579
36721
|
|
|
36580
|
-
},{}],
|
|
36722
|
+
},{}],219:[function(require,module,exports){
|
|
36581
36723
|
"use strict";
|
|
36582
36724
|
/*!
|
|
36583
36725
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36985,7 +37127,7 @@ ParserInterpreter = __decorate([
|
|
|
36985
37127
|
], ParserInterpreter);
|
|
36986
37128
|
exports.ParserInterpreter = ParserInterpreter;
|
|
36987
37129
|
|
|
36988
|
-
},{"./Decorators":
|
|
37130
|
+
},{"./Decorators":204,"./FailedPredicateException":208,"./InputMismatchException":209,"./InterpreterRuleContext":211,"./Parser":217,"./RecognitionException":223,"./Token":229,"./atn/ATNState":243,"./atn/ATNStateType":244,"./atn/LoopEndState":274,"./atn/ParserATNSimulator":278,"./atn/StarLoopEntryState":296,"./misc/BitSet":311}],220:[function(require,module,exports){
|
|
36989
37131
|
"use strict";
|
|
36990
37132
|
/*!
|
|
36991
37133
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37286,7 +37428,7 @@ __decorate([
|
|
|
37286
37428
|
], ParserRuleContext.prototype, "sourceInterval", null);
|
|
37287
37429
|
exports.ParserRuleContext = ParserRuleContext;
|
|
37288
37430
|
|
|
37289
|
-
},{"./Decorators":
|
|
37431
|
+
},{"./Decorators":204,"./RuleContext":225,"./misc/Interval":316,"./tree/ErrorNode":324,"./tree/TerminalNode":327}],221:[function(require,module,exports){
|
|
37290
37432
|
"use strict";
|
|
37291
37433
|
/*!
|
|
37292
37434
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37336,7 +37478,7 @@ __decorate([
|
|
|
37336
37478
|
], ProxyErrorListener.prototype, "syntaxError", null);
|
|
37337
37479
|
exports.ProxyErrorListener = ProxyErrorListener;
|
|
37338
37480
|
|
|
37339
|
-
},{"./Decorators":
|
|
37481
|
+
},{"./Decorators":204}],222:[function(require,module,exports){
|
|
37340
37482
|
"use strict";
|
|
37341
37483
|
/*!
|
|
37342
37484
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37395,7 +37537,7 @@ __decorate([
|
|
|
37395
37537
|
], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
|
|
37396
37538
|
exports.ProxyParserErrorListener = ProxyParserErrorListener;
|
|
37397
37539
|
|
|
37398
|
-
},{"./Decorators":
|
|
37540
|
+
},{"./Decorators":204,"./ProxyErrorListener":221}],223:[function(require,module,exports){
|
|
37399
37541
|
"use strict";
|
|
37400
37542
|
/*!
|
|
37401
37543
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37500,7 +37642,7 @@ class RecognitionException extends Error {
|
|
|
37500
37642
|
}
|
|
37501
37643
|
exports.RecognitionException = RecognitionException;
|
|
37502
37644
|
|
|
37503
|
-
},{}],
|
|
37645
|
+
},{}],224:[function(require,module,exports){
|
|
37504
37646
|
"use strict";
|
|
37505
37647
|
/*!
|
|
37506
37648
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37719,7 +37861,7 @@ __decorate([
|
|
|
37719
37861
|
], Recognizer.prototype, "getErrorListeners", null);
|
|
37720
37862
|
exports.Recognizer = Recognizer;
|
|
37721
37863
|
|
|
37722
|
-
},{"./ConsoleErrorListener":
|
|
37864
|
+
},{"./ConsoleErrorListener":203,"./Decorators":204,"./ProxyErrorListener":221,"./Token":229,"./misc/Utils":323}],225:[function(require,module,exports){
|
|
37723
37865
|
"use strict";
|
|
37724
37866
|
/*!
|
|
37725
37867
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37936,7 +38078,7 @@ __decorate([
|
|
|
37936
38078
|
], RuleContext.prototype, "toStringTree", null);
|
|
37937
38079
|
exports.RuleContext = RuleContext;
|
|
37938
38080
|
|
|
37939
|
-
},{"./Decorators":
|
|
38081
|
+
},{"./Decorators":204,"./ParserRuleContext":220,"./Recognizer":224,"./atn/ATN":237,"./misc/Interval":316,"./tree/RuleNode":326,"./tree/Trees":328}],226:[function(require,module,exports){
|
|
37940
38082
|
"use strict";
|
|
37941
38083
|
/*!
|
|
37942
38084
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37987,7 +38129,7 @@ __decorate([
|
|
|
37987
38129
|
], RuleContextWithAltNum.prototype, "altNumber", null);
|
|
37988
38130
|
exports.RuleContextWithAltNum = RuleContextWithAltNum;
|
|
37989
38131
|
|
|
37990
|
-
},{"./Decorators":
|
|
38132
|
+
},{"./Decorators":204,"./ParserRuleContext":220,"./atn/ATN":237}],227:[function(require,module,exports){
|
|
37991
38133
|
"use strict";
|
|
37992
38134
|
/*!
|
|
37993
38135
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38010,7 +38152,7 @@ function RuleDependency(dependency) {
|
|
|
38010
38152
|
}
|
|
38011
38153
|
exports.RuleDependency = RuleDependency;
|
|
38012
38154
|
|
|
38013
|
-
},{}],
|
|
38155
|
+
},{}],228:[function(require,module,exports){
|
|
38014
38156
|
"use strict";
|
|
38015
38157
|
/*!
|
|
38016
38158
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38029,7 +38171,7 @@ function RuleVersion(version) {
|
|
|
38029
38171
|
}
|
|
38030
38172
|
exports.RuleVersion = RuleVersion;
|
|
38031
38173
|
|
|
38032
|
-
},{}],
|
|
38174
|
+
},{}],229:[function(require,module,exports){
|
|
38033
38175
|
"use strict";
|
|
38034
38176
|
/*!
|
|
38035
38177
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38069,7 +38211,7 @@ var Token;
|
|
|
38069
38211
|
Token.MIN_USER_CHANNEL_VALUE = 2;
|
|
38070
38212
|
})(Token = exports.Token || (exports.Token = {}));
|
|
38071
38213
|
|
|
38072
|
-
},{"./IntStream":
|
|
38214
|
+
},{"./IntStream":210}],230:[function(require,module,exports){
|
|
38073
38215
|
"use strict";
|
|
38074
38216
|
/*!
|
|
38075
38217
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38077,7 +38219,7 @@ var Token;
|
|
|
38077
38219
|
*/
|
|
38078
38220
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38079
38221
|
|
|
38080
|
-
},{}],
|
|
38222
|
+
},{}],231:[function(require,module,exports){
|
|
38081
38223
|
"use strict";
|
|
38082
38224
|
/*!
|
|
38083
38225
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38085,7 +38227,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
38085
38227
|
*/
|
|
38086
38228
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38087
38229
|
|
|
38088
|
-
},{}],
|
|
38230
|
+
},{}],232:[function(require,module,exports){
|
|
38089
38231
|
"use strict";
|
|
38090
38232
|
/*!
|
|
38091
38233
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38093,7 +38235,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
38093
38235
|
*/
|
|
38094
38236
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38095
38237
|
|
|
38096
|
-
},{}],
|
|
38238
|
+
},{}],233:[function(require,module,exports){
|
|
38097
38239
|
"use strict";
|
|
38098
38240
|
/*!
|
|
38099
38241
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38601,7 +38743,7 @@ __decorate([
|
|
|
38601
38743
|
Decorators_1.Override
|
|
38602
38744
|
], ReplaceOp.prototype, "toString", null);
|
|
38603
38745
|
|
|
38604
|
-
},{"./Decorators":
|
|
38746
|
+
},{"./Decorators":204,"./Token":229,"./misc/Interval":316}],234:[function(require,module,exports){
|
|
38605
38747
|
"use strict";
|
|
38606
38748
|
/*!
|
|
38607
38749
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38609,7 +38751,7 @@ __decorate([
|
|
|
38609
38751
|
*/
|
|
38610
38752
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38611
38753
|
|
|
38612
|
-
},{}],
|
|
38754
|
+
},{}],235:[function(require,module,exports){
|
|
38613
38755
|
"use strict";
|
|
38614
38756
|
/*!
|
|
38615
38757
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38729,7 +38871,7 @@ __decorate([
|
|
|
38729
38871
|
], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
|
|
38730
38872
|
exports.VocabularyImpl = VocabularyImpl;
|
|
38731
38873
|
|
|
38732
|
-
},{"./Decorators":
|
|
38874
|
+
},{"./Decorators":204,"./Token":229}],236:[function(require,module,exports){
|
|
38733
38875
|
"use strict";
|
|
38734
38876
|
/*!
|
|
38735
38877
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38737,7 +38879,7 @@ exports.VocabularyImpl = VocabularyImpl;
|
|
|
38737
38879
|
*/
|
|
38738
38880
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38739
38881
|
|
|
38740
|
-
},{}],
|
|
38882
|
+
},{}],237:[function(require,module,exports){
|
|
38741
38883
|
"use strict";
|
|
38742
38884
|
/*!
|
|
38743
38885
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38959,7 +39101,7 @@ exports.ATN = ATN;
|
|
|
38959
39101
|
})(ATN = exports.ATN || (exports.ATN = {}));
|
|
38960
39102
|
exports.ATN = ATN;
|
|
38961
39103
|
|
|
38962
|
-
},{"../Decorators":
|
|
39104
|
+
},{"../Decorators":204,"../Token":229,"../dfa/DFA":302,"../misc/Array2DHashMap":307,"../misc/IntervalSet":317,"../misc/ObjectEqualityComparator":320,"./InvalidState":260,"./LL1Analyzer":261,"./PredictionContext":284,"assert":347}],238:[function(require,module,exports){
|
|
38963
39105
|
"use strict";
|
|
38964
39106
|
/*!
|
|
38965
39107
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39484,7 +39626,7 @@ ActionSemanticContextATNConfig = __decorate([
|
|
|
39484
39626
|
__param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
|
|
39485
39627
|
], ActionSemanticContextATNConfig);
|
|
39486
39628
|
|
|
39487
|
-
},{"../Decorators":
|
|
39629
|
+
},{"../Decorators":204,"../misc/Array2DHashMap":307,"../misc/MurmurHash":319,"../misc/ObjectEqualityComparator":320,"./DecisionState":257,"./PredictionContext":284,"./SemanticContext":292,"assert":347}],239:[function(require,module,exports){
|
|
39488
39630
|
"use strict";
|
|
39489
39631
|
/*!
|
|
39490
39632
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39931,7 +40073,7 @@ __decorate([
|
|
|
39931
40073
|
], ATNConfigSet.prototype, "hashCode", null);
|
|
39932
40074
|
exports.ATNConfigSet = ATNConfigSet;
|
|
39933
40075
|
|
|
39934
|
-
},{"../Decorators":
|
|
40076
|
+
},{"../Decorators":204,"../misc/Array2DHashMap":307,"../misc/Array2DHashSet":308,"../misc/ArrayEqualityComparator":309,"../misc/BitSet":311,"../misc/ObjectEqualityComparator":320,"../misc/Utils":323,"./ATN":237,"./ATNConfig":238,"./PredictionContext":284,"./PredictionContextCache":285,"./SemanticContext":292,"assert":347}],240:[function(require,module,exports){
|
|
39935
40077
|
"use strict";
|
|
39936
40078
|
/*!
|
|
39937
40079
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40010,7 +40152,7 @@ __decorate([
|
|
|
40010
40152
|
], ATNDeserializationOptions, "defaultOptions", null);
|
|
40011
40153
|
exports.ATNDeserializationOptions = ATNDeserializationOptions;
|
|
40012
40154
|
|
|
40013
|
-
},{"../Decorators":
|
|
40155
|
+
},{"../Decorators":204}],241:[function(require,module,exports){
|
|
40014
40156
|
"use strict";
|
|
40015
40157
|
/*!
|
|
40016
40158
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41097,7 +41239,7 @@ __decorate([
|
|
|
41097
41239
|
], ATNDeserializer.prototype, "edgeFactory", null);
|
|
41098
41240
|
exports.ATNDeserializer = ATNDeserializer;
|
|
41099
41241
|
|
|
41100
|
-
},{"../Decorators":
|
|
41242
|
+
},{"../Decorators":204,"../Token":229,"../dfa/DFA":302,"../misc/Array2DHashSet":308,"../misc/BitSet":311,"../misc/IntervalSet":317,"../misc/UUID":322,"./ATN":237,"./ATNDeserializationOptions":240,"./ATNStateType":244,"./ActionTransition":246,"./AtomTransition":248,"./BasicBlockStartState":249,"./BasicState":250,"./BlockEndState":251,"./BlockStartState":252,"./DecisionState":257,"./EpsilonTransition":258,"./InvalidState":260,"./LexerChannelAction":264,"./LexerCustomAction":265,"./LexerModeAction":267,"./LexerMoreAction":268,"./LexerPopModeAction":269,"./LexerPushModeAction":270,"./LexerSkipAction":271,"./LexerTypeAction":272,"./LoopEndState":274,"./NotSetTransition":275,"./ParserATNSimulator":278,"./PlusBlockStartState":279,"./PlusLoopbackState":280,"./PrecedencePredicateTransition":281,"./PredicateTransition":283,"./RangeTransition":288,"./RuleStartState":289,"./RuleStopState":290,"./RuleTransition":291,"./SetTransition":293,"./StarBlockStartState":295,"./StarLoopEntryState":296,"./StarLoopbackState":297,"./TokensStartState":298,"./WildcardTransition":300}],242:[function(require,module,exports){
|
|
41101
41243
|
"use strict";
|
|
41102
41244
|
/*!
|
|
41103
41245
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41161,7 +41303,7 @@ exports.ATNSimulator = ATNSimulator;
|
|
|
41161
41303
|
})(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
|
|
41162
41304
|
exports.ATNSimulator = ATNSimulator;
|
|
41163
41305
|
|
|
41164
|
-
},{"../Decorators":
|
|
41306
|
+
},{"../Decorators":204,"../dfa/DFAState":304,"./ATNConfigSet":239,"./PredictionContext":284}],243:[function(require,module,exports){
|
|
41165
41307
|
"use strict";
|
|
41166
41308
|
/*!
|
|
41167
41309
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41348,7 +41490,7 @@ exports.ATNState = ATNState;
|
|
|
41348
41490
|
ATNState.INVALID_STATE_NUMBER = -1;
|
|
41349
41491
|
})(ATNState = exports.ATNState || (exports.ATNState = {}));
|
|
41350
41492
|
|
|
41351
|
-
},{"../Decorators":
|
|
41493
|
+
},{"../Decorators":204}],244:[function(require,module,exports){
|
|
41352
41494
|
"use strict";
|
|
41353
41495
|
/*!
|
|
41354
41496
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41374,7 +41516,7 @@ var ATNStateType;
|
|
|
41374
41516
|
ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
|
|
41375
41517
|
})(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
|
|
41376
41518
|
|
|
41377
|
-
},{}],
|
|
41519
|
+
},{}],245:[function(require,module,exports){
|
|
41378
41520
|
"use strict";
|
|
41379
41521
|
/*!
|
|
41380
41522
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41394,7 +41536,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
|
|
|
41394
41536
|
}
|
|
41395
41537
|
exports.AbstractPredicateTransition = AbstractPredicateTransition;
|
|
41396
41538
|
|
|
41397
|
-
},{"./Transition":
|
|
41539
|
+
},{"./Transition":299}],246:[function(require,module,exports){
|
|
41398
41540
|
"use strict";
|
|
41399
41541
|
/*!
|
|
41400
41542
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41450,7 +41592,7 @@ ActionTransition = __decorate([
|
|
|
41450
41592
|
], ActionTransition);
|
|
41451
41593
|
exports.ActionTransition = ActionTransition;
|
|
41452
41594
|
|
|
41453
|
-
},{"../Decorators":
|
|
41595
|
+
},{"../Decorators":204,"./Transition":299}],247:[function(require,module,exports){
|
|
41454
41596
|
"use strict";
|
|
41455
41597
|
/*!
|
|
41456
41598
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41537,7 +41679,7 @@ AmbiguityInfo = __decorate([
|
|
|
41537
41679
|
], AmbiguityInfo);
|
|
41538
41680
|
exports.AmbiguityInfo = AmbiguityInfo;
|
|
41539
41681
|
|
|
41540
|
-
},{"../Decorators":
|
|
41682
|
+
},{"../Decorators":204,"./DecisionEventInfo":255}],248:[function(require,module,exports){
|
|
41541
41683
|
"use strict";
|
|
41542
41684
|
/*!
|
|
41543
41685
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41595,7 +41737,7 @@ AtomTransition = __decorate([
|
|
|
41595
41737
|
], AtomTransition);
|
|
41596
41738
|
exports.AtomTransition = AtomTransition;
|
|
41597
41739
|
|
|
41598
|
-
},{"../Decorators":
|
|
41740
|
+
},{"../Decorators":204,"../misc/IntervalSet":317,"./Transition":299}],249:[function(require,module,exports){
|
|
41599
41741
|
"use strict";
|
|
41600
41742
|
/*!
|
|
41601
41743
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41627,7 +41769,7 @@ __decorate([
|
|
|
41627
41769
|
], BasicBlockStartState.prototype, "stateType", null);
|
|
41628
41770
|
exports.BasicBlockStartState = BasicBlockStartState;
|
|
41629
41771
|
|
|
41630
|
-
},{"../Decorators":
|
|
41772
|
+
},{"../Decorators":204,"./ATNStateType":244,"./BlockStartState":252}],250:[function(require,module,exports){
|
|
41631
41773
|
"use strict";
|
|
41632
41774
|
/*!
|
|
41633
41775
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41659,7 +41801,7 @@ __decorate([
|
|
|
41659
41801
|
], BasicState.prototype, "stateType", null);
|
|
41660
41802
|
exports.BasicState = BasicState;
|
|
41661
41803
|
|
|
41662
|
-
},{"../Decorators":
|
|
41804
|
+
},{"../Decorators":204,"./ATNState":243,"./ATNStateType":244}],251:[function(require,module,exports){
|
|
41663
41805
|
"use strict";
|
|
41664
41806
|
/*!
|
|
41665
41807
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41688,7 +41830,7 @@ __decorate([
|
|
|
41688
41830
|
], BlockEndState.prototype, "stateType", null);
|
|
41689
41831
|
exports.BlockEndState = BlockEndState;
|
|
41690
41832
|
|
|
41691
|
-
},{"../Decorators":
|
|
41833
|
+
},{"../Decorators":204,"./ATNState":243,"./ATNStateType":244}],252:[function(require,module,exports){
|
|
41692
41834
|
"use strict";
|
|
41693
41835
|
/*!
|
|
41694
41836
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41702,7 +41844,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
|
|
|
41702
41844
|
}
|
|
41703
41845
|
exports.BlockStartState = BlockStartState;
|
|
41704
41846
|
|
|
41705
|
-
},{"./DecisionState":
|
|
41847
|
+
},{"./DecisionState":257}],253:[function(require,module,exports){
|
|
41706
41848
|
"use strict";
|
|
41707
41849
|
/*!
|
|
41708
41850
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41772,7 +41914,7 @@ __decorate([
|
|
|
41772
41914
|
], ConflictInfo.prototype, "hashCode", null);
|
|
41773
41915
|
exports.ConflictInfo = ConflictInfo;
|
|
41774
41916
|
|
|
41775
|
-
},{"../Decorators":
|
|
41917
|
+
},{"../Decorators":204,"../misc/Utils":323}],254:[function(require,module,exports){
|
|
41776
41918
|
"use strict";
|
|
41777
41919
|
/*!
|
|
41778
41920
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41832,7 +41974,7 @@ ContextSensitivityInfo = __decorate([
|
|
|
41832
41974
|
], ContextSensitivityInfo);
|
|
41833
41975
|
exports.ContextSensitivityInfo = ContextSensitivityInfo;
|
|
41834
41976
|
|
|
41835
|
-
},{"../Decorators":
|
|
41977
|
+
},{"../Decorators":204,"./DecisionEventInfo":255}],255:[function(require,module,exports){
|
|
41836
41978
|
"use strict";
|
|
41837
41979
|
/*!
|
|
41838
41980
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41884,7 +42026,7 @@ DecisionEventInfo = __decorate([
|
|
|
41884
42026
|
], DecisionEventInfo);
|
|
41885
42027
|
exports.DecisionEventInfo = DecisionEventInfo;
|
|
41886
42028
|
|
|
41887
|
-
},{"../Decorators":
|
|
42029
|
+
},{"../Decorators":204}],256:[function(require,module,exports){
|
|
41888
42030
|
"use strict";
|
|
41889
42031
|
/*!
|
|
41890
42032
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42097,7 +42239,7 @@ __decorate([
|
|
|
42097
42239
|
], DecisionInfo.prototype, "toString", null);
|
|
42098
42240
|
exports.DecisionInfo = DecisionInfo;
|
|
42099
42241
|
|
|
42100
|
-
},{"../Decorators":
|
|
42242
|
+
},{"../Decorators":204}],257:[function(require,module,exports){
|
|
42101
42243
|
"use strict";
|
|
42102
42244
|
/*!
|
|
42103
42245
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42117,7 +42259,7 @@ class DecisionState extends ATNState_1.ATNState {
|
|
|
42117
42259
|
}
|
|
42118
42260
|
exports.DecisionState = DecisionState;
|
|
42119
42261
|
|
|
42120
|
-
},{"./ATNState":
|
|
42262
|
+
},{"./ATNState":243}],258:[function(require,module,exports){
|
|
42121
42263
|
"use strict";
|
|
42122
42264
|
/*!
|
|
42123
42265
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42183,7 +42325,7 @@ EpsilonTransition = __decorate([
|
|
|
42183
42325
|
], EpsilonTransition);
|
|
42184
42326
|
exports.EpsilonTransition = EpsilonTransition;
|
|
42185
42327
|
|
|
42186
|
-
},{"../Decorators":
|
|
42328
|
+
},{"../Decorators":204,"./Transition":299}],259:[function(require,module,exports){
|
|
42187
42329
|
"use strict";
|
|
42188
42330
|
/*!
|
|
42189
42331
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42236,7 +42378,7 @@ ErrorInfo = __decorate([
|
|
|
42236
42378
|
], ErrorInfo);
|
|
42237
42379
|
exports.ErrorInfo = ErrorInfo;
|
|
42238
42380
|
|
|
42239
|
-
},{"../Decorators":
|
|
42381
|
+
},{"../Decorators":204,"./DecisionEventInfo":255}],260:[function(require,module,exports){
|
|
42240
42382
|
"use strict";
|
|
42241
42383
|
/*!
|
|
42242
42384
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42267,7 +42409,7 @@ __decorate([
|
|
|
42267
42409
|
], InvalidState.prototype, "stateType", null);
|
|
42268
42410
|
exports.InvalidState = InvalidState;
|
|
42269
42411
|
|
|
42270
|
-
},{"../Decorators":
|
|
42412
|
+
},{"../Decorators":204,"./ATNStateType":244,"./BasicState":250}],261:[function(require,module,exports){
|
|
42271
42413
|
"use strict";
|
|
42272
42414
|
/*!
|
|
42273
42415
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42489,7 +42631,7 @@ LL1Analyzer = __decorate([
|
|
|
42489
42631
|
], LL1Analyzer);
|
|
42490
42632
|
exports.LL1Analyzer = LL1Analyzer;
|
|
42491
42633
|
|
|
42492
|
-
},{"../Decorators":
|
|
42634
|
+
},{"../Decorators":204,"../Token":229,"../misc/Array2DHashSet":308,"../misc/BitSet":311,"../misc/IntervalSet":317,"../misc/ObjectEqualityComparator":320,"./ATNConfig":238,"./AbstractPredicateTransition":245,"./NotSetTransition":275,"./PredictionContext":284,"./RuleStopState":290,"./RuleTransition":291,"./WildcardTransition":300}],262:[function(require,module,exports){
|
|
42493
42635
|
"use strict";
|
|
42494
42636
|
/*!
|
|
42495
42637
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43206,7 +43348,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
|
|
|
43206
43348
|
})(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
|
|
43207
43349
|
exports.LexerATNSimulator = LexerATNSimulator;
|
|
43208
43350
|
|
|
43209
|
-
},{"../Decorators":
|
|
43351
|
+
},{"../Decorators":204,"../IntStream":210,"../Lexer":212,"../LexerNoViableAltException":214,"../Token":229,"../dfa/AcceptStateInfo":301,"../dfa/DFAState":304,"../misc/Interval":316,"./ATN":237,"./ATNConfig":238,"./ATNConfigSet":239,"./ATNSimulator":242,"./LexerActionExecutor":263,"./OrderedATNConfigSet":276,"./PredictionContext":284,"./RuleStopState":290,"assert":347}],263:[function(require,module,exports){
|
|
43210
43352
|
"use strict";
|
|
43211
43353
|
/*!
|
|
43212
43354
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43407,7 +43549,7 @@ LexerActionExecutor = __decorate([
|
|
|
43407
43549
|
], LexerActionExecutor);
|
|
43408
43550
|
exports.LexerActionExecutor = LexerActionExecutor;
|
|
43409
43551
|
|
|
43410
|
-
},{"../Decorators":
|
|
43552
|
+
},{"../Decorators":204,"../misc/ArrayEqualityComparator":309,"../misc/MurmurHash":319,"./LexerIndexedCustomAction":266}],264:[function(require,module,exports){
|
|
43411
43553
|
"use strict";
|
|
43412
43554
|
/*!
|
|
43413
43555
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43512,7 +43654,7 @@ __decorate([
|
|
|
43512
43654
|
], LexerChannelAction.prototype, "toString", null);
|
|
43513
43655
|
exports.LexerChannelAction = LexerChannelAction;
|
|
43514
43656
|
|
|
43515
|
-
},{"../Decorators":
|
|
43657
|
+
},{"../Decorators":204,"../misc/MurmurHash":319}],265:[function(require,module,exports){
|
|
43516
43658
|
"use strict";
|
|
43517
43659
|
/*!
|
|
43518
43660
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43641,7 +43783,7 @@ __decorate([
|
|
|
43641
43783
|
], LexerCustomAction.prototype, "equals", null);
|
|
43642
43784
|
exports.LexerCustomAction = LexerCustomAction;
|
|
43643
43785
|
|
|
43644
|
-
},{"../Decorators":
|
|
43786
|
+
},{"../Decorators":204,"../misc/MurmurHash":319}],266:[function(require,module,exports){
|
|
43645
43787
|
"use strict";
|
|
43646
43788
|
/*!
|
|
43647
43789
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43776,7 +43918,7 @@ LexerIndexedCustomAction = __decorate([
|
|
|
43776
43918
|
], LexerIndexedCustomAction);
|
|
43777
43919
|
exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
|
|
43778
43920
|
|
|
43779
|
-
},{"../Decorators":
|
|
43921
|
+
},{"../Decorators":204,"../misc/MurmurHash":319}],267:[function(require,module,exports){
|
|
43780
43922
|
"use strict";
|
|
43781
43923
|
/*!
|
|
43782
43924
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43881,7 +44023,7 @@ __decorate([
|
|
|
43881
44023
|
], LexerModeAction.prototype, "toString", null);
|
|
43882
44024
|
exports.LexerModeAction = LexerModeAction;
|
|
43883
44025
|
|
|
43884
|
-
},{"../Decorators":
|
|
44026
|
+
},{"../Decorators":204,"../misc/MurmurHash":319}],268:[function(require,module,exports){
|
|
43885
44027
|
"use strict";
|
|
43886
44028
|
/*!
|
|
43887
44029
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43977,7 +44119,7 @@ exports.LexerMoreAction = LexerMoreAction;
|
|
|
43977
44119
|
LexerMoreAction.INSTANCE = new LexerMoreAction();
|
|
43978
44120
|
})(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
|
|
43979
44121
|
|
|
43980
|
-
},{"../Decorators":
|
|
44122
|
+
},{"../Decorators":204,"../misc/MurmurHash":319}],269:[function(require,module,exports){
|
|
43981
44123
|
"use strict";
|
|
43982
44124
|
/*!
|
|
43983
44125
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44073,7 +44215,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
|
|
|
44073
44215
|
LexerPopModeAction.INSTANCE = new LexerPopModeAction();
|
|
44074
44216
|
})(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
|
|
44075
44217
|
|
|
44076
|
-
},{"../Decorators":
|
|
44218
|
+
},{"../Decorators":204,"../misc/MurmurHash":319}],270:[function(require,module,exports){
|
|
44077
44219
|
"use strict";
|
|
44078
44220
|
/*!
|
|
44079
44221
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44178,7 +44320,7 @@ __decorate([
|
|
|
44178
44320
|
], LexerPushModeAction.prototype, "toString", null);
|
|
44179
44321
|
exports.LexerPushModeAction = LexerPushModeAction;
|
|
44180
44322
|
|
|
44181
|
-
},{"../Decorators":
|
|
44323
|
+
},{"../Decorators":204,"../misc/MurmurHash":319}],271:[function(require,module,exports){
|
|
44182
44324
|
"use strict";
|
|
44183
44325
|
/*!
|
|
44184
44326
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44274,7 +44416,7 @@ exports.LexerSkipAction = LexerSkipAction;
|
|
|
44274
44416
|
LexerSkipAction.INSTANCE = new LexerSkipAction();
|
|
44275
44417
|
})(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
|
|
44276
44418
|
|
|
44277
|
-
},{"../Decorators":
|
|
44419
|
+
},{"../Decorators":204,"../misc/MurmurHash":319}],272:[function(require,module,exports){
|
|
44278
44420
|
"use strict";
|
|
44279
44421
|
/*!
|
|
44280
44422
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44378,7 +44520,7 @@ __decorate([
|
|
|
44378
44520
|
], LexerTypeAction.prototype, "toString", null);
|
|
44379
44521
|
exports.LexerTypeAction = LexerTypeAction;
|
|
44380
44522
|
|
|
44381
|
-
},{"../Decorators":
|
|
44523
|
+
},{"../Decorators":204,"../misc/MurmurHash":319}],273:[function(require,module,exports){
|
|
44382
44524
|
"use strict";
|
|
44383
44525
|
/*!
|
|
44384
44526
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44430,7 +44572,7 @@ LookaheadEventInfo = __decorate([
|
|
|
44430
44572
|
], LookaheadEventInfo);
|
|
44431
44573
|
exports.LookaheadEventInfo = LookaheadEventInfo;
|
|
44432
44574
|
|
|
44433
|
-
},{"../Decorators":
|
|
44575
|
+
},{"../Decorators":204,"./DecisionEventInfo":255}],274:[function(require,module,exports){
|
|
44434
44576
|
"use strict";
|
|
44435
44577
|
/*!
|
|
44436
44578
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44459,7 +44601,7 @@ __decorate([
|
|
|
44459
44601
|
], LoopEndState.prototype, "stateType", null);
|
|
44460
44602
|
exports.LoopEndState = LoopEndState;
|
|
44461
44603
|
|
|
44462
|
-
},{"../Decorators":
|
|
44604
|
+
},{"../Decorators":204,"./ATNState":243,"./ATNStateType":244}],275:[function(require,module,exports){
|
|
44463
44605
|
"use strict";
|
|
44464
44606
|
/*!
|
|
44465
44607
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44508,7 +44650,7 @@ NotSetTransition = __decorate([
|
|
|
44508
44650
|
], NotSetTransition);
|
|
44509
44651
|
exports.NotSetTransition = NotSetTransition;
|
|
44510
44652
|
|
|
44511
|
-
},{"../Decorators":
|
|
44653
|
+
},{"../Decorators":204,"./SetTransition":293}],276:[function(require,module,exports){
|
|
44512
44654
|
"use strict";
|
|
44513
44655
|
/*!
|
|
44514
44656
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44563,7 +44705,7 @@ __decorate([
|
|
|
44563
44705
|
], OrderedATNConfigSet.prototype, "canMerge", null);
|
|
44564
44706
|
exports.OrderedATNConfigSet = OrderedATNConfigSet;
|
|
44565
44707
|
|
|
44566
|
-
},{"../Decorators":
|
|
44708
|
+
},{"../Decorators":204,"./ATNConfigSet":239}],277:[function(require,module,exports){
|
|
44567
44709
|
"use strict";
|
|
44568
44710
|
/*!
|
|
44569
44711
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44725,7 +44867,7 @@ ParseInfo = __decorate([
|
|
|
44725
44867
|
], ParseInfo);
|
|
44726
44868
|
exports.ParseInfo = ParseInfo;
|
|
44727
44869
|
|
|
44728
|
-
},{"../Decorators":
|
|
44870
|
+
},{"../Decorators":204}],278:[function(require,module,exports){
|
|
44729
44871
|
"use strict";
|
|
44730
44872
|
/*!
|
|
44731
44873
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46998,7 +47140,7 @@ ParserATNSimulator = __decorate([
|
|
|
46998
47140
|
], ParserATNSimulator);
|
|
46999
47141
|
exports.ParserATNSimulator = ParserATNSimulator;
|
|
47000
47142
|
|
|
47001
|
-
},{"../Decorators":
|
|
47143
|
+
},{"../Decorators":204,"../IntStream":210,"../NoViableAltException":216,"../ParserRuleContext":220,"../Token":229,"../VocabularyImpl":235,"../dfa/AcceptStateInfo":301,"../dfa/DFAState":304,"../misc/Array2DHashSet":308,"../misc/Arrays":310,"../misc/BitSet":311,"../misc/IntegerList":314,"../misc/Interval":316,"../misc/ObjectEqualityComparator":320,"./ATN":237,"./ATNConfig":238,"./ATNConfigSet":239,"./ATNSimulator":242,"./ATNStateType":244,"./ActionTransition":246,"./AtomTransition":248,"./ConflictInfo":253,"./DecisionState":257,"./NotSetTransition":275,"./PredictionContext":284,"./PredictionContextCache":285,"./PredictionMode":286,"./RuleStopState":290,"./RuleTransition":291,"./SemanticContext":292,"./SetTransition":293,"./SimulatorState":294,"assert":347}],279:[function(require,module,exports){
|
|
47002
47144
|
"use strict";
|
|
47003
47145
|
/*!
|
|
47004
47146
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47031,7 +47173,7 @@ __decorate([
|
|
|
47031
47173
|
], PlusBlockStartState.prototype, "stateType", null);
|
|
47032
47174
|
exports.PlusBlockStartState = PlusBlockStartState;
|
|
47033
47175
|
|
|
47034
|
-
},{"../Decorators":
|
|
47176
|
+
},{"../Decorators":204,"./ATNStateType":244,"./BlockStartState":252}],280:[function(require,module,exports){
|
|
47035
47177
|
"use strict";
|
|
47036
47178
|
/*!
|
|
47037
47179
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47062,7 +47204,7 @@ __decorate([
|
|
|
47062
47204
|
], PlusLoopbackState.prototype, "stateType", null);
|
|
47063
47205
|
exports.PlusLoopbackState = PlusLoopbackState;
|
|
47064
47206
|
|
|
47065
|
-
},{"../Decorators":
|
|
47207
|
+
},{"../Decorators":204,"./ATNStateType":244,"./DecisionState":257}],281:[function(require,module,exports){
|
|
47066
47208
|
"use strict";
|
|
47067
47209
|
/*!
|
|
47068
47210
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47125,7 +47267,7 @@ PrecedencePredicateTransition = __decorate([
|
|
|
47125
47267
|
], PrecedencePredicateTransition);
|
|
47126
47268
|
exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
|
|
47127
47269
|
|
|
47128
|
-
},{"../Decorators":
|
|
47270
|
+
},{"../Decorators":204,"./AbstractPredicateTransition":245,"./SemanticContext":292}],282:[function(require,module,exports){
|
|
47129
47271
|
"use strict";
|
|
47130
47272
|
/*!
|
|
47131
47273
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47188,7 +47330,7 @@ PredicateEvalInfo = __decorate([
|
|
|
47188
47330
|
], PredicateEvalInfo);
|
|
47189
47331
|
exports.PredicateEvalInfo = PredicateEvalInfo;
|
|
47190
47332
|
|
|
47191
|
-
},{"../Decorators":
|
|
47333
|
+
},{"../Decorators":204,"./DecisionEventInfo":255}],283:[function(require,module,exports){
|
|
47192
47334
|
"use strict";
|
|
47193
47335
|
/*!
|
|
47194
47336
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47254,7 +47396,7 @@ PredicateTransition = __decorate([
|
|
|
47254
47396
|
], PredicateTransition);
|
|
47255
47397
|
exports.PredicateTransition = PredicateTransition;
|
|
47256
47398
|
|
|
47257
|
-
},{"../Decorators":
|
|
47399
|
+
},{"../Decorators":204,"./AbstractPredicateTransition":245,"./SemanticContext":292}],284:[function(require,module,exports){
|
|
47258
47400
|
"use strict";
|
|
47259
47401
|
/*!
|
|
47260
47402
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47945,7 +48087,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
|
|
|
47945
48087
|
PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
|
|
47946
48088
|
})(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
|
|
47947
48089
|
|
|
47948
|
-
},{"../Decorators":
|
|
48090
|
+
},{"../Decorators":204,"../misc/Array2DHashMap":307,"../misc/Array2DHashSet":308,"../misc/Arrays":310,"../misc/MurmurHash":319,"./PredictionContextCache":285,"assert":347}],285:[function(require,module,exports){
|
|
47949
48091
|
"use strict";
|
|
47950
48092
|
/*!
|
|
47951
48093
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48086,7 +48228,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
|
|
|
48086
48228
|
PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
|
|
48087
48229
|
})(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
|
|
48088
48230
|
|
|
48089
|
-
},{"../Decorators":
|
|
48231
|
+
},{"../Decorators":204,"../misc/Array2DHashMap":307,"../misc/ObjectEqualityComparator":320,"./PredictionContext":284,"assert":347}],286:[function(require,module,exports){
|
|
48090
48232
|
"use strict";
|
|
48091
48233
|
/*!
|
|
48092
48234
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48247,7 +48389,7 @@ var PredictionMode;
|
|
|
48247
48389
|
PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
|
|
48248
48390
|
})(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
|
|
48249
48391
|
|
|
48250
|
-
},{"../Decorators":
|
|
48392
|
+
},{"../Decorators":204,"../misc/Array2DHashMap":307,"../misc/MurmurHash":319,"./RuleStopState":290}],287:[function(require,module,exports){
|
|
48251
48393
|
(function (process){(function (){
|
|
48252
48394
|
"use strict";
|
|
48253
48395
|
/*!
|
|
@@ -48516,7 +48658,7 @@ __decorate([
|
|
|
48516
48658
|
exports.ProfilingATNSimulator = ProfilingATNSimulator;
|
|
48517
48659
|
|
|
48518
48660
|
}).call(this)}).call(this,require('_process'))
|
|
48519
|
-
},{"../Decorators":
|
|
48661
|
+
},{"../Decorators":204,"./ATN":237,"./ATNSimulator":242,"./AmbiguityInfo":247,"./ContextSensitivityInfo":254,"./DecisionInfo":256,"./ErrorInfo":259,"./LookaheadEventInfo":273,"./ParserATNSimulator":278,"./PredicateEvalInfo":282,"./SemanticContext":292,"./SimulatorState":294,"_process":406}],288:[function(require,module,exports){
|
|
48520
48662
|
"use strict";
|
|
48521
48663
|
/*!
|
|
48522
48664
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48574,7 +48716,7 @@ RangeTransition = __decorate([
|
|
|
48574
48716
|
], RangeTransition);
|
|
48575
48717
|
exports.RangeTransition = RangeTransition;
|
|
48576
48718
|
|
|
48577
|
-
},{"../Decorators":
|
|
48719
|
+
},{"../Decorators":204,"../misc/IntervalSet":317,"./Transition":299}],289:[function(require,module,exports){
|
|
48578
48720
|
"use strict";
|
|
48579
48721
|
/*!
|
|
48580
48722
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48607,7 +48749,7 @@ __decorate([
|
|
|
48607
48749
|
], RuleStartState.prototype, "stateType", null);
|
|
48608
48750
|
exports.RuleStartState = RuleStartState;
|
|
48609
48751
|
|
|
48610
|
-
},{"../Decorators":
|
|
48752
|
+
},{"../Decorators":204,"./ATNState":243,"./ATNStateType":244}],290:[function(require,module,exports){
|
|
48611
48753
|
"use strict";
|
|
48612
48754
|
/*!
|
|
48613
48755
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48646,7 +48788,7 @@ __decorate([
|
|
|
48646
48788
|
], RuleStopState.prototype, "stateType", null);
|
|
48647
48789
|
exports.RuleStopState = RuleStopState;
|
|
48648
48790
|
|
|
48649
|
-
},{"../Decorators":
|
|
48791
|
+
},{"../Decorators":204,"./ATNState":243,"./ATNStateType":244}],291:[function(require,module,exports){
|
|
48650
48792
|
"use strict";
|
|
48651
48793
|
/*!
|
|
48652
48794
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48702,7 +48844,7 @@ RuleTransition = __decorate([
|
|
|
48702
48844
|
], RuleTransition);
|
|
48703
48845
|
exports.RuleTransition = RuleTransition;
|
|
48704
48846
|
|
|
48705
|
-
},{"../Decorators":
|
|
48847
|
+
},{"../Decorators":204,"./Transition":299}],292:[function(require,module,exports){
|
|
48706
48848
|
"use strict";
|
|
48707
48849
|
/*!
|
|
48708
48850
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49182,7 +49324,7 @@ exports.SemanticContext = SemanticContext;
|
|
|
49182
49324
|
SemanticContext.OR = OR;
|
|
49183
49325
|
})(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
|
|
49184
49326
|
|
|
49185
|
-
},{"../Decorators":
|
|
49327
|
+
},{"../Decorators":204,"../misc/Array2DHashSet":308,"../misc/ArrayEqualityComparator":309,"../misc/MurmurHash":319,"../misc/ObjectEqualityComparator":320,"../misc/Utils":323}],293:[function(require,module,exports){
|
|
49186
49328
|
"use strict";
|
|
49187
49329
|
/*!
|
|
49188
49330
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49248,7 +49390,7 @@ SetTransition = __decorate([
|
|
|
49248
49390
|
], SetTransition);
|
|
49249
49391
|
exports.SetTransition = SetTransition;
|
|
49250
49392
|
|
|
49251
|
-
},{"../Decorators":
|
|
49393
|
+
},{"../Decorators":204,"../Token":229,"../misc/IntervalSet":317,"./Transition":299}],294:[function(require,module,exports){
|
|
49252
49394
|
"use strict";
|
|
49253
49395
|
/*!
|
|
49254
49396
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49284,7 +49426,7 @@ SimulatorState = __decorate([
|
|
|
49284
49426
|
], SimulatorState);
|
|
49285
49427
|
exports.SimulatorState = SimulatorState;
|
|
49286
49428
|
|
|
49287
|
-
},{"../Decorators":
|
|
49429
|
+
},{"../Decorators":204,"../ParserRuleContext":220}],295:[function(require,module,exports){
|
|
49288
49430
|
"use strict";
|
|
49289
49431
|
/*!
|
|
49290
49432
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49312,7 +49454,7 @@ __decorate([
|
|
|
49312
49454
|
], StarBlockStartState.prototype, "stateType", null);
|
|
49313
49455
|
exports.StarBlockStartState = StarBlockStartState;
|
|
49314
49456
|
|
|
49315
|
-
},{"../Decorators":
|
|
49457
|
+
},{"../Decorators":204,"./ATNStateType":244,"./BlockStartState":252}],296:[function(require,module,exports){
|
|
49316
49458
|
"use strict";
|
|
49317
49459
|
/*!
|
|
49318
49460
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49369,7 +49511,7 @@ __decorate([
|
|
|
49369
49511
|
], StarLoopEntryState.prototype, "stateType", null);
|
|
49370
49512
|
exports.StarLoopEntryState = StarLoopEntryState;
|
|
49371
49513
|
|
|
49372
|
-
},{"../Decorators":
|
|
49514
|
+
},{"../Decorators":204,"../misc/BitSet":311,"./ATNStateType":244,"./DecisionState":257}],297:[function(require,module,exports){
|
|
49373
49515
|
"use strict";
|
|
49374
49516
|
/*!
|
|
49375
49517
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49400,7 +49542,7 @@ __decorate([
|
|
|
49400
49542
|
], StarLoopbackState.prototype, "stateType", null);
|
|
49401
49543
|
exports.StarLoopbackState = StarLoopbackState;
|
|
49402
49544
|
|
|
49403
|
-
},{"../Decorators":
|
|
49545
|
+
},{"../Decorators":204,"./ATNState":243,"./ATNStateType":244}],298:[function(require,module,exports){
|
|
49404
49546
|
"use strict";
|
|
49405
49547
|
/*!
|
|
49406
49548
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49429,7 +49571,7 @@ __decorate([
|
|
|
49429
49571
|
], TokensStartState.prototype, "stateType", null);
|
|
49430
49572
|
exports.TokensStartState = TokensStartState;
|
|
49431
49573
|
|
|
49432
|
-
},{"../Decorators":
|
|
49574
|
+
},{"../Decorators":204,"./ATNStateType":244,"./DecisionState":257}],299:[function(require,module,exports){
|
|
49433
49575
|
"use strict";
|
|
49434
49576
|
/*!
|
|
49435
49577
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49503,7 +49645,7 @@ Transition = __decorate([
|
|
|
49503
49645
|
], Transition);
|
|
49504
49646
|
exports.Transition = Transition;
|
|
49505
49647
|
|
|
49506
|
-
},{"../Decorators":
|
|
49648
|
+
},{"../Decorators":204}],300:[function(require,module,exports){
|
|
49507
49649
|
"use strict";
|
|
49508
49650
|
/*!
|
|
49509
49651
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49551,7 +49693,7 @@ WildcardTransition = __decorate([
|
|
|
49551
49693
|
], WildcardTransition);
|
|
49552
49694
|
exports.WildcardTransition = WildcardTransition;
|
|
49553
49695
|
|
|
49554
|
-
},{"../Decorators":
|
|
49696
|
+
},{"../Decorators":204,"./Transition":299}],301:[function(require,module,exports){
|
|
49555
49697
|
"use strict";
|
|
49556
49698
|
/*!
|
|
49557
49699
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49593,7 +49735,7 @@ class AcceptStateInfo {
|
|
|
49593
49735
|
}
|
|
49594
49736
|
exports.AcceptStateInfo = AcceptStateInfo;
|
|
49595
49737
|
|
|
49596
|
-
},{}],
|
|
49738
|
+
},{}],302:[function(require,module,exports){
|
|
49597
49739
|
"use strict";
|
|
49598
49740
|
/*!
|
|
49599
49741
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49768,7 +49910,7 @@ DFA = __decorate([
|
|
|
49768
49910
|
], DFA);
|
|
49769
49911
|
exports.DFA = DFA;
|
|
49770
49912
|
|
|
49771
|
-
},{"../Decorators":
|
|
49913
|
+
},{"../Decorators":204,"../VocabularyImpl":235,"../atn/ATNConfigSet":239,"../atn/StarLoopEntryState":296,"../misc/Array2DHashSet":308,"../misc/ObjectEqualityComparator":320,"./DFASerializer":303,"./DFAState":304,"./LexerDFASerializer":305}],303:[function(require,module,exports){
|
|
49772
49914
|
"use strict";
|
|
49773
49915
|
/*!
|
|
49774
49916
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49910,7 +50052,7 @@ __decorate([
|
|
|
49910
50052
|
], DFASerializer.prototype, "toString", null);
|
|
49911
50053
|
exports.DFASerializer = DFASerializer;
|
|
49912
50054
|
|
|
49913
|
-
},{"../Decorators":
|
|
50055
|
+
},{"../Decorators":204,"../Recognizer":224,"../VocabularyImpl":235,"../atn/ATNSimulator":242,"../atn/PredictionContext":284}],304:[function(require,module,exports){
|
|
49914
50056
|
"use strict";
|
|
49915
50057
|
/*!
|
|
49916
50058
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50141,7 +50283,7 @@ exports.DFAState = DFAState;
|
|
|
50141
50283
|
DFAState.PredPrediction = PredPrediction;
|
|
50142
50284
|
})(DFAState = exports.DFAState || (exports.DFAState = {}));
|
|
50143
50285
|
|
|
50144
|
-
},{"../Decorators":
|
|
50286
|
+
},{"../Decorators":204,"../atn/ATN":237,"../atn/PredictionContext":284,"../misc/BitSet":311,"../misc/MurmurHash":319,"assert":347}],305:[function(require,module,exports){
|
|
50145
50287
|
"use strict";
|
|
50146
50288
|
/*!
|
|
50147
50289
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50178,7 +50320,7 @@ LexerDFASerializer = __decorate([
|
|
|
50178
50320
|
], LexerDFASerializer);
|
|
50179
50321
|
exports.LexerDFASerializer = LexerDFASerializer;
|
|
50180
50322
|
|
|
50181
|
-
},{"../Decorators":
|
|
50323
|
+
},{"../Decorators":204,"../VocabularyImpl":235,"./DFASerializer":303}],306:[function(require,module,exports){
|
|
50182
50324
|
"use strict";
|
|
50183
50325
|
/*!
|
|
50184
50326
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50244,7 +50386,7 @@ __exportStar(require("./Vocabulary"), exports);
|
|
|
50244
50386
|
__exportStar(require("./VocabularyImpl"), exports);
|
|
50245
50387
|
__exportStar(require("./WritableToken"), exports);
|
|
50246
50388
|
|
|
50247
|
-
},{"./ANTLRErrorListener":
|
|
50389
|
+
},{"./ANTLRErrorListener":191,"./ANTLRErrorStrategy":192,"./ANTLRInputStream":193,"./BailErrorStrategy":194,"./BufferedTokenStream":195,"./CharStream":196,"./CharStreams":197,"./CodePointBuffer":198,"./CodePointCharStream":199,"./CommonToken":200,"./CommonTokenFactory":201,"./CommonTokenStream":202,"./ConsoleErrorListener":203,"./DefaultErrorStrategy":205,"./Dependents":206,"./DiagnosticErrorListener":207,"./FailedPredicateException":208,"./InputMismatchException":209,"./IntStream":210,"./InterpreterRuleContext":211,"./Lexer":212,"./LexerInterpreter":213,"./LexerNoViableAltException":214,"./ListTokenSource":215,"./NoViableAltException":216,"./Parser":217,"./ParserErrorListener":218,"./ParserInterpreter":219,"./ParserRuleContext":220,"./ProxyErrorListener":221,"./ProxyParserErrorListener":222,"./RecognitionException":223,"./Recognizer":224,"./RuleContext":225,"./RuleContextWithAltNum":226,"./RuleDependency":227,"./RuleVersion":228,"./Token":229,"./TokenFactory":230,"./TokenSource":231,"./TokenStream":232,"./TokenStreamRewriter":233,"./Vocabulary":234,"./VocabularyImpl":235,"./WritableToken":236}],307:[function(require,module,exports){
|
|
50248
50390
|
"use strict";
|
|
50249
50391
|
/*!
|
|
50250
50392
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50327,7 +50469,7 @@ class Array2DHashMap {
|
|
|
50327
50469
|
}
|
|
50328
50470
|
exports.Array2DHashMap = Array2DHashMap;
|
|
50329
50471
|
|
|
50330
|
-
},{"./Array2DHashSet":
|
|
50472
|
+
},{"./Array2DHashSet":308}],308:[function(require,module,exports){
|
|
50331
50473
|
"use strict";
|
|
50332
50474
|
/*!
|
|
50333
50475
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50694,7 +50836,7 @@ __decorate([
|
|
|
50694
50836
|
], Array2DHashSet.prototype, "createBuckets", null);
|
|
50695
50837
|
exports.Array2DHashSet = Array2DHashSet;
|
|
50696
50838
|
|
|
50697
|
-
},{"../Decorators":
|
|
50839
|
+
},{"../Decorators":204,"./DefaultEqualityComparator":313,"./MurmurHash":319,"assert":347}],309:[function(require,module,exports){
|
|
50698
50840
|
"use strict";
|
|
50699
50841
|
/*!
|
|
50700
50842
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50766,7 +50908,7 @@ __decorate([
|
|
|
50766
50908
|
], ArrayEqualityComparator.prototype, "equals", null);
|
|
50767
50909
|
exports.ArrayEqualityComparator = ArrayEqualityComparator;
|
|
50768
50910
|
|
|
50769
|
-
},{"../Decorators":
|
|
50911
|
+
},{"../Decorators":204,"./MurmurHash":319,"./ObjectEqualityComparator":320}],310:[function(require,module,exports){
|
|
50770
50912
|
"use strict";
|
|
50771
50913
|
/*!
|
|
50772
50914
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50836,7 +50978,7 @@ var Arrays;
|
|
|
50836
50978
|
Arrays.toString = toString;
|
|
50837
50979
|
})(Arrays = exports.Arrays || (exports.Arrays = {}));
|
|
50838
50980
|
|
|
50839
|
-
},{}],
|
|
50981
|
+
},{}],311:[function(require,module,exports){
|
|
50840
50982
|
"use strict";
|
|
50841
50983
|
/*!
|
|
50842
50984
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51508,7 +51650,7 @@ class BitSetIterator {
|
|
|
51508
51650
|
[Symbol.iterator]() { return this; }
|
|
51509
51651
|
}
|
|
51510
51652
|
|
|
51511
|
-
},{"./MurmurHash":
|
|
51653
|
+
},{"./MurmurHash":319,"util":411}],312:[function(require,module,exports){
|
|
51512
51654
|
"use strict";
|
|
51513
51655
|
/*!
|
|
51514
51656
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51529,7 +51671,7 @@ function isSupplementaryCodePoint(ch) {
|
|
|
51529
51671
|
}
|
|
51530
51672
|
exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
|
|
51531
51673
|
|
|
51532
|
-
},{}],
|
|
51674
|
+
},{}],313:[function(require,module,exports){
|
|
51533
51675
|
"use strict";
|
|
51534
51676
|
/*!
|
|
51535
51677
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51600,7 +51742,7 @@ __decorate([
|
|
|
51600
51742
|
], DefaultEqualityComparator.prototype, "equals", null);
|
|
51601
51743
|
exports.DefaultEqualityComparator = DefaultEqualityComparator;
|
|
51602
51744
|
|
|
51603
|
-
},{"../Decorators":
|
|
51745
|
+
},{"../Decorators":204,"./MurmurHash":319,"./ObjectEqualityComparator":320}],314:[function(require,module,exports){
|
|
51604
51746
|
"use strict";
|
|
51605
51747
|
/*!
|
|
51606
51748
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51894,7 +52036,7 @@ __decorate([
|
|
|
51894
52036
|
], IntegerList.prototype, "toString", null);
|
|
51895
52037
|
exports.IntegerList = IntegerList;
|
|
51896
52038
|
|
|
51897
|
-
},{"../Decorators":
|
|
52039
|
+
},{"../Decorators":204,"./Arrays":310}],315:[function(require,module,exports){
|
|
51898
52040
|
"use strict";
|
|
51899
52041
|
/*!
|
|
51900
52042
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51924,7 +52066,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
|
|
|
51924
52066
|
}
|
|
51925
52067
|
exports.IntegerStack = IntegerStack;
|
|
51926
52068
|
|
|
51927
|
-
},{"./IntegerList":
|
|
52069
|
+
},{"./IntegerList":314}],316:[function(require,module,exports){
|
|
51928
52070
|
"use strict";
|
|
51929
52071
|
/*!
|
|
51930
52072
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52067,7 +52209,7 @@ __decorate([
|
|
|
52067
52209
|
], Interval.prototype, "toString", null);
|
|
52068
52210
|
exports.Interval = Interval;
|
|
52069
52211
|
|
|
52070
|
-
},{"../Decorators":
|
|
52212
|
+
},{"../Decorators":204}],317:[function(require,module,exports){
|
|
52071
52213
|
"use strict";
|
|
52072
52214
|
/*!
|
|
52073
52215
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52713,7 +52855,7 @@ __decorate([
|
|
|
52713
52855
|
], IntervalSet, "subtract", null);
|
|
52714
52856
|
exports.IntervalSet = IntervalSet;
|
|
52715
52857
|
|
|
52716
|
-
},{"../Decorators":
|
|
52858
|
+
},{"../Decorators":204,"../Lexer":212,"../Token":229,"./ArrayEqualityComparator":309,"./IntegerList":314,"./Interval":316,"./MurmurHash":319}],318:[function(require,module,exports){
|
|
52717
52859
|
"use strict";
|
|
52718
52860
|
/*!
|
|
52719
52861
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52746,7 +52888,7 @@ class MultiMap extends Map {
|
|
|
52746
52888
|
}
|
|
52747
52889
|
exports.MultiMap = MultiMap;
|
|
52748
52890
|
|
|
52749
|
-
},{}],
|
|
52891
|
+
},{}],319:[function(require,module,exports){
|
|
52750
52892
|
"use strict";
|
|
52751
52893
|
/*!
|
|
52752
52894
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52861,7 +53003,7 @@ var MurmurHash;
|
|
|
52861
53003
|
}
|
|
52862
53004
|
})(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
|
|
52863
53005
|
|
|
52864
|
-
},{}],
|
|
53006
|
+
},{}],320:[function(require,module,exports){
|
|
52865
53007
|
"use strict";
|
|
52866
53008
|
/*!
|
|
52867
53009
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52920,7 +53062,7 @@ __decorate([
|
|
|
52920
53062
|
], ObjectEqualityComparator.prototype, "equals", null);
|
|
52921
53063
|
exports.ObjectEqualityComparator = ObjectEqualityComparator;
|
|
52922
53064
|
|
|
52923
|
-
},{"../Decorators":
|
|
53065
|
+
},{"../Decorators":204}],321:[function(require,module,exports){
|
|
52924
53066
|
"use strict";
|
|
52925
53067
|
/*!
|
|
52926
53068
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52949,7 +53091,7 @@ class ParseCancellationException extends Error {
|
|
|
52949
53091
|
}
|
|
52950
53092
|
exports.ParseCancellationException = ParseCancellationException;
|
|
52951
53093
|
|
|
52952
|
-
},{}],
|
|
53094
|
+
},{}],322:[function(require,module,exports){
|
|
52953
53095
|
"use strict";
|
|
52954
53096
|
/*!
|
|
52955
53097
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53003,7 +53145,7 @@ class UUID {
|
|
|
53003
53145
|
}
|
|
53004
53146
|
exports.UUID = UUID;
|
|
53005
53147
|
|
|
53006
|
-
},{"./MurmurHash":
|
|
53148
|
+
},{"./MurmurHash":319}],323:[function(require,module,exports){
|
|
53007
53149
|
"use strict";
|
|
53008
53150
|
/*!
|
|
53009
53151
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53178,7 +53320,7 @@ exports.toCharArray = toCharArray;
|
|
|
53178
53320
|
// return s;
|
|
53179
53321
|
// }
|
|
53180
53322
|
|
|
53181
|
-
},{}],
|
|
53323
|
+
},{}],324:[function(require,module,exports){
|
|
53182
53324
|
"use strict";
|
|
53183
53325
|
/*!
|
|
53184
53326
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53214,7 +53356,7 @@ __decorate([
|
|
|
53214
53356
|
], ErrorNode.prototype, "accept", null);
|
|
53215
53357
|
exports.ErrorNode = ErrorNode;
|
|
53216
53358
|
|
|
53217
|
-
},{"../Decorators":
|
|
53359
|
+
},{"../Decorators":204,"./TerminalNode":327}],325:[function(require,module,exports){
|
|
53218
53360
|
"use strict";
|
|
53219
53361
|
/*!
|
|
53220
53362
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53319,7 +53461,7 @@ exports.ParseTreeWalker = ParseTreeWalker;
|
|
|
53319
53461
|
ParseTreeWalker.DEFAULT = new ParseTreeWalker();
|
|
53320
53462
|
})(ParseTreeWalker = exports.ParseTreeWalker || (exports.ParseTreeWalker = {}));
|
|
53321
53463
|
|
|
53322
|
-
},{"./ErrorNode":
|
|
53464
|
+
},{"./ErrorNode":324,"./RuleNode":326,"./TerminalNode":327}],326:[function(require,module,exports){
|
|
53323
53465
|
"use strict";
|
|
53324
53466
|
/*!
|
|
53325
53467
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53331,7 +53473,7 @@ class RuleNode {
|
|
|
53331
53473
|
}
|
|
53332
53474
|
exports.RuleNode = RuleNode;
|
|
53333
53475
|
|
|
53334
|
-
},{}],
|
|
53476
|
+
},{}],327:[function(require,module,exports){
|
|
53335
53477
|
"use strict";
|
|
53336
53478
|
/*!
|
|
53337
53479
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53423,7 +53565,7 @@ __decorate([
|
|
|
53423
53565
|
], TerminalNode.prototype, "toString", null);
|
|
53424
53566
|
exports.TerminalNode = TerminalNode;
|
|
53425
53567
|
|
|
53426
|
-
},{"../Decorators":
|
|
53568
|
+
},{"../Decorators":204,"../Token":229,"../misc/Interval":316}],328:[function(require,module,exports){
|
|
53427
53569
|
"use strict";
|
|
53428
53570
|
/*!
|
|
53429
53571
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53667,7 +53809,7 @@ __decorate([
|
|
|
53667
53809
|
], Trees, "getRootOfSubtreeEnclosingRegion", null);
|
|
53668
53810
|
exports.Trees = Trees;
|
|
53669
53811
|
|
|
53670
|
-
},{"../CommonToken":
|
|
53812
|
+
},{"../CommonToken":200,"../Decorators":204,"../Parser":217,"../ParserRuleContext":220,"../Token":229,"../atn/ATN":237,"../misc/Utils":323,"./ErrorNode":324,"./RuleNode":326,"./TerminalNode":327}],329:[function(require,module,exports){
|
|
53671
53813
|
"use strict";
|
|
53672
53814
|
/*!
|
|
53673
53815
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53691,7 +53833,7 @@ class Chunk {
|
|
|
53691
53833
|
}
|
|
53692
53834
|
exports.Chunk = Chunk;
|
|
53693
53835
|
|
|
53694
|
-
},{}],
|
|
53836
|
+
},{}],330:[function(require,module,exports){
|
|
53695
53837
|
"use strict";
|
|
53696
53838
|
/*!
|
|
53697
53839
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53871,7 +54013,7 @@ ParseTreeMatch = __decorate([
|
|
|
53871
54013
|
], ParseTreeMatch);
|
|
53872
54014
|
exports.ParseTreeMatch = ParseTreeMatch;
|
|
53873
54015
|
|
|
53874
|
-
},{"../../Decorators":
|
|
54016
|
+
},{"../../Decorators":204}],331:[function(require,module,exports){
|
|
53875
54017
|
"use strict";
|
|
53876
54018
|
/*!
|
|
53877
54019
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54029,7 +54171,7 @@ ParseTreePattern = __decorate([
|
|
|
54029
54171
|
], ParseTreePattern);
|
|
54030
54172
|
exports.ParseTreePattern = ParseTreePattern;
|
|
54031
54173
|
|
|
54032
|
-
},{"../../Decorators":
|
|
54174
|
+
},{"../../Decorators":204,"../xpath/XPath":337}],332:[function(require,module,exports){
|
|
54033
54175
|
"use strict";
|
|
54034
54176
|
/*!
|
|
54035
54177
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54507,7 +54649,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
|
|
|
54507
54649
|
ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
|
|
54508
54650
|
})(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
|
|
54509
54651
|
|
|
54510
|
-
},{"../../BailErrorStrategy":
|
|
54652
|
+
},{"../../BailErrorStrategy":194,"../../CharStreams":197,"../../CommonTokenStream":202,"../../Decorators":204,"../../ListTokenSource":215,"../../ParserInterpreter":219,"../../ParserRuleContext":220,"../../RecognitionException":223,"../../Token":229,"../../misc/MultiMap":318,"../../misc/ParseCancellationException":321,"../RuleNode":326,"../TerminalNode":327,"./ParseTreeMatch":330,"./ParseTreePattern":331,"./RuleTagToken":333,"./TagChunk":334,"./TextChunk":335,"./TokenTagToken":336}],333:[function(require,module,exports){
|
|
54511
54653
|
"use strict";
|
|
54512
54654
|
/*!
|
|
54513
54655
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54705,7 +54847,7 @@ RuleTagToken = __decorate([
|
|
|
54705
54847
|
], RuleTagToken);
|
|
54706
54848
|
exports.RuleTagToken = RuleTagToken;
|
|
54707
54849
|
|
|
54708
|
-
},{"../../Decorators":
|
|
54850
|
+
},{"../../Decorators":204,"../../Token":229}],334:[function(require,module,exports){
|
|
54709
54851
|
"use strict";
|
|
54710
54852
|
/*!
|
|
54711
54853
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54792,7 +54934,7 @@ __decorate([
|
|
|
54792
54934
|
], TagChunk.prototype, "toString", null);
|
|
54793
54935
|
exports.TagChunk = TagChunk;
|
|
54794
54936
|
|
|
54795
|
-
},{"../../Decorators":
|
|
54937
|
+
},{"../../Decorators":204,"./Chunk":329}],335:[function(require,module,exports){
|
|
54796
54938
|
"use strict";
|
|
54797
54939
|
/*!
|
|
54798
54940
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54862,7 +55004,7 @@ TextChunk = __decorate([
|
|
|
54862
55004
|
], TextChunk);
|
|
54863
55005
|
exports.TextChunk = TextChunk;
|
|
54864
55006
|
|
|
54865
|
-
},{"../../Decorators":
|
|
55007
|
+
},{"../../Decorators":204,"./Chunk":329}],336:[function(require,module,exports){
|
|
54866
55008
|
"use strict";
|
|
54867
55009
|
/*!
|
|
54868
55010
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54957,7 +55099,7 @@ TokenTagToken = __decorate([
|
|
|
54957
55099
|
], TokenTagToken);
|
|
54958
55100
|
exports.TokenTagToken = TokenTagToken;
|
|
54959
55101
|
|
|
54960
|
-
},{"../../CommonToken":
|
|
55102
|
+
},{"../../CommonToken":200,"../../Decorators":204}],337:[function(require,module,exports){
|
|
54961
55103
|
"use strict";
|
|
54962
55104
|
/*!
|
|
54963
55105
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55154,7 +55296,7 @@ exports.XPath = XPath;
|
|
|
55154
55296
|
XPath.WILDCARD = "*"; // word not operator/separator
|
|
55155
55297
|
XPath.NOT = "!"; // word for invert operator
|
|
55156
55298
|
|
|
55157
|
-
},{"../../CharStreams":
|
|
55299
|
+
},{"../../CharStreams":197,"../../CommonTokenStream":202,"../../LexerNoViableAltException":214,"../../ParserRuleContext":220,"../../Token":229,"./XPathLexer":339,"./XPathLexerErrorListener":340,"./XPathRuleAnywhereElement":341,"./XPathRuleElement":342,"./XPathTokenAnywhereElement":343,"./XPathTokenElement":344,"./XPathWildcardAnywhereElement":345,"./XPathWildcardElement":346}],338:[function(require,module,exports){
|
|
55158
55300
|
"use strict";
|
|
55159
55301
|
/*!
|
|
55160
55302
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55189,7 +55331,7 @@ __decorate([
|
|
|
55189
55331
|
], XPathElement.prototype, "toString", null);
|
|
55190
55332
|
exports.XPathElement = XPathElement;
|
|
55191
55333
|
|
|
55192
|
-
},{"../../Decorators":
|
|
55334
|
+
},{"../../Decorators":204}],339:[function(require,module,exports){
|
|
55193
55335
|
"use strict";
|
|
55194
55336
|
// Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
55195
55337
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -55664,7 +55806,7 @@ XPathLexer._serializedATN = Utils.join([
|
|
|
55664
55806
|
XPathLexer._serializedATNSegment1,
|
|
55665
55807
|
], "");
|
|
55666
55808
|
|
|
55667
|
-
},{"../../Lexer":
|
|
55809
|
+
},{"../../Lexer":212,"../../VocabularyImpl":235,"../../atn/ATNDeserializer":241,"../../atn/LexerATNSimulator":262,"../../misc/Utils":323}],340:[function(require,module,exports){
|
|
55668
55810
|
"use strict";
|
|
55669
55811
|
/*!
|
|
55670
55812
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55689,7 +55831,7 @@ __decorate([
|
|
|
55689
55831
|
], XPathLexerErrorListener.prototype, "syntaxError", null);
|
|
55690
55832
|
exports.XPathLexerErrorListener = XPathLexerErrorListener;
|
|
55691
55833
|
|
|
55692
|
-
},{"../../Decorators":
|
|
55834
|
+
},{"../../Decorators":204}],341:[function(require,module,exports){
|
|
55693
55835
|
"use strict";
|
|
55694
55836
|
/*!
|
|
55695
55837
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55723,7 +55865,7 @@ __decorate([
|
|
|
55723
55865
|
], XPathRuleAnywhereElement.prototype, "evaluate", null);
|
|
55724
55866
|
exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
|
|
55725
55867
|
|
|
55726
|
-
},{"../../Decorators":
|
|
55868
|
+
},{"../../Decorators":204,"../Trees":328,"./XPathElement":338}],342:[function(require,module,exports){
|
|
55727
55869
|
"use strict";
|
|
55728
55870
|
/*!
|
|
55729
55871
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55766,7 +55908,7 @@ __decorate([
|
|
|
55766
55908
|
], XPathRuleElement.prototype, "evaluate", null);
|
|
55767
55909
|
exports.XPathRuleElement = XPathRuleElement;
|
|
55768
55910
|
|
|
55769
|
-
},{"../../Decorators":
|
|
55911
|
+
},{"../../Decorators":204,"../../ParserRuleContext":220,"../Trees":328,"./XPathElement":338}],343:[function(require,module,exports){
|
|
55770
55912
|
"use strict";
|
|
55771
55913
|
/*!
|
|
55772
55914
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55798,7 +55940,7 @@ __decorate([
|
|
|
55798
55940
|
], XPathTokenAnywhereElement.prototype, "evaluate", null);
|
|
55799
55941
|
exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
|
|
55800
55942
|
|
|
55801
|
-
},{"../../Decorators":
|
|
55943
|
+
},{"../../Decorators":204,"../Trees":328,"./XPathElement":338}],344:[function(require,module,exports){
|
|
55802
55944
|
"use strict";
|
|
55803
55945
|
/*!
|
|
55804
55946
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55841,7 +55983,7 @@ __decorate([
|
|
|
55841
55983
|
], XPathTokenElement.prototype, "evaluate", null);
|
|
55842
55984
|
exports.XPathTokenElement = XPathTokenElement;
|
|
55843
55985
|
|
|
55844
|
-
},{"../../Decorators":
|
|
55986
|
+
},{"../../Decorators":204,"../TerminalNode":327,"../Trees":328,"./XPathElement":338}],345:[function(require,module,exports){
|
|
55845
55987
|
"use strict";
|
|
55846
55988
|
/*!
|
|
55847
55989
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55877,7 +56019,7 @@ __decorate([
|
|
|
55877
56019
|
], XPathWildcardAnywhereElement.prototype, "evaluate", null);
|
|
55878
56020
|
exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
|
|
55879
56021
|
|
|
55880
|
-
},{"../../Decorators":
|
|
56022
|
+
},{"../../Decorators":204,"../Trees":328,"./XPath":337,"./XPathElement":338}],346:[function(require,module,exports){
|
|
55881
56023
|
"use strict";
|
|
55882
56024
|
/*!
|
|
55883
56025
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55917,7 +56059,7 @@ __decorate([
|
|
|
55917
56059
|
], XPathWildcardElement.prototype, "evaluate", null);
|
|
55918
56060
|
exports.XPathWildcardElement = XPathWildcardElement;
|
|
55919
56061
|
|
|
55920
|
-
},{"../../Decorators":
|
|
56062
|
+
},{"../../Decorators":204,"../Trees":328,"./XPath":337,"./XPathElement":338}],347:[function(require,module,exports){
|
|
55921
56063
|
(function (global){(function (){
|
|
55922
56064
|
'use strict';
|
|
55923
56065
|
|
|
@@ -56427,7 +56569,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
56427
56569
|
};
|
|
56428
56570
|
|
|
56429
56571
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
56430
|
-
},{"object.assign/polyfill":
|
|
56572
|
+
},{"object.assign/polyfill":404,"util/":350}],348:[function(require,module,exports){
|
|
56431
56573
|
if (typeof Object.create === 'function') {
|
|
56432
56574
|
// implementation from standard node.js 'util' module
|
|
56433
56575
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -56452,14 +56594,14 @@ if (typeof Object.create === 'function') {
|
|
|
56452
56594
|
}
|
|
56453
56595
|
}
|
|
56454
56596
|
|
|
56455
|
-
},{}],
|
|
56597
|
+
},{}],349:[function(require,module,exports){
|
|
56456
56598
|
module.exports = function isBuffer(arg) {
|
|
56457
56599
|
return arg && typeof arg === 'object'
|
|
56458
56600
|
&& typeof arg.copy === 'function'
|
|
56459
56601
|
&& typeof arg.fill === 'function'
|
|
56460
56602
|
&& typeof arg.readUInt8 === 'function';
|
|
56461
56603
|
}
|
|
56462
|
-
},{}],
|
|
56604
|
+
},{}],350:[function(require,module,exports){
|
|
56463
56605
|
(function (process,global){(function (){
|
|
56464
56606
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
56465
56607
|
//
|
|
@@ -57049,7 +57191,7 @@ function hasOwnProperty(obj, prop) {
|
|
|
57049
57191
|
}
|
|
57050
57192
|
|
|
57051
57193
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
57052
|
-
},{"./support/isBuffer":
|
|
57194
|
+
},{"./support/isBuffer":349,"_process":406,"inherits":348}],351:[function(require,module,exports){
|
|
57053
57195
|
(function (global){(function (){
|
|
57054
57196
|
'use strict';
|
|
57055
57197
|
|
|
@@ -57070,7 +57212,7 @@ module.exports = function availableTypedArrays() {
|
|
|
57070
57212
|
};
|
|
57071
57213
|
|
|
57072
57214
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
57073
|
-
},{"possible-typed-array-names":
|
|
57215
|
+
},{"possible-typed-array-names":405}],352:[function(require,module,exports){
|
|
57074
57216
|
(function (process,global){(function (){
|
|
57075
57217
|
module.exports = process.hrtime || hrtime
|
|
57076
57218
|
|
|
@@ -57101,7 +57243,7 @@ function hrtime(previousTimestamp){
|
|
|
57101
57243
|
return [seconds,nanoseconds]
|
|
57102
57244
|
}
|
|
57103
57245
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
57104
|
-
},{"_process":
|
|
57246
|
+
},{"_process":406}],353:[function(require,module,exports){
|
|
57105
57247
|
'use strict';
|
|
57106
57248
|
|
|
57107
57249
|
var bind = require('function-bind');
|
|
@@ -57113,7 +57255,7 @@ var $reflectApply = require('./reflectApply');
|
|
|
57113
57255
|
/** @type {import('./actualApply')} */
|
|
57114
57256
|
module.exports = $reflectApply || bind.call($call, $apply);
|
|
57115
57257
|
|
|
57116
|
-
},{"./functionApply":
|
|
57258
|
+
},{"./functionApply":355,"./functionCall":356,"./reflectApply":358,"function-bind":374}],354:[function(require,module,exports){
|
|
57117
57259
|
'use strict';
|
|
57118
57260
|
|
|
57119
57261
|
var bind = require('function-bind');
|
|
@@ -57125,19 +57267,19 @@ module.exports = function applyBind() {
|
|
|
57125
57267
|
return actualApply(bind, $apply, arguments);
|
|
57126
57268
|
};
|
|
57127
57269
|
|
|
57128
|
-
},{"./actualApply":
|
|
57270
|
+
},{"./actualApply":353,"./functionApply":355,"function-bind":374}],355:[function(require,module,exports){
|
|
57129
57271
|
'use strict';
|
|
57130
57272
|
|
|
57131
57273
|
/** @type {import('./functionApply')} */
|
|
57132
57274
|
module.exports = Function.prototype.apply;
|
|
57133
57275
|
|
|
57134
|
-
},{}],
|
|
57276
|
+
},{}],356:[function(require,module,exports){
|
|
57135
57277
|
'use strict';
|
|
57136
57278
|
|
|
57137
57279
|
/** @type {import('./functionCall')} */
|
|
57138
57280
|
module.exports = Function.prototype.call;
|
|
57139
57281
|
|
|
57140
|
-
},{}],
|
|
57282
|
+
},{}],357:[function(require,module,exports){
|
|
57141
57283
|
'use strict';
|
|
57142
57284
|
|
|
57143
57285
|
var bind = require('function-bind');
|
|
@@ -57154,13 +57296,13 @@ module.exports = function callBindBasic(args) {
|
|
|
57154
57296
|
return $actualApply(bind, $call, args);
|
|
57155
57297
|
};
|
|
57156
57298
|
|
|
57157
|
-
},{"./actualApply":
|
|
57299
|
+
},{"./actualApply":353,"./functionCall":356,"es-errors/type":369,"function-bind":374}],358:[function(require,module,exports){
|
|
57158
57300
|
'use strict';
|
|
57159
57301
|
|
|
57160
57302
|
/** @type {import('./reflectApply')} */
|
|
57161
57303
|
module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
|
|
57162
57304
|
|
|
57163
|
-
},{}],
|
|
57305
|
+
},{}],359:[function(require,module,exports){
|
|
57164
57306
|
'use strict';
|
|
57165
57307
|
|
|
57166
57308
|
var setFunctionLength = require('set-function-length');
|
|
@@ -57186,7 +57328,7 @@ if ($defineProperty) {
|
|
|
57186
57328
|
module.exports.apply = applyBind;
|
|
57187
57329
|
}
|
|
57188
57330
|
|
|
57189
|
-
},{"call-bind-apply-helpers":
|
|
57331
|
+
},{"call-bind-apply-helpers":357,"call-bind-apply-helpers/applyBind":354,"es-define-property":363,"set-function-length":408}],360:[function(require,module,exports){
|
|
57190
57332
|
'use strict';
|
|
57191
57333
|
|
|
57192
57334
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -57207,7 +57349,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
57207
57349
|
return intrinsic;
|
|
57208
57350
|
};
|
|
57209
57351
|
|
|
57210
|
-
},{"call-bind-apply-helpers":
|
|
57352
|
+
},{"call-bind-apply-helpers":357,"get-intrinsic":375}],361:[function(require,module,exports){
|
|
57211
57353
|
'use strict';
|
|
57212
57354
|
|
|
57213
57355
|
var $defineProperty = require('es-define-property');
|
|
@@ -57265,7 +57407,7 @@ module.exports = function defineDataProperty(
|
|
|
57265
57407
|
}
|
|
57266
57408
|
};
|
|
57267
57409
|
|
|
57268
|
-
},{"es-define-property":
|
|
57410
|
+
},{"es-define-property":363,"es-errors/syntax":368,"es-errors/type":369,"gopd":380}],362:[function(require,module,exports){
|
|
57269
57411
|
'use strict';
|
|
57270
57412
|
|
|
57271
57413
|
var callBind = require('call-bind-apply-helpers');
|
|
@@ -57297,7 +57439,7 @@ module.exports = desc && typeof desc.get === 'function'
|
|
|
57297
57439
|
}
|
|
57298
57440
|
: false;
|
|
57299
57441
|
|
|
57300
|
-
},{"call-bind-apply-helpers":
|
|
57442
|
+
},{"call-bind-apply-helpers":357,"gopd":380}],363:[function(require,module,exports){
|
|
57301
57443
|
'use strict';
|
|
57302
57444
|
|
|
57303
57445
|
/** @type {import('.')} */
|
|
@@ -57313,55 +57455,55 @@ if ($defineProperty) {
|
|
|
57313
57455
|
|
|
57314
57456
|
module.exports = $defineProperty;
|
|
57315
57457
|
|
|
57316
|
-
},{}],
|
|
57458
|
+
},{}],364:[function(require,module,exports){
|
|
57317
57459
|
'use strict';
|
|
57318
57460
|
|
|
57319
57461
|
/** @type {import('./eval')} */
|
|
57320
57462
|
module.exports = EvalError;
|
|
57321
57463
|
|
|
57322
|
-
},{}],
|
|
57464
|
+
},{}],365:[function(require,module,exports){
|
|
57323
57465
|
'use strict';
|
|
57324
57466
|
|
|
57325
57467
|
/** @type {import('.')} */
|
|
57326
57468
|
module.exports = Error;
|
|
57327
57469
|
|
|
57328
|
-
},{}],
|
|
57470
|
+
},{}],366:[function(require,module,exports){
|
|
57329
57471
|
'use strict';
|
|
57330
57472
|
|
|
57331
57473
|
/** @type {import('./range')} */
|
|
57332
57474
|
module.exports = RangeError;
|
|
57333
57475
|
|
|
57334
|
-
},{}],
|
|
57476
|
+
},{}],367:[function(require,module,exports){
|
|
57335
57477
|
'use strict';
|
|
57336
57478
|
|
|
57337
57479
|
/** @type {import('./ref')} */
|
|
57338
57480
|
module.exports = ReferenceError;
|
|
57339
57481
|
|
|
57340
|
-
},{}],
|
|
57482
|
+
},{}],368:[function(require,module,exports){
|
|
57341
57483
|
'use strict';
|
|
57342
57484
|
|
|
57343
57485
|
/** @type {import('./syntax')} */
|
|
57344
57486
|
module.exports = SyntaxError;
|
|
57345
57487
|
|
|
57346
|
-
},{}],
|
|
57488
|
+
},{}],369:[function(require,module,exports){
|
|
57347
57489
|
'use strict';
|
|
57348
57490
|
|
|
57349
57491
|
/** @type {import('./type')} */
|
|
57350
57492
|
module.exports = TypeError;
|
|
57351
57493
|
|
|
57352
|
-
},{}],
|
|
57494
|
+
},{}],370:[function(require,module,exports){
|
|
57353
57495
|
'use strict';
|
|
57354
57496
|
|
|
57355
57497
|
/** @type {import('./uri')} */
|
|
57356
57498
|
module.exports = URIError;
|
|
57357
57499
|
|
|
57358
|
-
},{}],
|
|
57500
|
+
},{}],371:[function(require,module,exports){
|
|
57359
57501
|
'use strict';
|
|
57360
57502
|
|
|
57361
57503
|
/** @type {import('.')} */
|
|
57362
57504
|
module.exports = Object;
|
|
57363
57505
|
|
|
57364
|
-
},{}],
|
|
57506
|
+
},{}],372:[function(require,module,exports){
|
|
57365
57507
|
'use strict';
|
|
57366
57508
|
|
|
57367
57509
|
var isCallable = require('is-callable');
|
|
@@ -57432,7 +57574,7 @@ module.exports = function forEach(list, iterator, thisArg) {
|
|
|
57432
57574
|
}
|
|
57433
57575
|
};
|
|
57434
57576
|
|
|
57435
|
-
},{"is-callable":
|
|
57577
|
+
},{"is-callable":388}],373:[function(require,module,exports){
|
|
57436
57578
|
'use strict';
|
|
57437
57579
|
|
|
57438
57580
|
/* eslint no-invalid-this: 1 */
|
|
@@ -57518,14 +57660,14 @@ module.exports = function bind(that) {
|
|
|
57518
57660
|
return bound;
|
|
57519
57661
|
};
|
|
57520
57662
|
|
|
57521
|
-
},{}],
|
|
57663
|
+
},{}],374:[function(require,module,exports){
|
|
57522
57664
|
'use strict';
|
|
57523
57665
|
|
|
57524
57666
|
var implementation = require('./implementation');
|
|
57525
57667
|
|
|
57526
57668
|
module.exports = Function.prototype.bind || implementation;
|
|
57527
57669
|
|
|
57528
|
-
},{"./implementation":
|
|
57670
|
+
},{"./implementation":373}],375:[function(require,module,exports){
|
|
57529
57671
|
'use strict';
|
|
57530
57672
|
|
|
57531
57673
|
var undefined;
|
|
@@ -57905,7 +58047,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
57905
58047
|
return value;
|
|
57906
58048
|
};
|
|
57907
58049
|
|
|
57908
|
-
},{"call-bind-apply-helpers/functionApply":
|
|
58050
|
+
},{"call-bind-apply-helpers/functionApply":355,"call-bind-apply-helpers/functionCall":356,"es-define-property":363,"es-errors":365,"es-errors/eval":364,"es-errors/range":366,"es-errors/ref":367,"es-errors/syntax":368,"es-errors/type":369,"es-errors/uri":370,"es-object-atoms":371,"function-bind":374,"get-proto":378,"get-proto/Object.getPrototypeOf":376,"get-proto/Reflect.getPrototypeOf":377,"gopd":380,"has-symbols":382,"hasown":385,"math-intrinsics/abs":392,"math-intrinsics/floor":393,"math-intrinsics/max":395,"math-intrinsics/min":396,"math-intrinsics/pow":397,"math-intrinsics/round":398,"math-intrinsics/sign":399}],376:[function(require,module,exports){
|
|
57909
58051
|
'use strict';
|
|
57910
58052
|
|
|
57911
58053
|
var $Object = require('es-object-atoms');
|
|
@@ -57913,13 +58055,13 @@ var $Object = require('es-object-atoms');
|
|
|
57913
58055
|
/** @type {import('./Object.getPrototypeOf')} */
|
|
57914
58056
|
module.exports = $Object.getPrototypeOf || null;
|
|
57915
58057
|
|
|
57916
|
-
},{"es-object-atoms":
|
|
58058
|
+
},{"es-object-atoms":371}],377:[function(require,module,exports){
|
|
57917
58059
|
'use strict';
|
|
57918
58060
|
|
|
57919
58061
|
/** @type {import('./Reflect.getPrototypeOf')} */
|
|
57920
58062
|
module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
|
|
57921
58063
|
|
|
57922
|
-
},{}],
|
|
58064
|
+
},{}],378:[function(require,module,exports){
|
|
57923
58065
|
'use strict';
|
|
57924
58066
|
|
|
57925
58067
|
var reflectGetProto = require('./Reflect.getPrototypeOf');
|
|
@@ -57948,13 +58090,13 @@ module.exports = reflectGetProto
|
|
|
57948
58090
|
}
|
|
57949
58091
|
: null;
|
|
57950
58092
|
|
|
57951
|
-
},{"./Object.getPrototypeOf":
|
|
58093
|
+
},{"./Object.getPrototypeOf":376,"./Reflect.getPrototypeOf":377,"dunder-proto/get":362}],379:[function(require,module,exports){
|
|
57952
58094
|
'use strict';
|
|
57953
58095
|
|
|
57954
58096
|
/** @type {import('./gOPD')} */
|
|
57955
58097
|
module.exports = Object.getOwnPropertyDescriptor;
|
|
57956
58098
|
|
|
57957
|
-
},{}],
|
|
58099
|
+
},{}],380:[function(require,module,exports){
|
|
57958
58100
|
'use strict';
|
|
57959
58101
|
|
|
57960
58102
|
/** @type {import('.')} */
|
|
@@ -57971,7 +58113,7 @@ if ($gOPD) {
|
|
|
57971
58113
|
|
|
57972
58114
|
module.exports = $gOPD;
|
|
57973
58115
|
|
|
57974
|
-
},{"./gOPD":
|
|
58116
|
+
},{"./gOPD":379}],381:[function(require,module,exports){
|
|
57975
58117
|
'use strict';
|
|
57976
58118
|
|
|
57977
58119
|
var $defineProperty = require('es-define-property');
|
|
@@ -57995,7 +58137,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
|
|
|
57995
58137
|
|
|
57996
58138
|
module.exports = hasPropertyDescriptors;
|
|
57997
58139
|
|
|
57998
|
-
},{"es-define-property":
|
|
58140
|
+
},{"es-define-property":363}],382:[function(require,module,exports){
|
|
57999
58141
|
'use strict';
|
|
58000
58142
|
|
|
58001
58143
|
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
|
@@ -58011,7 +58153,7 @@ module.exports = function hasNativeSymbols() {
|
|
|
58011
58153
|
return hasSymbolSham();
|
|
58012
58154
|
};
|
|
58013
58155
|
|
|
58014
|
-
},{"./shams":
|
|
58156
|
+
},{"./shams":383}],383:[function(require,module,exports){
|
|
58015
58157
|
'use strict';
|
|
58016
58158
|
|
|
58017
58159
|
/** @type {import('./shams')} */
|
|
@@ -58058,7 +58200,7 @@ module.exports = function hasSymbols() {
|
|
|
58058
58200
|
return true;
|
|
58059
58201
|
};
|
|
58060
58202
|
|
|
58061
|
-
},{}],
|
|
58203
|
+
},{}],384:[function(require,module,exports){
|
|
58062
58204
|
'use strict';
|
|
58063
58205
|
|
|
58064
58206
|
var hasSymbols = require('has-symbols/shams');
|
|
@@ -58068,7 +58210,7 @@ module.exports = function hasToStringTagShams() {
|
|
|
58068
58210
|
return hasSymbols() && !!Symbol.toStringTag;
|
|
58069
58211
|
};
|
|
58070
58212
|
|
|
58071
|
-
},{"has-symbols/shams":
|
|
58213
|
+
},{"has-symbols/shams":383}],385:[function(require,module,exports){
|
|
58072
58214
|
'use strict';
|
|
58073
58215
|
|
|
58074
58216
|
var call = Function.prototype.call;
|
|
@@ -58078,7 +58220,7 @@ var bind = require('function-bind');
|
|
|
58078
58220
|
/** @type {import('.')} */
|
|
58079
58221
|
module.exports = bind.call(call, $hasOwn);
|
|
58080
58222
|
|
|
58081
|
-
},{"function-bind":
|
|
58223
|
+
},{"function-bind":374}],386:[function(require,module,exports){
|
|
58082
58224
|
if (typeof Object.create === 'function') {
|
|
58083
58225
|
// implementation from standard node.js 'util' module
|
|
58084
58226
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -58107,7 +58249,7 @@ if (typeof Object.create === 'function') {
|
|
|
58107
58249
|
}
|
|
58108
58250
|
}
|
|
58109
58251
|
|
|
58110
|
-
},{}],
|
|
58252
|
+
},{}],387:[function(require,module,exports){
|
|
58111
58253
|
'use strict';
|
|
58112
58254
|
|
|
58113
58255
|
var hasToStringTag = require('has-tostringtag/shams')();
|
|
@@ -58153,7 +58295,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
|
58153
58295
|
/** @type {import('.')} */
|
|
58154
58296
|
module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
58155
58297
|
|
|
58156
|
-
},{"call-bound":
|
|
58298
|
+
},{"call-bound":360,"has-tostringtag/shams":384}],388:[function(require,module,exports){
|
|
58157
58299
|
'use strict';
|
|
58158
58300
|
|
|
58159
58301
|
var fnToStr = Function.prototype.toString;
|
|
@@ -58256,7 +58398,7 @@ module.exports = reflectApply
|
|
|
58256
58398
|
return tryFunctionObject(value);
|
|
58257
58399
|
};
|
|
58258
58400
|
|
|
58259
|
-
},{}],
|
|
58401
|
+
},{}],389:[function(require,module,exports){
|
|
58260
58402
|
'use strict';
|
|
58261
58403
|
|
|
58262
58404
|
var callBound = require('call-bound');
|
|
@@ -58305,7 +58447,7 @@ module.exports = function isGeneratorFunction(fn) {
|
|
|
58305
58447
|
return getProto(fn) === GeneratorFunction;
|
|
58306
58448
|
};
|
|
58307
58449
|
|
|
58308
|
-
},{"call-bound":
|
|
58450
|
+
},{"call-bound":360,"get-proto":378,"has-tostringtag/shams":384,"safe-regex-test":407}],390:[function(require,module,exports){
|
|
58309
58451
|
'use strict';
|
|
58310
58452
|
|
|
58311
58453
|
var callBound = require('call-bound');
|
|
@@ -58376,7 +58518,7 @@ if (hasToStringTag) {
|
|
|
58376
58518
|
|
|
58377
58519
|
module.exports = fn;
|
|
58378
58520
|
|
|
58379
|
-
},{"call-bound":
|
|
58521
|
+
},{"call-bound":360,"gopd":380,"has-tostringtag/shams":384,"hasown":385}],391:[function(require,module,exports){
|
|
58380
58522
|
'use strict';
|
|
58381
58523
|
|
|
58382
58524
|
var whichTypedArray = require('which-typed-array');
|
|
@@ -58386,19 +58528,19 @@ module.exports = function isTypedArray(value) {
|
|
|
58386
58528
|
return !!whichTypedArray(value);
|
|
58387
58529
|
};
|
|
58388
58530
|
|
|
58389
|
-
},{"which-typed-array":
|
|
58531
|
+
},{"which-typed-array":412}],392:[function(require,module,exports){
|
|
58390
58532
|
'use strict';
|
|
58391
58533
|
|
|
58392
58534
|
/** @type {import('./abs')} */
|
|
58393
58535
|
module.exports = Math.abs;
|
|
58394
58536
|
|
|
58395
|
-
},{}],
|
|
58537
|
+
},{}],393:[function(require,module,exports){
|
|
58396
58538
|
'use strict';
|
|
58397
58539
|
|
|
58398
58540
|
/** @type {import('./floor')} */
|
|
58399
58541
|
module.exports = Math.floor;
|
|
58400
58542
|
|
|
58401
|
-
},{}],
|
|
58543
|
+
},{}],394:[function(require,module,exports){
|
|
58402
58544
|
'use strict';
|
|
58403
58545
|
|
|
58404
58546
|
/** @type {import('./isNaN')} */
|
|
@@ -58406,31 +58548,31 @@ module.exports = Number.isNaN || function isNaN(a) {
|
|
|
58406
58548
|
return a !== a;
|
|
58407
58549
|
};
|
|
58408
58550
|
|
|
58409
|
-
},{}],
|
|
58551
|
+
},{}],395:[function(require,module,exports){
|
|
58410
58552
|
'use strict';
|
|
58411
58553
|
|
|
58412
58554
|
/** @type {import('./max')} */
|
|
58413
58555
|
module.exports = Math.max;
|
|
58414
58556
|
|
|
58415
|
-
},{}],
|
|
58557
|
+
},{}],396:[function(require,module,exports){
|
|
58416
58558
|
'use strict';
|
|
58417
58559
|
|
|
58418
58560
|
/** @type {import('./min')} */
|
|
58419
58561
|
module.exports = Math.min;
|
|
58420
58562
|
|
|
58421
|
-
},{}],
|
|
58563
|
+
},{}],397:[function(require,module,exports){
|
|
58422
58564
|
'use strict';
|
|
58423
58565
|
|
|
58424
58566
|
/** @type {import('./pow')} */
|
|
58425
58567
|
module.exports = Math.pow;
|
|
58426
58568
|
|
|
58427
|
-
},{}],
|
|
58569
|
+
},{}],398:[function(require,module,exports){
|
|
58428
58570
|
'use strict';
|
|
58429
58571
|
|
|
58430
58572
|
/** @type {import('./round')} */
|
|
58431
58573
|
module.exports = Math.round;
|
|
58432
58574
|
|
|
58433
|
-
},{}],
|
|
58575
|
+
},{}],399:[function(require,module,exports){
|
|
58434
58576
|
'use strict';
|
|
58435
58577
|
|
|
58436
58578
|
var $isNaN = require('./isNaN');
|
|
@@ -58443,7 +58585,7 @@ module.exports = function sign(number) {
|
|
|
58443
58585
|
return number < 0 ? -1 : +1;
|
|
58444
58586
|
};
|
|
58445
58587
|
|
|
58446
|
-
},{"./isNaN":
|
|
58588
|
+
},{"./isNaN":394}],400:[function(require,module,exports){
|
|
58447
58589
|
'use strict';
|
|
58448
58590
|
|
|
58449
58591
|
var keysShim;
|
|
@@ -58567,7 +58709,7 @@ if (!Object.keys) {
|
|
|
58567
58709
|
}
|
|
58568
58710
|
module.exports = keysShim;
|
|
58569
58711
|
|
|
58570
|
-
},{"./isArguments":
|
|
58712
|
+
},{"./isArguments":402}],401:[function(require,module,exports){
|
|
58571
58713
|
'use strict';
|
|
58572
58714
|
|
|
58573
58715
|
var slice = Array.prototype.slice;
|
|
@@ -58601,7 +58743,7 @@ keysShim.shim = function shimObjectKeys() {
|
|
|
58601
58743
|
|
|
58602
58744
|
module.exports = keysShim;
|
|
58603
58745
|
|
|
58604
|
-
},{"./implementation":
|
|
58746
|
+
},{"./implementation":400,"./isArguments":402}],402:[function(require,module,exports){
|
|
58605
58747
|
'use strict';
|
|
58606
58748
|
|
|
58607
58749
|
var toStr = Object.prototype.toString;
|
|
@@ -58620,7 +58762,7 @@ module.exports = function isArguments(value) {
|
|
|
58620
58762
|
return isArgs;
|
|
58621
58763
|
};
|
|
58622
58764
|
|
|
58623
|
-
},{}],
|
|
58765
|
+
},{}],403:[function(require,module,exports){
|
|
58624
58766
|
'use strict';
|
|
58625
58767
|
|
|
58626
58768
|
// modified from https://github.com/es-shims/es6-shim
|
|
@@ -58668,7 +58810,7 @@ module.exports = function assign(target, source1) {
|
|
|
58668
58810
|
return to; // step 4
|
|
58669
58811
|
};
|
|
58670
58812
|
|
|
58671
|
-
},{"call-bound":
|
|
58813
|
+
},{"call-bound":360,"es-object-atoms":371,"has-symbols/shams":383,"object-keys":401}],404:[function(require,module,exports){
|
|
58672
58814
|
'use strict';
|
|
58673
58815
|
|
|
58674
58816
|
var implementation = require('./implementation');
|
|
@@ -58725,7 +58867,7 @@ module.exports = function getPolyfill() {
|
|
|
58725
58867
|
return Object.assign;
|
|
58726
58868
|
};
|
|
58727
58869
|
|
|
58728
|
-
},{"./implementation":
|
|
58870
|
+
},{"./implementation":403}],405:[function(require,module,exports){
|
|
58729
58871
|
'use strict';
|
|
58730
58872
|
|
|
58731
58873
|
/** @type {import('.')} */
|
|
@@ -58744,7 +58886,7 @@ module.exports = [
|
|
|
58744
58886
|
'BigUint64Array'
|
|
58745
58887
|
];
|
|
58746
58888
|
|
|
58747
|
-
},{}],
|
|
58889
|
+
},{}],406:[function(require,module,exports){
|
|
58748
58890
|
// shim for using process in browser
|
|
58749
58891
|
var process = module.exports = {};
|
|
58750
58892
|
|
|
@@ -58930,7 +59072,7 @@ process.chdir = function (dir) {
|
|
|
58930
59072
|
};
|
|
58931
59073
|
process.umask = function() { return 0; };
|
|
58932
59074
|
|
|
58933
|
-
},{}],
|
|
59075
|
+
},{}],407:[function(require,module,exports){
|
|
58934
59076
|
'use strict';
|
|
58935
59077
|
|
|
58936
59078
|
var callBound = require('call-bound');
|
|
@@ -58949,7 +59091,7 @@ module.exports = function regexTester(regex) {
|
|
|
58949
59091
|
};
|
|
58950
59092
|
};
|
|
58951
59093
|
|
|
58952
|
-
},{"call-bound":
|
|
59094
|
+
},{"call-bound":360,"es-errors/type":369,"is-regex":390}],408:[function(require,module,exports){
|
|
58953
59095
|
'use strict';
|
|
58954
59096
|
|
|
58955
59097
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -58993,9 +59135,9 @@ module.exports = function setFunctionLength(fn, length) {
|
|
|
58993
59135
|
return fn;
|
|
58994
59136
|
};
|
|
58995
59137
|
|
|
58996
|
-
},{"define-data-property":
|
|
58997
|
-
arguments[4][
|
|
58998
|
-
},{"dup":
|
|
59138
|
+
},{"define-data-property":361,"es-errors/type":369,"get-intrinsic":375,"gopd":380,"has-property-descriptors":381}],409:[function(require,module,exports){
|
|
59139
|
+
arguments[4][349][0].apply(exports,arguments)
|
|
59140
|
+
},{"dup":349}],410:[function(require,module,exports){
|
|
58999
59141
|
// Currently in sync with Node.js lib/internal/util/types.js
|
|
59000
59142
|
// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
|
|
59001
59143
|
|
|
@@ -59331,7 +59473,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
|
|
|
59331
59473
|
});
|
|
59332
59474
|
});
|
|
59333
59475
|
|
|
59334
|
-
},{"is-arguments":
|
|
59476
|
+
},{"is-arguments":387,"is-generator-function":389,"is-typed-array":391,"which-typed-array":412}],411:[function(require,module,exports){
|
|
59335
59477
|
(function (process){(function (){
|
|
59336
59478
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
59337
59479
|
//
|
|
@@ -60050,7 +60192,7 @@ function callbackify(original) {
|
|
|
60050
60192
|
exports.callbackify = callbackify;
|
|
60051
60193
|
|
|
60052
60194
|
}).call(this)}).call(this,require('_process'))
|
|
60053
|
-
},{"./support/isBuffer":
|
|
60195
|
+
},{"./support/isBuffer":409,"./support/types":410,"_process":406,"inherits":386}],412:[function(require,module,exports){
|
|
60054
60196
|
(function (global){(function (){
|
|
60055
60197
|
'use strict';
|
|
60056
60198
|
|
|
@@ -60171,5 +60313,5 @@ module.exports = function whichTypedArray(value) {
|
|
|
60171
60313
|
};
|
|
60172
60314
|
|
|
60173
60315
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
60174
|
-
},{"available-typed-arrays":
|
|
60316
|
+
},{"available-typed-arrays":351,"call-bind":359,"call-bound":360,"for-each":372,"get-proto":378,"gopd":380,"has-tostringtag/shams":384}]},{},[108])(108)
|
|
60175
60317
|
});
|