@designliquido/delegua 0.54.8 → 0.55.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/avaliador-sintatico/avaliador-sintatico-base.d.ts +1 -2
- package/avaliador-sintatico/avaliador-sintatico-base.d.ts.map +1 -1
- package/avaliador-sintatico/avaliador-sintatico-base.js +0 -3
- package/avaliador-sintatico/avaliador-sintatico-base.js.map +1 -1
- package/avaliador-sintatico/avaliador-sintatico.d.ts +2 -1
- package/avaliador-sintatico/avaliador-sintatico.d.ts.map +1 -1
- package/avaliador-sintatico/avaliador-sintatico.js +49 -5
- package/avaliador-sintatico/avaliador-sintatico.js.map +1 -1
- package/bin/package.json +1 -1
- package/construtos/importar-como-construto.d.ts +18 -0
- package/construtos/importar-como-construto.d.ts.map +1 -0
- package/construtos/importar-como-construto.js +22 -0
- package/construtos/importar-como-construto.js.map +1 -0
- package/construtos/index.d.ts +1 -0
- package/construtos/index.d.ts.map +1 -1
- package/construtos/index.js +1 -0
- package/construtos/index.js.map +1 -1
- package/declaracoes/importar.d.ts +8 -6
- package/declaracoes/importar.d.ts.map +1 -1
- package/declaracoes/importar.js +3 -1
- package/declaracoes/importar.js.map +1 -1
- package/interfaces/visitante-comum-interface.d.ts +1 -2
- package/interfaces/visitante-comum-interface.d.ts.map +1 -1
- package/interfaces/visitante-delegua-interface.d.ts +4 -3
- package/interfaces/visitante-delegua-interface.d.ts.map +1 -1
- package/interpretador/interpretador.d.ts +2 -1
- package/interpretador/interpretador.d.ts.map +1 -1
- package/interpretador/interpretador.js +3 -0
- package/interpretador/interpretador.js.map +1 -1
- package/lexador/palavras-reservadas.d.ts +1 -0
- package/lexador/palavras-reservadas.d.ts.map +1 -1
- package/lexador/palavras-reservadas.js +1 -0
- package/lexador/palavras-reservadas.js.map +1 -1
- package/package.json +1 -1
- package/tipos-de-simbolos/delegua.d.ts +1 -0
- package/tipos-de-simbolos/delegua.d.ts.map +1 -1
- package/tipos-de-simbolos/delegua.js +1 -0
- package/tipos-de-simbolos/delegua.js.map +1 -1
- package/tradutores/tradutor-javascript.d.ts +13 -11
- package/tradutores/tradutor-javascript.d.ts.map +1 -1
- package/tradutores/tradutor-javascript.js +25 -26
- package/tradutores/tradutor-javascript.js.map +1 -1
- package/umd/delegua.js +489 -418
package/umd/delegua.js
CHANGED
|
@@ -217,9 +217,6 @@ class AvaliadorSintaticoBase {
|
|
|
217
217
|
declaracaoExpressao(simboloAnterior) {
|
|
218
218
|
throw new Error('Método não implementado.');
|
|
219
219
|
}
|
|
220
|
-
declaracaoImportar() {
|
|
221
|
-
throw new Error('Método não implementado.');
|
|
222
|
-
}
|
|
223
220
|
declaracaoRetorna() {
|
|
224
221
|
throw new Error('Método não implementado.');
|
|
225
222
|
}
|
|
@@ -238,7 +235,7 @@ class AvaliadorSintaticoBase {
|
|
|
238
235
|
}
|
|
239
236
|
exports.AvaliadorSintaticoBase = AvaliadorSintaticoBase;
|
|
240
237
|
|
|
241
|
-
},{"../construtos":
|
|
238
|
+
},{"../construtos":51,"../declaracoes":95,"../tipos-de-simbolos/comum":183,"./erro-avaliador-sintatico":11}],2:[function(require,module,exports){
|
|
242
239
|
"use strict";
|
|
243
240
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
244
241
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -379,6 +376,12 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
379
376
|
}
|
|
380
377
|
return new construtos_1.Dicionario(this.hashArquivo, Number(simboloChaveEsquerda.linha), chaves, valores);
|
|
381
378
|
}
|
|
379
|
+
construtoImportar() {
|
|
380
|
+
this.consumir(delegua_2.default.PARENTESE_ESQUERDO, "Esperado '(' após declaração.");
|
|
381
|
+
const caminho = this.expressao();
|
|
382
|
+
this.consumir(delegua_2.default.PARENTESE_DIREITO, "Esperado ')' após declaração.");
|
|
383
|
+
return new construtos_1.ImportarComoConstruto(caminho);
|
|
384
|
+
}
|
|
382
385
|
construtoTupla() {
|
|
383
386
|
const expressao = this.expressao();
|
|
384
387
|
const argumentos = [expressao];
|
|
@@ -546,7 +549,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
546
549
|
return new construtos_1.Variavel(this.hashArquivo, simboloIdentificador, tipoOperando || 'qualquer');
|
|
547
550
|
case delegua_2.default.IMPORTAR:
|
|
548
551
|
this.avancarEDevolverAnterior();
|
|
549
|
-
return this.
|
|
552
|
+
return this.construtoImportar();
|
|
550
553
|
case delegua_2.default.ISTO:
|
|
551
554
|
this.avancarEDevolverAnterior();
|
|
552
555
|
return new construtos_1.Isto(this.hashArquivo, Number(simboloAtual.linha), simboloAtual);
|
|
@@ -1176,10 +1179,45 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1176
1179
|
* @returns {Importar} Uma declaração `Importar`.
|
|
1177
1180
|
*/
|
|
1178
1181
|
declaracaoImportar() {
|
|
1179
|
-
|
|
1180
|
-
const
|
|
1181
|
-
this.
|
|
1182
|
-
|
|
1182
|
+
let identificadorDeTudo = null;
|
|
1183
|
+
const elementosImportacao = [];
|
|
1184
|
+
switch (this.simbolos[this.atual].tipo) {
|
|
1185
|
+
case delegua_2.default.TUDO:
|
|
1186
|
+
this.avancarEDevolverAnterior();
|
|
1187
|
+
this.consumir(delegua_2.default.COMO, "Esperado 'como' após 'tudo' em declaração de importação.");
|
|
1188
|
+
identificadorDeTudo = this.consumir(delegua_2.default.IDENTIFICADOR, "Esperado identificador após 'como' em declaração de importação de 'tudo'.");
|
|
1189
|
+
break;
|
|
1190
|
+
case delegua_2.default.CHAVE_ESQUERDA:
|
|
1191
|
+
this.avancarEDevolverAnterior();
|
|
1192
|
+
do {
|
|
1193
|
+
const identificadorImportacao = this.consumir(delegua_2.default.IDENTIFICADOR, "Esperado identificador de elemento a ser importado.");
|
|
1194
|
+
elementosImportacao.push(identificadorImportacao);
|
|
1195
|
+
} while (this.verificarSeSimboloAtualEIgualA(delegua_2.default.VIRGULA));
|
|
1196
|
+
this.consumir(delegua_2.default.CHAVE_DIREITA, "Esperado '}' após lista de elementos a serem importados.");
|
|
1197
|
+
break;
|
|
1198
|
+
default:
|
|
1199
|
+
throw this.erro(this.simbolos[this.atual], "Esperado ou palavra reservada 'tudo' ou abertura de chaves após palavra reservada 'importar'.");
|
|
1200
|
+
}
|
|
1201
|
+
this.consumir(delegua_2.default.DE, "Esperado 'de' após identificador em declaração de importação de 'tudo'.");
|
|
1202
|
+
let construtoCaminhoModulo;
|
|
1203
|
+
switch (this.simbolos[this.atual].tipo) {
|
|
1204
|
+
case delegua_2.default.TEXTO:
|
|
1205
|
+
const simboloCaminhoModulo = this.avancarEDevolverAnterior();
|
|
1206
|
+
construtoCaminhoModulo = new construtos_1.Literal(simboloCaminhoModulo.hashArquivo, Number(simboloCaminhoModulo.linha), simboloCaminhoModulo.literal);
|
|
1207
|
+
break;
|
|
1208
|
+
case delegua_2.default.IDENTIFICADOR:
|
|
1209
|
+
const identificadorModulo = this.avancarEDevolverAnterior();
|
|
1210
|
+
construtoCaminhoModulo = new construtos_1.Literal(identificadorModulo.hashArquivo, Number(identificadorModulo.linha), identificadorModulo.lexema);
|
|
1211
|
+
break;
|
|
1212
|
+
}
|
|
1213
|
+
const importar = new declaracoes_1.Importar(construtoCaminhoModulo);
|
|
1214
|
+
if (identificadorDeTudo !== null) {
|
|
1215
|
+
importar.simboloTudo = identificadorDeTudo;
|
|
1216
|
+
}
|
|
1217
|
+
else {
|
|
1218
|
+
importar.elementosImportacao = elementosImportacao;
|
|
1219
|
+
}
|
|
1220
|
+
return importar;
|
|
1183
1221
|
}
|
|
1184
1222
|
declaracaoPara() {
|
|
1185
1223
|
try {
|
|
@@ -1452,6 +1490,9 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
1452
1490
|
case delegua_2.default.FAZER:
|
|
1453
1491
|
const simboloFazer = this.avancarEDevolverAnterior();
|
|
1454
1492
|
return this.declaracaoFazer(simboloFazer);
|
|
1493
|
+
case delegua_2.default.IMPORTAR:
|
|
1494
|
+
this.avancarEDevolverAnterior();
|
|
1495
|
+
return this.declaracaoImportar();
|
|
1455
1496
|
case delegua_2.default.LINHA_COMENTARIO:
|
|
1456
1497
|
return this.declaracaoComentarioMultilinha();
|
|
1457
1498
|
case delegua_2.default.PARA:
|
|
@@ -2090,7 +2131,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
2090
2131
|
}
|
|
2091
2132
|
exports.AvaliadorSintatico = AvaliadorSintatico;
|
|
2092
2133
|
|
|
2093
|
-
},{"../bibliotecas/primitivas-dicionario":21,"../bibliotecas/primitivas-numero":22,"../bibliotecas/primitivas-texto":23,"../bibliotecas/primitivas-vetor":24,"../construtos":
|
|
2134
|
+
},{"../bibliotecas/primitivas-dicionario":21,"../bibliotecas/primitivas-numero":22,"../bibliotecas/primitivas-texto":23,"../bibliotecas/primitivas-vetor":24,"../construtos":51,"../construtos/tuplas":67,"../declaracoes":95,"../inferenciador":114,"../informacao-elemento-sintatico":115,"../tipos-de-dados/delegua":179,"../tipos-de-simbolos/delegua":184,"./avaliador-sintatico-base":1,"./comum":3,"./elemento-montao-tipos":10,"./erro-avaliador-sintatico":11,"./informacao-escopo":13,"./montao-tipos":16,"./pilha-escopos":17,"browser-process-hrtime":364}],3:[function(require,module,exports){
|
|
2094
2135
|
"use strict";
|
|
2095
2136
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2096
2137
|
exports.buscarRetornos = buscarRetornos;
|
|
@@ -2190,7 +2231,7 @@ function registrarPrimitiva(primitivasConhecidas, tipo, catalogoPrimitivas) {
|
|
|
2190
2231
|
}
|
|
2191
2232
|
}
|
|
2192
2233
|
|
|
2193
|
-
},{"../informacao-elemento-sintatico":
|
|
2234
|
+
},{"../informacao-elemento-sintatico":115}],4:[function(require,module,exports){
|
|
2194
2235
|
"use strict";
|
|
2195
2236
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
2196
2237
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -2416,7 +2457,7 @@ class AvaliadorSintaticoCalango extends avaliador_sintatico_base_1.AvaliadorSint
|
|
|
2416
2457
|
}
|
|
2417
2458
|
exports.AvaliadorSintaticoCalango = AvaliadorSintaticoCalango;
|
|
2418
2459
|
|
|
2419
|
-
},{"../../construtos":
|
|
2460
|
+
},{"../../construtos":51,"../../declaracoes":95,"../../informacao-elemento-sintatico":115,"../../tipos-de-simbolos/calango":182,"../avaliador-sintatico-base":1,"../informacao-escopo":13,"../pilha-escopos":17}],5:[function(require,module,exports){
|
|
2420
2461
|
"use strict";
|
|
2421
2462
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
2422
2463
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -3071,7 +3112,7 @@ class AvaliadorSintaticoEguaClassico {
|
|
|
3071
3112
|
}
|
|
3072
3113
|
exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
|
|
3073
3114
|
|
|
3074
|
-
},{"../../construtos":
|
|
3115
|
+
},{"../../construtos":51,"../../declaracoes":95,"../../tipos-de-simbolos/egua-classico":185,"../erro-avaliador-sintatico":11}],6:[function(require,module,exports){
|
|
3075
3116
|
"use strict";
|
|
3076
3117
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3077
3118
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -4153,7 +4194,7 @@ class AvaliadorSintaticoPitugues {
|
|
|
4153
4194
|
}
|
|
4154
4195
|
exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
|
|
4155
4196
|
|
|
4156
|
-
},{"../../bibliotecas/primitivas-dicionario":21,"../../bibliotecas/primitivas-numero":22,"../../bibliotecas/primitivas-texto":23,"../../bibliotecas/primitivas-vetor":24,"../../construtos":
|
|
4197
|
+
},{"../../bibliotecas/primitivas-dicionario":21,"../../bibliotecas/primitivas-numero":22,"../../bibliotecas/primitivas-texto":23,"../../bibliotecas/primitivas-vetor":24,"../../construtos":51,"../../construtos/lista-compreensao":54,"../../declaracoes":95,"../../inferenciador":114,"../../informacao-elemento-sintatico":115,"../../lexador":171,"../../tipos-de-dados/dialetos/pitugues":180,"../../tipos-de-simbolos/pitugues":188,"../comum":3,"../erro-avaliador-sintatico":11,"../informacao-escopo":13,"../pilha-escopos":17,"browser-process-hrtime":364}],7:[function(require,module,exports){
|
|
4157
4198
|
"use strict";
|
|
4158
4199
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4159
4200
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -4327,7 +4368,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
|
|
|
4327
4368
|
}
|
|
4328
4369
|
exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
|
|
4329
4370
|
|
|
4330
|
-
},{"../../construtos":
|
|
4371
|
+
},{"../../construtos":51,"../../declaracoes":95,"../../tipos-de-simbolos/portugol-ipt":189,"../avaliador-sintatico-base":1}],8:[function(require,module,exports){
|
|
4331
4372
|
"use strict";
|
|
4332
4373
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4333
4374
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -5315,7 +5356,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
|
|
|
5315
5356
|
}
|
|
5316
5357
|
exports.AvaliadorSintaticoTenda = AvaliadorSintaticoTenda;
|
|
5317
5358
|
|
|
5318
|
-
},{"../../bibliotecas/primitivas-dicionario":21,"../../bibliotecas/primitivas-numero":22,"../../bibliotecas/primitivas-texto":23,"../../bibliotecas/primitivas-vetor":24,"../../construtos":
|
|
5359
|
+
},{"../../bibliotecas/primitivas-dicionario":21,"../../bibliotecas/primitivas-numero":22,"../../bibliotecas/primitivas-texto":23,"../../bibliotecas/primitivas-vetor":24,"../../construtos":51,"../../construtos/tuplas":67,"../../declaracoes":95,"../../inferenciador":114,"../../informacao-elemento-sintatico":115,"../../lexador/simbolo":177,"../../tipos-de-dados/delegua":179,"../../tipos-de-simbolos/tenda":190,"../avaliador-sintatico-base":1,"./../erro-avaliador-sintatico":11,"./../informacao-escopo":13,"./../pilha-escopos":17,"browser-process-hrtime":364}],9:[function(require,module,exports){
|
|
5319
5360
|
"use strict";
|
|
5320
5361
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5321
5362
|
if (k2 === undefined) k2 = k;
|
|
@@ -5520,7 +5561,7 @@ class MicroAvaliadorSintaticoBase {
|
|
|
5520
5561
|
}
|
|
5521
5562
|
exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
|
|
5522
5563
|
|
|
5523
|
-
},{"../construtos":
|
|
5564
|
+
},{"../construtos":51,"../tipos-de-simbolos/comum":183,"./erro-avaliador-sintatico":11}],15:[function(require,module,exports){
|
|
5524
5565
|
"use strict";
|
|
5525
5566
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
5526
5567
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -5722,7 +5763,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
|
|
|
5722
5763
|
}
|
|
5723
5764
|
exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
|
|
5724
5765
|
|
|
5725
|
-
},{"../construtos":
|
|
5766
|
+
},{"../construtos":51,"../tipos-de-simbolos/microgramaticas/delegua":187,"./micro-avaliador-sintatico-base":14}],16:[function(require,module,exports){
|
|
5726
5767
|
"use strict";
|
|
5727
5768
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5728
5769
|
exports.MontaoTipos = void 0;
|
|
@@ -5773,7 +5814,7 @@ class MontaoTipos {
|
|
|
5773
5814
|
}
|
|
5774
5815
|
exports.MontaoTipos = MontaoTipos;
|
|
5775
5816
|
|
|
5776
|
-
},{"../geracao-identificadores":
|
|
5817
|
+
},{"../geracao-identificadores":112,"./erro-avaliador-sintatico":11}],17:[function(require,module,exports){
|
|
5777
5818
|
"use strict";
|
|
5778
5819
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5779
5820
|
exports.PilhaEscopos = void 0;
|
|
@@ -6553,7 +6594,7 @@ async function tupla(interpretador, vetor) {
|
|
|
6553
6594
|
}
|
|
6554
6595
|
}
|
|
6555
6596
|
|
|
6556
|
-
},{"../construtos":
|
|
6597
|
+
},{"../construtos":51,"../excecoes":108,"../interpretador/estruturas":147,"../interpretador/estruturas/descritor-tipo-classe":145,"../interpretador/estruturas/funcao-padrao":146,"../interpretador/estruturas/objeto-delegua-classe":150,"../quebras":178}],21:[function(require,module,exports){
|
|
6557
6598
|
"use strict";
|
|
6558
6599
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6559
6600
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -6610,7 +6651,7 @@ exports.default = {
|
|
|
6610
6651
|
},
|
|
6611
6652
|
};
|
|
6612
6653
|
|
|
6613
|
-
},{"../informacao-elemento-sintatico":
|
|
6654
|
+
},{"../informacao-elemento-sintatico":115}],22:[function(require,module,exports){
|
|
6614
6655
|
"use strict";
|
|
6615
6656
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6616
6657
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -6695,7 +6736,7 @@ exports.default = {
|
|
|
6695
6736
|
},
|
|
6696
6737
|
};
|
|
6697
6738
|
|
|
6698
|
-
},{"../informacao-elemento-sintatico":
|
|
6739
|
+
},{"../informacao-elemento-sintatico":115}],23:[function(require,module,exports){
|
|
6699
6740
|
"use strict";
|
|
6700
6741
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6701
6742
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -6927,7 +6968,7 @@ exports.default = {
|
|
|
6927
6968
|
},
|
|
6928
6969
|
};
|
|
6929
6970
|
|
|
6930
|
-
},{"../informacao-elemento-sintatico":
|
|
6971
|
+
},{"../informacao-elemento-sintatico":115}],24:[function(require,module,exports){
|
|
6931
6972
|
"use strict";
|
|
6932
6973
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6933
6974
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -7274,7 +7315,7 @@ exports.default = {
|
|
|
7274
7315
|
},
|
|
7275
7316
|
};
|
|
7276
7317
|
|
|
7277
|
-
},{"../informacao-elemento-sintatico":
|
|
7318
|
+
},{"../informacao-elemento-sintatico":115}],25:[function(require,module,exports){
|
|
7278
7319
|
"use strict";
|
|
7279
7320
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7280
7321
|
exports.AcessoElementoMatriz = void 0;
|
|
@@ -7624,7 +7665,7 @@ class Chamada {
|
|
|
7624
7665
|
}
|
|
7625
7666
|
exports.Chamada = Chamada;
|
|
7626
7667
|
|
|
7627
|
-
},{"../geracao-identificadores":
|
|
7668
|
+
},{"../geracao-identificadores":112}],37:[function(require,module,exports){
|
|
7628
7669
|
"use strict";
|
|
7629
7670
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7630
7671
|
exports.ComentarioComoConstruto = void 0;
|
|
@@ -7905,6 +7946,29 @@ exports.FuncaoConstruto = FuncaoConstruto;
|
|
|
7905
7946
|
|
|
7906
7947
|
},{}],50:[function(require,module,exports){
|
|
7907
7948
|
"use strict";
|
|
7949
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7950
|
+
exports.ImportarComoConstruto = void 0;
|
|
7951
|
+
/**
|
|
7952
|
+
* Expressão usada para importação resolvida em tempo de execução.
|
|
7953
|
+
* Implementa a primeira forma de importação, também conhecida como importação dinâmica.
|
|
7954
|
+
*/
|
|
7955
|
+
class ImportarComoConstruto {
|
|
7956
|
+
constructor(caminho) {
|
|
7957
|
+
this.hashArquivo = caminho.hashArquivo;
|
|
7958
|
+
this.linha = caminho.linha;
|
|
7959
|
+
this.caminho = caminho;
|
|
7960
|
+
}
|
|
7961
|
+
async aceitar(visitante) {
|
|
7962
|
+
return await visitante.visitarExpressaoImportar(this);
|
|
7963
|
+
}
|
|
7964
|
+
paraTexto() {
|
|
7965
|
+
return `<importar-como-construto caminho=${this.caminho.valor} />`;
|
|
7966
|
+
}
|
|
7967
|
+
}
|
|
7968
|
+
exports.ImportarComoConstruto = ImportarComoConstruto;
|
|
7969
|
+
|
|
7970
|
+
},{}],51:[function(require,module,exports){
|
|
7971
|
+
"use strict";
|
|
7908
7972
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7909
7973
|
if (k2 === undefined) k2 = k;
|
|
7910
7974
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -7945,6 +8009,7 @@ __exportStar(require("./fazer-como-construto"), exports);
|
|
|
7945
8009
|
__exportStar(require("./fim-para"), exports);
|
|
7946
8010
|
__exportStar(require("./formatacao-escrita"), exports);
|
|
7947
8011
|
__exportStar(require("./funcao"), exports);
|
|
8012
|
+
__exportStar(require("./importar-como-construto"), exports);
|
|
7948
8013
|
__exportStar(require("./isto"), exports);
|
|
7949
8014
|
__exportStar(require("./leia"), exports);
|
|
7950
8015
|
__exportStar(require("./lista-compreensao"), exports);
|
|
@@ -7963,7 +8028,7 @@ __exportStar(require("./unario"), exports);
|
|
|
7963
8028
|
__exportStar(require("./variavel"), exports);
|
|
7964
8029
|
__exportStar(require("./vetor"), exports);
|
|
7965
8030
|
|
|
7966
|
-
},{"./acesso-elemento-matriz":25,"./acesso-indice-variavel":26,"./acesso-metodo":28,"./acesso-metodo-ou-propriedade":27,"./acesso-propriedade":29,"./agrupamento":30,"./argumento-referencia-funcao":31,"./atribuicao-por-indice":32,"./atribuicao-por-indices-matriz":33,"./atribuir":34,"./binario":35,"./chamada":36,"./comentario-como-construto":37,"./componente-linguagem":38,"./constante":39,"./construto":40,"./decorador":41,"./definir-valor":42,"./dicionario":43,"./enquanto-como-construto":44,"./expressao-regular":45,"./fazer-como-construto":46,"./fim-para":47,"./formatacao-escrita":48,"./funcao":49,"./isto":
|
|
8031
|
+
},{"./acesso-elemento-matriz":25,"./acesso-indice-variavel":26,"./acesso-metodo":28,"./acesso-metodo-ou-propriedade":27,"./acesso-propriedade":29,"./agrupamento":30,"./argumento-referencia-funcao":31,"./atribuicao-por-indice":32,"./atribuicao-por-indices-matriz":33,"./atribuir":34,"./binario":35,"./chamada":36,"./comentario-como-construto":37,"./componente-linguagem":38,"./constante":39,"./construto":40,"./decorador":41,"./definir-valor":42,"./dicionario":43,"./enquanto-como-construto":44,"./expressao-regular":45,"./fazer-como-construto":46,"./fim-para":47,"./formatacao-escrita":48,"./funcao":49,"./importar-como-construto":50,"./isto":52,"./leia":53,"./lista-compreensao":54,"./literal":55,"./logico":56,"./para-cada-como-construto":57,"./para-como-construto":58,"./referencia-biblioteca-global":59,"./referencia-funcao":60,"./separador":61,"./super":62,"./tipo-de":63,"./tupla":64,"./tuplas":67,"./unario":75,"./variavel":76,"./vetor":77}],52:[function(require,module,exports){
|
|
7967
8032
|
"use strict";
|
|
7968
8033
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7969
8034
|
exports.Isto = void 0;
|
|
@@ -7982,7 +8047,7 @@ class Isto {
|
|
|
7982
8047
|
}
|
|
7983
8048
|
exports.Isto = Isto;
|
|
7984
8049
|
|
|
7985
|
-
},{}],
|
|
8050
|
+
},{}],53:[function(require,module,exports){
|
|
7986
8051
|
"use strict";
|
|
7987
8052
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7988
8053
|
exports.Leia = void 0;
|
|
@@ -8008,7 +8073,7 @@ class Leia {
|
|
|
8008
8073
|
}
|
|
8009
8074
|
exports.Leia = Leia;
|
|
8010
8075
|
|
|
8011
|
-
},{"../geracao-identificadores":
|
|
8076
|
+
},{"../geracao-identificadores":112}],54:[function(require,module,exports){
|
|
8012
8077
|
"use strict";
|
|
8013
8078
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8014
8079
|
exports.ListaCompreensao = void 0;
|
|
@@ -8030,7 +8095,7 @@ class ListaCompreensao {
|
|
|
8030
8095
|
}
|
|
8031
8096
|
exports.ListaCompreensao = ListaCompreensao;
|
|
8032
8097
|
|
|
8033
|
-
},{}],
|
|
8098
|
+
},{}],55:[function(require,module,exports){
|
|
8034
8099
|
"use strict";
|
|
8035
8100
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8036
8101
|
exports.Literal = void 0;
|
|
@@ -8050,7 +8115,7 @@ class Literal {
|
|
|
8050
8115
|
}
|
|
8051
8116
|
exports.Literal = Literal;
|
|
8052
8117
|
|
|
8053
|
-
},{}],
|
|
8118
|
+
},{}],56:[function(require,module,exports){
|
|
8054
8119
|
"use strict";
|
|
8055
8120
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8056
8121
|
exports.Logico = void 0;
|
|
@@ -8073,7 +8138,7 @@ class Logico {
|
|
|
8073
8138
|
}
|
|
8074
8139
|
exports.Logico = Logico;
|
|
8075
8140
|
|
|
8076
|
-
},{}],
|
|
8141
|
+
},{}],57:[function(require,module,exports){
|
|
8077
8142
|
"use strict";
|
|
8078
8143
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8079
8144
|
exports.ParaCadaComoConstruto = void 0;
|
|
@@ -8095,7 +8160,7 @@ class ParaCadaComoConstruto {
|
|
|
8095
8160
|
}
|
|
8096
8161
|
exports.ParaCadaComoConstruto = ParaCadaComoConstruto;
|
|
8097
8162
|
|
|
8098
|
-
},{}],
|
|
8163
|
+
},{}],58:[function(require,module,exports){
|
|
8099
8164
|
"use strict";
|
|
8100
8165
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8101
8166
|
exports.ParaComoConstruto = void 0;
|
|
@@ -8120,7 +8185,7 @@ class ParaComoConstruto {
|
|
|
8120
8185
|
}
|
|
8121
8186
|
exports.ParaComoConstruto = ParaComoConstruto;
|
|
8122
8187
|
|
|
8123
|
-
},{}],
|
|
8188
|
+
},{}],59:[function(require,module,exports){
|
|
8124
8189
|
"use strict";
|
|
8125
8190
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8126
8191
|
exports.ReferenciaBibliotecaGlobal = void 0;
|
|
@@ -8143,7 +8208,7 @@ class ReferenciaBibliotecaGlobal {
|
|
|
8143
8208
|
}
|
|
8144
8209
|
exports.ReferenciaBibliotecaGlobal = ReferenciaBibliotecaGlobal;
|
|
8145
8210
|
|
|
8146
|
-
},{}],
|
|
8211
|
+
},{}],60:[function(require,module,exports){
|
|
8147
8212
|
"use strict";
|
|
8148
8213
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8149
8214
|
exports.ReferenciaFuncao = void 0;
|
|
@@ -8164,7 +8229,7 @@ class ReferenciaFuncao {
|
|
|
8164
8229
|
}
|
|
8165
8230
|
exports.ReferenciaFuncao = ReferenciaFuncao;
|
|
8166
8231
|
|
|
8167
|
-
},{}],
|
|
8232
|
+
},{}],61:[function(require,module,exports){
|
|
8168
8233
|
"use strict";
|
|
8169
8234
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8170
8235
|
exports.Separador = void 0;
|
|
@@ -8183,7 +8248,7 @@ class Separador {
|
|
|
8183
8248
|
}
|
|
8184
8249
|
exports.Separador = Separador;
|
|
8185
8250
|
|
|
8186
|
-
},{}],
|
|
8251
|
+
},{}],62:[function(require,module,exports){
|
|
8187
8252
|
"use strict";
|
|
8188
8253
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8189
8254
|
exports.Super = void 0;
|
|
@@ -8203,7 +8268,7 @@ class Super {
|
|
|
8203
8268
|
}
|
|
8204
8269
|
exports.Super = Super;
|
|
8205
8270
|
|
|
8206
|
-
},{}],
|
|
8271
|
+
},{}],63:[function(require,module,exports){
|
|
8207
8272
|
"use strict";
|
|
8208
8273
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8209
8274
|
exports.TipoDe = void 0;
|
|
@@ -8227,7 +8292,7 @@ class TipoDe {
|
|
|
8227
8292
|
}
|
|
8228
8293
|
exports.TipoDe = TipoDe;
|
|
8229
8294
|
|
|
8230
|
-
},{}],
|
|
8295
|
+
},{}],64:[function(require,module,exports){
|
|
8231
8296
|
"use strict";
|
|
8232
8297
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8233
8298
|
exports.Tupla = void 0;
|
|
@@ -8238,7 +8303,7 @@ class Tupla {
|
|
|
8238
8303
|
}
|
|
8239
8304
|
exports.Tupla = Tupla;
|
|
8240
8305
|
|
|
8241
|
-
},{}],
|
|
8306
|
+
},{}],65:[function(require,module,exports){
|
|
8242
8307
|
"use strict";
|
|
8243
8308
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8244
8309
|
exports.Deceto = void 0;
|
|
@@ -8286,7 +8351,7 @@ class Deceto extends tupla_1.Tupla {
|
|
|
8286
8351
|
}
|
|
8287
8352
|
exports.Deceto = Deceto;
|
|
8288
8353
|
|
|
8289
|
-
},{"../tupla":
|
|
8354
|
+
},{"../tupla":64}],66:[function(require,module,exports){
|
|
8290
8355
|
"use strict";
|
|
8291
8356
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8292
8357
|
exports.Dupla = void 0;
|
|
@@ -8305,7 +8370,7 @@ class Dupla extends tupla_1.Tupla {
|
|
|
8305
8370
|
}
|
|
8306
8371
|
exports.Dupla = Dupla;
|
|
8307
8372
|
|
|
8308
|
-
},{"../tupla":
|
|
8373
|
+
},{"../tupla":64}],67:[function(require,module,exports){
|
|
8309
8374
|
"use strict";
|
|
8310
8375
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
8311
8376
|
if (k2 === undefined) k2 = k;
|
|
@@ -8373,7 +8438,7 @@ class SeletorTuplas {
|
|
|
8373
8438
|
}
|
|
8374
8439
|
exports.SeletorTuplas = SeletorTuplas;
|
|
8375
8440
|
|
|
8376
|
-
},{"./deceto":
|
|
8441
|
+
},{"./deceto":65,"./dupla":66,"./noneto":68,"./octeto":69,"./quarteto":70,"./quinteto":71,"./septeto":72,"./sexteto":73,"./trio":74}],68:[function(require,module,exports){
|
|
8377
8442
|
"use strict";
|
|
8378
8443
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8379
8444
|
exports.Noneto = void 0;
|
|
@@ -8412,7 +8477,7 @@ class Noneto extends tupla_1.Tupla {
|
|
|
8412
8477
|
}
|
|
8413
8478
|
exports.Noneto = Noneto;
|
|
8414
8479
|
|
|
8415
|
-
},{"../tupla":
|
|
8480
|
+
},{"../tupla":64}],69:[function(require,module,exports){
|
|
8416
8481
|
"use strict";
|
|
8417
8482
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8418
8483
|
exports.Octeto = void 0;
|
|
@@ -8449,7 +8514,7 @@ class Octeto extends tupla_1.Tupla {
|
|
|
8449
8514
|
}
|
|
8450
8515
|
exports.Octeto = Octeto;
|
|
8451
8516
|
|
|
8452
|
-
},{"../tupla":
|
|
8517
|
+
},{"../tupla":64}],70:[function(require,module,exports){
|
|
8453
8518
|
"use strict";
|
|
8454
8519
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8455
8520
|
exports.Quarteto = void 0;
|
|
@@ -8472,7 +8537,7 @@ class Quarteto extends tupla_1.Tupla {
|
|
|
8472
8537
|
}
|
|
8473
8538
|
exports.Quarteto = Quarteto;
|
|
8474
8539
|
|
|
8475
|
-
},{"../tupla":
|
|
8540
|
+
},{"../tupla":64}],71:[function(require,module,exports){
|
|
8476
8541
|
"use strict";
|
|
8477
8542
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8478
8543
|
exports.Quinteto = void 0;
|
|
@@ -8497,7 +8562,7 @@ class Quinteto extends tupla_1.Tupla {
|
|
|
8497
8562
|
}
|
|
8498
8563
|
exports.Quinteto = Quinteto;
|
|
8499
8564
|
|
|
8500
|
-
},{"../tupla":
|
|
8565
|
+
},{"../tupla":64}],72:[function(require,module,exports){
|
|
8501
8566
|
"use strict";
|
|
8502
8567
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8503
8568
|
exports.Septeto = void 0;
|
|
@@ -8532,7 +8597,7 @@ class Septeto extends tupla_1.Tupla {
|
|
|
8532
8597
|
}
|
|
8533
8598
|
exports.Septeto = Septeto;
|
|
8534
8599
|
|
|
8535
|
-
},{"../tupla":
|
|
8600
|
+
},{"../tupla":64}],73:[function(require,module,exports){
|
|
8536
8601
|
"use strict";
|
|
8537
8602
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8538
8603
|
exports.Sexteto = void 0;
|
|
@@ -8559,7 +8624,7 @@ class Sexteto extends tupla_1.Tupla {
|
|
|
8559
8624
|
}
|
|
8560
8625
|
exports.Sexteto = Sexteto;
|
|
8561
8626
|
|
|
8562
|
-
},{"../tupla":
|
|
8627
|
+
},{"../tupla":64}],74:[function(require,module,exports){
|
|
8563
8628
|
"use strict";
|
|
8564
8629
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8565
8630
|
exports.Trio = void 0;
|
|
@@ -8580,7 +8645,7 @@ class Trio extends tupla_1.Tupla {
|
|
|
8580
8645
|
}
|
|
8581
8646
|
exports.Trio = Trio;
|
|
8582
8647
|
|
|
8583
|
-
},{"../tupla":
|
|
8648
|
+
},{"../tupla":64}],75:[function(require,module,exports){
|
|
8584
8649
|
"use strict";
|
|
8585
8650
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8586
8651
|
exports.Unario = void 0;
|
|
@@ -8601,7 +8666,7 @@ class Unario {
|
|
|
8601
8666
|
}
|
|
8602
8667
|
exports.Unario = Unario;
|
|
8603
8668
|
|
|
8604
|
-
},{}],
|
|
8669
|
+
},{}],76:[function(require,module,exports){
|
|
8605
8670
|
"use strict";
|
|
8606
8671
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8607
8672
|
exports.Variavel = void 0;
|
|
@@ -8621,7 +8686,7 @@ class Variavel {
|
|
|
8621
8686
|
}
|
|
8622
8687
|
exports.Variavel = Variavel;
|
|
8623
8688
|
|
|
8624
|
-
},{}],
|
|
8689
|
+
},{}],77:[function(require,module,exports){
|
|
8625
8690
|
"use strict";
|
|
8626
8691
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8627
8692
|
exports.Vetor = void 0;
|
|
@@ -8647,7 +8712,7 @@ class Vetor {
|
|
|
8647
8712
|
}
|
|
8648
8713
|
exports.Vetor = Vetor;
|
|
8649
8714
|
|
|
8650
|
-
},{}],
|
|
8715
|
+
},{}],78:[function(require,module,exports){
|
|
8651
8716
|
"use strict";
|
|
8652
8717
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8653
8718
|
exports.Bloco = void 0;
|
|
@@ -8673,7 +8738,7 @@ class Bloco extends declaracao_1.Declaracao {
|
|
|
8673
8738
|
}
|
|
8674
8739
|
exports.Bloco = Bloco;
|
|
8675
8740
|
|
|
8676
|
-
},{"./declaracao":
|
|
8741
|
+
},{"./declaracao":85}],79:[function(require,module,exports){
|
|
8677
8742
|
"use strict";
|
|
8678
8743
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8679
8744
|
exports.CabecalhoPrograma = void 0;
|
|
@@ -8695,7 +8760,7 @@ class CabecalhoPrograma extends declaracao_1.Declaracao {
|
|
|
8695
8760
|
}
|
|
8696
8761
|
exports.CabecalhoPrograma = CabecalhoPrograma;
|
|
8697
8762
|
|
|
8698
|
-
},{"./declaracao":
|
|
8763
|
+
},{"./declaracao":85}],80:[function(require,module,exports){
|
|
8699
8764
|
"use strict";
|
|
8700
8765
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8701
8766
|
exports.Classe = void 0;
|
|
@@ -8730,7 +8795,7 @@ class Classe extends declaracao_1.Declaracao {
|
|
|
8730
8795
|
}
|
|
8731
8796
|
exports.Classe = Classe;
|
|
8732
8797
|
|
|
8733
|
-
},{"./declaracao":
|
|
8798
|
+
},{"./declaracao":85}],81:[function(require,module,exports){
|
|
8734
8799
|
"use strict";
|
|
8735
8800
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8736
8801
|
exports.Comentario = void 0;
|
|
@@ -8755,7 +8820,7 @@ class Comentario extends declaracao_1.Declaracao {
|
|
|
8755
8820
|
}
|
|
8756
8821
|
exports.Comentario = Comentario;
|
|
8757
8822
|
|
|
8758
|
-
},{"./declaracao":
|
|
8823
|
+
},{"./declaracao":85}],82:[function(require,module,exports){
|
|
8759
8824
|
"use strict";
|
|
8760
8825
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8761
8826
|
exports.ConstMultiplo = void 0;
|
|
@@ -8780,7 +8845,7 @@ class ConstMultiplo extends declaracao_1.Declaracao {
|
|
|
8780
8845
|
}
|
|
8781
8846
|
exports.ConstMultiplo = ConstMultiplo;
|
|
8782
8847
|
|
|
8783
|
-
},{"./declaracao":
|
|
8848
|
+
},{"./declaracao":85}],83:[function(require,module,exports){
|
|
8784
8849
|
"use strict";
|
|
8785
8850
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8786
8851
|
exports.Const = void 0;
|
|
@@ -8810,7 +8875,7 @@ class Const extends declaracao_1.Declaracao {
|
|
|
8810
8875
|
}
|
|
8811
8876
|
exports.Const = Const;
|
|
8812
8877
|
|
|
8813
|
-
},{"./declaracao":
|
|
8878
|
+
},{"./declaracao":85}],84:[function(require,module,exports){
|
|
8814
8879
|
"use strict";
|
|
8815
8880
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8816
8881
|
exports.Continua = void 0;
|
|
@@ -8828,7 +8893,7 @@ class Continua extends declaracao_1.Declaracao {
|
|
|
8828
8893
|
}
|
|
8829
8894
|
exports.Continua = Continua;
|
|
8830
8895
|
|
|
8831
|
-
},{"./declaracao":
|
|
8896
|
+
},{"./declaracao":85}],85:[function(require,module,exports){
|
|
8832
8897
|
"use strict";
|
|
8833
8898
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8834
8899
|
exports.Declaracao = void 0;
|
|
@@ -8851,7 +8916,7 @@ class Declaracao {
|
|
|
8851
8916
|
}
|
|
8852
8917
|
exports.Declaracao = Declaracao;
|
|
8853
8918
|
|
|
8854
|
-
},{}],
|
|
8919
|
+
},{}],86:[function(require,module,exports){
|
|
8855
8920
|
"use strict";
|
|
8856
8921
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8857
8922
|
exports.Enquanto = void 0;
|
|
@@ -8872,7 +8937,7 @@ class Enquanto extends declaracao_1.Declaracao {
|
|
|
8872
8937
|
}
|
|
8873
8938
|
exports.Enquanto = Enquanto;
|
|
8874
8939
|
|
|
8875
|
-
},{"./declaracao":
|
|
8940
|
+
},{"./declaracao":85}],87:[function(require,module,exports){
|
|
8876
8941
|
"use strict";
|
|
8877
8942
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8878
8943
|
exports.Escolha = void 0;
|
|
@@ -8897,7 +8962,7 @@ class Escolha extends declaracao_1.Declaracao {
|
|
|
8897
8962
|
}
|
|
8898
8963
|
exports.Escolha = Escolha;
|
|
8899
8964
|
|
|
8900
|
-
},{"./declaracao":
|
|
8965
|
+
},{"./declaracao":85}],88:[function(require,module,exports){
|
|
8901
8966
|
"use strict";
|
|
8902
8967
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8903
8968
|
exports.EscrevaMesmaLinha = void 0;
|
|
@@ -8916,7 +8981,7 @@ class EscrevaMesmaLinha extends declaracao_1.Declaracao {
|
|
|
8916
8981
|
}
|
|
8917
8982
|
exports.EscrevaMesmaLinha = EscrevaMesmaLinha;
|
|
8918
8983
|
|
|
8919
|
-
},{"./declaracao":
|
|
8984
|
+
},{"./declaracao":85}],89:[function(require,module,exports){
|
|
8920
8985
|
"use strict";
|
|
8921
8986
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8922
8987
|
exports.Escreva = void 0;
|
|
@@ -8935,7 +9000,7 @@ class Escreva extends declaracao_1.Declaracao {
|
|
|
8935
9000
|
}
|
|
8936
9001
|
exports.Escreva = Escreva;
|
|
8937
9002
|
|
|
8938
|
-
},{"./declaracao":
|
|
9003
|
+
},{"./declaracao":85}],90:[function(require,module,exports){
|
|
8939
9004
|
"use strict";
|
|
8940
9005
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8941
9006
|
exports.Expressao = void 0;
|
|
@@ -8954,7 +9019,7 @@ class Expressao extends declaracao_1.Declaracao {
|
|
|
8954
9019
|
}
|
|
8955
9020
|
exports.Expressao = Expressao;
|
|
8956
9021
|
|
|
8957
|
-
},{"./declaracao":
|
|
9022
|
+
},{"./declaracao":85}],91:[function(require,module,exports){
|
|
8958
9023
|
"use strict";
|
|
8959
9024
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8960
9025
|
exports.Falhar = void 0;
|
|
@@ -8974,7 +9039,7 @@ class Falhar extends declaracao_1.Declaracao {
|
|
|
8974
9039
|
}
|
|
8975
9040
|
exports.Falhar = Falhar;
|
|
8976
9041
|
|
|
8977
|
-
},{"./declaracao":
|
|
9042
|
+
},{"./declaracao":85}],92:[function(require,module,exports){
|
|
8978
9043
|
"use strict";
|
|
8979
9044
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8980
9045
|
exports.Fazer = void 0;
|
|
@@ -8995,7 +9060,7 @@ class Fazer extends declaracao_1.Declaracao {
|
|
|
8995
9060
|
}
|
|
8996
9061
|
exports.Fazer = Fazer;
|
|
8997
9062
|
|
|
8998
|
-
},{"./declaracao":
|
|
9063
|
+
},{"./declaracao":85}],93:[function(require,module,exports){
|
|
8999
9064
|
"use strict";
|
|
9000
9065
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9001
9066
|
exports.FuncaoDeclaracao = void 0;
|
|
@@ -9023,19 +9088,21 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
|
|
|
9023
9088
|
}
|
|
9024
9089
|
exports.FuncaoDeclaracao = FuncaoDeclaracao;
|
|
9025
9090
|
|
|
9026
|
-
},{"../geracao-identificadores":
|
|
9091
|
+
},{"../geracao-identificadores":112,"./declaracao":85}],94:[function(require,module,exports){
|
|
9027
9092
|
"use strict";
|
|
9028
9093
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9029
9094
|
exports.Importar = void 0;
|
|
9030
9095
|
const declaracao_1 = require("./declaracao");
|
|
9031
9096
|
/**
|
|
9032
|
-
* Declaração usada para
|
|
9097
|
+
* Declaração usada para segunda forma de importação.
|
|
9033
9098
|
* Para Delégua, a partir da versão 0.40.0, importações de módulos resolvem
|
|
9034
9099
|
* no avaliador sintático, já que alguma resolução de tipo é necessária.
|
|
9035
9100
|
*/
|
|
9036
9101
|
class Importar extends declaracao_1.Declaracao {
|
|
9037
9102
|
constructor(caminho) {
|
|
9038
9103
|
super(caminho.linha, caminho.hashArquivo);
|
|
9104
|
+
this.simboloTudo = null;
|
|
9105
|
+
this.elementosImportacao = [];
|
|
9039
9106
|
this.caminho = caminho;
|
|
9040
9107
|
}
|
|
9041
9108
|
async aceitar(visitante) {
|
|
@@ -9047,7 +9114,7 @@ class Importar extends declaracao_1.Declaracao {
|
|
|
9047
9114
|
}
|
|
9048
9115
|
exports.Importar = Importar;
|
|
9049
9116
|
|
|
9050
|
-
},{"./declaracao":
|
|
9117
|
+
},{"./declaracao":85}],95:[function(require,module,exports){
|
|
9051
9118
|
"use strict";
|
|
9052
9119
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9053
9120
|
if (k2 === undefined) k2 = k;
|
|
@@ -9094,7 +9161,7 @@ __exportStar(require("./tente"), exports);
|
|
|
9094
9161
|
__exportStar(require("./var"), exports);
|
|
9095
9162
|
__exportStar(require("./var-multiplo"), exports);
|
|
9096
9163
|
|
|
9097
|
-
},{"./bloco":
|
|
9164
|
+
},{"./bloco":78,"./cabecalho-programa":79,"./classe":80,"./comentario":81,"./const":83,"./const-multiplo":82,"./continua":84,"./declaracao":85,"./enquanto":86,"./escolha":87,"./escreva":89,"./escreva-mesma-linha":88,"./expressao":90,"./falhar":91,"./fazer":92,"./funcao":93,"./importar":94,"./inicio-algoritmo":96,"./para":98,"./para-cada":97,"./propriedade-classe":99,"./retorna":100,"./se":101,"./sustar":102,"./tendo-como":103,"./tente":104,"./var":106,"./var-multiplo":105}],96:[function(require,module,exports){
|
|
9098
9165
|
"use strict";
|
|
9099
9166
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9100
9167
|
exports.InicioAlgoritmo = void 0;
|
|
@@ -9114,7 +9181,7 @@ class InicioAlgoritmo extends declaracao_1.Declaracao {
|
|
|
9114
9181
|
}
|
|
9115
9182
|
exports.InicioAlgoritmo = InicioAlgoritmo;
|
|
9116
9183
|
|
|
9117
|
-
},{"./declaracao":
|
|
9184
|
+
},{"./declaracao":85}],97:[function(require,module,exports){
|
|
9118
9185
|
"use strict";
|
|
9119
9186
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9120
9187
|
exports.ParaCada = void 0;
|
|
@@ -9137,7 +9204,7 @@ class ParaCada extends declaracao_1.Declaracao {
|
|
|
9137
9204
|
}
|
|
9138
9205
|
exports.ParaCada = ParaCada;
|
|
9139
9206
|
|
|
9140
|
-
},{"./declaracao":
|
|
9207
|
+
},{"./declaracao":85}],98:[function(require,module,exports){
|
|
9141
9208
|
"use strict";
|
|
9142
9209
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9143
9210
|
exports.Para = void 0;
|
|
@@ -9174,7 +9241,7 @@ class Para extends declaracao_1.Declaracao {
|
|
|
9174
9241
|
}
|
|
9175
9242
|
exports.Para = Para;
|
|
9176
9243
|
|
|
9177
|
-
},{"./declaracao":
|
|
9244
|
+
},{"./declaracao":85}],99:[function(require,module,exports){
|
|
9178
9245
|
"use strict";
|
|
9179
9246
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9180
9247
|
exports.PropriedadeClasse = void 0;
|
|
@@ -9195,7 +9262,7 @@ class PropriedadeClasse extends declaracao_1.Declaracao {
|
|
|
9195
9262
|
}
|
|
9196
9263
|
exports.PropriedadeClasse = PropriedadeClasse;
|
|
9197
9264
|
|
|
9198
|
-
},{"./declaracao":
|
|
9265
|
+
},{"./declaracao":85}],100:[function(require,module,exports){
|
|
9199
9266
|
"use strict";
|
|
9200
9267
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9201
9268
|
exports.Retorna = void 0;
|
|
@@ -9221,7 +9288,7 @@ class Retorna extends declaracao_1.Declaracao {
|
|
|
9221
9288
|
}
|
|
9222
9289
|
exports.Retorna = Retorna;
|
|
9223
9290
|
|
|
9224
|
-
},{"./declaracao":
|
|
9291
|
+
},{"./declaracao":85}],101:[function(require,module,exports){
|
|
9225
9292
|
"use strict";
|
|
9226
9293
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9227
9294
|
exports.Se = void 0;
|
|
@@ -9244,7 +9311,7 @@ class Se extends declaracao_1.Declaracao {
|
|
|
9244
9311
|
}
|
|
9245
9312
|
exports.Se = Se;
|
|
9246
9313
|
|
|
9247
|
-
},{"./declaracao":
|
|
9314
|
+
},{"./declaracao":85}],102:[function(require,module,exports){
|
|
9248
9315
|
"use strict";
|
|
9249
9316
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9250
9317
|
exports.Sustar = void 0;
|
|
@@ -9262,7 +9329,7 @@ class Sustar extends declaracao_1.Declaracao {
|
|
|
9262
9329
|
}
|
|
9263
9330
|
exports.Sustar = Sustar;
|
|
9264
9331
|
|
|
9265
|
-
},{"./declaracao":
|
|
9332
|
+
},{"./declaracao":85}],103:[function(require,module,exports){
|
|
9266
9333
|
"use strict";
|
|
9267
9334
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9268
9335
|
exports.TendoComo = void 0;
|
|
@@ -9289,7 +9356,7 @@ class TendoComo extends declaracao_1.Declaracao {
|
|
|
9289
9356
|
}
|
|
9290
9357
|
exports.TendoComo = TendoComo;
|
|
9291
9358
|
|
|
9292
|
-
},{"./declaracao":
|
|
9359
|
+
},{"./declaracao":85}],104:[function(require,module,exports){
|
|
9293
9360
|
"use strict";
|
|
9294
9361
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9295
9362
|
exports.Tente = void 0;
|
|
@@ -9315,7 +9382,7 @@ class Tente extends declaracao_1.Declaracao {
|
|
|
9315
9382
|
}
|
|
9316
9383
|
exports.Tente = Tente;
|
|
9317
9384
|
|
|
9318
|
-
},{"./declaracao":
|
|
9385
|
+
},{"./declaracao":85}],105:[function(require,module,exports){
|
|
9319
9386
|
"use strict";
|
|
9320
9387
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9321
9388
|
exports.VarMultiplo = void 0;
|
|
@@ -9341,7 +9408,7 @@ class VarMultiplo extends declaracao_1.Declaracao {
|
|
|
9341
9408
|
}
|
|
9342
9409
|
exports.VarMultiplo = VarMultiplo;
|
|
9343
9410
|
|
|
9344
|
-
},{"./declaracao":
|
|
9411
|
+
},{"./declaracao":85}],106:[function(require,module,exports){
|
|
9345
9412
|
"use strict";
|
|
9346
9413
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9347
9414
|
exports.Var = void 0;
|
|
@@ -9373,7 +9440,7 @@ class Var extends declaracao_1.Declaracao {
|
|
|
9373
9440
|
}
|
|
9374
9441
|
exports.Var = Var;
|
|
9375
9442
|
|
|
9376
|
-
},{"./declaracao":
|
|
9443
|
+
},{"./declaracao":85}],107:[function(require,module,exports){
|
|
9377
9444
|
"use strict";
|
|
9378
9445
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9379
9446
|
exports.ErroEmTempoDeExecucao = void 0;
|
|
@@ -9388,7 +9455,7 @@ class ErroEmTempoDeExecucao extends Error {
|
|
|
9388
9455
|
}
|
|
9389
9456
|
exports.ErroEmTempoDeExecucao = ErroEmTempoDeExecucao;
|
|
9390
9457
|
|
|
9391
|
-
},{}],
|
|
9458
|
+
},{}],108:[function(require,module,exports){
|
|
9392
9459
|
"use strict";
|
|
9393
9460
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9394
9461
|
if (k2 === undefined) k2 = k;
|
|
@@ -9407,7 +9474,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
9407
9474
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9408
9475
|
__exportStar(require("./erro-em-tempo-de-execucao"), exports);
|
|
9409
9476
|
|
|
9410
|
-
},{"./erro-em-tempo-de-execucao":
|
|
9477
|
+
},{"./erro-em-tempo-de-execucao":107}],109:[function(require,module,exports){
|
|
9411
9478
|
"use strict";
|
|
9412
9479
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
9413
9480
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -10139,7 +10206,7 @@ class FormatadorDelegua {
|
|
|
10139
10206
|
}
|
|
10140
10207
|
exports.FormatadorDelegua = FormatadorDelegua;
|
|
10141
10208
|
|
|
10142
|
-
},{"../construtos":
|
|
10209
|
+
},{"../construtos":51,"../tipos-de-simbolos/delegua":184}],110:[function(require,module,exports){
|
|
10143
10210
|
"use strict";
|
|
10144
10211
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10145
10212
|
exports.FormatadorPitugues = void 0;
|
|
@@ -10375,7 +10442,7 @@ class FormatadorPitugues {
|
|
|
10375
10442
|
}
|
|
10376
10443
|
exports.FormatadorPitugues = FormatadorPitugues;
|
|
10377
10444
|
|
|
10378
|
-
},{}],
|
|
10445
|
+
},{}],111:[function(require,module,exports){
|
|
10379
10446
|
"use strict";
|
|
10380
10447
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10381
10448
|
if (k2 === undefined) k2 = k;
|
|
@@ -10395,7 +10462,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
10395
10462
|
__exportStar(require("./formatador-delegua"), exports);
|
|
10396
10463
|
__exportStar(require("./formatador-pitugues"), exports);
|
|
10397
10464
|
|
|
10398
|
-
},{"./formatador-delegua":
|
|
10465
|
+
},{"./formatador-delegua":109,"./formatador-pitugues":110}],112:[function(require,module,exports){
|
|
10399
10466
|
"use strict";
|
|
10400
10467
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10401
10468
|
exports.cyrb53 = cyrb53;
|
|
@@ -10439,7 +10506,7 @@ function uuidv4() {
|
|
|
10439
10506
|
});
|
|
10440
10507
|
}
|
|
10441
10508
|
|
|
10442
|
-
},{}],
|
|
10509
|
+
},{}],113:[function(require,module,exports){
|
|
10443
10510
|
"use strict";
|
|
10444
10511
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10445
10512
|
if (k2 === undefined) k2 = k;
|
|
@@ -10466,7 +10533,7 @@ __exportStar(require("./interpretador"), exports);
|
|
|
10466
10533
|
__exportStar(require("./lexador"), exports);
|
|
10467
10534
|
__exportStar(require("./tradutores"), exports);
|
|
10468
10535
|
|
|
10469
|
-
},{"./avaliador-sintatico":12,"./construtos":
|
|
10536
|
+
},{"./avaliador-sintatico":12,"./construtos":51,"./declaracoes":95,"./formatadores":111,"./geracao-identificadores":112,"./interfaces":121,"./interpretador":153,"./lexador":171,"./tradutores":191}],114:[function(require,module,exports){
|
|
10470
10537
|
"use strict";
|
|
10471
10538
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
10472
10539
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -10593,7 +10660,7 @@ function tipoInferenciaParaTipoDadosElementar(tipoInferencia) {
|
|
|
10593
10660
|
}
|
|
10594
10661
|
}
|
|
10595
10662
|
|
|
10596
|
-
},{"./tipos-de-dados/delegua":
|
|
10663
|
+
},{"./tipos-de-dados/delegua":179,"./tipos-de-dados/primitivos":181,"./tipos-de-simbolos/delegua":184}],115:[function(require,module,exports){
|
|
10597
10664
|
"use strict";
|
|
10598
10665
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10599
10666
|
exports.InformacaoElementoSintatico = void 0;
|
|
@@ -10612,15 +10679,15 @@ class InformacaoElementoSintatico {
|
|
|
10612
10679
|
}
|
|
10613
10680
|
exports.InformacaoElementoSintatico = InformacaoElementoSintatico;
|
|
10614
10681
|
|
|
10615
|
-
},{}],
|
|
10682
|
+
},{}],116:[function(require,module,exports){
|
|
10616
10683
|
"use strict";
|
|
10617
10684
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10618
10685
|
|
|
10619
|
-
},{}],
|
|
10686
|
+
},{}],117:[function(require,module,exports){
|
|
10620
10687
|
"use strict";
|
|
10621
10688
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10622
10689
|
|
|
10623
|
-
},{}],
|
|
10690
|
+
},{}],118:[function(require,module,exports){
|
|
10624
10691
|
"use strict";
|
|
10625
10692
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10626
10693
|
exports.DiagnosticoSeveridade = void 0;
|
|
@@ -10632,7 +10699,7 @@ var DiagnosticoSeveridade;
|
|
|
10632
10699
|
DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
|
|
10633
10700
|
})(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
|
|
10634
10701
|
|
|
10635
|
-
},{}],
|
|
10702
|
+
},{}],119:[function(require,module,exports){
|
|
10636
10703
|
"use strict";
|
|
10637
10704
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10638
10705
|
if (k2 === undefined) k2 = k;
|
|
@@ -10651,11 +10718,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
10651
10718
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10652
10719
|
__exportStar(require("./diagnostico-analisador-semantico"), exports);
|
|
10653
10720
|
|
|
10654
|
-
},{"./diagnostico-analisador-semantico":
|
|
10721
|
+
},{"./diagnostico-analisador-semantico":118}],120:[function(require,module,exports){
|
|
10655
10722
|
"use strict";
|
|
10656
10723
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10657
10724
|
|
|
10658
|
-
},{}],
|
|
10725
|
+
},{}],121:[function(require,module,exports){
|
|
10659
10726
|
"use strict";
|
|
10660
10727
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10661
10728
|
if (k2 === undefined) k2 = k;
|
|
@@ -10692,11 +10759,7 @@ __exportStar(require("./construtos"), exports);
|
|
|
10692
10759
|
__exportStar(require("./erros"), exports);
|
|
10693
10760
|
__exportStar(require("./retornos"), exports);
|
|
10694
10761
|
|
|
10695
|
-
},{"./avaliador-sintatico-interface":
|
|
10696
|
-
"use strict";
|
|
10697
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10698
|
-
|
|
10699
|
-
},{}],122:[function(require,module,exports){
|
|
10762
|
+
},{"./avaliador-sintatico-interface":116,"./construtos":117,"./erros":119,"./formatador-comum-interface":120,"./interpretador-com-depuracao-interface":122,"./interpretador-interface":123,"./lexador-interface":124,"./parametro-interface":125,"./pilha-interface":126,"./primitiva-interface":127,"./resolvedor-interface":128,"./resultado-parcial-interpretador-interface":129,"./retornos":130,"./retornos/retorno-execucao-interface":132,"./simbolo-interface":135,"./tradutor-interface":136,"./variavel-interface":137,"./visitante-comum-interface":138,"./visitante-delegua-interface":139}],122:[function(require,module,exports){
|
|
10700
10763
|
"use strict";
|
|
10701
10764
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10702
10765
|
|
|
@@ -10726,6 +10789,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
10726
10789
|
|
|
10727
10790
|
},{}],129:[function(require,module,exports){
|
|
10728
10791
|
"use strict";
|
|
10792
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10793
|
+
|
|
10794
|
+
},{}],130:[function(require,module,exports){
|
|
10795
|
+
"use strict";
|
|
10729
10796
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10730
10797
|
if (k2 === undefined) k2 = k;
|
|
10731
10798
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -10746,11 +10813,7 @@ __exportStar(require("./retorno-execucao-interface"), exports);
|
|
|
10746
10813
|
__exportStar(require("./retorno-interpretador-interface"), exports);
|
|
10747
10814
|
__exportStar(require("./retorno-lexador"), exports);
|
|
10748
10815
|
|
|
10749
|
-
},{"./retorno-avaliador-sintatico":
|
|
10750
|
-
"use strict";
|
|
10751
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10752
|
-
|
|
10753
|
-
},{}],131:[function(require,module,exports){
|
|
10816
|
+
},{"./retorno-avaliador-sintatico":131,"./retorno-execucao-interface":132,"./retorno-interpretador-interface":133,"./retorno-lexador":134}],131:[function(require,module,exports){
|
|
10754
10817
|
"use strict";
|
|
10755
10818
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10756
10819
|
|
|
@@ -10784,6 +10847,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
10784
10847
|
|
|
10785
10848
|
},{}],139:[function(require,module,exports){
|
|
10786
10849
|
"use strict";
|
|
10850
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10851
|
+
|
|
10852
|
+
},{}],140:[function(require,module,exports){
|
|
10853
|
+
"use strict";
|
|
10787
10854
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10788
10855
|
if (k2 === undefined) k2 = k;
|
|
10789
10856
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -10847,7 +10914,7 @@ function carregarBibliotecasGlobais(pilhaEscoposExecucao) {
|
|
|
10847
10914
|
pilhaEscoposExecucao.definirVariavel('tupla', new funcao_padrao_1.FuncaoPadrao(1, bibliotecaGlobal.tupla));
|
|
10848
10915
|
}
|
|
10849
10916
|
|
|
10850
|
-
},{"../bibliotecas/biblioteca-global":20,"./estruturas/funcao-padrao":
|
|
10917
|
+
},{"../bibliotecas/biblioteca-global":20,"./estruturas/funcao-padrao":146}],141:[function(require,module,exports){
|
|
10851
10918
|
"use strict";
|
|
10852
10919
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10853
10920
|
exports.EspacoMemoria = void 0;
|
|
@@ -10872,7 +10939,7 @@ class EspacoMemoria {
|
|
|
10872
10939
|
}
|
|
10873
10940
|
exports.EspacoMemoria = EspacoMemoria;
|
|
10874
10941
|
|
|
10875
|
-
},{}],
|
|
10942
|
+
},{}],142:[function(require,module,exports){
|
|
10876
10943
|
"use strict";
|
|
10877
10944
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10878
10945
|
exports.Chamavel = void 0;
|
|
@@ -10886,7 +10953,7 @@ class Chamavel {
|
|
|
10886
10953
|
}
|
|
10887
10954
|
exports.Chamavel = Chamavel;
|
|
10888
10955
|
|
|
10889
|
-
},{}],
|
|
10956
|
+
},{}],143:[function(require,module,exports){
|
|
10890
10957
|
"use strict";
|
|
10891
10958
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10892
10959
|
exports.ClassePadrao = void 0;
|
|
@@ -10927,7 +10994,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
|
|
|
10927
10994
|
}
|
|
10928
10995
|
exports.ClassePadrao = ClassePadrao;
|
|
10929
10996
|
|
|
10930
|
-
},{"./chamavel":
|
|
10997
|
+
},{"./chamavel":142}],144:[function(require,module,exports){
|
|
10931
10998
|
"use strict";
|
|
10932
10999
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10933
11000
|
exports.DeleguaFuncao = void 0;
|
|
@@ -11072,7 +11139,7 @@ class DeleguaFuncao extends chamavel_1.Chamavel {
|
|
|
11072
11139
|
}
|
|
11073
11140
|
exports.DeleguaFuncao = DeleguaFuncao;
|
|
11074
11141
|
|
|
11075
|
-
},{"../../declaracoes":
|
|
11142
|
+
},{"../../declaracoes":95,"../../quebras":178,"../espaco-memoria":141,"./chamavel":142}],145:[function(require,module,exports){
|
|
11076
11143
|
"use strict";
|
|
11077
11144
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11078
11145
|
exports.DescritorTipoClasse = void 0;
|
|
@@ -11153,7 +11220,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
|
|
|
11153
11220
|
}
|
|
11154
11221
|
exports.DescritorTipoClasse = DescritorTipoClasse;
|
|
11155
11222
|
|
|
11156
|
-
},{"../../excecoes":
|
|
11223
|
+
},{"../../excecoes":108,"./chamavel":142,"./objeto-delegua-classe":150}],146:[function(require,module,exports){
|
|
11157
11224
|
"use strict";
|
|
11158
11225
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11159
11226
|
exports.FuncaoPadrao = void 0;
|
|
@@ -11190,7 +11257,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
|
|
|
11190
11257
|
}
|
|
11191
11258
|
exports.FuncaoPadrao = FuncaoPadrao;
|
|
11192
11259
|
|
|
11193
|
-
},{"./chamavel":
|
|
11260
|
+
},{"./chamavel":142}],147:[function(require,module,exports){
|
|
11194
11261
|
"use strict";
|
|
11195
11262
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
11196
11263
|
if (k2 === undefined) k2 = k;
|
|
@@ -11218,7 +11285,7 @@ __exportStar(require("./objeto-delegua-classe"), exports);
|
|
|
11218
11285
|
__exportStar(require("./objeto-padrao"), exports);
|
|
11219
11286
|
__exportStar(require("./referencia-montao"), exports);
|
|
11220
11287
|
|
|
11221
|
-
},{"./chamavel":
|
|
11288
|
+
},{"./chamavel":142,"./classe-padrao":143,"./delegua-funcao":144,"./descritor-tipo-classe":145,"./funcao-padrao":146,"./metodo-primitiva":148,"./modulo":149,"./objeto-delegua-classe":150,"./objeto-padrao":151,"./referencia-montao":152}],148:[function(require,module,exports){
|
|
11222
11289
|
"use strict";
|
|
11223
11290
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11224
11291
|
exports.MetodoPrimitiva = void 0;
|
|
@@ -11261,7 +11328,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
|
|
|
11261
11328
|
}
|
|
11262
11329
|
exports.MetodoPrimitiva = MetodoPrimitiva;
|
|
11263
11330
|
|
|
11264
|
-
},{"./chamavel":
|
|
11331
|
+
},{"./chamavel":142}],149:[function(require,module,exports){
|
|
11265
11332
|
"use strict";
|
|
11266
11333
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11267
11334
|
exports.DeleguaModulo = void 0;
|
|
@@ -11287,7 +11354,7 @@ class DeleguaModulo {
|
|
|
11287
11354
|
}
|
|
11288
11355
|
exports.DeleguaModulo = DeleguaModulo;
|
|
11289
11356
|
|
|
11290
|
-
},{}],
|
|
11357
|
+
},{}],150:[function(require,module,exports){
|
|
11291
11358
|
"use strict";
|
|
11292
11359
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11293
11360
|
exports.ObjetoDeleguaClasse = void 0;
|
|
@@ -11355,7 +11422,7 @@ class ObjetoDeleguaClasse {
|
|
|
11355
11422
|
}
|
|
11356
11423
|
exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
|
|
11357
11424
|
|
|
11358
|
-
},{"../../excecoes":
|
|
11425
|
+
},{"../../excecoes":108}],151:[function(require,module,exports){
|
|
11359
11426
|
"use strict";
|
|
11360
11427
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11361
11428
|
exports.ObjetoPadrao = void 0;
|
|
@@ -11389,7 +11456,7 @@ class ObjetoPadrao {
|
|
|
11389
11456
|
}
|
|
11390
11457
|
exports.ObjetoPadrao = ObjetoPadrao;
|
|
11391
11458
|
|
|
11392
|
-
},{}],
|
|
11459
|
+
},{}],152:[function(require,module,exports){
|
|
11393
11460
|
"use strict";
|
|
11394
11461
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11395
11462
|
exports.ReferenciaMontao = void 0;
|
|
@@ -11414,7 +11481,7 @@ class ReferenciaMontao {
|
|
|
11414
11481
|
}
|
|
11415
11482
|
exports.ReferenciaMontao = ReferenciaMontao;
|
|
11416
11483
|
|
|
11417
|
-
},{}],
|
|
11484
|
+
},{}],153:[function(require,module,exports){
|
|
11418
11485
|
"use strict";
|
|
11419
11486
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
11420
11487
|
if (k2 === undefined) k2 = k;
|
|
@@ -11434,7 +11501,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
11434
11501
|
__exportStar(require("./interpretador"), exports);
|
|
11435
11502
|
__exportStar(require("./interpretador-base"), exports);
|
|
11436
11503
|
|
|
11437
|
-
},{"./interpretador":
|
|
11504
|
+
},{"./interpretador":155,"./interpretador-base":154}],154:[function(require,module,exports){
|
|
11438
11505
|
(function (process){(function (){
|
|
11439
11506
|
"use strict";
|
|
11440
11507
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
@@ -12967,7 +13034,7 @@ class InterpretadorBase {
|
|
|
12967
13034
|
exports.InterpretadorBase = InterpretadorBase;
|
|
12968
13035
|
|
|
12969
13036
|
}).call(this)}).call(this,require('_process'))
|
|
12970
|
-
},{"../avaliador-sintatico":12,"../bibliotecas/primitivas-dicionario":21,"../construtos":
|
|
13037
|
+
},{"../avaliador-sintatico":12,"../bibliotecas/primitivas-dicionario":21,"../construtos":51,"../excecoes":108,"../inferenciador":114,"../lexador":171,"../quebras":178,"../tipos-de-dados/delegua":179,"../tipos-de-dados/primitivos":181,"../tipos-de-simbolos/delegua":184,"./comum":140,"./espaco-memoria":141,"./estruturas":147,"./estruturas/metodo-primitiva":148,"./pilha-escopos-execucao":157,"_process":418,"browser-process-hrtime":364}],155:[function(require,module,exports){
|
|
12971
13038
|
"use strict";
|
|
12972
13039
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12973
13040
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -13755,6 +13822,9 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
13755
13822
|
visitarExpressaoFazer(expressao) {
|
|
13756
13823
|
return this.logicaComumExecucaoFazer(expressao, true);
|
|
13757
13824
|
}
|
|
13825
|
+
visitarExpressaoImportar(expressao) {
|
|
13826
|
+
throw new Error('Importações não são suportadas neste interpretador.');
|
|
13827
|
+
}
|
|
13758
13828
|
async visitarExpressaoListaCompreensao(listaCompreensao) {
|
|
13759
13829
|
const vetorVariavelIteracao = await this.avaliar(listaCompreensao.referenciaVariavelIteracao);
|
|
13760
13830
|
let valorVetorVariavelIteracao = this.resolverValor(vetorVariavelIteracao);
|
|
@@ -13919,7 +13989,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
13919
13989
|
}
|
|
13920
13990
|
exports.Interpretador = Interpretador;
|
|
13921
13991
|
|
|
13922
|
-
},{"../bibliotecas/primitivas-dicionario":21,"../bibliotecas/primitivas-numero":22,"../bibliotecas/primitivas-texto":23,"../bibliotecas/primitivas-vetor":24,"../construtos":
|
|
13992
|
+
},{"../bibliotecas/primitivas-dicionario":21,"../bibliotecas/primitivas-numero":22,"../bibliotecas/primitivas-texto":23,"../bibliotecas/primitivas-vetor":24,"../construtos":51,"../declaracoes":95,"../excecoes":108,"../inferenciador":114,"../quebras":178,"../tipos-de-dados/delegua":179,"../tipos-de-dados/primitivos":181,"./estruturas":147,"./interpretador-base":154,"./montao":156}],156:[function(require,module,exports){
|
|
13923
13993
|
"use strict";
|
|
13924
13994
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13925
13995
|
exports.Montao = void 0;
|
|
@@ -13976,7 +14046,7 @@ class Montao {
|
|
|
13976
14046
|
}
|
|
13977
14047
|
exports.Montao = Montao;
|
|
13978
14048
|
|
|
13979
|
-
},{"../excecoes":
|
|
14049
|
+
},{"../excecoes":108,"../geracao-identificadores":112}],157:[function(require,module,exports){
|
|
13980
14050
|
"use strict";
|
|
13981
14051
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13982
14052
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14264,7 +14334,7 @@ class PilhaEscoposExecucao {
|
|
|
14264
14334
|
}
|
|
14265
14335
|
exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
|
|
14266
14336
|
|
|
14267
|
-
},{"../excecoes":
|
|
14337
|
+
},{"../excecoes":108,"../inferenciador":114,"../lexador":171,"../tipos-de-dados/delegua":179,"./estruturas":147}],158:[function(require,module,exports){
|
|
14268
14338
|
"use strict";
|
|
14269
14339
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14270
14340
|
if (k2 === undefined) k2 = k;
|
|
@@ -14288,7 +14358,7 @@ __exportStar(require("./lexador-guarani"), exports);
|
|
|
14288
14358
|
__exportStar(require("./lexador-portugol-ipt"), exports);
|
|
14289
14359
|
__exportStar(require("./lexador-tenda"), exports);
|
|
14290
14360
|
|
|
14291
|
-
},{"./lexador-calango":
|
|
14361
|
+
},{"./lexador-calango":159,"./lexador-egua-classico":160,"./lexador-guarani":161,"./lexador-pitugues":162,"./lexador-portugol-ipt":163,"./lexador-tenda":164}],159:[function(require,module,exports){
|
|
14292
14362
|
"use strict";
|
|
14293
14363
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14294
14364
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14521,7 +14591,7 @@ class LexadorCalango {
|
|
|
14521
14591
|
}
|
|
14522
14592
|
exports.LexadorCalango = LexadorCalango;
|
|
14523
14593
|
|
|
14524
|
-
},{"../../tipos-de-simbolos/calango":
|
|
14594
|
+
},{"../../tipos-de-simbolos/calango":182,"../simbolo":177,"./palavras-reservadas/calango":165}],160:[function(require,module,exports){
|
|
14525
14595
|
"use strict";
|
|
14526
14596
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14527
14597
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14811,7 +14881,7 @@ class LexadorEguaClassico {
|
|
|
14811
14881
|
}
|
|
14812
14882
|
exports.LexadorEguaClassico = LexadorEguaClassico;
|
|
14813
14883
|
|
|
14814
|
-
},{"../../tipos-de-simbolos/egua-classico":
|
|
14884
|
+
},{"../../tipos-de-simbolos/egua-classico":185,"../simbolo":177,"./palavras-reservadas/egua-classico":166}],161:[function(require,module,exports){
|
|
14815
14885
|
"use strict";
|
|
14816
14886
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14817
14887
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14930,7 +15000,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
|
|
|
14930
15000
|
}
|
|
14931
15001
|
exports.LexadorGuarani = LexadorGuarani;
|
|
14932
15002
|
|
|
14933
|
-
},{"../../tipos-de-simbolos/guarani":
|
|
15003
|
+
},{"../../tipos-de-simbolos/guarani":186,"../lexador-base":173,"./palavras-reservadas/guarani":167}],162:[function(require,module,exports){
|
|
14934
15004
|
"use strict";
|
|
14935
15005
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14936
15006
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -15348,7 +15418,7 @@ class LexadorPitugues {
|
|
|
15348
15418
|
}
|
|
15349
15419
|
exports.LexadorPitugues = LexadorPitugues;
|
|
15350
15420
|
|
|
15351
|
-
},{"../../tipos-de-simbolos/pitugues":
|
|
15421
|
+
},{"../../tipos-de-simbolos/pitugues":188,"../simbolo":177,"./palavras-reservadas/pitugues":168,"browser-process-hrtime":364}],163:[function(require,module,exports){
|
|
15352
15422
|
"use strict";
|
|
15353
15423
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
15354
15424
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -15600,7 +15670,7 @@ class LexadorPortugolIpt {
|
|
|
15600
15670
|
}
|
|
15601
15671
|
exports.LexadorPortugolIpt = LexadorPortugolIpt;
|
|
15602
15672
|
|
|
15603
|
-
},{"../../tipos-de-simbolos/portugol-ipt":
|
|
15673
|
+
},{"../../tipos-de-simbolos/portugol-ipt":189,"../simbolo":177,"./palavras-reservadas/portugol-ipt":169}],164:[function(require,module,exports){
|
|
15604
15674
|
"use strict";
|
|
15605
15675
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
15606
15676
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -15991,7 +16061,7 @@ class LexadorTenda {
|
|
|
15991
16061
|
}
|
|
15992
16062
|
exports.LexadorTenda = LexadorTenda;
|
|
15993
16063
|
|
|
15994
|
-
},{"../../tipos-de-simbolos/tenda":
|
|
16064
|
+
},{"../../tipos-de-simbolos/tenda":190,"../simbolo":177,"./palavras-reservadas/tenda":170,"browser-process-hrtime":364}],165:[function(require,module,exports){
|
|
15995
16065
|
"use strict";
|
|
15996
16066
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
15997
16067
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -16012,7 +16082,7 @@ exports.default = {
|
|
|
16012
16082
|
fimSe: calango_1.default.FIM_SE,
|
|
16013
16083
|
};
|
|
16014
16084
|
|
|
16015
|
-
},{"../../../tipos-de-simbolos/calango":
|
|
16085
|
+
},{"../../../tipos-de-simbolos/calango":182}],166:[function(require,module,exports){
|
|
16016
16086
|
"use strict";
|
|
16017
16087
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16018
16088
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -16053,7 +16123,7 @@ exports.palavrasReservadas = {
|
|
|
16053
16123
|
verdadeiro: egua_classico_1.default.VERDADEIRO,
|
|
16054
16124
|
};
|
|
16055
16125
|
|
|
16056
|
-
},{"../../../tipos-de-simbolos/egua-classico":
|
|
16126
|
+
},{"../../../tipos-de-simbolos/egua-classico":185}],167:[function(require,module,exports){
|
|
16057
16127
|
"use strict";
|
|
16058
16128
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16059
16129
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -16065,7 +16135,7 @@ exports.palavrasReservadas = {
|
|
|
16065
16135
|
hai: guarani_1.default.HAI,
|
|
16066
16136
|
};
|
|
16067
16137
|
|
|
16068
|
-
},{"../../../tipos-de-simbolos/guarani":
|
|
16138
|
+
},{"../../../tipos-de-simbolos/guarani":186}],168:[function(require,module,exports){
|
|
16069
16139
|
"use strict";
|
|
16070
16140
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16071
16141
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -16125,7 +16195,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
16125
16195
|
verdadeiro: pitugues_1.default.VERDADEIRO,
|
|
16126
16196
|
};
|
|
16127
16197
|
|
|
16128
|
-
},{"../../../tipos-de-simbolos/pitugues":
|
|
16198
|
+
},{"../../../tipos-de-simbolos/pitugues":188}],169:[function(require,module,exports){
|
|
16129
16199
|
"use strict";
|
|
16130
16200
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16131
16201
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -16147,7 +16217,7 @@ exports.palavrasReservadas = {
|
|
|
16147
16217
|
senão: portugol_ipt_1.default.SENAO,
|
|
16148
16218
|
};
|
|
16149
16219
|
|
|
16150
|
-
},{"../../../tipos-de-simbolos/portugol-ipt":
|
|
16220
|
+
},{"../../../tipos-de-simbolos/portugol-ipt":189}],170:[function(require,module,exports){
|
|
16151
16221
|
"use strict";
|
|
16152
16222
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16153
16223
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -16205,7 +16275,7 @@ exports.palavrasReservadas = {
|
|
|
16205
16275
|
Texto: tenda_1.default.BIBLIOTECA_GLOBAL,
|
|
16206
16276
|
};
|
|
16207
16277
|
|
|
16208
|
-
},{"../../../tipos-de-simbolos/tenda":
|
|
16278
|
+
},{"../../../tipos-de-simbolos/tenda":190}],171:[function(require,module,exports){
|
|
16209
16279
|
"use strict";
|
|
16210
16280
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16211
16281
|
if (k2 === undefined) k2 = k;
|
|
@@ -16228,7 +16298,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
|
|
|
16228
16298
|
__exportStar(require("./micro-lexador"), exports);
|
|
16229
16299
|
__exportStar(require("./simbolo"), exports);
|
|
16230
16300
|
|
|
16231
|
-
},{"./dialetos":
|
|
16301
|
+
},{"./dialetos":158,"./lexador":174,"./lexador-base-linha-unica":172,"./micro-lexador":175,"./simbolo":177}],172:[function(require,module,exports){
|
|
16232
16302
|
"use strict";
|
|
16233
16303
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16234
16304
|
exports.LexadorBaseLinhaUnica = void 0;
|
|
@@ -16312,7 +16382,7 @@ class LexadorBaseLinhaUnica {
|
|
|
16312
16382
|
}
|
|
16313
16383
|
exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
|
|
16314
16384
|
|
|
16315
|
-
},{"./simbolo":
|
|
16385
|
+
},{"./simbolo":177}],173:[function(require,module,exports){
|
|
16316
16386
|
"use strict";
|
|
16317
16387
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16318
16388
|
exports.LexadorBase = void 0;
|
|
@@ -16426,7 +16496,7 @@ class LexadorBase {
|
|
|
16426
16496
|
}
|
|
16427
16497
|
exports.LexadorBase = LexadorBase;
|
|
16428
16498
|
|
|
16429
|
-
},{"./simbolo":
|
|
16499
|
+
},{"./simbolo":177}],174:[function(require,module,exports){
|
|
16430
16500
|
"use strict";
|
|
16431
16501
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16432
16502
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -16887,7 +16957,7 @@ class Lexador {
|
|
|
16887
16957
|
}
|
|
16888
16958
|
exports.Lexador = Lexador;
|
|
16889
16959
|
|
|
16890
|
-
},{"../tipos-de-simbolos/delegua":
|
|
16960
|
+
},{"../tipos-de-simbolos/delegua":184,"./palavras-reservadas":176,"./simbolo":177,"browser-process-hrtime":364}],175:[function(require,module,exports){
|
|
16891
16961
|
"use strict";
|
|
16892
16962
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16893
16963
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -17110,7 +17180,7 @@ class MicroLexador {
|
|
|
17110
17180
|
}
|
|
17111
17181
|
exports.MicroLexador = MicroLexador;
|
|
17112
17182
|
|
|
17113
|
-
},{"../tipos-de-simbolos/microgramaticas/delegua":
|
|
17183
|
+
},{"../tipos-de-simbolos/microgramaticas/delegua":187,"./palavras-reservadas":176,"./simbolo":177}],176:[function(require,module,exports){
|
|
17114
17184
|
"use strict";
|
|
17115
17185
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
17116
17186
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -17161,6 +17231,7 @@ exports.palavrasReservadas = {
|
|
|
17161
17231
|
tendo: delegua_1.default.TENDO,
|
|
17162
17232
|
tente: delegua_1.default.TENTE,
|
|
17163
17233
|
tipo: delegua_1.default.TIPO,
|
|
17234
|
+
tudo: delegua_1.default.TUDO,
|
|
17164
17235
|
var: delegua_1.default.VARIAVEL,
|
|
17165
17236
|
variavel: delegua_1.default.VARIAVEL,
|
|
17166
17237
|
variável: delegua_1.default.VARIAVEL,
|
|
@@ -17175,7 +17246,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
17175
17246
|
verdadeiro: delegua_1.default.VERDADEIRO,
|
|
17176
17247
|
};
|
|
17177
17248
|
|
|
17178
|
-
},{"../tipos-de-simbolos/delegua":
|
|
17249
|
+
},{"../tipos-de-simbolos/delegua":184}],177:[function(require,module,exports){
|
|
17179
17250
|
"use strict";
|
|
17180
17251
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17181
17252
|
exports.Simbolo = void 0;
|
|
@@ -17193,7 +17264,7 @@ class Simbolo {
|
|
|
17193
17264
|
}
|
|
17194
17265
|
exports.Simbolo = Simbolo;
|
|
17195
17266
|
|
|
17196
|
-
},{}],
|
|
17267
|
+
},{}],178:[function(require,module,exports){
|
|
17197
17268
|
"use strict";
|
|
17198
17269
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17199
17270
|
exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
|
|
@@ -17218,7 +17289,7 @@ class ContinuarQuebra extends Quebra {
|
|
|
17218
17289
|
}
|
|
17219
17290
|
exports.ContinuarQuebra = ContinuarQuebra;
|
|
17220
17291
|
|
|
17221
|
-
},{}],
|
|
17292
|
+
},{}],179:[function(require,module,exports){
|
|
17222
17293
|
"use strict";
|
|
17223
17294
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17224
17295
|
exports.default = {
|
|
@@ -17248,7 +17319,7 @@ exports.default = {
|
|
|
17248
17319
|
VETOR_TEXTO: 'texto[]',
|
|
17249
17320
|
};
|
|
17250
17321
|
|
|
17251
|
-
},{}],
|
|
17322
|
+
},{}],180:[function(require,module,exports){
|
|
17252
17323
|
"use strict";
|
|
17253
17324
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17254
17325
|
exports.default = {
|
|
@@ -17278,7 +17349,7 @@ exports.default = {
|
|
|
17278
17349
|
VETOR_TEXTO: 'texto[]',
|
|
17279
17350
|
};
|
|
17280
17351
|
|
|
17281
|
-
},{}],
|
|
17352
|
+
},{}],181:[function(require,module,exports){
|
|
17282
17353
|
"use strict";
|
|
17283
17354
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17284
17355
|
exports.default = {
|
|
@@ -17297,7 +17368,7 @@ exports.default = {
|
|
|
17297
17368
|
TEXTO: 'string',
|
|
17298
17369
|
};
|
|
17299
17370
|
|
|
17300
|
-
},{}],
|
|
17371
|
+
},{}],182:[function(require,module,exports){
|
|
17301
17372
|
"use strict";
|
|
17302
17373
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17303
17374
|
exports.default = {
|
|
@@ -17341,7 +17412,7 @@ exports.default = {
|
|
|
17341
17412
|
VIRGULA: 'VIRGULA',
|
|
17342
17413
|
};
|
|
17343
17414
|
|
|
17344
|
-
},{}],
|
|
17415
|
+
},{}],183:[function(require,module,exports){
|
|
17345
17416
|
"use strict";
|
|
17346
17417
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17347
17418
|
exports.default = {
|
|
@@ -17367,7 +17438,7 @@ exports.default = {
|
|
|
17367
17438
|
VIRGULA: 'VIRGULA',
|
|
17368
17439
|
};
|
|
17369
17440
|
|
|
17370
|
-
},{}],
|
|
17441
|
+
},{}],184:[function(require,module,exports){
|
|
17371
17442
|
"use strict";
|
|
17372
17443
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17373
17444
|
exports.default = {
|
|
@@ -17458,12 +17529,13 @@ exports.default = {
|
|
|
17458
17529
|
TENTE: 'TENTE',
|
|
17459
17530
|
TEXTO: 'TEXTO',
|
|
17460
17531
|
TIPO: 'TIPO',
|
|
17532
|
+
TUDO: 'TUDO',
|
|
17461
17533
|
VARIAVEL: 'VARIAVEL',
|
|
17462
17534
|
VERDADEIRO: 'VERDADEIRO',
|
|
17463
17535
|
VIRGULA: 'VIRGULA',
|
|
17464
17536
|
};
|
|
17465
17537
|
|
|
17466
|
-
},{}],
|
|
17538
|
+
},{}],185:[function(require,module,exports){
|
|
17467
17539
|
"use strict";
|
|
17468
17540
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17469
17541
|
exports.default = {
|
|
@@ -17541,7 +17613,7 @@ exports.default = {
|
|
|
17541
17613
|
VIRGULA: 'VIRGULA',
|
|
17542
17614
|
};
|
|
17543
17615
|
|
|
17544
|
-
},{}],
|
|
17616
|
+
},{}],186:[function(require,module,exports){
|
|
17545
17617
|
"use strict";
|
|
17546
17618
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17547
17619
|
exports.default = {
|
|
@@ -17558,7 +17630,7 @@ exports.default = {
|
|
|
17558
17630
|
VIRGULA: 'VIRGULA',
|
|
17559
17631
|
};
|
|
17560
17632
|
|
|
17561
|
-
},{}],
|
|
17633
|
+
},{}],187:[function(require,module,exports){
|
|
17562
17634
|
"use strict";
|
|
17563
17635
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17564
17636
|
exports.default = {
|
|
@@ -17607,7 +17679,7 @@ exports.default = {
|
|
|
17607
17679
|
VIRGULA: 'VIRGULA',
|
|
17608
17680
|
};
|
|
17609
17681
|
|
|
17610
|
-
},{}],
|
|
17682
|
+
},{}],188:[function(require,module,exports){
|
|
17611
17683
|
"use strict";
|
|
17612
17684
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17613
17685
|
exports.default = {
|
|
@@ -17691,7 +17763,7 @@ exports.default = {
|
|
|
17691
17763
|
VIRGULA: 'VIRGULA',
|
|
17692
17764
|
};
|
|
17693
17765
|
|
|
17694
|
-
},{}],
|
|
17766
|
+
},{}],189:[function(require,module,exports){
|
|
17695
17767
|
"use strict";
|
|
17696
17768
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17697
17769
|
exports.default = {
|
|
@@ -17730,7 +17802,7 @@ exports.default = {
|
|
|
17730
17802
|
VIRGULA: 'VIRGULA',
|
|
17731
17803
|
};
|
|
17732
17804
|
|
|
17733
|
-
},{}],
|
|
17805
|
+
},{}],190:[function(require,module,exports){
|
|
17734
17806
|
"use strict";
|
|
17735
17807
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17736
17808
|
// Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
|
|
@@ -17825,7 +17897,7 @@ exports.default = {
|
|
|
17825
17897
|
VIRGULA: 'VIRGULA',
|
|
17826
17898
|
};
|
|
17827
17899
|
|
|
17828
|
-
},{}],
|
|
17900
|
+
},{}],191:[function(require,module,exports){
|
|
17829
17901
|
"use strict";
|
|
17830
17902
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
17831
17903
|
if (k2 === undefined) k2 = k;
|
|
@@ -17852,7 +17924,7 @@ __exportStar(require("./tradutor-reverso-javascript"), exports);
|
|
|
17852
17924
|
__exportStar(require("./tradutor-reverso-python"), exports);
|
|
17853
17925
|
__exportStar(require("./tradutor-reverso-tenda"), exports);
|
|
17854
17926
|
|
|
17855
|
-
},{"./tradutor-assemblyscript":
|
|
17927
|
+
},{"./tradutor-assemblyscript":194,"./tradutor-calango":195,"./tradutor-javascript":196,"./tradutor-mermaidjs":197,"./tradutor-portugol-ipt":198,"./tradutor-python":199,"./tradutor-reverso-javascript":200,"./tradutor-reverso-python":201,"./tradutor-reverso-tenda":202}],192:[function(require,module,exports){
|
|
17856
17928
|
"use strict";
|
|
17857
17929
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
17858
17930
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -19092,7 +19164,7 @@ __decorate([
|
|
|
19092
19164
|
Decorators_1.Override
|
|
19093
19165
|
], Python3Lexer.prototype, "nextToken", null);
|
|
19094
19166
|
|
|
19095
|
-
},{"./python3-parser":
|
|
19167
|
+
},{"./python3-parser":193,"antlr4ts/CommonToken":212,"antlr4ts/Decorators":216,"antlr4ts/Lexer":224,"antlr4ts/Token":241,"antlr4ts/VocabularyImpl":247,"antlr4ts/atn/ATNDeserializer":253,"antlr4ts/atn/LexerATNSimulator":274,"antlr4ts/misc/Utils":335}],193:[function(require,module,exports){
|
|
19096
19168
|
"use strict";
|
|
19097
19169
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
19098
19170
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -30339,7 +30411,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
30339
30411
|
}
|
|
30340
30412
|
exports.Yield_argContext = Yield_argContext;
|
|
30341
30413
|
|
|
30342
|
-
},{"antlr4ts/FailedPredicateException":
|
|
30414
|
+
},{"antlr4ts/FailedPredicateException":220,"antlr4ts/NoViableAltException":228,"antlr4ts/Parser":229,"antlr4ts/ParserRuleContext":232,"antlr4ts/RecognitionException":235,"antlr4ts/Token":241,"antlr4ts/VocabularyImpl":247,"antlr4ts/atn/ATN":249,"antlr4ts/atn/ATNDeserializer":253,"antlr4ts/atn/ParserATNSimulator":290,"antlr4ts/misc/Utils":335}],194:[function(require,module,exports){
|
|
30343
30415
|
"use strict";
|
|
30344
30416
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
30345
30417
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -30974,7 +31046,7 @@ class TradutorAssemblyScript {
|
|
|
30974
31046
|
}
|
|
30975
31047
|
exports.TradutorAssemblyScript = TradutorAssemblyScript;
|
|
30976
31048
|
|
|
30977
|
-
},{"../construtos":
|
|
31049
|
+
},{"../construtos":51,"../declaracoes":95,"../tipos-de-simbolos/delegua":184}],195:[function(require,module,exports){
|
|
30978
31050
|
"use strict";
|
|
30979
31051
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30980
31052
|
exports.TradutorCalango = void 0;
|
|
@@ -31036,7 +31108,7 @@ class TradutorCalango {
|
|
|
31036
31108
|
}
|
|
31037
31109
|
exports.TradutorCalango = TradutorCalango;
|
|
31038
31110
|
|
|
31039
|
-
},{"../avaliador-sintatico/dialetos/avaliador-sintatico-calango":4,"../lexador/dialetos":
|
|
31111
|
+
},{"../avaliador-sintatico/dialetos/avaliador-sintatico-calango":4,"../lexador/dialetos":158}],196:[function(require,module,exports){
|
|
31040
31112
|
"use strict";
|
|
31041
31113
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
31042
31114
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -31055,13 +31127,13 @@ class TradutorJavaScript {
|
|
|
31055
31127
|
constructor() {
|
|
31056
31128
|
this.indentacao = 0;
|
|
31057
31129
|
this.dicionarioConstrutos = {
|
|
31058
|
-
AcessoIndiceVariavel: this.
|
|
31059
|
-
AcessoMetodo: this.
|
|
31060
|
-
AcessoMetodoOuPropriedade: this.
|
|
31061
|
-
AcessoPropriedade: this.
|
|
31130
|
+
AcessoIndiceVariavel: this.traduzirExpressaoAcessoIndiceVariavel.bind(this),
|
|
31131
|
+
AcessoMetodo: this.traduzirExpressaoAcessoMetodo.bind(this),
|
|
31132
|
+
AcessoMetodoOuPropriedade: this.traduzirExpressaoAcessoMetodoOuPropriedade.bind(this),
|
|
31133
|
+
AcessoPropriedade: this.traduzirExpressaoAcessoPropriedade.bind(this),
|
|
31062
31134
|
Agrupamento: this.traduzirConstrutoAgrupamento.bind(this),
|
|
31063
|
-
ArgumentoReferenciaFuncao: this.
|
|
31064
|
-
AtribuicaoPorIndice: this.
|
|
31135
|
+
ArgumentoReferenciaFuncao: this.traduzirExpressaoArgumentoReferenciaFuncao.bind(this),
|
|
31136
|
+
AtribuicaoPorIndice: this.traduzirExpressaoAtribuicaoPorIndice.bind(this),
|
|
31065
31137
|
Atribuir: this.traduzirConstrutoAtribuir.bind(this),
|
|
31066
31138
|
Binario: this.traduzirConstrutoBinario.bind(this),
|
|
31067
31139
|
ComentarioComoConstruto: this.traduzirDeclaracaoComentario.bind(this),
|
|
@@ -31069,11 +31141,12 @@ class TradutorJavaScript {
|
|
|
31069
31141
|
DefinirValor: this.traduzirConstrutoDefinirValor.bind(this),
|
|
31070
31142
|
Dicionario: this.traduzirConstrutoDicionario.bind(this),
|
|
31071
31143
|
FuncaoConstruto: this.traduzirFuncaoConstruto.bind(this),
|
|
31144
|
+
ImportarComoConstruto: this.traduzirExpressaoImportar.bind(this),
|
|
31072
31145
|
Isto: () => 'this',
|
|
31073
|
-
Leia: this.
|
|
31146
|
+
Leia: this.traduzirExpressaoLeia.bind(this),
|
|
31074
31147
|
Literal: this.traduzirConstrutoLiteral.bind(this),
|
|
31075
|
-
Logico: this.
|
|
31076
|
-
ReferenciaFuncao: this.
|
|
31148
|
+
Logico: this.traduzirExpressaoLogica.bind(this),
|
|
31149
|
+
ReferenciaFuncao: this.traduzirExpressaoReferenciaFuncao.bind(this),
|
|
31077
31150
|
Separador: this.traduzirConstrutoSeparador.bind(this),
|
|
31078
31151
|
TipoDe: this.traduzirConstrutoTipoDe.bind(this),
|
|
31079
31152
|
Unario: this.traduzirConstrutoUnario.bind(this),
|
|
@@ -31459,7 +31532,7 @@ class TradutorJavaScript {
|
|
|
31459
31532
|
traduzirDeclaracaoImportar(declaracaoImportar) {
|
|
31460
31533
|
return `'importar() não é suportado por este padrão de JavaScript'`;
|
|
31461
31534
|
}
|
|
31462
|
-
|
|
31535
|
+
traduzirExpressaoLeia(declaracaoLeia) {
|
|
31463
31536
|
return `'leia() não é suportado por este padrão de JavaScript.'`;
|
|
31464
31537
|
}
|
|
31465
31538
|
traduzirDeclaracaoParaCada(declaracaoParaCada) {
|
|
@@ -31579,12 +31652,7 @@ class TradutorJavaScript {
|
|
|
31579
31652
|
resultado += ';';
|
|
31580
31653
|
else {
|
|
31581
31654
|
resultado += ' = ';
|
|
31582
|
-
|
|
31583
|
-
resultado += this.dicionarioConstrutos[declaracaoVar.inicializador.constructor.name](declaracaoVar.inicializador);
|
|
31584
|
-
}
|
|
31585
|
-
else {
|
|
31586
|
-
resultado += this.dicionarioDeclaracoes[declaracaoVar.inicializador.constructor.name](declaracaoVar.inicializador);
|
|
31587
|
-
}
|
|
31655
|
+
resultado += this.dicionarioConstrutos[declaracaoVar.inicializador.constructor.name](declaracaoVar.inicializador);
|
|
31588
31656
|
if (adicionarPontoEVirgula)
|
|
31589
31657
|
resultado += ';';
|
|
31590
31658
|
}
|
|
@@ -31594,7 +31662,7 @@ class TradutorJavaScript {
|
|
|
31594
31662
|
traduzirFuncaoAnonimaParaLambda(argumento) {
|
|
31595
31663
|
return '';
|
|
31596
31664
|
}
|
|
31597
|
-
|
|
31665
|
+
traduzirExpressaoAcessoMetodoVetor(objeto, nomeMetodo, argumentos) {
|
|
31598
31666
|
const objetoResolvido = this.dicionarioConstrutos[objeto.constructor.name](objeto);
|
|
31599
31667
|
const argumentosResolvidos = [];
|
|
31600
31668
|
for (const argumento of argumentos) {
|
|
@@ -31631,7 +31699,7 @@ class TradutorJavaScript {
|
|
|
31631
31699
|
return `len(${objetoResolvido})`;
|
|
31632
31700
|
}
|
|
31633
31701
|
}
|
|
31634
|
-
|
|
31702
|
+
traduzirExpressaoAcessoMetodo(acessoMetodo, argumentos) {
|
|
31635
31703
|
switch (acessoMetodo.objeto.constructor.name) {
|
|
31636
31704
|
case 'Isto':
|
|
31637
31705
|
return `this.${acessoMetodo.nomeMetodo}`;
|
|
@@ -31639,20 +31707,20 @@ class TradutorJavaScript {
|
|
|
31639
31707
|
let objetoVariavel = acessoMetodo.objeto;
|
|
31640
31708
|
return this.traduzirFuncaoOuMetodo(acessoMetodo.nomeMetodo, objetoVariavel.simbolo.lexema, argumentos);
|
|
31641
31709
|
case 'Vetor':
|
|
31642
|
-
return this.
|
|
31710
|
+
return this.traduzirExpressaoAcessoMetodoVetor(acessoMetodo.objeto, acessoMetodo.nomeMetodo, argumentos);
|
|
31643
31711
|
default:
|
|
31644
31712
|
const objetoResolvido = this.dicionarioConstrutos[acessoMetodo.objeto.constructor.name](acessoMetodo.objeto);
|
|
31645
31713
|
return `${objetoResolvido}.${acessoMetodo.nomeMetodo}`;
|
|
31646
31714
|
}
|
|
31647
31715
|
}
|
|
31648
|
-
|
|
31716
|
+
traduzirExpressaoAcessoMetodoOuPropriedade(acessoMetodo, argumentos) {
|
|
31649
31717
|
if (acessoMetodo.objeto instanceof construtos_1.Variavel) {
|
|
31650
31718
|
let objetoVariavel = acessoMetodo.objeto;
|
|
31651
31719
|
return `${this.traduzirFuncaoOuMetodo(acessoMetodo.simbolo.lexema, objetoVariavel.simbolo.lexema, argumentos)}`;
|
|
31652
31720
|
}
|
|
31653
31721
|
return `this.${acessoMetodo.simbolo.lexema}`;
|
|
31654
31722
|
}
|
|
31655
|
-
|
|
31723
|
+
traduzirExpressaoAcessoPropriedade(acessoMetodo, argumentos) {
|
|
31656
31724
|
if (acessoMetodo.objeto instanceof construtos_1.Variavel) {
|
|
31657
31725
|
let objetoVariavel = acessoMetodo.objeto;
|
|
31658
31726
|
return `${this.traduzirFuncaoOuMetodo(objetoVariavel.simbolo.lexema, acessoMetodo.nomePropriedade, argumentos)}`;
|
|
@@ -31671,14 +31739,14 @@ class TradutorJavaScript {
|
|
|
31671
31739
|
resultado += this.logicaComumBlocoEscopo(funcaoConstruto.corpo);
|
|
31672
31740
|
return resultado;
|
|
31673
31741
|
}
|
|
31674
|
-
|
|
31742
|
+
traduzirExpressaoLogica(logico) {
|
|
31675
31743
|
let direita = this.dicionarioConstrutos[logico.direita.constructor.name](logico.direita);
|
|
31676
31744
|
let operador = this.traduzirSimboloOperador(logico.operador);
|
|
31677
31745
|
let esquerda = this.dicionarioConstrutos[logico.esquerda.constructor.name](logico.esquerda);
|
|
31678
31746
|
return `${direita} ${operador} ${esquerda}`;
|
|
31679
31747
|
}
|
|
31680
31748
|
// TODO: Eliminar o soft cast para `any`.
|
|
31681
|
-
|
|
31749
|
+
traduzirExpressaoAtribuicaoPorIndice(AtribuicaoPorIndice) {
|
|
31682
31750
|
var _a, _b;
|
|
31683
31751
|
let resultado = '';
|
|
31684
31752
|
resultado += AtribuicaoPorIndice.objeto.simbolo.lexema + '[';
|
|
@@ -31693,13 +31761,13 @@ class TradutorJavaScript {
|
|
|
31693
31761
|
}
|
|
31694
31762
|
return resultado;
|
|
31695
31763
|
}
|
|
31696
|
-
|
|
31764
|
+
traduzirExpressaoAcessoIndiceVariavel(acessoIndiceVariavel) {
|
|
31697
31765
|
let resultado = '';
|
|
31698
31766
|
resultado += this.dicionarioConstrutos[acessoIndiceVariavel.entidadeChamada.constructor.name](acessoIndiceVariavel.entidadeChamada);
|
|
31699
31767
|
resultado += `[${this.dicionarioConstrutos[acessoIndiceVariavel.indice.constructor.name](acessoIndiceVariavel.indice)}]`;
|
|
31700
31768
|
return resultado;
|
|
31701
31769
|
}
|
|
31702
|
-
|
|
31770
|
+
traduzirExpressaoArgumentoReferenciaFuncao(argumentoReferenciaFuncao, argumentos) {
|
|
31703
31771
|
const argumentosResolvidos = [];
|
|
31704
31772
|
for (const argumento of argumentos) {
|
|
31705
31773
|
const argumentoResolvido = this.dicionarioConstrutos[argumento.constructor.name](argumento);
|
|
@@ -31709,7 +31777,10 @@ class TradutorJavaScript {
|
|
|
31709
31777
|
textoArgumentos = textoArgumentos.slice(0, -2);
|
|
31710
31778
|
return `${argumentoReferenciaFuncao.simboloFuncao.lexema}(${textoArgumentos})`;
|
|
31711
31779
|
}
|
|
31712
|
-
|
|
31780
|
+
traduzirExpressaoImportar(_) {
|
|
31781
|
+
return `'importar() não é suportado por este padrão de JavaScript'`;
|
|
31782
|
+
}
|
|
31783
|
+
traduzirExpressaoReferenciaFuncao(referenciaFuncao, argumentos) {
|
|
31713
31784
|
const argumentosResolvidos = [];
|
|
31714
31785
|
for (const argumento of argumentos) {
|
|
31715
31786
|
const argumentoResolvido = this.dicionarioConstrutos[argumento.constructor.name](argumento);
|
|
@@ -31780,7 +31851,7 @@ class TradutorJavaScript {
|
|
|
31780
31851
|
}
|
|
31781
31852
|
exports.TradutorJavaScript = TradutorJavaScript;
|
|
31782
31853
|
|
|
31783
|
-
},{"../construtos":
|
|
31854
|
+
},{"../construtos":51,"../declaracoes":95,"../tipos-de-simbolos/delegua":184}],197:[function(require,module,exports){
|
|
31784
31855
|
"use strict";
|
|
31785
31856
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
31786
31857
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -32234,7 +32305,7 @@ class TradutorMermaidJs {
|
|
|
32234
32305
|
}
|
|
32235
32306
|
exports.TradutorMermaidJs = TradutorMermaidJs;
|
|
32236
32307
|
|
|
32237
|
-
},{"../tipos-de-simbolos/delegua":
|
|
32308
|
+
},{"../tipos-de-simbolos/delegua":184}],198:[function(require,module,exports){
|
|
32238
32309
|
"use strict";
|
|
32239
32310
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
32240
32311
|
exports.TradutorPortugolIpt = void 0;
|
|
@@ -32296,7 +32367,7 @@ class TradutorPortugolIpt {
|
|
|
32296
32367
|
}
|
|
32297
32368
|
exports.TradutorPortugolIpt = TradutorPortugolIpt;
|
|
32298
32369
|
|
|
32299
|
-
},{"../avaliador-sintatico/dialetos":9,"../lexador/dialetos":
|
|
32370
|
+
},{"../avaliador-sintatico/dialetos":9,"../lexador/dialetos":158}],199:[function(require,module,exports){
|
|
32300
32371
|
"use strict";
|
|
32301
32372
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
32302
32373
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -32938,7 +33009,7 @@ class TradutorPython {
|
|
|
32938
33009
|
}
|
|
32939
33010
|
exports.TradutorPython = TradutorPython;
|
|
32940
33011
|
|
|
32941
|
-
},{"../construtos":
|
|
33012
|
+
},{"../construtos":51,"../declaracoes":95,"../tipos-de-simbolos/delegua":184}],200:[function(require,module,exports){
|
|
32942
33013
|
"use strict";
|
|
32943
33014
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
32944
33015
|
exports.TradutorReversoJavaScript = void 0;
|
|
@@ -33335,7 +33406,7 @@ class TradutorReversoJavaScript {
|
|
|
33335
33406
|
}
|
|
33336
33407
|
exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
|
|
33337
33408
|
|
|
33338
|
-
},{}],
|
|
33409
|
+
},{}],201:[function(require,module,exports){
|
|
33339
33410
|
"use strict";
|
|
33340
33411
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
33341
33412
|
exports.TradutorReversoPython = void 0;
|
|
@@ -33408,7 +33479,7 @@ class TradutorReversoPython {
|
|
|
33408
33479
|
}
|
|
33409
33480
|
exports.TradutorReversoPython = TradutorReversoPython;
|
|
33410
33481
|
|
|
33411
|
-
},{"./python/python3-lexer":
|
|
33482
|
+
},{"./python/python3-lexer":192,"./python/python3-parser":193,"antlr4ts":318,"antlr4ts/tree/ParseTreeWalker":337}],202:[function(require,module,exports){
|
|
33412
33483
|
"use strict";
|
|
33413
33484
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
33414
33485
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -34002,7 +34073,7 @@ class TradutorReversoTenda {
|
|
|
34002
34073
|
}
|
|
34003
34074
|
exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
34004
34075
|
|
|
34005
|
-
},{"../construtos":
|
|
34076
|
+
},{"../construtos":51,"../tipos-de-simbolos/tenda":190}],203:[function(require,module,exports){
|
|
34006
34077
|
"use strict";
|
|
34007
34078
|
/*!
|
|
34008
34079
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34010,7 +34081,7 @@ exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
|
34010
34081
|
*/
|
|
34011
34082
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34012
34083
|
|
|
34013
|
-
},{}],
|
|
34084
|
+
},{}],204:[function(require,module,exports){
|
|
34014
34085
|
"use strict";
|
|
34015
34086
|
/*!
|
|
34016
34087
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34018,7 +34089,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
34018
34089
|
*/
|
|
34019
34090
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34020
34091
|
|
|
34021
|
-
},{}],
|
|
34092
|
+
},{}],205:[function(require,module,exports){
|
|
34022
34093
|
"use strict";
|
|
34023
34094
|
/*!
|
|
34024
34095
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34180,7 +34251,7 @@ __decorate([
|
|
|
34180
34251
|
], ANTLRInputStream.prototype, "toString", null);
|
|
34181
34252
|
exports.ANTLRInputStream = ANTLRInputStream;
|
|
34182
34253
|
|
|
34183
|
-
},{"./Decorators":
|
|
34254
|
+
},{"./Decorators":216,"./IntStream":222,"assert":359}],206:[function(require,module,exports){
|
|
34184
34255
|
"use strict";
|
|
34185
34256
|
/*!
|
|
34186
34257
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34263,7 +34334,7 @@ __decorate([
|
|
|
34263
34334
|
], BailErrorStrategy.prototype, "sync", null);
|
|
34264
34335
|
exports.BailErrorStrategy = BailErrorStrategy;
|
|
34265
34336
|
|
|
34266
|
-
},{"./Decorators":
|
|
34337
|
+
},{"./Decorators":216,"./DefaultErrorStrategy":217,"./InputMismatchException":221,"./misc/ParseCancellationException":333}],207:[function(require,module,exports){
|
|
34267
34338
|
"use strict";
|
|
34268
34339
|
/*!
|
|
34269
34340
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34753,7 +34824,7 @@ BufferedTokenStream = __decorate([
|
|
|
34753
34824
|
], BufferedTokenStream);
|
|
34754
34825
|
exports.BufferedTokenStream = BufferedTokenStream;
|
|
34755
34826
|
|
|
34756
|
-
},{"./CommonToken":
|
|
34827
|
+
},{"./CommonToken":212,"./Decorators":216,"./Lexer":224,"./Token":241,"./misc/Interval":328,"assert":359}],208:[function(require,module,exports){
|
|
34757
34828
|
"use strict";
|
|
34758
34829
|
/*!
|
|
34759
34830
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34761,7 +34832,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
|
|
|
34761
34832
|
*/
|
|
34762
34833
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34763
34834
|
|
|
34764
|
-
},{}],
|
|
34835
|
+
},{}],209:[function(require,module,exports){
|
|
34765
34836
|
"use strict";
|
|
34766
34837
|
/*!
|
|
34767
34838
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -34895,7 +34966,7 @@ var CharStreams;
|
|
|
34895
34966
|
// }
|
|
34896
34967
|
})(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
|
|
34897
34968
|
|
|
34898
|
-
},{"./CodePointBuffer":
|
|
34969
|
+
},{"./CodePointBuffer":210,"./CodePointCharStream":211,"./IntStream":222}],210:[function(require,module,exports){
|
|
34899
34970
|
"use strict";
|
|
34900
34971
|
/*!
|
|
34901
34972
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35130,7 +35201,7 @@ exports.CodePointBuffer = CodePointBuffer;
|
|
|
35130
35201
|
CodePointBuffer.Builder = Builder;
|
|
35131
35202
|
})(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
|
|
35132
35203
|
|
|
35133
|
-
},{"./misc/Character":
|
|
35204
|
+
},{"./misc/Character":324,"assert":359}],211:[function(require,module,exports){
|
|
35134
35205
|
"use strict";
|
|
35135
35206
|
/*!
|
|
35136
35207
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35280,7 +35351,7 @@ __decorate([
|
|
|
35280
35351
|
], CodePointCharStream.prototype, "getText", null);
|
|
35281
35352
|
exports.CodePointCharStream = CodePointCharStream;
|
|
35282
35353
|
|
|
35283
|
-
},{"./Decorators":
|
|
35354
|
+
},{"./Decorators":216,"./IntStream":222,"./misc/Interval":328,"assert":359}],212:[function(require,module,exports){
|
|
35284
35355
|
"use strict";
|
|
35285
35356
|
/*!
|
|
35286
35357
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35510,7 +35581,7 @@ CommonToken = __decorate([
|
|
|
35510
35581
|
], CommonToken);
|
|
35511
35582
|
exports.CommonToken = CommonToken;
|
|
35512
35583
|
|
|
35513
|
-
},{"./Decorators":
|
|
35584
|
+
},{"./Decorators":216,"./Token":241,"./misc/Interval":328}],213:[function(require,module,exports){
|
|
35514
35585
|
"use strict";
|
|
35515
35586
|
/*!
|
|
35516
35587
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35574,7 +35645,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
|
|
|
35574
35645
|
CommonTokenFactory.DEFAULT = new CommonTokenFactory();
|
|
35575
35646
|
})(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
|
|
35576
35647
|
|
|
35577
|
-
},{"./CommonToken":
|
|
35648
|
+
},{"./CommonToken":212,"./Decorators":216,"./misc/Interval":328}],214:[function(require,module,exports){
|
|
35578
35649
|
"use strict";
|
|
35579
35650
|
/*!
|
|
35580
35651
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35701,7 +35772,7 @@ CommonTokenStream = __decorate([
|
|
|
35701
35772
|
], CommonTokenStream);
|
|
35702
35773
|
exports.CommonTokenStream = CommonTokenStream;
|
|
35703
35774
|
|
|
35704
|
-
},{"./BufferedTokenStream":
|
|
35775
|
+
},{"./BufferedTokenStream":207,"./Decorators":216,"./Token":241}],215:[function(require,module,exports){
|
|
35705
35776
|
"use strict";
|
|
35706
35777
|
/*!
|
|
35707
35778
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35735,7 +35806,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
|
|
|
35735
35806
|
*/
|
|
35736
35807
|
ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
|
|
35737
35808
|
|
|
35738
|
-
},{}],
|
|
35809
|
+
},{}],216:[function(require,module,exports){
|
|
35739
35810
|
"use strict";
|
|
35740
35811
|
/*!
|
|
35741
35812
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -35762,7 +35833,7 @@ function SuppressWarnings(options) {
|
|
|
35762
35833
|
}
|
|
35763
35834
|
exports.SuppressWarnings = SuppressWarnings;
|
|
35764
35835
|
|
|
35765
|
-
},{}],
|
|
35836
|
+
},{}],217:[function(require,module,exports){
|
|
35766
35837
|
"use strict";
|
|
35767
35838
|
/*!
|
|
35768
35839
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36576,7 +36647,7 @@ __decorate([
|
|
|
36576
36647
|
], DefaultErrorStrategy.prototype, "consumeUntil", null);
|
|
36577
36648
|
exports.DefaultErrorStrategy = DefaultErrorStrategy;
|
|
36578
36649
|
|
|
36579
|
-
},{"./Decorators":
|
|
36650
|
+
},{"./Decorators":216,"./FailedPredicateException":220,"./InputMismatchException":221,"./NoViableAltException":228,"./Token":241,"./atn/ATNState":255,"./atn/ATNStateType":256,"./atn/PredictionContext":296,"./misc/IntervalSet":329}],218:[function(require,module,exports){
|
|
36580
36651
|
"use strict";
|
|
36581
36652
|
/*!
|
|
36582
36653
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36652,7 +36723,7 @@ var Dependents;
|
|
|
36652
36723
|
Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
|
|
36653
36724
|
})(Dependents = exports.Dependents || (exports.Dependents = {}));
|
|
36654
36725
|
|
|
36655
|
-
},{}],
|
|
36726
|
+
},{}],219:[function(require,module,exports){
|
|
36656
36727
|
"use strict";
|
|
36657
36728
|
/*!
|
|
36658
36729
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36800,7 +36871,7 @@ __decorate([
|
|
|
36800
36871
|
], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
|
|
36801
36872
|
exports.DiagnosticErrorListener = DiagnosticErrorListener;
|
|
36802
36873
|
|
|
36803
|
-
},{"./Decorators":
|
|
36874
|
+
},{"./Decorators":216,"./misc/BitSet":323,"./misc/Interval":328}],220:[function(require,module,exports){
|
|
36804
36875
|
"use strict";
|
|
36805
36876
|
/*!
|
|
36806
36877
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36865,7 +36936,7 @@ FailedPredicateException = __decorate([
|
|
|
36865
36936
|
], FailedPredicateException);
|
|
36866
36937
|
exports.FailedPredicateException = FailedPredicateException;
|
|
36867
36938
|
|
|
36868
|
-
},{"./Decorators":
|
|
36939
|
+
},{"./Decorators":216,"./RecognitionException":235,"./atn/PredicateTransition":295}],221:[function(require,module,exports){
|
|
36869
36940
|
"use strict";
|
|
36870
36941
|
/*!
|
|
36871
36942
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36905,7 +36976,7 @@ InputMismatchException = __decorate([
|
|
|
36905
36976
|
], InputMismatchException);
|
|
36906
36977
|
exports.InputMismatchException = InputMismatchException;
|
|
36907
36978
|
|
|
36908
|
-
},{"./Decorators":
|
|
36979
|
+
},{"./Decorators":216,"./RecognitionException":235}],222:[function(require,module,exports){
|
|
36909
36980
|
"use strict";
|
|
36910
36981
|
/*!
|
|
36911
36982
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36928,7 +36999,7 @@ var IntStream;
|
|
|
36928
36999
|
IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
|
|
36929
37000
|
})(IntStream = exports.IntStream || (exports.IntStream = {}));
|
|
36930
37001
|
|
|
36931
|
-
},{}],
|
|
37002
|
+
},{}],223:[function(require,module,exports){
|
|
36932
37003
|
"use strict";
|
|
36933
37004
|
/*!
|
|
36934
37005
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -36975,7 +37046,7 @@ __decorate([
|
|
|
36975
37046
|
], InterpreterRuleContext.prototype, "ruleIndex", null);
|
|
36976
37047
|
exports.InterpreterRuleContext = InterpreterRuleContext;
|
|
36977
37048
|
|
|
36978
|
-
},{"./Decorators":
|
|
37049
|
+
},{"./Decorators":216,"./ParserRuleContext":232}],224:[function(require,module,exports){
|
|
36979
37050
|
"use strict";
|
|
36980
37051
|
/*!
|
|
36981
37052
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37311,7 +37382,7 @@ __decorate([
|
|
|
37311
37382
|
], Lexer.prototype, "charPositionInLine", null);
|
|
37312
37383
|
exports.Lexer = Lexer;
|
|
37313
37384
|
|
|
37314
|
-
},{"./CommonTokenFactory":
|
|
37385
|
+
},{"./CommonTokenFactory":213,"./Decorators":216,"./IntStream":222,"./LexerNoViableAltException":226,"./Recognizer":236,"./Token":241,"./atn/LexerATNSimulator":274,"./misc/IntegerStack":327,"./misc/Interval":328}],225:[function(require,module,exports){
|
|
37315
37386
|
"use strict";
|
|
37316
37387
|
/*!
|
|
37317
37388
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37391,7 +37462,7 @@ LexerInterpreter = __decorate([
|
|
|
37391
37462
|
], LexerInterpreter);
|
|
37392
37463
|
exports.LexerInterpreter = LexerInterpreter;
|
|
37393
37464
|
|
|
37394
|
-
},{"./Decorators":
|
|
37465
|
+
},{"./Decorators":216,"./Lexer":224,"./atn/LexerATNSimulator":274}],226:[function(require,module,exports){
|
|
37395
37466
|
"use strict";
|
|
37396
37467
|
/*!
|
|
37397
37468
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37448,7 +37519,7 @@ LexerNoViableAltException = __decorate([
|
|
|
37448
37519
|
], LexerNoViableAltException);
|
|
37449
37520
|
exports.LexerNoViableAltException = LexerNoViableAltException;
|
|
37450
37521
|
|
|
37451
|
-
},{"./Decorators":
|
|
37522
|
+
},{"./Decorators":216,"./RecognitionException":235,"./misc/Interval":328,"./misc/Utils":335}],227:[function(require,module,exports){
|
|
37452
37523
|
"use strict";
|
|
37453
37524
|
/*!
|
|
37454
37525
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37658,7 +37729,7 @@ ListTokenSource = __decorate([
|
|
|
37658
37729
|
], ListTokenSource);
|
|
37659
37730
|
exports.ListTokenSource = ListTokenSource;
|
|
37660
37731
|
|
|
37661
|
-
},{"./CommonTokenFactory":
|
|
37732
|
+
},{"./CommonTokenFactory":213,"./Decorators":216,"./Token":241}],228:[function(require,module,exports){
|
|
37662
37733
|
"use strict";
|
|
37663
37734
|
/*!
|
|
37664
37735
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -37713,7 +37784,7 @@ __decorate([
|
|
|
37713
37784
|
], NoViableAltException.prototype, "_startToken", void 0);
|
|
37714
37785
|
exports.NoViableAltException = NoViableAltException;
|
|
37715
37786
|
|
|
37716
|
-
},{"./Decorators":
|
|
37787
|
+
},{"./Decorators":216,"./Parser":229,"./RecognitionException":235}],229:[function(require,module,exports){
|
|
37717
37788
|
(function (process){(function (){
|
|
37718
37789
|
"use strict";
|
|
37719
37790
|
/*!
|
|
@@ -38559,7 +38630,7 @@ __decorate([
|
|
|
38559
38630
|
exports.Parser = Parser;
|
|
38560
38631
|
|
|
38561
38632
|
}).call(this)}).call(this,require('_process'))
|
|
38562
|
-
},{"./Decorators":
|
|
38633
|
+
},{"./Decorators":216,"./DefaultErrorStrategy":217,"./Lexer":224,"./ProxyParserErrorListener":234,"./Recognizer":236,"./Token":241,"./atn/ATNDeserializationOptions":252,"./atn/ATNDeserializer":253,"./atn/ParseInfo":289,"./atn/ParserATNSimulator":290,"./atn/ProfilingATNSimulator":299,"./misc/IntegerStack":327,"./misc/Utils":335,"./tree/ErrorNode":336,"./tree/TerminalNode":339,"./tree/pattern/ParseTreePatternMatcher":344,"_process":418}],230:[function(require,module,exports){
|
|
38563
38634
|
"use strict";
|
|
38564
38635
|
/*!
|
|
38565
38636
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38567,7 +38638,7 @@ exports.Parser = Parser;
|
|
|
38567
38638
|
*/
|
|
38568
38639
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38569
38640
|
|
|
38570
|
-
},{}],
|
|
38641
|
+
},{}],231:[function(require,module,exports){
|
|
38571
38642
|
"use strict";
|
|
38572
38643
|
/*!
|
|
38573
38644
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -38975,7 +39046,7 @@ ParserInterpreter = __decorate([
|
|
|
38975
39046
|
], ParserInterpreter);
|
|
38976
39047
|
exports.ParserInterpreter = ParserInterpreter;
|
|
38977
39048
|
|
|
38978
|
-
},{"./Decorators":
|
|
39049
|
+
},{"./Decorators":216,"./FailedPredicateException":220,"./InputMismatchException":221,"./InterpreterRuleContext":223,"./Parser":229,"./RecognitionException":235,"./Token":241,"./atn/ATNState":255,"./atn/ATNStateType":256,"./atn/LoopEndState":286,"./atn/ParserATNSimulator":290,"./atn/StarLoopEntryState":308,"./misc/BitSet":323}],232:[function(require,module,exports){
|
|
38979
39050
|
"use strict";
|
|
38980
39051
|
/*!
|
|
38981
39052
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39276,7 +39347,7 @@ __decorate([
|
|
|
39276
39347
|
], ParserRuleContext.prototype, "sourceInterval", null);
|
|
39277
39348
|
exports.ParserRuleContext = ParserRuleContext;
|
|
39278
39349
|
|
|
39279
|
-
},{"./Decorators":
|
|
39350
|
+
},{"./Decorators":216,"./RuleContext":237,"./misc/Interval":328,"./tree/ErrorNode":336,"./tree/TerminalNode":339}],233:[function(require,module,exports){
|
|
39280
39351
|
"use strict";
|
|
39281
39352
|
/*!
|
|
39282
39353
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39326,7 +39397,7 @@ __decorate([
|
|
|
39326
39397
|
], ProxyErrorListener.prototype, "syntaxError", null);
|
|
39327
39398
|
exports.ProxyErrorListener = ProxyErrorListener;
|
|
39328
39399
|
|
|
39329
|
-
},{"./Decorators":
|
|
39400
|
+
},{"./Decorators":216}],234:[function(require,module,exports){
|
|
39330
39401
|
"use strict";
|
|
39331
39402
|
/*!
|
|
39332
39403
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39385,7 +39456,7 @@ __decorate([
|
|
|
39385
39456
|
], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
|
|
39386
39457
|
exports.ProxyParserErrorListener = ProxyParserErrorListener;
|
|
39387
39458
|
|
|
39388
|
-
},{"./Decorators":
|
|
39459
|
+
},{"./Decorators":216,"./ProxyErrorListener":233}],235:[function(require,module,exports){
|
|
39389
39460
|
"use strict";
|
|
39390
39461
|
/*!
|
|
39391
39462
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39490,7 +39561,7 @@ class RecognitionException extends Error {
|
|
|
39490
39561
|
}
|
|
39491
39562
|
exports.RecognitionException = RecognitionException;
|
|
39492
39563
|
|
|
39493
|
-
},{}],
|
|
39564
|
+
},{}],236:[function(require,module,exports){
|
|
39494
39565
|
"use strict";
|
|
39495
39566
|
/*!
|
|
39496
39567
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39709,7 +39780,7 @@ __decorate([
|
|
|
39709
39780
|
], Recognizer.prototype, "getErrorListeners", null);
|
|
39710
39781
|
exports.Recognizer = Recognizer;
|
|
39711
39782
|
|
|
39712
|
-
},{"./ConsoleErrorListener":
|
|
39783
|
+
},{"./ConsoleErrorListener":215,"./Decorators":216,"./ProxyErrorListener":233,"./Token":241,"./misc/Utils":335}],237:[function(require,module,exports){
|
|
39713
39784
|
"use strict";
|
|
39714
39785
|
/*!
|
|
39715
39786
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39926,7 +39997,7 @@ __decorate([
|
|
|
39926
39997
|
], RuleContext.prototype, "toStringTree", null);
|
|
39927
39998
|
exports.RuleContext = RuleContext;
|
|
39928
39999
|
|
|
39929
|
-
},{"./Decorators":
|
|
40000
|
+
},{"./Decorators":216,"./ParserRuleContext":232,"./Recognizer":236,"./atn/ATN":249,"./misc/Interval":328,"./tree/RuleNode":338,"./tree/Trees":340}],238:[function(require,module,exports){
|
|
39930
40001
|
"use strict";
|
|
39931
40002
|
/*!
|
|
39932
40003
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -39977,7 +40048,7 @@ __decorate([
|
|
|
39977
40048
|
], RuleContextWithAltNum.prototype, "altNumber", null);
|
|
39978
40049
|
exports.RuleContextWithAltNum = RuleContextWithAltNum;
|
|
39979
40050
|
|
|
39980
|
-
},{"./Decorators":
|
|
40051
|
+
},{"./Decorators":216,"./ParserRuleContext":232,"./atn/ATN":249}],239:[function(require,module,exports){
|
|
39981
40052
|
"use strict";
|
|
39982
40053
|
/*!
|
|
39983
40054
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40000,7 +40071,7 @@ function RuleDependency(dependency) {
|
|
|
40000
40071
|
}
|
|
40001
40072
|
exports.RuleDependency = RuleDependency;
|
|
40002
40073
|
|
|
40003
|
-
},{}],
|
|
40074
|
+
},{}],240:[function(require,module,exports){
|
|
40004
40075
|
"use strict";
|
|
40005
40076
|
/*!
|
|
40006
40077
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40019,7 +40090,7 @@ function RuleVersion(version) {
|
|
|
40019
40090
|
}
|
|
40020
40091
|
exports.RuleVersion = RuleVersion;
|
|
40021
40092
|
|
|
40022
|
-
},{}],
|
|
40093
|
+
},{}],241:[function(require,module,exports){
|
|
40023
40094
|
"use strict";
|
|
40024
40095
|
/*!
|
|
40025
40096
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40059,7 +40130,7 @@ var Token;
|
|
|
40059
40130
|
Token.MIN_USER_CHANNEL_VALUE = 2;
|
|
40060
40131
|
})(Token = exports.Token || (exports.Token = {}));
|
|
40061
40132
|
|
|
40062
|
-
},{"./IntStream":
|
|
40133
|
+
},{"./IntStream":222}],242:[function(require,module,exports){
|
|
40063
40134
|
"use strict";
|
|
40064
40135
|
/*!
|
|
40065
40136
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40067,7 +40138,7 @@ var Token;
|
|
|
40067
40138
|
*/
|
|
40068
40139
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
40069
40140
|
|
|
40070
|
-
},{}],
|
|
40141
|
+
},{}],243:[function(require,module,exports){
|
|
40071
40142
|
"use strict";
|
|
40072
40143
|
/*!
|
|
40073
40144
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40075,7 +40146,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
40075
40146
|
*/
|
|
40076
40147
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
40077
40148
|
|
|
40078
|
-
},{}],
|
|
40149
|
+
},{}],244:[function(require,module,exports){
|
|
40079
40150
|
"use strict";
|
|
40080
40151
|
/*!
|
|
40081
40152
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40083,7 +40154,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
40083
40154
|
*/
|
|
40084
40155
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
40085
40156
|
|
|
40086
|
-
},{}],
|
|
40157
|
+
},{}],245:[function(require,module,exports){
|
|
40087
40158
|
"use strict";
|
|
40088
40159
|
/*!
|
|
40089
40160
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40591,7 +40662,7 @@ __decorate([
|
|
|
40591
40662
|
Decorators_1.Override
|
|
40592
40663
|
], ReplaceOp.prototype, "toString", null);
|
|
40593
40664
|
|
|
40594
|
-
},{"./Decorators":
|
|
40665
|
+
},{"./Decorators":216,"./Token":241,"./misc/Interval":328}],246:[function(require,module,exports){
|
|
40595
40666
|
"use strict";
|
|
40596
40667
|
/*!
|
|
40597
40668
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40599,7 +40670,7 @@ __decorate([
|
|
|
40599
40670
|
*/
|
|
40600
40671
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
40601
40672
|
|
|
40602
|
-
},{}],
|
|
40673
|
+
},{}],247:[function(require,module,exports){
|
|
40603
40674
|
"use strict";
|
|
40604
40675
|
/*!
|
|
40605
40676
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40719,7 +40790,7 @@ __decorate([
|
|
|
40719
40790
|
], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
|
|
40720
40791
|
exports.VocabularyImpl = VocabularyImpl;
|
|
40721
40792
|
|
|
40722
|
-
},{"./Decorators":
|
|
40793
|
+
},{"./Decorators":216,"./Token":241}],248:[function(require,module,exports){
|
|
40723
40794
|
"use strict";
|
|
40724
40795
|
/*!
|
|
40725
40796
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40727,7 +40798,7 @@ exports.VocabularyImpl = VocabularyImpl;
|
|
|
40727
40798
|
*/
|
|
40728
40799
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
40729
40800
|
|
|
40730
|
-
},{}],
|
|
40801
|
+
},{}],249:[function(require,module,exports){
|
|
40731
40802
|
"use strict";
|
|
40732
40803
|
/*!
|
|
40733
40804
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -40949,7 +41020,7 @@ exports.ATN = ATN;
|
|
|
40949
41020
|
})(ATN = exports.ATN || (exports.ATN = {}));
|
|
40950
41021
|
exports.ATN = ATN;
|
|
40951
41022
|
|
|
40952
|
-
},{"../Decorators":
|
|
41023
|
+
},{"../Decorators":216,"../Token":241,"../dfa/DFA":314,"../misc/Array2DHashMap":319,"../misc/IntervalSet":329,"../misc/ObjectEqualityComparator":332,"./InvalidState":272,"./LL1Analyzer":273,"./PredictionContext":296,"assert":359}],250:[function(require,module,exports){
|
|
40953
41024
|
"use strict";
|
|
40954
41025
|
/*!
|
|
40955
41026
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41474,7 +41545,7 @@ ActionSemanticContextATNConfig = __decorate([
|
|
|
41474
41545
|
__param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
|
|
41475
41546
|
], ActionSemanticContextATNConfig);
|
|
41476
41547
|
|
|
41477
|
-
},{"../Decorators":
|
|
41548
|
+
},{"../Decorators":216,"../misc/Array2DHashMap":319,"../misc/MurmurHash":331,"../misc/ObjectEqualityComparator":332,"./DecisionState":269,"./PredictionContext":296,"./SemanticContext":304,"assert":359}],251:[function(require,module,exports){
|
|
41478
41549
|
"use strict";
|
|
41479
41550
|
/*!
|
|
41480
41551
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41921,7 +41992,7 @@ __decorate([
|
|
|
41921
41992
|
], ATNConfigSet.prototype, "hashCode", null);
|
|
41922
41993
|
exports.ATNConfigSet = ATNConfigSet;
|
|
41923
41994
|
|
|
41924
|
-
},{"../Decorators":
|
|
41995
|
+
},{"../Decorators":216,"../misc/Array2DHashMap":319,"../misc/Array2DHashSet":320,"../misc/ArrayEqualityComparator":321,"../misc/BitSet":323,"../misc/ObjectEqualityComparator":332,"../misc/Utils":335,"./ATN":249,"./ATNConfig":250,"./PredictionContext":296,"./PredictionContextCache":297,"./SemanticContext":304,"assert":359}],252:[function(require,module,exports){
|
|
41925
41996
|
"use strict";
|
|
41926
41997
|
/*!
|
|
41927
41998
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42000,7 +42071,7 @@ __decorate([
|
|
|
42000
42071
|
], ATNDeserializationOptions, "defaultOptions", null);
|
|
42001
42072
|
exports.ATNDeserializationOptions = ATNDeserializationOptions;
|
|
42002
42073
|
|
|
42003
|
-
},{"../Decorators":
|
|
42074
|
+
},{"../Decorators":216}],253:[function(require,module,exports){
|
|
42004
42075
|
"use strict";
|
|
42005
42076
|
/*!
|
|
42006
42077
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43087,7 +43158,7 @@ __decorate([
|
|
|
43087
43158
|
], ATNDeserializer.prototype, "edgeFactory", null);
|
|
43088
43159
|
exports.ATNDeserializer = ATNDeserializer;
|
|
43089
43160
|
|
|
43090
|
-
},{"../Decorators":
|
|
43161
|
+
},{"../Decorators":216,"../Token":241,"../dfa/DFA":314,"../misc/Array2DHashSet":320,"../misc/BitSet":323,"../misc/IntervalSet":329,"../misc/UUID":334,"./ATN":249,"./ATNDeserializationOptions":252,"./ATNStateType":256,"./ActionTransition":258,"./AtomTransition":260,"./BasicBlockStartState":261,"./BasicState":262,"./BlockEndState":263,"./BlockStartState":264,"./DecisionState":269,"./EpsilonTransition":270,"./InvalidState":272,"./LexerChannelAction":276,"./LexerCustomAction":277,"./LexerModeAction":279,"./LexerMoreAction":280,"./LexerPopModeAction":281,"./LexerPushModeAction":282,"./LexerSkipAction":283,"./LexerTypeAction":284,"./LoopEndState":286,"./NotSetTransition":287,"./ParserATNSimulator":290,"./PlusBlockStartState":291,"./PlusLoopbackState":292,"./PrecedencePredicateTransition":293,"./PredicateTransition":295,"./RangeTransition":300,"./RuleStartState":301,"./RuleStopState":302,"./RuleTransition":303,"./SetTransition":305,"./StarBlockStartState":307,"./StarLoopEntryState":308,"./StarLoopbackState":309,"./TokensStartState":310,"./WildcardTransition":312}],254:[function(require,module,exports){
|
|
43091
43162
|
"use strict";
|
|
43092
43163
|
/*!
|
|
43093
43164
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43151,7 +43222,7 @@ exports.ATNSimulator = ATNSimulator;
|
|
|
43151
43222
|
})(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
|
|
43152
43223
|
exports.ATNSimulator = ATNSimulator;
|
|
43153
43224
|
|
|
43154
|
-
},{"../Decorators":
|
|
43225
|
+
},{"../Decorators":216,"../dfa/DFAState":316,"./ATNConfigSet":251,"./PredictionContext":296}],255:[function(require,module,exports){
|
|
43155
43226
|
"use strict";
|
|
43156
43227
|
/*!
|
|
43157
43228
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43338,7 +43409,7 @@ exports.ATNState = ATNState;
|
|
|
43338
43409
|
ATNState.INVALID_STATE_NUMBER = -1;
|
|
43339
43410
|
})(ATNState = exports.ATNState || (exports.ATNState = {}));
|
|
43340
43411
|
|
|
43341
|
-
},{"../Decorators":
|
|
43412
|
+
},{"../Decorators":216}],256:[function(require,module,exports){
|
|
43342
43413
|
"use strict";
|
|
43343
43414
|
/*!
|
|
43344
43415
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43364,7 +43435,7 @@ var ATNStateType;
|
|
|
43364
43435
|
ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
|
|
43365
43436
|
})(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
|
|
43366
43437
|
|
|
43367
|
-
},{}],
|
|
43438
|
+
},{}],257:[function(require,module,exports){
|
|
43368
43439
|
"use strict";
|
|
43369
43440
|
/*!
|
|
43370
43441
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43384,7 +43455,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
|
|
|
43384
43455
|
}
|
|
43385
43456
|
exports.AbstractPredicateTransition = AbstractPredicateTransition;
|
|
43386
43457
|
|
|
43387
|
-
},{"./Transition":
|
|
43458
|
+
},{"./Transition":311}],258:[function(require,module,exports){
|
|
43388
43459
|
"use strict";
|
|
43389
43460
|
/*!
|
|
43390
43461
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43440,7 +43511,7 @@ ActionTransition = __decorate([
|
|
|
43440
43511
|
], ActionTransition);
|
|
43441
43512
|
exports.ActionTransition = ActionTransition;
|
|
43442
43513
|
|
|
43443
|
-
},{"../Decorators":
|
|
43514
|
+
},{"../Decorators":216,"./Transition":311}],259:[function(require,module,exports){
|
|
43444
43515
|
"use strict";
|
|
43445
43516
|
/*!
|
|
43446
43517
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43527,7 +43598,7 @@ AmbiguityInfo = __decorate([
|
|
|
43527
43598
|
], AmbiguityInfo);
|
|
43528
43599
|
exports.AmbiguityInfo = AmbiguityInfo;
|
|
43529
43600
|
|
|
43530
|
-
},{"../Decorators":
|
|
43601
|
+
},{"../Decorators":216,"./DecisionEventInfo":267}],260:[function(require,module,exports){
|
|
43531
43602
|
"use strict";
|
|
43532
43603
|
/*!
|
|
43533
43604
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43585,7 +43656,7 @@ AtomTransition = __decorate([
|
|
|
43585
43656
|
], AtomTransition);
|
|
43586
43657
|
exports.AtomTransition = AtomTransition;
|
|
43587
43658
|
|
|
43588
|
-
},{"../Decorators":
|
|
43659
|
+
},{"../Decorators":216,"../misc/IntervalSet":329,"./Transition":311}],261:[function(require,module,exports){
|
|
43589
43660
|
"use strict";
|
|
43590
43661
|
/*!
|
|
43591
43662
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43617,7 +43688,7 @@ __decorate([
|
|
|
43617
43688
|
], BasicBlockStartState.prototype, "stateType", null);
|
|
43618
43689
|
exports.BasicBlockStartState = BasicBlockStartState;
|
|
43619
43690
|
|
|
43620
|
-
},{"../Decorators":
|
|
43691
|
+
},{"../Decorators":216,"./ATNStateType":256,"./BlockStartState":264}],262:[function(require,module,exports){
|
|
43621
43692
|
"use strict";
|
|
43622
43693
|
/*!
|
|
43623
43694
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43649,7 +43720,7 @@ __decorate([
|
|
|
43649
43720
|
], BasicState.prototype, "stateType", null);
|
|
43650
43721
|
exports.BasicState = BasicState;
|
|
43651
43722
|
|
|
43652
|
-
},{"../Decorators":
|
|
43723
|
+
},{"../Decorators":216,"./ATNState":255,"./ATNStateType":256}],263:[function(require,module,exports){
|
|
43653
43724
|
"use strict";
|
|
43654
43725
|
/*!
|
|
43655
43726
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43678,7 +43749,7 @@ __decorate([
|
|
|
43678
43749
|
], BlockEndState.prototype, "stateType", null);
|
|
43679
43750
|
exports.BlockEndState = BlockEndState;
|
|
43680
43751
|
|
|
43681
|
-
},{"../Decorators":
|
|
43752
|
+
},{"../Decorators":216,"./ATNState":255,"./ATNStateType":256}],264:[function(require,module,exports){
|
|
43682
43753
|
"use strict";
|
|
43683
43754
|
/*!
|
|
43684
43755
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43692,7 +43763,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
|
|
|
43692
43763
|
}
|
|
43693
43764
|
exports.BlockStartState = BlockStartState;
|
|
43694
43765
|
|
|
43695
|
-
},{"./DecisionState":
|
|
43766
|
+
},{"./DecisionState":269}],265:[function(require,module,exports){
|
|
43696
43767
|
"use strict";
|
|
43697
43768
|
/*!
|
|
43698
43769
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43762,7 +43833,7 @@ __decorate([
|
|
|
43762
43833
|
], ConflictInfo.prototype, "hashCode", null);
|
|
43763
43834
|
exports.ConflictInfo = ConflictInfo;
|
|
43764
43835
|
|
|
43765
|
-
},{"../Decorators":
|
|
43836
|
+
},{"../Decorators":216,"../misc/Utils":335}],266:[function(require,module,exports){
|
|
43766
43837
|
"use strict";
|
|
43767
43838
|
/*!
|
|
43768
43839
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43822,7 +43893,7 @@ ContextSensitivityInfo = __decorate([
|
|
|
43822
43893
|
], ContextSensitivityInfo);
|
|
43823
43894
|
exports.ContextSensitivityInfo = ContextSensitivityInfo;
|
|
43824
43895
|
|
|
43825
|
-
},{"../Decorators":
|
|
43896
|
+
},{"../Decorators":216,"./DecisionEventInfo":267}],267:[function(require,module,exports){
|
|
43826
43897
|
"use strict";
|
|
43827
43898
|
/*!
|
|
43828
43899
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43874,7 +43945,7 @@ DecisionEventInfo = __decorate([
|
|
|
43874
43945
|
], DecisionEventInfo);
|
|
43875
43946
|
exports.DecisionEventInfo = DecisionEventInfo;
|
|
43876
43947
|
|
|
43877
|
-
},{"../Decorators":
|
|
43948
|
+
},{"../Decorators":216}],268:[function(require,module,exports){
|
|
43878
43949
|
"use strict";
|
|
43879
43950
|
/*!
|
|
43880
43951
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44087,7 +44158,7 @@ __decorate([
|
|
|
44087
44158
|
], DecisionInfo.prototype, "toString", null);
|
|
44088
44159
|
exports.DecisionInfo = DecisionInfo;
|
|
44089
44160
|
|
|
44090
|
-
},{"../Decorators":
|
|
44161
|
+
},{"../Decorators":216}],269:[function(require,module,exports){
|
|
44091
44162
|
"use strict";
|
|
44092
44163
|
/*!
|
|
44093
44164
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44107,7 +44178,7 @@ class DecisionState extends ATNState_1.ATNState {
|
|
|
44107
44178
|
}
|
|
44108
44179
|
exports.DecisionState = DecisionState;
|
|
44109
44180
|
|
|
44110
|
-
},{"./ATNState":
|
|
44181
|
+
},{"./ATNState":255}],270:[function(require,module,exports){
|
|
44111
44182
|
"use strict";
|
|
44112
44183
|
/*!
|
|
44113
44184
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44173,7 +44244,7 @@ EpsilonTransition = __decorate([
|
|
|
44173
44244
|
], EpsilonTransition);
|
|
44174
44245
|
exports.EpsilonTransition = EpsilonTransition;
|
|
44175
44246
|
|
|
44176
|
-
},{"../Decorators":
|
|
44247
|
+
},{"../Decorators":216,"./Transition":311}],271:[function(require,module,exports){
|
|
44177
44248
|
"use strict";
|
|
44178
44249
|
/*!
|
|
44179
44250
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44226,7 +44297,7 @@ ErrorInfo = __decorate([
|
|
|
44226
44297
|
], ErrorInfo);
|
|
44227
44298
|
exports.ErrorInfo = ErrorInfo;
|
|
44228
44299
|
|
|
44229
|
-
},{"../Decorators":
|
|
44300
|
+
},{"../Decorators":216,"./DecisionEventInfo":267}],272:[function(require,module,exports){
|
|
44230
44301
|
"use strict";
|
|
44231
44302
|
/*!
|
|
44232
44303
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44257,7 +44328,7 @@ __decorate([
|
|
|
44257
44328
|
], InvalidState.prototype, "stateType", null);
|
|
44258
44329
|
exports.InvalidState = InvalidState;
|
|
44259
44330
|
|
|
44260
|
-
},{"../Decorators":
|
|
44331
|
+
},{"../Decorators":216,"./ATNStateType":256,"./BasicState":262}],273:[function(require,module,exports){
|
|
44261
44332
|
"use strict";
|
|
44262
44333
|
/*!
|
|
44263
44334
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44479,7 +44550,7 @@ LL1Analyzer = __decorate([
|
|
|
44479
44550
|
], LL1Analyzer);
|
|
44480
44551
|
exports.LL1Analyzer = LL1Analyzer;
|
|
44481
44552
|
|
|
44482
|
-
},{"../Decorators":
|
|
44553
|
+
},{"../Decorators":216,"../Token":241,"../misc/Array2DHashSet":320,"../misc/BitSet":323,"../misc/IntervalSet":329,"../misc/ObjectEqualityComparator":332,"./ATNConfig":250,"./AbstractPredicateTransition":257,"./NotSetTransition":287,"./PredictionContext":296,"./RuleStopState":302,"./RuleTransition":303,"./WildcardTransition":312}],274:[function(require,module,exports){
|
|
44483
44554
|
"use strict";
|
|
44484
44555
|
/*!
|
|
44485
44556
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45196,7 +45267,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
|
|
|
45196
45267
|
})(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
|
|
45197
45268
|
exports.LexerATNSimulator = LexerATNSimulator;
|
|
45198
45269
|
|
|
45199
|
-
},{"../Decorators":
|
|
45270
|
+
},{"../Decorators":216,"../IntStream":222,"../Lexer":224,"../LexerNoViableAltException":226,"../Token":241,"../dfa/AcceptStateInfo":313,"../dfa/DFAState":316,"../misc/Interval":328,"./ATN":249,"./ATNConfig":250,"./ATNConfigSet":251,"./ATNSimulator":254,"./LexerActionExecutor":275,"./OrderedATNConfigSet":288,"./PredictionContext":296,"./RuleStopState":302,"assert":359}],275:[function(require,module,exports){
|
|
45200
45271
|
"use strict";
|
|
45201
45272
|
/*!
|
|
45202
45273
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45397,7 +45468,7 @@ LexerActionExecutor = __decorate([
|
|
|
45397
45468
|
], LexerActionExecutor);
|
|
45398
45469
|
exports.LexerActionExecutor = LexerActionExecutor;
|
|
45399
45470
|
|
|
45400
|
-
},{"../Decorators":
|
|
45471
|
+
},{"../Decorators":216,"../misc/ArrayEqualityComparator":321,"../misc/MurmurHash":331,"./LexerIndexedCustomAction":278}],276:[function(require,module,exports){
|
|
45401
45472
|
"use strict";
|
|
45402
45473
|
/*!
|
|
45403
45474
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45502,7 +45573,7 @@ __decorate([
|
|
|
45502
45573
|
], LexerChannelAction.prototype, "toString", null);
|
|
45503
45574
|
exports.LexerChannelAction = LexerChannelAction;
|
|
45504
45575
|
|
|
45505
|
-
},{"../Decorators":
|
|
45576
|
+
},{"../Decorators":216,"../misc/MurmurHash":331}],277:[function(require,module,exports){
|
|
45506
45577
|
"use strict";
|
|
45507
45578
|
/*!
|
|
45508
45579
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45631,7 +45702,7 @@ __decorate([
|
|
|
45631
45702
|
], LexerCustomAction.prototype, "equals", null);
|
|
45632
45703
|
exports.LexerCustomAction = LexerCustomAction;
|
|
45633
45704
|
|
|
45634
|
-
},{"../Decorators":
|
|
45705
|
+
},{"../Decorators":216,"../misc/MurmurHash":331}],278:[function(require,module,exports){
|
|
45635
45706
|
"use strict";
|
|
45636
45707
|
/*!
|
|
45637
45708
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45766,7 +45837,7 @@ LexerIndexedCustomAction = __decorate([
|
|
|
45766
45837
|
], LexerIndexedCustomAction);
|
|
45767
45838
|
exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
|
|
45768
45839
|
|
|
45769
|
-
},{"../Decorators":
|
|
45840
|
+
},{"../Decorators":216,"../misc/MurmurHash":331}],279:[function(require,module,exports){
|
|
45770
45841
|
"use strict";
|
|
45771
45842
|
/*!
|
|
45772
45843
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45871,7 +45942,7 @@ __decorate([
|
|
|
45871
45942
|
], LexerModeAction.prototype, "toString", null);
|
|
45872
45943
|
exports.LexerModeAction = LexerModeAction;
|
|
45873
45944
|
|
|
45874
|
-
},{"../Decorators":
|
|
45945
|
+
},{"../Decorators":216,"../misc/MurmurHash":331}],280:[function(require,module,exports){
|
|
45875
45946
|
"use strict";
|
|
45876
45947
|
/*!
|
|
45877
45948
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45967,7 +46038,7 @@ exports.LexerMoreAction = LexerMoreAction;
|
|
|
45967
46038
|
LexerMoreAction.INSTANCE = new LexerMoreAction();
|
|
45968
46039
|
})(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
|
|
45969
46040
|
|
|
45970
|
-
},{"../Decorators":
|
|
46041
|
+
},{"../Decorators":216,"../misc/MurmurHash":331}],281:[function(require,module,exports){
|
|
45971
46042
|
"use strict";
|
|
45972
46043
|
/*!
|
|
45973
46044
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46063,7 +46134,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
|
|
|
46063
46134
|
LexerPopModeAction.INSTANCE = new LexerPopModeAction();
|
|
46064
46135
|
})(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
|
|
46065
46136
|
|
|
46066
|
-
},{"../Decorators":
|
|
46137
|
+
},{"../Decorators":216,"../misc/MurmurHash":331}],282:[function(require,module,exports){
|
|
46067
46138
|
"use strict";
|
|
46068
46139
|
/*!
|
|
46069
46140
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46168,7 +46239,7 @@ __decorate([
|
|
|
46168
46239
|
], LexerPushModeAction.prototype, "toString", null);
|
|
46169
46240
|
exports.LexerPushModeAction = LexerPushModeAction;
|
|
46170
46241
|
|
|
46171
|
-
},{"../Decorators":
|
|
46242
|
+
},{"../Decorators":216,"../misc/MurmurHash":331}],283:[function(require,module,exports){
|
|
46172
46243
|
"use strict";
|
|
46173
46244
|
/*!
|
|
46174
46245
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46264,7 +46335,7 @@ exports.LexerSkipAction = LexerSkipAction;
|
|
|
46264
46335
|
LexerSkipAction.INSTANCE = new LexerSkipAction();
|
|
46265
46336
|
})(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
|
|
46266
46337
|
|
|
46267
|
-
},{"../Decorators":
|
|
46338
|
+
},{"../Decorators":216,"../misc/MurmurHash":331}],284:[function(require,module,exports){
|
|
46268
46339
|
"use strict";
|
|
46269
46340
|
/*!
|
|
46270
46341
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46368,7 +46439,7 @@ __decorate([
|
|
|
46368
46439
|
], LexerTypeAction.prototype, "toString", null);
|
|
46369
46440
|
exports.LexerTypeAction = LexerTypeAction;
|
|
46370
46441
|
|
|
46371
|
-
},{"../Decorators":
|
|
46442
|
+
},{"../Decorators":216,"../misc/MurmurHash":331}],285:[function(require,module,exports){
|
|
46372
46443
|
"use strict";
|
|
46373
46444
|
/*!
|
|
46374
46445
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46420,7 +46491,7 @@ LookaheadEventInfo = __decorate([
|
|
|
46420
46491
|
], LookaheadEventInfo);
|
|
46421
46492
|
exports.LookaheadEventInfo = LookaheadEventInfo;
|
|
46422
46493
|
|
|
46423
|
-
},{"../Decorators":
|
|
46494
|
+
},{"../Decorators":216,"./DecisionEventInfo":267}],286:[function(require,module,exports){
|
|
46424
46495
|
"use strict";
|
|
46425
46496
|
/*!
|
|
46426
46497
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46449,7 +46520,7 @@ __decorate([
|
|
|
46449
46520
|
], LoopEndState.prototype, "stateType", null);
|
|
46450
46521
|
exports.LoopEndState = LoopEndState;
|
|
46451
46522
|
|
|
46452
|
-
},{"../Decorators":
|
|
46523
|
+
},{"../Decorators":216,"./ATNState":255,"./ATNStateType":256}],287:[function(require,module,exports){
|
|
46453
46524
|
"use strict";
|
|
46454
46525
|
/*!
|
|
46455
46526
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46498,7 +46569,7 @@ NotSetTransition = __decorate([
|
|
|
46498
46569
|
], NotSetTransition);
|
|
46499
46570
|
exports.NotSetTransition = NotSetTransition;
|
|
46500
46571
|
|
|
46501
|
-
},{"../Decorators":
|
|
46572
|
+
},{"../Decorators":216,"./SetTransition":305}],288:[function(require,module,exports){
|
|
46502
46573
|
"use strict";
|
|
46503
46574
|
/*!
|
|
46504
46575
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46553,7 +46624,7 @@ __decorate([
|
|
|
46553
46624
|
], OrderedATNConfigSet.prototype, "canMerge", null);
|
|
46554
46625
|
exports.OrderedATNConfigSet = OrderedATNConfigSet;
|
|
46555
46626
|
|
|
46556
|
-
},{"../Decorators":
|
|
46627
|
+
},{"../Decorators":216,"./ATNConfigSet":251}],289:[function(require,module,exports){
|
|
46557
46628
|
"use strict";
|
|
46558
46629
|
/*!
|
|
46559
46630
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46715,7 +46786,7 @@ ParseInfo = __decorate([
|
|
|
46715
46786
|
], ParseInfo);
|
|
46716
46787
|
exports.ParseInfo = ParseInfo;
|
|
46717
46788
|
|
|
46718
|
-
},{"../Decorators":
|
|
46789
|
+
},{"../Decorators":216}],290:[function(require,module,exports){
|
|
46719
46790
|
"use strict";
|
|
46720
46791
|
/*!
|
|
46721
46792
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48988,7 +49059,7 @@ ParserATNSimulator = __decorate([
|
|
|
48988
49059
|
], ParserATNSimulator);
|
|
48989
49060
|
exports.ParserATNSimulator = ParserATNSimulator;
|
|
48990
49061
|
|
|
48991
|
-
},{"../Decorators":
|
|
49062
|
+
},{"../Decorators":216,"../IntStream":222,"../NoViableAltException":228,"../ParserRuleContext":232,"../Token":241,"../VocabularyImpl":247,"../dfa/AcceptStateInfo":313,"../dfa/DFAState":316,"../misc/Array2DHashSet":320,"../misc/Arrays":322,"../misc/BitSet":323,"../misc/IntegerList":326,"../misc/Interval":328,"../misc/ObjectEqualityComparator":332,"./ATN":249,"./ATNConfig":250,"./ATNConfigSet":251,"./ATNSimulator":254,"./ATNStateType":256,"./ActionTransition":258,"./AtomTransition":260,"./ConflictInfo":265,"./DecisionState":269,"./NotSetTransition":287,"./PredictionContext":296,"./PredictionContextCache":297,"./PredictionMode":298,"./RuleStopState":302,"./RuleTransition":303,"./SemanticContext":304,"./SetTransition":305,"./SimulatorState":306,"assert":359}],291:[function(require,module,exports){
|
|
48992
49063
|
"use strict";
|
|
48993
49064
|
/*!
|
|
48994
49065
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49021,7 +49092,7 @@ __decorate([
|
|
|
49021
49092
|
], PlusBlockStartState.prototype, "stateType", null);
|
|
49022
49093
|
exports.PlusBlockStartState = PlusBlockStartState;
|
|
49023
49094
|
|
|
49024
|
-
},{"../Decorators":
|
|
49095
|
+
},{"../Decorators":216,"./ATNStateType":256,"./BlockStartState":264}],292:[function(require,module,exports){
|
|
49025
49096
|
"use strict";
|
|
49026
49097
|
/*!
|
|
49027
49098
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49052,7 +49123,7 @@ __decorate([
|
|
|
49052
49123
|
], PlusLoopbackState.prototype, "stateType", null);
|
|
49053
49124
|
exports.PlusLoopbackState = PlusLoopbackState;
|
|
49054
49125
|
|
|
49055
|
-
},{"../Decorators":
|
|
49126
|
+
},{"../Decorators":216,"./ATNStateType":256,"./DecisionState":269}],293:[function(require,module,exports){
|
|
49056
49127
|
"use strict";
|
|
49057
49128
|
/*!
|
|
49058
49129
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49115,7 +49186,7 @@ PrecedencePredicateTransition = __decorate([
|
|
|
49115
49186
|
], PrecedencePredicateTransition);
|
|
49116
49187
|
exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
|
|
49117
49188
|
|
|
49118
|
-
},{"../Decorators":
|
|
49189
|
+
},{"../Decorators":216,"./AbstractPredicateTransition":257,"./SemanticContext":304}],294:[function(require,module,exports){
|
|
49119
49190
|
"use strict";
|
|
49120
49191
|
/*!
|
|
49121
49192
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49178,7 +49249,7 @@ PredicateEvalInfo = __decorate([
|
|
|
49178
49249
|
], PredicateEvalInfo);
|
|
49179
49250
|
exports.PredicateEvalInfo = PredicateEvalInfo;
|
|
49180
49251
|
|
|
49181
|
-
},{"../Decorators":
|
|
49252
|
+
},{"../Decorators":216,"./DecisionEventInfo":267}],295:[function(require,module,exports){
|
|
49182
49253
|
"use strict";
|
|
49183
49254
|
/*!
|
|
49184
49255
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49244,7 +49315,7 @@ PredicateTransition = __decorate([
|
|
|
49244
49315
|
], PredicateTransition);
|
|
49245
49316
|
exports.PredicateTransition = PredicateTransition;
|
|
49246
49317
|
|
|
49247
|
-
},{"../Decorators":
|
|
49318
|
+
},{"../Decorators":216,"./AbstractPredicateTransition":257,"./SemanticContext":304}],296:[function(require,module,exports){
|
|
49248
49319
|
"use strict";
|
|
49249
49320
|
/*!
|
|
49250
49321
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49935,7 +50006,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
|
|
|
49935
50006
|
PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
|
|
49936
50007
|
})(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
|
|
49937
50008
|
|
|
49938
|
-
},{"../Decorators":
|
|
50009
|
+
},{"../Decorators":216,"../misc/Array2DHashMap":319,"../misc/Array2DHashSet":320,"../misc/Arrays":322,"../misc/MurmurHash":331,"./PredictionContextCache":297,"assert":359}],297:[function(require,module,exports){
|
|
49939
50010
|
"use strict";
|
|
49940
50011
|
/*!
|
|
49941
50012
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50076,7 +50147,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
|
|
|
50076
50147
|
PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
|
|
50077
50148
|
})(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
|
|
50078
50149
|
|
|
50079
|
-
},{"../Decorators":
|
|
50150
|
+
},{"../Decorators":216,"../misc/Array2DHashMap":319,"../misc/ObjectEqualityComparator":332,"./PredictionContext":296,"assert":359}],298:[function(require,module,exports){
|
|
50080
50151
|
"use strict";
|
|
50081
50152
|
/*!
|
|
50082
50153
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50237,7 +50308,7 @@ var PredictionMode;
|
|
|
50237
50308
|
PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
|
|
50238
50309
|
})(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
|
|
50239
50310
|
|
|
50240
|
-
},{"../Decorators":
|
|
50311
|
+
},{"../Decorators":216,"../misc/Array2DHashMap":319,"../misc/MurmurHash":331,"./RuleStopState":302}],299:[function(require,module,exports){
|
|
50241
50312
|
(function (process){(function (){
|
|
50242
50313
|
"use strict";
|
|
50243
50314
|
/*!
|
|
@@ -50506,7 +50577,7 @@ __decorate([
|
|
|
50506
50577
|
exports.ProfilingATNSimulator = ProfilingATNSimulator;
|
|
50507
50578
|
|
|
50508
50579
|
}).call(this)}).call(this,require('_process'))
|
|
50509
|
-
},{"../Decorators":
|
|
50580
|
+
},{"../Decorators":216,"./ATN":249,"./ATNSimulator":254,"./AmbiguityInfo":259,"./ContextSensitivityInfo":266,"./DecisionInfo":268,"./ErrorInfo":271,"./LookaheadEventInfo":285,"./ParserATNSimulator":290,"./PredicateEvalInfo":294,"./SemanticContext":304,"./SimulatorState":306,"_process":418}],300:[function(require,module,exports){
|
|
50510
50581
|
"use strict";
|
|
50511
50582
|
/*!
|
|
50512
50583
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50564,7 +50635,7 @@ RangeTransition = __decorate([
|
|
|
50564
50635
|
], RangeTransition);
|
|
50565
50636
|
exports.RangeTransition = RangeTransition;
|
|
50566
50637
|
|
|
50567
|
-
},{"../Decorators":
|
|
50638
|
+
},{"../Decorators":216,"../misc/IntervalSet":329,"./Transition":311}],301:[function(require,module,exports){
|
|
50568
50639
|
"use strict";
|
|
50569
50640
|
/*!
|
|
50570
50641
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50597,7 +50668,7 @@ __decorate([
|
|
|
50597
50668
|
], RuleStartState.prototype, "stateType", null);
|
|
50598
50669
|
exports.RuleStartState = RuleStartState;
|
|
50599
50670
|
|
|
50600
|
-
},{"../Decorators":
|
|
50671
|
+
},{"../Decorators":216,"./ATNState":255,"./ATNStateType":256}],302:[function(require,module,exports){
|
|
50601
50672
|
"use strict";
|
|
50602
50673
|
/*!
|
|
50603
50674
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50636,7 +50707,7 @@ __decorate([
|
|
|
50636
50707
|
], RuleStopState.prototype, "stateType", null);
|
|
50637
50708
|
exports.RuleStopState = RuleStopState;
|
|
50638
50709
|
|
|
50639
|
-
},{"../Decorators":
|
|
50710
|
+
},{"../Decorators":216,"./ATNState":255,"./ATNStateType":256}],303:[function(require,module,exports){
|
|
50640
50711
|
"use strict";
|
|
50641
50712
|
/*!
|
|
50642
50713
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50692,7 +50763,7 @@ RuleTransition = __decorate([
|
|
|
50692
50763
|
], RuleTransition);
|
|
50693
50764
|
exports.RuleTransition = RuleTransition;
|
|
50694
50765
|
|
|
50695
|
-
},{"../Decorators":
|
|
50766
|
+
},{"../Decorators":216,"./Transition":311}],304:[function(require,module,exports){
|
|
50696
50767
|
"use strict";
|
|
50697
50768
|
/*!
|
|
50698
50769
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51172,7 +51243,7 @@ exports.SemanticContext = SemanticContext;
|
|
|
51172
51243
|
SemanticContext.OR = OR;
|
|
51173
51244
|
})(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
|
|
51174
51245
|
|
|
51175
|
-
},{"../Decorators":
|
|
51246
|
+
},{"../Decorators":216,"../misc/Array2DHashSet":320,"../misc/ArrayEqualityComparator":321,"../misc/MurmurHash":331,"../misc/ObjectEqualityComparator":332,"../misc/Utils":335}],305:[function(require,module,exports){
|
|
51176
51247
|
"use strict";
|
|
51177
51248
|
/*!
|
|
51178
51249
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51238,7 +51309,7 @@ SetTransition = __decorate([
|
|
|
51238
51309
|
], SetTransition);
|
|
51239
51310
|
exports.SetTransition = SetTransition;
|
|
51240
51311
|
|
|
51241
|
-
},{"../Decorators":
|
|
51312
|
+
},{"../Decorators":216,"../Token":241,"../misc/IntervalSet":329,"./Transition":311}],306:[function(require,module,exports){
|
|
51242
51313
|
"use strict";
|
|
51243
51314
|
/*!
|
|
51244
51315
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51274,7 +51345,7 @@ SimulatorState = __decorate([
|
|
|
51274
51345
|
], SimulatorState);
|
|
51275
51346
|
exports.SimulatorState = SimulatorState;
|
|
51276
51347
|
|
|
51277
|
-
},{"../Decorators":
|
|
51348
|
+
},{"../Decorators":216,"../ParserRuleContext":232}],307:[function(require,module,exports){
|
|
51278
51349
|
"use strict";
|
|
51279
51350
|
/*!
|
|
51280
51351
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51302,7 +51373,7 @@ __decorate([
|
|
|
51302
51373
|
], StarBlockStartState.prototype, "stateType", null);
|
|
51303
51374
|
exports.StarBlockStartState = StarBlockStartState;
|
|
51304
51375
|
|
|
51305
|
-
},{"../Decorators":
|
|
51376
|
+
},{"../Decorators":216,"./ATNStateType":256,"./BlockStartState":264}],308:[function(require,module,exports){
|
|
51306
51377
|
"use strict";
|
|
51307
51378
|
/*!
|
|
51308
51379
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51359,7 +51430,7 @@ __decorate([
|
|
|
51359
51430
|
], StarLoopEntryState.prototype, "stateType", null);
|
|
51360
51431
|
exports.StarLoopEntryState = StarLoopEntryState;
|
|
51361
51432
|
|
|
51362
|
-
},{"../Decorators":
|
|
51433
|
+
},{"../Decorators":216,"../misc/BitSet":323,"./ATNStateType":256,"./DecisionState":269}],309:[function(require,module,exports){
|
|
51363
51434
|
"use strict";
|
|
51364
51435
|
/*!
|
|
51365
51436
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51390,7 +51461,7 @@ __decorate([
|
|
|
51390
51461
|
], StarLoopbackState.prototype, "stateType", null);
|
|
51391
51462
|
exports.StarLoopbackState = StarLoopbackState;
|
|
51392
51463
|
|
|
51393
|
-
},{"../Decorators":
|
|
51464
|
+
},{"../Decorators":216,"./ATNState":255,"./ATNStateType":256}],310:[function(require,module,exports){
|
|
51394
51465
|
"use strict";
|
|
51395
51466
|
/*!
|
|
51396
51467
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51419,7 +51490,7 @@ __decorate([
|
|
|
51419
51490
|
], TokensStartState.prototype, "stateType", null);
|
|
51420
51491
|
exports.TokensStartState = TokensStartState;
|
|
51421
51492
|
|
|
51422
|
-
},{"../Decorators":
|
|
51493
|
+
},{"../Decorators":216,"./ATNStateType":256,"./DecisionState":269}],311:[function(require,module,exports){
|
|
51423
51494
|
"use strict";
|
|
51424
51495
|
/*!
|
|
51425
51496
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51493,7 +51564,7 @@ Transition = __decorate([
|
|
|
51493
51564
|
], Transition);
|
|
51494
51565
|
exports.Transition = Transition;
|
|
51495
51566
|
|
|
51496
|
-
},{"../Decorators":
|
|
51567
|
+
},{"../Decorators":216}],312:[function(require,module,exports){
|
|
51497
51568
|
"use strict";
|
|
51498
51569
|
/*!
|
|
51499
51570
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51541,7 +51612,7 @@ WildcardTransition = __decorate([
|
|
|
51541
51612
|
], WildcardTransition);
|
|
51542
51613
|
exports.WildcardTransition = WildcardTransition;
|
|
51543
51614
|
|
|
51544
|
-
},{"../Decorators":
|
|
51615
|
+
},{"../Decorators":216,"./Transition":311}],313:[function(require,module,exports){
|
|
51545
51616
|
"use strict";
|
|
51546
51617
|
/*!
|
|
51547
51618
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51583,7 +51654,7 @@ class AcceptStateInfo {
|
|
|
51583
51654
|
}
|
|
51584
51655
|
exports.AcceptStateInfo = AcceptStateInfo;
|
|
51585
51656
|
|
|
51586
|
-
},{}],
|
|
51657
|
+
},{}],314:[function(require,module,exports){
|
|
51587
51658
|
"use strict";
|
|
51588
51659
|
/*!
|
|
51589
51660
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51758,7 +51829,7 @@ DFA = __decorate([
|
|
|
51758
51829
|
], DFA);
|
|
51759
51830
|
exports.DFA = DFA;
|
|
51760
51831
|
|
|
51761
|
-
},{"../Decorators":
|
|
51832
|
+
},{"../Decorators":216,"../VocabularyImpl":247,"../atn/ATNConfigSet":251,"../atn/StarLoopEntryState":308,"../misc/Array2DHashSet":320,"../misc/ObjectEqualityComparator":332,"./DFASerializer":315,"./DFAState":316,"./LexerDFASerializer":317}],315:[function(require,module,exports){
|
|
51762
51833
|
"use strict";
|
|
51763
51834
|
/*!
|
|
51764
51835
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51900,7 +51971,7 @@ __decorate([
|
|
|
51900
51971
|
], DFASerializer.prototype, "toString", null);
|
|
51901
51972
|
exports.DFASerializer = DFASerializer;
|
|
51902
51973
|
|
|
51903
|
-
},{"../Decorators":
|
|
51974
|
+
},{"../Decorators":216,"../Recognizer":236,"../VocabularyImpl":247,"../atn/ATNSimulator":254,"../atn/PredictionContext":296}],316:[function(require,module,exports){
|
|
51904
51975
|
"use strict";
|
|
51905
51976
|
/*!
|
|
51906
51977
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52131,7 +52202,7 @@ exports.DFAState = DFAState;
|
|
|
52131
52202
|
DFAState.PredPrediction = PredPrediction;
|
|
52132
52203
|
})(DFAState = exports.DFAState || (exports.DFAState = {}));
|
|
52133
52204
|
|
|
52134
|
-
},{"../Decorators":
|
|
52205
|
+
},{"../Decorators":216,"../atn/ATN":249,"../atn/PredictionContext":296,"../misc/BitSet":323,"../misc/MurmurHash":331,"assert":359}],317:[function(require,module,exports){
|
|
52135
52206
|
"use strict";
|
|
52136
52207
|
/*!
|
|
52137
52208
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52168,7 +52239,7 @@ LexerDFASerializer = __decorate([
|
|
|
52168
52239
|
], LexerDFASerializer);
|
|
52169
52240
|
exports.LexerDFASerializer = LexerDFASerializer;
|
|
52170
52241
|
|
|
52171
|
-
},{"../Decorators":
|
|
52242
|
+
},{"../Decorators":216,"../VocabularyImpl":247,"./DFASerializer":315}],318:[function(require,module,exports){
|
|
52172
52243
|
"use strict";
|
|
52173
52244
|
/*!
|
|
52174
52245
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52234,7 +52305,7 @@ __exportStar(require("./Vocabulary"), exports);
|
|
|
52234
52305
|
__exportStar(require("./VocabularyImpl"), exports);
|
|
52235
52306
|
__exportStar(require("./WritableToken"), exports);
|
|
52236
52307
|
|
|
52237
|
-
},{"./ANTLRErrorListener":
|
|
52308
|
+
},{"./ANTLRErrorListener":203,"./ANTLRErrorStrategy":204,"./ANTLRInputStream":205,"./BailErrorStrategy":206,"./BufferedTokenStream":207,"./CharStream":208,"./CharStreams":209,"./CodePointBuffer":210,"./CodePointCharStream":211,"./CommonToken":212,"./CommonTokenFactory":213,"./CommonTokenStream":214,"./ConsoleErrorListener":215,"./DefaultErrorStrategy":217,"./Dependents":218,"./DiagnosticErrorListener":219,"./FailedPredicateException":220,"./InputMismatchException":221,"./IntStream":222,"./InterpreterRuleContext":223,"./Lexer":224,"./LexerInterpreter":225,"./LexerNoViableAltException":226,"./ListTokenSource":227,"./NoViableAltException":228,"./Parser":229,"./ParserErrorListener":230,"./ParserInterpreter":231,"./ParserRuleContext":232,"./ProxyErrorListener":233,"./ProxyParserErrorListener":234,"./RecognitionException":235,"./Recognizer":236,"./RuleContext":237,"./RuleContextWithAltNum":238,"./RuleDependency":239,"./RuleVersion":240,"./Token":241,"./TokenFactory":242,"./TokenSource":243,"./TokenStream":244,"./TokenStreamRewriter":245,"./Vocabulary":246,"./VocabularyImpl":247,"./WritableToken":248}],319:[function(require,module,exports){
|
|
52238
52309
|
"use strict";
|
|
52239
52310
|
/*!
|
|
52240
52311
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52317,7 +52388,7 @@ class Array2DHashMap {
|
|
|
52317
52388
|
}
|
|
52318
52389
|
exports.Array2DHashMap = Array2DHashMap;
|
|
52319
52390
|
|
|
52320
|
-
},{"./Array2DHashSet":
|
|
52391
|
+
},{"./Array2DHashSet":320}],320:[function(require,module,exports){
|
|
52321
52392
|
"use strict";
|
|
52322
52393
|
/*!
|
|
52323
52394
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52684,7 +52755,7 @@ __decorate([
|
|
|
52684
52755
|
], Array2DHashSet.prototype, "createBuckets", null);
|
|
52685
52756
|
exports.Array2DHashSet = Array2DHashSet;
|
|
52686
52757
|
|
|
52687
|
-
},{"../Decorators":
|
|
52758
|
+
},{"../Decorators":216,"./DefaultEqualityComparator":325,"./MurmurHash":331,"assert":359}],321:[function(require,module,exports){
|
|
52688
52759
|
"use strict";
|
|
52689
52760
|
/*!
|
|
52690
52761
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52756,7 +52827,7 @@ __decorate([
|
|
|
52756
52827
|
], ArrayEqualityComparator.prototype, "equals", null);
|
|
52757
52828
|
exports.ArrayEqualityComparator = ArrayEqualityComparator;
|
|
52758
52829
|
|
|
52759
|
-
},{"../Decorators":
|
|
52830
|
+
},{"../Decorators":216,"./MurmurHash":331,"./ObjectEqualityComparator":332}],322:[function(require,module,exports){
|
|
52760
52831
|
"use strict";
|
|
52761
52832
|
/*!
|
|
52762
52833
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52826,7 +52897,7 @@ var Arrays;
|
|
|
52826
52897
|
Arrays.toString = toString;
|
|
52827
52898
|
})(Arrays = exports.Arrays || (exports.Arrays = {}));
|
|
52828
52899
|
|
|
52829
|
-
},{}],
|
|
52900
|
+
},{}],323:[function(require,module,exports){
|
|
52830
52901
|
"use strict";
|
|
52831
52902
|
/*!
|
|
52832
52903
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53498,7 +53569,7 @@ class BitSetIterator {
|
|
|
53498
53569
|
[Symbol.iterator]() { return this; }
|
|
53499
53570
|
}
|
|
53500
53571
|
|
|
53501
|
-
},{"./MurmurHash":
|
|
53572
|
+
},{"./MurmurHash":331,"util":423}],324:[function(require,module,exports){
|
|
53502
53573
|
"use strict";
|
|
53503
53574
|
/*!
|
|
53504
53575
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53519,7 +53590,7 @@ function isSupplementaryCodePoint(ch) {
|
|
|
53519
53590
|
}
|
|
53520
53591
|
exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
|
|
53521
53592
|
|
|
53522
|
-
},{}],
|
|
53593
|
+
},{}],325:[function(require,module,exports){
|
|
53523
53594
|
"use strict";
|
|
53524
53595
|
/*!
|
|
53525
53596
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53590,7 +53661,7 @@ __decorate([
|
|
|
53590
53661
|
], DefaultEqualityComparator.prototype, "equals", null);
|
|
53591
53662
|
exports.DefaultEqualityComparator = DefaultEqualityComparator;
|
|
53592
53663
|
|
|
53593
|
-
},{"../Decorators":
|
|
53664
|
+
},{"../Decorators":216,"./MurmurHash":331,"./ObjectEqualityComparator":332}],326:[function(require,module,exports){
|
|
53594
53665
|
"use strict";
|
|
53595
53666
|
/*!
|
|
53596
53667
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53884,7 +53955,7 @@ __decorate([
|
|
|
53884
53955
|
], IntegerList.prototype, "toString", null);
|
|
53885
53956
|
exports.IntegerList = IntegerList;
|
|
53886
53957
|
|
|
53887
|
-
},{"../Decorators":
|
|
53958
|
+
},{"../Decorators":216,"./Arrays":322}],327:[function(require,module,exports){
|
|
53888
53959
|
"use strict";
|
|
53889
53960
|
/*!
|
|
53890
53961
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53914,7 +53985,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
|
|
|
53914
53985
|
}
|
|
53915
53986
|
exports.IntegerStack = IntegerStack;
|
|
53916
53987
|
|
|
53917
|
-
},{"./IntegerList":
|
|
53988
|
+
},{"./IntegerList":326}],328:[function(require,module,exports){
|
|
53918
53989
|
"use strict";
|
|
53919
53990
|
/*!
|
|
53920
53991
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54057,7 +54128,7 @@ __decorate([
|
|
|
54057
54128
|
], Interval.prototype, "toString", null);
|
|
54058
54129
|
exports.Interval = Interval;
|
|
54059
54130
|
|
|
54060
|
-
},{"../Decorators":
|
|
54131
|
+
},{"../Decorators":216}],329:[function(require,module,exports){
|
|
54061
54132
|
"use strict";
|
|
54062
54133
|
/*!
|
|
54063
54134
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54703,7 +54774,7 @@ __decorate([
|
|
|
54703
54774
|
], IntervalSet, "subtract", null);
|
|
54704
54775
|
exports.IntervalSet = IntervalSet;
|
|
54705
54776
|
|
|
54706
|
-
},{"../Decorators":
|
|
54777
|
+
},{"../Decorators":216,"../Lexer":224,"../Token":241,"./ArrayEqualityComparator":321,"./IntegerList":326,"./Interval":328,"./MurmurHash":331}],330:[function(require,module,exports){
|
|
54707
54778
|
"use strict";
|
|
54708
54779
|
/*!
|
|
54709
54780
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54736,7 +54807,7 @@ class MultiMap extends Map {
|
|
|
54736
54807
|
}
|
|
54737
54808
|
exports.MultiMap = MultiMap;
|
|
54738
54809
|
|
|
54739
|
-
},{}],
|
|
54810
|
+
},{}],331:[function(require,module,exports){
|
|
54740
54811
|
"use strict";
|
|
54741
54812
|
/*!
|
|
54742
54813
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54851,7 +54922,7 @@ var MurmurHash;
|
|
|
54851
54922
|
}
|
|
54852
54923
|
})(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
|
|
54853
54924
|
|
|
54854
|
-
},{}],
|
|
54925
|
+
},{}],332:[function(require,module,exports){
|
|
54855
54926
|
"use strict";
|
|
54856
54927
|
/*!
|
|
54857
54928
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54910,7 +54981,7 @@ __decorate([
|
|
|
54910
54981
|
], ObjectEqualityComparator.prototype, "equals", null);
|
|
54911
54982
|
exports.ObjectEqualityComparator = ObjectEqualityComparator;
|
|
54912
54983
|
|
|
54913
|
-
},{"../Decorators":
|
|
54984
|
+
},{"../Decorators":216}],333:[function(require,module,exports){
|
|
54914
54985
|
"use strict";
|
|
54915
54986
|
/*!
|
|
54916
54987
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54939,7 +55010,7 @@ class ParseCancellationException extends Error {
|
|
|
54939
55010
|
}
|
|
54940
55011
|
exports.ParseCancellationException = ParseCancellationException;
|
|
54941
55012
|
|
|
54942
|
-
},{}],
|
|
55013
|
+
},{}],334:[function(require,module,exports){
|
|
54943
55014
|
"use strict";
|
|
54944
55015
|
/*!
|
|
54945
55016
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54993,7 +55064,7 @@ class UUID {
|
|
|
54993
55064
|
}
|
|
54994
55065
|
exports.UUID = UUID;
|
|
54995
55066
|
|
|
54996
|
-
},{"./MurmurHash":
|
|
55067
|
+
},{"./MurmurHash":331}],335:[function(require,module,exports){
|
|
54997
55068
|
"use strict";
|
|
54998
55069
|
/*!
|
|
54999
55070
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55168,7 +55239,7 @@ exports.toCharArray = toCharArray;
|
|
|
55168
55239
|
// return s;
|
|
55169
55240
|
// }
|
|
55170
55241
|
|
|
55171
|
-
},{}],
|
|
55242
|
+
},{}],336:[function(require,module,exports){
|
|
55172
55243
|
"use strict";
|
|
55173
55244
|
/*!
|
|
55174
55245
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55204,7 +55275,7 @@ __decorate([
|
|
|
55204
55275
|
], ErrorNode.prototype, "accept", null);
|
|
55205
55276
|
exports.ErrorNode = ErrorNode;
|
|
55206
55277
|
|
|
55207
|
-
},{"../Decorators":
|
|
55278
|
+
},{"../Decorators":216,"./TerminalNode":339}],337:[function(require,module,exports){
|
|
55208
55279
|
"use strict";
|
|
55209
55280
|
/*!
|
|
55210
55281
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55309,7 +55380,7 @@ exports.ParseTreeWalker = ParseTreeWalker;
|
|
|
55309
55380
|
ParseTreeWalker.DEFAULT = new ParseTreeWalker();
|
|
55310
55381
|
})(ParseTreeWalker = exports.ParseTreeWalker || (exports.ParseTreeWalker = {}));
|
|
55311
55382
|
|
|
55312
|
-
},{"./ErrorNode":
|
|
55383
|
+
},{"./ErrorNode":336,"./RuleNode":338,"./TerminalNode":339}],338:[function(require,module,exports){
|
|
55313
55384
|
"use strict";
|
|
55314
55385
|
/*!
|
|
55315
55386
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55321,7 +55392,7 @@ class RuleNode {
|
|
|
55321
55392
|
}
|
|
55322
55393
|
exports.RuleNode = RuleNode;
|
|
55323
55394
|
|
|
55324
|
-
},{}],
|
|
55395
|
+
},{}],339:[function(require,module,exports){
|
|
55325
55396
|
"use strict";
|
|
55326
55397
|
/*!
|
|
55327
55398
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55413,7 +55484,7 @@ __decorate([
|
|
|
55413
55484
|
], TerminalNode.prototype, "toString", null);
|
|
55414
55485
|
exports.TerminalNode = TerminalNode;
|
|
55415
55486
|
|
|
55416
|
-
},{"../Decorators":
|
|
55487
|
+
},{"../Decorators":216,"../Token":241,"../misc/Interval":328}],340:[function(require,module,exports){
|
|
55417
55488
|
"use strict";
|
|
55418
55489
|
/*!
|
|
55419
55490
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55657,7 +55728,7 @@ __decorate([
|
|
|
55657
55728
|
], Trees, "getRootOfSubtreeEnclosingRegion", null);
|
|
55658
55729
|
exports.Trees = Trees;
|
|
55659
55730
|
|
|
55660
|
-
},{"../CommonToken":
|
|
55731
|
+
},{"../CommonToken":212,"../Decorators":216,"../Parser":229,"../ParserRuleContext":232,"../Token":241,"../atn/ATN":249,"../misc/Utils":335,"./ErrorNode":336,"./RuleNode":338,"./TerminalNode":339}],341:[function(require,module,exports){
|
|
55661
55732
|
"use strict";
|
|
55662
55733
|
/*!
|
|
55663
55734
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55681,7 +55752,7 @@ class Chunk {
|
|
|
55681
55752
|
}
|
|
55682
55753
|
exports.Chunk = Chunk;
|
|
55683
55754
|
|
|
55684
|
-
},{}],
|
|
55755
|
+
},{}],342:[function(require,module,exports){
|
|
55685
55756
|
"use strict";
|
|
55686
55757
|
/*!
|
|
55687
55758
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55861,7 +55932,7 @@ ParseTreeMatch = __decorate([
|
|
|
55861
55932
|
], ParseTreeMatch);
|
|
55862
55933
|
exports.ParseTreeMatch = ParseTreeMatch;
|
|
55863
55934
|
|
|
55864
|
-
},{"../../Decorators":
|
|
55935
|
+
},{"../../Decorators":216}],343:[function(require,module,exports){
|
|
55865
55936
|
"use strict";
|
|
55866
55937
|
/*!
|
|
55867
55938
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56019,7 +56090,7 @@ ParseTreePattern = __decorate([
|
|
|
56019
56090
|
], ParseTreePattern);
|
|
56020
56091
|
exports.ParseTreePattern = ParseTreePattern;
|
|
56021
56092
|
|
|
56022
|
-
},{"../../Decorators":
|
|
56093
|
+
},{"../../Decorators":216,"../xpath/XPath":349}],344:[function(require,module,exports){
|
|
56023
56094
|
"use strict";
|
|
56024
56095
|
/*!
|
|
56025
56096
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56497,7 +56568,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
|
|
|
56497
56568
|
ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
|
|
56498
56569
|
})(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
|
|
56499
56570
|
|
|
56500
|
-
},{"../../BailErrorStrategy":
|
|
56571
|
+
},{"../../BailErrorStrategy":206,"../../CharStreams":209,"../../CommonTokenStream":214,"../../Decorators":216,"../../ListTokenSource":227,"../../ParserInterpreter":231,"../../ParserRuleContext":232,"../../RecognitionException":235,"../../Token":241,"../../misc/MultiMap":330,"../../misc/ParseCancellationException":333,"../RuleNode":338,"../TerminalNode":339,"./ParseTreeMatch":342,"./ParseTreePattern":343,"./RuleTagToken":345,"./TagChunk":346,"./TextChunk":347,"./TokenTagToken":348}],345:[function(require,module,exports){
|
|
56501
56572
|
"use strict";
|
|
56502
56573
|
/*!
|
|
56503
56574
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56695,7 +56766,7 @@ RuleTagToken = __decorate([
|
|
|
56695
56766
|
], RuleTagToken);
|
|
56696
56767
|
exports.RuleTagToken = RuleTagToken;
|
|
56697
56768
|
|
|
56698
|
-
},{"../../Decorators":
|
|
56769
|
+
},{"../../Decorators":216,"../../Token":241}],346:[function(require,module,exports){
|
|
56699
56770
|
"use strict";
|
|
56700
56771
|
/*!
|
|
56701
56772
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56782,7 +56853,7 @@ __decorate([
|
|
|
56782
56853
|
], TagChunk.prototype, "toString", null);
|
|
56783
56854
|
exports.TagChunk = TagChunk;
|
|
56784
56855
|
|
|
56785
|
-
},{"../../Decorators":
|
|
56856
|
+
},{"../../Decorators":216,"./Chunk":341}],347:[function(require,module,exports){
|
|
56786
56857
|
"use strict";
|
|
56787
56858
|
/*!
|
|
56788
56859
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56852,7 +56923,7 @@ TextChunk = __decorate([
|
|
|
56852
56923
|
], TextChunk);
|
|
56853
56924
|
exports.TextChunk = TextChunk;
|
|
56854
56925
|
|
|
56855
|
-
},{"../../Decorators":
|
|
56926
|
+
},{"../../Decorators":216,"./Chunk":341}],348:[function(require,module,exports){
|
|
56856
56927
|
"use strict";
|
|
56857
56928
|
/*!
|
|
56858
56929
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56947,7 +57018,7 @@ TokenTagToken = __decorate([
|
|
|
56947
57018
|
], TokenTagToken);
|
|
56948
57019
|
exports.TokenTagToken = TokenTagToken;
|
|
56949
57020
|
|
|
56950
|
-
},{"../../CommonToken":
|
|
57021
|
+
},{"../../CommonToken":212,"../../Decorators":216}],349:[function(require,module,exports){
|
|
56951
57022
|
"use strict";
|
|
56952
57023
|
/*!
|
|
56953
57024
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57144,7 +57215,7 @@ exports.XPath = XPath;
|
|
|
57144
57215
|
XPath.WILDCARD = "*"; // word not operator/separator
|
|
57145
57216
|
XPath.NOT = "!"; // word for invert operator
|
|
57146
57217
|
|
|
57147
|
-
},{"../../CharStreams":
|
|
57218
|
+
},{"../../CharStreams":209,"../../CommonTokenStream":214,"../../LexerNoViableAltException":226,"../../ParserRuleContext":232,"../../Token":241,"./XPathLexer":351,"./XPathLexerErrorListener":352,"./XPathRuleAnywhereElement":353,"./XPathRuleElement":354,"./XPathTokenAnywhereElement":355,"./XPathTokenElement":356,"./XPathWildcardAnywhereElement":357,"./XPathWildcardElement":358}],350:[function(require,module,exports){
|
|
57148
57219
|
"use strict";
|
|
57149
57220
|
/*!
|
|
57150
57221
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57179,7 +57250,7 @@ __decorate([
|
|
|
57179
57250
|
], XPathElement.prototype, "toString", null);
|
|
57180
57251
|
exports.XPathElement = XPathElement;
|
|
57181
57252
|
|
|
57182
|
-
},{"../../Decorators":
|
|
57253
|
+
},{"../../Decorators":216}],351:[function(require,module,exports){
|
|
57183
57254
|
"use strict";
|
|
57184
57255
|
// Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
57185
57256
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -57654,7 +57725,7 @@ XPathLexer._serializedATN = Utils.join([
|
|
|
57654
57725
|
XPathLexer._serializedATNSegment1,
|
|
57655
57726
|
], "");
|
|
57656
57727
|
|
|
57657
|
-
},{"../../Lexer":
|
|
57728
|
+
},{"../../Lexer":224,"../../VocabularyImpl":247,"../../atn/ATNDeserializer":253,"../../atn/LexerATNSimulator":274,"../../misc/Utils":335}],352:[function(require,module,exports){
|
|
57658
57729
|
"use strict";
|
|
57659
57730
|
/*!
|
|
57660
57731
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57679,7 +57750,7 @@ __decorate([
|
|
|
57679
57750
|
], XPathLexerErrorListener.prototype, "syntaxError", null);
|
|
57680
57751
|
exports.XPathLexerErrorListener = XPathLexerErrorListener;
|
|
57681
57752
|
|
|
57682
|
-
},{"../../Decorators":
|
|
57753
|
+
},{"../../Decorators":216}],353:[function(require,module,exports){
|
|
57683
57754
|
"use strict";
|
|
57684
57755
|
/*!
|
|
57685
57756
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57713,7 +57784,7 @@ __decorate([
|
|
|
57713
57784
|
], XPathRuleAnywhereElement.prototype, "evaluate", null);
|
|
57714
57785
|
exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
|
|
57715
57786
|
|
|
57716
|
-
},{"../../Decorators":
|
|
57787
|
+
},{"../../Decorators":216,"../Trees":340,"./XPathElement":350}],354:[function(require,module,exports){
|
|
57717
57788
|
"use strict";
|
|
57718
57789
|
/*!
|
|
57719
57790
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57756,7 +57827,7 @@ __decorate([
|
|
|
57756
57827
|
], XPathRuleElement.prototype, "evaluate", null);
|
|
57757
57828
|
exports.XPathRuleElement = XPathRuleElement;
|
|
57758
57829
|
|
|
57759
|
-
},{"../../Decorators":
|
|
57830
|
+
},{"../../Decorators":216,"../../ParserRuleContext":232,"../Trees":340,"./XPathElement":350}],355:[function(require,module,exports){
|
|
57760
57831
|
"use strict";
|
|
57761
57832
|
/*!
|
|
57762
57833
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57788,7 +57859,7 @@ __decorate([
|
|
|
57788
57859
|
], XPathTokenAnywhereElement.prototype, "evaluate", null);
|
|
57789
57860
|
exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
|
|
57790
57861
|
|
|
57791
|
-
},{"../../Decorators":
|
|
57862
|
+
},{"../../Decorators":216,"../Trees":340,"./XPathElement":350}],356:[function(require,module,exports){
|
|
57792
57863
|
"use strict";
|
|
57793
57864
|
/*!
|
|
57794
57865
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57831,7 +57902,7 @@ __decorate([
|
|
|
57831
57902
|
], XPathTokenElement.prototype, "evaluate", null);
|
|
57832
57903
|
exports.XPathTokenElement = XPathTokenElement;
|
|
57833
57904
|
|
|
57834
|
-
},{"../../Decorators":
|
|
57905
|
+
},{"../../Decorators":216,"../TerminalNode":339,"../Trees":340,"./XPathElement":350}],357:[function(require,module,exports){
|
|
57835
57906
|
"use strict";
|
|
57836
57907
|
/*!
|
|
57837
57908
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57867,7 +57938,7 @@ __decorate([
|
|
|
57867
57938
|
], XPathWildcardAnywhereElement.prototype, "evaluate", null);
|
|
57868
57939
|
exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
|
|
57869
57940
|
|
|
57870
|
-
},{"../../Decorators":
|
|
57941
|
+
},{"../../Decorators":216,"../Trees":340,"./XPath":349,"./XPathElement":350}],358:[function(require,module,exports){
|
|
57871
57942
|
"use strict";
|
|
57872
57943
|
/*!
|
|
57873
57944
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57907,7 +57978,7 @@ __decorate([
|
|
|
57907
57978
|
], XPathWildcardElement.prototype, "evaluate", null);
|
|
57908
57979
|
exports.XPathWildcardElement = XPathWildcardElement;
|
|
57909
57980
|
|
|
57910
|
-
},{"../../Decorators":
|
|
57981
|
+
},{"../../Decorators":216,"../Trees":340,"./XPath":349,"./XPathElement":350}],359:[function(require,module,exports){
|
|
57911
57982
|
(function (global){(function (){
|
|
57912
57983
|
'use strict';
|
|
57913
57984
|
|
|
@@ -58417,7 +58488,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
58417
58488
|
};
|
|
58418
58489
|
|
|
58419
58490
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
58420
|
-
},{"object.assign/polyfill":
|
|
58491
|
+
},{"object.assign/polyfill":416,"util/":362}],360:[function(require,module,exports){
|
|
58421
58492
|
if (typeof Object.create === 'function') {
|
|
58422
58493
|
// implementation from standard node.js 'util' module
|
|
58423
58494
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -58442,14 +58513,14 @@ if (typeof Object.create === 'function') {
|
|
|
58442
58513
|
}
|
|
58443
58514
|
}
|
|
58444
58515
|
|
|
58445
|
-
},{}],
|
|
58516
|
+
},{}],361:[function(require,module,exports){
|
|
58446
58517
|
module.exports = function isBuffer(arg) {
|
|
58447
58518
|
return arg && typeof arg === 'object'
|
|
58448
58519
|
&& typeof arg.copy === 'function'
|
|
58449
58520
|
&& typeof arg.fill === 'function'
|
|
58450
58521
|
&& typeof arg.readUInt8 === 'function';
|
|
58451
58522
|
}
|
|
58452
|
-
},{}],
|
|
58523
|
+
},{}],362:[function(require,module,exports){
|
|
58453
58524
|
(function (process,global){(function (){
|
|
58454
58525
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
58455
58526
|
//
|
|
@@ -59039,7 +59110,7 @@ function hasOwnProperty(obj, prop) {
|
|
|
59039
59110
|
}
|
|
59040
59111
|
|
|
59041
59112
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
59042
|
-
},{"./support/isBuffer":
|
|
59113
|
+
},{"./support/isBuffer":361,"_process":418,"inherits":360}],363:[function(require,module,exports){
|
|
59043
59114
|
(function (global){(function (){
|
|
59044
59115
|
'use strict';
|
|
59045
59116
|
|
|
@@ -59060,7 +59131,7 @@ module.exports = function availableTypedArrays() {
|
|
|
59060
59131
|
};
|
|
59061
59132
|
|
|
59062
59133
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
59063
|
-
},{"possible-typed-array-names":
|
|
59134
|
+
},{"possible-typed-array-names":417}],364:[function(require,module,exports){
|
|
59064
59135
|
(function (process,global){(function (){
|
|
59065
59136
|
module.exports = process.hrtime || hrtime
|
|
59066
59137
|
|
|
@@ -59091,7 +59162,7 @@ function hrtime(previousTimestamp){
|
|
|
59091
59162
|
return [seconds,nanoseconds]
|
|
59092
59163
|
}
|
|
59093
59164
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
59094
|
-
},{"_process":
|
|
59165
|
+
},{"_process":418}],365:[function(require,module,exports){
|
|
59095
59166
|
'use strict';
|
|
59096
59167
|
|
|
59097
59168
|
var bind = require('function-bind');
|
|
@@ -59103,7 +59174,7 @@ var $reflectApply = require('./reflectApply');
|
|
|
59103
59174
|
/** @type {import('./actualApply')} */
|
|
59104
59175
|
module.exports = $reflectApply || bind.call($call, $apply);
|
|
59105
59176
|
|
|
59106
|
-
},{"./functionApply":
|
|
59177
|
+
},{"./functionApply":367,"./functionCall":368,"./reflectApply":370,"function-bind":386}],366:[function(require,module,exports){
|
|
59107
59178
|
'use strict';
|
|
59108
59179
|
|
|
59109
59180
|
var bind = require('function-bind');
|
|
@@ -59115,19 +59186,19 @@ module.exports = function applyBind() {
|
|
|
59115
59186
|
return actualApply(bind, $apply, arguments);
|
|
59116
59187
|
};
|
|
59117
59188
|
|
|
59118
|
-
},{"./actualApply":
|
|
59189
|
+
},{"./actualApply":365,"./functionApply":367,"function-bind":386}],367:[function(require,module,exports){
|
|
59119
59190
|
'use strict';
|
|
59120
59191
|
|
|
59121
59192
|
/** @type {import('./functionApply')} */
|
|
59122
59193
|
module.exports = Function.prototype.apply;
|
|
59123
59194
|
|
|
59124
|
-
},{}],
|
|
59195
|
+
},{}],368:[function(require,module,exports){
|
|
59125
59196
|
'use strict';
|
|
59126
59197
|
|
|
59127
59198
|
/** @type {import('./functionCall')} */
|
|
59128
59199
|
module.exports = Function.prototype.call;
|
|
59129
59200
|
|
|
59130
|
-
},{}],
|
|
59201
|
+
},{}],369:[function(require,module,exports){
|
|
59131
59202
|
'use strict';
|
|
59132
59203
|
|
|
59133
59204
|
var bind = require('function-bind');
|
|
@@ -59144,13 +59215,13 @@ module.exports = function callBindBasic(args) {
|
|
|
59144
59215
|
return $actualApply(bind, $call, args);
|
|
59145
59216
|
};
|
|
59146
59217
|
|
|
59147
|
-
},{"./actualApply":
|
|
59218
|
+
},{"./actualApply":365,"./functionCall":368,"es-errors/type":381,"function-bind":386}],370:[function(require,module,exports){
|
|
59148
59219
|
'use strict';
|
|
59149
59220
|
|
|
59150
59221
|
/** @type {import('./reflectApply')} */
|
|
59151
59222
|
module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
|
|
59152
59223
|
|
|
59153
|
-
},{}],
|
|
59224
|
+
},{}],371:[function(require,module,exports){
|
|
59154
59225
|
'use strict';
|
|
59155
59226
|
|
|
59156
59227
|
var setFunctionLength = require('set-function-length');
|
|
@@ -59176,7 +59247,7 @@ if ($defineProperty) {
|
|
|
59176
59247
|
module.exports.apply = applyBind;
|
|
59177
59248
|
}
|
|
59178
59249
|
|
|
59179
|
-
},{"call-bind-apply-helpers":
|
|
59250
|
+
},{"call-bind-apply-helpers":369,"call-bind-apply-helpers/applyBind":366,"es-define-property":375,"set-function-length":420}],372:[function(require,module,exports){
|
|
59180
59251
|
'use strict';
|
|
59181
59252
|
|
|
59182
59253
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -59197,7 +59268,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
59197
59268
|
return intrinsic;
|
|
59198
59269
|
};
|
|
59199
59270
|
|
|
59200
|
-
},{"call-bind-apply-helpers":
|
|
59271
|
+
},{"call-bind-apply-helpers":369,"get-intrinsic":387}],373:[function(require,module,exports){
|
|
59201
59272
|
'use strict';
|
|
59202
59273
|
|
|
59203
59274
|
var $defineProperty = require('es-define-property');
|
|
@@ -59255,7 +59326,7 @@ module.exports = function defineDataProperty(
|
|
|
59255
59326
|
}
|
|
59256
59327
|
};
|
|
59257
59328
|
|
|
59258
|
-
},{"es-define-property":
|
|
59329
|
+
},{"es-define-property":375,"es-errors/syntax":380,"es-errors/type":381,"gopd":392}],374:[function(require,module,exports){
|
|
59259
59330
|
'use strict';
|
|
59260
59331
|
|
|
59261
59332
|
var callBind = require('call-bind-apply-helpers');
|
|
@@ -59287,7 +59358,7 @@ module.exports = desc && typeof desc.get === 'function'
|
|
|
59287
59358
|
}
|
|
59288
59359
|
: false;
|
|
59289
59360
|
|
|
59290
|
-
},{"call-bind-apply-helpers":
|
|
59361
|
+
},{"call-bind-apply-helpers":369,"gopd":392}],375:[function(require,module,exports){
|
|
59291
59362
|
'use strict';
|
|
59292
59363
|
|
|
59293
59364
|
/** @type {import('.')} */
|
|
@@ -59303,55 +59374,55 @@ if ($defineProperty) {
|
|
|
59303
59374
|
|
|
59304
59375
|
module.exports = $defineProperty;
|
|
59305
59376
|
|
|
59306
|
-
},{}],
|
|
59377
|
+
},{}],376:[function(require,module,exports){
|
|
59307
59378
|
'use strict';
|
|
59308
59379
|
|
|
59309
59380
|
/** @type {import('./eval')} */
|
|
59310
59381
|
module.exports = EvalError;
|
|
59311
59382
|
|
|
59312
|
-
},{}],
|
|
59383
|
+
},{}],377:[function(require,module,exports){
|
|
59313
59384
|
'use strict';
|
|
59314
59385
|
|
|
59315
59386
|
/** @type {import('.')} */
|
|
59316
59387
|
module.exports = Error;
|
|
59317
59388
|
|
|
59318
|
-
},{}],
|
|
59389
|
+
},{}],378:[function(require,module,exports){
|
|
59319
59390
|
'use strict';
|
|
59320
59391
|
|
|
59321
59392
|
/** @type {import('./range')} */
|
|
59322
59393
|
module.exports = RangeError;
|
|
59323
59394
|
|
|
59324
|
-
},{}],
|
|
59395
|
+
},{}],379:[function(require,module,exports){
|
|
59325
59396
|
'use strict';
|
|
59326
59397
|
|
|
59327
59398
|
/** @type {import('./ref')} */
|
|
59328
59399
|
module.exports = ReferenceError;
|
|
59329
59400
|
|
|
59330
|
-
},{}],
|
|
59401
|
+
},{}],380:[function(require,module,exports){
|
|
59331
59402
|
'use strict';
|
|
59332
59403
|
|
|
59333
59404
|
/** @type {import('./syntax')} */
|
|
59334
59405
|
module.exports = SyntaxError;
|
|
59335
59406
|
|
|
59336
|
-
},{}],
|
|
59407
|
+
},{}],381:[function(require,module,exports){
|
|
59337
59408
|
'use strict';
|
|
59338
59409
|
|
|
59339
59410
|
/** @type {import('./type')} */
|
|
59340
59411
|
module.exports = TypeError;
|
|
59341
59412
|
|
|
59342
|
-
},{}],
|
|
59413
|
+
},{}],382:[function(require,module,exports){
|
|
59343
59414
|
'use strict';
|
|
59344
59415
|
|
|
59345
59416
|
/** @type {import('./uri')} */
|
|
59346
59417
|
module.exports = URIError;
|
|
59347
59418
|
|
|
59348
|
-
},{}],
|
|
59419
|
+
},{}],383:[function(require,module,exports){
|
|
59349
59420
|
'use strict';
|
|
59350
59421
|
|
|
59351
59422
|
/** @type {import('.')} */
|
|
59352
59423
|
module.exports = Object;
|
|
59353
59424
|
|
|
59354
|
-
},{}],
|
|
59425
|
+
},{}],384:[function(require,module,exports){
|
|
59355
59426
|
'use strict';
|
|
59356
59427
|
|
|
59357
59428
|
var isCallable = require('is-callable');
|
|
@@ -59422,7 +59493,7 @@ module.exports = function forEach(list, iterator, thisArg) {
|
|
|
59422
59493
|
}
|
|
59423
59494
|
};
|
|
59424
59495
|
|
|
59425
|
-
},{"is-callable":
|
|
59496
|
+
},{"is-callable":400}],385:[function(require,module,exports){
|
|
59426
59497
|
'use strict';
|
|
59427
59498
|
|
|
59428
59499
|
/* eslint no-invalid-this: 1 */
|
|
@@ -59508,14 +59579,14 @@ module.exports = function bind(that) {
|
|
|
59508
59579
|
return bound;
|
|
59509
59580
|
};
|
|
59510
59581
|
|
|
59511
|
-
},{}],
|
|
59582
|
+
},{}],386:[function(require,module,exports){
|
|
59512
59583
|
'use strict';
|
|
59513
59584
|
|
|
59514
59585
|
var implementation = require('./implementation');
|
|
59515
59586
|
|
|
59516
59587
|
module.exports = Function.prototype.bind || implementation;
|
|
59517
59588
|
|
|
59518
|
-
},{"./implementation":
|
|
59589
|
+
},{"./implementation":385}],387:[function(require,module,exports){
|
|
59519
59590
|
'use strict';
|
|
59520
59591
|
|
|
59521
59592
|
var undefined;
|
|
@@ -59895,7 +59966,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
59895
59966
|
return value;
|
|
59896
59967
|
};
|
|
59897
59968
|
|
|
59898
|
-
},{"call-bind-apply-helpers/functionApply":
|
|
59969
|
+
},{"call-bind-apply-helpers/functionApply":367,"call-bind-apply-helpers/functionCall":368,"es-define-property":375,"es-errors":377,"es-errors/eval":376,"es-errors/range":378,"es-errors/ref":379,"es-errors/syntax":380,"es-errors/type":381,"es-errors/uri":382,"es-object-atoms":383,"function-bind":386,"get-proto":390,"get-proto/Object.getPrototypeOf":388,"get-proto/Reflect.getPrototypeOf":389,"gopd":392,"has-symbols":394,"hasown":397,"math-intrinsics/abs":404,"math-intrinsics/floor":405,"math-intrinsics/max":407,"math-intrinsics/min":408,"math-intrinsics/pow":409,"math-intrinsics/round":410,"math-intrinsics/sign":411}],388:[function(require,module,exports){
|
|
59899
59970
|
'use strict';
|
|
59900
59971
|
|
|
59901
59972
|
var $Object = require('es-object-atoms');
|
|
@@ -59903,13 +59974,13 @@ var $Object = require('es-object-atoms');
|
|
|
59903
59974
|
/** @type {import('./Object.getPrototypeOf')} */
|
|
59904
59975
|
module.exports = $Object.getPrototypeOf || null;
|
|
59905
59976
|
|
|
59906
|
-
},{"es-object-atoms":
|
|
59977
|
+
},{"es-object-atoms":383}],389:[function(require,module,exports){
|
|
59907
59978
|
'use strict';
|
|
59908
59979
|
|
|
59909
59980
|
/** @type {import('./Reflect.getPrototypeOf')} */
|
|
59910
59981
|
module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
|
|
59911
59982
|
|
|
59912
|
-
},{}],
|
|
59983
|
+
},{}],390:[function(require,module,exports){
|
|
59913
59984
|
'use strict';
|
|
59914
59985
|
|
|
59915
59986
|
var reflectGetProto = require('./Reflect.getPrototypeOf');
|
|
@@ -59938,13 +60009,13 @@ module.exports = reflectGetProto
|
|
|
59938
60009
|
}
|
|
59939
60010
|
: null;
|
|
59940
60011
|
|
|
59941
|
-
},{"./Object.getPrototypeOf":
|
|
60012
|
+
},{"./Object.getPrototypeOf":388,"./Reflect.getPrototypeOf":389,"dunder-proto/get":374}],391:[function(require,module,exports){
|
|
59942
60013
|
'use strict';
|
|
59943
60014
|
|
|
59944
60015
|
/** @type {import('./gOPD')} */
|
|
59945
60016
|
module.exports = Object.getOwnPropertyDescriptor;
|
|
59946
60017
|
|
|
59947
|
-
},{}],
|
|
60018
|
+
},{}],392:[function(require,module,exports){
|
|
59948
60019
|
'use strict';
|
|
59949
60020
|
|
|
59950
60021
|
/** @type {import('.')} */
|
|
@@ -59961,7 +60032,7 @@ if ($gOPD) {
|
|
|
59961
60032
|
|
|
59962
60033
|
module.exports = $gOPD;
|
|
59963
60034
|
|
|
59964
|
-
},{"./gOPD":
|
|
60035
|
+
},{"./gOPD":391}],393:[function(require,module,exports){
|
|
59965
60036
|
'use strict';
|
|
59966
60037
|
|
|
59967
60038
|
var $defineProperty = require('es-define-property');
|
|
@@ -59985,7 +60056,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
|
|
|
59985
60056
|
|
|
59986
60057
|
module.exports = hasPropertyDescriptors;
|
|
59987
60058
|
|
|
59988
|
-
},{"es-define-property":
|
|
60059
|
+
},{"es-define-property":375}],394:[function(require,module,exports){
|
|
59989
60060
|
'use strict';
|
|
59990
60061
|
|
|
59991
60062
|
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
|
@@ -60001,7 +60072,7 @@ module.exports = function hasNativeSymbols() {
|
|
|
60001
60072
|
return hasSymbolSham();
|
|
60002
60073
|
};
|
|
60003
60074
|
|
|
60004
|
-
},{"./shams":
|
|
60075
|
+
},{"./shams":395}],395:[function(require,module,exports){
|
|
60005
60076
|
'use strict';
|
|
60006
60077
|
|
|
60007
60078
|
/** @type {import('./shams')} */
|
|
@@ -60048,7 +60119,7 @@ module.exports = function hasSymbols() {
|
|
|
60048
60119
|
return true;
|
|
60049
60120
|
};
|
|
60050
60121
|
|
|
60051
|
-
},{}],
|
|
60122
|
+
},{}],396:[function(require,module,exports){
|
|
60052
60123
|
'use strict';
|
|
60053
60124
|
|
|
60054
60125
|
var hasSymbols = require('has-symbols/shams');
|
|
@@ -60058,7 +60129,7 @@ module.exports = function hasToStringTagShams() {
|
|
|
60058
60129
|
return hasSymbols() && !!Symbol.toStringTag;
|
|
60059
60130
|
};
|
|
60060
60131
|
|
|
60061
|
-
},{"has-symbols/shams":
|
|
60132
|
+
},{"has-symbols/shams":395}],397:[function(require,module,exports){
|
|
60062
60133
|
'use strict';
|
|
60063
60134
|
|
|
60064
60135
|
var call = Function.prototype.call;
|
|
@@ -60068,7 +60139,7 @@ var bind = require('function-bind');
|
|
|
60068
60139
|
/** @type {import('.')} */
|
|
60069
60140
|
module.exports = bind.call(call, $hasOwn);
|
|
60070
60141
|
|
|
60071
|
-
},{"function-bind":
|
|
60142
|
+
},{"function-bind":386}],398:[function(require,module,exports){
|
|
60072
60143
|
if (typeof Object.create === 'function') {
|
|
60073
60144
|
// implementation from standard node.js 'util' module
|
|
60074
60145
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -60097,7 +60168,7 @@ if (typeof Object.create === 'function') {
|
|
|
60097
60168
|
}
|
|
60098
60169
|
}
|
|
60099
60170
|
|
|
60100
|
-
},{}],
|
|
60171
|
+
},{}],399:[function(require,module,exports){
|
|
60101
60172
|
'use strict';
|
|
60102
60173
|
|
|
60103
60174
|
var hasToStringTag = require('has-tostringtag/shams')();
|
|
@@ -60143,7 +60214,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
|
60143
60214
|
/** @type {import('.')} */
|
|
60144
60215
|
module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
60145
60216
|
|
|
60146
|
-
},{"call-bound":
|
|
60217
|
+
},{"call-bound":372,"has-tostringtag/shams":396}],400:[function(require,module,exports){
|
|
60147
60218
|
'use strict';
|
|
60148
60219
|
|
|
60149
60220
|
var fnToStr = Function.prototype.toString;
|
|
@@ -60246,7 +60317,7 @@ module.exports = reflectApply
|
|
|
60246
60317
|
return tryFunctionObject(value);
|
|
60247
60318
|
};
|
|
60248
60319
|
|
|
60249
|
-
},{}],
|
|
60320
|
+
},{}],401:[function(require,module,exports){
|
|
60250
60321
|
'use strict';
|
|
60251
60322
|
|
|
60252
60323
|
var callBound = require('call-bound');
|
|
@@ -60295,7 +60366,7 @@ module.exports = function isGeneratorFunction(fn) {
|
|
|
60295
60366
|
return getProto(fn) === GeneratorFunction;
|
|
60296
60367
|
};
|
|
60297
60368
|
|
|
60298
|
-
},{"call-bound":
|
|
60369
|
+
},{"call-bound":372,"get-proto":390,"has-tostringtag/shams":396,"safe-regex-test":419}],402:[function(require,module,exports){
|
|
60299
60370
|
'use strict';
|
|
60300
60371
|
|
|
60301
60372
|
var callBound = require('call-bound');
|
|
@@ -60366,7 +60437,7 @@ if (hasToStringTag) {
|
|
|
60366
60437
|
|
|
60367
60438
|
module.exports = fn;
|
|
60368
60439
|
|
|
60369
|
-
},{"call-bound":
|
|
60440
|
+
},{"call-bound":372,"gopd":392,"has-tostringtag/shams":396,"hasown":397}],403:[function(require,module,exports){
|
|
60370
60441
|
'use strict';
|
|
60371
60442
|
|
|
60372
60443
|
var whichTypedArray = require('which-typed-array');
|
|
@@ -60376,19 +60447,19 @@ module.exports = function isTypedArray(value) {
|
|
|
60376
60447
|
return !!whichTypedArray(value);
|
|
60377
60448
|
};
|
|
60378
60449
|
|
|
60379
|
-
},{"which-typed-array":
|
|
60450
|
+
},{"which-typed-array":424}],404:[function(require,module,exports){
|
|
60380
60451
|
'use strict';
|
|
60381
60452
|
|
|
60382
60453
|
/** @type {import('./abs')} */
|
|
60383
60454
|
module.exports = Math.abs;
|
|
60384
60455
|
|
|
60385
|
-
},{}],
|
|
60456
|
+
},{}],405:[function(require,module,exports){
|
|
60386
60457
|
'use strict';
|
|
60387
60458
|
|
|
60388
60459
|
/** @type {import('./floor')} */
|
|
60389
60460
|
module.exports = Math.floor;
|
|
60390
60461
|
|
|
60391
|
-
},{}],
|
|
60462
|
+
},{}],406:[function(require,module,exports){
|
|
60392
60463
|
'use strict';
|
|
60393
60464
|
|
|
60394
60465
|
/** @type {import('./isNaN')} */
|
|
@@ -60396,31 +60467,31 @@ module.exports = Number.isNaN || function isNaN(a) {
|
|
|
60396
60467
|
return a !== a;
|
|
60397
60468
|
};
|
|
60398
60469
|
|
|
60399
|
-
},{}],
|
|
60470
|
+
},{}],407:[function(require,module,exports){
|
|
60400
60471
|
'use strict';
|
|
60401
60472
|
|
|
60402
60473
|
/** @type {import('./max')} */
|
|
60403
60474
|
module.exports = Math.max;
|
|
60404
60475
|
|
|
60405
|
-
},{}],
|
|
60476
|
+
},{}],408:[function(require,module,exports){
|
|
60406
60477
|
'use strict';
|
|
60407
60478
|
|
|
60408
60479
|
/** @type {import('./min')} */
|
|
60409
60480
|
module.exports = Math.min;
|
|
60410
60481
|
|
|
60411
|
-
},{}],
|
|
60482
|
+
},{}],409:[function(require,module,exports){
|
|
60412
60483
|
'use strict';
|
|
60413
60484
|
|
|
60414
60485
|
/** @type {import('./pow')} */
|
|
60415
60486
|
module.exports = Math.pow;
|
|
60416
60487
|
|
|
60417
|
-
},{}],
|
|
60488
|
+
},{}],410:[function(require,module,exports){
|
|
60418
60489
|
'use strict';
|
|
60419
60490
|
|
|
60420
60491
|
/** @type {import('./round')} */
|
|
60421
60492
|
module.exports = Math.round;
|
|
60422
60493
|
|
|
60423
|
-
},{}],
|
|
60494
|
+
},{}],411:[function(require,module,exports){
|
|
60424
60495
|
'use strict';
|
|
60425
60496
|
|
|
60426
60497
|
var $isNaN = require('./isNaN');
|
|
@@ -60433,7 +60504,7 @@ module.exports = function sign(number) {
|
|
|
60433
60504
|
return number < 0 ? -1 : +1;
|
|
60434
60505
|
};
|
|
60435
60506
|
|
|
60436
|
-
},{"./isNaN":
|
|
60507
|
+
},{"./isNaN":406}],412:[function(require,module,exports){
|
|
60437
60508
|
'use strict';
|
|
60438
60509
|
|
|
60439
60510
|
var keysShim;
|
|
@@ -60557,7 +60628,7 @@ if (!Object.keys) {
|
|
|
60557
60628
|
}
|
|
60558
60629
|
module.exports = keysShim;
|
|
60559
60630
|
|
|
60560
|
-
},{"./isArguments":
|
|
60631
|
+
},{"./isArguments":414}],413:[function(require,module,exports){
|
|
60561
60632
|
'use strict';
|
|
60562
60633
|
|
|
60563
60634
|
var slice = Array.prototype.slice;
|
|
@@ -60591,7 +60662,7 @@ keysShim.shim = function shimObjectKeys() {
|
|
|
60591
60662
|
|
|
60592
60663
|
module.exports = keysShim;
|
|
60593
60664
|
|
|
60594
|
-
},{"./implementation":
|
|
60665
|
+
},{"./implementation":412,"./isArguments":414}],414:[function(require,module,exports){
|
|
60595
60666
|
'use strict';
|
|
60596
60667
|
|
|
60597
60668
|
var toStr = Object.prototype.toString;
|
|
@@ -60610,7 +60681,7 @@ module.exports = function isArguments(value) {
|
|
|
60610
60681
|
return isArgs;
|
|
60611
60682
|
};
|
|
60612
60683
|
|
|
60613
|
-
},{}],
|
|
60684
|
+
},{}],415:[function(require,module,exports){
|
|
60614
60685
|
'use strict';
|
|
60615
60686
|
|
|
60616
60687
|
// modified from https://github.com/es-shims/es6-shim
|
|
@@ -60658,7 +60729,7 @@ module.exports = function assign(target, source1) {
|
|
|
60658
60729
|
return to; // step 4
|
|
60659
60730
|
};
|
|
60660
60731
|
|
|
60661
|
-
},{"call-bound":
|
|
60732
|
+
},{"call-bound":372,"es-object-atoms":383,"has-symbols/shams":395,"object-keys":413}],416:[function(require,module,exports){
|
|
60662
60733
|
'use strict';
|
|
60663
60734
|
|
|
60664
60735
|
var implementation = require('./implementation');
|
|
@@ -60715,7 +60786,7 @@ module.exports = function getPolyfill() {
|
|
|
60715
60786
|
return Object.assign;
|
|
60716
60787
|
};
|
|
60717
60788
|
|
|
60718
|
-
},{"./implementation":
|
|
60789
|
+
},{"./implementation":415}],417:[function(require,module,exports){
|
|
60719
60790
|
'use strict';
|
|
60720
60791
|
|
|
60721
60792
|
/** @type {import('.')} */
|
|
@@ -60734,7 +60805,7 @@ module.exports = [
|
|
|
60734
60805
|
'BigUint64Array'
|
|
60735
60806
|
];
|
|
60736
60807
|
|
|
60737
|
-
},{}],
|
|
60808
|
+
},{}],418:[function(require,module,exports){
|
|
60738
60809
|
// shim for using process in browser
|
|
60739
60810
|
var process = module.exports = {};
|
|
60740
60811
|
|
|
@@ -60920,7 +60991,7 @@ process.chdir = function (dir) {
|
|
|
60920
60991
|
};
|
|
60921
60992
|
process.umask = function() { return 0; };
|
|
60922
60993
|
|
|
60923
|
-
},{}],
|
|
60994
|
+
},{}],419:[function(require,module,exports){
|
|
60924
60995
|
'use strict';
|
|
60925
60996
|
|
|
60926
60997
|
var callBound = require('call-bound');
|
|
@@ -60939,7 +61010,7 @@ module.exports = function regexTester(regex) {
|
|
|
60939
61010
|
};
|
|
60940
61011
|
};
|
|
60941
61012
|
|
|
60942
|
-
},{"call-bound":
|
|
61013
|
+
},{"call-bound":372,"es-errors/type":381,"is-regex":402}],420:[function(require,module,exports){
|
|
60943
61014
|
'use strict';
|
|
60944
61015
|
|
|
60945
61016
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -60983,9 +61054,9 @@ module.exports = function setFunctionLength(fn, length) {
|
|
|
60983
61054
|
return fn;
|
|
60984
61055
|
};
|
|
60985
61056
|
|
|
60986
|
-
},{"define-data-property":
|
|
60987
|
-
arguments[4][
|
|
60988
|
-
},{"dup":
|
|
61057
|
+
},{"define-data-property":373,"es-errors/type":381,"get-intrinsic":387,"gopd":392,"has-property-descriptors":393}],421:[function(require,module,exports){
|
|
61058
|
+
arguments[4][361][0].apply(exports,arguments)
|
|
61059
|
+
},{"dup":361}],422:[function(require,module,exports){
|
|
60989
61060
|
// Currently in sync with Node.js lib/internal/util/types.js
|
|
60990
61061
|
// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
|
|
60991
61062
|
|
|
@@ -61321,7 +61392,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
|
|
|
61321
61392
|
});
|
|
61322
61393
|
});
|
|
61323
61394
|
|
|
61324
|
-
},{"is-arguments":
|
|
61395
|
+
},{"is-arguments":399,"is-generator-function":401,"is-typed-array":403,"which-typed-array":424}],423:[function(require,module,exports){
|
|
61325
61396
|
(function (process){(function (){
|
|
61326
61397
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
61327
61398
|
//
|
|
@@ -62040,7 +62111,7 @@ function callbackify(original) {
|
|
|
62040
62111
|
exports.callbackify = callbackify;
|
|
62041
62112
|
|
|
62042
62113
|
}).call(this)}).call(this,require('_process'))
|
|
62043
|
-
},{"./support/isBuffer":
|
|
62114
|
+
},{"./support/isBuffer":421,"./support/types":422,"_process":418,"inherits":398}],424:[function(require,module,exports){
|
|
62044
62115
|
(function (global){(function (){
|
|
62045
62116
|
'use strict';
|
|
62046
62117
|
|
|
@@ -62161,5 +62232,5 @@ module.exports = function whichTypedArray(value) {
|
|
|
62161
62232
|
};
|
|
62162
62233
|
|
|
62163
62234
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
62164
|
-
},{"available-typed-arrays":
|
|
62235
|
+
},{"available-typed-arrays":363,"call-bind":371,"call-bound":372,"for-each":384,"get-proto":390,"gopd":392,"has-tostringtag/shams":396}]},{},[113])(113)
|
|
62165
62236
|
});
|